Merge branch 'masterpiece' of ssh://192.168.10.159:/1TBHDD/ikong/taobin_project into masterpiece
This commit is contained in:
commit
0c29ed34f3
124 changed files with 30618 additions and 77684 deletions
BIN
image/page_doing/brewing_txt_adv15.png
Normal file
BIN
image/page_doing/brewing_txt_adv15.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
BIN
image/page_doing/brewing_txt_adv15_en.png
Normal file
BIN
image/page_doing/brewing_txt_adv15_en.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
|
|
@ -1,16 +1,5 @@
|
|||
; thailand
|
||||
|
||||
|
||||
; zone promote
|
||||
Var BigButtonEnable = "Enable"
|
||||
If OpenFromMulti = 1 Then
|
||||
TabMenuVisibleInst 99
|
||||
EndIf
|
||||
Var OpenFromMulti = 0
|
||||
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/page_catalog_group_recommend.lxml"
|
||||
Var RecommendPageMulti = "ROOT/taobin_project/inter/tha/xml/multi/page_catalog_group_recommend.lxml"
|
||||
|
||||
If WinterWarmersCatalogFlag = 1 Then
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_winter_warmers.lxml"
|
||||
EndIf
|
||||
|
|
@ -23,18 +12,45 @@ If AnniverseryPro = 1 Then
|
|||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_anniversary_1st.lxml"
|
||||
EndIf
|
||||
|
||||
If OpenFromPageBoard = 1 Then
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
|
||||
|
||||
|
||||
; thailand
|
||||
|
||||
|
||||
; zone promote
|
||||
Var BigButtonEnable = "Enable"
|
||||
If OpenFromMulti = 1 Then
|
||||
TabMenuVisibleInst 99
|
||||
EndIf
|
||||
Var OpenFromMulti = 0
|
||||
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/page_catalog_group_recommend.lxml"
|
||||
Var RecommendPageMulti = "ROOT/taobin_project/inter/tha/xml/multi/page_catalog_group_recommend.lxml"
|
||||
|
||||
|
||||
If MyanmarLangEnable = "true" Then
|
||||
|
||||
; nothing to do
|
||||
|
||||
|
||||
If OpenFromPageBoard = 1 Then
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
Else
|
||||
OpenInst 2 RecommendPage
|
||||
EndIf
|
||||
Else
|
||||
OpenInst 2 RecommendPage
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
Else
|
||||
Open RecommendPage
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
Else
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
Else
|
||||
Open RecommendPage
|
||||
EndIf
|
||||
TRY "/mnt/sdcard/coffeevending/taobin_project/xml/event/script_common_for_open_promotion_xml.ev"
|
||||
EndIf
|
||||
|
||||
Var OpenFromPageBoard = 0
|
||||
|
||||
|
|
|
|||
|
|
@ -1,166 +0,0 @@
|
|||
|
||||
if False:
|
||||
print("params=" + param)
|
||||
print( "dir= " + directory_to_process + "/page_catalog_group_recommend.lxml");
|
||||
file_xml = open(directory_to_process + "/page_catalog_group_recommend.lxml", 'r')
|
||||
file_content_main = file_xml.read()
|
||||
#print(file_xml.read())
|
||||
# ; include-file=dummy_layout.inc
|
||||
file_inc = open(directory_to_process + "/dummy_layout.inc", 'r')
|
||||
file_inc_content = file_inc.read()
|
||||
|
||||
|
||||
file_xml.close()
|
||||
|
||||
|
||||
file_inc2 = open(directory_to_process + "/event/promotion_template1.inc", 'r')
|
||||
file_inc2_content = file_inc2.read()
|
||||
file_inc_img = open(directory_to_process + "/../image/event/image_template1", 'r')
|
||||
file_inc2_img_content = file_inc_img.read()
|
||||
|
||||
# replace key.
|
||||
|
||||
sp_key = file_inc2_img_content.split("\n")
|
||||
print("sp_key = " + str(len( sp_key)))
|
||||
for sp_line in sp_key:
|
||||
sp_line = sp_line.strip()
|
||||
key_val = sp_line.split("=")
|
||||
if len( key_val) == 2:
|
||||
print("k = " + key_val[0] + " val=" + key_val[1])
|
||||
file_inc2_content = file_inc2_content.replace( "###" + key_val[0], '"' + key_val[1].strip() + '"')
|
||||
|
||||
|
||||
file_inc_event_click = open(directory_to_process + "/event/promotion_onclick1.inc", 'r')
|
||||
file_inc_event_click_content = file_inc_event_click.read()
|
||||
|
||||
file_inc2_content = file_inc2_content.replace("###EventOnClick", file_inc_event_click_content)
|
||||
|
||||
|
||||
print(file_inc2_content)
|
||||
|
||||
#print( file_inc_content)
|
||||
content_data_was_repack = file_content_main.replace(";dummy_layout.inc", file_inc_content)
|
||||
content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content)
|
||||
|
||||
begin_text = content_data.index(";TAGESP")
|
||||
end_text = content_data.index(";TAGESP", begin_text + 7)
|
||||
print("TAGESP sub text = " + str(begin_text) + " end = " + str(end_text))
|
||||
tmp1 = content_data[: begin_text - 7]
|
||||
|
||||
tmp2 = content_data[ end_text:-1]
|
||||
#print("tmp1=" + tmp1)
|
||||
#print("tmp2=" + tmp2)
|
||||
|
||||
content_data = tmp1 + tmp2
|
||||
|
||||
file_xml3_out = open(directory_to_process + "/event/out_put_file1.txt", 'r')
|
||||
file_xml3_out_content = file_xml3_out.read()
|
||||
file_xml3_out_content = file_xml3_out_content.strip()
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\r", "")
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\n", "")
|
||||
|
||||
file_xml3 = open(directory_to_process + file_xml3_out_content, 'w')
|
||||
file_xml3.write( content_data)
|
||||
file_xml3.close()
|
||||
|
||||
|
||||
file_inc2 = open(directory_to_process + "/event/promotion_template2.inc", 'r')
|
||||
file_inc2_content = file_inc2.read()
|
||||
file_inc_img = open(directory_to_process + "/../image/event/image_template2", 'r')
|
||||
file_inc2_img_content = file_inc_img.read()
|
||||
|
||||
# replace key.
|
||||
|
||||
sp_key = file_inc2_img_content.split("\n")
|
||||
print("sp_key = " + str(len( sp_key)))
|
||||
for sp_line in sp_key:
|
||||
sp_line = sp_line.strip()
|
||||
key_val = sp_line.split("=")
|
||||
if len( key_val) == 2:
|
||||
print("k = " + key_val[0] + " val=" + key_val[1])
|
||||
file_inc2_content = file_inc2_content.replace( "###" + key_val[0], '"' + key_val[1].strip() + '"')
|
||||
|
||||
|
||||
file_inc_event_click = open(directory_to_process + "/event/promotion_onclick2.inc", 'r')
|
||||
file_inc_event_click_content = file_inc_event_click.read()
|
||||
|
||||
file_inc2_content = file_inc2_content.replace("###EventOnClick", file_inc_event_click_content)
|
||||
|
||||
|
||||
print(file_inc2_content)
|
||||
|
||||
#print( file_inc_content)
|
||||
content_data_was_repack = file_content_main.replace(";dummy_layout.inc", file_inc_content)
|
||||
content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc2_content)
|
||||
|
||||
begin_text = content_data.index(";TAGESP")
|
||||
end_text = content_data.index(";TAGESP", begin_text + 7)
|
||||
#print("sub text = " + str(begin_text) + " end = " + str(end_text))
|
||||
tmp1 = content_data[: begin_text - 7]
|
||||
|
||||
tmp2 = content_data[ end_text:-1]
|
||||
#print("tmp1=" + tmp1)
|
||||
#print("tmp2=" + tmp2)
|
||||
|
||||
content_data = tmp1 + tmp2
|
||||
|
||||
file_xml3_out = open(directory_to_process + "/event/out_put_file2.txt", 'r')
|
||||
file_xml3_out_content = file_xml3_out.read()
|
||||
file_xml3_out_content = file_xml3_out_content.strip()
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\r", "")
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\n", "")
|
||||
|
||||
file_xml3 = open(directory_to_process + file_xml3_out_content, 'w')
|
||||
file_xml3.write( content_data)
|
||||
file_xml3.close()
|
||||
|
||||
file_inc3 = open(directory_to_process + "/event/promotion_template3.inc", 'r')
|
||||
file_inc3_content = file_inc3.read()
|
||||
file_inc_img = open(directory_to_process + "/../image/event/image_template3", 'r')
|
||||
file_inc3_img_content = file_inc_img.read()
|
||||
|
||||
# replace key.
|
||||
|
||||
sp_key = file_inc3_img_content.split("\n")
|
||||
print("sp_key = " + str(len( sp_key)))
|
||||
for sp_line in sp_key:
|
||||
sp_line = sp_line.strip()
|
||||
key_val = sp_line.split("=")
|
||||
print("Kenta420:", key_val)
|
||||
if len( key_val) == 2:
|
||||
print("k = " + key_val[0] + " val=" + key_val[1])
|
||||
file_inc3_content = file_inc3_content.replace( "###" + key_val[0], '"' + key_val[1].strip() + '"')
|
||||
|
||||
|
||||
file_inc_event_click = open(directory_to_process + "/event/promotion_onclick3.inc", 'r')
|
||||
file_inc_event_click_content = file_inc_event_click.read()
|
||||
|
||||
file_inc3_content = file_inc3_content.replace("###EventOnClick", file_inc_event_click_content)
|
||||
|
||||
|
||||
print(file_inc3_content)
|
||||
|
||||
#print( file_inc_content)
|
||||
content_data_was_repack = file_content_main.replace(";dummy_layout.inc", file_inc_content)
|
||||
content_data = content_data_was_repack.replace(";BigLogoLayout", file_inc3_content)
|
||||
|
||||
begin_text = content_data.index(";TAGESP")
|
||||
end_text = content_data.index(";TAGESP", begin_text + 7)
|
||||
#print("sub text = " + str(begin_text) + " end = " + str(end_text))
|
||||
tmp1 = content_data[: begin_text - 7]
|
||||
|
||||
tmp3 = content_data[ end_text:-1]
|
||||
#print("tmp1=" + tmp1)
|
||||
#print("tmp3=" + tmp3)
|
||||
|
||||
content_data = tmp1 + tmp3
|
||||
|
||||
file_xml3_out = open(directory_to_process + "/event/out_put_file3.txt", 'r')
|
||||
file_xml3_out_content = file_xml3_out.read()
|
||||
file_xml3_out_content = file_xml3_out_content.strip()
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\r", "")
|
||||
file_xml3_out_content = file_xml3_out_content.replace("\n", "")
|
||||
|
||||
file_xml3 = open(directory_to_process + file_xml3_out_content, 'w')
|
||||
file_xml3.write( content_data)
|
||||
file_xml3.close()
|
||||
|
|
@ -1 +0,0 @@
|
|||
/event/promotion_winter_warmers.lxml
|
||||
|
|
@ -1 +0,0 @@
|
|||
/event/promotion_anniversary_1st.lxml
|
||||
|
|
@ -1 +0,0 @@
|
|||
/event/promotion_3.xml
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,48 +0,0 @@
|
|||
{
|
||||
"recommendPath": "/sdcard/coffeevending/taobin_project/xml/page_catalog_group_recommend.xml",
|
||||
"dummyLayoutPath": "/sdcard/coffeevending/taobin_project/xml/dummy_layout.inc",
|
||||
"trickerYamlPath": "/sdcard/coffeevending/taobin_project/xml/event/tricker.yaml",
|
||||
"outDir": "/sdcard/coffeevending/taobin_project/xml/event/",
|
||||
"templates": [
|
||||
{
|
||||
"name": "promotion_pepsi",
|
||||
"path": "/sdcard/coffeevending/taobin_project/xml/event/promotion_template1.inc",
|
||||
"onclickFile": "/sdcard/coffeevending/taobin_project/xml/event/promotion_onclick1.inc",
|
||||
"imagesTemplate": {
|
||||
"normal_eng": "ROOT/taobin_project/image/event/welcomedrink_en.png",
|
||||
"normal_thai": "ROOT/taobin_project/image/event/welcomedrink.png",
|
||||
"press_eng": "ROOT/taobin_project/image/event/welcomedrink_en.png",
|
||||
"press_thai": "ROOT/taobin_project/image/event/welcomedrink.png",
|
||||
"disable_eng": "ROOT/taobin_project/image/event/welcomedrink_en.png",
|
||||
"disable_thai": "ROOT/taobin_project/image/event/welcomedrink.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "promotion_pepsi_end",
|
||||
"path": "/sdcard/coffeevending/taobin_project/xml/event/promotion_template2.inc",
|
||||
"onclickFile": "/sdcard/coffeevending/taobin_project/xml/event/promotion_onclick2.inc",
|
||||
"imagesTemplate": {
|
||||
"normal_eng": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_en.png",
|
||||
"normal_thai": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_th.png",
|
||||
"press_eng": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_en.png",
|
||||
"press_thai": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_th.png",
|
||||
"disable_eng": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_en.png",
|
||||
"disable_thai": "ROOT/taobin_project/image/event/bn_pepsi_buy2_save_move_end_th.png"
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "promotion_mystery_cup_35",
|
||||
"path": "/sdcard/coffeevending/taobin_project/xml/event/promotion_template3.inc",
|
||||
"onclickFile": "/sdcard/coffeevending/taobin_project/xml/event/promotion_onclick3.inc",
|
||||
"imagesTemplate": {
|
||||
"normal_eng": "ROOT/taobin_project/image/event/pro_mystery_cup_en.png",
|
||||
"normal_thai": "ROOT/taobin_project/image/event/pro_mystery_cup_th.png",
|
||||
"press_eng": "ROOT/taobin_project/image/event/pro_mystery_cup_en.png",
|
||||
"press_thai": "ROOT/taobin_project/image/event/pro_mystery_cup_th.png",
|
||||
"disable_eng": "ROOT/taobin_project/image/event/pro_mystery_cup_en.png",
|
||||
"disable_thai": "ROOT/taobin_project/image/event/pro_mystery_cup_th.png"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
Open "ROOT/taobin_project/inter/aus/xml/page_catalog_group_winter_warmers_ignore.lxml"
|
||||
|
|
@ -1 +0,0 @@
|
|||
; Do nothing
|
||||
|
|
@ -1,320 +0,0 @@
|
|||
Var BigButtonEnable = "Invisible"
|
||||
|
||||
DEBUGVAR BigButtonEnable
|
||||
DEBUGVAR OreoGuarantee
|
||||
|
||||
; Enable all 4 buttons
|
||||
Var SubRandMilkButtonEnable = "Enable"
|
||||
DEBUGVAR SubRandMilkButtonEnable
|
||||
|
||||
Var SubRandTeaButtonEnable = "Enable"
|
||||
DEBUGVAR SubRandTeaButtonEnable
|
||||
|
||||
Var SubRandCoffButtonEnable = "Enable"
|
||||
DEBUGVAR SubRandCoffButtonEnable
|
||||
|
||||
Var SubRandAllButtonEnable = "Enable"
|
||||
DEBUGVAR SubRandAllButtonEnable
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
; For real, yeah for real
|
||||
; All random cup
|
||||
|
||||
Var IndexOfAllRandom = 0
|
||||
Var IndexOfMilk = 0
|
||||
Var IndexOfTea = 0
|
||||
Var IndexOfCoffee = 0
|
||||
|
||||
Var IndexOfRateupOreoAll = 0
|
||||
Var IndexOfRateupOreoMilk = 0
|
||||
Var IndexOfRateupOreoTea = 0
|
||||
Var IndexOfRateupOreoCoffee = 0
|
||||
|
||||
; Oreo smoothie volcano
|
||||
If $12-99-03-0020.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0020"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0020"
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0020"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0020"
|
||||
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Pink milk oreo volcano
|
||||
If $12-99-03-0021.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0021"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0021"
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0021"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0021"
|
||||
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Choco oreo volcano
|
||||
If $12-99-03-0022.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0022"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0022"
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0022"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0022"
|
||||
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Caramel milk oreo volcano
|
||||
If $12-99-03-0023.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0023"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0023"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0023"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0023"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Thai milk tea oreo smoothie
|
||||
If $12-99-03-0024.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0024"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0024"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0024"
|
||||
Var ListOfOreoTea[IndexOfRateupOreoTea] = "12-99-03-0024"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoTea = IndexOfRateupOreoTea + 1
|
||||
EndIf
|
||||
|
||||
; Cafe late oreo smoothie
|
||||
If $12-99-03-0025.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0025"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0025"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0025"
|
||||
Var ListOfOreoCoffee[IndexOfRateupOreoCoffee] = "12-99-03-0025"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoCoffee = IndexOfRateupOreoCoffee + 1
|
||||
EndIf
|
||||
|
||||
; Strawberry milk oreo volcano
|
||||
If $12-99-03-0026.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0026"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0026"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0026"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0026"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Melon milk oreo volcano
|
||||
If $12-99-03-0027.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0027"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0027"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0027"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0027"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Bana^2 milk oreo volcano
|
||||
If $12-99-03-0028.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0028"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0028"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0028"
|
||||
Var ListOfOreoMilk[IndexOfRateupOreoMilk] = "12-99-03-0028"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Hojicha oreo volcano
|
||||
If $12-99-03-0028.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0029"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0029"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0029"
|
||||
Var ListOfOreoTea[IndexOfRateupOreoTea] = "12-99-03-0029"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk + 1
|
||||
EndIf
|
||||
|
||||
; Thai milk tea smoothie
|
||||
If $12-99-03-0030.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0030"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0030"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
EndIf
|
||||
|
||||
; Melon milk smoothie
|
||||
If $12-99-03-0031.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0031"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0031"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
EndIf
|
||||
|
||||
; Taiwanese tea smoothie
|
||||
If $12-99-03-0032.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0032"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0032"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
EndIf
|
||||
|
||||
; THAI MILK TEA OREO SMOOTHIE
|
||||
If $12-99-03-0040.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0040"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0040"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
|
||||
Var ListOfOreoAll[IndexOfRateupOreoAll] = "12-99-03-0040"
|
||||
Var ListOfOreoTea[IndexOfRateupOreoTea] = "12-99-03-0040"
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll + 1
|
||||
Var IndexOfRateupOreoTea = IndexOfRateupOreoTea + 1
|
||||
EndIf
|
||||
|
||||
; THAI MILK TEA SMOOTHIE
|
||||
If $12-99-03-0041.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0041"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0041"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
EndIf
|
||||
|
||||
|
||||
; Tokyo bana^2 milk smoothie
|
||||
If $12-99-03-0033.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0033"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0033"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
EndIf
|
||||
|
||||
; Hojicha smoothie
|
||||
If $12-99-03-0034.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0034"
|
||||
Var ListOfTea[IndexOfTea] = "12-99-03-0034"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfTea = IndexOfTea + 1
|
||||
EndIf
|
||||
|
||||
; Cocoa bana^2 smoothie
|
||||
If $12-99-03-0035.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0035"
|
||||
Var ListOfMilk[IndexOfMilk] = "12-99-03-0035"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfMilk = IndexOfMilk + 1
|
||||
EndIf
|
||||
|
||||
; Taiwanese tea cafe latte smoothie
|
||||
If $12-99-03-0036.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0036"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0036"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
EndIf
|
||||
|
||||
; Melon cafe latte smoothie
|
||||
If $12-99-03-0037.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0037"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0037"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
EndIf
|
||||
|
||||
; Taiwanese tea cafe latte smoothie v2
|
||||
If $12-99-03-0038.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0038"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0038"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
EndIf
|
||||
|
||||
; Melon cafe latte smoothie v2
|
||||
If $12-99-03-0039.Button = "Enable" Then
|
||||
Var ListOfAllRandom[IndexOfAllRandom] = "12-99-03-0039"
|
||||
Var ListOfCoffee[IndexOfCoffee] = "12-99-03-0039"
|
||||
Var IndexOfAllRandom = IndexOfAllRandom + 1
|
||||
Var IndexOfCoffee = IndexOfCoffee + 1
|
||||
EndIf
|
||||
|
||||
|
||||
DEBUGVAR IndexOfAllRandom
|
||||
DEBUGVAR IndexOfCoffee
|
||||
DEBUGVAR IndexOfMilk
|
||||
DEBUGVAR IndexOfTea
|
||||
|
||||
DEBUGVAR IndexOfRateupOreoAll
|
||||
DEBUGVAR IndexOfRateupOreoCoffee
|
||||
DEBUGVAR IndexOfRateupOreoMilk
|
||||
DEBUGVAR IndexOfRateupOreoTea
|
||||
|
||||
If IndexOfAllRandom = 0 Then
|
||||
Var SubRandAllButtonEnable = "Disable"
|
||||
EndIf
|
||||
|
||||
If IndexOfCoffee = 0 Then
|
||||
Var SubRandCoffButtonEnable = "Disable"
|
||||
EndIf
|
||||
If IndexOfMilk = 0 Then
|
||||
Var SubRandMilkButtonEnable = "Disable"
|
||||
EndIf
|
||||
If IndexOfTea = 0 Then
|
||||
Var SubRandTeaButtonEnable = "Disable"
|
||||
EndIf
|
||||
|
||||
|
||||
If IndexOfRateupOreoAll = 0 Then
|
||||
Var SubRandAllButtonEnable = "Disable"
|
||||
EndIf
|
||||
|
||||
If IndexOfRateupOreoCoffee = 0 Then
|
||||
Var SubRandCoffButtonEnable = "Disable"
|
||||
EndIf
|
||||
If IndexOfRateupOreoMilk = 0 Then
|
||||
Var SubRandMilkButtonEnable = "Disable"
|
||||
EndIf
|
||||
If IndexOfRateupOreoTea = 0 Then
|
||||
Var SubRandTeaButtonEnable = "Disable"
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
Var ResultRandomIndex = 0
|
||||
|
||||
|
||||
Refresh
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,48 +0,0 @@
|
|||
|
||||
<Button>
|
||||
<X> 42 </X>
|
||||
<Y> 520 </Y>
|
||||
|
||||
<State> BigButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = ###normal_eng
|
||||
Else
|
||||
Var return = ###normal_thai
|
||||
EndIf
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = ###press_eng
|
||||
Else
|
||||
Var return = ###press_thai
|
||||
EndIf
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = ###disable_eng
|
||||
Else
|
||||
Var return = ###disable_thai
|
||||
EndIf
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventOnClick>
|
||||
|
||||
###EventOnClick
|
||||
|
||||
</EventOnClick>
|
||||
</Button>
|
||||
|
||||
<EventUnitTest1>
|
||||
Var BigButtonEnable = "Enable"
|
||||
Refresh
|
||||
</EventUnitTest1>
|
||||
<EventUnitTest2>
|
||||
Var BigButtonEnable = "Invisible"
|
||||
Refresh
|
||||
</EventUnitTest2>
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
|
||||
<Button>
|
||||
<X> 42 </X>
|
||||
<Y> 520 </Y>
|
||||
<State> BigButtonEnable </State>
|
||||
<Filename> ###normal_eng </Filename>
|
||||
<FilenamePress> ###press_eng </FilenamePress>
|
||||
<FilenameDisable> ###disable_eng </FilenameDisable>
|
||||
<EventOnClick>
|
||||
|
||||
###EventOnClick
|
||||
|
||||
</EventOnClick>
|
||||
</Button>
|
||||
|
||||
<EventUnitTest1>
|
||||
Var BigButtonEnable = "Enable"
|
||||
Refresh
|
||||
</EventUnitTest1>
|
||||
<EventUnitTest2>
|
||||
Var BigButtonEnable = "Invisible"
|
||||
Refresh
|
||||
</EventUnitTest2>
|
||||
|
|
@ -1,305 +0,0 @@
|
|||
;
|
||||
;
|
||||
;
|
||||
|
||||
; Sub-button for 4 random menu
|
||||
|
||||
;
|
||||
;
|
||||
;
|
||||
|
||||
<Button>
|
||||
<X> 43 </X>
|
||||
<Y> 519 </Y>
|
||||
<State> SubRandMilkButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_milk.png"
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_milk.png"
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bd_random_milk.png"
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventClick>
|
||||
Var OreoGuarantee = OreoGuarantee + 1
|
||||
Var ResultRandomIndex = 0
|
||||
DEBUGVAR OreoGuarantee
|
||||
If OreoGuarantee > 4 Then
|
||||
Var IndexOfMilk = IndexOfMilk - 1
|
||||
Random2 0 IndexOfMilk ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfMilk[ResultRandomIndex]
|
||||
DEBUGVAR ListOfMilk[ResultRandomIndex]
|
||||
|
||||
Var OreoGuarantee = 0
|
||||
Else
|
||||
Var IndexOfRateupOreoMilk = IndexOfRateupOreoMilk - 1
|
||||
Random2 0 IndexOfRateupOreoMilk ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfOreoMilk[ResultRandomIndex]
|
||||
DEBUGVAR ListOfOreoMilk[ResultRandomIndex]
|
||||
EndIf
|
||||
|
||||
DEBUGVAR ResultRandomIndex
|
||||
|
||||
Topping "Load" ProductCodeRandom
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Open "ROOT/taobin_project/xml/page_topping_select_35.xml"
|
||||
</EventClick>
|
||||
</Button>
|
||||
<Text>
|
||||
<X> 91</X>
|
||||
<Y> 635 </Y>
|
||||
<Size> 32 </Size>
|
||||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<Font> MITRegularTTF </Font>
|
||||
<Color> 0x5A5A5A </Color>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> SubRandMilkButtonEnable </State>
|
||||
<Value> text_unavailable </Value>
|
||||
<Align> center-vertical-horizontal </Align>
|
||||
</Text>
|
||||
|
||||
<Button>
|
||||
<X> 301 </X>
|
||||
<Y> 519 </Y>
|
||||
<State> SubRandTeaButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_tea.png"
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_tea.png"
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bd_random_tea.png"
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventClick>
|
||||
Var OreoGuarantee = OreoGuarantee + 1
|
||||
Var ResultRandomIndex = 0
|
||||
DEBUGVAR OreoGuarantee
|
||||
DEBUGVAR IndexOfTea
|
||||
DEBUGVAR IndexOfRateupOreoTea
|
||||
If OreoGuarantee > 4 Then
|
||||
|
||||
Var IndexOfTea = IndexOfTea - 1
|
||||
Random2 0 IndexOfTea ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfTea[ResultRandomIndex]
|
||||
DEBUGVAR ListOfTea[ResultRandomIndex]
|
||||
|
||||
Var OreoGuarantee = 0
|
||||
Else
|
||||
|
||||
Var IndexOfRateupOreoTea = IndexOfRateupOreoTea - 1
|
||||
Random2 0 IndexOfRateupOreoTea ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfOreoTea[ResultRandomIndex]
|
||||
DEBUGVAR ListOfOreoTea[ResultRandomIndex]
|
||||
|
||||
EndIf
|
||||
|
||||
DEBUGVAR ResultRandomIndex
|
||||
|
||||
Topping "Load" ProductCodeRandom
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Open "ROOT/taobin_project/xml/page_topping_select_35.xml"
|
||||
</EventClick>
|
||||
</Button>
|
||||
<Text>
|
||||
<X> 349 </X>
|
||||
<Y> 635 </Y>
|
||||
<Size> 32 </Size>
|
||||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<Font> MITRegularTTF </Font>
|
||||
<Color> 0x5A5A5A </Color>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> SubRandTeaButtonEnable </State>
|
||||
<Value> text_unavailable </Value>
|
||||
<Align> center-vertical-horizontal </Align>
|
||||
</Text>
|
||||
|
||||
|
||||
<Button>
|
||||
<X> 43 </X>
|
||||
<Y> 837 </Y>
|
||||
<State> SubRandCoffButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_coffee.png"
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_coffee.png"
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bd_random_coffee.png"
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventClick>
|
||||
Var OreoGuarantee = OreoGuarantee + 1
|
||||
Var ResultRandomIndex = 0
|
||||
DEBUGVAR OreoGuarantee
|
||||
DEBUGVAR IndexOfCoffee
|
||||
DEBUGVAR IndexOfRateupOreoCoffee
|
||||
If OreoGuarantee > 4 Then
|
||||
|
||||
Var IndexOfCoffee = IndexOfCoffee - 1
|
||||
Random2 0 IndexOfCoffee ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfCoffee[ResultRandomIndex]
|
||||
DEBUGVAR ListOfCoffee[ResultRandomIndex]
|
||||
|
||||
Var OreoGuarantee = 0
|
||||
|
||||
Else
|
||||
|
||||
Var IndexOfRateupOreoCoffee = IndexOfRateupOreoCoffee - 1
|
||||
Random2 0 IndexOfRateupOreoCoffee ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfOreoCoffee[ResultRandomIndex]
|
||||
DEBUGVAR ListOfOreoCoffee[ResultRandomIndex]
|
||||
|
||||
EndIf
|
||||
DEBUGVAR ResultRandomIndex
|
||||
|
||||
Topping "Load" ProductCodeRandom
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Open "ROOT/taobin_project/xml/page_topping_select_35.xml"
|
||||
</EventClick>
|
||||
</Button>
|
||||
<Text>
|
||||
<X> 91</X>
|
||||
<Y> 953 </Y>
|
||||
<Size> 32 </Size>
|
||||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<Font> MITRegularTTF </Font>
|
||||
<Color> 0x5A5A5A </Color>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> SubRandCoffButtonEnable </State>
|
||||
<Value> text_unavailable </Value>
|
||||
<Align> center-vertical-horizontal </Align>
|
||||
</Text>
|
||||
|
||||
<Button>
|
||||
<X> 301 </X>
|
||||
<Y> 837 </Y>
|
||||
<State> SubRandAllButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_all.png"
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bn_random_all.png"
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
Var return = "ROOT/taobin_project/image/event/bd_random_all.png"
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventClick>
|
||||
Var OreoGuarantee = OreoGuarantee + 1
|
||||
Var ResultRandomIndex = 0
|
||||
DEBUGVAR OreoGuarantee
|
||||
If OreoGuarantee > 4 Then
|
||||
Var IndexOfAllRandom = IndexOfAllRandom - 1
|
||||
Random2 0 IndexOfAllRandom ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfAllRandom[ResultRandomIndex]
|
||||
DEBUGVAR ListOfAllRandom[ResultRandomIndex]
|
||||
Var OreoGuarantee = 0
|
||||
Else
|
||||
Var IndexOfRateupOreoAll = IndexOfRateupOreoAll - 1
|
||||
Random2 0 IndexOfRateupOreoAll ResultRandomIndex
|
||||
Var ProductCodeRandom = ListOfOreoAll[ResultRandomIndex]
|
||||
DEBUGVAR ListOfOreoAll[ResultRandomIndex]
|
||||
|
||||
EndIf
|
||||
DEBUGVAR ResultRandomIndex
|
||||
|
||||
Topping "Load" ProductCodeRandom
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Open "ROOT/taobin_project/xml/page_topping_select_35.xml"
|
||||
</EventClick>
|
||||
</Button>
|
||||
<Text>
|
||||
<X> 349</X>
|
||||
<Y> 953 </Y>
|
||||
<Size> 32 </Size>
|
||||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<Font> MITRegularTTF </Font>
|
||||
<Color> 0x5A5A5A </Color>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> SubRandAllButtonEnable </State>
|
||||
<Value> text_unavailable </Value>
|
||||
<Align> center-vertical-horizontal </Align>
|
||||
</Text>
|
||||
|
||||
;
|
||||
;
|
||||
;
|
||||
;
|
||||
; Big button for mys event
|
||||
;
|
||||
;
|
||||
;
|
||||
|
||||
<Button>
|
||||
<X> 42 </X>
|
||||
<Y> 518 </Y>
|
||||
<State> BigButtonEnable </State>
|
||||
<Filename>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_en.png"
|
||||
Else
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_th.png"
|
||||
EndIf
|
||||
)
|
||||
</Filename>
|
||||
<FilenamePress>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_en.png"
|
||||
Else
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_th.png"
|
||||
EndIf
|
||||
)
|
||||
</FilenamePress>
|
||||
<FilenameDisable>
|
||||
eval(
|
||||
If show_eng = "true" Then
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_en.png"
|
||||
Else
|
||||
Var return = "ROOT/taobin_project/image/event/pro_mystery_cup_th.png"
|
||||
EndIf
|
||||
)
|
||||
</FilenameDisable>
|
||||
<EventOnClick>
|
||||
###EventOnClick
|
||||
</EventOnClick>
|
||||
</Button>
|
||||
|
||||
<EventUnitTest1>
|
||||
Var BigButtonEnable = "Enable"
|
||||
Refresh
|
||||
</EventUnitTest1>
|
||||
<EventUnitTest2>
|
||||
Var BigButtonEnable = "Invisible"
|
||||
Refresh
|
||||
</EventUnitTest2>
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,42 +0,0 @@
|
|||
; thailand
|
||||
|
||||
|
||||
; zone promote
|
||||
Var BigButtonEnable = "Enable"
|
||||
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/page_catalog_group_recommend.lxml"
|
||||
Var RecommendPageMulti = "ROOT/taobin_project/inter/tha/xml/multi/page_catalog_group_recommend.lxml"
|
||||
|
||||
If WinterWarmersCatalogFlag = 1 Then
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_winter_warmers.lxml"
|
||||
EndIf
|
||||
|
||||
If WestfieldCatalogFlag = 1 Then
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_westfield.lxml"
|
||||
EndIf
|
||||
|
||||
If AnniverseryPro = 1 Then
|
||||
Var RecommendPage = "ROOT/taobin_project/inter/tha/xml/event/promotion_anniversary_1st.lxml"
|
||||
EndIf
|
||||
|
||||
If OpenFromPageBoard = 1 Then
|
||||
If EnableMultiInstance = "true" Then
|
||||
OpenInst 2 RecommendPageMulti
|
||||
OpenInst 3 "ROOT/taobin_project/xml/topview2.xml"
|
||||
Else
|
||||
OpenInst 2 RecommendPage
|
||||
EndIf
|
||||
Else
|
||||
If EnableMultiInstance = "true" Then
|
||||
Open RecommendPageMulti
|
||||
Else
|
||||
Open RecommendPage
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
Var OpenFromPageBoard = 0
|
||||
|
||||
If OpenFromMulti = 1 Then
|
||||
TabMenuVisibleInst 99
|
||||
EndIf
|
||||
Var OpenFromMulti = 0
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
; thailand
|
||||
|
||||
|
||||
;DEBUGVAR SystemDateMonthInt
|
||||
;DEBUGVAR SystemDateDayInt
|
||||
|
||||
; Reset flag away.
|
||||
|
||||
; Enable app game
|
||||
Var GameEnableFromTrickerEv = 1
|
||||
|
||||
Var NewCollectPointFlag = 1
|
||||
|
||||
Var WinterWarmersCatalogFlag = 0
|
||||
|
||||
Var WestfieldCatalogFlag = 0
|
||||
|
||||
; 2 - 29 Sep
|
||||
Var AnniverseryPro = 0
|
||||
|
||||
If SystemDateMonthInt = 10 Then
|
||||
If SystemDateDayInt >= 2 Then
|
||||
If SystemDateDayInt <= 29 then
|
||||
Var AnniverseryPro = 1
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
Var XMLLiveInfoEnable = 1
|
||||
|
||||
If BoxID = 200027 Then
|
||||
Var AnniverseryPro = 1
|
||||
EndIf
|
||||
|
||||
|
||||
DEBUGVAR Propepsi99Enable
|
||||
DEBUGVAR DisplayFormatFull
|
||||
|
|
@ -21,35 +21,6 @@
|
|||
EndIf
|
||||
|
||||
|
||||
|
||||
If show_eng = "true" Then
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If show_eng = "false" Then
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
Var show_eng = ""
|
||||
InstanceGetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If show_eng = "" Then
|
||||
If SaveStringInst "ShowEng" Then
|
||||
Var show_eng = "true"
|
||||
InstanceGetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
<EventLanguageOnChange>
|
||||
|
|
|
|||
|
|
@ -519,10 +519,12 @@
|
|||
out_xml( '\t<Width>128</Width>\r\n')
|
||||
out_xml( '\t<Height>64</Height>\r\n')
|
||||
out_xml( '\t<MaxLine> 1 </MaxLine>\r\n')
|
||||
out_xml( '\t<MaxSize> 18 </MaxSize>\r\n')
|
||||
out_xml( '\t<MaxSize> 14 </MaxSize>\r\n')
|
||||
out_xml( '\t<Font> OpunMediumTTF </Font>\r\n')
|
||||
out_xml( '\t<Color> 0x6F5F51 </Color>\r\n')
|
||||
|
||||
|
||||
out_xml( '\t<Refresh> "auto,value" </Refresh>\r\n')
|
||||
|
||||
out_xml( '\t<WidthText> 128 </WidthText>\r\n')
|
||||
out_xml( '\t<Mode> "disable-show" </Mode>\r\n')
|
||||
out_xml( '\t<State> $Sum' + str_con_var +' </State> \r\n')
|
||||
|
|
@ -553,10 +555,17 @@
|
|||
out_xml( '\t\t\tVar $Sum' + str_con_var +'TextID !assigned GETS($Sum' + str_con_var +'Tag,"TextID")\r\n')
|
||||
|
||||
#out_xml( '\t\tDEBUGVAR TextMessageID\r\n')
|
||||
|
||||
out_xml( '\t\t\tIf $Sum' + str_con_var +'TextID != "" Then\r\n')
|
||||
out_xml( '\t\t\t Var $Sum' + str_con_var +'TextValue = ""\r\n')
|
||||
out_xml( '\t\t\tEndIf\r\n')
|
||||
|
||||
out_xml( '\t\t\tIf $Sum' + str_con_var +'TextValue = "" Then\r\n')
|
||||
out_xml( '\t\t\t\tIf $Sum' + str_con_var +'TextID = "" Then\r\n')
|
||||
out_xml( '\t\t\t\t Var $Sum' + str_con_var +'TextID = "000013"\r\n')
|
||||
out_xml( '\t\t\t\tEndIf\r\n')
|
||||
out_xml( '\t\t\tEndIf\r\n')
|
||||
|
||||
out_xml( '\t\tEndIf\r\n')
|
||||
|
||||
out_xml( '\t</Script>\r\n')
|
||||
|
|
|
|||
|
|
@ -18,6 +18,20 @@
|
|||
|
||||
DEBUGVAR ToppingNewShow
|
||||
|
||||
DEBUGVAR OpenFromPageBoard
|
||||
If OpenFromPageBoard = 1 Then
|
||||
Var OpenFromPageBoard = 0
|
||||
Var langnext1 = "true"
|
||||
Var langnext2 = "true"
|
||||
Var langnext3 = "true"
|
||||
Var langnext4 = "true"
|
||||
Var langnext5 = "true"
|
||||
Var langnext6 = "true"
|
||||
Var langnext7 = "true"
|
||||
Var langnext8 = "true"
|
||||
SAVELOG "======================================= RefreshAll Languages ================================"
|
||||
EndIf
|
||||
|
||||
Var NextPage = "-"
|
||||
|
||||
Var Seeker.thankLidFlag = 0
|
||||
|
|
@ -533,7 +547,9 @@
|
|||
<EventClick>
|
||||
|
||||
Var OpenFromMulti = 1
|
||||
|
||||
TRY "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/event/script_common_for_open_promotion_xml.ev"
|
||||
|
||||
RootLayoutVisible 3 "hide"
|
||||
RootLayoutVisible 13 "hide"
|
||||
|
||||
|
|
@ -561,6 +577,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst5MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 2
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -631,6 +648,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst6MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 3
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -664,6 +682,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst7MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 4
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -697,6 +716,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst11MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 7
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -730,6 +750,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst10MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 8
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -766,6 +787,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst8MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 5
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -798,6 +820,7 @@
|
|||
<Volume> SoundVolume </Volume>
|
||||
<EventClick>
|
||||
If Inst8MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 5
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
@ -858,6 +881,7 @@
|
|||
<EventClick>
|
||||
|
||||
If Inst9MenuLoaded = "done" Then
|
||||
Var MultiProcess = "Invisible"
|
||||
TabMenuVisibleInst 6
|
||||
|
||||
OpenInst 2 "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/multi/page_instance2.xml"
|
||||
|
|
|
|||
|
|
@ -451,9 +451,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021018 </State>
|
||||
|
|
@ -476,6 +477,11 @@
|
|||
If $Sum1204021018TextID != "" Then
|
||||
Var $Sum1204021018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021018TextValue = "" Then
|
||||
If $Sum1204021018TextID = "" Then
|
||||
Var $Sum1204021018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -800,9 +806,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021019 </State>
|
||||
|
|
@ -825,6 +832,11 @@
|
|||
If $Sum1204021019TextID != "" Then
|
||||
Var $Sum1204021019TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021019TextValue = "" Then
|
||||
If $Sum1204021019TextID = "" Then
|
||||
Var $Sum1204021019TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1149,9 +1161,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021020 </State>
|
||||
|
|
@ -1174,6 +1187,11 @@
|
|||
If $Sum1204021020TextID != "" Then
|
||||
Var $Sum1204021020TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021020TextValue = "" Then
|
||||
If $Sum1204021020TextID = "" Then
|
||||
Var $Sum1204021020TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1498,9 +1516,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021021 </State>
|
||||
|
|
@ -1523,6 +1542,11 @@
|
|||
If $Sum1204021021TextID != "" Then
|
||||
Var $Sum1204021021TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021021TextValue = "" Then
|
||||
If $Sum1204021021TextID = "" Then
|
||||
Var $Sum1204021021TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1847,9 +1871,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204021022 </State>
|
||||
|
|
@ -1872,6 +1897,11 @@
|
|||
If $Sum1204021022TextID != "" Then
|
||||
Var $Sum1204021022TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204021022TextValue = "" Then
|
||||
If $Sum1204021022TextID = "" Then
|
||||
Var $Sum1204021022TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -17,20 +17,24 @@
|
|||
|
||||
EndIf
|
||||
|
||||
Var CoffeeRefreshTimeOut = 0
|
||||
|
||||
</EventOpen>
|
||||
|
||||
|
||||
|
||||
<EventOnShow>
|
||||
|
||||
SAVELOG "Onshow 1"
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_default_init.lxml"
|
||||
Var Menu2Selected = "PressForever"
|
||||
|
||||
|
||||
SAVELOG "Onshow 2"
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/tab_menu_show_and_refresh.lxml"
|
||||
|
||||
Var Timeout = 0
|
||||
|
||||
|
||||
SAVELOG "Onshow 3"
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new_menu.lxml"
|
||||
|
||||
SetInstanceIgnoreTouch
|
||||
|
|
@ -59,6 +63,7 @@
|
|||
InstanceGetString SaveStringInst
|
||||
;DEBUGVAR SaveStringInst
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
SAVELOG "OPEN slient Refresh"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
|
||||
|
|
@ -75,6 +80,7 @@
|
|||
|
||||
If SlientRefreshEnable = 1 Then
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
SAVELOG "OPEN slient 2"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
|
||||
|
|
@ -89,6 +95,7 @@
|
|||
|
||||
If SlientRefreshIndex = 2 Then
|
||||
If inst_show2 = 0 Then
|
||||
SAVELOG "OPEN slient 1"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile2
|
||||
Open CurrentOpenFile2
|
||||
|
||||
|
|
@ -103,6 +110,24 @@
|
|||
DEBUGVAR langnext
|
||||
RefreshAll
|
||||
EndIf
|
||||
|
||||
InstanceGetString SaveStringInst
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
|
||||
Else
|
||||
If LanguageShow = "ENG" Then
|
||||
Var SaveStringInst = "ShowEng"
|
||||
Var show_eng = "false"
|
||||
EndIf
|
||||
If LanguageShow = "THAI" Then
|
||||
Var SaveStringInst = "ShowThai"
|
||||
Var show_eng = "true"
|
||||
EndIf
|
||||
If LanguageShow "MYANMAR" Then
|
||||
Var show_eng = "false"
|
||||
Var SaveStringInst = "ShowMYANMAR"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
|
@ -200,71 +225,18 @@
|
|||
SAVELOG "Runscript 3"
|
||||
Script "-" "-"
|
||||
EndIf
|
||||
|
||||
If CoffeeRefreshTimeOut > 15 Then
|
||||
Var CoffeeRefreshTimeOut = 0
|
||||
Script "-" "-"
|
||||
EndIf
|
||||
|
||||
Var CoffeeRefreshTimeOut = CoffeeRefreshTimeOut + 1
|
||||
|
||||
|
||||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
DEBUGVAR EnabledBlockUpdateInst6
|
||||
DEBUGVAR EnabledBlocksDrawInst6
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
||||
|
|
|
|||
|
|
@ -601,9 +601,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030094 </State>
|
||||
|
|
@ -626,6 +627,11 @@
|
|||
If $Sum1203030094TextID != "" Then
|
||||
Var $Sum1203030094TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030094TextValue = "" Then
|
||||
If $Sum1203030094TextID = "" Then
|
||||
Var $Sum1203030094TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -950,9 +956,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030095 </State>
|
||||
|
|
@ -975,6 +982,11 @@
|
|||
If $Sum1203030095TextID != "" Then
|
||||
Var $Sum1203030095TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030095TextValue = "" Then
|
||||
If $Sum1203030095TextID = "" Then
|
||||
Var $Sum1203030095TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1303,9 +1315,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000512030200051203030005 </State>
|
||||
|
|
@ -1328,6 +1341,11 @@
|
|||
If $Sum120301000512030200051203030005TextID != "" Then
|
||||
Var $Sum120301000512030200051203030005TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000512030200051203030005TextValue = "" Then
|
||||
If $Sum120301000512030200051203030005TextID = "" Then
|
||||
Var $Sum120301000512030200051203030005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1656,9 +1674,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000112030200011203030001 </State>
|
||||
|
|
@ -1681,6 +1700,11 @@
|
|||
If $Sum120301000112030200011203030001TextID != "" Then
|
||||
Var $Sum120301000112030200011203030001TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000112030200011203030001TextValue = "" Then
|
||||
If $Sum120301000112030200011203030001TextID = "" Then
|
||||
Var $Sum120301000112030200011203030001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2009,9 +2033,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000312030200031203030003 </State>
|
||||
|
|
@ -2034,6 +2059,11 @@
|
|||
If $Sum120301000312030200031203030003TextID != "" Then
|
||||
Var $Sum120301000312030200031203030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000312030200031203030003TextValue = "" Then
|
||||
If $Sum120301000312030200031203030003TextID = "" Then
|
||||
Var $Sum120301000312030200031203030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2358,9 +2388,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200061203030006 </State>
|
||||
|
|
@ -2383,6 +2414,11 @@
|
|||
If $Sum12030200061203030006TextID != "" Then
|
||||
Var $Sum12030200061203030006TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200061203030006TextValue = "" Then
|
||||
If $Sum12030200061203030006TextID = "" Then
|
||||
Var $Sum12030200061203030006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2711,9 +2747,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000212030200021203030002 </State>
|
||||
|
|
@ -2736,6 +2773,11 @@
|
|||
If $Sum120301000212030200021203030002TextID != "" Then
|
||||
Var $Sum120301000212030200021203030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000212030200021203030002TextValue = "" Then
|
||||
If $Sum120301000212030200021203030002TextID = "" Then
|
||||
Var $Sum120301000212030200021203030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3064,9 +3106,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002212030200221203030022 </State>
|
||||
|
|
@ -3089,6 +3132,11 @@
|
|||
If $Sum120301002212030200221203030022TextID != "" Then
|
||||
Var $Sum120301002212030200221203030022TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002212030200221203030022TextValue = "" Then
|
||||
If $Sum120301002212030200221203030022TextID = "" Then
|
||||
Var $Sum120301002212030200221203030022TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3413,9 +3461,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030010 </State>
|
||||
|
|
@ -3438,6 +3487,11 @@
|
|||
If $Sum1203030010TextID != "" Then
|
||||
Var $Sum1203030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030010TextValue = "" Then
|
||||
If $Sum1203030010TextID = "" Then
|
||||
Var $Sum1203030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3762,9 +3816,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030020 </State>
|
||||
|
|
@ -3787,6 +3842,11 @@
|
|||
If $Sum1203030020TextID != "" Then
|
||||
Var $Sum1203030020TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030020TextValue = "" Then
|
||||
If $Sum1203030020TextID = "" Then
|
||||
Var $Sum1203030020TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4111,9 +4171,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030021 </State>
|
||||
|
|
@ -4136,6 +4197,11 @@
|
|||
If $Sum1203030021TextID != "" Then
|
||||
Var $Sum1203030021TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030021TextValue = "" Then
|
||||
If $Sum1203030021TextID = "" Then
|
||||
Var $Sum1203030021TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4460,9 +4526,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200411205030041 </State>
|
||||
|
|
@ -4485,6 +4552,11 @@
|
|||
If $Sum12050200411205030041TextID != "" Then
|
||||
Var $Sum12050200411205030041TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200411205030041TextValue = "" Then
|
||||
If $Sum12050200411205030041TextID = "" Then
|
||||
Var $Sum12050200411205030041TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4809,9 +4881,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200081205030008 </State>
|
||||
|
|
@ -4834,6 +4907,11 @@
|
|||
If $Sum12050200081205030008TextID != "" Then
|
||||
Var $Sum12050200081205030008TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200081205030008TextValue = "" Then
|
||||
If $Sum12050200081205030008TextID = "" Then
|
||||
Var $Sum12050200081205030008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5158,9 +5236,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020044 </State>
|
||||
|
|
@ -5183,6 +5262,11 @@
|
|||
If $Sum1205020044TextID != "" Then
|
||||
Var $Sum1205020044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020044TextValue = "" Then
|
||||
If $Sum1205020044TextID = "" Then
|
||||
Var $Sum1205020044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5507,9 +5591,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020045 </State>
|
||||
|
|
@ -5532,6 +5617,11 @@
|
|||
If $Sum1205020045TextID != "" Then
|
||||
Var $Sum1205020045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020045TextValue = "" Then
|
||||
If $Sum1205020045TextID = "" Then
|
||||
Var $Sum1205020045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5856,9 +5946,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030009 </State>
|
||||
|
|
@ -5881,6 +5972,11 @@
|
|||
If $Sum1203030009TextID != "" Then
|
||||
Var $Sum1203030009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030009TextValue = "" Then
|
||||
If $Sum1203030009TextID = "" Then
|
||||
Var $Sum1203030009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6209,9 +6305,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002312030200231203030023 </State>
|
||||
|
|
@ -6234,6 +6331,11 @@
|
|||
If $Sum120301002312030200231203030023TextID != "" Then
|
||||
Var $Sum120301002312030200231203030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002312030200231203030023TextValue = "" Then
|
||||
If $Sum120301002312030200231203030023TextID = "" Then
|
||||
Var $Sum120301002312030200231203030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6562,9 +6664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002412030200241203030024 </State>
|
||||
|
|
@ -6587,6 +6690,11 @@
|
|||
If $Sum120301002412030200241203030024TextID != "" Then
|
||||
Var $Sum120301002412030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002412030200241203030024TextValue = "" Then
|
||||
If $Sum120301002412030200241203030024TextID = "" Then
|
||||
Var $Sum120301002412030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6911,9 +7019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030061 </State>
|
||||
|
|
@ -6936,6 +7045,11 @@
|
|||
If $Sum1203030061TextID != "" Then
|
||||
Var $Sum1203030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030061TextValue = "" Then
|
||||
If $Sum1203030061TextID = "" Then
|
||||
Var $Sum1203030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,8 @@
|
|||
If SlientRefreshIndex = 6 Then
|
||||
Var SlientRefreshIndex = 7
|
||||
EndIf
|
||||
|
||||
Var HealthRefreshTimeOut = 0
|
||||
</EventOpen>
|
||||
|
||||
<EventOnShow>
|
||||
|
|
@ -179,71 +181,18 @@
|
|||
EndIf
|
||||
EndIf
|
||||
|
||||
If HealthRefreshTimeOut > 15 Then
|
||||
Var HealthRefreshTimeOut = 0
|
||||
Script "-" "-"
|
||||
EndIf
|
||||
|
||||
Var HealthRefreshTimeOut = HealthRefreshTimeOut + 1
|
||||
|
||||
|
||||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
||||
<FrameScroll>
|
||||
|
|
@ -577,9 +526,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110031201021001 </State>
|
||||
|
|
@ -602,6 +552,11 @@
|
|||
If $Sum12010110031201021001TextID != "" Then
|
||||
Var $Sum12010110031201021001TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110031201021001TextValue = "" Then
|
||||
If $Sum12010110031201021001TextID = "" Then
|
||||
Var $Sum12010110031201021001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -930,9 +885,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110031221021001 </State>
|
||||
|
|
@ -955,6 +911,11 @@
|
|||
If $Sum12210110031221021001TextID != "" Then
|
||||
Var $Sum12210110031221021001TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110031221021001TextValue = "" Then
|
||||
If $Sum12210110031221021001TextID = "" Then
|
||||
Var $Sum12210110031221021001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1283,9 +1244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110041201021002 </State>
|
||||
|
|
@ -1308,6 +1270,11 @@
|
|||
If $Sum12010110041201021002TextID != "" Then
|
||||
Var $Sum12010110041201021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110041201021002TextValue = "" Then
|
||||
If $Sum12010110041201021002TextID = "" Then
|
||||
Var $Sum12010110041201021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1636,9 +1603,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110041221021002 </State>
|
||||
|
|
@ -1661,6 +1629,11 @@
|
|||
If $Sum12210110041221021002TextID != "" Then
|
||||
Var $Sum12210110041221021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110041221021002TextValue = "" Then
|
||||
If $Sum12210110041221021002TextID = "" Then
|
||||
Var $Sum12210110041221021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1989,9 +1962,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110061201021003 </State>
|
||||
|
|
@ -2014,6 +1988,11 @@
|
|||
If $Sum12010110061201021003TextID != "" Then
|
||||
Var $Sum12010110061201021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110061201021003TextValue = "" Then
|
||||
If $Sum12010110061201021003TextID = "" Then
|
||||
Var $Sum12010110061201021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2342,9 +2321,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110061221021003 </State>
|
||||
|
|
@ -2367,6 +2347,11 @@
|
|||
If $Sum12210110061221021003TextID != "" Then
|
||||
Var $Sum12210110061221021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110061221021003TextValue = "" Then
|
||||
If $Sum12210110061221021003TextID = "" Then
|
||||
Var $Sum12210110061221021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2695,9 +2680,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110991201021099 </State>
|
||||
|
|
@ -2720,6 +2706,11 @@
|
|||
If $Sum12010110991201021099TextID != "" Then
|
||||
Var $Sum12010110991201021099TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110991201021099TextValue = "" Then
|
||||
If $Sum12010110991201021099TextID = "" Then
|
||||
Var $Sum12010110991201021099TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3048,9 +3039,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110991221021099 </State>
|
||||
|
|
@ -3073,6 +3065,11 @@
|
|||
If $Sum12210110991221021099TextID != "" Then
|
||||
Var $Sum12210110991221021099TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110991221021099TextValue = "" Then
|
||||
If $Sum12210110991221021099TextID = "" Then
|
||||
Var $Sum12210110991221021099TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3401,9 +3398,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110241202021024 </State>
|
||||
|
|
@ -3426,6 +3424,11 @@
|
|||
If $Sum12020110241202021024TextID != "" Then
|
||||
Var $Sum12020110241202021024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110241202021024TextValue = "" Then
|
||||
If $Sum12020110241202021024TextID = "" Then
|
||||
Var $Sum12020110241202021024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3754,9 +3757,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110251202021025 </State>
|
||||
|
|
@ -3779,6 +3783,11 @@
|
|||
If $Sum12020110251202021025TextID != "" Then
|
||||
Var $Sum12020110251202021025TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110251202021025TextValue = "" Then
|
||||
If $Sum12020110251202021025TextID = "" Then
|
||||
Var $Sum12020110251202021025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4107,9 +4116,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110261202021026 </State>
|
||||
|
|
@ -4132,6 +4142,11 @@
|
|||
If $Sum12020110261202021026TextID != "" Then
|
||||
Var $Sum12020110261202021026TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110261202021026TextValue = "" Then
|
||||
If $Sum12020110261202021026TextID = "" Then
|
||||
Var $Sum12020110261202021026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4460,9 +4475,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110271202021027 </State>
|
||||
|
|
@ -4485,6 +4501,11 @@
|
|||
If $Sum12020110271202021027TextID != "" Then
|
||||
Var $Sum12020110271202021027TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110271202021027TextValue = "" Then
|
||||
If $Sum12020110271202021027TextID = "" Then
|
||||
Var $Sum12020110271202021027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4813,9 +4834,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110291202021029 </State>
|
||||
|
|
@ -4838,6 +4860,11 @@
|
|||
If $Sum12020110291202021029TextID != "" Then
|
||||
Var $Sum12020110291202021029TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110291202021029TextValue = "" Then
|
||||
If $Sum12020110291202021029TextID = "" Then
|
||||
Var $Sum12020110291202021029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5166,9 +5193,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110301202021030 </State>
|
||||
|
|
@ -5191,6 +5219,11 @@
|
|||
If $Sum12020110301202021030TextID != "" Then
|
||||
Var $Sum12020110301202021030TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110301202021030TextValue = "" Then
|
||||
If $Sum12020110301202021030TextID = "" Then
|
||||
Var $Sum12020110301202021030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5519,9 +5552,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110311202021031 </State>
|
||||
|
|
@ -5544,6 +5578,11 @@
|
|||
If $Sum12020110311202021031TextID != "" Then
|
||||
Var $Sum12020110311202021031TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110311202021031TextValue = "" Then
|
||||
If $Sum12020110311202021031TextID = "" Then
|
||||
Var $Sum12020110311202021031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5872,9 +5911,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110321202021032 </State>
|
||||
|
|
@ -5897,6 +5937,11 @@
|
|||
If $Sum12020110321202021032TextID != "" Then
|
||||
Var $Sum12020110321202021032TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110321202021032TextValue = "" Then
|
||||
If $Sum12020110321202021032TextID = "" Then
|
||||
Var $Sum12020110321202021032TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6225,9 +6270,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110371202021037 </State>
|
||||
|
|
@ -6250,6 +6296,11 @@
|
|||
If $Sum12020110371202021037TextID != "" Then
|
||||
Var $Sum12020110371202021037TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110371202021037TextValue = "" Then
|
||||
If $Sum12020110371202021037TextID = "" Then
|
||||
Var $Sum12020110371202021037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6578,9 +6629,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030110021203021002 </State>
|
||||
|
|
@ -6603,6 +6655,11 @@
|
|||
If $Sum12030110021203021002TextID != "" Then
|
||||
Var $Sum12030110021203021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030110021203021002TextValue = "" Then
|
||||
If $Sum12030110021203021002TextID = "" Then
|
||||
Var $Sum12030110021203021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6931,9 +6988,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030110051203021005 </State>
|
||||
|
|
@ -6956,6 +7014,11 @@
|
|||
If $Sum12030110051203021005TextID != "" Then
|
||||
Var $Sum12030110051203021005TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030110051203021005TextValue = "" Then
|
||||
If $Sum12030110051203021005TextID = "" Then
|
||||
Var $Sum12030110051203021005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7284,9 +7347,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050110011205021001 </State>
|
||||
|
|
@ -7309,6 +7373,11 @@
|
|||
If $Sum12050110011205021001TextID != "" Then
|
||||
Var $Sum12050110011205021001TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050110011205021001TextValue = "" Then
|
||||
If $Sum12050110011205021001TextID = "" Then
|
||||
Var $Sum12050110011205021001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7633,9 +7702,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205021010 </State>
|
||||
|
|
@ -7658,6 +7728,11 @@
|
|||
If $Sum1205021010TextID != "" Then
|
||||
Var $Sum1205021010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205021010TextValue = "" Then
|
||||
If $Sum1205021010TextID = "" Then
|
||||
Var $Sum1205021010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7986,9 +8061,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110381202021038 </State>
|
||||
|
|
@ -8011,6 +8087,11 @@
|
|||
If $Sum12020110381202021038TextID != "" Then
|
||||
Var $Sum12020110381202021038TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110381202021038TextValue = "" Then
|
||||
If $Sum12020110381202021038TextID = "" Then
|
||||
Var $Sum12020110381202021038TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8339,9 +8420,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110391202021039 </State>
|
||||
|
|
@ -8364,6 +8446,11 @@
|
|||
If $Sum12020110391202021039TextID != "" Then
|
||||
Var $Sum12020110391202021039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110391202021039TextValue = "" Then
|
||||
If $Sum12020110391202021039TextID = "" Then
|
||||
Var $Sum12020110391202021039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8692,9 +8779,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110401202021040 </State>
|
||||
|
|
@ -8717,6 +8805,11 @@
|
|||
If $Sum12020110401202021040TextID != "" Then
|
||||
Var $Sum12020110401202021040TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110401202021040TextValue = "" Then
|
||||
If $Sum12020110401202021040TextID = "" Then
|
||||
Var $Sum12020110401202021040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9041,9 +9134,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200751203030075 </State>
|
||||
|
|
@ -9066,6 +9160,11 @@
|
|||
If $Sum12030200751203030075TextID != "" Then
|
||||
Var $Sum12030200751203030075TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200751203030075TextValue = "" Then
|
||||
If $Sum12030200751203030075TextID = "" Then
|
||||
Var $Sum12030200751203030075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9390,9 +9489,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201241205030124 </State>
|
||||
|
|
@ -9415,6 +9515,11 @@
|
|||
If $Sum12050201241205030124TextID != "" Then
|
||||
Var $Sum12050201241205030124TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201241205030124TextValue = "" Then
|
||||
If $Sum12050201241205030124TextID = "" Then
|
||||
Var $Sum12050201241205030124TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9739,9 +9844,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200681202030068 </State>
|
||||
|
|
@ -9764,6 +9870,11 @@
|
|||
If $Sum12020200681202030068TextID != "" Then
|
||||
Var $Sum12020200681202030068TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200681202030068TextValue = "" Then
|
||||
If $Sum12020200681202030068TextID = "" Then
|
||||
Var $Sum12020200681202030068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10088,9 +10199,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020125 </State>
|
||||
|
|
@ -10113,6 +10225,11 @@
|
|||
If $Sum1205020125TextID != "" Then
|
||||
Var $Sum1205020125TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020125TextValue = "" Then
|
||||
If $Sum1205020125TextID = "" Then
|
||||
Var $Sum1205020125TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10437,9 +10554,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020075 </State>
|
||||
|
|
@ -10462,6 +10580,11 @@
|
|||
If $Sum1201020075TextID != "" Then
|
||||
Var $Sum1201020075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020075TextValue = "" Then
|
||||
If $Sum1201020075TextID = "" Then
|
||||
Var $Sum1201020075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10786,9 +10909,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020075 </State>
|
||||
|
|
@ -10811,6 +10935,11 @@
|
|||
If $Sum1221020075TextID != "" Then
|
||||
Var $Sum1221020075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020075TextValue = "" Then
|
||||
If $Sum1221020075TextID = "" Then
|
||||
Var $Sum1221020075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11135,9 +11264,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200761203030076 </State>
|
||||
|
|
@ -11160,6 +11290,11 @@
|
|||
If $Sum12030200761203030076TextID != "" Then
|
||||
Var $Sum12030200761203030076TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200761203030076TextValue = "" Then
|
||||
If $Sum12030200761203030076TextID = "" Then
|
||||
Var $Sum12030200761203030076TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11484,9 +11619,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200691202030069 </State>
|
||||
|
|
@ -11509,6 +11645,11 @@
|
|||
If $Sum12020200691202030069TextID != "" Then
|
||||
Var $Sum12020200691202030069TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200691202030069TextValue = "" Then
|
||||
If $Sum12020200691202030069TextID = "" Then
|
||||
Var $Sum12020200691202030069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11833,9 +11974,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201261205030126 </State>
|
||||
|
|
@ -11858,6 +12000,11 @@
|
|||
If $Sum12050201261205030126TextID != "" Then
|
||||
Var $Sum12050201261205030126TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201261205030126TextValue = "" Then
|
||||
If $Sum12050201261205030126TextID = "" Then
|
||||
Var $Sum12050201261205030126TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12182,9 +12329,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201271205030127 </State>
|
||||
|
|
@ -12207,6 +12355,11 @@
|
|||
If $Sum12050201271205030127TextID != "" Then
|
||||
Var $Sum12050201271205030127TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201271205030127TextValue = "" Then
|
||||
If $Sum12050201271205030127TextID = "" Then
|
||||
Var $Sum12050201271205030127TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12531,9 +12684,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200701202030070 </State>
|
||||
|
|
@ -12556,6 +12710,11 @@
|
|||
If $Sum12020200701202030070TextID != "" Then
|
||||
Var $Sum12020200701202030070TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200701202030070TextValue = "" Then
|
||||
If $Sum12020200701202030070TextID = "" Then
|
||||
Var $Sum12020200701202030070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -16,6 +16,8 @@
|
|||
If SlientRefreshIndex = 6 Then
|
||||
Var SlientRefreshIndex = 7
|
||||
EndIf
|
||||
|
||||
Var HealthRefreshTimeOut = 0
|
||||
</EventOpen>
|
||||
|
||||
<EventOnShow>
|
||||
|
|
@ -182,71 +184,18 @@
|
|||
EndIf
|
||||
EndIf
|
||||
|
||||
If HealthRefreshTimeOut > 15 Then
|
||||
Var HealthRefreshTimeOut = 0
|
||||
Script "-" "-"
|
||||
EndIf
|
||||
|
||||
Var HealthRefreshTimeOut = HealthRefreshTimeOut + 1
|
||||
|
||||
|
||||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
||||
<?hurr
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -199,10 +199,6 @@
|
|||
?>
|
||||
|
||||
|
||||
<?hurr
|
||||
#include=./event/dummy_layout_promotion.py
|
||||
?>
|
||||
|
||||
<EventUnitTest4>
|
||||
RefreshAll
|
||||
</EventUnitTest4>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030009 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1203030009TextID != "" Then
|
||||
Var $Sum1203030009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030009TextValue = "" Then
|
||||
If $Sum1203030009TextID = "" Then
|
||||
Var $Sum1203030009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030027 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1203030027TextID != "" Then
|
||||
Var $Sum1203030027TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030027TextValue = "" Then
|
||||
If $Sum1203030027TextID = "" Then
|
||||
Var $Sum1203030027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030028 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1203030028TextID != "" Then
|
||||
Var $Sum1203030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030028TextValue = "" Then
|
||||
If $Sum1203030028TextID = "" Then
|
||||
Var $Sum1203030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030030 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1203030030TextID != "" Then
|
||||
Var $Sum1203030030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030030TextValue = "" Then
|
||||
If $Sum1203030030TextID = "" Then
|
||||
Var $Sum1203030030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030031 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1203030031TextID != "" Then
|
||||
Var $Sum1203030031TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030031TextValue = "" Then
|
||||
If $Sum1203030031TextID = "" Then
|
||||
Var $Sum1203030031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030043 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1202030043TextID != "" Then
|
||||
Var $Sum1202030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030043TextValue = "" Then
|
||||
If $Sum1202030043TextID = "" Then
|
||||
Var $Sum1202030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030044 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1202030044TextID != "" Then
|
||||
Var $Sum1202030044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030044TextValue = "" Then
|
||||
If $Sum1202030044TextID = "" Then
|
||||
Var $Sum1202030044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030043 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1201030043TextID != "" Then
|
||||
Var $Sum1201030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030043TextValue = "" Then
|
||||
If $Sum1201030043TextID = "" Then
|
||||
Var $Sum1201030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030026 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1203030026TextID != "" Then
|
||||
Var $Sum1203030026TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030026TextValue = "" Then
|
||||
If $Sum1203030026TextID = "" Then
|
||||
Var $Sum1203030026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030045 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1202030045TextID != "" Then
|
||||
Var $Sum1202030045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030045TextValue = "" Then
|
||||
If $Sum1202030045TextID = "" Then
|
||||
Var $Sum1202030045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030040 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1203030040TextID != "" Then
|
||||
Var $Sum1203030040TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030040TextValue = "" Then
|
||||
If $Sum1203030040TextID = "" Then
|
||||
Var $Sum1203030040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -181,66 +181,6 @@
|
|||
</EventTimeout>
|
||||
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
|
||||
EndIf
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
||||
|
|
|
|||
|
|
@ -98,8 +98,8 @@
|
|||
EndIf
|
||||
|
||||
If inst_show9 = 1 Then
|
||||
If langnext8 = "true" Then
|
||||
Var langnext8 = "false"
|
||||
If inst_show9 = "true" Then
|
||||
Var inst_show9 = "false"
|
||||
DEBUGVAR langnext
|
||||
RefreshAll
|
||||
EndIf
|
||||
|
|
@ -186,64 +186,6 @@
|
|||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
|
@ -578,9 +520,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020133 </State>
|
||||
|
|
@ -603,6 +546,11 @@
|
|||
If $Sum1205020133TextID != "" Then
|
||||
Var $Sum1205020133TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020133TextValue = "" Then
|
||||
If $Sum1205020133TextID = "" Then
|
||||
Var $Sum1205020133TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -927,9 +875,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200071205030007 </State>
|
||||
|
|
@ -952,6 +901,11 @@
|
|||
If $Sum12050200071205030007TextID != "" Then
|
||||
Var $Sum12050200071205030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200071205030007TextValue = "" Then
|
||||
If $Sum12050200071205030007TextID = "" Then
|
||||
Var $Sum12050200071205030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1276,9 +1230,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200941205030094 </State>
|
||||
|
|
@ -1301,6 +1256,11 @@
|
|||
If $Sum12050200941205030094TextID != "" Then
|
||||
Var $Sum12050200941205030094TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200941205030094TextValue = "" Then
|
||||
If $Sum12050200941205030094TextID = "" Then
|
||||
Var $Sum12050200941205030094TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1625,9 +1585,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020095 </State>
|
||||
|
|
@ -1650,6 +1611,11 @@
|
|||
If $Sum1205020095TextID != "" Then
|
||||
Var $Sum1205020095TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020095TextValue = "" Then
|
||||
If $Sum1205020095TextID = "" Then
|
||||
Var $Sum1205020095TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1974,9 +1940,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020096 </State>
|
||||
|
|
@ -1999,6 +1966,11 @@
|
|||
If $Sum1205020096TextID != "" Then
|
||||
Var $Sum1205020096TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020096TextValue = "" Then
|
||||
If $Sum1205020096TextID = "" Then
|
||||
Var $Sum1205020096TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2323,9 +2295,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020115 </State>
|
||||
|
|
@ -2348,6 +2321,11 @@
|
|||
If $Sum1205020115TextID != "" Then
|
||||
Var $Sum1205020115TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020115TextValue = "" Then
|
||||
If $Sum1205020115TextID = "" Then
|
||||
Var $Sum1205020115TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2672,9 +2650,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020100 </State>
|
||||
|
|
@ -2697,6 +2676,11 @@
|
|||
If $Sum1205020100TextID != "" Then
|
||||
Var $Sum1205020100TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020100TextValue = "" Then
|
||||
If $Sum1205020100TextID = "" Then
|
||||
Var $Sum1205020100TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3021,9 +3005,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200461205030046 </State>
|
||||
|
|
@ -3046,6 +3031,11 @@
|
|||
If $Sum12050200461205030046TextID != "" Then
|
||||
Var $Sum12050200461205030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200461205030046TextValue = "" Then
|
||||
If $Sum12050200461205030046TextID = "" Then
|
||||
Var $Sum12050200461205030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3370,9 +3360,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201041205030104 </State>
|
||||
|
|
@ -3395,6 +3386,11 @@
|
|||
If $Sum12050201041205030104TextID != "" Then
|
||||
Var $Sum12050201041205030104TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201041205030104TextValue = "" Then
|
||||
If $Sum12050201041205030104TextID = "" Then
|
||||
Var $Sum12050201041205030104TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3719,9 +3715,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200741205030074 </State>
|
||||
|
|
@ -3744,6 +3741,11 @@
|
|||
If $Sum12050200741205030074TextID != "" Then
|
||||
Var $Sum12050200741205030074TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200741205030074TextValue = "" Then
|
||||
If $Sum12050200741205030074TextID = "" Then
|
||||
Var $Sum12050200741205030074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4068,9 +4070,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020097 </State>
|
||||
|
|
@ -4093,6 +4096,11 @@
|
|||
If $Sum1205020097TextID != "" Then
|
||||
Var $Sum1205020097TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020097TextValue = "" Then
|
||||
If $Sum1205020097TextID = "" Then
|
||||
Var $Sum1205020097TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4417,9 +4425,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020101 </State>
|
||||
|
|
@ -4442,6 +4451,11 @@
|
|||
If $Sum1205020101TextID != "" Then
|
||||
Var $Sum1205020101TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020101TextValue = "" Then
|
||||
If $Sum1205020101TextID = "" Then
|
||||
Var $Sum1205020101TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4766,9 +4780,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200471205030047 </State>
|
||||
|
|
@ -4791,6 +4806,11 @@
|
|||
If $Sum12050200471205030047TextID != "" Then
|
||||
Var $Sum12050200471205030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200471205030047TextValue = "" Then
|
||||
If $Sum12050200471205030047TextID = "" Then
|
||||
Var $Sum12050200471205030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5115,9 +5135,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201051205030105 </State>
|
||||
|
|
@ -5140,6 +5161,11 @@
|
|||
If $Sum12050201051205030105TextID != "" Then
|
||||
Var $Sum12050201051205030105TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201051205030105TextValue = "" Then
|
||||
If $Sum12050201051205030105TextID = "" Then
|
||||
Var $Sum12050201051205030105TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5464,9 +5490,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200751205030075 </State>
|
||||
|
|
@ -5489,6 +5516,11 @@
|
|||
If $Sum12050200751205030075TextID != "" Then
|
||||
Var $Sum12050200751205030075TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200751205030075TextValue = "" Then
|
||||
If $Sum12050200751205030075TextID = "" Then
|
||||
Var $Sum12050200751205030075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5813,9 +5845,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020053 </State>
|
||||
|
|
@ -5838,6 +5871,11 @@
|
|||
If $Sum1205020053TextID != "" Then
|
||||
Var $Sum1205020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020053TextValue = "" Then
|
||||
If $Sum1205020053TextID = "" Then
|
||||
Var $Sum1205020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6162,9 +6200,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020106 </State>
|
||||
|
|
@ -6187,6 +6226,11 @@
|
|||
If $Sum1205020106TextID != "" Then
|
||||
Var $Sum1205020106TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020106TextValue = "" Then
|
||||
If $Sum1205020106TextID = "" Then
|
||||
Var $Sum1205020106TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6511,9 +6555,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020076 </State>
|
||||
|
|
@ -6536,6 +6581,11 @@
|
|||
If $Sum1205020076TextID != "" Then
|
||||
Var $Sum1205020076TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020076TextValue = "" Then
|
||||
If $Sum1205020076TextID = "" Then
|
||||
Var $Sum1205020076TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6860,9 +6910,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020102 </State>
|
||||
|
|
@ -6885,6 +6936,11 @@
|
|||
If $Sum1205020102TextID != "" Then
|
||||
Var $Sum1205020102TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020102TextValue = "" Then
|
||||
If $Sum1205020102TextID = "" Then
|
||||
Var $Sum1205020102TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7209,9 +7265,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020054 </State>
|
||||
|
|
@ -7234,6 +7291,11 @@
|
|||
If $Sum1205020054TextID != "" Then
|
||||
Var $Sum1205020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020054TextValue = "" Then
|
||||
If $Sum1205020054TextID = "" Then
|
||||
Var $Sum1205020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7558,9 +7620,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020107 </State>
|
||||
|
|
@ -7583,6 +7646,11 @@
|
|||
If $Sum1205020107TextID != "" Then
|
||||
Var $Sum1205020107TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020107TextValue = "" Then
|
||||
If $Sum1205020107TextID = "" Then
|
||||
Var $Sum1205020107TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7907,9 +7975,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020077 </State>
|
||||
|
|
@ -7932,6 +8001,11 @@
|
|||
If $Sum1205020077TextID != "" Then
|
||||
Var $Sum1205020077TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020077TextValue = "" Then
|
||||
If $Sum1205020077TextID = "" Then
|
||||
Var $Sum1205020077TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8256,9 +8330,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020116 </State>
|
||||
|
|
@ -8281,6 +8356,11 @@
|
|||
If $Sum1205020116TextID != "" Then
|
||||
Var $Sum1205020116TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020116TextValue = "" Then
|
||||
If $Sum1205020116TextID = "" Then
|
||||
Var $Sum1205020116TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8605,9 +8685,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -8630,6 +8711,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8954,9 +9040,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020108 </State>
|
||||
|
|
@ -8979,6 +9066,11 @@
|
|||
If $Sum1205020108TextID != "" Then
|
||||
Var $Sum1205020108TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020108TextValue = "" Then
|
||||
If $Sum1205020108TextID = "" Then
|
||||
Var $Sum1205020108TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9303,9 +9395,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020072 </State>
|
||||
|
|
@ -9328,6 +9421,11 @@
|
|||
If $Sum1205020072TextID != "" Then
|
||||
Var $Sum1205020072TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020072TextValue = "" Then
|
||||
If $Sum1205020072TextID = "" Then
|
||||
Var $Sum1205020072TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9652,9 +9750,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020109 </State>
|
||||
|
|
@ -9677,6 +9776,11 @@
|
|||
If $Sum1205020109TextID != "" Then
|
||||
Var $Sum1205020109TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020109TextValue = "" Then
|
||||
If $Sum1205020109TextID = "" Then
|
||||
Var $Sum1205020109TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10001,9 +10105,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200911205030091 </State>
|
||||
|
|
@ -10026,6 +10131,11 @@
|
|||
If $Sum12050200911205030091TextID != "" Then
|
||||
Var $Sum12050200911205030091TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200911205030091TextValue = "" Then
|
||||
If $Sum12050200911205030091TextID = "" Then
|
||||
Var $Sum12050200911205030091TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10350,9 +10460,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201141205030114 </State>
|
||||
|
|
@ -10375,6 +10486,11 @@
|
|||
If $Sum12050201141205030114TextID != "" Then
|
||||
Var $Sum12050201141205030114TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201141205030114TextValue = "" Then
|
||||
If $Sum12050201141205030114TextID = "" Then
|
||||
Var $Sum12050201141205030114TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10699,9 +10815,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020103 </State>
|
||||
|
|
@ -10724,6 +10841,11 @@
|
|||
If $Sum1205020103TextID != "" Then
|
||||
Var $Sum1205020103TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020103TextValue = "" Then
|
||||
If $Sum1205020103TextID = "" Then
|
||||
Var $Sum1205020103TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -101,8 +101,8 @@
|
|||
EndIf
|
||||
|
||||
If inst_show9 = 1 Then
|
||||
If langnext8 = "true" Then
|
||||
Var langnext8 = "false"
|
||||
If inst_show9 = "true" Then
|
||||
Var inst_show9 = "false"
|
||||
DEBUGVAR langnext
|
||||
RefreshAll
|
||||
EndIf
|
||||
|
|
@ -189,64 +189,6 @@
|
|||
TimerReset
|
||||
</EventTimeout>
|
||||
|
||||
<EventOnShow>
|
||||
InstanceGetString SaveStringInst
|
||||
DEBUGVAR SaveStringInst
|
||||
DEBUGVAR show_eng
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
|
||||
If SaveStringInst = "RefreshNow" Then
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
DEBUGVAR LanguageShow
|
||||
|
||||
|
||||
If SaveStringInst = "ShowThai" Then
|
||||
If LanguageShow = "THAI" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "true"
|
||||
InstanceSetString "ShowMYANMAR"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowMYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowEng"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SaveStringInst = "ShowEng" Then
|
||||
If LanguageShow = "ENG" Then
|
||||
|
||||
Else
|
||||
Var show_eng = "false"
|
||||
InstanceSetString "ShowThai"
|
||||
GetXMLFileNameCurrentRunning CurrentOpenFile
|
||||
Open CurrentOpenFile
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
</EventOnShow>
|
||||
|
||||
|
||||
;include="ROOT/taobin_project/inter/tha/xml/multi/menu_catalog_new.lxml"
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020009 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1299020009TextID != "" Then
|
||||
Var $Sum1299020009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020009TextValue = "" Then
|
||||
If $Sum1299020009TextID = "" Then
|
||||
Var $Sum1299020009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020002 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1299020002TextID != "" Then
|
||||
Var $Sum1299020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020002TextValue = "" Then
|
||||
If $Sum1299020002TextID = "" Then
|
||||
Var $Sum1299020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020019 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1299020019TextID != "" Then
|
||||
Var $Sum1299020019TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020019TextValue = "" Then
|
||||
If $Sum1299020019TextID = "" Then
|
||||
Var $Sum1299020019TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020006 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1299020006TextID != "" Then
|
||||
Var $Sum1299020006TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020006TextValue = "" Then
|
||||
If $Sum1299020006TextID = "" Then
|
||||
Var $Sum1299020006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020007 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1299020007TextID != "" Then
|
||||
Var $Sum1299020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020007TextValue = "" Then
|
||||
If $Sum1299020007TextID = "" Then
|
||||
Var $Sum1299020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020008 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1299020008TextID != "" Then
|
||||
Var $Sum1299020008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020008TextValue = "" Then
|
||||
If $Sum1299020008TextID = "" Then
|
||||
Var $Sum1299020008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020001 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1299020001TextID != "" Then
|
||||
Var $Sum1299020001TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020001TextValue = "" Then
|
||||
If $Sum1299020001TextID = "" Then
|
||||
Var $Sum1299020001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020003 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1299020003TextID != "" Then
|
||||
Var $Sum1299020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020003TextValue = "" Then
|
||||
If $Sum1299020003TextID = "" Then
|
||||
Var $Sum1299020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020005 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1299020005TextID != "" Then
|
||||
Var $Sum1299020005TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020005TextValue = "" Then
|
||||
If $Sum1299020005TextID = "" Then
|
||||
Var $Sum1299020005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020004 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1299020004TextID != "" Then
|
||||
Var $Sum1299020004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020004TextValue = "" Then
|
||||
If $Sum1299020004TextID = "" Then
|
||||
Var $Sum1299020004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -375,9 +375,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050100011205020001 </State>
|
||||
|
|
@ -400,6 +401,11 @@
|
|||
If $Sum12050100011205020001TextID != "" Then
|
||||
Var $Sum12050100011205020001TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050100011205020001TextValue = "" Then
|
||||
If $Sum12050100011205020001TextID = "" Then
|
||||
Var $Sum12050100011205020001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -724,9 +730,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020002 </State>
|
||||
|
|
@ -749,6 +756,11 @@
|
|||
If $Sum1205020002TextID != "" Then
|
||||
Var $Sum1205020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020002TextValue = "" Then
|
||||
If $Sum1205020002TextID = "" Then
|
||||
Var $Sum1205020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1073,9 +1085,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020007 </State>
|
||||
|
|
@ -1098,6 +1111,11 @@
|
|||
If $Sum1205020007TextID != "" Then
|
||||
Var $Sum1205020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020007TextValue = "" Then
|
||||
If $Sum1205020007TextID = "" Then
|
||||
Var $Sum1205020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1422,9 +1440,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020034 </State>
|
||||
|
|
@ -1447,6 +1466,11 @@
|
|||
If $Sum1205020034TextID != "" Then
|
||||
Var $Sum1205020034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020034TextValue = "" Then
|
||||
If $Sum1205020034TextID = "" Then
|
||||
Var $Sum1205020034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1771,9 +1795,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020035 </State>
|
||||
|
|
@ -1796,6 +1821,11 @@
|
|||
If $Sum1205020035TextID != "" Then
|
||||
Var $Sum1205020035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020035TextValue = "" Then
|
||||
If $Sum1205020035TextID = "" Then
|
||||
Var $Sum1205020035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2124,9 +2154,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100271202020027 </State>
|
||||
|
|
@ -2149,6 +2180,11 @@
|
|||
If $Sum12020100271202020027TextID != "" Then
|
||||
Var $Sum12020100271202020027TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100271202020027TextValue = "" Then
|
||||
If $Sum12020100271202020027TextID = "" Then
|
||||
Var $Sum12020100271202020027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2477,9 +2513,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100451202020045 </State>
|
||||
|
|
@ -2502,6 +2539,11 @@
|
|||
If $Sum12020100451202020045TextID != "" Then
|
||||
Var $Sum12020100451202020045TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100451202020045TextValue = "" Then
|
||||
If $Sum12020100451202020045TextID = "" Then
|
||||
Var $Sum12020100451202020045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2830,9 +2872,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100481202020049 </State>
|
||||
|
|
@ -2855,6 +2898,11 @@
|
|||
If $Sum12020100481202020049TextID != "" Then
|
||||
Var $Sum12020100481202020049TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100481202020049TextValue = "" Then
|
||||
If $Sum12020100481202020049TextID = "" Then
|
||||
Var $Sum12020100481202020049TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3183,9 +3231,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100471202020047 </State>
|
||||
|
|
@ -3208,6 +3257,11 @@
|
|||
If $Sum12020100471202020047TextID != "" Then
|
||||
Var $Sum12020100471202020047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100471202020047TextValue = "" Then
|
||||
If $Sum12020100471202020047TextID = "" Then
|
||||
Var $Sum12020100471202020047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -400,9 +400,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020095 </State>
|
||||
|
|
@ -425,6 +426,11 @@
|
|||
If $Sum1205020095TextID != "" Then
|
||||
Var $Sum1205020095TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020095TextValue = "" Then
|
||||
If $Sum1205020095TextID = "" Then
|
||||
Var $Sum1205020095TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -749,9 +755,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020096 </State>
|
||||
|
|
@ -774,6 +781,11 @@
|
|||
If $Sum1205020096TextID != "" Then
|
||||
Var $Sum1205020096TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020096TextValue = "" Then
|
||||
If $Sum1205020096TextID = "" Then
|
||||
Var $Sum1205020096TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1098,9 +1110,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020097 </State>
|
||||
|
|
@ -1123,6 +1136,11 @@
|
|||
If $Sum1205020097TextID != "" Then
|
||||
Var $Sum1205020097TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020097TextValue = "" Then
|
||||
If $Sum1205020097TextID = "" Then
|
||||
Var $Sum1205020097TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1447,9 +1465,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020069 </State>
|
||||
|
|
@ -1472,6 +1491,11 @@
|
|||
If $Sum1201020069TextID != "" Then
|
||||
Var $Sum1201020069TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020069TextValue = "" Then
|
||||
If $Sum1201020069TextID = "" Then
|
||||
Var $Sum1201020069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1796,9 +1820,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020070 </State>
|
||||
|
|
@ -1821,6 +1846,11 @@
|
|||
If $Sum1201020070TextID != "" Then
|
||||
Var $Sum1201020070TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020070TextValue = "" Then
|
||||
If $Sum1201020070TextID = "" Then
|
||||
Var $Sum1201020070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2145,9 +2175,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020100 </State>
|
||||
|
|
@ -2170,6 +2201,11 @@
|
|||
If $Sum1205020100TextID != "" Then
|
||||
Var $Sum1205020100TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020100TextValue = "" Then
|
||||
If $Sum1205020100TextID = "" Then
|
||||
Var $Sum1205020100TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2494,9 +2530,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020101 </State>
|
||||
|
|
@ -2519,6 +2556,11 @@
|
|||
If $Sum1205020101TextID != "" Then
|
||||
Var $Sum1205020101TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020101TextValue = "" Then
|
||||
If $Sum1205020101TextID = "" Then
|
||||
Var $Sum1205020101TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2843,9 +2885,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020102 </State>
|
||||
|
|
@ -2868,6 +2911,11 @@
|
|||
If $Sum1205020102TextID != "" Then
|
||||
Var $Sum1205020102TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020102TextValue = "" Then
|
||||
If $Sum1205020102TextID = "" Then
|
||||
Var $Sum1205020102TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3192,9 +3240,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020103 </State>
|
||||
|
|
@ -3217,6 +3266,11 @@
|
|||
If $Sum1205020103TextID != "" Then
|
||||
Var $Sum1205020103TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020103TextValue = "" Then
|
||||
If $Sum1205020103TextID = "" Then
|
||||
Var $Sum1205020103TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3541,9 +3595,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020115 </State>
|
||||
|
|
@ -3566,6 +3621,11 @@
|
|||
If $Sum1205020115TextID != "" Then
|
||||
Var $Sum1205020115TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020115TextValue = "" Then
|
||||
If $Sum1205020115TextID = "" Then
|
||||
Var $Sum1205020115TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3890,9 +3950,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020116 </State>
|
||||
|
|
@ -3915,6 +3976,11 @@
|
|||
If $Sum1205020116TextID != "" Then
|
||||
Var $Sum1205020116TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020116TextValue = "" Then
|
||||
If $Sum1205020116TextID = "" Then
|
||||
Var $Sum1205020116TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4239,9 +4305,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020118 </State>
|
||||
|
|
@ -4264,6 +4331,11 @@
|
|||
If $Sum1205020118TextID != "" Then
|
||||
Var $Sum1205020118TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020118TextValue = "" Then
|
||||
If $Sum1205020118TextID = "" Then
|
||||
Var $Sum1205020118TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4588,9 +4660,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020119 </State>
|
||||
|
|
@ -4613,6 +4686,11 @@
|
|||
If $Sum1205020119TextID != "" Then
|
||||
Var $Sum1205020119TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020119TextValue = "" Then
|
||||
If $Sum1205020119TextID = "" Then
|
||||
Var $Sum1205020119TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4937,9 +5015,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020120 </State>
|
||||
|
|
@ -4962,6 +5041,11 @@
|
|||
If $Sum1205020120TextID != "" Then
|
||||
Var $Sum1205020120TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020120TextValue = "" Then
|
||||
If $Sum1205020120TextID = "" Then
|
||||
Var $Sum1205020120TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5286,9 +5370,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020121 </State>
|
||||
|
|
@ -5311,6 +5396,11 @@
|
|||
If $Sum1205020121TextID != "" Then
|
||||
Var $Sum1205020121TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020121TextValue = "" Then
|
||||
If $Sum1205020121TextID = "" Then
|
||||
Var $Sum1205020121TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5635,9 +5725,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020008 </State>
|
||||
|
|
@ -5660,6 +5751,11 @@
|
|||
If $Sum1299020008TextID != "" Then
|
||||
Var $Sum1299020008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020008TextValue = "" Then
|
||||
If $Sum1299020008TextID = "" Then
|
||||
Var $Sum1299020008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5984,9 +6080,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050066 </State>
|
||||
|
|
@ -6009,6 +6106,11 @@
|
|||
If $Sum1299050066TextID != "" Then
|
||||
Var $Sum1299050066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050066TextValue = "" Then
|
||||
If $Sum1299050066TextID = "" Then
|
||||
Var $Sum1299050066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6333,9 +6435,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020003 </State>
|
||||
|
|
@ -6358,6 +6461,11 @@
|
|||
If $Sum1299020003TextID != "" Then
|
||||
Var $Sum1299020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020003TextValue = "" Then
|
||||
If $Sum1299020003TextID = "" Then
|
||||
Var $Sum1299020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6682,9 +6790,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050067 </State>
|
||||
|
|
@ -6707,6 +6816,11 @@
|
|||
If $Sum1299050067TextID != "" Then
|
||||
Var $Sum1299050067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050067TextValue = "" Then
|
||||
If $Sum1299050067TextID = "" Then
|
||||
Var $Sum1299050067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7031,9 +7145,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020046 </State>
|
||||
|
|
@ -7056,6 +7171,11 @@
|
|||
If $Sum1205020046TextID != "" Then
|
||||
Var $Sum1205020046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020046TextValue = "" Then
|
||||
If $Sum1205020046TextID = "" Then
|
||||
Var $Sum1205020046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7380,9 +7500,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020104 </State>
|
||||
|
|
@ -7405,6 +7526,11 @@
|
|||
If $Sum1205020104TextID != "" Then
|
||||
Var $Sum1205020104TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020104TextValue = "" Then
|
||||
If $Sum1205020104TextID = "" Then
|
||||
Var $Sum1205020104TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7729,9 +7855,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050058 </State>
|
||||
|
|
@ -7754,6 +7881,11 @@
|
|||
If $Sum1299050058TextID != "" Then
|
||||
Var $Sum1299050058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050058TextValue = "" Then
|
||||
If $Sum1299050058TextID = "" Then
|
||||
Var $Sum1299050058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8078,9 +8210,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050068 </State>
|
||||
|
|
@ -8103,6 +8236,11 @@
|
|||
If $Sum1299050068TextID != "" Then
|
||||
Var $Sum1299050068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050068TextValue = "" Then
|
||||
If $Sum1299050068TextID = "" Then
|
||||
Var $Sum1299050068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8427,9 +8565,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050060 </State>
|
||||
|
|
@ -8452,6 +8591,11 @@
|
|||
If $Sum1299050060TextID != "" Then
|
||||
Var $Sum1299050060TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050060TextValue = "" Then
|
||||
If $Sum1299050060TextID = "" Then
|
||||
Var $Sum1299050060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8776,9 +8920,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050069 </State>
|
||||
|
|
@ -8801,6 +8946,11 @@
|
|||
If $Sum1299050069TextID != "" Then
|
||||
Var $Sum1299050069TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050069TextValue = "" Then
|
||||
If $Sum1299050069TextID = "" Then
|
||||
Var $Sum1299050069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9125,9 +9275,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020007 </State>
|
||||
|
|
@ -9150,6 +9301,11 @@
|
|||
If $Sum1205020007TextID != "" Then
|
||||
Var $Sum1205020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020007TextValue = "" Then
|
||||
If $Sum1205020007TextID = "" Then
|
||||
Var $Sum1205020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9474,9 +9630,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020094 </State>
|
||||
|
|
@ -9499,6 +9656,11 @@
|
|||
If $Sum1205020094TextID != "" Then
|
||||
Var $Sum1205020094TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020094TextValue = "" Then
|
||||
If $Sum1205020094TextID = "" Then
|
||||
Var $Sum1205020094TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9823,9 +9985,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050053 </State>
|
||||
|
|
@ -9848,6 +10011,11 @@
|
|||
If $Sum1299050053TextID != "" Then
|
||||
Var $Sum1299050053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050053TextValue = "" Then
|
||||
If $Sum1299050053TextID = "" Then
|
||||
Var $Sum1299050053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10172,9 +10340,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050070 </State>
|
||||
|
|
@ -10197,6 +10366,11 @@
|
|||
If $Sum1299050070TextID != "" Then
|
||||
Var $Sum1299050070TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050070TextValue = "" Then
|
||||
If $Sum1299050070TextID = "" Then
|
||||
Var $Sum1299050070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10521,9 +10695,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020054 </State>
|
||||
|
|
@ -10546,6 +10721,11 @@
|
|||
If $Sum1205020054TextID != "" Then
|
||||
Var $Sum1205020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020054TextValue = "" Then
|
||||
If $Sum1205020054TextID = "" Then
|
||||
Var $Sum1205020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10870,9 +11050,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020107 </State>
|
||||
|
|
@ -10895,6 +11076,11 @@
|
|||
If $Sum1205020107TextID != "" Then
|
||||
Var $Sum1205020107TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020107TextValue = "" Then
|
||||
If $Sum1205020107TextID = "" Then
|
||||
Var $Sum1205020107TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11219,9 +11405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020084 </State>
|
||||
|
|
@ -11244,6 +11431,11 @@
|
|||
If $Sum1205020084TextID != "" Then
|
||||
Var $Sum1205020084TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020084TextValue = "" Then
|
||||
If $Sum1205020084TextID = "" Then
|
||||
Var $Sum1205020084TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11568,9 +11760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020110 </State>
|
||||
|
|
@ -11593,6 +11786,11 @@
|
|||
If $Sum1205020110TextID != "" Then
|
||||
Var $Sum1205020110TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020110TextValue = "" Then
|
||||
If $Sum1205020110TextID = "" Then
|
||||
Var $Sum1205020110TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11917,9 +12115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050052 </State>
|
||||
|
|
@ -11942,6 +12141,11 @@
|
|||
If $Sum1299050052TextID != "" Then
|
||||
Var $Sum1299050052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050052TextValue = "" Then
|
||||
If $Sum1299050052TextID = "" Then
|
||||
Var $Sum1299050052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12266,9 +12470,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050072 </State>
|
||||
|
|
@ -12291,6 +12496,11 @@
|
|||
If $Sum1299050072TextID != "" Then
|
||||
Var $Sum1299050072TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050072TextValue = "" Then
|
||||
If $Sum1299050072TextID = "" Then
|
||||
Var $Sum1299050072TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12615,9 +12825,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -12640,6 +12851,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12964,9 +13180,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020108 </State>
|
||||
|
|
@ -12989,6 +13206,11 @@
|
|||
If $Sum1205020108TextID != "" Then
|
||||
Var $Sum1205020108TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020108TextValue = "" Then
|
||||
If $Sum1205020108TextID = "" Then
|
||||
Var $Sum1205020108TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -13313,9 +13535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030007 </State>
|
||||
|
|
@ -13338,6 +13561,11 @@
|
|||
If $Sum1205030007TextID != "" Then
|
||||
Var $Sum1205030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030007TextValue = "" Then
|
||||
If $Sum1205030007TextID = "" Then
|
||||
Var $Sum1205030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -13662,9 +13890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030094 </State>
|
||||
|
|
@ -13687,6 +13916,11 @@
|
|||
If $Sum1205030094TextID != "" Then
|
||||
Var $Sum1205030094TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030094TextValue = "" Then
|
||||
If $Sum1205030094TextID = "" Then
|
||||
Var $Sum1205030094TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -14011,9 +14245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050057 </State>
|
||||
|
|
@ -14036,6 +14271,11 @@
|
|||
If $Sum1299050057TextID != "" Then
|
||||
Var $Sum1299050057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050057TextValue = "" Then
|
||||
If $Sum1299050057TextID = "" Then
|
||||
Var $Sum1299050057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -14360,9 +14600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200471205030047 </State>
|
||||
|
|
@ -14385,6 +14626,11 @@
|
|||
If $Sum12050200471205030047TextID != "" Then
|
||||
Var $Sum12050200471205030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200471205030047TextValue = "" Then
|
||||
If $Sum12050200471205030047TextID = "" Then
|
||||
Var $Sum12050200471205030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -14709,9 +14955,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201051205030105 </State>
|
||||
|
|
@ -14734,6 +14981,11 @@
|
|||
If $Sum12050201051205030105TextID != "" Then
|
||||
Var $Sum12050201051205030105TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201051205030105TextValue = "" Then
|
||||
If $Sum12050201051205030105TextID = "" Then
|
||||
Var $Sum12050201051205030105TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -15058,9 +15310,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020053 </State>
|
||||
|
|
@ -15083,6 +15336,11 @@
|
|||
If $Sum1205020053TextID != "" Then
|
||||
Var $Sum1205020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020053TextValue = "" Then
|
||||
If $Sum1205020053TextID = "" Then
|
||||
Var $Sum1205020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -15407,9 +15665,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020106 </State>
|
||||
|
|
@ -15432,6 +15691,11 @@
|
|||
If $Sum1205020106TextID != "" Then
|
||||
Var $Sum1205020106TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020106TextValue = "" Then
|
||||
If $Sum1205020106TextID = "" Then
|
||||
Var $Sum1205020106TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010200611201030061 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum12010200611201030061TextID != "" Then
|
||||
Var $Sum12010200611201030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010200611201030061TextValue = "" Then
|
||||
If $Sum12010200611201030061TextID = "" Then
|
||||
Var $Sum12010200611201030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -754,9 +760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210200611221030061 </State>
|
||||
|
|
@ -779,6 +786,11 @@
|
|||
If $Sum12210200611221030061TextID != "" Then
|
||||
Var $Sum12210200611221030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210200611221030061TextValue = "" Then
|
||||
If $Sum12210200611221030061TextID = "" Then
|
||||
Var $Sum12210200611221030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1103,9 +1115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020062 </State>
|
||||
|
|
@ -1128,6 +1141,11 @@
|
|||
If $Sum1201020062TextID != "" Then
|
||||
Var $Sum1201020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020062TextValue = "" Then
|
||||
If $Sum1201020062TextID = "" Then
|
||||
Var $Sum1201020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1452,9 +1470,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020062 </State>
|
||||
|
|
@ -1477,6 +1496,11 @@
|
|||
If $Sum1221020062TextID != "" Then
|
||||
Var $Sum1221020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020062TextValue = "" Then
|
||||
If $Sum1221020062TextID = "" Then
|
||||
Var $Sum1221020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1801,9 +1825,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200241203030024 </State>
|
||||
|
|
@ -1826,6 +1851,11 @@
|
|||
If $Sum12030200241203030024TextID != "" Then
|
||||
Var $Sum12030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200241203030024TextValue = "" Then
|
||||
If $Sum12030200241203030024TextID = "" Then
|
||||
Var $Sum12030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2150,9 +2180,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030045 </State>
|
||||
|
|
@ -2175,6 +2206,11 @@
|
|||
If $Sum1203030045TextID != "" Then
|
||||
Var $Sum1203030045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030045TextValue = "" Then
|
||||
If $Sum1203030045TextID = "" Then
|
||||
Var $Sum1203030045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2499,9 +2535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -2524,6 +2561,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2848,9 +2890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020053 </State>
|
||||
|
|
@ -2873,6 +2916,11 @@
|
|||
If $Sum1202020053TextID != "" Then
|
||||
Var $Sum1202020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020053TextValue = "" Then
|
||||
If $Sum1202020053TextID = "" Then
|
||||
Var $Sum1202020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3197,9 +3245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020054 </State>
|
||||
|
|
@ -3222,6 +3271,11 @@
|
|||
If $Sum1202020054TextID != "" Then
|
||||
Var $Sum1202020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020054TextValue = "" Then
|
||||
If $Sum1202020054TextID = "" Then
|
||||
Var $Sum1202020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3546,9 +3600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200231203030023 </State>
|
||||
|
|
@ -3571,6 +3626,11 @@
|
|||
If $Sum12030200231203030023TextID != "" Then
|
||||
Var $Sum12030200231203030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200231203030023TextValue = "" Then
|
||||
If $Sum12030200231203030023TextID = "" Then
|
||||
Var $Sum12030200231203030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3895,9 +3955,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020078 </State>
|
||||
|
|
@ -3920,6 +3981,11 @@
|
|||
If $Sum1205020078TextID != "" Then
|
||||
Var $Sum1205020078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020078TextValue = "" Then
|
||||
If $Sum1205020078TextID = "" Then
|
||||
Var $Sum1205020078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -398,9 +398,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020057 </State>
|
||||
|
|
@ -423,6 +424,11 @@
|
|||
If $Sum1201020057TextID != "" Then
|
||||
Var $Sum1201020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020057TextValue = "" Then
|
||||
If $Sum1201020057TextID = "" Then
|
||||
Var $Sum1201020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -747,9 +753,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020057 </State>
|
||||
|
|
@ -772,6 +779,11 @@
|
|||
If $Sum1221020057TextID != "" Then
|
||||
Var $Sum1221020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020057TextValue = "" Then
|
||||
If $Sum1221020057TextID = "" Then
|
||||
Var $Sum1221020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1096,9 +1108,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020058 </State>
|
||||
|
|
@ -1121,6 +1134,11 @@
|
|||
If $Sum1201020058TextID != "" Then
|
||||
Var $Sum1201020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020058TextValue = "" Then
|
||||
If $Sum1201020058TextID = "" Then
|
||||
Var $Sum1201020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1445,9 +1463,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020058 </State>
|
||||
|
|
@ -1470,6 +1489,11 @@
|
|||
If $Sum1221020058TextID != "" Then
|
||||
Var $Sum1221020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020058TextValue = "" Then
|
||||
If $Sum1221020058TextID = "" Then
|
||||
Var $Sum1221020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1794,9 +1818,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030050 </State>
|
||||
|
|
@ -1819,6 +1844,11 @@
|
|||
If $Sum1202030050TextID != "" Then
|
||||
Var $Sum1202030050TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030050TextValue = "" Then
|
||||
If $Sum1202030050TextID = "" Then
|
||||
Var $Sum1202030050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2143,9 +2173,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020064 </State>
|
||||
|
|
@ -2168,6 +2199,11 @@
|
|||
If $Sum1201020064TextID != "" Then
|
||||
Var $Sum1201020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020064TextValue = "" Then
|
||||
If $Sum1201020064TextID = "" Then
|
||||
Var $Sum1201020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2492,9 +2528,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020064 </State>
|
||||
|
|
@ -2517,6 +2554,11 @@
|
|||
If $Sum1221020064TextID != "" Then
|
||||
Var $Sum1221020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020064TextValue = "" Then
|
||||
If $Sum1221020064TextID = "" Then
|
||||
Var $Sum1221020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2841,9 +2883,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020035 </State>
|
||||
|
|
@ -2866,6 +2909,11 @@
|
|||
If $Sum1203020035TextID != "" Then
|
||||
Var $Sum1203020035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020035TextValue = "" Then
|
||||
If $Sum1203020035TextID = "" Then
|
||||
Var $Sum1203020035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3194,9 +3242,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003612030200361203030036 </State>
|
||||
|
|
@ -3219,6 +3268,11 @@
|
|||
If $Sum120301003612030200361203030036TextID != "" Then
|
||||
Var $Sum120301003612030200361203030036TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003612030200361203030036TextValue = "" Then
|
||||
If $Sum120301003612030200361203030036TextID = "" Then
|
||||
Var $Sum120301003612030200361203030036TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3543,9 +3597,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030037 </State>
|
||||
|
|
@ -3568,6 +3623,11 @@
|
|||
If $Sum1203030037TextID != "" Then
|
||||
Var $Sum1203030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030037TextValue = "" Then
|
||||
If $Sum1203030037TextID = "" Then
|
||||
Var $Sum1203030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3892,9 +3952,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -3917,6 +3978,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4241,9 +4307,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020060 </State>
|
||||
|
|
@ -4266,6 +4333,11 @@
|
|||
If $Sum1205020060TextID != "" Then
|
||||
Var $Sum1205020060TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020060TextValue = "" Then
|
||||
If $Sum1205020060TextID = "" Then
|
||||
Var $Sum1205020060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4590,9 +4662,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020063 </State>
|
||||
|
|
@ -4615,6 +4688,11 @@
|
|||
If $Sum1205020063TextID != "" Then
|
||||
Var $Sum1205020063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020063TextValue = "" Then
|
||||
If $Sum1205020063TextID = "" Then
|
||||
Var $Sum1205020063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4939,9 +5017,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020064 </State>
|
||||
|
|
@ -4964,6 +5043,11 @@
|
|||
If $Sum1205020064TextID != "" Then
|
||||
Var $Sum1205020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020064TextValue = "" Then
|
||||
If $Sum1205020064TextID = "" Then
|
||||
Var $Sum1205020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5288,9 +5372,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020065 </State>
|
||||
|
|
@ -5313,6 +5398,11 @@
|
|||
If $Sum1205020065TextID != "" Then
|
||||
Var $Sum1205020065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020065TextValue = "" Then
|
||||
If $Sum1205020065TextID = "" Then
|
||||
Var $Sum1205020065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5637,9 +5727,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020066 </State>
|
||||
|
|
@ -5662,6 +5753,11 @@
|
|||
If $Sum1205020066TextID != "" Then
|
||||
Var $Sum1205020066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020066TextValue = "" Then
|
||||
If $Sum1205020066TextID = "" Then
|
||||
Var $Sum1205020066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5986,9 +6082,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -6011,6 +6108,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6335,9 +6437,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010200611201030061 </State>
|
||||
|
|
@ -6360,6 +6463,11 @@
|
|||
If $Sum12010200611201030061TextID != "" Then
|
||||
Var $Sum12010200611201030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010200611201030061TextValue = "" Then
|
||||
If $Sum12010200611201030061TextID = "" Then
|
||||
Var $Sum12010200611201030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6684,9 +6792,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020062 </State>
|
||||
|
|
@ -6709,6 +6818,11 @@
|
|||
If $Sum1201020062TextID != "" Then
|
||||
Var $Sum1201020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020062TextValue = "" Then
|
||||
If $Sum1201020062TextID = "" Then
|
||||
Var $Sum1201020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7033,9 +7147,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200241203030024 </State>
|
||||
|
|
@ -7058,6 +7173,11 @@
|
|||
If $Sum12030200241203030024TextID != "" Then
|
||||
Var $Sum12030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200241203030024TextValue = "" Then
|
||||
If $Sum12030200241203030024TextID = "" Then
|
||||
Var $Sum12030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7382,9 +7502,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030045 </State>
|
||||
|
|
@ -7407,6 +7528,11 @@
|
|||
If $Sum1203030045TextID != "" Then
|
||||
Var $Sum1203030045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030045TextValue = "" Then
|
||||
If $Sum1203030045TextID = "" Then
|
||||
Var $Sum1203030045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7731,9 +7857,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -7756,6 +7883,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8080,9 +8212,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020053 </State>
|
||||
|
|
@ -8105,6 +8238,11 @@
|
|||
If $Sum1202020053TextID != "" Then
|
||||
Var $Sum1202020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020053TextValue = "" Then
|
||||
If $Sum1202020053TextID = "" Then
|
||||
Var $Sum1202020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8429,9 +8567,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020054 </State>
|
||||
|
|
@ -8454,6 +8593,11 @@
|
|||
If $Sum1202020054TextID != "" Then
|
||||
Var $Sum1202020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020054TextValue = "" Then
|
||||
If $Sum1202020054TextID = "" Then
|
||||
Var $Sum1202020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8778,9 +8922,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200231203030023 </State>
|
||||
|
|
@ -8803,6 +8948,11 @@
|
|||
If $Sum12030200231203030023TextID != "" Then
|
||||
Var $Sum12030200231203030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200231203030023TextValue = "" Then
|
||||
If $Sum12030200231203030023TextID = "" Then
|
||||
Var $Sum12030200231203030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9127,9 +9277,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020078 </State>
|
||||
|
|
@ -9152,6 +9303,11 @@
|
|||
If $Sum1205020078TextID != "" Then
|
||||
Var $Sum1205020078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020078TextValue = "" Then
|
||||
If $Sum1205020078TextID = "" Then
|
||||
Var $Sum1205020078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -401,9 +401,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12216200021221630002 </State>
|
||||
|
|
@ -426,6 +427,11 @@
|
|||
If $Sum12216200021221630002TextID != "" Then
|
||||
Var $Sum12216200021221630002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12216200021221630002TextValue = "" Then
|
||||
If $Sum12216200021221630002TextID = "" Then
|
||||
Var $Sum12216200021221630002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -750,9 +756,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -775,6 +782,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1099,9 +1111,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12216200031221630003 </State>
|
||||
|
|
@ -1124,6 +1137,11 @@
|
|||
If $Sum12216200031221630003TextID != "" Then
|
||||
Var $Sum12216200031221630003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12216200031221630003TextValue = "" Then
|
||||
If $Sum12216200031221630003TextID = "" Then
|
||||
Var $Sum12216200031221630003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1448,9 +1466,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -1473,6 +1492,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1797,9 +1821,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12216200041221630004 </State>
|
||||
|
|
@ -1822,6 +1847,11 @@
|
|||
If $Sum12216200041221630004TextID != "" Then
|
||||
Var $Sum12216200041221630004TextValue = ""
|
||||
EndIf
|
||||
If $Sum12216200041221630004TextValue = "" Then
|
||||
If $Sum12216200041221630004TextID = "" Then
|
||||
Var $Sum12216200041221630004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2146,9 +2176,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -2171,6 +2202,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2495,9 +2531,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12036200021203630002 </State>
|
||||
|
|
@ -2520,6 +2557,11 @@
|
|||
If $Sum12036200021203630002TextID != "" Then
|
||||
Var $Sum12036200021203630002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12036200021203630002TextValue = "" Then
|
||||
If $Sum12036200021203630002TextID = "" Then
|
||||
Var $Sum12036200021203630002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2844,9 +2886,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -2869,6 +2912,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3193,9 +3241,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12036200051203630005 </State>
|
||||
|
|
@ -3218,6 +3267,11 @@
|
|||
If $Sum12036200051203630005TextID != "" Then
|
||||
Var $Sum12036200051203630005TextValue = ""
|
||||
EndIf
|
||||
If $Sum12036200051203630005TextValue = "" Then
|
||||
If $Sum12036200051203630005TextID = "" Then
|
||||
Var $Sum12036200051203630005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3542,9 +3596,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -3567,6 +3622,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3891,9 +3951,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12036200061203630006 </State>
|
||||
|
|
@ -3916,6 +3977,11 @@
|
|||
If $Sum12036200061203630006TextID != "" Then
|
||||
Var $Sum12036200061203630006TextValue = ""
|
||||
EndIf
|
||||
If $Sum12036200061203630006TextValue = "" Then
|
||||
If $Sum12036200061203630006TextID = "" Then
|
||||
Var $Sum12036200061203630006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4240,9 +4306,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4265,6 +4332,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4589,9 +4661,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200071203630009 </State>
|
||||
|
|
@ -4614,6 +4687,11 @@
|
|||
If $Sum12056200071203630009TextID != "" Then
|
||||
Var $Sum12056200071203630009TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200071203630009TextValue = "" Then
|
||||
If $Sum12056200071203630009TextID = "" Then
|
||||
Var $Sum12056200071203630009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4938,9 +5016,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4963,6 +5042,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5287,9 +5371,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200091205630007 </State>
|
||||
|
|
@ -5312,6 +5397,11 @@
|
|||
If $Sum12056200091205630007TextID != "" Then
|
||||
Var $Sum12056200091205630007TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200091205630007TextValue = "" Then
|
||||
If $Sum12056200091205630007TextID = "" Then
|
||||
Var $Sum12056200091205630007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5636,9 +5726,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -5661,6 +5752,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5985,9 +6081,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200251205630009 </State>
|
||||
|
|
@ -6010,6 +6107,11 @@
|
|||
If $Sum12056200251205630009TextID != "" Then
|
||||
Var $Sum12056200251205630009TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200251205630009TextValue = "" Then
|
||||
If $Sum12056200251205630009TextID = "" Then
|
||||
Var $Sum12056200251205630009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6334,9 +6436,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -6359,6 +6462,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6683,9 +6791,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200351205630025 </State>
|
||||
|
|
@ -6708,6 +6817,11 @@
|
|||
If $Sum12056200351205630025TextID != "" Then
|
||||
Var $Sum12056200351205630025TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200351205630025TextValue = "" Then
|
||||
If $Sum12056200351205630025TextID = "" Then
|
||||
Var $Sum12056200351205630025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7032,9 +7146,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -7057,6 +7172,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7381,9 +7501,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12056200461205630046 </State>
|
||||
|
|
@ -7406,6 +7527,11 @@
|
|||
If $Sum12056200461205630046TextID != "" Then
|
||||
Var $Sum12056200461205630046TextValue = ""
|
||||
EndIf
|
||||
If $Sum12056200461205630046TextValue = "" Then
|
||||
If $Sum12056200461205630046TextID = "" Then
|
||||
Var $Sum12056200461205630046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7730,9 +7856,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -7755,6 +7882,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8079,9 +8211,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12026200261203630026 </State>
|
||||
|
|
@ -8104,6 +8237,11 @@
|
|||
If $Sum12026200261203630026TextID != "" Then
|
||||
Var $Sum12026200261203630026TextValue = ""
|
||||
EndIf
|
||||
If $Sum12026200261203630026TextValue = "" Then
|
||||
If $Sum12026200261203630026TextID = "" Then
|
||||
Var $Sum12026200261203630026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8428,9 +8566,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -8453,6 +8592,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8777,9 +8921,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12026200391203630039 </State>
|
||||
|
|
@ -8802,6 +8947,11 @@
|
|||
If $Sum12026200391203630039TextID != "" Then
|
||||
Var $Sum12026200391203630039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12026200391203630039TextValue = "" Then
|
||||
If $Sum12026200391203630039TextID = "" Then
|
||||
Var $Sum12026200391203630039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9126,9 +9276,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -9151,6 +9302,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9475,9 +9631,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12026200471203630047 </State>
|
||||
|
|
@ -9500,6 +9657,11 @@
|
|||
If $Sum12026200471203630047TextID != "" Then
|
||||
Var $Sum12026200471203630047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12026200471203630047TextValue = "" Then
|
||||
If $Sum12026200471203630047TextID = "" Then
|
||||
Var $Sum12026200471203630047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9824,9 +9986,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -9849,6 +10012,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10173,9 +10341,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12026200251202630025 </State>
|
||||
|
|
@ -10198,6 +10367,11 @@
|
|||
If $Sum12026200251202630025TextID != "" Then
|
||||
Var $Sum12026200251202630025TextValue = ""
|
||||
EndIf
|
||||
If $Sum12026200251202630025TextValue = "" Then
|
||||
If $Sum12026200251202630025TextID = "" Then
|
||||
Var $Sum12026200251202630025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10522,9 +10696,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -10547,6 +10722,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10871,9 +11051,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030028 </State>
|
||||
|
|
@ -10896,6 +11077,11 @@
|
|||
If $Sum1241030028TextID != "" Then
|
||||
Var $Sum1241030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030028TextValue = "" Then
|
||||
If $Sum1241030028TextID = "" Then
|
||||
Var $Sum1241030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11220,9 +11406,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -11245,6 +11432,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -413,9 +413,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101000612010200031201030003 </State>
|
||||
|
|
@ -438,6 +439,11 @@
|
|||
If $Sum120101000612010200031201030003TextID != "" Then
|
||||
Var $Sum120101000612010200031201030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101000612010200031201030003TextValue = "" Then
|
||||
If $Sum120101000612010200031201030003TextID = "" Then
|
||||
Var $Sum120101000612010200031201030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -766,9 +772,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101000612210200031221030003 </State>
|
||||
|
|
@ -791,6 +798,11 @@
|
|||
If $Sum122101000612210200031221030003TextID != "" Then
|
||||
Var $Sum122101000612210200031221030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101000612210200031221030003TextValue = "" Then
|
||||
If $Sum122101000612210200031221030003TextID = "" Then
|
||||
Var $Sum122101000612210200031221030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1119,9 +1131,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110061201021003 </State>
|
||||
|
|
@ -1144,6 +1157,11 @@
|
|||
If $Sum12010110061201021003TextID != "" Then
|
||||
Var $Sum12010110061201021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110061201021003TextValue = "" Then
|
||||
If $Sum12010110061201021003TextID = "" Then
|
||||
Var $Sum12010110061201021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1472,9 +1490,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210110061221021003 </State>
|
||||
|
|
@ -1497,6 +1516,11 @@
|
|||
If $Sum12210110061221021003TextID != "" Then
|
||||
Var $Sum12210110061221021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210110061221021003TextValue = "" Then
|
||||
If $Sum12210110061221021003TextID = "" Then
|
||||
Var $Sum12210110061221021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1821,9 +1845,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010200611201030061 </State>
|
||||
|
|
@ -1846,6 +1871,11 @@
|
|||
If $Sum12010200611201030061TextID != "" Then
|
||||
Var $Sum12010200611201030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010200611201030061TextValue = "" Then
|
||||
If $Sum12010200611201030061TextID = "" Then
|
||||
Var $Sum12010200611201030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2170,9 +2200,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210200611221030061 </State>
|
||||
|
|
@ -2195,6 +2226,11 @@
|
|||
If $Sum12210200611221030061TextID != "" Then
|
||||
Var $Sum12210200611221030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210200611221030061TextValue = "" Then
|
||||
If $Sum12210200611221030061TextID = "" Then
|
||||
Var $Sum12210200611221030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2523,9 +2559,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000212030200021203030002 </State>
|
||||
|
|
@ -2548,6 +2585,11 @@
|
|||
If $Sum120301000212030200021203030002TextID != "" Then
|
||||
Var $Sum120301000212030200021203030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000212030200021203030002TextValue = "" Then
|
||||
If $Sum120301000212030200021203030002TextID = "" Then
|
||||
Var $Sum120301000212030200021203030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2876,9 +2918,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030110021203021002 </State>
|
||||
|
|
@ -2901,6 +2944,11 @@
|
|||
If $Sum12030110021203021002TextID != "" Then
|
||||
Var $Sum12030110021203021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030110021203021002TextValue = "" Then
|
||||
If $Sum12030110021203021002TextID = "" Then
|
||||
Var $Sum12030110021203021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3229,9 +3277,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000412030200041203030004 </State>
|
||||
|
|
@ -3254,6 +3303,11 @@
|
|||
If $Sum120301000412030200041203030004TextID != "" Then
|
||||
Var $Sum120301000412030200041203030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000412030200041203030004TextValue = "" Then
|
||||
If $Sum120301000412030200041203030004TextID = "" Then
|
||||
Var $Sum120301000412030200041203030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3582,9 +3636,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002412030200241203030024 </State>
|
||||
|
|
@ -3607,6 +3662,11 @@
|
|||
If $Sum120301002412030200241203030024TextID != "" Then
|
||||
Var $Sum120301002412030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002412030200241203030024TextValue = "" Then
|
||||
If $Sum120301002412030200241203030024TextID = "" Then
|
||||
Var $Sum120301002412030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3935,9 +3995,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002512030200251203030025 </State>
|
||||
|
|
@ -3960,6 +4021,11 @@
|
|||
If $Sum120301002512030200251203030025TextID != "" Then
|
||||
Var $Sum120301002512030200251203030025TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002512030200251203030025TextValue = "" Then
|
||||
If $Sum120301002512030200251203030025TextID = "" Then
|
||||
Var $Sum120301002512030200251203030025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4288,9 +4354,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003512030200351203030035 </State>
|
||||
|
|
@ -4313,6 +4380,11 @@
|
|||
If $Sum120301003512030200351203030035TextID != "" Then
|
||||
Var $Sum120301003512030200351203030035TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003512030200351203030035TextValue = "" Then
|
||||
If $Sum120301003512030200351203030035TextID = "" Then
|
||||
Var $Sum120301003512030200351203030035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4637,9 +4709,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020040 </State>
|
||||
|
|
@ -4662,6 +4735,11 @@
|
|||
If $Sum1203020040TextID != "" Then
|
||||
Var $Sum1203020040TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020040TextValue = "" Then
|
||||
If $Sum1203020040TextID = "" Then
|
||||
Var $Sum1203020040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4986,9 +5064,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200591203030059 </State>
|
||||
|
|
@ -5011,6 +5090,11 @@
|
|||
If $Sum12030200591203030059TextID != "" Then
|
||||
Var $Sum12030200591203030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200591203030059TextValue = "" Then
|
||||
If $Sum12030200591203030059TextID = "" Then
|
||||
Var $Sum12030200591203030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5335,9 +5419,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030010 </State>
|
||||
|
|
@ -5360,6 +5445,11 @@
|
|||
If $Sum1203030010TextID != "" Then
|
||||
Var $Sum1203030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030010TextValue = "" Then
|
||||
If $Sum1203030010TextID = "" Then
|
||||
Var $Sum1203030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5684,9 +5774,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030030 </State>
|
||||
|
|
@ -5709,6 +5800,11 @@
|
|||
If $Sum1203030030TextID != "" Then
|
||||
Var $Sum1203030030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030030TextValue = "" Then
|
||||
If $Sum1203030030TextID = "" Then
|
||||
Var $Sum1203030030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6033,9 +6129,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030044 </State>
|
||||
|
|
@ -6058,6 +6155,11 @@
|
|||
If $Sum1203030044TextID != "" Then
|
||||
Var $Sum1203030044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030044TextValue = "" Then
|
||||
If $Sum1203030044TextID = "" Then
|
||||
Var $Sum1203030044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6382,9 +6484,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030061 </State>
|
||||
|
|
@ -6407,6 +6510,11 @@
|
|||
If $Sum1203030061TextID != "" Then
|
||||
Var $Sum1203030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030061TextValue = "" Then
|
||||
If $Sum1203030061TextID = "" Then
|
||||
Var $Sum1203030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6731,9 +6839,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030017 </State>
|
||||
|
|
@ -6756,6 +6865,11 @@
|
|||
If $Sum1299030017TextID != "" Then
|
||||
Var $Sum1299030017TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030017TextValue = "" Then
|
||||
If $Sum1299030017TextID = "" Then
|
||||
Var $Sum1299030017TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7080,9 +7194,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030067 </State>
|
||||
|
|
@ -7105,6 +7220,11 @@
|
|||
If $Sum1299030067TextID != "" Then
|
||||
Var $Sum1299030067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030067TextValue = "" Then
|
||||
If $Sum1299030067TextID = "" Then
|
||||
Var $Sum1299030067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7429,9 +7549,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030068 </State>
|
||||
|
|
@ -7454,6 +7575,11 @@
|
|||
If $Sum1299030068TextID != "" Then
|
||||
Var $Sum1299030068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030068TextValue = "" Then
|
||||
If $Sum1299030068TextID = "" Then
|
||||
Var $Sum1299030068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -403,9 +403,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030026 </State>
|
||||
|
|
@ -428,6 +429,11 @@
|
|||
If $Sum1299030026TextID != "" Then
|
||||
Var $Sum1299030026TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030026TextValue = "" Then
|
||||
If $Sum1299030026TextID = "" Then
|
||||
Var $Sum1299030026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -752,9 +758,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030067 </State>
|
||||
|
|
@ -777,6 +784,11 @@
|
|||
If $Sum1299030067TextID != "" Then
|
||||
Var $Sum1299030067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030067TextValue = "" Then
|
||||
If $Sum1299030067TextID = "" Then
|
||||
Var $Sum1299030067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1101,9 +1113,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030066 </State>
|
||||
|
|
@ -1126,6 +1139,11 @@
|
|||
If $Sum1299030066TextID != "" Then
|
||||
Var $Sum1299030066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030066TextValue = "" Then
|
||||
If $Sum1299030066TextID = "" Then
|
||||
Var $Sum1299030066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -401,9 +401,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020080 </State>
|
||||
|
|
@ -426,6 +427,11 @@
|
|||
If $Sum1202020080TextID != "" Then
|
||||
Var $Sum1202020080TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020080TextValue = "" Then
|
||||
If $Sum1202020080TextID = "" Then
|
||||
Var $Sum1202020080TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -750,9 +756,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030128 </State>
|
||||
|
|
@ -775,6 +782,11 @@
|
|||
If $Sum1205030128TextID != "" Then
|
||||
Var $Sum1205030128TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030128TextValue = "" Then
|
||||
If $Sum1205030128TextID = "" Then
|
||||
Var $Sum1205030128TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1099,9 +1111,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030084 </State>
|
||||
|
|
@ -1124,6 +1137,11 @@
|
|||
If $Sum1203030084TextID != "" Then
|
||||
Var $Sum1203030084TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030084TextValue = "" Then
|
||||
If $Sum1203030084TextID = "" Then
|
||||
Var $Sum1203030084TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1448,9 +1466,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030085 </State>
|
||||
|
|
@ -1473,6 +1492,11 @@
|
|||
If $Sum1203030085TextID != "" Then
|
||||
Var $Sum1203030085TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030085TextValue = "" Then
|
||||
If $Sum1203030085TextID = "" Then
|
||||
Var $Sum1203030085TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1797,9 +1821,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020081 </State>
|
||||
|
|
@ -1822,6 +1847,11 @@
|
|||
If $Sum1202020081TextID != "" Then
|
||||
Var $Sum1202020081TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020081TextValue = "" Then
|
||||
If $Sum1202020081TextID = "" Then
|
||||
Var $Sum1202020081TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2146,9 +2176,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020082 </State>
|
||||
|
|
@ -2171,6 +2202,11 @@
|
|||
If $Sum1202020082TextID != "" Then
|
||||
Var $Sum1202020082TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020082TextValue = "" Then
|
||||
If $Sum1202020082TextID = "" Then
|
||||
Var $Sum1202020082TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2499,9 +2535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202010079 </State>
|
||||
|
|
@ -2524,6 +2561,11 @@
|
|||
If $Sum1202010079TextID != "" Then
|
||||
Var $Sum1202010079TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202010079TextValue = "" Then
|
||||
If $Sum1202010079TextID = "" Then
|
||||
Var $Sum1202010079TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2848,9 +2890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030081 </State>
|
||||
|
|
@ -2873,6 +2916,11 @@
|
|||
If $Sum1203030081TextID != "" Then
|
||||
Var $Sum1203030081TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030081TextValue = "" Then
|
||||
If $Sum1203030081TextID = "" Then
|
||||
Var $Sum1203030081TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3197,9 +3245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020082 </State>
|
||||
|
|
@ -3222,6 +3271,11 @@
|
|||
If $Sum1201020082TextID != "" Then
|
||||
Var $Sum1201020082TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020082TextValue = "" Then
|
||||
If $Sum1201020082TextID = "" Then
|
||||
Var $Sum1201020082TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3546,9 +3600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020082 </State>
|
||||
|
|
@ -3571,6 +3626,11 @@
|
|||
If $Sum1221020082TextID != "" Then
|
||||
Var $Sum1221020082TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020082TextValue = "" Then
|
||||
If $Sum1221020082TextID = "" Then
|
||||
Var $Sum1221020082TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3895,9 +3955,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020080 </State>
|
||||
|
|
@ -3920,6 +3981,11 @@
|
|||
If $Sum1203020080TextID != "" Then
|
||||
Var $Sum1203020080TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020080TextValue = "" Then
|
||||
If $Sum1203020080TextID = "" Then
|
||||
Var $Sum1203020080TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4244,9 +4310,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030080 </State>
|
||||
|
|
@ -4269,6 +4336,11 @@
|
|||
If $Sum1203030080TextID != "" Then
|
||||
Var $Sum1203030080TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030080TextValue = "" Then
|
||||
If $Sum1203030080TextID = "" Then
|
||||
Var $Sum1203030080TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4597,9 +4669,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202010078 </State>
|
||||
|
|
@ -4622,6 +4695,11 @@
|
|||
If $Sum1202010078TextID != "" Then
|
||||
Var $Sum1202010078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202010078TextValue = "" Then
|
||||
If $Sum1202010078TextID = "" Then
|
||||
Var $Sum1202010078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4946,9 +5024,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020083 </State>
|
||||
|
|
@ -4971,6 +5050,11 @@
|
|||
If $Sum1201020083TextID != "" Then
|
||||
Var $Sum1201020083TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020083TextValue = "" Then
|
||||
If $Sum1201020083TextID = "" Then
|
||||
Var $Sum1201020083TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5295,9 +5379,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020083 </State>
|
||||
|
|
@ -5320,6 +5405,11 @@
|
|||
If $Sum1221020083TextID != "" Then
|
||||
Var $Sum1221020083TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020083TextValue = "" Then
|
||||
If $Sum1221020083TextID = "" Then
|
||||
Var $Sum1221020083TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5644,9 +5734,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030082 </State>
|
||||
|
|
@ -5669,6 +5760,11 @@
|
|||
If $Sum1203030082TextID != "" Then
|
||||
Var $Sum1203030082TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030082TextValue = "" Then
|
||||
If $Sum1203030082TextID = "" Then
|
||||
Var $Sum1203030082TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5993,9 +6089,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030083 </State>
|
||||
|
|
@ -6018,6 +6115,11 @@
|
|||
If $Sum1203030083TextID != "" Then
|
||||
Var $Sum1203030083TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030083TextValue = "" Then
|
||||
If $Sum1203030083TextID = "" Then
|
||||
Var $Sum1203030083TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030078 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1201030078TextID != "" Then
|
||||
Var $Sum1201030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030078TextValue = "" Then
|
||||
If $Sum1201030078TextID = "" Then
|
||||
Var $Sum1201030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221030078 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1221030078TextID != "" Then
|
||||
Var $Sum1221030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221030078TextValue = "" Then
|
||||
If $Sum1221030078TextID = "" Then
|
||||
Var $Sum1221030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030057 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1202030057TextID != "" Then
|
||||
Var $Sum1202030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030057TextValue = "" Then
|
||||
If $Sum1202030057TextID = "" Then
|
||||
Var $Sum1202030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030058 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1202030058TextID != "" Then
|
||||
Var $Sum1202030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030058TextValue = "" Then
|
||||
If $Sum1202030058TextID = "" Then
|
||||
Var $Sum1202030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -403,9 +403,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200751203030075 </State>
|
||||
|
|
@ -428,6 +429,11 @@
|
|||
If $Sum12030200751203030075TextID != "" Then
|
||||
Var $Sum12030200751203030075TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200751203030075TextValue = "" Then
|
||||
If $Sum12030200751203030075TextID = "" Then
|
||||
Var $Sum12030200751203030075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -752,9 +758,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201241205030124 </State>
|
||||
|
|
@ -777,6 +784,11 @@
|
|||
If $Sum12050201241205030124TextID != "" Then
|
||||
Var $Sum12050201241205030124TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201241205030124TextValue = "" Then
|
||||
If $Sum12050201241205030124TextID = "" Then
|
||||
Var $Sum12050201241205030124TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1101,9 +1113,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200681202030068 </State>
|
||||
|
|
@ -1126,6 +1139,11 @@
|
|||
If $Sum12020200681202030068TextID != "" Then
|
||||
Var $Sum12020200681202030068TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200681202030068TextValue = "" Then
|
||||
If $Sum12020200681202030068TextID = "" Then
|
||||
Var $Sum12020200681202030068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1450,9 +1468,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020125 </State>
|
||||
|
|
@ -1475,6 +1494,11 @@
|
|||
If $Sum1205020125TextID != "" Then
|
||||
Var $Sum1205020125TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020125TextValue = "" Then
|
||||
If $Sum1205020125TextID = "" Then
|
||||
Var $Sum1205020125TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1799,9 +1823,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020075 </State>
|
||||
|
|
@ -1824,6 +1849,11 @@
|
|||
If $Sum1201020075TextID != "" Then
|
||||
Var $Sum1201020075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020075TextValue = "" Then
|
||||
If $Sum1201020075TextID = "" Then
|
||||
Var $Sum1201020075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2148,9 +2178,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020075 </State>
|
||||
|
|
@ -2173,6 +2204,11 @@
|
|||
If $Sum1221020075TextID != "" Then
|
||||
Var $Sum1221020075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020075TextValue = "" Then
|
||||
If $Sum1221020075TextID = "" Then
|
||||
Var $Sum1221020075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2497,9 +2533,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200761203030076 </State>
|
||||
|
|
@ -2522,6 +2559,11 @@
|
|||
If $Sum12030200761203030076TextID != "" Then
|
||||
Var $Sum12030200761203030076TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200761203030076TextValue = "" Then
|
||||
If $Sum12030200761203030076TextID = "" Then
|
||||
Var $Sum12030200761203030076TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2846,9 +2888,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200691202030069 </State>
|
||||
|
|
@ -2871,6 +2914,11 @@
|
|||
If $Sum12020200691202030069TextID != "" Then
|
||||
Var $Sum12020200691202030069TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200691202030069TextValue = "" Then
|
||||
If $Sum12020200691202030069TextID = "" Then
|
||||
Var $Sum12020200691202030069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3195,9 +3243,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201261205030126 </State>
|
||||
|
|
@ -3220,6 +3269,11 @@
|
|||
If $Sum12050201261205030126TextID != "" Then
|
||||
Var $Sum12050201261205030126TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201261205030126TextValue = "" Then
|
||||
If $Sum12050201261205030126TextID = "" Then
|
||||
Var $Sum12050201261205030126TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3544,9 +3598,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201271205030127 </State>
|
||||
|
|
@ -3569,6 +3624,11 @@
|
|||
If $Sum12050201271205030127TextID != "" Then
|
||||
Var $Sum12050201271205030127TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201271205030127TextValue = "" Then
|
||||
If $Sum12050201271205030127TextID = "" Then
|
||||
Var $Sum12050201271205030127TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3893,9 +3953,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200701202030070 </State>
|
||||
|
|
@ -3918,6 +3979,11 @@
|
|||
If $Sum12020200701202030070TextID != "" Then
|
||||
Var $Sum12020200701202030070TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200701202030070TextValue = "" Then
|
||||
If $Sum12020200701202030070TextID = "" Then
|
||||
Var $Sum12020200701202030070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030046 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum1203030046TextID != "" Then
|
||||
Var $Sum1203030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030046TextValue = "" Then
|
||||
If $Sum1203030046TextID = "" Then
|
||||
Var $Sum1203030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -754,9 +760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030047 </State>
|
||||
|
|
@ -779,6 +786,11 @@
|
|||
If $Sum1203030047TextID != "" Then
|
||||
Var $Sum1203030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030047TextValue = "" Then
|
||||
If $Sum1203030047TextID = "" Then
|
||||
Var $Sum1203030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1103,9 +1115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050063 </State>
|
||||
|
|
@ -1128,6 +1141,11 @@
|
|||
If $Sum1299050063TextID != "" Then
|
||||
Var $Sum1299050063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050063TextValue = "" Then
|
||||
If $Sum1299050063TextID = "" Then
|
||||
Var $Sum1299050063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1452,9 +1470,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020040 </State>
|
||||
|
|
@ -1477,6 +1496,11 @@
|
|||
If $Sum1203020040TextID != "" Then
|
||||
Var $Sum1203020040TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020040TextValue = "" Then
|
||||
If $Sum1203020040TextID = "" Then
|
||||
Var $Sum1203020040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1801,9 +1825,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030063 </State>
|
||||
|
|
@ -1826,6 +1851,11 @@
|
|||
If $Sum1205030063TextID != "" Then
|
||||
Var $Sum1205030063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030063TextValue = "" Then
|
||||
If $Sum1205030063TextID = "" Then
|
||||
Var $Sum1205030063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2150,9 +2180,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020080 </State>
|
||||
|
|
@ -2175,6 +2206,11 @@
|
|||
If $Sum1205020080TextID != "" Then
|
||||
Var $Sum1205020080TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020080TextValue = "" Then
|
||||
If $Sum1205020080TextID = "" Then
|
||||
Var $Sum1205020080TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2499,9 +2535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030053 </State>
|
||||
|
|
@ -2524,6 +2561,11 @@
|
|||
If $Sum1202030053TextID != "" Then
|
||||
Var $Sum1202030053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030053TextValue = "" Then
|
||||
If $Sum1202030053TextID = "" Then
|
||||
Var $Sum1202030053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2848,9 +2890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020041 </State>
|
||||
|
|
@ -2873,6 +2916,11 @@
|
|||
If $Sum1203020041TextID != "" Then
|
||||
Var $Sum1203020041TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020041TextValue = "" Then
|
||||
If $Sum1203020041TextID = "" Then
|
||||
Var $Sum1203020041TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3197,9 +3245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020056 </State>
|
||||
|
|
@ -3222,6 +3271,11 @@
|
|||
If $Sum1202020056TextID != "" Then
|
||||
Var $Sum1202020056TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020056TextValue = "" Then
|
||||
If $Sum1202020056TextID = "" Then
|
||||
Var $Sum1202020056TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3546,9 +3600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030064 </State>
|
||||
|
|
@ -3571,6 +3626,11 @@
|
|||
If $Sum1205030064TextID != "" Then
|
||||
Var $Sum1205030064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030064TextValue = "" Then
|
||||
If $Sum1205030064TextID = "" Then
|
||||
Var $Sum1205030064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -402,9 +402,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020011 </State>
|
||||
|
|
@ -427,6 +428,11 @@
|
|||
If $Sum1299020011TextID != "" Then
|
||||
Var $Sum1299020011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020011TextValue = "" Then
|
||||
If $Sum1299020011TextID = "" Then
|
||||
Var $Sum1299020011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -751,9 +757,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020013 </State>
|
||||
|
|
@ -776,6 +783,11 @@
|
|||
If $Sum1299020013TextID != "" Then
|
||||
Var $Sum1299020013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020013TextValue = "" Then
|
||||
If $Sum1299020013TextID = "" Then
|
||||
Var $Sum1299020013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1100,9 +1112,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020014 </State>
|
||||
|
|
@ -1125,6 +1138,11 @@
|
|||
If $Sum1299020014TextID != "" Then
|
||||
Var $Sum1299020014TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020014TextValue = "" Then
|
||||
If $Sum1299020014TextID = "" Then
|
||||
Var $Sum1299020014TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1449,9 +1467,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020015 </State>
|
||||
|
|
@ -1474,6 +1493,11 @@
|
|||
If $Sum1299020015TextID != "" Then
|
||||
Var $Sum1299020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020015TextValue = "" Then
|
||||
If $Sum1299020015TextID = "" Then
|
||||
Var $Sum1299020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1798,9 +1822,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020016 </State>
|
||||
|
|
@ -1823,6 +1848,11 @@
|
|||
If $Sum1299020016TextID != "" Then
|
||||
Var $Sum1299020016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020016TextValue = "" Then
|
||||
If $Sum1299020016TextID = "" Then
|
||||
Var $Sum1299020016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2147,9 +2177,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020018 </State>
|
||||
|
|
@ -2172,6 +2203,11 @@
|
|||
If $Sum1299020018TextID != "" Then
|
||||
Var $Sum1299020018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020018TextValue = "" Then
|
||||
If $Sum1299020018TextID = "" Then
|
||||
Var $Sum1299020018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2496,9 +2532,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020015 </State>
|
||||
|
|
@ -2521,6 +2558,11 @@
|
|||
If $Sum1299020015TextID != "" Then
|
||||
Var $Sum1299020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020015TextValue = "" Then
|
||||
If $Sum1299020015TextID = "" Then
|
||||
Var $Sum1299020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -399,9 +399,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020002 </State>
|
||||
|
|
@ -424,6 +425,11 @@
|
|||
If $Sum1203020002TextID != "" Then
|
||||
Var $Sum1203020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020002TextValue = "" Then
|
||||
If $Sum1203020002TextID = "" Then
|
||||
Var $Sum1203020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -748,9 +754,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020065 </State>
|
||||
|
|
@ -773,6 +780,11 @@
|
|||
If $Sum1203020065TextID != "" Then
|
||||
Var $Sum1203020065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020065TextValue = "" Then
|
||||
If $Sum1203020065TextID = "" Then
|
||||
Var $Sum1203020065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1097,9 +1109,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020067 </State>
|
||||
|
|
@ -1122,6 +1135,11 @@
|
|||
If $Sum1203020067TextID != "" Then
|
||||
Var $Sum1203020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020067TextValue = "" Then
|
||||
If $Sum1203020067TextID = "" Then
|
||||
Var $Sum1203020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1446,9 +1464,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020066 </State>
|
||||
|
|
@ -1471,6 +1490,11 @@
|
|||
If $Sum1203020066TextID != "" Then
|
||||
Var $Sum1203020066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020066TextValue = "" Then
|
||||
If $Sum1203020066TextID = "" Then
|
||||
Var $Sum1203020066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1799,9 +1823,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030100681203020068 </State>
|
||||
|
|
@ -1824,6 +1849,11 @@
|
|||
If $Sum12030100681203020068TextID != "" Then
|
||||
Var $Sum12030100681203020068TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030100681203020068TextValue = "" Then
|
||||
If $Sum12030100681203020068TextID = "" Then
|
||||
Var $Sum12030100681203020068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2148,9 +2178,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020069 </State>
|
||||
|
|
@ -2173,6 +2204,11 @@
|
|||
If $Sum1203020069TextID != "" Then
|
||||
Var $Sum1203020069TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020069TextValue = "" Then
|
||||
If $Sum1203020069TextID = "" Then
|
||||
Var $Sum1203020069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2497,9 +2533,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020070 </State>
|
||||
|
|
@ -2522,6 +2559,11 @@
|
|||
If $Sum1203020070TextID != "" Then
|
||||
Var $Sum1203020070TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020070TextValue = "" Then
|
||||
If $Sum1203020070TextID = "" Then
|
||||
Var $Sum1203020070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2846,9 +2888,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020071 </State>
|
||||
|
|
@ -2871,6 +2914,11 @@
|
|||
If $Sum1203020071TextID != "" Then
|
||||
Var $Sum1203020071TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020071TextValue = "" Then
|
||||
If $Sum1203020071TextID = "" Then
|
||||
Var $Sum1203020071TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3195,9 +3243,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020074 </State>
|
||||
|
|
@ -3220,6 +3269,11 @@
|
|||
If $Sum1203020074TextID != "" Then
|
||||
Var $Sum1203020074TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020074TextValue = "" Then
|
||||
If $Sum1203020074TextID = "" Then
|
||||
Var $Sum1203020074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3548,9 +3602,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101000612010200031201030003 </State>
|
||||
|
|
@ -3573,6 +3628,11 @@
|
|||
If $Sum120101000612010200031201030003TextID != "" Then
|
||||
Var $Sum120101000612010200031201030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101000612010200031201030003TextValue = "" Then
|
||||
If $Sum120101000612010200031201030003TextID = "" Then
|
||||
Var $Sum120101000612010200031201030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3901,9 +3961,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010110061201021003 </State>
|
||||
|
|
@ -3926,6 +3987,11 @@
|
|||
If $Sum12010110061201021003TextID != "" Then
|
||||
Var $Sum12010110061201021003TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010110061201021003TextValue = "" Then
|
||||
If $Sum12010110061201021003TextID = "" Then
|
||||
Var $Sum12010110061201021003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4250,9 +4316,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010200611201030061 </State>
|
||||
|
|
@ -4275,6 +4342,11 @@
|
|||
If $Sum12010200611201030061TextID != "" Then
|
||||
Var $Sum12010200611201030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010200611201030061TextValue = "" Then
|
||||
If $Sum12010200611201030061TextID = "" Then
|
||||
Var $Sum12010200611201030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4603,9 +4675,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000212030200021203030002 </State>
|
||||
|
|
@ -4628,6 +4701,11 @@
|
|||
If $Sum120301000212030200021203030002TextID != "" Then
|
||||
Var $Sum120301000212030200021203030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000212030200021203030002TextValue = "" Then
|
||||
If $Sum120301000212030200021203030002TextID = "" Then
|
||||
Var $Sum120301000212030200021203030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4952,9 +5030,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203021002 </State>
|
||||
|
|
@ -4977,6 +5056,11 @@
|
|||
If $Sum1203021002TextID != "" Then
|
||||
Var $Sum1203021002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203021002TextValue = "" Then
|
||||
If $Sum1203021002TextID = "" Then
|
||||
Var $Sum1203021002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5305,9 +5389,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301000412030200041203030004 </State>
|
||||
|
|
@ -5330,6 +5415,11 @@
|
|||
If $Sum120301000412030200041203030004TextID != "" Then
|
||||
Var $Sum120301000412030200041203030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301000412030200041203030004TextValue = "" Then
|
||||
If $Sum120301000412030200041203030004TextID = "" Then
|
||||
Var $Sum120301000412030200041203030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5658,9 +5748,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002412030200241203030024 </State>
|
||||
|
|
@ -5683,6 +5774,11 @@
|
|||
If $Sum120301002412030200241203030024TextID != "" Then
|
||||
Var $Sum120301002412030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002412030200241203030024TextValue = "" Then
|
||||
If $Sum120301002412030200241203030024TextID = "" Then
|
||||
Var $Sum120301002412030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6011,9 +6107,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002512030200251203030025 </State>
|
||||
|
|
@ -6036,6 +6133,11 @@
|
|||
If $Sum120301002512030200251203030025TextID != "" Then
|
||||
Var $Sum120301002512030200251203030025TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002512030200251203030025TextValue = "" Then
|
||||
If $Sum120301002512030200251203030025TextID = "" Then
|
||||
Var $Sum120301002512030200251203030025TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6364,9 +6466,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003512030200351203030035 </State>
|
||||
|
|
@ -6389,6 +6492,11 @@
|
|||
If $Sum120301003512030200351203030035TextID != "" Then
|
||||
Var $Sum120301003512030200351203030035TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003512030200351203030035TextValue = "" Then
|
||||
If $Sum120301003512030200351203030035TextID = "" Then
|
||||
Var $Sum120301003512030200351203030035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6713,9 +6821,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200391203030039 </State>
|
||||
|
|
@ -6738,6 +6847,11 @@
|
|||
If $Sum12030200391203030039TextID != "" Then
|
||||
Var $Sum12030200391203030039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200391203030039TextValue = "" Then
|
||||
If $Sum12030200391203030039TextID = "" Then
|
||||
Var $Sum12030200391203030039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7062,9 +7176,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200591203030059 </State>
|
||||
|
|
@ -7087,6 +7202,11 @@
|
|||
If $Sum12030200591203030059TextID != "" Then
|
||||
Var $Sum12030200591203030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200591203030059TextValue = "" Then
|
||||
If $Sum12030200591203030059TextID = "" Then
|
||||
Var $Sum12030200591203030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7411,9 +7531,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030010 </State>
|
||||
|
|
@ -7436,6 +7557,11 @@
|
|||
If $Sum1203030010TextID != "" Then
|
||||
Var $Sum1203030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030010TextValue = "" Then
|
||||
If $Sum1203030010TextID = "" Then
|
||||
Var $Sum1203030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7760,9 +7886,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030030 </State>
|
||||
|
|
@ -7785,6 +7912,11 @@
|
|||
If $Sum1203030030TextID != "" Then
|
||||
Var $Sum1203030030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030030TextValue = "" Then
|
||||
If $Sum1203030030TextID = "" Then
|
||||
Var $Sum1203030030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8109,9 +8241,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030044 </State>
|
||||
|
|
@ -8134,6 +8267,11 @@
|
|||
If $Sum1203030044TextID != "" Then
|
||||
Var $Sum1203030044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030044TextValue = "" Then
|
||||
If $Sum1203030044TextID = "" Then
|
||||
Var $Sum1203030044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200241203030024 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum12030200241203030024TextID != "" Then
|
||||
Var $Sum12030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200241203030024TextValue = "" Then
|
||||
If $Sum12030200241203030024TextID = "" Then
|
||||
Var $Sum12030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -754,9 +760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -779,6 +786,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1103,9 +1115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200231203030023 </State>
|
||||
|
|
@ -1128,6 +1141,11 @@
|
|||
If $Sum12030200231203030023TextID != "" Then
|
||||
Var $Sum12030200231203030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200231203030023TextValue = "" Then
|
||||
If $Sum12030200231203030023TextID = "" Then
|
||||
Var $Sum12030200231203030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101005712010200571201030057 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum120101005712010200571201030057TextID != "" Then
|
||||
Var $Sum120101005712010200571201030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101005712010200571201030057TextValue = "" Then
|
||||
If $Sum120101005712010200571201030057TextID = "" Then
|
||||
Var $Sum120101005712010200571201030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -758,9 +764,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101005712210200571221030057 </State>
|
||||
|
|
@ -783,6 +790,11 @@
|
|||
If $Sum122101005712210200571221030057TextID != "" Then
|
||||
Var $Sum122101005712210200571221030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101005712210200571221030057TextValue = "" Then
|
||||
If $Sum122101005712210200571221030057TextID = "" Then
|
||||
Var $Sum122101005712210200571221030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1111,9 +1123,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010100581201020058 </State>
|
||||
|
|
@ -1136,6 +1149,11 @@
|
|||
If $Sum12010100581201020058TextID != "" Then
|
||||
Var $Sum12010100581201020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010100581201020058TextValue = "" Then
|
||||
If $Sum12010100581201020058TextID = "" Then
|
||||
Var $Sum12010100581201020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1464,9 +1482,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210100581221020058 </State>
|
||||
|
|
@ -1489,6 +1508,11 @@
|
|||
If $Sum12210100581221020058TextID != "" Then
|
||||
Var $Sum12210100581221020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210100581221020058TextValue = "" Then
|
||||
If $Sum12210100581221020058TextID = "" Then
|
||||
Var $Sum12210100581221020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1817,9 +1841,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201005012020200501202030050 </State>
|
||||
|
|
@ -1842,6 +1867,11 @@
|
|||
If $Sum120201005012020200501202030050TextID != "" Then
|
||||
Var $Sum120201005012020200501202030050TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201005012020200501202030050TextValue = "" Then
|
||||
If $Sum120201005012020200501202030050TextID = "" Then
|
||||
Var $Sum120201005012020200501202030050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2170,9 +2200,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003512030200351203030035 </State>
|
||||
|
|
@ -2195,6 +2226,11 @@
|
|||
If $Sum120301003512030200351203030035TextID != "" Then
|
||||
Var $Sum120301003512030200351203030035TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003512030200351203030035TextValue = "" Then
|
||||
If $Sum120301003512030200351203030035TextID = "" Then
|
||||
Var $Sum120301003512030200351203030035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2523,9 +2559,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003612030200361203030036 </State>
|
||||
|
|
@ -2548,6 +2585,11 @@
|
|||
If $Sum120301003612030200361203030036TextID != "" Then
|
||||
Var $Sum120301003612030200361203030036TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003612030200361203030036TextValue = "" Then
|
||||
If $Sum120301003612030200361203030036TextID = "" Then
|
||||
Var $Sum120301003612030200361203030036TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2872,9 +2914,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200371203030037 </State>
|
||||
|
|
@ -2897,6 +2940,11 @@
|
|||
If $Sum12030200371203030037TextID != "" Then
|
||||
Var $Sum12030200371203030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200371203030037TextValue = "" Then
|
||||
If $Sum12030200371203030037TextID = "" Then
|
||||
Var $Sum12030200371203030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3221,9 +3269,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -3246,6 +3295,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3570,9 +3624,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020060 </State>
|
||||
|
|
@ -3595,6 +3650,11 @@
|
|||
If $Sum1205020060TextID != "" Then
|
||||
Var $Sum1205020060TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020060TextValue = "" Then
|
||||
If $Sum1205020060TextID = "" Then
|
||||
Var $Sum1205020060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3919,9 +3979,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020063 </State>
|
||||
|
|
@ -3944,6 +4005,11 @@
|
|||
If $Sum1205020063TextID != "" Then
|
||||
Var $Sum1205020063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020063TextValue = "" Then
|
||||
If $Sum1205020063TextID = "" Then
|
||||
Var $Sum1205020063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4268,9 +4334,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020064 </State>
|
||||
|
|
@ -4293,6 +4360,11 @@
|
|||
If $Sum1205020064TextID != "" Then
|
||||
Var $Sum1205020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020064TextValue = "" Then
|
||||
If $Sum1205020064TextID = "" Then
|
||||
Var $Sum1205020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4617,9 +4689,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020065 </State>
|
||||
|
|
@ -4642,6 +4715,11 @@
|
|||
If $Sum1205020065TextID != "" Then
|
||||
Var $Sum1205020065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020065TextValue = "" Then
|
||||
If $Sum1205020065TextID = "" Then
|
||||
Var $Sum1205020065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4966,9 +5044,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020066 </State>
|
||||
|
|
@ -4991,6 +5070,11 @@
|
|||
If $Sum1205020066TextID != "" Then
|
||||
Var $Sum1205020066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020066TextValue = "" Then
|
||||
If $Sum1205020066TextID = "" Then
|
||||
Var $Sum1205020066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5315,9 +5399,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -5340,6 +5425,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -401,9 +401,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020068 </State>
|
||||
|
|
@ -426,6 +427,11 @@
|
|||
If $Sum1201020068TextID != "" Then
|
||||
Var $Sum1201020068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020068TextValue = "" Then
|
||||
If $Sum1201020068TextID = "" Then
|
||||
Var $Sum1201020068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -750,9 +756,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020068 </State>
|
||||
|
|
@ -775,6 +782,11 @@
|
|||
If $Sum1221020068TextID != "" Then
|
||||
Var $Sum1221020068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020068TextValue = "" Then
|
||||
If $Sum1221020068TextID = "" Then
|
||||
Var $Sum1221020068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1099,9 +1111,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030092 </State>
|
||||
|
|
@ -1124,6 +1137,11 @@
|
|||
If $Sum1205030092TextID != "" Then
|
||||
Var $Sum1205030092TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030092TextValue = "" Then
|
||||
If $Sum1205030092TextID = "" Then
|
||||
Var $Sum1205030092TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1448,9 +1466,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200581203030058 </State>
|
||||
|
|
@ -1473,6 +1492,11 @@
|
|||
If $Sum12030200581203030058TextID != "" Then
|
||||
Var $Sum12030200581203030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200581203030058TextValue = "" Then
|
||||
If $Sum12030200581203030058TextID = "" Then
|
||||
Var $Sum12030200581203030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1797,9 +1821,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200591203030059 </State>
|
||||
|
|
@ -1822,6 +1847,11 @@
|
|||
If $Sum12030200591203030059TextID != "" Then
|
||||
Var $Sum12030200591203030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200591203030059TextValue = "" Then
|
||||
If $Sum12030200591203030059TextID = "" Then
|
||||
Var $Sum12030200591203030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2146,9 +2176,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200601202030060 </State>
|
||||
|
|
@ -2171,6 +2202,11 @@
|
|||
If $Sum12020200601202030060TextID != "" Then
|
||||
Var $Sum12020200601202030060TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200601202030060TextValue = "" Then
|
||||
If $Sum12020200601202030060TextID = "" Then
|
||||
Var $Sum12020200601202030060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2495,9 +2531,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200611202030061 </State>
|
||||
|
|
@ -2520,6 +2557,11 @@
|
|||
If $Sum12020200611202030061TextID != "" Then
|
||||
Var $Sum12020200611202030061TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200611202030061TextValue = "" Then
|
||||
If $Sum12020200611202030061TextID = "" Then
|
||||
Var $Sum12020200611202030061TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2844,9 +2886,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200621202030062 </State>
|
||||
|
|
@ -2869,6 +2912,11 @@
|
|||
If $Sum12020200621202030062TextID != "" Then
|
||||
Var $Sum12020200621202030062TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200621202030062TextValue = "" Then
|
||||
If $Sum12020200621202030062TextID = "" Then
|
||||
Var $Sum12020200621202030062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3193,9 +3241,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200631202030063 </State>
|
||||
|
|
@ -3218,6 +3267,11 @@
|
|||
If $Sum12020200631202030063TextID != "" Then
|
||||
Var $Sum12020200631202030063TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200631202030063TextValue = "" Then
|
||||
If $Sum12020200631202030063TextID = "" Then
|
||||
Var $Sum12020200631202030063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3542,9 +3596,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200641202030064 </State>
|
||||
|
|
@ -3567,6 +3622,11 @@
|
|||
If $Sum12020200641202030064TextID != "" Then
|
||||
Var $Sum12020200641202030064TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200641202030064TextValue = "" Then
|
||||
If $Sum12020200641202030064TextID = "" Then
|
||||
Var $Sum12020200641202030064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3891,9 +3951,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200651202030065 </State>
|
||||
|
|
@ -3916,6 +3977,11 @@
|
|||
If $Sum12020200651202030065TextID != "" Then
|
||||
Var $Sum12020200651202030065TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200651202030065TextValue = "" Then
|
||||
If $Sum12020200651202030065TextID = "" Then
|
||||
Var $Sum12020200651202030065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4240,9 +4306,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020090 </State>
|
||||
|
|
@ -4265,6 +4332,11 @@
|
|||
If $Sum1205020090TextID != "" Then
|
||||
Var $Sum1205020090TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020090TextValue = "" Then
|
||||
If $Sum1205020090TextID = "" Then
|
||||
Var $Sum1205020090TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4589,9 +4661,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200911205030091 </State>
|
||||
|
|
@ -4614,6 +4687,11 @@
|
|||
If $Sum12050200911205030091TextID != "" Then
|
||||
Var $Sum12050200911205030091TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200911205030091TextValue = "" Then
|
||||
If $Sum12050200911205030091TextID = "" Then
|
||||
Var $Sum12050200911205030091TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4938,9 +5016,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201141205030114 </State>
|
||||
|
|
@ -4963,6 +5042,11 @@
|
|||
If $Sum12050201141205030114TextID != "" Then
|
||||
Var $Sum12050201141205030114TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201141205030114TextValue = "" Then
|
||||
If $Sum12050201141205030114TextID = "" Then
|
||||
Var $Sum12050201141205030114TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5287,9 +5371,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020093 </State>
|
||||
|
|
@ -5312,6 +5397,11 @@
|
|||
If $Sum1205020093TextID != "" Then
|
||||
Var $Sum1205020093TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020093TextValue = "" Then
|
||||
If $Sum1205020093TextID = "" Then
|
||||
Var $Sum1205020093TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5636,9 +5726,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200241203030024 </State>
|
||||
|
|
@ -5661,6 +5752,11 @@
|
|||
If $Sum12030200241203030024TextID != "" Then
|
||||
Var $Sum12030200241203030024TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200241203030024TextValue = "" Then
|
||||
If $Sum12030200241203030024TextID = "" Then
|
||||
Var $Sum12030200241203030024TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5985,9 +6081,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -6010,6 +6107,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6334,9 +6436,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020057 </State>
|
||||
|
|
@ -6359,6 +6462,11 @@
|
|||
If $Sum1201020057TextID != "" Then
|
||||
Var $Sum1201020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020057TextValue = "" Then
|
||||
If $Sum1201020057TextID = "" Then
|
||||
Var $Sum1201020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6683,9 +6791,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020057 </State>
|
||||
|
|
@ -6708,6 +6817,11 @@
|
|||
If $Sum1221020057TextID != "" Then
|
||||
Var $Sum1221020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020057TextValue = "" Then
|
||||
If $Sum1221020057TextID = "" Then
|
||||
Var $Sum1221020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7032,9 +7146,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020058 </State>
|
||||
|
|
@ -7057,6 +7172,11 @@
|
|||
If $Sum1201020058TextID != "" Then
|
||||
Var $Sum1201020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020058TextValue = "" Then
|
||||
If $Sum1201020058TextID = "" Then
|
||||
Var $Sum1201020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7381,9 +7501,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020058 </State>
|
||||
|
|
@ -7406,6 +7527,11 @@
|
|||
If $Sum1221020058TextID != "" Then
|
||||
Var $Sum1221020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020058TextValue = "" Then
|
||||
If $Sum1221020058TextID = "" Then
|
||||
Var $Sum1221020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7730,9 +7856,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030050 </State>
|
||||
|
|
@ -7755,6 +7882,11 @@
|
|||
If $Sum1202030050TextID != "" Then
|
||||
Var $Sum1202030050TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030050TextValue = "" Then
|
||||
If $Sum1202030050TextID = "" Then
|
||||
Var $Sum1202030050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8079,9 +8211,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020064 </State>
|
||||
|
|
@ -8104,6 +8237,11 @@
|
|||
If $Sum1201020064TextID != "" Then
|
||||
Var $Sum1201020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020064TextValue = "" Then
|
||||
If $Sum1201020064TextID = "" Then
|
||||
Var $Sum1201020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8428,9 +8566,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020064 </State>
|
||||
|
|
@ -8453,6 +8592,11 @@
|
|||
If $Sum1221020064TextID != "" Then
|
||||
Var $Sum1221020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020064TextValue = "" Then
|
||||
If $Sum1221020064TextID = "" Then
|
||||
Var $Sum1221020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8777,9 +8921,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020035 </State>
|
||||
|
|
@ -8802,6 +8947,11 @@
|
|||
If $Sum1203020035TextID != "" Then
|
||||
Var $Sum1203020035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020035TextValue = "" Then
|
||||
If $Sum1203020035TextID = "" Then
|
||||
Var $Sum1203020035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9126,9 +9276,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -9151,6 +9302,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9475,9 +9631,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030037 </State>
|
||||
|
|
@ -9500,6 +9657,11 @@
|
|||
If $Sum1203030037TextID != "" Then
|
||||
Var $Sum1203030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030037TextValue = "" Then
|
||||
If $Sum1203030037TextID = "" Then
|
||||
Var $Sum1203030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9824,9 +9986,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020063 </State>
|
||||
|
|
@ -9849,6 +10012,11 @@
|
|||
If $Sum1205020063TextID != "" Then
|
||||
Var $Sum1205020063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020063TextValue = "" Then
|
||||
If $Sum1205020063TextID = "" Then
|
||||
Var $Sum1205020063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10173,9 +10341,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020064 </State>
|
||||
|
|
@ -10198,6 +10367,11 @@
|
|||
If $Sum1205020064TextID != "" Then
|
||||
Var $Sum1205020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020064TextValue = "" Then
|
||||
If $Sum1205020064TextID = "" Then
|
||||
Var $Sum1205020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10522,9 +10696,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -10547,6 +10722,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030043 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1201030043TextID != "" Then
|
||||
Var $Sum1201030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030043TextValue = "" Then
|
||||
If $Sum1201030043TextID = "" Then
|
||||
Var $Sum1201030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030044 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1202030044TextID != "" Then
|
||||
Var $Sum1202030044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030044TextValue = "" Then
|
||||
If $Sum1202030044TextID = "" Then
|
||||
Var $Sum1202030044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030009 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1203030009TextID != "" Then
|
||||
Var $Sum1203030009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030009TextValue = "" Then
|
||||
If $Sum1203030009TextID = "" Then
|
||||
Var $Sum1203030009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030026 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1203030026TextID != "" Then
|
||||
Var $Sum1203030026TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030026TextValue = "" Then
|
||||
If $Sum1203030026TextID = "" Then
|
||||
Var $Sum1203030026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030027 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1203030027TextID != "" Then
|
||||
Var $Sum1203030027TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030027TextValue = "" Then
|
||||
If $Sum1203030027TextID = "" Then
|
||||
Var $Sum1203030027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030030 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1203030030TextID != "" Then
|
||||
Var $Sum1203030030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030030TextValue = "" Then
|
||||
If $Sum1203030030TextID = "" Then
|
||||
Var $Sum1203030030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030031 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1203030031TextID != "" Then
|
||||
Var $Sum1203030031TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030031TextValue = "" Then
|
||||
If $Sum1203030031TextID = "" Then
|
||||
Var $Sum1203030031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030032 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1203030032TextID != "" Then
|
||||
Var $Sum1203030032TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030032TextValue = "" Then
|
||||
If $Sum1203030032TextID = "" Then
|
||||
Var $Sum1203030032TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030048 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1202030048TextID != "" Then
|
||||
Var $Sum1202030048TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030048TextValue = "" Then
|
||||
If $Sum1202030048TextID = "" Then
|
||||
Var $Sum1202030048TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030043 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1202030043TextID != "" Then
|
||||
Var $Sum1202030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030043TextValue = "" Then
|
||||
If $Sum1202030043TextID = "" Then
|
||||
Var $Sum1202030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030028 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1203030028TextID != "" Then
|
||||
Var $Sum1203030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030028TextValue = "" Then
|
||||
If $Sum1203030028TextID = "" Then
|
||||
Var $Sum1203030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030029 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1203030029TextID != "" Then
|
||||
Var $Sum1203030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030029TextValue = "" Then
|
||||
If $Sum1203030029TextID = "" Then
|
||||
Var $Sum1203030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030056 </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $Sum1202030056TextID != "" Then
|
||||
Var $Sum1202030056TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030056TextValue = "" Then
|
||||
If $Sum1202030056TextID = "" Then
|
||||
Var $Sum1202030056TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5290,9 +5374,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030086 </State>
|
||||
|
|
@ -5315,6 +5400,11 @@
|
|||
If $Sum1203030086TextID != "" Then
|
||||
Var $Sum1203030086TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030086TextValue = "" Then
|
||||
If $Sum1203030086TextID = "" Then
|
||||
Var $Sum1203030086TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5639,9 +5729,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030087 </State>
|
||||
|
|
@ -5664,6 +5755,11 @@
|
|||
If $Sum1203030087TextID != "" Then
|
||||
Var $Sum1203030087TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030087TextValue = "" Then
|
||||
If $Sum1203030087TextID = "" Then
|
||||
Var $Sum1203030087TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5988,9 +6084,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030078 </State>
|
||||
|
|
@ -6013,6 +6110,11 @@
|
|||
If $Sum1201030078TextID != "" Then
|
||||
Var $Sum1201030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030078TextValue = "" Then
|
||||
If $Sum1201030078TextID = "" Then
|
||||
Var $Sum1201030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6337,9 +6439,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221030078 </State>
|
||||
|
|
@ -6362,6 +6465,11 @@
|
|||
If $Sum1221030078TextID != "" Then
|
||||
Var $Sum1221030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221030078TextValue = "" Then
|
||||
If $Sum1221030078TextID = "" Then
|
||||
Var $Sum1221030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6686,9 +6794,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030057 </State>
|
||||
|
|
@ -6711,6 +6820,11 @@
|
|||
If $Sum1202030057TextID != "" Then
|
||||
Var $Sum1202030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030057TextValue = "" Then
|
||||
If $Sum1202030057TextID = "" Then
|
||||
Var $Sum1202030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7035,9 +7149,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030058 </State>
|
||||
|
|
@ -7060,6 +7175,11 @@
|
|||
If $Sum1202030058TextID != "" Then
|
||||
Var $Sum1202030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030058TextValue = "" Then
|
||||
If $Sum1202030058TextID = "" Then
|
||||
Var $Sum1202030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -399,9 +399,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020057 </State>
|
||||
|
|
@ -424,6 +425,11 @@
|
|||
If $Sum1201020057TextID != "" Then
|
||||
Var $Sum1201020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020057TextValue = "" Then
|
||||
If $Sum1201020057TextID = "" Then
|
||||
Var $Sum1201020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -748,9 +754,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020057 </State>
|
||||
|
|
@ -773,6 +780,11 @@
|
|||
If $Sum1221020057TextID != "" Then
|
||||
Var $Sum1221020057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020057TextValue = "" Then
|
||||
If $Sum1221020057TextID = "" Then
|
||||
Var $Sum1221020057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1097,9 +1109,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020058 </State>
|
||||
|
|
@ -1122,6 +1135,11 @@
|
|||
If $Sum1201020058TextID != "" Then
|
||||
Var $Sum1201020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020058TextValue = "" Then
|
||||
If $Sum1201020058TextID = "" Then
|
||||
Var $Sum1201020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1446,9 +1464,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020058 </State>
|
||||
|
|
@ -1471,6 +1490,11 @@
|
|||
If $Sum1221020058TextID != "" Then
|
||||
Var $Sum1221020058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020058TextValue = "" Then
|
||||
If $Sum1221020058TextID = "" Then
|
||||
Var $Sum1221020058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1795,9 +1819,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030050 </State>
|
||||
|
|
@ -1820,6 +1845,11 @@
|
|||
If $Sum1202030050TextID != "" Then
|
||||
Var $Sum1202030050TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030050TextValue = "" Then
|
||||
If $Sum1202030050TextID = "" Then
|
||||
Var $Sum1202030050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2144,9 +2174,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020064 </State>
|
||||
|
|
@ -2169,6 +2200,11 @@
|
|||
If $Sum1201020064TextID != "" Then
|
||||
Var $Sum1201020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020064TextValue = "" Then
|
||||
If $Sum1201020064TextID = "" Then
|
||||
Var $Sum1201020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2493,9 +2529,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020064 </State>
|
||||
|
|
@ -2518,6 +2555,11 @@
|
|||
If $Sum1221020064TextID != "" Then
|
||||
Var $Sum1221020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020064TextValue = "" Then
|
||||
If $Sum1221020064TextID = "" Then
|
||||
Var $Sum1221020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2842,9 +2884,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020035 </State>
|
||||
|
|
@ -2867,6 +2910,11 @@
|
|||
If $Sum1203020035TextID != "" Then
|
||||
Var $Sum1203020035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020035TextValue = "" Then
|
||||
If $Sum1203020035TextID = "" Then
|
||||
Var $Sum1203020035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3191,9 +3239,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030034 </State>
|
||||
|
|
@ -3216,6 +3265,11 @@
|
|||
If $Sum1203030034TextID != "" Then
|
||||
Var $Sum1203030034TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030034TextValue = "" Then
|
||||
If $Sum1203030034TextID = "" Then
|
||||
Var $Sum1203030034TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3540,9 +3594,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030037 </State>
|
||||
|
|
@ -3565,6 +3620,11 @@
|
|||
If $Sum1203030037TextID != "" Then
|
||||
Var $Sum1203030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030037TextValue = "" Then
|
||||
If $Sum1203030037TextID = "" Then
|
||||
Var $Sum1203030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3889,9 +3949,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020063 </State>
|
||||
|
|
@ -3914,6 +3975,11 @@
|
|||
If $Sum1205020063TextID != "" Then
|
||||
Var $Sum1205020063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020063TextValue = "" Then
|
||||
If $Sum1205020063TextID = "" Then
|
||||
Var $Sum1205020063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4238,9 +4304,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020064 </State>
|
||||
|
|
@ -4263,6 +4330,11 @@
|
|||
If $Sum1205020064TextID != "" Then
|
||||
Var $Sum1205020064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020064TextValue = "" Then
|
||||
If $Sum1205020064TextID = "" Then
|
||||
Var $Sum1205020064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4587,9 +4659,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -4612,6 +4685,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -407,9 +407,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010100591201020059 </State>
|
||||
|
|
@ -432,6 +433,11 @@
|
|||
If $Sum12010100591201020059TextID != "" Then
|
||||
Var $Sum12010100591201020059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010100591201020059TextValue = "" Then
|
||||
If $Sum12010100591201020059TextID = "" Then
|
||||
Var $Sum12010100591201020059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -760,9 +766,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210100591221020059 </State>
|
||||
|
|
@ -785,6 +792,11 @@
|
|||
If $Sum12210100591221020059TextID != "" Then
|
||||
Var $Sum12210100591221020059TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210100591221020059TextValue = "" Then
|
||||
If $Sum12210100591221020059TextID = "" Then
|
||||
Var $Sum12210100591221020059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1113,9 +1125,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101006012010200601201030060 </State>
|
||||
|
|
@ -1138,6 +1151,11 @@
|
|||
If $Sum120101006012010200601201030060TextID != "" Then
|
||||
Var $Sum120101006012010200601201030060TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101006012010200601201030060TextValue = "" Then
|
||||
If $Sum120101006012010200601201030060TextID = "" Then
|
||||
Var $Sum120101006012010200601201030060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1466,9 +1484,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101006012210200601221030060 </State>
|
||||
|
|
@ -1491,6 +1510,11 @@
|
|||
If $Sum122101006012210200601221030060TextID != "" Then
|
||||
Var $Sum122101006012210200601221030060TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101006012210200601221030060TextValue = "" Then
|
||||
If $Sum122101006012210200601221030060TextID = "" Then
|
||||
Var $Sum122101006012210200601221030060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1819,9 +1843,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201005112020200511202030051 </State>
|
||||
|
|
@ -1844,6 +1869,11 @@
|
|||
If $Sum120201005112020200511202030051TextID != "" Then
|
||||
Var $Sum120201005112020200511202030051TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201005112020200511202030051TextValue = "" Then
|
||||
If $Sum120201005112020200511202030051TextID = "" Then
|
||||
Var $Sum120201005112020200511202030051TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2168,9 +2198,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020052 </State>
|
||||
|
|
@ -2193,6 +2224,11 @@
|
|||
If $Sum1202020052TextID != "" Then
|
||||
Var $Sum1202020052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020052TextValue = "" Then
|
||||
If $Sum1202020052TextID = "" Then
|
||||
Var $Sum1202020052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2521,9 +2557,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301003812030200381203030038 </State>
|
||||
|
|
@ -2546,6 +2583,11 @@
|
|||
If $Sum120301003812030200381203030038TextID != "" Then
|
||||
Var $Sum120301003812030200381203030038TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301003812030200381203030038TextValue = "" Then
|
||||
If $Sum120301003812030200381203030038TextID = "" Then
|
||||
Var $Sum120301003812030200381203030038TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2870,9 +2912,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12030200391203030039 </State>
|
||||
|
|
@ -2895,6 +2938,11 @@
|
|||
If $Sum12030200391203030039TextID != "" Then
|
||||
Var $Sum12030200391203030039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12030200391203030039TextValue = "" Then
|
||||
If $Sum12030200391203030039TextID = "" Then
|
||||
Var $Sum12030200391203030039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3219,9 +3267,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030040 </State>
|
||||
|
|
@ -3244,6 +3293,11 @@
|
|||
If $Sum1203030040TextID != "" Then
|
||||
Var $Sum1203030040TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030040TextValue = "" Then
|
||||
If $Sum1203030040TextID = "" Then
|
||||
Var $Sum1203030040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3568,9 +3622,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020068 </State>
|
||||
|
|
@ -3593,6 +3648,11 @@
|
|||
If $Sum1205020068TextID != "" Then
|
||||
Var $Sum1205020068TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020068TextValue = "" Then
|
||||
If $Sum1205020068TextID = "" Then
|
||||
Var $Sum1205020068TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3917,9 +3977,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020069 </State>
|
||||
|
|
@ -3942,6 +4003,11 @@
|
|||
If $Sum1205020069TextID != "" Then
|
||||
Var $Sum1205020069TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020069TextValue = "" Then
|
||||
If $Sum1205020069TextID = "" Then
|
||||
Var $Sum1205020069TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4266,9 +4332,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020070 </State>
|
||||
|
|
@ -4291,6 +4358,11 @@
|
|||
If $Sum1205020070TextID != "" Then
|
||||
Var $Sum1205020070TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020070TextValue = "" Then
|
||||
If $Sum1205020070TextID = "" Then
|
||||
Var $Sum1205020070TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4615,9 +4687,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020072 </State>
|
||||
|
|
@ -4640,6 +4713,11 @@
|
|||
If $Sum1205020072TextID != "" Then
|
||||
Var $Sum1205020072TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020072TextValue = "" Then
|
||||
If $Sum1205020072TextID = "" Then
|
||||
Var $Sum1205020072TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4964,9 +5042,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020073 </State>
|
||||
|
|
@ -4989,6 +5068,11 @@
|
|||
If $Sum1205020073TextID != "" Then
|
||||
Var $Sum1205020073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020073TextValue = "" Then
|
||||
If $Sum1205020073TextID = "" Then
|
||||
Var $Sum1205020073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020008 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1299020008TextID != "" Then
|
||||
Var $Sum1299020008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020008TextValue = "" Then
|
||||
If $Sum1299020008TextID = "" Then
|
||||
Var $Sum1299020008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020003 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1299020003TextID != "" Then
|
||||
Var $Sum1299020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020003TextValue = "" Then
|
||||
If $Sum1299020003TextID = "" Then
|
||||
Var $Sum1299020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020046 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1205020046TextID != "" Then
|
||||
Var $Sum1205020046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020046TextValue = "" Then
|
||||
If $Sum1205020046TextID = "" Then
|
||||
Var $Sum1205020046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050058 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1299050058TextID != "" Then
|
||||
Var $Sum1299050058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050058TextValue = "" Then
|
||||
If $Sum1299050058TextID = "" Then
|
||||
Var $Sum1299050058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050060 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1299050060TextID != "" Then
|
||||
Var $Sum1299050060TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050060TextValue = "" Then
|
||||
If $Sum1299050060TextID = "" Then
|
||||
Var $Sum1299050060TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020007 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1205020007TextID != "" Then
|
||||
Var $Sum1205020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020007TextValue = "" Then
|
||||
If $Sum1205020007TextID = "" Then
|
||||
Var $Sum1205020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050053 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1299050053TextID != "" Then
|
||||
Var $Sum1299050053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050053TextValue = "" Then
|
||||
If $Sum1299050053TextID = "" Then
|
||||
Var $Sum1299050053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050064 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1299050064TextID != "" Then
|
||||
Var $Sum1299050064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050064TextValue = "" Then
|
||||
If $Sum1299050064TextID = "" Then
|
||||
Var $Sum1299050064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020007 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1299020007TextID != "" Then
|
||||
Var $Sum1299020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020007TextValue = "" Then
|
||||
If $Sum1299020007TextID = "" Then
|
||||
Var $Sum1299020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020084 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1205020084TextID != "" Then
|
||||
Var $Sum1205020084TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020084TextValue = "" Then
|
||||
If $Sum1205020084TextID = "" Then
|
||||
Var $Sum1205020084TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050052 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1299050052TextID != "" Then
|
||||
Var $Sum1299050052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050052TextValue = "" Then
|
||||
If $Sum1299050052TextID = "" Then
|
||||
Var $Sum1299050052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020067 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1205020067TextID != "" Then
|
||||
Var $Sum1205020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020067TextValue = "" Then
|
||||
If $Sum1205020067TextID = "" Then
|
||||
Var $Sum1205020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030007 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1205030007TextID != "" Then
|
||||
Var $Sum1205030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030007TextValue = "" Then
|
||||
If $Sum1205030007TextID = "" Then
|
||||
Var $Sum1205030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050057 </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $Sum1299050057TextID != "" Then
|
||||
Var $Sum1299050057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050057TextValue = "" Then
|
||||
If $Sum1299050057TextID = "" Then
|
||||
Var $Sum1299050057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020044 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum1202020044TextID != "" Then
|
||||
Var $Sum1202020044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020044TextValue = "" Then
|
||||
If $Sum1202020044TextID = "" Then
|
||||
Var $Sum1202020044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -754,9 +760,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020043 </State>
|
||||
|
|
@ -779,6 +786,11 @@
|
|||
If $Sum1202020043TextID != "" Then
|
||||
Var $Sum1202020043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020043TextValue = "" Then
|
||||
If $Sum1202020043TextID = "" Then
|
||||
Var $Sum1202020043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1103,9 +1115,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020003 </State>
|
||||
|
|
@ -1128,6 +1141,11 @@
|
|||
If $Sum1299020003TextID != "" Then
|
||||
Var $Sum1299020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020003TextValue = "" Then
|
||||
If $Sum1299020003TextID = "" Then
|
||||
Var $Sum1299020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1452,9 +1470,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020001 </State>
|
||||
|
|
@ -1477,6 +1496,11 @@
|
|||
If $Sum1299020001TextID != "" Then
|
||||
Var $Sum1299020001TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020001TextValue = "" Then
|
||||
If $Sum1299020001TextID = "" Then
|
||||
Var $Sum1299020001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1801,9 +1825,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030046 </State>
|
||||
|
|
@ -1826,6 +1851,11 @@
|
|||
If $Sum1299030046TextID != "" Then
|
||||
Var $Sum1299030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030046TextValue = "" Then
|
||||
If $Sum1299030046TextID = "" Then
|
||||
Var $Sum1299030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2150,9 +2180,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020011 </State>
|
||||
|
|
@ -2175,6 +2206,11 @@
|
|||
If $Sum1299020011TextID != "" Then
|
||||
Var $Sum1299020011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020011TextValue = "" Then
|
||||
If $Sum1299020011TextID = "" Then
|
||||
Var $Sum1299020011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2499,9 +2535,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020015 </State>
|
||||
|
|
@ -2524,6 +2561,11 @@
|
|||
If $Sum1299020015TextID != "" Then
|
||||
Var $Sum1299020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020015TextValue = "" Then
|
||||
If $Sum1299020015TextID = "" Then
|
||||
Var $Sum1299020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2848,9 +2890,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050059 </State>
|
||||
|
|
@ -2873,6 +2916,11 @@
|
|||
If $Sum1299050059TextID != "" Then
|
||||
Var $Sum1299050059TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050059TextValue = "" Then
|
||||
If $Sum1299050059TextID = "" Then
|
||||
Var $Sum1299050059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3197,9 +3245,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050057 </State>
|
||||
|
|
@ -3222,6 +3271,11 @@
|
|||
If $Sum1299050057TextID != "" Then
|
||||
Var $Sum1299050057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050057TextValue = "" Then
|
||||
If $Sum1299050057TextID = "" Then
|
||||
Var $Sum1299050057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3546,9 +3600,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030035 </State>
|
||||
|
|
@ -3571,6 +3626,11 @@
|
|||
If $Sum1203030035TextID != "" Then
|
||||
Var $Sum1203030035TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030035TextValue = "" Then
|
||||
If $Sum1203030035TextID = "" Then
|
||||
Var $Sum1203030035TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3895,9 +3955,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020036 </State>
|
||||
|
|
@ -3920,6 +3981,11 @@
|
|||
If $Sum1203020036TextID != "" Then
|
||||
Var $Sum1203020036TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020036TextValue = "" Then
|
||||
If $Sum1203020036TextID = "" Then
|
||||
Var $Sum1203020036TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4244,9 +4310,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030066 </State>
|
||||
|
|
@ -4269,6 +4336,11 @@
|
|||
If $Sum1299030066TextID != "" Then
|
||||
Var $Sum1299030066TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030066TextValue = "" Then
|
||||
If $Sum1299030066TextID = "" Then
|
||||
Var $Sum1299030066TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030064 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1205030064TextID != "" Then
|
||||
Var $Sum1205030064TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030064TextValue = "" Then
|
||||
If $Sum1205030064TextID = "" Then
|
||||
Var $Sum1205030064TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050073 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1299050073TextID != "" Then
|
||||
Var $Sum1299050073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050073TextValue = "" Then
|
||||
If $Sum1299050073TextID = "" Then
|
||||
Var $Sum1299050073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020056 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1202020056TextID != "" Then
|
||||
Var $Sum1202020056TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020056TextValue = "" Then
|
||||
If $Sum1202020056TextID = "" Then
|
||||
Var $Sum1202020056TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020073 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1201020073TextID != "" Then
|
||||
Var $Sum1201020073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020073TextValue = "" Then
|
||||
If $Sum1201020073TextID = "" Then
|
||||
Var $Sum1201020073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020073 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1221020073TextID != "" Then
|
||||
Var $Sum1221020073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020073TextValue = "" Then
|
||||
If $Sum1221020073TextID = "" Then
|
||||
Var $Sum1221020073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030046 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1203030046TextID != "" Then
|
||||
Var $Sum1203030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030046TextValue = "" Then
|
||||
If $Sum1203030046TextID = "" Then
|
||||
Var $Sum1203030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020073 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1203020073TextID != "" Then
|
||||
Var $Sum1203020073TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020073TextValue = "" Then
|
||||
If $Sum1203020073TextID = "" Then
|
||||
Var $Sum1203020073TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020067 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1202020067TextID != "" Then
|
||||
Var $Sum1202020067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020067TextValue = "" Then
|
||||
If $Sum1202020067TextID = "" Then
|
||||
Var $Sum1202020067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020074 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1201020074TextID != "" Then
|
||||
Var $Sum1201020074TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020074TextValue = "" Then
|
||||
If $Sum1201020074TextID = "" Then
|
||||
Var $Sum1201020074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020074 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1221020074TextID != "" Then
|
||||
Var $Sum1221020074TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020074TextValue = "" Then
|
||||
If $Sum1221020074TextID = "" Then
|
||||
Var $Sum1221020074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030053 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1202030053TextID != "" Then
|
||||
Var $Sum1202030053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030053TextValue = "" Then
|
||||
If $Sum1202030053TextID = "" Then
|
||||
Var $Sum1202030053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030115 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1205030115TextID != "" Then
|
||||
Var $Sum1205030115TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030115TextValue = "" Then
|
||||
If $Sum1205030115TextID = "" Then
|
||||
Var $Sum1205030115TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -406,9 +406,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201003912020200391202030039 </State>
|
||||
|
|
@ -431,6 +432,11 @@
|
|||
If $Sum120201003912020200391202030039TextID != "" Then
|
||||
Var $Sum120201003912020200391202030039TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201003912020200391202030039TextValue = "" Then
|
||||
If $Sum120201003912020200391202030039TextID = "" Then
|
||||
Var $Sum120201003912020200391202030039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -759,9 +765,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110381202021038 </State>
|
||||
|
|
@ -784,6 +791,11 @@
|
|||
If $Sum12020110381202021038TextID != "" Then
|
||||
Var $Sum12020110381202021038TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110381202021038TextValue = "" Then
|
||||
If $Sum12020110381202021038TextID = "" Then
|
||||
Var $Sum12020110381202021038TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1112,9 +1124,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020100471202020047 </State>
|
||||
|
|
@ -1137,6 +1150,11 @@
|
|||
If $Sum12020100471202020047TextID != "" Then
|
||||
Var $Sum12020100471202020047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020100471202020047TextValue = "" Then
|
||||
If $Sum12020100471202020047TextID = "" Then
|
||||
Var $Sum12020100471202020047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1465,9 +1483,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101005512010200551201030055 </State>
|
||||
|
|
@ -1490,6 +1509,11 @@
|
|||
If $Sum120101005512010200551201030055TextID != "" Then
|
||||
Var $Sum120101005512010200551201030055TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101005512010200551201030055TextValue = "" Then
|
||||
If $Sum120101005512010200551201030055TextID = "" Then
|
||||
Var $Sum120101005512010200551201030055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1818,9 +1842,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101005512210200551221030055 </State>
|
||||
|
|
@ -1843,6 +1868,11 @@
|
|||
If $Sum122101005512210200551221030055TextID != "" Then
|
||||
Var $Sum122101005512210200551221030055TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101005512210200551221030055TextValue = "" Then
|
||||
If $Sum122101005512210200551221030055TextID = "" Then
|
||||
Var $Sum122101005512210200551221030055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2171,9 +2201,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110401202021040 </State>
|
||||
|
|
@ -2196,6 +2227,11 @@
|
|||
If $Sum12020110401202021040TextID != "" Then
|
||||
Var $Sum12020110401202021040TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110401202021040TextValue = "" Then
|
||||
If $Sum12020110401202021040TextID = "" Then
|
||||
Var $Sum12020110401202021040TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2524,9 +2560,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110391202021039 </State>
|
||||
|
|
@ -2549,6 +2586,11 @@
|
|||
If $Sum12020110391202021039TextID != "" Then
|
||||
Var $Sum12020110391202021039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110391202021039TextValue = "" Then
|
||||
If $Sum12020110391202021039TextID = "" Then
|
||||
Var $Sum12020110391202021039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2873,9 +2915,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050062 </State>
|
||||
|
|
@ -2898,6 +2941,11 @@
|
|||
If $Sum1299050062TextID != "" Then
|
||||
Var $Sum1299050062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050062TextValue = "" Then
|
||||
If $Sum1299050062TextID = "" Then
|
||||
Var $Sum1299050062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3222,9 +3270,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020054 </State>
|
||||
|
|
@ -3247,6 +3296,11 @@
|
|||
If $Sum1202020054TextID != "" Then
|
||||
Var $Sum1202020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020054TextValue = "" Then
|
||||
If $Sum1202020054TextID = "" Then
|
||||
Var $Sum1202020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3571,9 +3625,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020002 </State>
|
||||
|
|
@ -3596,6 +3651,11 @@
|
|||
If $Sum1299020002TextID != "" Then
|
||||
Var $Sum1299020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020002TextValue = "" Then
|
||||
If $Sum1299020002TextID = "" Then
|
||||
Var $Sum1299020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3920,9 +3980,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030045 </State>
|
||||
|
|
@ -3945,6 +4006,11 @@
|
|||
If $Sum1202030045TextID != "" Then
|
||||
Var $Sum1202030045TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030045TextValue = "" Then
|
||||
If $Sum1202030045TextID = "" Then
|
||||
Var $Sum1202030045TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4273,9 +4339,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201002612020200261202030026 </State>
|
||||
|
|
@ -4298,6 +4365,11 @@
|
|||
If $Sum120201002612020200261202030026TextID != "" Then
|
||||
Var $Sum120201002612020200261202030026TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201002612020200261202030026TextValue = "" Then
|
||||
If $Sum120201002612020200261202030026TextID = "" Then
|
||||
Var $Sum120201002612020200261202030026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4626,9 +4698,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110261202021026 </State>
|
||||
|
|
@ -4651,6 +4724,11 @@
|
|||
If $Sum12020110261202021026TextID != "" Then
|
||||
Var $Sum12020110261202021026TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110261202021026TextValue = "" Then
|
||||
If $Sum12020110261202021026TextID = "" Then
|
||||
Var $Sum12020110261202021026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4979,9 +5057,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201002712020200271202030027 </State>
|
||||
|
|
@ -5004,6 +5083,11 @@
|
|||
If $Sum120201002712020200271202030027TextID != "" Then
|
||||
Var $Sum120201002712020200271202030027TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201002712020200271202030027TextValue = "" Then
|
||||
If $Sum120201002712020200271202030027TextID = "" Then
|
||||
Var $Sum120201002712020200271202030027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5332,9 +5416,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110271202021027 </State>
|
||||
|
|
@ -5357,6 +5442,11 @@
|
|||
If $Sum12020110271202021027TextID != "" Then
|
||||
Var $Sum12020110271202021027TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110271202021027TextValue = "" Then
|
||||
If $Sum12020110271202021027TextID = "" Then
|
||||
Var $Sum12020110271202021027TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5685,9 +5775,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201002812020200281202030028 </State>
|
||||
|
|
@ -5710,6 +5801,11 @@
|
|||
If $Sum120201002812020200281202030028TextID != "" Then
|
||||
Var $Sum120201002812020200281202030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201002812020200281202030028TextValue = "" Then
|
||||
If $Sum120201002812020200281202030028TextID = "" Then
|
||||
Var $Sum120201002812020200281202030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6038,9 +6134,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101003112010200311201030031 </State>
|
||||
|
|
@ -6063,6 +6160,11 @@
|
|||
If $Sum120101003112010200311201030031TextID != "" Then
|
||||
Var $Sum120101003112010200311201030031TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101003112010200311201030031TextValue = "" Then
|
||||
If $Sum120101003112010200311201030031TextID = "" Then
|
||||
Var $Sum120101003112010200311201030031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6391,9 +6493,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101003112210200311221030031 </State>
|
||||
|
|
@ -6416,6 +6519,11 @@
|
|||
If $Sum122101003112210200311221030031TextID != "" Then
|
||||
Var $Sum122101003112210200311221030031TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101003112210200311221030031TextValue = "" Then
|
||||
If $Sum122101003112210200311221030031TextID = "" Then
|
||||
Var $Sum122101003112210200311221030031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6740,9 +6848,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020062 </State>
|
||||
|
|
@ -6765,6 +6874,11 @@
|
|||
If $Sum1201020062TextID != "" Then
|
||||
Var $Sum1201020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020062TextValue = "" Then
|
||||
If $Sum1201020062TextID = "" Then
|
||||
Var $Sum1201020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7089,9 +7203,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020062 </State>
|
||||
|
|
@ -7114,6 +7229,11 @@
|
|||
If $Sum1221020062TextID != "" Then
|
||||
Var $Sum1221020062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020062TextValue = "" Then
|
||||
If $Sum1221020062TextID = "" Then
|
||||
Var $Sum1221020062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7438,9 +7558,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020055 </State>
|
||||
|
|
@ -7463,6 +7584,11 @@
|
|||
If $Sum1202020055TextID != "" Then
|
||||
Var $Sum1202020055TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020055TextValue = "" Then
|
||||
If $Sum1202020055TextID = "" Then
|
||||
Var $Sum1202020055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7791,9 +7917,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201003712020200371202030037 </State>
|
||||
|
|
@ -7816,6 +7943,11 @@
|
|||
If $Sum120201003712020200371202030037TextID != "" Then
|
||||
Var $Sum120201003712020200371202030037TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201003712020200371202030037TextValue = "" Then
|
||||
If $Sum120201003712020200371202030037TextID = "" Then
|
||||
Var $Sum120201003712020200371202030037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8144,9 +8276,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020110371202021037 </State>
|
||||
|
|
@ -8169,6 +8302,11 @@
|
|||
If $Sum12020110371202021037TextID != "" Then
|
||||
Var $Sum12020110371202021037TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020110371202021037TextValue = "" Then
|
||||
If $Sum12020110371202021037TextID = "" Then
|
||||
Var $Sum12020110371202021037TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8493,9 +8631,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030043 </State>
|
||||
|
|
@ -8518,6 +8657,11 @@
|
|||
If $Sum1202030043TextID != "" Then
|
||||
Var $Sum1202030043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030043TextValue = "" Then
|
||||
If $Sum1202030043TextID = "" Then
|
||||
Var $Sum1202030043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8842,9 +8986,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050052 </State>
|
||||
|
|
@ -8867,6 +9012,11 @@
|
|||
If $Sum1299050052TextID != "" Then
|
||||
Var $Sum1299050052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050052TextValue = "" Then
|
||||
If $Sum1299050052TextID = "" Then
|
||||
Var $Sum1299050052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9195,9 +9345,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum129901004212990200441299030046 </State>
|
||||
|
|
@ -9220,6 +9371,11 @@
|
|||
If $Sum129901004212990200441299030046TextID != "" Then
|
||||
Var $Sum129901004212990200441299030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum129901004212990200441299030046TextValue = "" Then
|
||||
If $Sum129901004212990200441299030046TextID = "" Then
|
||||
Var $Sum129901004212990200441299030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9548,9 +9704,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum129901004312990200451299030047 </State>
|
||||
|
|
@ -9573,6 +9730,11 @@
|
|||
If $Sum129901004312990200451299030047TextID != "" Then
|
||||
Var $Sum129901004312990200451299030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum129901004312990200451299030047TextValue = "" Then
|
||||
If $Sum129901004312990200451299030047TextID = "" Then
|
||||
Var $Sum129901004312990200451299030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9901,9 +10063,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12990100491299020050 </State>
|
||||
|
|
@ -9926,6 +10089,11 @@
|
|||
If $Sum12990100491299020050TextID != "" Then
|
||||
Var $Sum12990100491299020050TextValue = ""
|
||||
EndIf
|
||||
If $Sum12990100491299020050TextValue = "" Then
|
||||
If $Sum12990100491299020050TextID = "" Then
|
||||
Var $Sum12990100491299020050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10250,9 +10418,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050051 </State>
|
||||
|
|
@ -10275,6 +10444,11 @@
|
|||
If $Sum1299050051TextID != "" Then
|
||||
Var $Sum1299050051TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050051TextValue = "" Then
|
||||
If $Sum1299050051TextID = "" Then
|
||||
Var $Sum1299050051TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -405,9 +405,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120301002212030200221203030022 </State>
|
||||
|
|
@ -430,6 +431,11 @@
|
|||
If $Sum120301002212030200221203030022TextID != "" Then
|
||||
Var $Sum120301002212030200221203030022TextValue = ""
|
||||
EndIf
|
||||
If $Sum120301002212030200221203030022TextValue = "" Then
|
||||
If $Sum120301002212030200221203030022TextID = "" Then
|
||||
Var $Sum120301002212030200221203030022TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -758,9 +764,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010100391201020039 </State>
|
||||
|
|
@ -783,6 +790,11 @@
|
|||
If $Sum12010100391201020039TextID != "" Then
|
||||
Var $Sum12010100391201020039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010100391201020039TextValue = "" Then
|
||||
If $Sum12010100391201020039TextID = "" Then
|
||||
Var $Sum12010100391201020039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1111,9 +1123,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12210100391221020039 </State>
|
||||
|
|
@ -1136,6 +1149,11 @@
|
|||
If $Sum12210100391221020039TextID != "" Then
|
||||
Var $Sum12210100391221020039TextValue = ""
|
||||
EndIf
|
||||
If $Sum12210100391221020039TextValue = "" Then
|
||||
If $Sum12210100391221020039TextID = "" Then
|
||||
Var $Sum12210100391221020039TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1460,9 +1478,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030028 </State>
|
||||
|
|
@ -1485,6 +1504,11 @@
|
|||
If $Sum1203030028TextID != "" Then
|
||||
Var $Sum1203030028TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030028TextValue = "" Then
|
||||
If $Sum1203030028TextID = "" Then
|
||||
Var $Sum1203030028TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1809,9 +1833,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020044 </State>
|
||||
|
|
@ -1834,6 +1859,11 @@
|
|||
If $Sum1205020044TextID != "" Then
|
||||
Var $Sum1205020044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020044TextValue = "" Then
|
||||
If $Sum1205020044TextID = "" Then
|
||||
Var $Sum1205020044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2158,9 +2188,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200471205030047 </State>
|
||||
|
|
@ -2183,6 +2214,11 @@
|
|||
If $Sum12050200471205030047TextID != "" Then
|
||||
Var $Sum12050200471205030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200471205030047TextValue = "" Then
|
||||
If $Sum12050200471205030047TextID = "" Then
|
||||
Var $Sum12050200471205030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2507,9 +2543,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050201051205030105 </State>
|
||||
|
|
@ -2532,6 +2569,11 @@
|
|||
If $Sum12050201051205030105TextID != "" Then
|
||||
Var $Sum12050201051205030105TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050201051205030105TextValue = "" Then
|
||||
If $Sum12050201051205030105TextID = "" Then
|
||||
Var $Sum12050201051205030105TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2856,9 +2898,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020011 </State>
|
||||
|
|
@ -2881,6 +2924,11 @@
|
|||
If $Sum1299020011TextID != "" Then
|
||||
Var $Sum1299020011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020011TextValue = "" Then
|
||||
If $Sum1299020011TextID = "" Then
|
||||
Var $Sum1299020011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3205,9 +3253,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020013 </State>
|
||||
|
|
@ -3230,6 +3279,11 @@
|
|||
If $Sum1299020013TextID != "" Then
|
||||
Var $Sum1299020013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020013TextValue = "" Then
|
||||
If $Sum1299020013TextID = "" Then
|
||||
Var $Sum1299020013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3554,9 +3608,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020014 </State>
|
||||
|
|
@ -3579,6 +3634,11 @@
|
|||
If $Sum1299020014TextID != "" Then
|
||||
Var $Sum1299020014TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020014TextValue = "" Then
|
||||
If $Sum1299020014TextID = "" Then
|
||||
Var $Sum1299020014TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3903,9 +3963,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020015 </State>
|
||||
|
|
@ -3928,6 +3989,11 @@
|
|||
If $Sum1299020015TextID != "" Then
|
||||
Var $Sum1299020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020015TextValue = "" Then
|
||||
If $Sum1299020015TextID = "" Then
|
||||
Var $Sum1299020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4252,9 +4318,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020016 </State>
|
||||
|
|
@ -4277,6 +4344,11 @@
|
|||
If $Sum1299020016TextID != "" Then
|
||||
Var $Sum1299020016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020016TextValue = "" Then
|
||||
If $Sum1299020016TextID = "" Then
|
||||
Var $Sum1299020016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4601,9 +4673,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299020018 </State>
|
||||
|
|
@ -4626,6 +4699,11 @@
|
|||
If $Sum1299020018TextID != "" Then
|
||||
Var $Sum1299020018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299020018TextValue = "" Then
|
||||
If $Sum1299020018TextID = "" Then
|
||||
Var $Sum1299020018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4950,9 +5028,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030016 </State>
|
||||
|
|
@ -4975,6 +5054,11 @@
|
|||
If $Sum1299030016TextID != "" Then
|
||||
Var $Sum1299030016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030016TextValue = "" Then
|
||||
If $Sum1299030016TextID = "" Then
|
||||
Var $Sum1299030016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5299,9 +5383,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -5324,6 +5409,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201030078 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1201030078TextID != "" Then
|
||||
Var $Sum1201030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201030078TextValue = "" Then
|
||||
If $Sum1201030078TextID = "" Then
|
||||
Var $Sum1201030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221030078 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1221030078TextID != "" Then
|
||||
Var $Sum1221030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221030078TextValue = "" Then
|
||||
If $Sum1221030078TextID = "" Then
|
||||
Var $Sum1221030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030057 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1202030057TextID != "" Then
|
||||
Var $Sum1202030057TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030057TextValue = "" Then
|
||||
If $Sum1202030057TextID = "" Then
|
||||
Var $Sum1202030057TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030058 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1202030058TextID != "" Then
|
||||
Var $Sum1202030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030058TextValue = "" Then
|
||||
If $Sum1202030058TextID = "" Then
|
||||
Var $Sum1202030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030058 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1203030058TextID != "" Then
|
||||
Var $Sum1203030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030058TextValue = "" Then
|
||||
If $Sum1203030058TextID = "" Then
|
||||
Var $Sum1203030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030011 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1203030011TextID != "" Then
|
||||
Var $Sum1203030011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030011TextValue = "" Then
|
||||
If $Sum1203030011TextID = "" Then
|
||||
Var $Sum1203030011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030059 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1203030059TextID != "" Then
|
||||
Var $Sum1203030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030059TextValue = "" Then
|
||||
If $Sum1203030059TextID = "" Then
|
||||
Var $Sum1203030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202030062 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1202030062TextID != "" Then
|
||||
Var $Sum1202030062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202030062TextValue = "" Then
|
||||
If $Sum1202030062TextID = "" Then
|
||||
Var $Sum1202030062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030004 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1203030004TextID != "" Then
|
||||
Var $Sum1203030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030004TextValue = "" Then
|
||||
If $Sum1203030004TextID = "" Then
|
||||
Var $Sum1203030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030010 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1203030010TextID != "" Then
|
||||
Var $Sum1203030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030010TextValue = "" Then
|
||||
If $Sum1203030010TextID = "" Then
|
||||
Var $Sum1203030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030032 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1203030032TextID != "" Then
|
||||
Var $Sum1203030032TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030032TextValue = "" Then
|
||||
If $Sum1203030032TextID = "" Then
|
||||
Var $Sum1203030032TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030067 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1203030067TextID != "" Then
|
||||
Var $Sum1203030067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030067TextValue = "" Then
|
||||
If $Sum1203030067TextID = "" Then
|
||||
Var $Sum1203030067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203030065 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1203030065TextID != "" Then
|
||||
Var $Sum1203030065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203030065TextValue = "" Then
|
||||
If $Sum1203030065TextID = "" Then
|
||||
Var $Sum1203030065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020041 </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $Sum1201020041TextID != "" Then
|
||||
Var $Sum1201020041TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020041TextValue = "" Then
|
||||
If $Sum1201020041TextID = "" Then
|
||||
Var $Sum1201020041TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5290,9 +5374,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1221020041 </State>
|
||||
|
|
@ -5315,6 +5400,11 @@
|
|||
If $Sum1221020041TextID != "" Then
|
||||
Var $Sum1221020041TextValue = ""
|
||||
EndIf
|
||||
If $Sum1221020041TextValue = "" Then
|
||||
If $Sum1221020041TextID = "" Then
|
||||
Var $Sum1221020041TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5639,9 +5729,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205030127 </State>
|
||||
|
|
@ -5664,6 +5755,11 @@
|
|||
If $Sum1205030127TextID != "" Then
|
||||
Var $Sum1205030127TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205030127TextValue = "" Then
|
||||
If $Sum1205030127TextID = "" Then
|
||||
Var $Sum1205030127TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030074 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1299030074TextID != "" Then
|
||||
Var $Sum1299030074TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030074TextValue = "" Then
|
||||
If $Sum1299030074TextID = "" Then
|
||||
Var $Sum1299030074TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030075 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1299030075TextID != "" Then
|
||||
Var $Sum1299030075TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030075TextValue = "" Then
|
||||
If $Sum1299030075TextID = "" Then
|
||||
Var $Sum1299030075TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030076 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1299030076TextID != "" Then
|
||||
Var $Sum1299030076TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030076TextValue = "" Then
|
||||
If $Sum1299030076TextID = "" Then
|
||||
Var $Sum1299030076TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030077 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1299030077TextID != "" Then
|
||||
Var $Sum1299030077TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030077TextValue = "" Then
|
||||
If $Sum1299030077TextID = "" Then
|
||||
Var $Sum1299030077TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030058 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1299030058TextID != "" Then
|
||||
Var $Sum1299030058TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030058TextValue = "" Then
|
||||
If $Sum1299030058TextID = "" Then
|
||||
Var $Sum1299030058TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030011 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1299030011TextID != "" Then
|
||||
Var $Sum1299030011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030011TextValue = "" Then
|
||||
If $Sum1299030011TextID = "" Then
|
||||
Var $Sum1299030011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030059 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1299030059TextID != "" Then
|
||||
Var $Sum1299030059TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030059TextValue = "" Then
|
||||
If $Sum1299030059TextID = "" Then
|
||||
Var $Sum1299030059TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2847,9 +2889,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030062 </State>
|
||||
|
|
@ -2872,6 +2915,11 @@
|
|||
If $Sum1299030062TextID != "" Then
|
||||
Var $Sum1299030062TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030062TextValue = "" Then
|
||||
If $Sum1299030062TextID = "" Then
|
||||
Var $Sum1299030062TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3196,9 +3244,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030004 </State>
|
||||
|
|
@ -3221,6 +3270,11 @@
|
|||
If $Sum1299030004TextID != "" Then
|
||||
Var $Sum1299030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030004TextValue = "" Then
|
||||
If $Sum1299030004TextID = "" Then
|
||||
Var $Sum1299030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3545,9 +3599,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030010 </State>
|
||||
|
|
@ -3570,6 +3625,11 @@
|
|||
If $Sum1299030010TextID != "" Then
|
||||
Var $Sum1299030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030010TextValue = "" Then
|
||||
If $Sum1299030010TextID = "" Then
|
||||
Var $Sum1299030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3894,9 +3954,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030032 </State>
|
||||
|
|
@ -3919,6 +3980,11 @@
|
|||
If $Sum1299030032TextID != "" Then
|
||||
Var $Sum1299030032TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030032TextValue = "" Then
|
||||
If $Sum1299030032TextID = "" Then
|
||||
Var $Sum1299030032TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4243,9 +4309,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030067 </State>
|
||||
|
|
@ -4268,6 +4335,11 @@
|
|||
If $Sum1299030067TextID != "" Then
|
||||
Var $Sum1299030067TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030067TextValue = "" Then
|
||||
If $Sum1299030067TextID = "" Then
|
||||
Var $Sum1299030067TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4592,9 +4664,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030065 </State>
|
||||
|
|
@ -4617,6 +4690,11 @@
|
|||
If $Sum1299030065TextID != "" Then
|
||||
Var $Sum1299030065TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030065TextValue = "" Then
|
||||
If $Sum1299030065TextID = "" Then
|
||||
Var $Sum1299030065TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4941,9 +5019,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030078 </State>
|
||||
|
|
@ -4966,6 +5045,11 @@
|
|||
If $Sum1299030078TextID != "" Then
|
||||
Var $Sum1299030078TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030078TextValue = "" Then
|
||||
If $Sum1299030078TextID = "" Then
|
||||
Var $Sum1299030078TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5290,9 +5374,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030079 </State>
|
||||
|
|
@ -5315,6 +5400,11 @@
|
|||
If $Sum1299030079TextID != "" Then
|
||||
Var $Sum1299030079TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030079TextValue = "" Then
|
||||
If $Sum1299030079TextID = "" Then
|
||||
Var $Sum1299030079TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5639,9 +5729,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030127 </State>
|
||||
|
|
@ -5664,6 +5755,11 @@
|
|||
If $Sum1299030127TextID != "" Then
|
||||
Var $Sum1299030127TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030127TextValue = "" Then
|
||||
If $Sum1299030127TextID = "" Then
|
||||
Var $Sum1299030127TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -403,9 +403,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030001 </State>
|
||||
|
|
@ -428,6 +429,11 @@
|
|||
If $Sum1241030001TextID != "" Then
|
||||
Var $Sum1241030001TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030001TextValue = "" Then
|
||||
If $Sum1241030001TextID = "" Then
|
||||
Var $Sum1241030001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -752,9 +758,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030002 </State>
|
||||
|
|
@ -777,6 +784,11 @@
|
|||
If $Sum1241030002TextID != "" Then
|
||||
Var $Sum1241030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030002TextValue = "" Then
|
||||
If $Sum1241030002TextID = "" Then
|
||||
Var $Sum1241030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1101,9 +1113,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030003 </State>
|
||||
|
|
@ -1126,6 +1139,11 @@
|
|||
If $Sum1241030003TextID != "" Then
|
||||
Var $Sum1241030003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030003TextValue = "" Then
|
||||
If $Sum1241030003TextID = "" Then
|
||||
Var $Sum1241030003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1450,9 +1468,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030004 </State>
|
||||
|
|
@ -1475,6 +1494,11 @@
|
|||
If $Sum1241030004TextID != "" Then
|
||||
Var $Sum1241030004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030004TextValue = "" Then
|
||||
If $Sum1241030004TextID = "" Then
|
||||
Var $Sum1241030004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1799,9 +1823,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030005 </State>
|
||||
|
|
@ -1824,6 +1849,11 @@
|
|||
If $Sum1241030005TextID != "" Then
|
||||
Var $Sum1241030005TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030005TextValue = "" Then
|
||||
If $Sum1241030005TextID = "" Then
|
||||
Var $Sum1241030005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2148,9 +2178,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030006 </State>
|
||||
|
|
@ -2173,6 +2204,11 @@
|
|||
If $Sum1241030006TextID != "" Then
|
||||
Var $Sum1241030006TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030006TextValue = "" Then
|
||||
If $Sum1241030006TextID = "" Then
|
||||
Var $Sum1241030006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2497,9 +2533,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030007 </State>
|
||||
|
|
@ -2522,6 +2559,11 @@
|
|||
If $Sum1241030007TextID != "" Then
|
||||
Var $Sum1241030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030007TextValue = "" Then
|
||||
If $Sum1241030007TextID = "" Then
|
||||
Var $Sum1241030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2846,9 +2888,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030008 </State>
|
||||
|
|
@ -2871,6 +2914,11 @@
|
|||
If $Sum1241030008TextID != "" Then
|
||||
Var $Sum1241030008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030008TextValue = "" Then
|
||||
If $Sum1241030008TextID = "" Then
|
||||
Var $Sum1241030008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3195,9 +3243,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030009 </State>
|
||||
|
|
@ -3220,6 +3269,11 @@
|
|||
If $Sum1241030009TextID != "" Then
|
||||
Var $Sum1241030009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030009TextValue = "" Then
|
||||
If $Sum1241030009TextID = "" Then
|
||||
Var $Sum1241030009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3544,9 +3598,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030010 </State>
|
||||
|
|
@ -3569,6 +3624,11 @@
|
|||
If $Sum1241030010TextID != "" Then
|
||||
Var $Sum1241030010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030010TextValue = "" Then
|
||||
If $Sum1241030010TextID = "" Then
|
||||
Var $Sum1241030010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3893,9 +3953,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030011 </State>
|
||||
|
|
@ -3918,6 +3979,11 @@
|
|||
If $Sum1241030011TextID != "" Then
|
||||
Var $Sum1241030011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030011TextValue = "" Then
|
||||
If $Sum1241030011TextID = "" Then
|
||||
Var $Sum1241030011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4242,9 +4308,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030012 </State>
|
||||
|
|
@ -4267,6 +4334,11 @@
|
|||
If $Sum1241030012TextID != "" Then
|
||||
Var $Sum1241030012TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030012TextValue = "" Then
|
||||
If $Sum1241030012TextID = "" Then
|
||||
Var $Sum1241030012TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4591,9 +4663,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030013 </State>
|
||||
|
|
@ -4616,6 +4689,11 @@
|
|||
If $Sum1241030013TextID != "" Then
|
||||
Var $Sum1241030013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030013TextValue = "" Then
|
||||
If $Sum1241030013TextID = "" Then
|
||||
Var $Sum1241030013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4940,9 +5018,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030016 </State>
|
||||
|
|
@ -4965,6 +5044,11 @@
|
|||
If $Sum1241030016TextID != "" Then
|
||||
Var $Sum1241030016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030016TextValue = "" Then
|
||||
If $Sum1241030016TextID = "" Then
|
||||
Var $Sum1241030016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5289,9 +5373,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030018 </State>
|
||||
|
|
@ -5314,6 +5399,11 @@
|
|||
If $Sum1241030018TextID != "" Then
|
||||
Var $Sum1241030018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030018TextValue = "" Then
|
||||
If $Sum1241030018TextID = "" Then
|
||||
Var $Sum1241030018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5638,9 +5728,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030021 </State>
|
||||
|
|
@ -5663,6 +5754,11 @@
|
|||
If $Sum1241030021TextID != "" Then
|
||||
Var $Sum1241030021TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030021TextValue = "" Then
|
||||
If $Sum1241030021TextID = "" Then
|
||||
Var $Sum1241030021TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5987,9 +6083,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030022 </State>
|
||||
|
|
@ -6012,6 +6109,11 @@
|
|||
If $Sum1241030022TextID != "" Then
|
||||
Var $Sum1241030022TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030022TextValue = "" Then
|
||||
If $Sum1241030022TextID = "" Then
|
||||
Var $Sum1241030022TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6336,9 +6438,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030023 </State>
|
||||
|
|
@ -6361,6 +6464,11 @@
|
|||
If $Sum1241030023TextID != "" Then
|
||||
Var $Sum1241030023TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030023TextValue = "" Then
|
||||
If $Sum1241030023TextID = "" Then
|
||||
Var $Sum1241030023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6685,9 +6793,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1241030029 </State>
|
||||
|
|
@ -6710,6 +6819,11 @@
|
|||
If $Sum1241030029TextID != "" Then
|
||||
Var $Sum1241030029TextValue = ""
|
||||
EndIf
|
||||
If $Sum1241030029TextValue = "" Then
|
||||
If $Sum1241030029TextID = "" Then
|
||||
Var $Sum1241030029TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -404,9 +404,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020053 </State>
|
||||
|
|
@ -429,6 +430,11 @@
|
|||
If $Sum1201020053TextID != "" Then
|
||||
Var $Sum1201020053TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020053TextValue = "" Then
|
||||
If $Sum1201020053TextID = "" Then
|
||||
Var $Sum1201020053TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -753,9 +759,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1201020054 </State>
|
||||
|
|
@ -778,6 +785,11 @@
|
|||
If $Sum1201020054TextID != "" Then
|
||||
Var $Sum1201020054TextValue = ""
|
||||
EndIf
|
||||
If $Sum1201020054TextValue = "" Then
|
||||
If $Sum1201020054TextID = "" Then
|
||||
Var $Sum1201020054TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1102,9 +1114,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020026 </State>
|
||||
|
|
@ -1127,6 +1140,11 @@
|
|||
If $Sum1203020026TextID != "" Then
|
||||
Var $Sum1203020026TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020026TextValue = "" Then
|
||||
If $Sum1203020026TextID = "" Then
|
||||
Var $Sum1203020026TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1451,9 +1469,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020043 </State>
|
||||
|
|
@ -1476,6 +1495,11 @@
|
|||
If $Sum1202020043TextID != "" Then
|
||||
Var $Sum1202020043TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020043TextValue = "" Then
|
||||
If $Sum1202020043TextID = "" Then
|
||||
Var $Sum1202020043TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1800,9 +1824,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1202020044 </State>
|
||||
|
|
@ -1825,6 +1850,11 @@
|
|||
If $Sum1202020044TextID != "" Then
|
||||
Var $Sum1202020044TextValue = ""
|
||||
EndIf
|
||||
If $Sum1202020044TextValue = "" Then
|
||||
If $Sum1202020044TextID = "" Then
|
||||
Var $Sum1202020044TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2149,9 +2179,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020055 </State>
|
||||
|
|
@ -2174,6 +2205,11 @@
|
|||
If $Sum1205020055TextID != "" Then
|
||||
Var $Sum1205020055TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020055TextValue = "" Then
|
||||
If $Sum1205020055TextID = "" Then
|
||||
Var $Sum1205020055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2498,9 +2534,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020056 </State>
|
||||
|
|
@ -2523,6 +2560,11 @@
|
|||
If $Sum1205020056TextID != "" Then
|
||||
Var $Sum1205020056TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020056TextValue = "" Then
|
||||
If $Sum1205020056TextID = "" Then
|
||||
Var $Sum1205020056TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -603,9 +603,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020001 </State>
|
||||
|
|
@ -628,6 +629,11 @@
|
|||
If $Sum1204020001TextID != "" Then
|
||||
Var $Sum1204020001TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020001TextValue = "" Then
|
||||
If $Sum1204020001TextID = "" Then
|
||||
Var $Sum1204020001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -952,9 +958,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020016 </State>
|
||||
|
|
@ -977,6 +984,11 @@
|
|||
If $Sum1204020016TextID != "" Then
|
||||
Var $Sum1204020016TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020016TextValue = "" Then
|
||||
If $Sum1204020016TextID = "" Then
|
||||
Var $Sum1204020016TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1301,9 +1313,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020002 </State>
|
||||
|
|
@ -1326,6 +1339,11 @@
|
|||
If $Sum1204020002TextID != "" Then
|
||||
Var $Sum1204020002TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020002TextValue = "" Then
|
||||
If $Sum1204020002TextID = "" Then
|
||||
Var $Sum1204020002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1650,9 +1668,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020003 </State>
|
||||
|
|
@ -1675,6 +1694,11 @@
|
|||
If $Sum1204020003TextID != "" Then
|
||||
Var $Sum1204020003TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020003TextValue = "" Then
|
||||
If $Sum1204020003TextID = "" Then
|
||||
Var $Sum1204020003TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1999,9 +2023,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020013 </State>
|
||||
|
|
@ -2024,6 +2049,11 @@
|
|||
If $Sum1204020013TextID != "" Then
|
||||
Var $Sum1204020013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020013TextValue = "" Then
|
||||
If $Sum1204020013TextID = "" Then
|
||||
Var $Sum1204020013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2348,9 +2378,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020018 </State>
|
||||
|
|
@ -2373,6 +2404,11 @@
|
|||
If $Sum1204020018TextID != "" Then
|
||||
Var $Sum1204020018TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020018TextValue = "" Then
|
||||
If $Sum1204020018TextID = "" Then
|
||||
Var $Sum1204020018TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2697,9 +2733,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020004 </State>
|
||||
|
|
@ -2722,6 +2759,11 @@
|
|||
If $Sum1204020004TextID != "" Then
|
||||
Var $Sum1204020004TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020004TextValue = "" Then
|
||||
If $Sum1204020004TextID = "" Then
|
||||
Var $Sum1204020004TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3046,9 +3088,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020005 </State>
|
||||
|
|
@ -3071,6 +3114,11 @@
|
|||
If $Sum1204020005TextID != "" Then
|
||||
Var $Sum1204020005TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020005TextValue = "" Then
|
||||
If $Sum1204020005TextID = "" Then
|
||||
Var $Sum1204020005TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3395,9 +3443,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020015 </State>
|
||||
|
|
@ -3420,6 +3469,11 @@
|
|||
If $Sum1204020015TextID != "" Then
|
||||
Var $Sum1204020015TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020015TextValue = "" Then
|
||||
If $Sum1204020015TextID = "" Then
|
||||
Var $Sum1204020015TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3744,9 +3798,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020055 </State>
|
||||
|
|
@ -3769,6 +3824,11 @@
|
|||
If $Sum1204020055TextID != "" Then
|
||||
Var $Sum1204020055TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020055TextValue = "" Then
|
||||
If $Sum1204020055TextID = "" Then
|
||||
Var $Sum1204020055TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4093,9 +4153,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020006 </State>
|
||||
|
|
@ -4118,6 +4179,11 @@
|
|||
If $Sum1204020006TextID != "" Then
|
||||
Var $Sum1204020006TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020006TextValue = "" Then
|
||||
If $Sum1204020006TextID = "" Then
|
||||
Var $Sum1204020006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4442,9 +4508,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020008 </State>
|
||||
|
|
@ -4467,6 +4534,11 @@
|
|||
If $Sum1204020008TextID != "" Then
|
||||
Var $Sum1204020008TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020008TextValue = "" Then
|
||||
If $Sum1204020008TextID = "" Then
|
||||
Var $Sum1204020008TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4791,9 +4863,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020017 </State>
|
||||
|
|
@ -4816,6 +4889,11 @@
|
|||
If $Sum1204020017TextID != "" Then
|
||||
Var $Sum1204020017TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020017TextValue = "" Then
|
||||
If $Sum1204020017TextID = "" Then
|
||||
Var $Sum1204020017TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5140,9 +5218,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020009 </State>
|
||||
|
|
@ -5165,6 +5244,11 @@
|
|||
If $Sum1204020009TextID != "" Then
|
||||
Var $Sum1204020009TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020009TextValue = "" Then
|
||||
If $Sum1204020009TextID = "" Then
|
||||
Var $Sum1204020009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5489,9 +5573,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020010 </State>
|
||||
|
|
@ -5514,6 +5599,11 @@
|
|||
If $Sum1204020010TextID != "" Then
|
||||
Var $Sum1204020010TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020010TextValue = "" Then
|
||||
If $Sum1204020010TextID = "" Then
|
||||
Var $Sum1204020010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5838,9 +5928,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020011 </State>
|
||||
|
|
@ -5863,6 +5954,11 @@
|
|||
If $Sum1204020011TextID != "" Then
|
||||
Var $Sum1204020011TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020011TextValue = "" Then
|
||||
If $Sum1204020011TextID = "" Then
|
||||
Var $Sum1204020011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -354,9 +354,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum129901004212990200441299030046 </State>
|
||||
|
|
@ -379,6 +380,11 @@
|
|||
If $Sum129901004212990200441299030046TextID != "" Then
|
||||
Var $Sum129901004212990200441299030046TextValue = ""
|
||||
EndIf
|
||||
If $Sum129901004212990200441299030046TextValue = "" Then
|
||||
If $Sum129901004212990200441299030046TextID = "" Then
|
||||
Var $Sum129901004212990200441299030046TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -707,9 +713,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum129901004312990200451299030047 </State>
|
||||
|
|
@ -732,6 +739,11 @@
|
|||
If $Sum129901004312990200451299030047TextID != "" Then
|
||||
Var $Sum129901004312990200451299030047TextValue = ""
|
||||
EndIf
|
||||
If $Sum129901004312990200451299030047TextValue = "" Then
|
||||
If $Sum129901004312990200451299030047TextID = "" Then
|
||||
Var $Sum129901004312990200451299030047TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1056,9 +1068,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299030048 </State>
|
||||
|
|
@ -1081,6 +1094,11 @@
|
|||
If $Sum1299030048TextID != "" Then
|
||||
Var $Sum1299030048TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299030048TextValue = "" Then
|
||||
If $Sum1299030048TextID = "" Then
|
||||
Var $Sum1299030048TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1409,9 +1427,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12990100491299020050 </State>
|
||||
|
|
@ -1434,6 +1453,11 @@
|
|||
If $Sum12990100491299020050TextID != "" Then
|
||||
Var $Sum12990100491299020050TextValue = ""
|
||||
EndIf
|
||||
If $Sum12990100491299020050TextValue = "" Then
|
||||
If $Sum12990100491299020050TextID = "" Then
|
||||
Var $Sum12990100491299020050TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1758,9 +1782,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050051 </State>
|
||||
|
|
@ -1783,6 +1808,11 @@
|
|||
If $Sum1299050051TextID != "" Then
|
||||
Var $Sum1299050051TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050051TextValue = "" Then
|
||||
If $Sum1299050051TextID = "" Then
|
||||
Var $Sum1299050051TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2107,9 +2137,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050052 </State>
|
||||
|
|
@ -2132,6 +2163,11 @@
|
|||
If $Sum1299050052TextID != "" Then
|
||||
Var $Sum1299050052TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050052TextValue = "" Then
|
||||
If $Sum1299050052TextID = "" Then
|
||||
Var $Sum1299050052TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,13 @@
|
|||
|
||||
OpenInst 0 "/mnt/sdcard/coffeevending/taobin_project/xml/page_main_blank.xml"
|
||||
|
||||
|
||||
Var ButtonLanguageCurrentXPosition = 1005
|
||||
Var ButtonLanguageCurrentYPosition = 458 - 38
|
||||
|
||||
Var ButtonLanguageListXPosition = 970
|
||||
Var ButtonLanguageListYPosition = 450 - 38
|
||||
|
||||
|
||||
Var Timeout = 0
|
||||
|
||||
</EventOpen>
|
||||
|
|
|
|||
|
|
@ -408,9 +408,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1203020007 </State>
|
||||
|
|
@ -433,6 +434,11 @@
|
|||
If $Sum1203020007TextID != "" Then
|
||||
Var $Sum1203020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1203020007TextValue = "" Then
|
||||
If $Sum1203020007TextID = "" Then
|
||||
Var $Sum1203020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -757,9 +763,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -782,6 +789,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1110,9 +1122,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020012 </State>
|
||||
|
|
@ -1135,6 +1148,11 @@
|
|||
If $Sum1204020012TextID != "" Then
|
||||
Var $Sum1204020012TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020012TextValue = "" Then
|
||||
If $Sum1204020012TextID = "" Then
|
||||
Var $Sum1204020012TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1459,9 +1477,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -1484,6 +1503,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -1812,9 +1836,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020030 </State>
|
||||
|
|
@ -1837,6 +1862,11 @@
|
|||
If $Sum1205020030TextID != "" Then
|
||||
Var $Sum1205020030TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020030TextValue = "" Then
|
||||
If $Sum1205020030TextID = "" Then
|
||||
Var $Sum1205020030TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2161,9 +2191,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -2186,6 +2217,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2514,9 +2550,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020031 </State>
|
||||
|
|
@ -2539,6 +2576,11 @@
|
|||
If $Sum1205020031TextID != "" Then
|
||||
Var $Sum1205020031TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020031TextValue = "" Then
|
||||
If $Sum1205020031TextID = "" Then
|
||||
Var $Sum1205020031TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -2863,9 +2905,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -2888,6 +2931,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3216,9 +3264,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020023 </State>
|
||||
|
|
@ -3241,6 +3290,11 @@
|
|||
If $Sum1205020023TextID != "" Then
|
||||
Var $Sum1205020023TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020023TextValue = "" Then
|
||||
If $Sum1205020023TextID = "" Then
|
||||
Var $Sum1205020023TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3565,9 +3619,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -3590,6 +3645,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -3918,9 +3978,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020013 </State>
|
||||
|
|
@ -3943,6 +4004,11 @@
|
|||
If $Sum1205020013TextID != "" Then
|
||||
Var $Sum1205020013TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020013TextValue = "" Then
|
||||
If $Sum1205020013TextID = "" Then
|
||||
Var $Sum1205020013TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4267,9 +4333,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4292,6 +4359,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4620,9 +4692,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1205020006 </State>
|
||||
|
|
@ -4645,6 +4718,11 @@
|
|||
If $Sum1205020006TextID != "" Then
|
||||
Var $Sum1205020006TextValue = ""
|
||||
EndIf
|
||||
If $Sum1205020006TextValue = "" Then
|
||||
If $Sum1205020006TextID = "" Then
|
||||
Var $Sum1205020006TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -4969,9 +5047,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -4994,6 +5073,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5322,9 +5406,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12020200101202010010 </State>
|
||||
|
|
@ -5347,6 +5432,11 @@
|
|||
If $Sum12020200101202010010TextID != "" Then
|
||||
Var $Sum12020200101202010010TextValue = ""
|
||||
EndIf
|
||||
If $Sum12020200101202010010TextValue = "" Then
|
||||
If $Sum12020200101202010010TextID = "" Then
|
||||
Var $Sum12020200101202010010TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -5671,9 +5761,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -5696,6 +5787,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6020,9 +6116,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200211205030021 </State>
|
||||
|
|
@ -6045,6 +6142,11 @@
|
|||
If $Sum12050200211205030021TextID != "" Then
|
||||
Var $Sum12050200211205030021TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200211205030021TextValue = "" Then
|
||||
If $Sum12050200211205030021TextID = "" Then
|
||||
Var $Sum12050200211205030021TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6369,9 +6471,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -6394,6 +6497,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -6718,9 +6826,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200191205030019 </State>
|
||||
|
|
@ -6743,6 +6852,11 @@
|
|||
If $Sum12050200191205030019TextID != "" Then
|
||||
Var $Sum12050200191205030019TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200191205030019TextValue = "" Then
|
||||
If $Sum12050200191205030019TextID = "" Then
|
||||
Var $Sum12050200191205030019TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7067,9 +7181,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -7092,6 +7207,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7416,9 +7536,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200201205030020 </State>
|
||||
|
|
@ -7441,6 +7562,11 @@
|
|||
If $Sum12050200201205030020TextID != "" Then
|
||||
Var $Sum12050200201205030020TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200201205030020TextValue = "" Then
|
||||
If $Sum12050200201205030020TextID = "" Then
|
||||
Var $Sum12050200201205030020TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -7765,9 +7891,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -7790,6 +7917,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8118,9 +8250,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120101001012010200071201030007 </State>
|
||||
|
|
@ -8143,6 +8276,11 @@
|
|||
If $Sum120101001012010200071201030007TextID != "" Then
|
||||
Var $Sum120101001012010200071201030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum120101001012010200071201030007TextValue = "" Then
|
||||
If $Sum120101001012010200071201030007TextID = "" Then
|
||||
Var $Sum120101001012010200071201030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8471,9 +8609,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum122101001012210200071221030007 </State>
|
||||
|
|
@ -8496,6 +8635,11 @@
|
|||
If $Sum122101001012210200071221030007TextID != "" Then
|
||||
Var $Sum122101001012210200071221030007TextValue = ""
|
||||
EndIf
|
||||
If $Sum122101001012210200071221030007TextValue = "" Then
|
||||
If $Sum122101001012210200071221030007TextID = "" Then
|
||||
Var $Sum122101001012210200071221030007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -8824,9 +8968,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12010100121201020009 </State>
|
||||
|
|
@ -8849,6 +8994,11 @@
|
|||
If $Sum12010100121201020009TextID != "" Then
|
||||
Var $Sum12010100121201020009TextValue = ""
|
||||
EndIf
|
||||
If $Sum12010100121201020009TextValue = "" Then
|
||||
If $Sum12010100121201020009TextID = "" Then
|
||||
Var $Sum12010100121201020009TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9173,9 +9323,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum12050200111205030011 </State>
|
||||
|
|
@ -9198,6 +9349,11 @@
|
|||
If $Sum12050200111205030011TextID != "" Then
|
||||
Var $Sum12050200111205030011TextValue = ""
|
||||
EndIf
|
||||
If $Sum12050200111205030011TextValue = "" Then
|
||||
If $Sum12050200111205030011TextID = "" Then
|
||||
Var $Sum12050200111205030011TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9522,9 +9678,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -9547,6 +9704,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -9875,9 +10037,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201000212020200021202030002 </State>
|
||||
|
|
@ -9900,6 +10063,11 @@
|
|||
If $Sum120201000212020200021202030002TextID != "" Then
|
||||
Var $Sum120201000212020200021202030002TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201000212020200021202030002TextValue = "" Then
|
||||
If $Sum120201000212020200021202030002TextID = "" Then
|
||||
Var $Sum120201000212020200021202030002TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10224,9 +10392,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -10249,6 +10418,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10577,9 +10751,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201000112020200011202030001 </State>
|
||||
|
|
@ -10602,6 +10777,11 @@
|
|||
If $Sum120201000112020200011202030001TextID != "" Then
|
||||
Var $Sum120201000112020200011202030001TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201000112020200011202030001TextValue = "" Then
|
||||
If $Sum120201000112020200011202030001TextID = "" Then
|
||||
Var $Sum120201000112020200011202030001TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -10926,9 +11106,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -10951,6 +11132,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11279,9 +11465,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum120201003612020200361202030036 </State>
|
||||
|
|
@ -11304,6 +11491,11 @@
|
|||
If $Sum120201003612020200361202030036TextID != "" Then
|
||||
Var $Sum120201003612020200361202030036TextValue = ""
|
||||
EndIf
|
||||
If $Sum120201003612020200361202030036TextValue = "" Then
|
||||
If $Sum120201003612020200361202030036TextID = "" Then
|
||||
Var $Sum120201003612020200361202030036TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11628,9 +11820,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -11653,6 +11846,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -11977,9 +12175,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020007 </State>
|
||||
|
|
@ -12002,6 +12201,11 @@
|
|||
If $Sum1204020007TextID != "" Then
|
||||
Var $Sum1204020007TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020007TextValue = "" Then
|
||||
If $Sum1204020007TextID = "" Then
|
||||
Var $Sum1204020007TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12326,9 +12530,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum </State>
|
||||
|
|
@ -12351,6 +12556,11 @@
|
|||
If $SumTextID != "" Then
|
||||
Var $SumTextValue = ""
|
||||
EndIf
|
||||
If $SumTextValue = "" Then
|
||||
If $SumTextID = "" Then
|
||||
Var $SumTextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -12675,9 +12885,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1204020019 </State>
|
||||
|
|
@ -12700,6 +12911,11 @@
|
|||
If $Sum1204020019TextID != "" Then
|
||||
Var $Sum1204020019TextValue = ""
|
||||
EndIf
|
||||
If $Sum1204020019TextValue = "" Then
|
||||
If $Sum1204020019TextID = "" Then
|
||||
Var $Sum1204020019TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
@ -13024,9 +13240,10 @@
|
|||
<Width>128</Width>
|
||||
<Height>64</Height>
|
||||
<MaxLine> 1 </MaxLine>
|
||||
<MaxSize> 18 </MaxSize>
|
||||
<MaxSize> 14 </MaxSize>
|
||||
<Font> OpunMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<Refresh> "auto,value" </Refresh>
|
||||
<WidthText> 128 </WidthText>
|
||||
<Mode> "disable-show" </Mode>
|
||||
<State> $Sum1299050063 </State>
|
||||
|
|
@ -13049,6 +13266,11 @@
|
|||
If $Sum1299050063TextID != "" Then
|
||||
Var $Sum1299050063TextValue = ""
|
||||
EndIf
|
||||
If $Sum1299050063TextValue = "" Then
|
||||
If $Sum1299050063TextID = "" Then
|
||||
Var $Sum1299050063TextID = "000013"
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
</Script>
|
||||
<Language>
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@
|
|||
|
||||
RootLayoutVisible 3 "hide"
|
||||
RootLayoutVisible 13 "hide"
|
||||
|
||||
|
||||
TRY "/mnt/sdcard/coffeevending/taobin_project/inter/tha/xml/event/script_common_for_open_promotion_xml.ev"
|
||||
</EventClick>
|
||||
</Button>
|
||||
|
|
|
|||
|
|
@ -41,16 +41,16 @@ Name=recommend,file=page_catalog_group_recommend.skt
|
|||
นมเมล่อน Melon Milk นม และ น้ำเชื่อมเมล่อน Milk & Melon 12-03-01-0022 12-03-02-0022 12-03-03-0022 bn_Melon_smoothie.png - - - posi1 - - - #REF! #REF! #REF! #REF! #REF!
|
||||
|
||||
กาแฟดำ Black Coffee กาแฟ และน้ำ Dark shot Espresso, Water 12-01-01-0081 12-01-02-0081 - bn_hot_blackcoffee.png 12-21-01-0081 12-21-02-0081 - posi1 - - -
|
||||
อเมริกาโน \nGuji Queen Berry Americano \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ กาแฟคั่วอ่อน (Natural Process) \Nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ 12-01-01-0014 12-01-02-0011 - bn_hot_americano_light.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nBlue Daddy Blue Daddy \nAmericano Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \Nnote: Blue Berry & Floral 12-01-01-0019 12-01-02-0019 - bn_hot_americano_light_bluedaddy.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nMozart Mozart \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0021 12-01-02-0021 - bn_hot_americano_light_mozart.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nWhisky Dude Whisky Dude \nAmericano Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla 12-01-01-0025 12-01-02-0025 - bn_hot_americano_light_whiskydude.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน\nSnowwhite Snowwhite \nAmericano Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \Nnote: Jasmine & Honey 12-01-01-0023 12-01-02-0023 - bn_hot_americano_light_snowwhite.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nPeacher Peacher \nAmericano Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \Nnote: Peach, Tea, Chocolate 12-01-01-0027 12-01-02-0027 - bn_hot_americano_light_peacher.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nGuji Queen Berry Americano \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ กาแฟคั่วอ่อน (Natural Process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ 12-01-01-0014 12-01-02-0011 - bn_hot_americano_light.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nBlue Daddy Blue Daddy \nAmericano Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \nnote: Blue Berry & Floral 12-01-01-0019 12-01-02-0019 - bn_hot_americano_light_bluedaddy.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nMozart Mozart \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0021 12-01-02-0021 - bn_hot_americano_light_mozart.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nWhisky Dude Whisky Dude \nAmericano Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \nnote: Whisky & Vanilla 12-01-01-0025 12-01-02-0025 - bn_hot_americano_light_whiskydude.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน\nSnowwhite Snowwhite \nAmericano Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \nnote: Jasmine & Honey 12-01-01-0023 12-01-02-0023 - bn_hot_americano_light_snowwhite.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nPeacher Peacher \nAmericano Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \nnote: Peach, Tea, Chocolate 12-01-01-0027 12-01-02-0027 - bn_hot_americano_light_peacher.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nPure Beauty Pure Beauty \nAmericano กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน Light Roast (Natural Process) Note: Floral & Tropical Fruit 12-01-01-0032 12-01-02-0032 - bn_hot_americano_light_pure_beauty.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nGeisha Geisha \nAmericano กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ Light Roast (Natural Process) Lemon, Peach, Honey, Jasmin 12-01-01-0035 12-01-02-0035 - bn_hot_americano_light_geisha.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nRosalyn Rosalyn \nAmericano กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \Npink Rose & Berry 12-01-01-0038 12-01-02-0038 - bn_hot_americano_light_rosalyn.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nChopin Chopin \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0044 12-01-02-0044 - bn_hot_americano_light_chopin.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nRosalyn Rosalyn \nAmericano กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \npink Rose & Berry 12-01-01-0038 12-01-02-0038 - bn_hot_americano_light_rosalyn.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nChopin Chopin \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0044 12-01-02-0044 - bn_hot_americano_light_chopin.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nMandarine Mandarine \nAmericano กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. 12-01-01-0047 12-01-02-0047 - bn_hot_americano_light_Mandarine.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nOpus One Opus One \nAmericano กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. 12-01-01-0050 12-01-02-0050 - bn_hot_americano_light_opus_one.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
|
||||
|
|
@ -79,46 +79,46 @@ Name=Coffee,file=page_catalog_group_coffee.skt
|
|||
ดับเบิลเอสเพรสโซ่ Double \nEspresso กาแฟ (60 ml) Espresso (60 ml) 12-11-01-9901 - - bn_hot_double_espresso.png 12-31-01-9901 - - posi1 - - - #REF! - - #REF! NN
|
||||
อเมริกาโน Americano กาแฟ และน้ำ Espresso, Water 12-01-01-0003 12-01-02-0001 - bn_hot_america_no.png 12-21-01-0003 12-21-02-0001 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
กาแฟดำ Black Coffee กาแฟ และน้ำ Dark shot Espresso, Water 12-01-01-0081 12-01-02-0081 - bn_hot_blackcoffee.png 12-21-01-0081 12-21-02-0081 - posi2 - - -
|
||||
เอสเพรสโซ่ช็อต \nGuji Queen Berry Espresso \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \Nstrawberry, Orange, Floral 12-01-01-0013 - - bn_hot_espresso_light.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nBlue Daddy Blue Daddy \nEspresso Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \Nnote: Blue Berry & Floral 12-01-01-0020 - - bn_hot_espresso_light_bluedaddy.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nChopin Chopin \nEspresso Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0043 - - bn_hot_espresso_light_chopin.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nGuji Queen Berry Espresso \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \nstrawberry, Orange, Floral 12-01-01-0013 - - bn_hot_espresso_light.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nBlue Daddy Blue Daddy \nEspresso Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \nnote: Blue Berry & Floral 12-01-01-0020 - - bn_hot_espresso_light_bluedaddy.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nChopin Chopin \nEspresso Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0043 - - bn_hot_espresso_light_chopin.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nMandarine Mandarine \nEspresso กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. 12-01-01-0046 - - bn_hot_espresso_light_Mandarine.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nOpus One Opus One \nEspresso กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. 12-01-01-0049 - - bn_hot_espresso_light_opus_one.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nMozart Mozart \nEspresso Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0022 - - bn_hot_espresso_light_mozart.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nSnowwhite Snowwhite \nEspresso Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \Nnote: Jasmine & Honey 12-01-01-0024 - - bn_hot_espresso_light_snowwhite.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nWhisky Dude Whisky Dude \nEspresso Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla 12-01-01-0026 - - bn_hot_espresso_light_whiskydude.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nPeacher Peacher \nEspresso Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \Nnote: Peach, Tea, Chocolate 12-01-01-0028 - - bn_hot_espresso_light_peacher.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nMozart Mozart \nEspresso Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0022 - - bn_hot_espresso_light_mozart.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nSnowwhite Snowwhite \nEspresso Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \nnote: Jasmine & Honey 12-01-01-0024 - - bn_hot_espresso_light_snowwhite.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nWhisky Dude Whisky Dude \nEspresso Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \nnote: Whisky & Vanilla 12-01-01-0026 - - bn_hot_espresso_light_whiskydude.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nPeacher Peacher \nEspresso Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \nnote: Peach, Tea, Chocolate 12-01-01-0028 - - bn_hot_espresso_light_peacher.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nPure Beauty Pure Beauty \nEspresso กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน Light Roast (Natural Process) Note: Floral & Tropical Fruit 12-01-01-0033 - - bn_hot_espresso_light_pure_beauty.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nGeisha Geisha Espresso กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ Light Roast (Natural Process) Lemon, Peach, Honey, Jasmin 12-01-01-0036 - - bn_hot_espresso_light_geisha.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nRosalyn Rosalyn Espresso กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \Npink Rose & Berry 12-01-01-0037 - - bn_hot_espresso_light_rosalyn.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
เอสเพรสโซ่ช็อต \nRosalyn Rosalyn Espresso กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \npink Rose & Berry 12-01-01-0037 - - bn_hot_espresso_light_rosalyn.png - - - posi2 - - - #REF! - - #REF! NN
|
||||
|
||||
|
||||
โซดากาโน่ Sodacano กาแฟ และ โซดา Espresso & Soda - 12-01-02-0041 - bn_iced_americano_soda.png - 12-21-02-0041 - posi1 - - - - #REF! - #REF! #REF!
|
||||
อเมริกาโน \nGuji Queen Berry Americano \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \Nstrawberry, Orange, Floral 12-01-01-0014 12-01-02-0011 - bn_hot_americano_light.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nBlue Daddy Blue Daddy \nAmericano Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \Nnote: Blue Berry & Floral 12-01-01-0019 12-01-02-0019 - bn_hot_americano_light_bluedaddy.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nChopin Chopin \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0044 12-01-02-0044 - bn_hot_americano_light_chopin.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nGuji Queen Berry Americano \nEthiopia Guji กาแฟคั่วอ่อน (natural process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \nstrawberry, Orange, Floral 12-01-01-0014 12-01-02-0011 - bn_hot_americano_light.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nBlue Daddy Blue Daddy \nAmericano Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \nnote: Blue Berry & Floral 12-01-01-0019 12-01-02-0019 - bn_hot_americano_light_bluedaddy.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nChopin Chopin \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0044 12-01-02-0044 - bn_hot_americano_light_chopin.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nMandarine Mandarine \nAmericano กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. 12-01-01-0047 12-01-02-0047 - bn_hot_americano_light_Mandarine.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nOpus One Opus One \nAmericano กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. 12-01-01-0050 12-01-02-0050 - bn_hot_americano_light_opus_one.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nMozart Mozart \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral 12-01-01-0021 12-01-02-0021 - bn_hot_americano_light_mozart.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nWhisky Dude Whisky Dude \nAmericano Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla 12-01-01-0025 12-01-02-0025 - bn_hot_americano_light_whiskydude.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน\nSnowwhite Snowwhite \nAmericano Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \Nnote: Jasmine & Honey 12-01-01-0023 12-01-02-0023 - bn_hot_americano_light_snowwhite.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nPeacher Peacher \nAmericano Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \Nnote: Peach, Tea, Chocolate 12-01-01-0027 12-01-02-0027 - bn_hot_americano_light_peacher.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nMozart Mozart \nAmericano Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral 12-01-01-0021 12-01-02-0021 - bn_hot_americano_light_mozart.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nWhisky Dude Whisky Dude \nAmericano Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \nnote: Whisky & Vanilla 12-01-01-0025 12-01-02-0025 - bn_hot_americano_light_whiskydude.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน\nSnowwhite Snowwhite \nAmericano Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \nnote: Jasmine & Honey 12-01-01-0023 12-01-02-0023 - bn_hot_americano_light_snowwhite.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nPeacher Peacher \nAmericano Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \nnote: Peach, Tea, Chocolate 12-01-01-0027 12-01-02-0027 - bn_hot_americano_light_peacher.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nPure Beauty Pure Beauty \nAmericano กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน Light Roast (Natural Process) Note: Floral & Tropical Fruit 12-01-01-0032 12-01-02-0032 - bn_hot_americano_light_pure_beauty.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nGeisha Geisha \nAmericano กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ Light Roast (Natural Process) Lemon, Peach, Honey, Jasmin 12-01-01-0035 12-01-02-0035 - bn_hot_americano_light_geisha.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nRosalyn Rosalyn \nAmericano กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \Npink Rose & Berry 12-01-01-0038 12-01-02-0038 - bn_hot_americano_light_rosalyn.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโน \nRosalyn Rosalyn \nAmericano กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \npink Rose & Berry 12-01-01-0038 12-01-02-0038 - bn_hot_americano_light_rosalyn.png - - - posi2 - - - #REF! #REF! - #REF! #REF!
|
||||
|
||||
Blue Daddy \nAlmost Dirty Blue Daddy \nAlmost Dirty Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \Nnote: Blue Berry & Floral - 12-01-02-0020 - bn_dirty_light_bluedaddy.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Mozart \nAlmost Dirty Mozart \nAlmost Dirty Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral - 12-01-02-0022 - bn_dirty_light_mozart.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Chopin \nAlmost Dirty Chopin \nAlmost Dirty Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \Nnote: Strawberry & Floral - 12-01-02-0045 - bn_dirty_light_chopin.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Blue Daddy \nAlmost Dirty Blue Daddy \nAlmost Dirty Washed process \nหอมบลูเบอร์รี และดอกไม้ Washed Process \nnote: Blue Berry & Floral - 12-01-02-0020 - bn_dirty_light_bluedaddy.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Mozart \nAlmost Dirty Mozart \nAlmost Dirty Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral - 12-01-02-0022 - bn_dirty_light_mozart.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Chopin \nAlmost Dirty Chopin \nAlmost Dirty Raisin Honey process \nหอมสตรอว์เบอร์รี กุหลาบ มะลิ Raisin Honey Process \nnote: Strawberry & Floral - 12-01-02-0045 - bn_dirty_light_chopin.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Mandarine \nAlmost Dirty Mandarine \nAlmost Dirty กาแฟคั่วอ่อน โน๊ต: ดอกส้ม น้ำผึ้ง คาราเมล ช็อกโกแล็ต Light Roast. Note: Orange Blossom, Honey, Caramel, Chocolate Bar. - 12-01-02-0048 - bn_dirty_light_Mandarine.png - - - posi2 - - -
|
||||
Opus One \nAlmost Dirty Opus One \nAlmost Dirty กาแฟคั่วอ่อน โน๊ต: เยลลี่องุ่น แอ๊ปเปิ้ลพาย มิ้น Light Roast. Note: Grape Jelly, Apple Pie, Walnut, Mint. - 12-01-02-0051 - bn_dirty_light_opus_one.png - - - posi2 - - -
|
||||
Whisky Dude \nAlmost Dirty Whisky Dude \nAlmost Dirty Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla - 12-01-02-0026 - bn_dirty_light_whiskydude.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Snowwhite \nAlmost Dirty Snowwhite \nAlmost Dirty Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \Nnote: Jasmine & Honey - 12-01-02-0024 - bn_dirty_light__snowwhite.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Queen Berry \nAlmost Dirty Queen Berry \nAlmost Dirty กาแฟคั่วอ่อน (washed process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \Nstrawberry, Orange, Floral - 12-01-02-0018 - bn_dirty_light.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Peacher \nAlmost Dirty Peacher \nAlmost Dirty Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \Nnote: Peach, Tea, Chocolate - 12-01-02-0028 - bn_dirty_light__peacher.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Whisky Dude \nAlmost Dirty Whisky Dude \nAlmost Dirty Washed Sherry cask ferment\nหอมวิสกี้ ช็อกโกแลต วนิลา Washed Sherry Cask Ferment \nnote: Whisky & Vanilla - 12-01-02-0026 - bn_dirty_light_whiskydude.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Snowwhite \nAlmost Dirty Snowwhite \nAlmost Dirty Anaerobic process \nหอมมะลิ น้ำผึ้ง เมเปิล Anaerobic Process \nnote: Jasmine & Honey - 12-01-02-0024 - bn_dirty_light__snowwhite.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Queen Berry \nAlmost Dirty Queen Berry \nAlmost Dirty กาแฟคั่วอ่อน (washed process) \nหอมสตรอว์เบอร์รี ส้ม และดอกไม้ Light Roast Natural Process: \nstrawberry, Orange, Floral - 12-01-02-0018 - bn_dirty_light.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Peacher \nAlmost Dirty Peacher \nAlmost Dirty Barrel-aged process \nหอมพีช, ชา, ช็อกโกแลต Barrel-Aged Process \nnote: Peach, Tea, Chocolate - 12-01-02-0028 - bn_dirty_light__peacher.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Pure Beauty \nAlmost Dirty Pure Beauty \nAlmost Dirty กาแฟคั่วอ่อน (natural process) \nกลิ่นดอกไม้ ผลไม้เขตร้อน Light Roast (Natural Process) Note: Floral & Tropical Fruit - 12-01-02-0033 - bn_dirty_light_pure_beauty.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Geisha \nAlmost Dirty Geisha \nAlmost Dirty กาแฟคั่วอ่อน (natural process) กลิ่น เลม่อน พีช น้ำผึ้งและดอกมะลิ Light Roast (Natural Process) Lemon, Peach, Honey, Jasmin - 12-01-02-0036 - bn_dirty_light_geisha.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
Rosalyn \nAlmost Dirty Rosalyn \nAlmost Dirty กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \Npink Rose & Berry - 12-01-02-0037 - bn_dirty_light_rosalyn.png - - - posi2 - - - - NN FALSE
|
||||
Rosalyn \nAlmost Dirty Rosalyn \nAlmost Dirty กาแฟคั่วอ่อน (washed process) \nกลิ่นกุหลาบ และ เบอร์รี่ Light Roast (Natural Process) \npink Rose & Berry - 12-01-02-0037 - bn_dirty_light_rosalyn.png - - - posi2 - - - - NN FALSE
|
||||
|
||||
|
||||
เอสเย็นแบบไทยๆ Thai \nIced Espresso กาแฟ นม และ น้ำแข็ง Espresso, Milk, Sugar,Ice - 12-11-02-0001 12-11-03-0001 bn_iced_epsresso.png - 12-31-02-0001 12-31-03-0001 posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
|
|
@ -226,7 +226,7 @@ IGNORE โกโก้โอดิบภูเขาไฟ COCOA OVALTINE \nVOL
|
|||
|
||||
มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk มะพร้าว นม และน้ำ Coconut, Milk,\nWater - 12-03-02-0058 12-03-03-0058 bn_iced_milk_coconut.png - - - posi1 - - -
|
||||
มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut \nChocolate Milk มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\nWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut.png - - - posi1 - - -
|
||||
IGNORE มะพร้าวน้ำหอมโตเกียว\nบานาน่า COCONUT TOKYO\NBANANA MILK น้ำเชื่อมมะพร้าว น้ำเชื่อมโตเกียวบานาน่า นม และน้ำ Coconut , Tokyo Banana , Milk,\nWater - - 12-03-03-0060 - - - posi1 - - -
|
||||
IGNORE มะพร้าวน้ำหอมโตเกียว\nบานาน่า COCONUT TOKYO\nBANANA MILK น้ำเชื่อมมะพร้าว น้ำเชื่อมโตเกียวบานาน่า นม และน้ำ Coconut , Tokyo Banana , Milk,\nWater - - 12-03-03-0060 - - - posi1 - - -
|
||||
|
||||
|
||||
Name=Tea,file=page_catalog_group_tea.skt
|
||||
|
|
@ -299,7 +299,7 @@ Name=Tea,file=page_catalog_group_tea.skt
|
|||
|
||||
|
||||
|
||||
Name=Other,file=page_catalog_group_other.skt
|
||||
Name=Other,file=page_catalog_group_other.skt,status=obsolete
|
||||
เต่าพลังโซดา\n(เพิ่มปริมาณ) Energy Drink\nSoda Extra เครื่องดื่มเต่าทรงพลัง โซดา\nและน้ำแข็ง (มีคาเฟอีน) Medicine Drink, Soda, Ice - 12-05-02-0143 12-05-03-0143 bn_iced_energy_drink_soda_Extra.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu
|
||||
เป๊ปซี่ (เพิ่มปริมาณ) Pepsi Extra เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0133 - bn_iced_pepsi_extra.png - - - posi1 2025/01/01T00:00:00 - -
|
||||
เต่าทรงพลัง\nสตอเบอร์รี่โซดา Energy Drink\nStrawberry Soda เครื่องดื่มเต่าทรงพลัง สตรอเบอรี่\nและโซดา (มีคาเฟอีน) Medicine Drink, Strawberry\n, Soda - 12-05-02-0136 12-05-03-0136 bn_iced_energy_drink_Strawberry_soda.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu
|
||||
|
|
@ -316,7 +316,7 @@ Name=Other,file=page_catalog_group_other.skt
|
|||
|
||||
Pepsi & Ice เป๊ปซี่น้ำแข็ง Pepsi เป๊ปซี่ Pepsi & Ice - 12-05-02-0007 12-05-03-0007 bn_iced_pepsi.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
IGNORE Pepsi Max - 12-05-02-0062 12-05-03-0062 posi1 - - -
|
||||
เป๊ปซี่โซดา Pepsi High Yeild เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0094 12-05-03-0094 bn_iced_pepsi.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
เป๊ปซี่โซดา Pepsi เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0094 12-05-03-0094 bn_iced_pepsi.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
|
||||
เซเว่นอัพ 7Up เซเว่นอัพ 7Up & Ice - 12-05-02-0095 - bn_iced_7up.png - - - posi2 - - - - #REF! - #REF! #REF!
|
||||
เซเว่นอัพชูกำลัง\nบ๊วยโซดา 7Up Tao Power\nPlum Soda เซเว่นอัพ เครื่องดื่มเต่าทรงพลัง บ๊วย และน้ำแข็ง 7Up , Medicine drink, Ume, Ice - 12-05-02-0096 - bn_iced_7up_Energy_PLUM.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
|
|
@ -326,9 +326,9 @@ IGNORE Banana Soda - - 12-05-02-0050 - - - - - posi1 - - - - #REF! - #REF! #R
|
|||
น้ำมะนาวโซดา Limenade \nSoda มะนาว โซดา Limenade, Sugar, Soda & Ice - 12-05-02-0010 12-05-03-0010 bn_iced_lemonade_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
น้ำลิ้นจี่โซดา Lychee Soda ลิ้นจี่ โซดา Lychee, Soda & Ice - 12-05-02-0033 12-05-03-0033 bn_iced_Lychee_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
ลิ้นจี่มะนาวโซดา Lychee \nLimenade Soda ลิ้นจี่ มะนาว \nโซดา Lychee,\nLimenade, Soda & Ice - 12-05-02-0022 12-05-03-0022 bn_Lychee_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
เซเว่นอัพลิ้นจี่\nมะนาวโซดา 7Up Lychee Limenade เซเว่นอัพ ลิ้นจี่ มะนาว 7Up , Lychee, Limenade - 12-05-02-0115 - bn_iced_7up_Lychee_LIME.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
เซเว่นอัพลิ้นจี่\nมะนาวโซดา 7Up Lychee\nLimenade เซเว่นอัพ ลิ้นจี่ มะนาว 7Up , Lychee, Limenade - 12-05-02-0115 - bn_iced_7up_Lychee_LIME.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
IGNORE กัญชาโซดา Cannabis Soda กัญชา โซดา \n(อายุมากกว่า 20+ เท่านั้น) Cannabis, Soda & Ice - 12-05-02-0028 12-05-03-0028 bn_iced_hemp_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
IGNORE มะนาวกัญชาโซดา Limenade \Ncannabis Soda กัญชา มะนาว โซดา \n(อายุ 20+ เท่านั้น) Cannabis, Limenade, \nSoda & Ice - 12-05-02-0029 12-05-03-0029 bn_iced_hemp_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
IGNORE มะนาวกัญชาโซดา Limenade \ncannabis Soda กัญชา มะนาว โซดา \n(อายุ 20+ เท่านั้น) Cannabis, Limenade, \nSoda & Ice - 12-05-02-0029 12-05-03-0029 bn_iced_hemp_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry, Soda & Ice - 12-05-02-0012 - bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry, Soda & Ice - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
น้ำแดงโซดา Salak Soda น้ำแดงกลิ่นสละ โซดา Salak, Soda & Ice - 12-05-02-0008 12-05-03-0008 bn_sala_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
|
|
@ -405,10 +405,10 @@ Name=pepsi-7up,file=page_catalog_group_pepsi_7up.skt
|
|||
Pepsi & Ice เป๊ปซี่น้ำแข็ง Pepsi เป๊ปซี่ Pepsi & Ice - 12-05-02-0007 12-05-03-0007 bn_iced_pepsi.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
เป๊ปซี่ (เพิ่มปริมาณ) Pepsi Extra เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0133 - bn_iced_pepsi_extra.png - - - posi1 2025/01/01T00:00:00 - -
|
||||
IGNORE Pepsi Max - 12-05-02-0062 12-05-03-0062 posi1 - - -
|
||||
เป๊ปซี่โซดา Pepsi High Yeild เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0094 12-05-03-0094 bn_iced_pepsi.png - - - posi1 - - -
|
||||
เป๊ปซี่โซดา Pepsi เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0094 12-05-03-0094 bn_iced_pepsi.png - - - posi1 - - -
|
||||
เซเว่นอัพ 7Up เซเว่นอัพ 7Up & Ice - 12-05-02-0095 - bn_iced_7up.png - - - posi2 - - -
|
||||
เซเว่นอัพชูกำลัง\nบ๊วยโซดา 7Up Tao Power\nPlum Soda เซเว่นอัพ เครื่องดื่มเต่าทรงพลัง บ๊วย และน้ำแข็ง 7Up , Medicine drink, Ume, Ice - 12-05-02-0096 - bn_iced_7up_Energy_PLUM.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
เซเว่นอัพลิ้นจี่\nมะนาวโซดา 7Up Lychee Limenade เซเว่นอัพ ลิ้นจี่ มะนาว 7Up , Lychee, Limenade - 12-05-02-0115 - bn_iced_7up_Lychee_LIME.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
เซเว่นอัพลิ้นจี่\nมะนาวโซดา 7Up Lychee\nLimenade เซเว่นอัพ ลิ้นจี่ มะนาว 7Up , Lychee, Limenade - 12-05-02-0115 - bn_iced_7up_Lychee_LIME.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
เซเว่นอัพสละ\nมะนาวโซดา 7Up Salak Lime น้ำแดงกลิ่นสละ มะนาว โซดา 7UP 7Up , Medicine drink, Ice - 12-05-02-0100 - bn_iced_7up_sala_LIME.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
เป๊ปซี่บ๊วย Pepsi Plum เป๊ปซี่ บ๊วย โซดา Pepsi, Ume & Ice - 12-05-02-0046 12-05-03-0046 bn_iced_pepsi_plum.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
เป๊ปซี่บ๊วย Pepsi Plum เป๊ปซี่ บ๊วย โซดา Pepsi, Ume & Ice - 12-05-02-0104 12-05-03-0104 bn_iced_pepsi_plum.png - - - posi1 - - -
|
||||
|
|
@ -446,7 +446,7 @@ Name=Other,file=page_catalog_group_other_other.skt
|
|||
เป๊ปซี่ (เพิ่มปริมาณ) Pepsi Extra เป๊ปซี่ โซดา และน้ำแข็ง Pepsi, Soda And Ice - 12-05-02-0133 - bn_iced_pepsi_extra.png - - - posi1 2025/01/01T00:00:00 - -
|
||||
สตรอเบอร์รี่มะนาว\nโซดา Strawberry\nLimenade Soda สตรอเบอร์รี่ มะนาว\nน้ำตาล และโซดา Strawberry, Lime,\nSugar, Soda - 12-05-02-0023 12-05-03-0023 bn_strawberry_lime_soda.png - - - posi1 - - -
|
||||
สตรอเบอร์รี่โซดา Strawberry Soda สตรอเบอร์รี่ น้ำตาล\nและโซดา Strawberry, Sugar,\nSoda - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - -
|
||||
น้ำสตรอเบอร์รี่ Strawberry สตรอเบอร์รี่ และน้ำตาล STRAWBERRY, SUGAR 12-05-01-0040 12-05-02-0040 12-05-03-0040 bn_iced_strawberry.png - - - posi1 - - -
|
||||
น้ำสตรอเบอร์รี่ Strawberry สตรอเบอร์รี่ และน้ำตาล Strawberry, Sugar 12-05-01-0040 12-05-02-0040 12-05-03-0040 bn_iced_strawberry.png - - - posi1 - - -
|
||||
เต่าทรงพลัง\nสตอเบอร์รี่โซดา Energy Drink\nStrawberry Soda เครื่องดื่มเต่าทรงพลัง สตรอเบอรี่\nและโซดา (มีคาเฟอีน) Medicine Drink, Strawberry\n, Soda - 12-05-02-0136 12-05-03-0136 bn_iced_energy_drink_Strawberry_soda.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu
|
||||
เต่าทรงพลังบ๊วย\nโซดา Energy Drink\nUme Soda เครื่องดื่มเต่าทรงพลัง บ๊วย\nและโซดา (มีคาเฟอีน) Medicine Drink, Ume ,\nSoda - 12-05-02-0137 12-05-03-0137 bn_iced_energy_drink_plum_soda.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu
|
||||
เต่าทรงพลังลิ้นจี่\nโซดา Energy Drink\nLychee Soda เครื่องดื่มเต่าทรงพลัง ลิ้นจี่\nและโซดา (มีคาเฟอีน) Medicine Drink, Lychee\n, Soda - 12-05-02-0138 12-05-03-0138 bn_iced_energy_drink_Lychee_soda.png - - - posi1 2025/01/21T00:00:00 - TaobinEnergyDrinkMenu
|
||||
|
|
@ -469,7 +469,7 @@ IGNORE Banana Soda - - 12-05-02-0050 - - - - - posi1 - - - - #REF! - #REF! #R
|
|||
น้ำลิ้นจี่โซดา Lychee Soda ลิ้นจี่ โซดา Lychee, Soda & Ice - 12-05-02-0033 12-05-03-0033 bn_iced_Lychee_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
ลิ้นจี่มะนาวโซดา Lychee \nLimenade Soda ลิ้นจี่ มะนาว \nโซดา Lychee,\nLimenade, Soda & Ice - 12-05-02-0022 12-05-03-0022 bn_Lychee_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
IGNORE กัญชาโซดา Cannabis Soda กัญชา โซดา \n(อายุมากกว่า 20+ เท่านั้น) Cannabis, Soda & Ice - 12-05-02-0028 12-05-03-0028 bn_iced_hemp_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
IGNORE มะนาวกัญชาโซดา Limenade \Ncannabis Soda กัญชา มะนาว โซดา \n(อายุ 20+ เท่านั้น) Cannabis, Limenade, \nSoda & Ice - 12-05-02-0029 12-05-03-0029 bn_iced_hemp_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
IGNORE มะนาวกัญชาโซดา Limenade \ncannabis Soda กัญชา มะนาว โซดา \n(อายุ 20+ เท่านั้น) Cannabis, Limenade, \nSoda & Ice - 12-05-02-0029 12-05-03-0029 bn_iced_hemp_lime_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
IGNORE สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry, Soda & Ice - 12-05-02-0012 - bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
IGNORE สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry, Soda & Ice - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
น้ำแดงโซดา Salak Soda น้ำแดงกลิ่นสละ โซดา Salak, Soda & Ice - 12-05-02-0008 12-05-03-0008 bn_sala_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
|
|
@ -572,9 +572,9 @@ IGNORE Tao Tim Hojicha ไอศครีมนม และโฮจิฉะ
|
|||
Name=AppFast,file=page_catalog_group_appfast.skt
|
||||
แอพ ฟาสท์ \nวานิลลา (Original) App Fast Original โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1018 - bn_protein_original_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
แอพ ฟาสท์ กาแฟ App Fast Espresso โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1019 - bn_protein_espresso_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
แอพ ฟาสท์ ช็อกโก App Fast \NChocolate โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1020 - bn_protein_Chocolate_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
แอพ ฟาสท์ ชาไทย App Fast \NThai Tea โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1021 - bn_protein_Thaitea_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
แอพ ฟาสท์ ชาเขียว App Fast \NMatcha โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1022 - bn_protein_Matcha_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
แอพ ฟาสท์ ช็อกโก App Fast \nChocolate โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1020 - bn_protein_Chocolate_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
แอพ ฟาสท์ ชาไทย App Fast \nThai Tea โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1021 - bn_protein_Thaitea_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
แอพ ฟาสท์ ชาเขียว App Fast \nMatcha โปรตีนจากพืชคุณภาพสูง \nพร้อมสารอาหารที่มีประโยชน์ Plant-Based Protein with \nEssential nutrients - 12-04-02-1022 - bn_protein_Matcha_BDMS.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
|
||||
Name=KidMenu,file=page_catalog_group_forkid.skt
|
||||
สตอเบอร์รี่โซดา Strawberry Soda สตอเบอร์รี่ โซดา Strawberry , Soda & Ice - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
|
|
@ -602,18 +602,18 @@ Name=KidMenu,file=page_catalog_group_forkid.skt
|
|||
|
||||
Name=Health,file=page_catalog_group_health.skt
|
||||
อเมริกาโน Americano กาแฟ และน้ำร้อน\n(อเมริกาโน) Espresso, Water 12-01-01-1003 12-01-02-1001 - bn_hot_america_no_Healthy.png 12-21-01-1003 12-21-02-1001 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ลาเต้ Cafe' Latte กาแฟ นม และ ฟองนม Espresso, Milk,\NFoamed Milk 12-01-01-1004 12-01-02-1002 - bn_hot_latte_Healthy.png 12-21-01-1004 12-21-02-1002 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
มอคค่า Mocha กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\NMilk, Sugar 12-01-01-1006 12-01-02-1003 - bn_hot_Mocha_Healthy.png 12-21-01-1006 12-21-02-1003 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
คาปูชิโน่ Cappuccino กาแฟ นม และ ฟองนม Espresso, Milk,\NFoamed Milk 12-01-01-1099 12-01-02-1099 - bn_hot_Cappu_Healthy.png 12-21-01-1099 12-21-02-1099 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ลาเต้ Cafe' Latte กาแฟ นม และ ฟองนม Espresso, Milk,\nFoamed Milk 12-01-01-1004 12-01-02-1002 - bn_hot_latte_Healthy.png 12-21-01-1004 12-21-02-1002 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
มอคค่า Mocha กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\nMilk, Sugar 12-01-01-1006 12-01-02-1003 - bn_hot_Mocha_Healthy.png 12-21-01-1006 12-21-02-1003 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
คาปูชิโน่ Cappuccino กาแฟ นม และ ฟองนม Espresso, Milk,\nFoamed Milk 12-01-01-1099 12-01-02-1099 - bn_hot_Cappu_Healthy.png 12-21-01-1099 12-21-02-1099 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ชานมไทย Thai Milk Tea ชาไทย และ นมอุ่น Thai Tea, Sugar, Milk 12-02-01-1024 12-02-02-1024 - bn_hot_thai_milk_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
- - - posi1 - - -
|
||||
ชานมไต้หวัน Taiwanese \nMilk Tea ชาไต้หวัน และ นมอุ่น Taiwanese Tea, Sugar, \NAnd Milk 12-02-01-1025 12-02-02-1025 - bn_hot_taiwan_milk_tea_Jason_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ชานมไต้หวัน Taiwanese \nMilk Tea ชาไต้หวัน และ นมอุ่น Taiwanese Tea, Sugar, \nAnd Milk 12-02-01-1025 12-02-02-1025 - bn_hot_taiwan_milk_tea_Jason_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
มัทฉะลาเต้ Matcha Latte ชาเขียวมัทฉะ และ นมอุ่น Matcha And Warm Milk 12-02-01-1026 12-02-02-1026 - bn_hot_matcha_latte_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ชาเขียวญี่ปุ่น Matcha ชาเชียว และน้ำ Matcha And Hot Water 12-02-01-1027 12-02-02-1027 - bn_hot_matcha_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ชาดำ Thai Tea ชาไทย และน้ำ Thai Tea And Water 12-02-01-1029 12-02-02-1029 - bn_hot_blacktea.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ชาดำมะนาว Thai Tea \nLimenade ชาไทย มะนาว และน้ำ Thai Tea, Limenade And Water 12-02-01-1030 12-02-02-1030 - bn_hot_limeblack tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ชาดำไต้หวัน Taiwanese Tea ชาอู่หลงไต้หวัน น้ำ Taiwan Tea, Water, And Ice 12-02-01-1031 12-02-02-1031 - bn_hot_oolong_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ชาดำไต้หวัน\nมะนาว Taiwanese \nLBlack Tea ชาอู่หลงไต้หวัน น้ำ มะนาว Taiwan Tea, Limenade, \NWater, And Ice 12-02-01-1032 12-02-02-1032 - bn_hot_lime_Oolong_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
ชาดำไต้หวัน\nมะนาว Taiwanese \nLBlack Tea ชาอู่หลงไต้หวัน น้ำ มะนาว Taiwan Tea, Limenade, \nWater, And Ice 12-02-01-1032 12-02-02-1032 - bn_hot_lime_Oolong_tea_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
โฮจิฉะลาเต้ Hojicha Latte ชาเขียวคั่ว และ นมอุ่น Hojicha And Milk 12-02-01-1037 12-02-02-1037 - bn_hot_hojicha_milk_tea_sing_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
โกโก้ Cocoa โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar 12-03-01-1002 12-03-02-1002 - bn_iced_cocoa_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
นม Milk นม Milk 12-03-01-1005 12-03-02-1005 - bn_iced_milk_Healthy.png - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
|
|
@ -676,7 +676,7 @@ Name=Momday,file=page_catalog_momday.skt
|
|||
|
||||
นี่สิตัวแม่ Jasmine Tea ชามะลิ น้ำ Jasmine Tea ,Water 12-99-01-0042 12-99-02-0044 12-99-03-0046 bn_jasmine_tea_motherday.png - - - posi1 - - -
|
||||
รักแม่ 3000 Jasmine Milk Tea ชามะลิ และนม Jasmine Tea and Milk 12-99-01-0043 12-99-02-0045 12-99-03-0047 bn_jasmine_milk_tea_motherday.png - - - posi1 - - -
|
||||
มัมมี่ของต้าวก้อน Jasmine Milk Tea\NOREO Smoothie ชามะลิ นม และโอรีโอ Jasmine Tea Milk and Oreo - - 12-99-03-0048 bn_jasmine_oreo_motherday.png - - - posi1 - - -
|
||||
มัมมี่ของต้าวก้อน Jasmine Milk Tea\nOREO Smoothie ชามะลิ นม และโอรีโอ Jasmine Tea Milk and Oreo - - 12-99-03-0048 bn_jasmine_oreo_motherday.png - - - posi1 - - -
|
||||
จี๊ดจ๊าดได้แม่ Jasmine Lime ชามะลิ ผงมะนาว และน้ำ Jasmine Tea Limenade and Ice 12-99-01-0049 12-99-02-0050 - bn_jasmine_tea_lime_motherday.png - - - posi1 - - -
|
||||
ซ่าแบบตัวมัม Jasmine Tea Soda ชามะลิ และโซดา Jasmine Tea and Soda - 12-99-05-0051 - bn_jasmine_tea_soda_motherday.png - - - posi1 - - -
|
||||
เป๊ปนะแม่ Pepsi Jasmine Tea เป๊ปซี่ ชามะลิ ผงมะนาว และโซดา Pepsi, Jasmine Tea, Limenade and Soda - 12-99-05-0052 - bn_pepsi_jasmine_tea_motherday.png - - - posi1 - - -
|
||||
|
|
@ -734,17 +734,17 @@ Name=Rerun,file=page_catalog_group_pro_rerun.skt
|
|||
เมโบซ่า Meboza เมล่อน บ๊วย โซดา และน้ำแข็ง Melon, Ume , Soda And Ice - 12-99-02-0015 - bn_Melon_PLUM_Soda_rerun.png - - - posi1 - - -
|
||||
ห้องเชือด\nหมายเลข 13 Room no.13 เป๊ปซี่ ลิ้นจี่ มะนาว และโซดา Pepsi, Lychee , Lime And Soda - 12-99-05-0059 - bn_room_no_13_rerun.png - - - posi1 - - -
|
||||
พยาบาทชาติที่แล้ว The Haunting of\nthe Past เป๊ปซี่ ชูกำลัง มะนาว และโซดา Pepsi Energy, Lime And Soda - 12-99-05-0057 - bn_haunting_of_the_past_rerun.png - - - posi1 - - -
|
||||
รวยจนช็อก!\nน็อคแล้วไหม Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\Nsugar, Cocoa - - 12-03-03-0035 bn_Mint_Wealthy_Cocoa_rerun.png - - - posi1 - - -
|
||||
รวยจนช็อก!\nน็อคแล้วไหม Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\nsugar, Cocoa - - 12-03-03-0035 bn_Mint_Wealthy_Cocoa_rerun.png - - - posi1 - - -
|
||||
รวยไม่รู้ล้ม\nเอาผมลงไหมล่ะ Mint Milk มินต์ และนม Mint And Milk - 12-03-02-0036 - bn_Mint_Wealthy_Milk_rerun.png - - - posi1 - - -
|
||||
ดิน 7 ป่าช้า 7 Haunted Woods เป๊ปซี่ นม และโอรีโอ Pepsi, Milk, Oreo And Ice - - 12-99-03-0066 bn_haunted_woods_rerun.png - - - posi1 - - -
|
||||
|
||||
Name=Peach,file=page_catalog_group_pro_peach.skt
|
||||
พีชเทลมีเลิฟ Peach Tell Me Love กาแฟ น้ำ และ พีช Espresso, Peach ,\Nsugar, Water 12-01-01-0059 12-01-02-0059 - bn_hot_americano_peach.png 12-21-01-0059 12-21-02-0059 - posi1 - - -
|
||||
พีชบีมายด์ลาสท์เลิฟ Peach Be\nMy Last Love กาแฟ น้ำ นม และ พีช Espresso, Peach ,\Nsugar, Milk 12-01-01-0060 12-01-02-0060 12-01-03-0060 bn_hot_peach_latte.png 12-21-01-0060 12-21-02-0060 12-21-03-0060 posi1 - - -
|
||||
พีชสเตย์บายมายไซด์ Peach, Stay By\nMy Side พีช ชาไทย และน้ำ Peach , Thai Tea,\Nwater 12-02-01-0051 12-02-02-0051 12-02-03-0051 bn_hot_peach_tea.png - - - posi1 - - -
|
||||
พีชโกรโอลด์วิทมี Peach Grow Old With Me พีช ชามะลิ และน้ำ Peach , Jasmine Tea,\Nwater - 12-02-02-0052 - bn_hot_peach_jasmine_tea.png - - - posi1 - - -
|
||||
แคนยูพีชเลิฟมีทู Can you Peach\nLove Me Too พีช นม และน้ำ Peach , Milk,\Nwater 12-03-01-0038 12-03-02-0038 12-03-03-0038 bn_peach_Milk.png - - - posi1 - - -
|
||||
พีช โชว์เวอร์มี\nวิทยัวเลิฟ Peach, Shower Me\nWith Your Love. พีช นม โกโก้ และน้ำ Peach , Milk, Cocoa\Nwater - 12-03-02-0039 12-03-03-0039 bn_peach_Cocoa.png - - - posi1 - - -
|
||||
พีชเทลมีเลิฟ Peach Tell Me Love กาแฟ น้ำ และ พีช Espresso, Peach ,\nsugar, Water 12-01-01-0059 12-01-02-0059 - bn_hot_americano_peach.png 12-21-01-0059 12-21-02-0059 - posi1 - - -
|
||||
พีชบีมายด์ลาสท์เลิฟ Peach Be\nMy Last Love กาแฟ น้ำ นม และ พีช Espresso, Peach ,\nsugar, Milk 12-01-01-0060 12-01-02-0060 12-01-03-0060 bn_hot_peach_latte.png 12-21-01-0060 12-21-02-0060 12-21-03-0060 posi1 - - -
|
||||
พีชสเตย์บายมายไซด์ Peach, Stay By\nMy Side พีช ชาไทย และน้ำ Peach , Thai Tea,\nwater 12-02-01-0051 12-02-02-0051 12-02-03-0051 bn_hot_peach_tea.png - - - posi1 - - -
|
||||
พีชโกรโอลด์วิทมี Peach Grow Old With Me พีช ชามะลิ และน้ำ Peach , Jasmine Tea,\nwater - 12-02-02-0052 - bn_hot_peach_jasmine_tea.png - - - posi1 - - -
|
||||
แคนยูพีชเลิฟมีทู Can you Peach\nLove Me Too พีช นม และน้ำ Peach , Milk,\nwater 12-03-01-0038 12-03-02-0038 12-03-03-0038 bn_peach_Milk.png - - - posi1 - - -
|
||||
พีช โชว์เวอร์มี\nวิทยัวเลิฟ Peach, Shower Me\nWith Your Love. พีช นม โกโก้ และน้ำ Peach , Milk, Cocoa\nwater - 12-03-02-0039 12-03-03-0039 bn_peach_Cocoa.png - - - posi1 - - -
|
||||
ฟอลอินเลิฟวิทมี\n(พีช~) Fall In Love With Me\nPeach พีช นม น้ำตาล Oreo Peach , Milk, Oreo & Ice - - 12-03-03-0040 bn_peach_Oreo_smoothie.png - - - posi1 - - -
|
||||
พีชทีชมีฮาวทูเลิฟ Peach Teach Me\nHow To Love พีช น้ำ และน้ำแข็ง Peach ,Water And Ice - 12-05-02-0068 - bn_iced_peach.png - - - posi1 - - -
|
||||
พีชฟีลมายเอ็มทีฮาร์ต Peach, Fill My\nEmpty Heart พีช โซดา และน้ำแข็ง Peach ,Soda And Ice - 12-05-02-0069 - bn_iced_peach_soda.png - - - posi1 - - -
|
||||
|
|
@ -753,11 +753,11 @@ Name=Peach,file=page_catalog_group_pro_peach.skt
|
|||
ยูอาเดอะมิสซิงพีช You're The Missing\nPeach พีช สตรอเบอร์รี่ และโซดา Peach , Strawberry , Soda & Ice - 12-05-02-0073 - bn_peach_Strawberry_Soda.png - - - posi1 - - -
|
||||
|
||||
Name=BadValentine,file=page_catalog_group_pro_bad_valentine.skt
|
||||
เป็นเด็กดื้อโดนตีเป็น\nเด็กดีโดนทิ้งตลอด Bad kids smacked\ngood ones ditched กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\Ncocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_iced_Mocha_Tokyobanana_smoothie.png - 12-21-02-0061 12-21-03-0061 posi1 - - -
|
||||
ตัดบทบอกฝันดี\n= เขาไม่อยากคุย Ghosted after night\nconvo's dead กาแฟ น้ำ นม มัทฉะ และ กล้วย Espresso, Banana ,\Nmatcha, Milk - 12-01-02-0062 - bn_iced_matcha_Latte_TokyoBanana.png - 12-21-02-0062 - posi1 - - -
|
||||
ที่ทำดีด้วยเขาไม่ได้มีใจ\nแต่เขามีเมตตา Kindness fix,\nzero romance drama. กล้วย นม และโกโก้ และน้ำ Banana ,\Nmilk, Cocoa - 12-03-02-0024 12-03-03-0024 bn_Choco_banana_smoothie.png - - - posi1 - - -
|
||||
ตกอยู่ในสถานะ\nสแตนด์บาย Love on mute,\nstuck in suspense. กล้วย สตรอเบอร์รี่ และนม Banana , Strawberry ,\Nmilk - - 12-03-03-0045 bn_iced_strawberry_Tokyobanana_smoothie.png - - - posi1 - - -
|
||||
บอกว่าคุยได้\nพอทักไปก็หาย Promised a chat, but\npoof,gone after HEY. กล้วย นม น้ำตาล Oreo Banana , Milk,\Nsugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_bad_valentine.png - - - posi1 - - -
|
||||
เป็นเด็กดื้อโดนตีเป็น\nเด็กดีโดนทิ้งตลอด Bad kids smacked\ngood ones ditched กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\ncocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_iced_Mocha_Tokyobanana_smoothie.png - 12-21-02-0061 12-21-03-0061 posi1 - - -
|
||||
ตัดบทบอกฝันดี\n= เขาไม่อยากคุย Ghosted after night\nconvo's dead กาแฟ น้ำ นม มัทฉะ และ กล้วย Espresso, Banana ,\nmatcha, Milk - 12-01-02-0062 - bn_iced_matcha_Latte_TokyoBanana.png - 12-21-02-0062 - posi1 - - -
|
||||
ที่ทำดีด้วยเขาไม่ได้มีใจ\nแต่เขามีเมตตา Kindness fix,\nzero romance drama. กล้วย นม และโกโก้ และน้ำ Banana ,\nmilk, Cocoa - 12-03-02-0024 12-03-03-0024 bn_Choco_banana_smoothie.png - - - posi1 - - -
|
||||
ตกอยู่ในสถานะ\nสแตนด์บาย Love on mute,\nstuck in suspense. กล้วย สตรอเบอร์รี่ และนม Banana , Strawberry ,\nmilk - - 12-03-03-0045 bn_iced_strawberry_Tokyobanana_smoothie.png - - - posi1 - - -
|
||||
บอกว่าคุยได้\nพอทักไปก็หาย Promised a chat, but\npoof,gone after HEY. กล้วย นม น้ำตาล Oreo Banana , Milk,\nsugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_bad_valentine.png - - - posi1 - - -
|
||||
เขาจะกลับมาก็ต่อเมื่อ\nไม่เหลือใคร Pops up when the\nrest bail on you. กล้วย ขิง และน้ำแข็ง Banana , Ginger And Ice - 12-02-02-0053 - bn_iced_Ginger_TokyoBanana.png - - - posi1 - - -
|
||||
รักหมดใจ\nเจ็บหมดตัวมีอยู่จริง Love deep, broke\nhard–the real deal. กล้วย ชาไทย นม และน้ำแข็ง Banana , Thai Tea, Milk And Ice - 12-02-02-0054 - bn_iced_ThaiTea_TokyoBanana.png - - - posi1 - - -
|
||||
คนลืมก่อนชนะ\nโอเคเราแพ้ Forget love, take\nthe L กล้วย นม และน้ำแข็ง Banana , Milk And Ice - 12-03-02-0023 12-03-03-0023 bn_iced_milk_TokyoBanana.png - - - posi1 - - -
|
||||
|
|
@ -786,12 +786,12 @@ Name=Lip_It,file=page_catalog_group_pro_lipit.skt
|
|||
แก้วนี้ของพี่นัท Rose Honey Pudding คาราเมล สตรอเบอร์รี่ นมและน้ำแข็ง Strawberry, Caramel , Milk And Ice - - 12-03-03-0047 bn_Caramel_Straw_Milk_Rose_honey_puddingl.png - - - posi1 - - -
|
||||
นิสาอินเต่าบิน Botanic Citrus ยูซุ ชามะลิ เป๊ปซี่ และโซดา Pepsi, Jasmine Tea, Yuzu , Soda And Ice - 12-99-05-0063 - bn_PEPSI_Jasmine_Yuzu_Botanic_citrus.png - - - posi1 - - -
|
||||
สะบัดหลอด Choco Fondant กล้วย โกโก้ นมและน้ำแข็ง Cocoa, Banana , Milk And Ice - 12-03-02-0040 - bn_Cocoa_Straw_Milk_Banana_Choco_Fondant.png - - - posi1 - - -
|
||||
โชว์แก้วอร่อย Berry Jam สตรอเบอร์รี่ ยูซุ น้ำและน้ำแข็ง Strawberry , Yuzu , \NWater - - 12-05-03-0063 bn_Straw_Yuzu_Berry_Yuzu.png - - - posi1 - - -
|
||||
ไหนดื่มสิ Raspberry ลิ้นจี่ สละ น้ำและน้ำแข็ง Lychee , Salak , \NWater - 12-05-02-0080 - bn_Lychee_SALAK_Rasberry.png - - - posi1 - - -
|
||||
เรื่องราวแก้วนี้ Lychee Rose ลิ้นจี่ ชามะลิ น้ำและน้ำแข็ง Lychee , Jasmine Tea \NWater - - 12-02-03-0053 bn_Lychee_Jasmine tea_Lychee_Rose.png - - - posi1 - - -
|
||||
โชว์แก้วอร่อย Berry Jam สตรอเบอร์รี่ ยูซุ น้ำและน้ำแข็ง Strawberry , Yuzu , \nWater - - 12-05-03-0063 bn_Straw_Yuzu_Berry_Yuzu.png - - - posi1 - - -
|
||||
ไหนดื่มสิ Raspberry ลิ้นจี่ สละ น้ำและน้ำแข็ง Lychee , Salak , \nWater - 12-05-02-0080 - bn_Lychee_SALAK_Rasberry.png - - - posi1 - - -
|
||||
เรื่องราวแก้วนี้ Lychee Rose ลิ้นจี่ ชามะลิ น้ำและน้ำแข็ง Lychee , Jasmine Tea \nWater - - 12-02-03-0053 bn_Lychee_Jasmine tea_Lychee_Rose.png - - - posi1 - - -
|
||||
เคาะค่ะ Sum Balm spf 15 pa++ คาราเมล มัทฉะ นมและน้ำแข็ง Caramel , Matcha Milk And Ice - 12-03-02-0041 - bn_Caramel_Mint_Milk_Sum_Balm_SPF_15.png - - - posi1 - - -
|
||||
ถ้าพี่นัทเป๊ะ เต่าก็เป๊ะ Peach Tea สตรอเบอร์รี่ ลิ้นจี่ ชาไทย และน้ำแข็ง Strawberry, Lychee ,\NThai Tea Water - 12-02-02-0056 - bn_Straw_Lychee_Thai Tea_Peach_tea.png - - - posi1 - - -
|
||||
เต่าบินเมคโอเวอร์\nมั๊วะ! Peach สตรอเบอร์รี่ ลิ้นจี่ น้ำและน้ำแข็ง Strawberry, Lychee , \NWater - - 12-05-03-0064 bn_Lychee_Staw_Peach_Syrup.png - - - posi1 - - -
|
||||
ถ้าพี่นัทเป๊ะ เต่าก็เป๊ะ Peach Tea สตรอเบอร์รี่ ลิ้นจี่ ชาไทย และน้ำแข็ง Strawberry, Lychee ,\nThai Tea Water - 12-02-02-0056 - bn_Straw_Lychee_Thai Tea_Peach_tea.png - - - posi1 - - -
|
||||
เต่าบินเมคโอเวอร์\nมั๊วะ! Peach สตรอเบอร์รี่ ลิ้นจี่ น้ำและน้ำแข็ง Strawberry, Lychee , \nWater - - 12-05-03-0064 bn_Lychee_Staw_Peach_Syrup.png - - - posi1 - - -
|
||||
|
||||
Name=Monday_Banana,file=page_catalog_group_pro_monday_banana.skt
|
||||
ลาที่ดีคือลาออก A Positive Leave\nIs Relieve โกโก้ โตเกียวบานาน่า นมและน้ำตาล Tokyo Banana , Milk, Sugar - 12-03-02-0024 12-03-03-0024 bn_ChocoBanana_milk_monday_banana.png - - - posi1 - - -
|
||||
|
|
@ -809,18 +809,18 @@ Name=Tea Time Festival,file=page_catalog_group_pro_tea_time.skt
|
|||
ชาดำเป๊ปซี่บ๊วยโซดา Pepsi Plum Thai Tea เป๊ปซี่ บ๊วย ชาไทย และโซดา Pepsi, Plum, Thai Tea And Soda - 12-99-05-0062 - bn_PEPSI_PLUM_ThaiTea_tea_time.png - - - posi1 - - -
|
||||
ชาไทยโตเกียวบานาน่า Tokyo Banana Thai Milk Tea กล้วย ชาไทย นม และน้ำแข็ง Banana , Thai Tea, Milk And Ice - 12-02-02-0054 - bn_iced_ThaimilkTea_TokyoBanana_tea_time.png - - - posi1 - - -
|
||||
ชาดำเป๊ปซี่ Pepsi เป๊ปซี่ชาดำครับจารย์ ชาไทย เป๊ปซี่ Thai Tea, Pepsi - 12-99-02-0002 - bn_PEPSI_Black_tea_tea_time.png - - - posi1 - - -
|
||||
ชาไทยโอริโอ้ปั่น Thai Milk Tea Oreo Smoothie ชาไทย นม น้ำตาล \n Oreo Thai Tea, Milk,\Nsugar, Oreo - - 12-02-03-0045 bn_THAI_MILK_TEA_OREO_SMOOTHIE_tea_time.png - - - posi1 - - -
|
||||
ชาไทยโอริโอ้ปั่น Thai Milk Tea Oreo Smoothie ชาไทย นม น้ำตาล \n Oreo Thai Tea, Milk,\nsugar, Oreo - - 12-02-03-0045 bn_THAI_MILK_TEA_OREO_SMOOTHIE_tea_time.png - - - posi1 - - -
|
||||
มัทฉะลาเต้ Matcha Latte ชาเชียว นม Matcha And Warm Milk 12-02-01-0026 12-02-02-0026 12-02-03-0026 bn_hot_matcha_milk_tea_tea_time.png - - - posi1 - - -
|
||||
มัทฉะลาเต้ Matcha Latte (H) ชาเชียว นม Matcha And Warm Milk 12-02-01-1026 12-02-02-1026 - bn_iced_Matcha_latte_tea_time.png - - - posi1 - - -
|
||||
ชาเขียวญี่ปุ่น Matcha ชาเชียว และน้ำ Matcha And Hot Water 12-02-01-0027 12-02-02-0027 12-02-03-0027 bn_hot_matcha_tea_tea_time.png - - - posi1 - - -
|
||||
ชาเขียวญี่ปุ่น Matcha (H) ชาเชียว และน้ำ Matcha And Hot Water 12-02-01-1027 12-02-02-1027 - bn_hot_matcha_tea_tea_time_health.png - - - posi1 - - -
|
||||
ชาเขียวญี่ปุ่นมะนาว Matcha Limenade ชาเชียว มะนาว Matcha, Limenade, And Hot Water 12-02-01-0028 12-02-02-0028 12-02-03-0028 bn_ICED_MATCHA_LEMONADE_tea_time.png - - - posi1 - - -
|
||||
กาแฟมัทฉะลาเต้ Matcha Cafe' Latte กาแฟ นม ชาเขียวมัทฉะ \nและ นม Espresso, Matcha, Milk 12-01-01-0031 12-01-02-0031 12-01-03-0031 BN_ICED_MATCHA_CAFE_LATTE_tea_time_health.png 12-21-01-0031 12-21-02-0031 12-21-03-0031 posi1 - - -
|
||||
มัทฉะลาเต้โตเกียวบานาน่า Tokyo Banana Matcha Cafe Latte กาแฟ น้ำ นม มัทฉะ และ กล้วย Espresso, Banana ,\NMatcha, Milk - 12-01-02-0062 - bn_ICED_TOKYO_BANANA_MATCHA_CAFE_LATTE_tea_time.png - 12-21-02-0062 - posi1 - - -
|
||||
มัทฉะลาเต้โตเกียวบานาน่า Tokyo Banana Matcha Cafe Latte กาแฟ น้ำ นม มัทฉะ และ กล้วย Espresso, Banana ,\nMatcha, Milk - 12-01-02-0062 - bn_ICED_TOKYO_BANANA_MATCHA_CAFE_LATTE_tea_time.png - 12-21-02-0062 - posi1 - - -
|
||||
มัทฉะโตเกียวบานาน่า Tokyo Banana Matcha กล้วย ผงมัชชะ และน้ำแข็ง Banana , Matcha And Ice - 12-02-02-0055 - bn_ICED_TOKYO_BANANA_MATCHA_tea_time.png - - - posi1 - - -
|
||||
โฮจิฉะลาเต้ Hojicha Latte ชาเขียวคั่ว และ นมอุ่น Hojicha And Milk 12-02-01-0037 12-02-02-0037 12-02-03-0037 bn_hot_HOJICHA_LATTE_tea_time.png - - - posi1 - - -
|
||||
โฮจิฉะลาเต้ Hojicha Latte (H) ชาเขียวคั่ว และ นมอุ่น Hojicha And Milk 12-02-01-1037 12-02-02-1037 - bn_hot_HOJICHA_LATTE_tea_time_health.png - - - posi1 - - -
|
||||
โฮจิฉะลาเต้โอริโอ้ปั่น Hojicha Oreo Smoothie โฮจิฉะ นม น้ำตาล \n Oreo Hojicha, Milk,\NSugar, Oreo - - 12-02-03-0043 bn_HOJICHA_smoothie_tea_time.png - - - posi1 - - -
|
||||
โฮจิฉะลาเต้โอริโอ้ปั่น Hojicha Oreo Smoothie โฮจิฉะ นม น้ำตาล \n Oreo Hojicha, Milk,\nSugar, Oreo - - 12-02-03-0043 bn_HOJICHA_smoothie_tea_time.png - - - posi1 - - -
|
||||
เป๊ปซี่มะลิมะนาว Pepsi Jasmine Tea เป๊ปซี่ ชามะลิ ผงมะนาว และโซดา Pepsi, Jasmine Tea, Limenade And Soda - 12-99-05-0052 - bn_PEPSI_Jasmine_tea_tea_time.png - - - posi1 - - -
|
||||
ชามะลิ Jasmine Tea ชามะลิ น้ำ Jasmine Tea ,Water 12-99-01-0042 12-99-02-0044 12-99-03-0046 bn_HOT_JASMINE_TEA_tea_time.png - - - posi1 - - -
|
||||
ชามะลินม Jasmine Milk Tea ชามะลิ และนม Jasmine Tea And Milk 12-99-01-0043 12-99-02-0045 12-99-03-0047 bn_jasmine_milk_tea_tea_time.png - - - posi1 - - -
|
||||
|
|
@ -837,7 +837,7 @@ Name=Free fire,file=page_catalog_group_pro_freefile.skt
|
|||
Name=Wednesday Melon,file=page_catalog_group_pro_wednesday_melon.skt
|
||||
นมเมล่อน Melon Milk นม และ เมล่อน Milk & Melon 12-03-01-0022 12-03-02-0022 12-03-03-0022 bn_iced_melon_milk.png - - - posi1 - - - #REF! #REF! #REF! #REF! #REF!
|
||||
กาแฟเมล่อนลาเต้ Melon\nCafe Latte กาแฟ เมล่อน น้ำตาล \nและ นม Espresso, Melon, Milk, Sugar 12-01-01-0039 12-01-02-0039 - bn_hot_melon_latte.png 12-21-01-0039 12-21-02-0039 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
เมล่อนปั่น\nโอรีโอภูเขาไฟ Melon Milk Oreo Volcano เมล่อน นม น้ำตาล \n Oreo Melon , Milk,\NSugar, Oreo - - 12-03-03-0028 bn_MelonOreo_smoothie.png - - - posi1 - - - - - #REF! NN
|
||||
เมล่อนปั่น\nโอรีโอภูเขาไฟ Melon Milk Oreo Volcano เมล่อน นม น้ำตาล \n Oreo Melon , Milk,\nSugar, Oreo - - 12-03-03-0028 bn_MelonOreo_smoothie.png - - - posi1 - - - - - #REF! NN
|
||||
เมล่อนโซดา Melon Soda เมล่อน โซดา \nและน้ำแข็ง Melon , Soda, Ice - 12-05-02-0044 - bn_iced_melon_soda.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
เป๊ปซี่เมล่อน Pepsi Melon เป๊ปซี่ เมล่อน โซดา Pepsi, Melon & Ice - 12-05-02-0047 12-05-03-0047 bn_iced_pepsi_Melon.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
เป๊ปซี่เมล่อน Pepsi Melon เป๊ปซี่ เมล่อน โซดา Pepsi, Melon & Ice - 12-05-02-0105 12-05-03-0105 bn_iced_pepsi_Melon.png - - - posi1 - - -
|
||||
|
|
@ -850,49 +850,49 @@ Name=Wednesday Melon,file=page_catalog_group_pro_wednesday_melon.skt
|
|||
กาเลคซอน Galayzon เมล่อน น้ำเชื่อมกล้วย นม และน้ำแข็ง Melon , Banana ,Milk 12-99-03-0016
|
||||
|
||||
Name=coconut,file=page_catalog_group_pro_nam_hom_coconut.skt
|
||||
มะพร้าวหาดใหญ่\n(มาก) Hat Yai Beach\nCoconut กาแฟดำมะพร้าวน้ำหอม Espresso, Coconut ,\NSugar, Water - 12-01-02-0068 - bn_hot_americano_Coconut_pro.png - 12-21-02-0068 - posi1 - - -
|
||||
มะพร้าวหาดใหญ่\n(มาก) Hat Yai Beach\nCoconut กาแฟดำมะพร้าวน้ำหอม Espresso, Coconut ,\nSugar, Water - 12-01-02-0068 - bn_hot_americano_Coconut_pro.png - 12-21-02-0068 - posi1 - - -
|
||||
มะพร้าวหาด\nบางแสน(ห้า) Bangsaen Beach\nCoconut มะพร้าวน้ำหอมปั่น Coconut And Water - - 12-05-03-0092 bn_smoothie_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nจอมเทียน(พรรษา) Jomtien Beach\nCoconut มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut , Milk,\NWater - 12-03-02-0058 12-03-03-0058 bn_iced_milk_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nนางรำ(สวย) Nang Ram Beach\nCoconut มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut , Cocoa, Milk,\NWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nทรายแก้ว(มังกร) Glass Sand Beach\nCoconut มะพร้าวน้ำหอมมัทฉะลาเต้ Coconut , Matcha Milk \NWater - 12-02-02-0060 12-02-03-0060 bn_match_milk_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nจอมเทียน(พรรษา) Jomtien Beach\nCoconut มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut , Milk,\nWater - 12-03-02-0058 12-03-03-0058 bn_iced_milk_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nนางรำ(สวย) Nang Ram Beach\nCoconut มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut , Cocoa, Milk,\nWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nทรายแก้ว(มังกร) Glass Sand Beach\nCoconut มะพร้าวน้ำหอมมัทฉะลาเต้ Coconut , Matcha Milk \nWater - 12-02-02-0060 12-02-03-0060 bn_match_milk_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nแม่พิมพ์(ดีด) Mae Pim Beach\nCoconut ชาเขียวญี่ปุ่นมะพร้าวน้ำหอม Coconut , Matcha And Water - 12-02-02-0061 12-02-03-0061 bn_iced_matcha_tea_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nแสงจันทร์(ลงทัณฑ์) Moonlight Beach\nCoconut มะพร้าวชาไทย\nนมนิวซีแลนด์ Coconut , Thai Tea, Milk \NWater - 12-02-02-0062 12-02-03-0062 bn_hot_thai_milk_tea_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nแสงจันทร์(ลงทัณฑ์) Moonlight Beach\nCoconut มะพร้าวชาไทย\nนมนิวซีแลนด์ Coconut , Thai Tea, Milk \nWater - 12-02-02-0062 12-02-03-0062 bn_hot_thai_milk_tea_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nพัทยา(พารา) Pattaya Beach\nCoconut ชาดำเย็นมะพร้าวน้ำหอม Coconut , Thai Tea And Water - 12-02-02-0063 12-02-03-0063 bn_black_tea_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nสวนสน(ใจไหม) Suan Son Beach\nCoconut มะพร้าวชามะลินมนิวซีแลนด์ Coconut , Jasmine Tea, Milk \NWater - 12-02-02-0064 12-02-03-0064 bn_jasmine_milk_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nสวนสน(ใจไหม) Suan Son Beach\nCoconut มะพร้าวชามะลินมนิวซีแลนด์ Coconut , Jasmine Tea, Milk \nWater - 12-02-02-0064 12-02-03-0064 bn_jasmine_milk_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nแหลมสิง(หไกรภพ) Laem Sing Beach\nCoconut ชามะลิมะพร้าวน้ำหอม Coconut , Jasmine Tea And Water - 12-02-02-0065 12-02-03-0065 bn_jasmine_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nเติมรัก(ฉันทำไม) Toem Rak Beach\nCoconut มะพร้าวน้ำหอมโซดา Coconut And Soda - 12-05-02-0090 - bn_iced_Coconut_soda_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nยาว(ไปยาวไป) Long Beach Coconut มะพร้าวน้ำหอมเป๊ปซี่ Coconut , Pepsi And Soda - 12-05-02-0091 12-05-03-0091 bn_iced_pepsi_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด\nยาว(ไปยาวไป) Long Beach Coconut มะพร้าวน้ำหอมเป๊ปซี่ Coconut , Pepsi And Soda 12-05-02-0114 12-05-03-0114 bn_iced_pepsi_coconut_pro.png - - - posi1 - - -
|
||||
มะพร้าวหาด(ใกล้ฉัน) Hat Beach Coconut มะพร้าวน้ำหอมลิ้นจี่โซดา Coconut , Lychee And Soda - 12-05-02-0093 - bn_iced_Lychee_Coconut_pro.png - - - posi1 - - -
|
||||
หาดนี้มีกล้วยช็อก Banana Choc Beach นมช็อกโกโตเกียว\nบานาน่า Tokyo Banana , Milk, Sugar - 12-03-02-0024 12-03-03-0024 bn_ChocoBanana_milk_pro.png - - - posi1 - - -
|
||||
ภูเขาโอรีโอระเบิดหา\nกล้วยมอด Oreo Bomb\nBanana-Beach นมกล้วยปั่น\nโอรีโอภูเขาไฟ Banana , Milk,\NSugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_pro.png - - - posi1 - - -
|
||||
โจรบุกหาดใหญ่(มาก) Pirates in Hat Yai beach กาแฟมินต์ลาเต้ Espresso, Mint ,\NSugar, Milk - 12-01-02-0057 - bn_Iced_Mint_Latte_pro.png - 12-21-02-0057 - posi1 - - -
|
||||
โจรบุกหาดบางแสน\n(ห้า) Pirates in Bangsaen Beach มินต์กาโน่ Espresso, Mint ,\NSugar, Water - 12-01-02-0058 - bn_Mint_Americano_pro.png - 12-21-02-0058 - posi1 - - -
|
||||
ภูเขาโอรีโอระเบิดหา\nกล้วยมอด Oreo Bomb\nBanana-Beach นมกล้วยปั่น\nโอรีโอภูเขาไฟ Banana , Milk,\nSugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_pro.png - - - posi1 - - -
|
||||
โจรบุกหาดใหญ่(มาก) Pirates in Hat Yai beach กาแฟมินต์ลาเต้ Espresso, Mint ,\nSugar, Milk - 12-01-02-0057 - bn_Iced_Mint_Latte_pro.png - 12-21-02-0057 - posi1 - - -
|
||||
โจรบุกหาดบางแสน\n(ห้า) Pirates in Bangsaen Beach มินต์กาโน่ Espresso, Mint ,\nSugar, Water - 12-01-02-0058 - bn_Mint_Americano_pro.png - 12-21-02-0058 - posi1 - - -
|
||||
โจรบุกหาดทรายแก้ว\n(มังกร) Pirates in Glass Sand Beach มัทฉะลาเต้มินต์ Matcha, Mint &Milk - - 12-02-03-0050 bn_Matcha_latte_mint_smoothie_pro.png - - - posi1 - - -
|
||||
โจรบุกหาดแม่พิมพ์(ดีด) Pirates in Mae Pim Beach มิมต์มอคค่า Espresso, Mint , Milk - 12-01-02-0064 - bn_Iced_Mint_Mocha_pro.png - 12-21-02-0064 - posi1 - - -
|
||||
โจรบุกหาดนางรำ\n(สวย) Pirates in Nang Ram Beach โกโก้มินต์ Mint , Milk,\NSugar, Cocoa - 12-03-02-0035 - bn_Mint_Cocoa_pro.png - - - posi1 - - -
|
||||
โจรบุกหาดแม่พิมพ์\n(ดีด) Pirates in Toem Rak Beach มินต์โอรีโอภูเขาไฟ Mint , Milk,\NSugar, Oreo - - 12-03-03-0034 Mint_SuperVocano_pro.png - - - posi1 - - -
|
||||
โจรบุกหาด(ใกล้ฉัน) Pirates in Hat Beach นมสตรอเบอร์รี่มินต์ Mint , Milk,\NStrawberry - - 12-03-03-0037 bn_Mint_Milk_Straw_Smoothie_pro.png - - - posi1 - - -
|
||||
โจรบุกหาดนางรำ\n(สวย) Pirates in Nang Ram Beach โกโก้มินต์ Mint , Milk,\nSugar, Cocoa - 12-03-02-0035 - bn_Mint_Cocoa_pro.png - - - posi1 - - -
|
||||
โจรบุกหาดแม่พิมพ์\n(ดีด) Pirates in Toem Rak Beach มินต์โอรีโอภูเขาไฟ Mint , Milk,\nSugar, Oreo - - 12-03-03-0034 Mint_SuperVocano_pro.png - - - posi1 - - -
|
||||
โจรบุกหาด(ใกล้ฉัน) Pirates in Hat Beach นมสตรอเบอร์รี่มินต์ Mint , Milk,\nStrawberry - - 12-03-03-0037 bn_Mint_Milk_Straw_Smoothie_pro.png - - - posi1 - - -
|
||||
โจรบุกหาดพัทยา\n(พารา) Pirates in Pattaya Beach สตรอเบอร์รี่\nมินต์โซดา Mint , Strawberry , Lime, Soda & Ice - 12-05-02-0063 - bn_Mint_Strawberry_Soda_pro.png - - - posi1 - - -
|
||||
โจรบุกหาดสวนสน\n(ใจไหม) Pirates in Suan Son Beach ยูซุมินต์โซดา Mint , Yuzu Soda & Ice - 12-05-02-0064 - BN_Yuzu_Mint_Soda_pro.png - - - posi1 - - -
|
||||
โจรบุกหาดยาว\n(ไปยาวไป) Pirates in Long Beach เป๊ปซี่มินต์ Pepsi, Mint And Soda - 12-05-02-0067 - bn_Mint_pepsi_pro.png - - - posi1 - - -
|
||||
|
||||
Name=cocoa7.7,file=page_catalog_group_pro_cocoa_77.skt
|
||||
มอคค่า Mocha กาแฟ นม โกโก้ และ น้ำตาล Espresso, Cocoa, Milk, Sugar 12-01-01-0006 12-01-02-0003 12-01-03-0003 bn_hot_Mocha_cocoa77 12-21-01-0006 12-21-02-0003 12-21-03-0003 posi1 - - - #REF! #REF! #REF! #REF! #REF!
|
||||
มอคค่า Mocha กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\NMilk, Sugar 12-01-01-1006 12-01-02-1003 - cocoa_mocha_Healthy_cocoa77 12-21-01-1006 12-21-02-1003 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
มอคค่าโตเกียวบานาน่า Tokyo banana Mocha กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\NCocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_hot_Banana_Mocha_cocoa77 - 12-21-02-0061 12-21-03-0061 posi1 - - -
|
||||
มอคค่า Mocha กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\nMilk, Sugar 12-01-01-1006 12-01-02-1003 - cocoa_mocha_Healthy_cocoa77 12-21-01-1006 12-21-02-1003 - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
มอคค่าโตเกียวบานาน่า Tokyo banana Mocha กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\nCocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_hot_Banana_Mocha_cocoa77 - 12-21-02-0061 12-21-03-0061 posi1 - - -
|
||||
โกโก้ Cocoa โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar 12-03-01-0002 12-03-02-0002 12-03-03-0002 bn_iced_cocoa_cocoa77 - - - posi1 - - - #REF! #REF! #REF! #REF! #REF!
|
||||
โกโก้ Cocoa โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar 12-03-01-1002 12-03-02-1002 - bn_iced_cocoa_Healthy_cocoa77 - - - posi1 - - - #REF! #REF! - #REF! #REF!
|
||||
คาราเมลโกโก้ Caramel Cocoa โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Milk,Sugar,\NCaramel 12-03-01-0004 12-03-02-0004 12-03-03-0004 bn_iced_caramel_cocoa_cocoa77 - - - posi1 - - - #REF! #REF! #REF! #REF! #REF!
|
||||
คาราเมลโกโก้ Caramel Cocoa โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Milk,Sugar,\nCaramel 12-03-01-0004 12-03-02-0004 12-03-03-0004 bn_iced_caramel_cocoa_cocoa77 - - - posi1 - - - #REF! #REF! #REF! #REF! #REF!
|
||||
นมช็อกโกโตเกียว\nบานาน่า Choco Tokyo\nBanana Milk โกโก้ บานาน่า นมและน้ำตาล Tokyo Banana , Milk, Sugar 12-03-01-0024 12-03-02-0024 12-03-03-0024 bn_ChocoBanana_milk_cocoa77 - - - posi1 - - -
|
||||
โกโก้ยูซุ Cocoa Yuzu โกโก้ และยูซุ Cocoa And Yuzu 12-03-01-0025 12-03-02-0025 12-03-03-0025 bn_ChocoYuzu_milk_cocoa77 - - - posi1 - - - #REF! #REF! #REF! #REF! #REF!
|
||||
โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\NSugar, Cocoa 12-03-01-0035 12-03-02-0035 12-03-03-0035 bn_Mint_Cocoa_cocoa77 - - - posi1 - - -
|
||||
โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\nSugar, Cocoa 12-03-01-0035 12-03-02-0035 12-03-03-0035 bn_Mint_Cocoa_cocoa77 - - - posi1 - - -
|
||||
ช็อกโกโตเกียวบานาน่า Cocoa Banana Milk กล้วย โกโก้ นมและน้ำแข็ง Cocoa, Banana , Milk And Ice - 12-03-02-0040 - bn_ChocoBanana_milk_cocoa77 - - - posi1 - - -
|
||||
มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut \NChocolate Milk มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\NWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut_cocoa77 - - - posi1 - - -
|
||||
มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut \nChocolate Milk มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\nWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut_cocoa77 - - - posi1 - - -
|
||||
โกโก้สตอเบอร์รี่ปั่น Strawberry Cocoa \nSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Milk, Cocoa, Strawberry - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie_cocoa77 - - - posi1 - - - - - #REF! NN #REF!
|
||||
โกโก้ปั่น\nโอรีโอภูเขาไฟ Choco Oreo Volcano โกโก้ นม น้ำตาล \n Oreo Cocoa, Milk,\NSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie_cocoa77 - - - posi1 - - - - - #REF! NN
|
||||
ช็อคโก้สตรอว์เบอร์รี่\nโตเกียวบานาน่าปั่น Strawberry Choco Tokyo Banana Smoothie กล้วย สตรอเบอร์รี่ นม และโกโก้ Banana , Strawberry ,\NMilk, Cocoa - - 12-03-03-0044 bn_iced_Choco_strawberry_banana_smoothie_cocoa77 - - - posi2 - - -
|
||||
โกโก้\nบิสคอฟ Cocoa Milk \nBiscoff Volcano โกโก้ นม น้ำตาล \n บิสคอฟ Cocoa, Milk,\NSugar, Biscoff - - 12-03-03-0061 bn_cocoa_MILK_BISCOFF_cocoa77 - - - posi1 - - -
|
||||
โกโก้ปั่น\nโอรีโอภูเขาไฟ Choco Oreo Volcano โกโก้ นม น้ำตาล \n Oreo Cocoa, Milk,\nSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie_cocoa77 - - - posi1 - - - - - #REF! NN
|
||||
ช็อคโก้สตรอว์เบอร์รี่\nโตเกียวบานาน่าปั่น Strawberry Choco Tokyo Banana Smoothie กล้วย สตรอเบอร์รี่ นม และโกโก้ Banana , Strawberry ,\nMilk, Cocoa - - 12-03-03-0044 bn_iced_Choco_strawberry_banana_smoothie_cocoa77 - - - posi2 - - -
|
||||
โกโก้\nบิสคอฟ Cocoa Milk \nBiscoff Volcano โกโก้ นม น้ำตาล \n บิสคอฟ Cocoa, Milk,\nSugar, Biscoff - - 12-03-03-0061 bn_cocoa_MILK_BISCOFF_cocoa77 - - - posi1 - - -
|
||||
เมล่อนบานาน่านมปั่น Melon Banana\nMilk Smoothie โกโก้ นม เมล่อน Cocoa, Milk, Melon - - 12-99-03-0017 bn_iced_melon_cocoa_smoothie_cocoa77 - - - posi1 - - -
|
||||
เป๊ปซี่โกโก้โอรีโอภูเขาไฟ Pepsi Cocoa Oreo \nVolcano เป๊ปซี่ โกโก้ นม และโอรีโอ Pepsi, Cocoa, Milk, Oreo And Ice - - 12-99-03-0067 bn_ChocoOreo_PEPSI_smoothie_cocoa77 - - - posi1 - - -
|
||||
เป๊ปซี่โกโก้โอรีโอภูเขาไฟ Pepsi Cocoa Oreo \nVolcano เป๊ปซี่ โกโก้ นม และโอรีโอ Pepsi, Cocoa, Milk, Oreo And Ice - - 12-99-03-0068 bn_ChocoOreo_PEPSI_smoothie_cocoa77 - - - posi1 - - -
|
||||
|
|
@ -931,8 +931,8 @@ Name=7up,file=page_catalog_group_pro_7up_lucky_draw_x2.skt
|
|||
เป๊ปซี่นม Pepsi Milk เป๊ปซี่ นม Pepsi, Milk - 12-99-05-0067 - bn_Pepsi_Milk_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่บ๊วย Pepsi Plum เป๊ปซี่ บ๊วย โซดา Pepsi, Ume & Ice - 12-05-02-0046 - bn_Pepsi_Plum_lucky_draw_x2.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
เป๊ปซี่บ๊วย Pepsi Plum เป๊ปซี่ บ๊วย โซดา Pepsi, Ume & Ice - 12-05-02-0104 - bn_Pepsi_Plum_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่สละ Pepsi Salak Lime เป๊ปซี่ สละ มะนาว และโซดา Pepsi, Salak , Lime\NAnd Soda - 12-99-05-0058 - bn_Pepsi_Salak_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่สละ Pepsi Salak Lime เป๊ปซี่ สละ มะนาว และโซดา Pepsi, Salak , Lime\NAnd Soda - 12-99-05-0068 - bn_Pepsi_Salak_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่สละ Pepsi Salak Lime เป๊ปซี่ สละ มะนาว และโซดา Pepsi, Salak , Lime\nAnd Soda - 12-99-05-0058 - bn_Pepsi_Salak_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่สละ Pepsi Salak Lime เป๊ปซี่ สละ มะนาว และโซดา Pepsi, Salak , Lime\nAnd Soda - 12-99-05-0068 - bn_Pepsi_Salak_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่มัทฉะ Pepsi Matcha เป๊ปซี่ มัทฉะ และโซดา Pepsi, Matcha And Soda - 12-99-05-0060 - bn_Pepsi_Matcha_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่มัทฉะ Pepsi Matcha เป๊ปซี่ มัทฉะ และโซดา Pepsi, Matcha And Soda - 12-99-05-0069 - bn_Pepsi_Matcha_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่ Pepsi เป๊ปซี่ Pepsi, Ice - 12-05-02-0007 - bn_Pepsi_lucky_draw_x2.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
|
|
@ -949,7 +949,7 @@ Name=7up,file=page_catalog_group_pro_7up_lucky_draw_x2.skt
|
|||
เป๊ปซี่มินต์ Pepsi Mint เป๊ปซี่ มินต์ ผงมะนาว และโซดา Pepsi, Mint Lime & Ice - 12-05-02-0108 - bn_Pepsi_Mint_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่ปั่น Pepsi Smoothie เป๊ปซี่ Pepsi, Ice - - 12-05-03-0007 bn_Pepsi_Smoothie_lucky_draw_x2.png - - - posi1 - - - - - #REF! NN #REF!
|
||||
เป๊ปซี่ปั่น Pepsi Smoothie เป๊ปซี่ Pepsi, Ice - - 12-05-03-0094 bn_Pepsi_Smoothie_lucky_draw_x2.png - - - posi1 - - - - - #REF! NN #REF!
|
||||
เป๊ปซี่ชูกำลัง Pepsi Energy เป๊ปซี่ ชูกำลัง มะนาว และโซดา Pepsi Energy , Lime\NAnd Soda - 12-99-05-0057 - bn_Pepsi_Energy_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่ชูกำลัง Pepsi Energy เป๊ปซี่ ชูกำลัง มะนาว และโซดา Pepsi Energy , Lime\nAnd Soda - 12-99-05-0057 - bn_Pepsi_Energy_lucky_draw_x2.png - - - posi1 - - -
|
||||
เป๊ปซี่เมล่อน Pepsi Melon เป๊ปซี่ เมล่อน โซดา Pepsi, Melon & Ice - 12-05-02-0047 12-05-03-0047 bn_Pepsi_Melon_lucky_draw_x2.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
เป๊ปซี่เมล่อน Pepsi Melon เป๊ปซี่ เมล่อน โซดา Pepsi, Melon & Ice - 12-05-02-0105 12-05-03-0105 bn_Pepsi_Melon_lucky_draw_x2.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
เป๊ปซี่ยูซุ Pepsi Yuzu เป๊ปซี่ ยูซุ โซดา Pepsi, Yuzu & Ice - 12-05-02-0053 - bn_Pepsi_Yuzu_lucky_draw_x2.png - - - posi1 - - -
|
||||
|
|
@ -966,44 +966,44 @@ Name=โก้ได้แม่,file=page_catalog_group_pro_mom_cocoa.skt
|
|||
โกโก้ตัววีนบุตร Cocoa Soda โกโก้ และโซดา Cocoa , Soda , Ice - 12-03-02-0071 - CocoaNoMilk_mom_cocoa_soda.png - - - posi1 - - -
|
||||
โกโก้ตัวสปอยล์บุตร Cocoa 7up soda โกโก้ 7up และโซดา Cocoa , 7Up, Soda , Ice - 12-03-02-0074 - CocoaNoMilk_mom_cocoa_7up.png - - - posi1 - - -
|
||||
มอคค่า Mocha กาแฟ นม โกโก้ และ น้ำตาล Espresso, Cocoa, Milk, Sugar 12-01-01-0006 12-01-02-0003 12-01-03-0003 bn_hot_mocha.png - - - posi1 - - -
|
||||
มอคค่า (ทางเลือกสุขภาพ) Mocha (Healthy Option) กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\NMilk, Sugar 12-01-01-1006 12-01-02-1003 - bn_hot_Mocha_Healthy.png - - - posi1 - - -
|
||||
มอคค่า (ทางเลือกสุขภาพ) Mocha (Healthy Option) กาแฟ นม ผสมช็อกโกแลต\nน้ำตาล Espresso, Cocoa,\nMilk, Sugar 12-01-01-1006 12-01-02-1003 - bn_hot_Mocha_Healthy.png - - - posi1 - - -
|
||||
IGNORE มินต์มอคค่า Mint Mocha มิมต์มอคค่า Espresso, Mint , Milk - 12-01-02-0064 - bn_Iced_Mint_Mocha_passion.png - - - posi1 - - -
|
||||
มอคค่ามัทฉะโตเกียวบานาน่า Tokyo Banana Mocha กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\NCocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_hot_Banana_Mocha.png - - - posi1 - - -
|
||||
มอคค่ามัทฉะโตเกียวบานาน่า Tokyo Banana Mocha กาแฟ น้ำ นม โกโก้ และ กล้วย Espresso, Banana ,\nCocoa, Milk - 12-01-02-0061 12-01-03-0061 bn_hot_Banana_Mocha.png - - - posi1 - - -
|
||||
โกโก้ Cocoa โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar 12-03-01-0002 12-03-02-0002 12-03-03-0002 bn_iced_cocoa.png - - - posi1 - - -
|
||||
โกโก้ (ทางเลือกสุขภาพ) Cocoa (Healthy Option) โกโก้ นมและน้ำตาล Milk, Cocoa, Sugar - 12-03-02-1002 - bn_iced_cocoa_Healthy.png - - - posi1 - - -
|
||||
คาราเมลโกโก้ Caramel Cocoa โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Milk,Sugar,\NCaramel 12-03-01-0004 12-03-02-0004 12-03-03-0004 bn_iced_caramel_cocoa.png - - - posi1 - - -
|
||||
คาราเมลโกโก้ Caramel Cocoa โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Milk,Sugar,\nCaramel 12-03-01-0004 12-03-02-0004 12-03-03-0004 bn_iced_caramel_cocoa.png - - - posi1 - - -
|
||||
ช็อกโกโตเกียวบานาน่า Chocobanana โกโก้ โตเกียวบานาน่า นมและน้ำตาล Tokyo Banana , Milk, Sugar 12-03-01-0024 12-03-02-0024 12-03-03-0024 bn_ChocoBanana_milk.png - - - posi1 - - -
|
||||
โกโก้ยูซุ Cocoa Yuzu โกโก้ และยูซุ Cocoa And Yuzu 12-03-01-0025 12-03-02-0025 12-03-03-0025 bn_ChocoYuzu_milk.png - - - posi1 - - -
|
||||
โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\Nsugar, Cocoa 12-03-01-0035 12-03-02-0035 12-03-03-0035 bn_Mint_Cocoa.png - - - posi1 - - -
|
||||
โกโก้พีช Peach Cocao Milk พีช นม โกโก้ และน้ำ Peach , Milk, Cocoa\NWater - 12-03-02-0039 12-03-03-0039 bn_peach_Cocoa.png - - - posi1 - - -
|
||||
โกโก้มะพร้าวน้ำหอม Coconut Cocoa มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\NWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut.png - - - posi1 - - -
|
||||
โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\nsugar, Cocoa 12-03-01-0035 12-03-02-0035 12-03-03-0035 bn_Mint_Cocoa.png - - - posi1 - - -
|
||||
โกโก้พีช Peach Cocao Milk พีช นม โกโก้ และน้ำ Peach , Milk, Cocoa\nWater - 12-03-02-0039 12-03-03-0039 bn_peach_Cocoa.png - - - posi1 - - -
|
||||
โกโก้มะพร้าวน้ำหอม Coconut Cocoa มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk,\nWater - 12-03-02-0059 12-03-03-0059 bn_iced_Cocoa_coconut.png - - - posi1 - - -
|
||||
โกโก้สตรอว์เบอร์รี่ปั่น Cocoa Strawberry Smoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Milk, Cocoa, Strawberry - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie.png - - - posi1 - - -
|
||||
โกโก้โอรีโอปั่น Choco Oreo Smoothie โกโก้ นม น้ำตาล \n Oreo Cocoa, Milk,\NSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie.png - - - posi1 - - -
|
||||
ช็อกโกโตเกีียวบานาน่าสตรอว์เบอร์รี่ Tokyo Banana Cocoa Straw Smoothie กล้วย สตรอเบอร์รี่ นม และโกโก้ Banana , Strawberry ,\NMilk, Cocoa - - 12-03-03-0044 bn_iced_Choco_strawberry_banana_smoothie_mom_cocoa.png - - - posi1 - - -
|
||||
โกโก้โอรีโอปั่น Choco Oreo Smoothie โกโก้ นม น้ำตาล \n Oreo Cocoa, Milk,\nSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie.png - - - posi1 - - -
|
||||
ช็อกโกโตเกีียวบานาน่าสตรอว์เบอร์รี่ Tokyo Banana Cocoa Straw Smoothie กล้วย สตรอเบอร์รี่ นม และโกโก้ Banana , Strawberry ,\nMilk, Cocoa - - 12-03-03-0044 bn_iced_Choco_strawberry_banana_smoothie_mom_cocoa.png - - - posi1 - - -
|
||||
|
||||
Name=BeautyRobinson,file=page_catalog_group_pro_robinson_beauty.skt
|
||||
เรฟลอนสตรอว์ชี่\nโซดา Revlon\NStraw Chee Soda Smoothie สตรอเบอร์รี่ ลิ้นจี่ และโซดา Strawberry , Lychee &Soda - - 12-05-03-0064 bn_iced_Lychee_straw_soda_robinson_beauty.png - - - posi1 - - -
|
||||
อาร์ตี้เป๊ปลิ้นจี่โซดา Iced Arty Pep\NLychee Soda ลิ้นจี่ เป๊ปซี่ ผงมะนาว และโซดา Lychee , Pepsi , Lime &Soda - 12-99-05-0073 - bn_iced_pepsi_Lychee_Lime_robinson_beauty.png - - - posi1 - - -
|
||||
ซีเวนน่าสตรอว์\nชี่ชาไทย Iced Sivanna\Nstraw Chee Tea สตรอเบอร์รี่ ลิ้นจี่ และชาไทย Strawberry , Lychee , Thai Tea - 12-02-02-0056 - bn_Straw_Lychee_Thaitea_robinson_beauty.png - - - posi1 - - -
|
||||
เอสเต้ดับเบิ้ลลิ้นจี่\nสตอว์กาโน่ Iced Estee Lychee\NStraw Cano สตรอเบอร์รี่ ลิ้นจี่ และกาแฟ Strawberry , Lychee , Espresso - 12-01-02-0073 - bn_Straw_Lychee_Americano_robinson_beauty.png - 12-21-02-0073 - posi1 - - -
|
||||
คลาแรงส์พลัม\nคารามิลล์ Clarins\NPlum Cara Milk Smoothie บ๊วย คาราเมล นมและน้ำแข็ง Ume , Caramel , Milk ,Ice - - 12-03-03-0046 bn_Caramel_Plum_Milk_caramel_robinson_beauty.png - - - posi1 - - -
|
||||
คลาวิน ไคลน์ โกโก้ชี่ Iced Calvin\NKlein Cocoa Chee ลิ้นจี่ โกโก้ และนม Lychee , Cocoa , Milk - 12-03-02-0073 - bn_iced_Cocoa_Lychee_Milk_robinson_beauty.png - - - posi1 - - -
|
||||
โรสตรอว์มัทฉะ Iced Ro Straw\NMatcha สตรอเบอร์รี่ ชาเขียว และนม Strawberry , Matcha, Milk - 12-02-02-0067 - bn_Straw_Matcha_milk_robinson_beauty.png - - - posi1 - - -
|
||||
บินสตรอว์คาเฟ่ลาเต้ Iced Bin Straw\NCafe Latte สตรอเบอร์รี่ กาแฟและนม Strawberry , Espresso, Milk - 12-01-02-0074 - bn_hot_LATTE_Straw_robinson_beauty.png - 12-21-02-0074 - posi1 - - -
|
||||
สันจัสชี่ Son Jas\NChee Tea Smoothie ลิ้นจี่ ชามะลิ และน้ำ Lychee , Jasmine Tea, Water - - 12-02-03-0053 bn_HOT_JASMINE_Lychee_robinson_beauty.png - - - posi1 - - -
|
||||
เรฟลอนสตรอว์ชี่\nโซดา Revlon\nStraw Chee Soda Smoothie สตรอเบอร์รี่ ลิ้นจี่ และโซดา Strawberry , Lychee &Soda - - 12-05-03-0064 bn_iced_Lychee_straw_soda_robinson_beauty.png - - - posi1 - - -
|
||||
อาร์ตี้เป๊ปลิ้นจี่โซดา Iced Arty Pep\nLychee Soda ลิ้นจี่ เป๊ปซี่ ผงมะนาว และโซดา Lychee , Pepsi , Lime &Soda - 12-99-05-0073 - bn_iced_pepsi_Lychee_Lime_robinson_beauty.png - - - posi1 - - -
|
||||
ซีเวนน่าสตรอว์\nชี่ชาไทย Iced Sivanna\nstraw Chee Tea สตรอเบอร์รี่ ลิ้นจี่ และชาไทย Strawberry , Lychee , Thai Tea - 12-02-02-0056 - bn_Straw_Lychee_Thaitea_robinson_beauty.png - - - posi1 - - -
|
||||
เอสเต้ดับเบิ้ลลิ้นจี่\nสตอว์กาโน่ Iced Estee Lychee\nStraw Cano สตรอเบอร์รี่ ลิ้นจี่ และกาแฟ Strawberry , Lychee , Espresso - 12-01-02-0073 - bn_Straw_Lychee_Americano_robinson_beauty.png - 12-21-02-0073 - posi1 - - -
|
||||
คลาแรงส์พลัม\nคารามิลล์ Clarins\nPlum Cara Milk Smoothie บ๊วย คาราเมล นมและน้ำแข็ง Ume , Caramel , Milk ,Ice - - 12-03-03-0046 bn_Caramel_Plum_Milk_caramel_robinson_beauty.png - - - posi1 - - -
|
||||
คลาวิน ไคลน์ โกโก้ชี่ Iced Calvin\nKlein Cocoa Chee ลิ้นจี่ โกโก้ และนม Lychee , Cocoa , Milk - 12-03-02-0073 - bn_iced_Cocoa_Lychee_Milk_robinson_beauty.png - - - posi1 - - -
|
||||
โรสตรอว์มัทฉะ Iced Ro Straw\nMatcha สตรอเบอร์รี่ ชาเขียว และนม Strawberry , Matcha, Milk - 12-02-02-0067 - bn_Straw_Matcha_milk_robinson_beauty.png - - - posi1 - - -
|
||||
บินสตรอว์คาเฟ่ลาเต้ Iced Bin Straw\nCafe Latte สตรอเบอร์รี่ กาแฟและนม Strawberry , Espresso, Milk - 12-01-02-0074 - bn_hot_LATTE_Straw_robinson_beauty.png - 12-21-02-0074 - posi1 - - -
|
||||
สันจัสชี่ Son Jas\nChee Tea Smoothie ลิ้นจี่ ชามะลิ และน้ำ Lychee , Jasmine Tea, Water - - 12-02-03-0053 bn_HOT_JASMINE_Lychee_robinson_beauty.png - - - posi1 - - -
|
||||
โรบินสันอัพชี่ Robinson Up Chee Smoothie 7up ลิ้นจี่ ผงมะนาว และโซดา 7Up, Lychee , Lime &Soda - - 12-05-03-0115 bn_iced_7UP_Lychee_SODA_robinson_beauty.png - - - posi1 - - -
|
||||
|
||||
Name=banana_and_mint_lucky_draw_x3,file=page_catalog_group_pro_banana_mint_lucky_draw_x3.skt
|
||||
กาแฟมินต์ลาเต้ Mint Cafe Latte กาแฟ น้ำ นม และ มินต์ Espresso, Mint ,\NSugar, Milk - 12-01-02-0057 - bn_Iced_Mint_Latte_passion.png - 12-21-02-0057 - posi1 - - -
|
||||
มินต์กาโน่ Mintcano กาแฟ น้ำ และ มินต์ Espresso, Mint ,\NSugar, Water - 12-01-02-0058 - bn_Mint_Americano_passion.png - 12-21-02-0058 - posi1 - - -
|
||||
มัทฉะลาเต้มินต์ Matcha Latte\NMint มัทฉะ มินต์ และนมอุ่น Matcha, Mint &Milk - - 12-02-03-0050 bn_Matcha_latte_mint_smoothie_passion.png - - - posi1 - - -
|
||||
กาแฟมินต์ลาเต้ Mint Cafe Latte กาแฟ น้ำ นม และ มินต์ Espresso, Mint ,\nSugar, Milk - 12-01-02-0057 - bn_Iced_Mint_Latte_passion.png - 12-21-02-0057 - posi1 - - -
|
||||
มินต์กาโน่ Mintcano กาแฟ น้ำ และ มินต์ Espresso, Mint ,\nSugar, Water - 12-01-02-0058 - bn_Mint_Americano_passion.png - 12-21-02-0058 - posi1 - - -
|
||||
มัทฉะลาเต้มินต์ Matcha Latte\nMint มัทฉะ มินต์ และนมอุ่น Matcha, Mint &Milk - - 12-02-03-0050 bn_Matcha_latte_mint_smoothie_passion.png - - - posi1 - - -
|
||||
มิมต์มอคค่า Mint Mocha มิมต์มอคค่า Espresso, Mint , Milk - 12-01-02-0064 - bn_Iced_Mint_Mocha_passion.png - 12-21-02-0064 - posi1 - - -
|
||||
โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\NSugar, Cocoa - 12-03-02-0035 - bn_Mint_Cocoa_passion.png - - - posi1 - - -
|
||||
โกโก้มินต์ Cocoa Mint มินต์ นม น้ำตาล และโกโก้ Mint , Milk,\nSugar, Cocoa - 12-03-02-0035 - bn_Mint_Cocoa_passion.png - - - posi1 - - -
|
||||
นมมินต์ Mint Milk มินต์ และนม Mint And Milk 12-03-01-0036 12-03-02-0036 12-03-03-0036 bn_Mint_Milk.png - - - posi1 - - -
|
||||
นมสตรอเบอร์รี่มินต์ Strawberry\NMint Milk มินต์ สตรอเบอร์รี่ นมและน้ำตาล Mint , Milk,\NStrawberry - - 12-03-03-0037 bn_Mint_Milk_Straw_Smoothie_passion.png - - - posi1 - - -
|
||||
มินต์โอรีโอภูเขาไฟ Mint Oreo Volcano มินต์ นม น้ำตาล \n Oreo Mint , Milk,\NSugar, Oreo - - 12-03-03-0034 Mint_SuperVocano_passion.png - - - posi1 - - -
|
||||
นมสตรอเบอร์รี่มินต์ Strawberry\nMint Milk มินต์ สตรอเบอร์รี่ นมและน้ำตาล Mint , Milk,\nStrawberry - - 12-03-03-0037 bn_Mint_Milk_Straw_Smoothie_passion.png - - - posi1 - - -
|
||||
มินต์โอรีโอภูเขาไฟ Mint Oreo Volcano มินต์ นม น้ำตาล \n Oreo Mint , Milk,\nSugar, Oreo - - 12-03-03-0034 Mint_SuperVocano_passion.png - - - posi1 - - -
|
||||
มินต์มะนาวโซดา Mint Lime Soda มินต์ มะนาว และโซดา Mint , Lime, Soda & Ice - 12-05-02-0060 - bn_iced_mint_lime_soda.png - - - posi1 - - -
|
||||
สตรอเบอร์รี่\nมินต์โซดา Strawberry\NMint Soda มินต์ สตรอเบอร์รี่ มะนาว และโซดา Mint , Strawberry , Lime, Soda & Ice - 12-05-02-0063 - bn_Mint_Strawberry_Soda_passion.png - - - posi1 - - -
|
||||
สตรอเบอร์รี่\nมินต์โซดา Strawberry\nMint Soda มินต์ สตรอเบอร์รี่ มะนาว และโซดา Mint , Strawberry , Lime, Soda & Ice - 12-05-02-0063 - bn_Mint_Strawberry_Soda_passion.png - - - posi1 - - -
|
||||
ยูซุมินต์โซดา Yuzu Mint Soda มินต์ ยูซุ และโซดา Mint , Yuzu Soda & Ice - 12-05-02-0064 - BN_Yuzu_Mint_Soda_passion.png - - - posi1 - - -
|
||||
บ๊วยมะนาวมินต์โซดา Plum Limenade Mint Soda มินต์ บ๊วย มะนาว และโซดา Mint , Ume , Lime, Soda & Ice - 12-05-02-0065 - bn_Mint_Plum_limenade_Soda.png - - - posi1 - - -
|
||||
มินต์ลิ้นจี่มะนาวโซดา Mint Lychee Lemon Soda มินต์ ลิ้นจี่ มะนาว และโซดา Mint ,Lychee , Lime, Soda & Ice - 12-05-02-0066 - bn_Mint_Lychee_lime_soda.png - - - posi1 - - -
|
||||
|
|
@ -1020,43 +1020,43 @@ Name=banana_and_mint_lucky_draw_x3,file=page_catalog_group_pro_banana_mint_lucky
|
|||
เต่าทรงพลังโตเกียวบานาน่าโซดาเย็น Tokyo Banana Power Drink Soda กล้วย เต่าทรงพลัง (มีคาเฟอีน) Banana , Medicine Drink, Soda And Ice - 12-05-02-0078 - - - - posi1 - - -
|
||||
|
||||
Name=jemila,file=page_catalog_group_pro_jemila.skt
|
||||
หงส์ ดราก้อนมิลค์ Hong'S Dragon\NMilk เจมิลา นม และน้ำแข็ง Jemila, Milk And Ice - 12-03-02-0075 12-03-03-0075 bn_iced_milk_jemila_pro.png - - - posi1 - - -
|
||||
มุนินทร์ดริ๊งก์ Munin'S Favorite\NDrink เจมิลา น้ำ และน้ำแข็ง Jemila, Water And Ice - 12-05-02-0124 12-05-03-0124 bn_water_roomtemp_jemila_pro.png - - - posi1 - - -
|
||||
หงส์ ดราก้อนมิลค์ Hong'S Dragon\nMilk เจมิลา นม และน้ำแข็ง Jemila, Milk And Ice - 12-03-02-0075 12-03-03-0075 bn_iced_milk_jemila_pro.png - - - posi1 - - -
|
||||
มุนินทร์ดริ๊งก์ Munin'S Favorite\nDrink เจมิลา น้ำ และน้ำแข็ง Jemila, Water And Ice - 12-05-02-0124 12-05-03-0124 bn_water_roomtemp_jemila_pro.png - - - posi1 - - -
|
||||
มุตตาดื่ม Muta Drink เจมิลา ชาไทย และน้ำแข็ง Jemila, Thai Tea And Ice - 12-02-02-0068 12-02-03-0068 bn_hot_thai_tea_jemila_pro.png - - - posi1 - - -
|
||||
ใจเริงซ่าพอตัว Jai Rerng Quite\NFizzy เจมิลา โซดา และน้ำแข็ง Jemila, Soda And Ice - 12-05-02-0125 - bn_soda_jemila_pro.png - - - posi1 - - -
|
||||
ประกายดาวขอเข้ม ๆ Praglaidao Want\NIt Strong เจมิลา กาแฟ และน้ำแข็ง Jemila, Espresso And Ice - 12-01-02-0075 - bn_hot_america_no_jemila_pro.png - 12-21-02-0075 - posi1 - - -
|
||||
เกล้ามาศมหัศจรรย์ Gaomart 'S\NMiracles เจมิลา โกโก้ และน้ำแข็ง Jemila, Cocoa And Ice - 12-03-02-0076 12-03-03-0076 bn_iced_cocoa_jemila_pro.png - - - posi1 - - -
|
||||
ใจเริงซ่าพอตัว Jai Rerng Quite\nFizzy เจมิลา โซดา และน้ำแข็ง Jemila, Soda And Ice - 12-05-02-0125 - bn_soda_jemila_pro.png - - - posi1 - - -
|
||||
ประกายดาวขอเข้ม ๆ Praglaidao Want\nIt Strong เจมิลา กาแฟ และน้ำแข็ง Jemila, Espresso And Ice - 12-01-02-0075 - bn_hot_america_no_jemila_pro.png - 12-21-02-0075 - posi1 - - -
|
||||
เกล้ามาศมหัศจรรย์ Gaomart 'S\nMiracles เจมิลา โกโก้ และน้ำแข็ง Jemila, Cocoa And Ice - 12-03-02-0076 12-03-03-0076 bn_iced_cocoa_jemila_pro.png - - - posi1 - - -
|
||||
ภัทรลดาจิงเจอ Patrada'S Ginger เจมิลา ขิง และน้ำแข็ง Jemila, Ginger And Ice - 12-02-02-0069 12-02-03-0069 bn_hot_Ginger_tea_jemila_pro.png - - - posi1 - - -
|
||||
ราวีน่าเซเว่นอัพ Raveena'S 7Up\NSoda เจมิลา 7up และน้ำแข็ง Jemila, 7 Up And Ice - 12-05-02-0126 12-05-03-0126 bn_iced_7up_jemila_pro.png - - - posi1 - - -
|
||||
ราวีน่าเซเว่นอัพ Raveena'S 7Up\nSoda เจมิลา 7up และน้ำแข็ง Jemila, 7 Up And Ice - 12-05-02-0126 12-05-03-0126 bn_iced_7up_jemila_pro.png - - - posi1 - - -
|
||||
ขวัญอุมามะนาว Kwanuma'S Lime เจมิลา มะนาว และน้ำแข็ง Jemila, Lime And Ice - 12-05-02-0127 12-05-03-0127 bn_iced_lemonade_jemila_pro.png - - - posi1 - - -
|
||||
รวินทร์วรกานต์มะลิ Ravinworagarn'S\NJasmine เจมิลา ชามะลิ และน้ำแข็ง Jemila, Jasmine Tea And Ice - 12-02-02-0070 12-02-03-0070 bn_jasmine_tea_jemila_pro.png - - - posi1 - - -
|
||||
รวินทร์วรกานต์มะลิ Ravinworagarn'S\nJasmine เจมิลา ชามะลิ และน้ำแข็ง Jemila, Jasmine Tea And Ice - 12-02-02-0070 12-02-03-0070 bn_jasmine_tea_jemila_pro.png - - - posi1 - - -
|
||||
|
||||
Name=halloween,file=page_catalog_group_pro_halloween.skt
|
||||
โหด โฉด สยอง Brutal, Wicked, \NHorrifying มัทฉะ 7up มะนาว และโซดา Matcha, 7Up, Lime And Soda - 12-02-02-0080 - bn_7UP_Matcha_Lime_Soda_halloween.png - - - posi1 - - -
|
||||
ปอบเมืองลับแล Liver Of The Lost สตรอเบอร์รี่ เต่าทรงพลัง 7up\nและมะนาว Strawberry , Energy\NDrink , 7Up And Lime - - 12-05-03-0128 bn_7UP_strawberry_Energy_lime_halloween.png - - - posi1 - - -
|
||||
หมู่บ้านเลี้ยงผี The Village That\NFeeds Ghosts สตรอเบอร์รี่ นม 7up\nและมะนาว Strawberry , Milk, 7Up\Nand Lime - - 12-03-03-0084 bn_7UP_Strawberry_Milk_lime_halloween.png - - - posi1 - - -
|
||||
โหด โฉด สยอง Brutal, Wicked, \nHorrifying มัทฉะ 7up มะนาว และโซดา Matcha, 7Up, Lime And Soda - 12-02-02-0080 - bn_7UP_Matcha_Lime_Soda_halloween.png - - - posi1 - - -
|
||||
ปอบเมืองลับแล Liver Of The Lost สตรอเบอร์รี่ เต่าทรงพลัง 7up\nและมะนาว Strawberry , Energy\nDrink , 7Up And Lime - - 12-05-03-0128 bn_7UP_strawberry_Energy_lime_halloween.png - - - posi1 - - -
|
||||
หมู่บ้านเลี้ยงผี The Village That\nFeeds Ghosts สตรอเบอร์รี่ นม 7up\nและมะนาว Strawberry , Milk, 7Up\nand Lime - - 12-03-03-0084 bn_7UP_Strawberry_Milk_lime_halloween.png - - - posi1 - - -
|
||||
วิวาห์อาถรรพ์ Cursed Cuisine ลิ้นจี่ นม 7up และมะนาว Lychee , Milk, 7Up And Lime - - 12-03-03-0085 bn_7UP_Lychee_Milk_lime_halloween.png - - - posi1 - - -
|
||||
เสน่ห์-บาตรแตก Broken Bowl Charm ชาไทย สตรอเบอร์รี่ และ7up Thai Tea, Strawberry \NAnd 7Up - 12-02-02-0081 - bn_7UP_ThaiTea_Strawberry_Soda_halloween.png - - - posi1 - - -
|
||||
เมตามหาโสมม Foul Metta ชามะลิ สละ 7up และโซดา Jasmine Tea, Ume , 7Up \NAnd Soda - 12-02-02-0082 - bn_7UP_Jasmin_Plum_Soda_halloween.png - - - posi1 - - -
|
||||
เสน่ห์-บาตรแตก Broken Bowl Charm ชาไทย สตรอเบอร์รี่ และ7up Thai Tea, Strawberry \nAnd 7Up - 12-02-02-0081 - bn_7UP_ThaiTea_Strawberry_Soda_halloween.png - - - posi1 - - -
|
||||
เมตามหาโสมม Foul Metta ชามะลิ สละ 7up และโซดา Jasmine Tea, Ume , 7Up \nAnd Soda - 12-02-02-0082 - bn_7UP_Jasmin_Plum_Soda_halloween.png - - - posi1 - - -
|
||||
Ghost House\nกินอยู่กับผี Ghostly Grub ขิง สตรอเบอร์รี่ และ7up Ginger, Strawberry And 7Up 12-02-01-0079 - - bn_hot_Ginger_tea_7UP_Strawberry_halloween.png - - - posi1 - - -
|
||||
ผงกระดูกสัมภเวสี Bone-Chilling\NBites คาราเมล นม 7up และโอวัลติน Caramel , Milk, 7Up\NAnd Ovaltine - - 12-03-03-0081 Caramel_milk_7up_smoothie_top_ovaltine_halloween.png - - - posi1 - - -
|
||||
ผงกระดูกสัมภเวสี Bone-Chilling\nBites คาราเมล นม 7up และโอวัลติน Caramel , Milk, 7Up\nAnd Ovaltine - - 12-03-03-0081 Caramel_milk_7up_smoothie_top_ovaltine_halloween.png - - - posi1 - - -
|
||||
Cast แสดงเพื่อนผี Phantom Actress กาแฟ 7up มะนาว และโซดา Coffee, 7Up, Lime And Soda - 12-01-02-0082 - bn_7up_americano_lime_soda_halloween.png - 12-21-02-0082 - posi1 - - -
|
||||
ไสยเวทย์สังหาร Spooky Spells Pepsi ชาไทย นม และนำ้แข็ง Pepsi, Thai Tea , Milk And Ice - 12-03-02-0080 - bn_Pepsi_thai_milk_tea_halloween.png - - - posi1 - - -
|
||||
Mortuary\nห้องเก็บเธอ Mortuary: Storing\NHer Pepsi คาราเมล นม และน้ำแข็ง Pepsi, Caramel, Milk And Ice - - 12-03-03-0080 bn_Pepsi_caramel_milk_smoothie_halloween.png - - - posi1 - - -
|
||||
Mortuary\nห้องเก็บเธอ Mortuary: Storing\nHer Pepsi คาราเมล นม และน้ำแข็ง Pepsi, Caramel, Milk And Ice - - 12-03-03-0080 bn_Pepsi_caramel_milk_smoothie_halloween.png - - - posi1 - - -
|
||||
โค้งต้องคำสาป Cursed Curve Pepsi มะนาว ขิง และชามะลิ Pepsi, Lime, Ginger, Jasmine Tea 12-02-01-0078 - - bn_Hot_Pepsi_lime_ginger_jasmine_tea_halloween.png - - - posi1 - - -
|
||||
เสกซากผี Summoning The\NCorpse สตรอเบอร์รี่ กาแฟ 7up\nและโซดา Strawberry , Coffee, 7Up\NAnd Soda - 12-01-02-0083 - bn_7up_Coffee_Strawberry_soda_halloween.png - 12-21-02-0083 - posi1 - - -
|
||||
เสกซากผี Summoning The\nCorpse สตรอเบอร์รี่ กาแฟ 7up\nและโซดา Strawberry , Coffee, 7Up\nAnd Soda - 12-01-02-0083 - bn_7up_Coffee_Strawberry_soda_halloween.png - 12-21-02-0083 - posi1 - - -
|
||||
คนทรงผี Spirit Medium คาราเมล นม 7up และโซดา Caramel , Milk, 7Up And Ice - - 12-03-03-0082 Caramel_milk_7up_smoothie_halloween.png - - - posi1 - - -
|
||||
เลี้ยงลูกผี Raising A Ghost\NChild สตรอเบอร์รี่ นม 7up มะนาว\nและโอวัลติน Strawberry , Milk, 7Up, Lime\NAnd Ovaltine - - 12-03-03-0083 Strawberry_milk_7Up_lime__top_ovaltine_halloween.png - - - posi1 - - -
|
||||
เลี้ยงลูกผี Raising A Ghost\nChild สตรอเบอร์รี่ นม 7up มะนาว\nและโอวัลติน Strawberry , Milk, 7Up, Lime\nAnd Ovaltine - - 12-03-03-0083 Strawberry_milk_7Up_lime__top_ovaltine_halloween.png - - - posi1 - - -
|
||||
|
||||
Name=WeekdayDiscount,file=page_catalog_group_pro_weekday_discount.skt
|
||||
พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\NCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_Caramel_Espresso_Oreo_smoothie_weekday_discount.png - - 12-21-03-0078 posi1 - - -
|
||||
พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Green Tea\NCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_Caramel_GreenTea_Oreo_smoothie_weekday_discount.png - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Caramel_ThaiTea_Oreo_smoothie_weekday_discount.png - - - posi1 - - -
|
||||
มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\NSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-03-03-0058 bn_smoothie_coconut_weekday_discount.png - - - posi1 - - -
|
||||
นมสตอเบอร์รี่ปั่น Strawberry Milk\NSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-03-03-0011 bn_iced_strawberrymilk_smoothie_weekday_discount.png - - - posi1 - - -
|
||||
มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut Cocoa\NSmoothie มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk - - 12-03-03-0059 bn_smoothie_coconut_cocoa_weekday_discount.png - - - posi1 - - -
|
||||
มะพร้าวชาไทย\nนมนิวซีแลนด์ Iced Thai Milk Tea\NCoconut มะพร้าว ชาไทย นมนิวซีแลนด์ Coconut , Thai Tea, Milk - - 12-02-03-0062 bn_smoothie_coconut_thai_tea_weekday_discount.png - - - posi1 - - -
|
||||
คาราเมลโกโก้ปั่น Caramel Cocoa\NSmoothie โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Caramel, Milk - - 12-03-03-0004 bn_smoothie_cocoa_caramel_weekday_discount.png - - - posi1 - - -
|
||||
พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\nCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_Caramel_Espresso_Oreo_smoothie_weekday_discount.png - - 12-21-03-0078 posi1 - - -
|
||||
พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Green Tea\nCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_Caramel_GreenTea_Oreo_smoothie_weekday_discount.png - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Caramel_ThaiTea_Oreo_smoothie_weekday_discount.png - - - posi1 - - -
|
||||
มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\nSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-03-03-0058 bn_smoothie_coconut_weekday_discount.png - - - posi1 - - -
|
||||
นมสตอเบอร์รี่ปั่น Strawberry Milk\nSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-03-03-0011 bn_iced_strawberrymilk_smoothie_weekday_discount.png - - - posi1 - - -
|
||||
มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut Cocoa\nSmoothie มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk - - 12-03-03-0059 bn_smoothie_coconut_cocoa_weekday_discount.png - - - posi1 - - -
|
||||
มะพร้าวชาไทย\nนมนิวซีแลนด์ Iced Thai Milk Tea\nCoconut มะพร้าว ชาไทย นมนิวซีแลนด์ Coconut , Thai Tea, Milk - - 12-02-03-0062 bn_smoothie_coconut_thai_tea_weekday_discount.png - - - posi1 - - -
|
||||
คาราเมลโกโก้ปั่น Caramel Cocoa\nSmoothie โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Caramel, Milk - - 12-03-03-0004 bn_smoothie_cocoa_caramel_weekday_discount.png - - - posi1 - - -
|
||||
โกโก้สตอเบอร์รี่ปั่น Cocoa Straw Smoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie_weekday_discount.png - - - posi1 - - -
|
||||
ซูเปอร์โอริภูเขาไฟ Super Vocano นม น้ำตาล โอรีโอ Milk, Sugar, Oreo - - 12-03-03-0032 bn_super_oreo_volcano_weekday_discount.png - - - posi1 - - -
|
||||
ซูเปอร์โกโก้เข้ม คูณ 3 Iced Super Cocoa X3 โกโก้ 3x นม และน้ำตาล Milk, Cocoa, Sugar - - 12-03-03-0067 bn_smoothie_super_cocoa_x3_weekday_discount.png - - - posi1 - - -
|
||||
|
|
@ -1065,15 +1065,15 @@ Name=WeekdayDiscount,file=page_catalog_group_pro_weekday_discount.skt
|
|||
เจมิลามะนาว Jemila Lime เจมิลา มะนาว และน้ำ Jemila, Lime And Ice - - 12-05-03-0127 bn_iced_Jemila_smoothie_weekday_discount.png - - - posi1 - - -
|
||||
|
||||
Name=WeekdayDiscount,file=page_catalog_group_pro_weekday_discount_event_on.skt
|
||||
พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\NCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-99-03-0074 bn_Caramel_Espresso_Oreo_smoothie_weekday_discount_event_on.png - - 12-99-03-0075 posi1 - - -
|
||||
พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\NCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-99-03-0076 bn_Caramel_GreenTea_Oreo_smoothie_weekday_discount_event_on.png - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-99-03-0077 bn_Caramel_ThaiTea_Oreo_smoothie_weekday_discount_event_on.png - - - posi1 - - -
|
||||
มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\NSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-99-03-0058 bn_smoothie_coconut_weekday_discount_event_on.png - - - posi1 - - -
|
||||
นมสตอเบอร์รี่ปั่น Strawberry Milk\NSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-99-03-0011 bn_iced_strawberrymilk_smoothie_weekday_discount_event_on.png - - - posi1 - - -
|
||||
มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut Cocoa\NSmoothie มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk - - 12-99-03-0059 bn_smoothie_coconut_cocoa_weekday_discount_event_on.png - - - posi1 - - -
|
||||
มะพร้าวชาไทย\nนมนิวซีแลนด์ Iced Thai Milk Tea\NCoconut มะพร้าว ชาไทย นม Coconut , Thai Tea, Milk - - 12-99-03-0062 bn_smoothie_coconut_thai_tea_weekday_discount_event_on.png - - - posi1 - - -
|
||||
คาราเมลโกโก้ปั่น Caramel Cocoa\NSmoothie โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Caramel, Milk - - 12-99-03-0004 bn_smoothie_cocoa_caramel_weekday_discount_event_on.png - - - posi1 - - -
|
||||
โกโก้สตอเบอร์รี่ปั่น Cocoa Straw\NSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-99-03-0010 bn_iced_strawberrycocoa_smoothie_weekday_discount_event_on.png - - - posi1 - - -
|
||||
พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\nCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-99-03-0074 bn_Caramel_Espresso_Oreo_smoothie_weekday_discount_event_on.png - - 12-99-03-0075 posi1 - - -
|
||||
พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\nCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-99-03-0076 bn_Caramel_GreenTea_Oreo_smoothie_weekday_discount_event_on.png - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-99-03-0077 bn_Caramel_ThaiTea_Oreo_smoothie_weekday_discount_event_on.png - - - posi1 - - -
|
||||
มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\nSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-99-03-0058 bn_smoothie_coconut_weekday_discount_event_on.png - - - posi1 - - -
|
||||
นมสตอเบอร์รี่ปั่น Strawberry Milk\nSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-99-03-0011 bn_iced_strawberrymilk_smoothie_weekday_discount_event_on.png - - - posi1 - - -
|
||||
มะพร้าวโกโก้ปั่น\nนมนิวซีแลนด์ Coconut Cocoa\nSmoothie มะพร้าว โกโก้ นม และน้ำ Coconut , Cocoa, Milk - - 12-99-03-0059 bn_smoothie_coconut_cocoa_weekday_discount_event_on.png - - - posi1 - - -
|
||||
มะพร้าวชาไทย\nนมนิวซีแลนด์ Iced Thai Milk Tea\nCoconut มะพร้าว ชาไทย นม Coconut , Thai Tea, Milk - - 12-99-03-0062 bn_smoothie_coconut_thai_tea_weekday_discount_event_on.png - - - posi1 - - -
|
||||
คาราเมลโกโก้ปั่น Caramel Cocoa\nSmoothie โกโก้ นม น้ำตาล \nคาราเมล Cocoa, Caramel, Milk - - 12-99-03-0004 bn_smoothie_cocoa_caramel_weekday_discount_event_on.png - - - posi1 - - -
|
||||
โกโก้สตอเบอร์รี่ปั่น Cocoa Straw\nSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-99-03-0010 bn_iced_strawberrycocoa_smoothie_weekday_discount_event_on.png - - - posi1 - - -
|
||||
ซูเปอร์โอริภูเขาไฟ Super Vocano นม น้ำตาล โอรีโอ Milk, Sugar, Oreo - - 12-99-03-0032 bn_super_oreo_volcano_weekday_discount_event_on.png - - - posi1 - - -
|
||||
ซูเปอร์โกโก้เข้ม คูณ 3 Iced Super Cocoa X3 โกโก้ 3x นม และน้ำตาล Milk, Cocoa, Sugar - - 12-99-03-0067 bn_smoothie_super_cocoa_x3_weekday_discount_event_on.png - - - posi1 - - -
|
||||
ซูเปอร์โกโก้เข้ม คูณ 2 Ice Super Cocoa X2 โกโก้ 2x นม และน้ำตาล Milk, Cocoa, Sugar - - 12-99-03-0065 bn_smoothie_super_cocoa_x2_weekday_discount_event_on.png - - - posi1 - - -
|
||||
|
|
@ -1081,56 +1081,56 @@ Name=WeekdayDiscount,file=page_catalog_group_pro_weekday_discount_event_on.skt
|
|||
เจมิลามะนาว Jemila Lime เจมิลา มะนาว และน้ำ Jemila, Lime And Ice - - 12-99-03-0127 bn_iced_Jemila_smoothie_weekday_discount_event_on.png - - - posi1 - - -
|
||||
|
||||
Name=Oreo11.11,file=page_catalog_group_pro_oreo_11.skt
|
||||
ลาเต้ปั่นโอรีโอภูเขาไฟ Iced Cafe Latte Oreo\NSmoothie กาแฟ นม น้ำตาล และโอรีโอ Coffee, Milk, \NSugar, Oreo - - 12-01-03-0043 bn_Cafe_Latte_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
ชานมไทยโอรีโอ\nภูเขาไฟ Thai Milk Tea Oreo\NSmoothie ชาไทย นม น้ำตาล และโอรีโอ Thai Tea, Milk,\NSugar, Oreo - - 12-02-03-0044 bn_ThaiTeaOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
โอรีโอปั่นภูเขาไฟ Oreo Smoothie\NVolcano นม น้ำตาล โอรีโอ \n Milk, Sugar, Oreo, Ice - - 12-03-03-0009 bn_smoothie_oreo_oreo_11 - - - posi1 - - -
|
||||
นมชมพูปั่นโอรีโอ\nภูเขาไฟ Pink Oreo\NVolcano น้ำแดงกลิ่นสละ นม น้ำตาล \nโอรีโอ Salak , Milk,\NSugar Oreo - - 12-03-03-0026 bn_PinkOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
สตอเบอร์รี่ปั่นโอรีโอ\nภูเขาไฟ Strawberry Milk Oreo\NSmoothie สตอเบอร์รี่ นม น้ำตาล \nโอรีโอ Strawberry , Milk,\NSugar, Oreo - - 12-03-03-0027 bn_StrawberrOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
โกโก้ปั่นโอรีโอ\nภูเขาไฟ Choco Oreo\NSmoothie โกโก้ นม น้ำตาล \nโอรีโอ Cocoa, Milk,\NSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
นมคาราเมลปั่นโอรีโอ\nภูเขาไฟ Caramel Milk Oreo\NSmoothie คาราเมล นม น้ำตาล \nโอรีโอ Caramel , Milk,\NSugar, Oreo - - 12-03-03-0031 bn_CaramelOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
ลาเต้ปั่นโอรีโอภูเขาไฟ Iced Cafe Latte Oreo\nSmoothie กาแฟ นม น้ำตาล และโอรีโอ Coffee, Milk, \nSugar, Oreo - - 12-01-03-0043 bn_Cafe_Latte_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
ชานมไทยโอรีโอ\nภูเขาไฟ Thai Milk Tea Oreo\nSmoothie ชาไทย นม น้ำตาล และโอรีโอ Thai Tea, Milk,\nSugar, Oreo - - 12-02-03-0044 bn_ThaiTeaOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
โอรีโอปั่นภูเขาไฟ Oreo Smoothie\nVolcano นม น้ำตาล โอรีโอ \n Milk, Sugar, Oreo, Ice - - 12-03-03-0009 bn_smoothie_oreo_oreo_11 - - - posi1 - - -
|
||||
นมชมพูปั่นโอรีโอ\nภูเขาไฟ Pink Oreo\nVolcano น้ำแดงกลิ่นสละ นม น้ำตาล \nโอรีโอ Salak , Milk,\nSugar Oreo - - 12-03-03-0026 bn_PinkOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
สตอเบอร์รี่ปั่นโอรีโอ\nภูเขาไฟ Strawberry Milk Oreo\nSmoothie สตอเบอร์รี่ นม น้ำตาล \nโอรีโอ Strawberry , Milk,\nSugar, Oreo - - 12-03-03-0027 bn_StrawberrOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
โกโก้ปั่นโอรีโอ\nภูเขาไฟ Choco Oreo\nSmoothie โกโก้ นม น้ำตาล \nโอรีโอ Cocoa, Milk,\nSugar, Oreo - - 12-03-03-0030 bn_ChocoOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
นมคาราเมลปั่นโอรีโอ\nภูเขาไฟ Caramel Milk Oreo\nSmoothie คาราเมล นม น้ำตาล \nโอรีโอ Caramel , Milk,\nSugar, Oreo - - 12-03-03-0031 bn_CaramelOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
ซูเปอร์โอรีโอปั่น\nภูเขาไฟ Super Oocano นม น้ำตาล โอรีโอ Milk, Sugar, Oreo, Ice - - 12-03-03-0032 bn_super_oreo_volcano_oreo_11 - - - posi1 - - -
|
||||
ชานมมะลิปั่นโอรีโอ\nภูเขาไฟ Jasmine Milk Tea \Noreo Smoothie ชามะลิ นม น้ำตาล \nโอรีโอ Jasmine Tea, Milk,\NSugar, Oreo - - 12-02-03-0048 bn_jasmine_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
ชานมโฮจิฉะโอรีโอ\nภูเขาไฟ Hojicha Oreo\NSmoothie โฮจิฉะ นม น้ำตาล \nโอรีโอ Hojicha, Milk,\NSugar, Oreo - - 12-02-03-0043 bn_HojichaOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
เมล่อนปั่นโอรีโอ\nภูเขาไฟ Melon Milk Oreo\NSmoothie เมล่อน นม น้ำตาล \nโอรีโอ Melon , Milk,\NSugar, Oreo - - 12-03-03-0028 bn_MelonOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
นมกล้วยปั่นภูเขาไฟ Banana Milk Oreo\NSmoothie กล้วย นม น้ำตาล \nโอรีโอ Banana , Milk,\NSugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
มินต์โอรีโอภูเขาไฟ Mint Oreo Volcano มินต์ นม น้ำตาล \nโอรีโอ Mint , Milk,\NSugar, Oreo - - 12-03-03-0034 bn_Mint_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
ชานมขิงโอรีโอปั่น Ginger Milk Tea\Noreo Smoothie ขิง นม น้ำตาล \nโอรีโอ Ginger, Milk,\NSugar, Oreo - - 12-02-03-0056 bn_Ginger_milk_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
นมมะพร้าวปั่นโอรีโอ\nภูเขาไฟ Coconut Milk Oreo\NSmoothie มะพร้าว นม น้ำตาล \nโอรีโอ Coconut, Milk,\NSugar, Oreo - - 12-03-03-0086 bn_Coconut_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
นมยูสุปั่นโอรีโอภูเขาไฟ Yuzu Milk Oreo\NSmoothie ยูซุ นม น้ำตาล \nโอรีโอ Yuzu , Milk,\NSugar, Oreo - - 12-03-03-0087 bn_YUZU_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\NCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_Caramel_Cafe_Latte_Oreo_smoothie_oreo_11 - - 12-21-03-0078 posi1 - - -
|
||||
พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\NCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_Caramel_Matcha_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Caramel_ThaiTea_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
ชานมมะลิปั่นโอรีโอ\nภูเขาไฟ Jasmine Milk Tea \noreo Smoothie ชามะลิ นม น้ำตาล \nโอรีโอ Jasmine Tea, Milk,\nSugar, Oreo - - 12-02-03-0048 bn_jasmine_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
ชานมโฮจิฉะโอรีโอ\nภูเขาไฟ Hojicha Oreo\nSmoothie โฮจิฉะ นม น้ำตาล \nโอรีโอ Hojicha, Milk,\nSugar, Oreo - - 12-02-03-0043 bn_HojichaOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
เมล่อนปั่นโอรีโอ\nภูเขาไฟ Melon Milk Oreo\nSmoothie เมล่อน นม น้ำตาล \nโอรีโอ Melon , Milk,\nSugar, Oreo - - 12-03-03-0028 bn_MelonOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
นมกล้วยปั่นภูเขาไฟ Banana Milk Oreo\nSmoothie กล้วย นม น้ำตาล \nโอรีโอ Banana , Milk,\nSugar, Oreo - - 12-03-03-0029 bn_BananaOreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
มินต์โอรีโอภูเขาไฟ Mint Oreo Volcano มินต์ นม น้ำตาล \nโอรีโอ Mint , Milk,\nSugar, Oreo - - 12-03-03-0034 bn_Mint_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
ชานมขิงโอรีโอปั่น Ginger Milk Tea\noreo Smoothie ขิง นม น้ำตาล \nโอรีโอ Ginger, Milk,\nSugar, Oreo - - 12-02-03-0056 bn_Ginger_milk_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
นมมะพร้าวปั่นโอรีโอ\nภูเขาไฟ Coconut Milk Oreo\nSmoothie มะพร้าว นม น้ำตาล \nโอรีโอ Coconut, Milk,\nSugar, Oreo - - 12-03-03-0086 bn_Coconut_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
นมยูสุปั่นโอรีโอภูเขาไฟ Yuzu Milk Oreo\nSmoothie ยูซุ นม น้ำตาล \nโอรีโอ Yuzu , Milk,\nSugar, Oreo - - 12-03-03-0087 bn_YUZU_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\nCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_Caramel_Cafe_Latte_Oreo_smoothie_oreo_11 - - 12-21-03-0078 posi1 - - -
|
||||
พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\nCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_Caramel_Matcha_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Caramel_ThaiTea_Oreo_smoothie_oreo_11 - - - posi1 - - -
|
||||
|
||||
Name=HappyTrios,file=page_catalog_group_pro_happy_trios.skt
|
||||
พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\NCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_super_oreo_volcano_Caramel_happy_trios.png - - 12-21-03-0078 posi1 - - -
|
||||
พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\NCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_super_oreo_volcano_Matcha_happy_trios.png - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_super_oreo_volcano_ThaiTea_happy_trios.png - - - posi1 - - -
|
||||
พรีเมียมเอสเพรสโซ่\nคาราเมลโอรีโอ Premium Espresso\nCaramel Oreo กาแฟ นม คาราเมล และโอรีโอ Coffee, Milk, Caramel , Oreo - - 12-01-03-0078 bn_super_oreo_volcano_Caramel_happy_trios.png - - 12-21-03-0078 posi1 - - -
|
||||
พรีเมียมมัทฉะ\nคาราเมลโอรีโอ Premium Matcha\nCaramel Oreo มัทฉะ นม คาราเมล และโอรีโอ Matcha, Milk, Caramel , Oreo - - 12-02-03-0057 bn_super_oreo_volcano_Matcha_happy_trios.png - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_super_oreo_volcano_ThaiTea_happy_trios.png - - - posi1 - - -
|
||||
|
||||
Name=12_day_12_menu,file=page_catalog_group_pro_12_day_12_menu.skt
|
||||
ซูเปอร์โกโก้เข้ม คูณ 3 Iced Super Cocoa X3 โกโก้ 3x นม และน้ำตาล Milk, Cocoa, Sugar - - 12-03-03-0067 bn_Super_cocoa_X3_12_day_12_menu.png - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\NCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Premium_Thai_tea_caramel_12_day_12_menu.png - - - posi1 - - -
|
||||
มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\NSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-03-03-0058 bn_smoothie_coconut_12_day_12_menu.png - - - posi1 - - -
|
||||
พรีเมียมชาไทย\nคาราเมลโอรีโอ Premium Thai Tea\nCaramel Oreo ชาไทย นม คาราเมล และโอรีโอ Thai Tea, Milk, Caramel , Oreo - - 12-02-03-0058 bn_Premium_Thai_tea_caramel_12_day_12_menu.png - - - posi1 - - -
|
||||
มะพร้าวน้ำหอมปั่น\nนมนิวซีแลนด์ Coconut Milk\nSmoothie มะพร้าวน้ำหอมปั่น\nนม Coconut , Milk - - 12-03-03-0058 bn_smoothie_coconut_12_day_12_menu.png - - - posi1 - - -
|
||||
นมชมพูปั่น Pink Milk Smoothie น้ำแดงกลิ่นสละ นม \nน้ำตาล Salak , Milk, Sugar - - 12-03-03-0006 bn_iced_นมชมพู_smoothie_12_day_12_menu.png - - - posi1 - - -
|
||||
อเมริกาโน Americano กาแฟ และน้ำ Espresso, Water - 12-01-02-0001 - bn_iced_americano_12_day_12_menu.png - 12-21-02-0001 - posi1 - - -
|
||||
นมสตอเบอร์รี่ปั่น Strawberry Milk \NSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-03-03-0011 bn_iced_strawberrymilk_smoothie_12_day_12_menu.png - - - posi1 - - -
|
||||
โกโก้สตอเบอร์รี่ปั่น Strawcocoa \NSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie_12_day_12_menu.png - - - posi1 - - -
|
||||
เอสเย็นแบบไทยๆ Thai \NIced Espresso กาแฟ นม และ น้ำแข็ง Espresso, Milk, Sugar,Ice - 12-11-02-0001 - bn_iced_ESPRESSO_12_day_12_menu.png - 12-31-02-0001 - posi1 - - -
|
||||
มะพร้าว\nชามะลินมนิวซีแลนด์ Coconut \NJasmine Milk Tea มะพร้าวชามะลินมนิวซีแลนด์ Coconut , Jasmine Tea, Milk \nWater - - 12-02-03-0064 bn_iced_jasmin_milk_tea_Coconut_smoothie_12_day_12_menu.png - - - posi1 - - -
|
||||
นมสตอเบอร์รี่ปั่น Strawberry Milk \nSmoothie นม สตอเบอร์รี่ \nและน้ำแข็ง Strawberry , Milk, Sugar - - 12-03-03-0011 bn_iced_strawberrymilk_smoothie_12_day_12_menu.png - - - posi1 - - -
|
||||
โกโก้สตอเบอร์รี่ปั่น Strawcocoa \nSmoothie นม สตอเบอร์รี่ \nโกโก้ และน้ำแข็ง Cocoa, Strawberry , Milk - - 12-03-03-0010 bn_iced_strawberrycocoa_smoothie_12_day_12_menu.png - - - posi1 - - -
|
||||
เอสเย็นแบบไทยๆ Thai \nIced Espresso กาแฟ นม และ น้ำแข็ง Espresso, Milk, Sugar,Ice - 12-11-02-0001 - bn_iced_ESPRESSO_12_day_12_menu.png - 12-31-02-0001 - posi1 - - -
|
||||
มะพร้าว\nชามะลินมนิวซีแลนด์ Coconut \nJasmine Milk Tea มะพร้าวชามะลินมนิวซีแลนด์ Coconut , Jasmine Tea, Milk \nWater - - 12-02-03-0064 bn_iced_jasmin_milk_tea_Coconut_smoothie_12_day_12_menu.png - - - posi1 - - -
|
||||
ชานมไทย Thai Milk Tea ชาไทย น้ำตาล และ นมอุ่น Thai tea, Sugar, Warm milk - - 12-02-03-0039 bn_Thai_milk_tea_smoothie_12_day_12_menu.png - - - posi1 - - -
|
||||
ชาขิงมะนาว Lime \NGinger Tea ขิง มะนาว และน้ำ Ginger, Lime & Water - 12-02-02-0042 - bn_iced_Gingerlime_12_day_12_menu.png - - - posi1 - - -
|
||||
บ๊วยมะนาวโซดา Plum \NLimenade Soda บ๊วย มะนาว โซดา Ume , Limenade, \nSoda & Ice - 12-05-02-0025 - bn_iced_ume_lime_soda_12_day_12_menu.png - - - posi1 - - -
|
||||
ชาขิงมะนาว Lime \nGinger Tea ขิง มะนาว และน้ำ Ginger, Lime & Water - 12-02-02-0042 - bn_iced_Gingerlime_12_day_12_menu.png - - - posi1 - - -
|
||||
บ๊วยมะนาวโซดา Plum \nLimenade Soda บ๊วย มะนาว โซดา Ume , Limenade, \nSoda & Ice - 12-05-02-0025 - bn_iced_ume_lime_soda_12_day_12_menu.png - - - posi1 - - -
|
||||
|
||||
Name=Thick_Tea_By_Brewer,file=page_catalog_group_pro_thick_tea_by_brewer.skt
|
||||
ชาผสานปักษ์ใต้ Southern Fusion\NTea มัทฉะ ชาไทย นม และคาราเมล Matcha , Thai Tea, Milk Caramel 12-02-01-0083 12-02-02-0083 12-02-03-0083 bn_southern_fusion_tea.png - - - posi1 - - -
|
||||
มัทฉะโบราณ Traditional\NMatcha ชามะลิ มัทฉะ นม และคาราเมล Jasmine Tea, Matcha, Milk, Caramel 12-02-01-0084 12-02-02-0084 12-02-03-0084 bn_traditional_green_tea.png - - - posi1 - - -
|
||||
ชาผสานปักษ์ใต้ Southern Fusion\nTea มัทฉะ ชาไทย นม และคาราเมล Matcha , Thai Tea, Milk Caramel 12-02-01-0083 12-02-02-0083 12-02-03-0083 bn_southern_fusion_tea.png - - - posi1 - - -
|
||||
มัทฉะโบราณ Traditional\nMatcha ชามะลิ มัทฉะ นม และคาราเมล Jasmine Tea, Matcha, Milk, Caramel 12-02-01-0084 12-02-02-0084 12-02-03-0084 bn_traditional_green_tea.png - - - posi1 - - -
|
||||
ชานมชาววัง Royal Milk Tea ชาไทย ชามะลิ นม และคาราเมล Thai Tea, Jasmine Tea, Milk, Caramel 12-02-01-0085 12-02-02-0085 12-02-03-0085 bn_royal_milk_tea.png - - - posi1 - - -
|
||||
|
||||
|
||||
Name=Winter Wonder
|
||||
ซานต้าจินเจอร์ Iced Santa Ginger ขิง นม คาราเมล และน้ำ Ginger , Milk, Caramel And Water - 12-03-02-0081 -
|
||||
ช็อกโกสโนว์เฟลก Choco Snowflake Smoothie โกโก้ นม คาราเมล และโอรีโอ้ Cocoa, Milk, Caramel , \NOreo And Ice - - 12-03-03-0088
|
||||
เรนเดียร์เปปเปอร์มินต์ Reindeer Peppermint Smoothie มินต์ นม สตรอเบอร์รี่ Mint , Milk, Strawberry \NAnd Ice - - 12-03-03-0089
|
||||
คริสมาสต์ คาเฟ ลาเต้ Iced Christmas Cafe Latte กาแฟ นม มะนาว คาราเมล และน้ำ Coffee, Milk, Lime, Caramel \NAnd Water - 12-01-02-0084 - 12-21-02-0084
|
||||
ช็อกโกสโนว์เฟลก Choco Snowflake Smoothie โกโก้ นม คาราเมล และโอรีโอ้ Cocoa, Milk, Caramel , \nOreo And Ice - - 12-03-03-0088
|
||||
เรนเดียร์เปปเปอร์มินต์ Reindeer Peppermint Smoothie มินต์ นม สตรอเบอร์รี่ Mint , Milk, Strawberry \nAnd Ice - - 12-03-03-0089
|
||||
คริสมาสต์ คาเฟ ลาเต้ Iced Christmas Cafe Latte กาแฟ นม มะนาว คาราเมล และน้ำ Coffee, Milk, Lime, Caramel \nAnd Water - 12-01-02-0084 - 12-21-02-0084
|
||||
-
|
||||
|
||||
Name=BISCOFF
|
||||
|
|
@ -1145,24 +1145,24 @@ IGNORE เซเว่นอัพคุกกี้บัตเตอร์ป
|
|||
|
||||
|
||||
Name=OVALTINE,file=page_catalog_group_pro_ovaltine_school.skt
|
||||
โอวัลติน Ovaltine โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\Nand Sugar 12-03-01-0019 12-03-02-0019 12-03-03-0019 bn_iced_ovaltine.png - - - posi1 - - -
|
||||
โอวัลตินรถโรงเรียน\nภูเขาไฟ Mini Bus Ovaltine\NVolcano โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\Nand Sugar - - 12-03-03-0094 bn_iced_Ovaltine_cocoa_smoothie.png - - - posi1 - - -
|
||||
โอวัลตินรถโรงเรียน\nซุปเปอร์ภูเขาไฟ Mini Bus Ovaltine\NSuper Volcano โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\Nand Sugar - - 12-03-03-0095 bn_bn_iced_Super_Ovaltine_cocoa_smoothie.png - - - posi1 - - -
|
||||
โอวัลติน Ovaltine โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\nand Sugar 12-03-01-0019 12-03-02-0019 12-03-03-0019 bn_iced_ovaltine.png - - - posi1 - - -
|
||||
โอวัลตินรถโรงเรียน\nภูเขาไฟ Mini Bus Ovaltine\nVolcano โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\nand Sugar - - 12-03-03-0094 bn_iced_Ovaltine_cocoa_smoothie.png - - - posi1 - - -
|
||||
โอวัลตินรถโรงเรียน\nซุปเปอร์ภูเขาไฟ Mini Bus Ovaltine\nSuper Volcano โอวัลติน นม โกโก้ และน้ำตาล Ovaltine, Milk, Cocoa,\nand Sugar - - 12-03-03-0095 bn_bn_iced_Super_Ovaltine_cocoa_smoothie.png - - - posi1 - - -
|
||||
- - - posi1 - - -
|
||||
|
||||
Name=Strawberry,file=page_catalog_group_pro_strawberry_series.skt
|
||||
สตรอเบอร์รี่มะนาว\nโซดา Strawberry\NLimenade Soda สตรอเบอร์รี่ มะนาว\nน้ำตาล และโซดา Strawberry , Lime,\NSugar, Soda - 12-05-02-0023 12-05-03-0023 bn_strawberry_lime_soda.png - - - posi1 - - -
|
||||
ชาสตรอเบอร์รี่ Strawberry Tea สตรอเบอร์รี่ ชามะลิ\nและน้ำตาล Strawberry ,\NJasmine Tea, Sugar 12-02-01-0022 12-02-02-0022 12-02-03-0022 bn_hot_strawberry_tea.png - - - posi1 - - -
|
||||
สตรอเบอร์รี่โซดา Strawberry Soda สตรอเบอร์รี่ น้ำตาล\nและโซดา Strawberry , Sugar,\NSoda - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - -
|
||||
สตรอเบอร์รี่มะนาว\nโซดา Strawberry\nLimenade Soda สตรอเบอร์รี่ มะนาว\nน้ำตาล และโซดา Strawberry , Lime,\nSugar, Soda - 12-05-02-0023 12-05-03-0023 bn_strawberry_lime_soda.png - - - posi1 - - -
|
||||
ชาสตรอเบอร์รี่ Strawberry Tea สตรอเบอร์รี่ ชามะลิ\nและน้ำตาล Strawberry ,\nJasmine Tea, Sugar 12-02-01-0022 12-02-02-0022 12-02-03-0022 bn_hot_strawberry_tea.png - - - posi1 - - -
|
||||
สตรอเบอร์รี่โซดา Strawberry Soda สตรอเบอร์รี่ น้ำตาล\nและโซดา Strawberry , Sugar,\nSoda - 12-05-02-0041 12-05-03-0041 bn_iced_strawberry_soda.png - - - posi1 - - -
|
||||
น้ำสตรอเบอร์รี่ Strawberry สตรอเบอร์รี่ และน้ำตาล Strawberry , Sugar 12-05-01-0040 12-05-02-0040 12-05-03-0040 bn_iced_strawberry.png - - - posi1 - - -
|
||||
โกโก้สตรอเบอร์รี่ Cocoa Strawberry สตรอเบอร์รี่ นม โกโก้\nและน้ำตาล Strawberry , Millk,\NCocoa, Sugar 12-03-01-0010 12-03-02-0010 12-03-03-0010 bn_iced_Strawberry_cocoa.png - - - posi1 - - -
|
||||
กาแฟสตรอเบอร์รี่ Strawberry\NCafe Latte สตรอเบอร์รี่ นม กาแฟ\nและน้ำตาล Strawberry , Millk,\NCoffee, Sugar 12-01-01-0074 12-01-02-0074 12-01-03-0074 bn_hot_Strawberry_caramel_latte.png 12-21-01-0074 12-21-02-0074 12-21-03-0074 posi1 - - -
|
||||
สตรอเบอร์รี่โอริโอ้ปั่น Strawberry Milk\NOreo Smoothie สตรอเบอร์รี่ นม โอริโอ้\nและน้ำตาล Strawberry , Millk,\NCoffee, Sugar - - 12-03-03-0027 bn_Strawberr_milk_Oreo_smoothie.png - - - posi1 - - -
|
||||
โกโก้สตรอเบอร์รี่ Cocoa Strawberry สตรอเบอร์รี่ นม โกโก้\nและน้ำตาล Strawberry , Millk,\nCocoa, Sugar 12-03-01-0010 12-03-02-0010 12-03-03-0010 bn_iced_Strawberry_cocoa.png - - - posi1 - - -
|
||||
กาแฟสตรอเบอร์รี่ Strawberry\nCafe Latte สตรอเบอร์รี่ นม กาแฟ\nและน้ำตาล Strawberry , Millk,\nCoffee, Sugar 12-01-01-0074 12-01-02-0074 12-01-03-0074 bn_hot_Strawberry_caramel_latte.png 12-21-01-0074 12-21-02-0074 12-21-03-0074 posi1 - - -
|
||||
สตรอเบอร์รี่โอริโอ้ปั่น Strawberry Milk\nOreo Smoothie สตรอเบอร์รี่ นม โอริโอ้\nและน้ำตาล Strawberry , Millk,\nCoffee, Sugar - - 12-03-03-0027 bn_Strawberr_milk_Oreo_smoothie.png - - - posi1 - - -
|
||||
|
||||
Name=Red string of fate เพราะเชื่อในรักแท้,file=page_catalog_group_pro_red_string_of_fate.skt
|
||||
เพียงพบสบตารัก Chemistry Love สตรอเบอร์รี่ นม โกโก้\nมะนาว และโอวัลติน Strawberry, Milk, Cocoa,\NLime, Ovaltine - - 12-03-03-0100 bn_iced_Ovaltine_lime_milk_Strawberry_Cocoa_smoothie.png - - - posi1 - - -
|
||||
เพียงพบสบตารัก Chemistry Love สตรอเบอร์รี่ นม โกโก้\nมะนาว และโอวัลติน Strawberry, Milk, Cocoa,\nLime, Ovaltine - - 12-03-03-0100 bn_iced_Ovaltine_lime_milk_Strawberry_Cocoa_smoothie.png - - - posi1 - - -
|
||||
วิวาห์หวาน Sweet Romance โอวัลติน นม และมะนาว Ovaltine, Milk, Lime - - 12-03-03-0101 bn_iced_Ovaltine_lime_milk_smoothie.png - - - posi1 - - -
|
||||
ดั่งรักนิรันด์ Endless Love สตรอเบอร์รี่ ขิง มะนาว\nและโอวัลติน Strawberry, Ginger, Lime,\NOvaltine - - 12-03-03-0102 bn_iced_Ovaltine_lime_ginger_Strawberry_smoothie.png - - - posi1 - - -
|
||||
ดั่งรักนิรันดร์ Endless Love สตรอเบอร์รี่ ขิง มะนาว\nและโอวัลติน Strawberry, Ginger, Lime,\nOvaltine - - 12-03-03-0102 bn_iced_Ovaltine_lime_ginger_Strawberry_smoothie.png - - - posi1 - - -
|
||||
|
||||
|
||||
|
||||
|
|
@ -1194,16 +1194,16 @@ Name=bubble tea,file=page_catalog_group_pro_buble_tea.skt
|
|||
|
||||
|
||||
Name=CockTail,file=page_catalog_group_cocktail.skt
|
||||
STX On The Beach STX On The Beach Pineapple juice, Limeade, \nSoda, Ice, Malibu Pineapple Juice, Limeade, \NSoda, Ice, Malibu - 11-99-05-0001 - bn_Alcohol_ILYSB.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
STX On The Beach STX On The Beach Pineapple juice, Limeade, \nSoda, Ice, Malibu Pineapple Juice, Limeade, \nSoda, Ice, Malibu - 11-99-05-0001 - bn_Alcohol_ILYSB.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Noxious Nitrous Noxious Nitrous Mint , Limeade, Ice, Rum Mint , Limeade, Ice, Rum - 11-99-05-0002 - bn_Alcohol_Gale_Jail.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Sea Level RISE Sea Level RISE Strawberry , Limeade, \nSoda, Malibu Strawberry , Limeade, \NSoda, Malibu - 11-99-05-0003 - bn_Alcohol_Third_Behind_Bars.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Methane Bubbles Methane Bubbles Lychee, Limeade, Soda, \nMount Gay Rum Lychee, Limeade, Soda, \NMount Gay Rum - 11-99-05-0004 - bn_Alcohol_Pinky_Promise.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
My Carbon\nFootprint My Carbon\nFootprint Pineapple juice, Limeade, \nSoda, Ice, Mount Gay Rum Pineapple Juice, Limeade, \NSoda, Ice, Mount Gay Rum - 11-99-05-0005 - bn_Alcohol_Love_Potion.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Sea Level RISE Sea Level RISE Strawberry , Limeade, \nSoda, Malibu Strawberry , Limeade, \nSoda, Malibu - 11-99-05-0003 - bn_Alcohol_Third_Behind_Bars.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Methane Bubbles Methane Bubbles Lychee, Limeade, Soda, \nMount Gay Rum Lychee, Limeade, Soda, \nMount Gay Rum - 11-99-05-0004 - bn_Alcohol_Pinky_Promise.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
My Carbon\nFootprint My Carbon\nFootprint Pineapple juice, Limeade, \nSoda, Ice, Mount Gay Rum Pineapple Juice, Limeade, \nSoda, Ice, Mount Gay Rum - 11-99-05-0005 - bn_Alcohol_Love_Potion.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Fossil Fuel Fossil Fuel Coffee, Milk Ice, Rum Coffee, Milk Ice, Rum - 11-99-05-0006 - bn_Alcohol_Bedroom_Story.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Stinky Sulphur Stinky Sulphur Melon, Rum Melon, Rum - 11-99-05-0007 - bn_Alcohol_Oriental_Kink.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Biofuel Biofuel Strawberry , Pineaple \njuice Ice, Malibu Strawberry , Pineaple \NJuice Ice, Malibu - 11-99-05-0008 - bn_Alcohol_Long_Night.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Coal Story Bro Coal Story Bro Black sugar , Milk, Ice, \nMount Gay Rum Black Sugar , Milk, Ice, \NMount Gay Rum - 11-99-05-0009 - bn_Alcohol_Good_Night_Kiss.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Bangkok\nUnderwater Bangkok\nUnderwater Lychee juice, Pineaple juice, \nIce, Mount Gay Rum Lychee Juice, Pineaple Juice, \NIce, Mount Gay Rum - 11-99-05-0010 - bn_Alcohol_Forever_Love.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Biofuel Biofuel Strawberry , Pineaple \njuice Ice, Malibu Strawberry , Pineaple \nJuice Ice, Malibu - 11-99-05-0008 - bn_Alcohol_Long_Night.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Coal Story Bro Coal Story Bro Black sugar , Milk, Ice, \nMount Gay Rum Black Sugar , Milk, Ice, \nMount Gay Rum - 11-99-05-0009 - bn_Alcohol_Good_Night_Kiss.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Bangkok\nUnderwater Bangkok\nUnderwater Lychee juice, Pineaple juice, \nIce, Mount Gay Rum Lychee Juice, Pineaple Juice, \nIce, Mount Gay Rum - 11-99-05-0010 - bn_Alcohol_Forever_Love.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
|
||||
Druzhba Pipe Druzhba Pipe Blue lable, soda Blue Lable, Soda - 11-99-05-0012 - bn_iced_soda_blue.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
2050 2050 Blue lable, water Blue Lable, Water - 11-99-05-0013 - bn_iced_blue.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
|
|
@ -1212,35 +1212,38 @@ Name=CockTail,file=page_catalog_group_cocktail.skt
|
|||
Tailpipe Emissions Tailpipe Emissions Black lable, soda Black Lable, Soda - 11-99-05-0015 - bn_iced_soda_black.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
Greenwash Greenwash Black lable, water Black Lable, Water - 11-99-05-0014 - bn_iced_black.png - - - posi1 - - - - #REF! - #REF! #REF!
|
||||
|
||||
Peach Smash Peach Smash Peach , Limenade ,\nSoda, Ice, Gin Peach , Limenade ,\NSoda, Ice, Gin - 11-99-05-0019 - bn_Peach_Smash.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
Melon Fizz Melon Fizz Melon , Limenade ,\nSoda, Ice, Gin Melon , Limenade ,\NSoda, Ice, Gin - 11-99-05-0020 - bn_Melon_Fizz.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
Yuzu Collins Yuzu Collins Yuzu , Limenade ,\nSoda, Ice, Gin Yuzu , Limenade ,\NSoda, Ice, Gin - 11-99-05-0021 - bn_Yuzu_Collins.png - - - posi1 - - -
|
||||
Peach Smash Peach Smash Peach , Limenade ,\nSoda, Ice, Gin Peach , Limenade ,\nSoda, Ice, Gin - 11-99-05-0019 - bn_Peach_Smash.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
Melon Fizz Melon Fizz Melon , Limenade ,\nSoda, Ice, Gin Melon , Limenade ,\nSoda, Ice, Gin - 11-99-05-0020 - bn_Melon_Fizz.png - - - posi1 - - - - #REF! #REF! #REF! #REF!
|
||||
Yuzu Collins Yuzu Collins Yuzu , Limenade ,\nSoda, Ice, Gin Yuzu , Limenade ,\nSoda, Ice, Gin - 11-99-05-0021 - bn_Yuzu_Collins.png - - - posi1 - - -
|
||||
Gin Collins Gin Collins Gin, Limenade, Sugar, Soda and Ice Gin, Limenade, Sugar, Soda And Ice - 11-99-05-0022 - bn_Gin_Collins.png - - - posi1 - - -
|
||||
The Floral The Floral Peach , Jasmine Tea ,\nWater, Ice, Gin Peach , Jasmine Tea ,\NWater, Ice, Gin - 11-99-05-0023 - bn_The_Floral.png - - - posi1 - - -
|
||||
Combination Combination Melon , Limenade ,\nSoda, Ice, Vodka Melon , Limenade ,\NSoda, Ice, Vodka - 11-99-05-0024 - bn_Combination.png - - - posi1 - - -
|
||||
Ume Ume Ume Ume Yuzu , Plum , Limenade ,\nSoda, Ice, Vodka Yuzu , Plum , Limenade ,\NSoda, Ice, Vodka - 11-99-05-0025 - bn_Ume_Ume.png - - - posi1 - - -
|
||||
Like Sex\non The Beach Like Sex\non The Beach Peach , Limenade ,\nPineapple juice ,Soda, Ice, Vodka Peach , Limenade ,\NPineapple Juice ,Soda, Ice, Vodka - 11-99-05-0026 - bn_Like_Sex_on_The_Beach.png - - - posi1 - - -
|
||||
Plum Highball Plum Highball Yuzu , Limenade ,\nSoda, Ice, Gold label Yuzu , Limenade ,\NSoda, Ice, Gold Label - 11-99-05-0027 - bn_Plum_Highball.png - - - posi1 - - -
|
||||
The Floral The Floral Peach , Jasmine Tea ,\nWater, Ice, Gin Peach , Jasmine Tea ,\nWater, Ice, Gin - 11-99-05-0023 - bn_The_Floral.png - - - posi1 - - -
|
||||
Combination Combination Melon , Limenade ,\nSoda, Ice, Vodka Melon , Limenade ,\nSoda, Ice, Vodka - 11-99-05-0024 - bn_Combination.png - - - posi1 - - -
|
||||
Ume Ume Ume Ume Yuzu , Plum , Limenade ,\nSoda, Ice, Vodka Yuzu , Plum , Limenade ,\nSoda, Ice, Vodka - 11-99-05-0025 - bn_Ume_Ume.png - - - posi1 - - -
|
||||
Like Sex\non The Beach Like Sex\non The Beach Peach , Limenade ,\nPineapple juice ,Soda, Ice, Vodka Peach , Limenade ,\nPineapple Juice ,Soda, Ice, Vodka - 11-99-05-0026 - bn_Like_Sex_on_The_Beach.png - - - posi1 - - -
|
||||
Plum Highball Plum Highball Yuzu , Limenade ,\nSoda, Ice, Gold label Yuzu , Limenade ,\nSoda, Ice, Gold Label - 11-99-05-0027 - bn_Plum_Highball.png - - - posi1 - - -
|
||||
Draft Beer Draft Beer Beer Beer - 11-99-05-0028 - bn_Draft_beer.png - - - posi1 - - -
|
||||
Iced Beer Iced Beer Beer, Ice Beer, Ice - 11-99-05-0029 - bn_Draft_beer_with_ice.png - - - posi1 - - -
|
||||
Summer Chill Summer Chill Gin, Pineapple, Ginger, Ice Gin, Pineapple, Ginger, Ice - 11-99-05-0030 - bn_Summer_Chill.png - - - posi1 - - -
|
||||
Neon Spark Neon Spark Vodka, Melon , Lime,\nSoda , Ice Vodka, Melon , Lime,\NSoda , Ice - 11-99-05-0031 - bn_Neon_Spark.png - - - posi1 - - -
|
||||
Neon Spark Neon Spark Vodka, Melon , Lime,\nSoda , Ice Vodka, Melon , Lime,\nSoda , Ice - 11-99-05-0031 - bn_Neon_Spark.png - - - posi1 - - -
|
||||
Yuzu Martini Yuzu Martini Gin, Vodka, Yuzu , Ice Gin, Vodka, Yuzu , Ice - 11-99-05-0032 - bn_Yuzu_Martini.png - - - posi1 - - -
|
||||
Strawberry Martini Strawberry Martini Gin, Vodka, Strawberry \n, Ice Gin, Vodka, Strawberry \N, Ice - 11-99-05-0033 - bn_Strawberry_Martini.png - - - posi1 - - -
|
||||
Russian Mojito Russian Mojito Vodka, Mint , Sugar,\nLime, Ice Vodka, Mint , Sugar,\NLime, Ice - 11-99-05-0034 - bn_Russian_Mojito.png - - - posi1 - - -
|
||||
Strawberry Martini Strawberry Martini Gin, Vodka, Strawberry \n, Ice Gin, Vodka, Strawberry \n, Ice - 11-99-05-0033 - bn_Strawberry_Martini.png - - - posi1 - - -
|
||||
Russian Mojito Russian Mojito Vodka, Mint , Sugar,\nLime, Ice Vodka, Mint , Sugar,\nLime, Ice - 11-99-05-0034 - bn_Russian_Mojito.png - - - posi1 - - -
|
||||
Yuzu Highball Yuzu Highball Black, Yuzu , Ice Black, Yuzu , Ice - 11-99-05-0035 - bn_Yuzu_Highball.png - - - posi1 - - -
|
||||
Beachy Mint Beachy Mint Gin, Pineapple, Mint ,\nSoda, Ice Gin, Pineapple, Mint ,\NSoda, Ice - 11-99-05-0036 - bn_Beachy_Mint.png - - - posi1 - - -
|
||||
Black Menthe Black Menthe Black, Mint , Lime,\nSoda, Ice Black, Mint , Lime,\NSoda, Ice - 11-99-05-0037 - bn_Black_Menthe.png - - - posi1 - - -
|
||||
Wakeup Call Wakeup Call Vodka, Energy ,\nStrawberry , Soda Vodka, Energy ,\NStrawberry , Soda - 11-99-05-0038 - bn_Wakeup_Call.png - - - posi1 - - -
|
||||
Beachy Mint Beachy Mint Gin, Pineapple, Mint ,\nSoda, Ice Gin, Pineapple, Mint ,\nSoda, Ice - 11-99-05-0036 - bn_Beachy_Mint.png - - - posi1 - - -
|
||||
Black Menthe Black Menthe Black, Mint , Lime,\nSoda, Ice Black, Mint , Lime,\nSoda, Ice - 11-99-05-0037 - bn_Black_Menthe.png - - - posi1 - - -
|
||||
Wakeup Call Wakeup Call Vodka, Energy ,\nStrawberry , Soda Vodka, Energy ,\nStrawberry , Soda - 11-99-05-0038 - bn_Wakeup_Call.png - - - posi1 - - -
|
||||
Almost Umeshu Almost Umeshu Black, Plum , Lime, Ice Black, Plum , Lime, Ice - 11-99-05-0039 - bn_Almost_Umeshu.png - - - posi1 - - -
|
||||
Café Avec Liqueur Café Avec Liqueur Vodka, Coffee, Milk, Sugar, Ice Vodka, Coffee, Milk, Sugar, Ice - 11-99-05-0040 - bn_Cafe_Avec_Liqueur.png - - - posi1 - - -
|
||||
Espresso Martini Espresso Martini Gin, Coffee, Sugar, Ice Gin, Coffee, Sugar, Ice - 11-99-05-0041 - bn_Espresso_Martini.png - - - posi1 - - -
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Mint Julep Mint Julep Glenfiddich, Balvenie, Macallan Lumina, Mint, Sugar, Soda Glenfiddich, Balvenie, Macallan Lumina, Mint, Sugar, Soda
|
||||
Highland Straw Fling Highland Straw Fling Glenfiddich, Balvenie, Macallan Lumina, Strawberry, Lime, Sugar, Water Glenfiddich, Balvenie, Macallan Lumina, Strawberry, Lime, Sugar, Water
|
||||
Scotch Pineapple Sour Scotch Pineapple Sour Glenfiddich, Balvenie, Macallan Lumina, Pineapple, Lime, Sugar, Water Glenfiddich, Balvenie, Macallan Lumina, Pineapple, Lime, Sugar, Water
|
||||
Turtle Hole Turtle Hole Glenfiddich, Balvenie, Macallan Lumina, Gin, Melon, Lime, Sugar, Water Glenfiddich, Balvenie, Macallan Lumina, Gin, Melon, Lime, Sugar, Water
|
||||
Azalea Azalea Glenfiddich, Balvenie, Macallan Lumina, Gin, Pineapple, Lime, Strawberry, Water Glenfiddich, Balvenie, Macallan Lumina, Gin, Pineapple, Lime, Strawberry, Water
|
||||
Turtle of BKK Turtle of BKK Glenfiddich, Balvenie, Macallan Lumina,Coffee, Sugar, Watrer Glenfiddich, Balvenie, Macallan Lumina,Coffee, Sugar, Watrer
|
||||
TAO Island Beach TAO Island Beach Glenfiddich, Balvenie, Macallan Lumina, Pineapple, Lime, Plum, Water Glenfiddich, Balvenie, Macallan Lumina, Pineapple, Lime, Plum, Water
|
||||
Yuzu Fizzy Yuzu Fizzy Gin,Yuzu, Lime, Soda Gin,Yuzu, Lime, Soda
|
||||
Name=Obsolete,file=page_obsolete.skt
|
||||
นมมะม่วง Mango Milk นม มะม่วง Milk, Mango , & 12-03-02-0007 - - bn_Mango_milk.png - - - #REF! - - #REF! NN
|
||||
nUll nUll nUll Null 12-04-02-0012 - - - - - - #REF! - - #REF! NN
|
||||
|
|
@ -1248,18 +1251,18 @@ Name=Obsolete,file=page_obsolete.skt
|
|||
มะม่วงโซดา Mango Soda มะม่วง โซดา Mango , Soda, Ice 12-05-02-0031 - - bn_ _Mango_soda.png - - - #REF! - - #REF! NN
|
||||
strawlimenade soda nUll nUll Null 12-05-02-0023 - - - - - - #REF! - - #REF! NN
|
||||
บลูเบอร์รี่โซดา Blueberry Soda บลูเบอร์รี่ โซดา Blueberry , Soda, Ice 12-05-02-0013 - - bn_ _blueberry_soda.png - - - #REF! - - #REF! NN
|
||||
น้ำบลูเบอร์รี่ Blueberry บลูเบอร์รี่ น้ำ Blueberry ,\NWater, Ice 12-05-02-0006 - - bn_ _blueberry.png - - - #REF! - - #REF! NN
|
||||
ชาบลูเบอร์รี่ Blueberry Tea ชาไทย บลูเบอร์รี่ \n Thai Tea, Blueberry ,\NWater, Ice 12-02-02-0010 12-02-01-0010 - bn_blueberry_tea.png - - - #REF! #REF! - #REF! #REF!
|
||||
น้ำบลูเบอร์รี่ Blueberry บลูเบอร์รี่ น้ำ Blueberry ,\nWater, Ice 12-05-02-0006 - - bn_ _blueberry.png - - - #REF! - - #REF! NN
|
||||
ชาบลูเบอร์รี่ Blueberry Tea ชาไทย บลูเบอร์รี่ \n Thai Tea, Blueberry ,\nWater, Ice 12-02-02-0010 12-02-01-0010 - bn_blueberry_tea.png - - - #REF! #REF! - #REF! #REF!
|
||||
เซเว่นอัพ 7Up เซเว่นอัพ 7Up & Ice - 12-05-02-0021 12-05-03-0021 - - - - #REF! #REF! #REF! #REF!
|
||||
โค้ก Coke โค้ก Coke & Ice - 12-05-02-0019 12-05-03-0019 bn_iced_Cokecola.png - - - - #REF! #REF! #REF! #REF!
|
||||
สไปรท์ Sprite สไปรท์ Sprite & Ice - 12-05-02-0020 12-05-03-0020 bn_iced_sprite.png - - - - #REF! #REF! #REF! #REF!
|
||||
กาแฟชาไทย Thai Tea Cafe Latte กาแฟ ชาไทย นม น้ำตาล \nและ นม Espresso, Thai Tea, Milk, Sugar 12-01-01-0010 12-01-02-0007 12-01-03-0007 bn_hot_coffee_thai_milk_tea.png 12-21-01-0010 12-21-02-0007 12-21-03-0007 - - - #REF! #REF! #REF! #REF! #REF!
|
||||
- - -
|
||||
อเมริกาโนลิ้นจี่ Lychee Americano กาแฟ น้ำ และ ลิ้นจี่ Espresso, Lychee,\NSugar, Water 12-01-01-0012 12-01-02-0009 - bn_hot_lychee_espresso.png - - - - - - #REF! #REF! - #REF! #REF!
|
||||
อเมริกาโนลิ้นจี่ Lychee Americano กาแฟ น้ำ และ ลิ้นจี่ Espresso, Lychee,\nSugar, Water 12-01-01-0012 12-01-02-0009 - bn_hot_lychee_espresso.png - - - - - - #REF! #REF! - #REF! #REF!
|
||||
น้ำลิ้นจี่โซดา Lychee Soda ลิ้นจี่ โซดา Lychee , Soda & Ice - 12-05-02-0011 12-05-03-0011 bn_iced_Lychee_soda.png - - - - #REF! #REF! #REF! #REF!
|
||||
ชาไทยนม Thai Milk Tea ชาไทย นม Thai Tea, Milk, Sugar 12-02-01-0002 12-02-02-0002 12-02-03-0002 bn_hot_thai_milk_tea.png - - - #REF! #REF! #REF! #REF! #REF!
|
||||
เก็กฮวย Chrysanths Tea น้ำเก๊กฮวย น้ำตาล Chrysanthemum & Water 12-02-01-0001 12-02-02-0001 12-02-03-0001 bn_hot_chrysanthemum_tea.png - - - #REF! #REF! #REF! #REF! #REF!
|
||||
โฮจิฉะ Hojicha ชาเขียวคั่ว Hojicha 12-02-01-0036 12-02-02-0036 12-02-03-0036 bn_hot_hojicha_tea_sing.png - - - #REF! #REF! #REF! #REF! #REF!
|
||||
บลูเบอร์รี่โปรตีน Blueberry Shake เวย์โปรตีน นม \nบลูเบอร์รี่ Whey Protein,\NBlueberry & Milk - 12-04-02-0007 - bn_protein_Blueberry.png - - - - #REF! - #REF! #REF!
|
||||
โตเกียวบานาน่าโปรตีน Banana Shake เวย์โปรตีน นม \nโตเกียวบานาน่า Whey Protein, Milk,\NTokyo Banana - 12-04-02-0019 - bn_protein_Banana.png - - - - - - - #REF! - #REF! #REF!
|
||||
บลูเบอร์รี่โปรตีน Blueberry Shake เวย์โปรตีน นม \nบลูเบอร์รี่ Whey Protein,\nBlueberry & Milk - 12-04-02-0007 - bn_protein_Blueberry.png - - - - #REF! - #REF! #REF!
|
||||
โตเกียวบานาน่าโปรตีน Banana Shake เวย์โปรตีน นม \nโตเกียวบานาน่า Whey Protein, Milk,\nTokyo Banana - 12-04-02-0019 - bn_protein_Banana.png - - - - - - - #REF! - #REF! #REF!
|
||||
คำเตือนของซาตาน Jasmine Jinx เป๊ปซี่ ชามะลิ นยูซุ ผงมะนาว และโซดา Pepsi Jasmine Yuzu And Soda - 12-99-05-0063 - bn_jasmin_jinx.png - - - - - -
|
||||
|
|
|
|||
|
Can't render this file because it has a wrong number of fields in line 3.
|
BIN
video/brewing_adv14.mp4
Executable file
BIN
video/brewing_adv14.mp4
Executable file
Binary file not shown.
BIN
video/brewing_adv14_long.mp4
Normal file
BIN
video/brewing_adv14_long.mp4
Normal file
Binary file not shown.
BIN
video/brewing_adv15.mp4
Executable file
BIN
video/brewing_adv15.mp4
Executable file
Binary file not shown.
BIN
video/brewing_adv15_long.mp4
Normal file
BIN
video/brewing_adv15_long.mp4
Normal file
Binary file not shown.
118
video/script1.ev
118
video/script1.ev
|
|
@ -2,69 +2,32 @@ Var MainfileSize = 0
|
|||
DEBUGVAR BoxID
|
||||
Var EventMatch = 0
|
||||
|
||||
Var EventMatch = 1
|
||||
|
||||
DEBUGVAR EventMatch
|
||||
|
||||
If EventMatch = 1 Then
|
||||
Var WebAppShow = "Invisible"
|
||||
|
||||
GetFileSizeK "taobin_project/video/main_page_event.mp4" MainfileSize
|
||||
DEBUGVAR MainfileSize
|
||||
If MainfileSize = 10634530 Then
|
||||
|
||||
Var CurrentMainVideoTemp = 1
|
||||
Var CountDownShowButton = 0
|
||||
;Var MainPageEventWithTimeout = 25
|
||||
Var ShowButtonClickFull = "Invisible"
|
||||
|
||||
Var img_rest_main_page = "ROOT/taobin_project/image/main_page/bn_main_page_start.png"
|
||||
Var MemberButtonFileNameRest = "ROOT/taobin_project/image/main_page/bn_main_page_member.png"
|
||||
Var img_reset_topup = "ROOT/taobin_project/image/main_page/bn_main_page_topup.png"
|
||||
|
||||
Var VideoMainPage = "ROOT/taobin_project/video/main_page_event.mp4"
|
||||
|
||||
If CocktailShow = "true" Then
|
||||
|
||||
Else
|
||||
Var EventTurnOn = 1
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
If SystemDateMonthInt = 11 Then
|
||||
If SystemDateMonthInt = 2 Then
|
||||
Var OvaltineSchoolPro = 1
|
||||
|
||||
Var EDC_ThailandOn = 1
|
||||
|
||||
If SystemDateDayInt > 20 Then
|
||||
Var PremiumTriosEnable = 1
|
||||
Var GiftNewYearEnable = 1
|
||||
If SystemDateDayInt >= 10 Then
|
||||
If SystemDateDayInt <= 23 Then
|
||||
Var RedStringOfFatePro = 1
|
||||
EndIf
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
If SystemDateMonthInt = 12 Then
|
||||
DEBUGVAR HaveIngredientOvaltine
|
||||
If HaveIngredientOvaltine = "true" Then
|
||||
|
||||
Var EDC_ThailandOn = 1
|
||||
Var GiftNewYearEnable = 1
|
||||
Else
|
||||
Var OvaltineSchoolPro = 0
|
||||
Var RedStringOfFatePro = 0
|
||||
|
||||
EndIf
|
||||
|
||||
If SystemDateMonthInt = 1 Then
|
||||
If SystemDateDayInt < 20 Then
|
||||
Var EDC_ThailandOn = 1
|
||||
EndIf
|
||||
If SystemDateDayInt < 16 Then
|
||||
Var GiftNewYearEnable = 1
|
||||
EndIf
|
||||
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
DEBUGVAR OvaltineSchoolPro
|
||||
DEBUGVAR RedStringOfFatePro
|
||||
|
||||
Var MainAdvertiseRunSlot = 0
|
||||
|
||||
|
|
@ -73,21 +36,6 @@ If MainAdvertiseShowSlot = "" Then
|
|||
EndIf
|
||||
|
||||
|
||||
If brewing_adv11_long_size = "" Then
|
||||
GetFileSizeK "taobin_project/video/brewing_adv11_long.mp4" brewing_adv11_long_size
|
||||
EndIf
|
||||
DEBUGVAR brewing_adv11_long_size
|
||||
If brewing_adv11_long_size = 8233782 Then
|
||||
If WinterWonderPro = 1 Then
|
||||
|
||||
Var MainAdvertiseFileName[MainAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv11_long.mp4"
|
||||
Var MainAdvertiseVideoEnd[MainAdvertiseRunSlot] = 0
|
||||
Var EventTurnOn = 1
|
||||
Var MainAdvertiseRunSlot = MainAdvertiseRunSlot + 1
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
If brewing_adv13_long_size = "" Then
|
||||
GetFileSizeK "taobin_project/video/brewing_adv13_long.mp4" brewing_adv13_long_size
|
||||
|
|
@ -104,6 +52,41 @@ If brewing_adv13_long_size = 3789806 Then
|
|||
EndIf
|
||||
|
||||
|
||||
|
||||
If brewing_adv14_long_size = "" Then
|
||||
GetFileSizeK "taobin_project/video/brewing_adv14_long.mp4" brewing_adv14_long_size
|
||||
EndIf
|
||||
DEBUGVAR brewing_adv14_long_size
|
||||
If brewing_adv14_long_size = 5353047 Then
|
||||
If OvaltineSchoolPro = 1 Then
|
||||
|
||||
Var MainAdvertiseFileName[MainAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv14_long.mp4"
|
||||
Var MainAdvertiseVideoEnd[MainAdvertiseRunSlot] = 0
|
||||
Var EventTurnOn = 1
|
||||
Var MainAdvertiseRunSlot = MainAdvertiseRunSlot + 1
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
If brewing_adv15_long_size = "" Then
|
||||
GetFileSizeK "taobin_project/video/brewing_adv15_long.mp4" brewing_adv15_long_size
|
||||
EndIf
|
||||
DEBUGVAR brewing_adv15_long_size
|
||||
If brewing_adv15_long_size = 5579052 Then
|
||||
If RedStringOfFatePro = 1 Then
|
||||
|
||||
Var MainAdvertiseFileName[MainAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv15_long.mp4"
|
||||
Var MainAdvertiseVideoEnd[MainAdvertiseRunSlot] = 0
|
||||
Var EventTurnOn = 1
|
||||
Var MainAdvertiseRunSlot = MainAdvertiseRunSlot + 1
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
||||
|
||||
If brewing_adv21_long_size = "" Then
|
||||
GetFileSizeK "taobin_project/video/brewing_adv21_long.mp4" brewing_adv21_long_size
|
||||
EndIf
|
||||
|
|
@ -123,9 +106,6 @@ EndIf
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
If brewing_adv16_size = "" Then
|
||||
GetFileSizeK "taobin_project/video/brewing_adv16.mp4" brewing_adv16_size
|
||||
EndIf
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ If brewing_adv11_size = 18065754 Then
|
|||
Var BrewingAdvertiseDurationTime[BrewingAdvertiseRunSlot] = 15
|
||||
Var BrewingAdvertiseShowTextNextToOrder[ BrewingAdvertiseRunSlot] = 0
|
||||
|
||||
Var BrewingAdvertiseRunSlot = BrewingAdvertiseRunSlot + 1
|
||||
;Var BrewingAdvertiseRunSlot = BrewingAdvertiseRunSlot + 1
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
|
@ -142,19 +142,21 @@ If brewing_adv14_size = "" Then
|
|||
EndIf
|
||||
|
||||
DEBUGVAR brewing_adv14_size
|
||||
If brewing_adv14_size = 10634530 Then
|
||||
Var BrewingAdvertiseEnable[ BrewingAdvertiseRunSlot] = 1
|
||||
Var BrewingAdvertiseVideo[ BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv14.mp4";
|
||||
If show_eng = "true" Then
|
||||
Var BrewingAdvertiseImage[BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_txt_adv14_en.png"
|
||||
Else
|
||||
Var BrewingAdvertiseImage[BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_txt_adv14.png"
|
||||
EndIf
|
||||
If brewing_adv14_size = 9260622 Then
|
||||
If OvaltineSchoolPro = 1 Then
|
||||
Var BrewingAdvertiseEnable[ BrewingAdvertiseRunSlot] = 1
|
||||
Var BrewingAdvertiseVideo[ BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv14.mp4";
|
||||
If show_eng = "true" Then
|
||||
Var BrewingAdvertiseImage[BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_txt_adv14_en.png"
|
||||
Else
|
||||
Var BrewingAdvertiseImage[BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_txt_adv14.png"
|
||||
EndIf
|
||||
|
||||
Var BrewingAdvertiseDurationTime[BrewingAdvertiseRunSlot] = 28
|
||||
Var BrewingAdvertiseShowTextNextToOrder[ BrewingAdvertiseRunSlot] = 0
|
||||
|
||||
Var BrewingAdvertiseRunSlot = BrewingAdvertiseRunSlot + 1
|
||||
Var BrewingAdvertiseDurationTime[BrewingAdvertiseRunSlot] = 15
|
||||
Var BrewingAdvertiseShowTextNextToOrder[ BrewingAdvertiseRunSlot] = 0
|
||||
|
||||
Var BrewingAdvertiseRunSlot = BrewingAdvertiseRunSlot + 1
|
||||
EndIf
|
||||
EndIf
|
||||
|
||||
|
||||
|
|
@ -164,8 +166,8 @@ EndIf
|
|||
|
||||
|
||||
DEBUGVAR brewing_adv15_size
|
||||
If brewing_adv15_size = 8455461 Then
|
||||
If JemilaPro = 1 Then
|
||||
If brewing_adv15_size = 9493162 Then
|
||||
If RedStringOfFatePro = 1 Then
|
||||
Var BrewingAdvertiseEnable[ BrewingAdvertiseRunSlot] = 1
|
||||
Var BrewingAdvertiseVideo[ BrewingAdvertiseRunSlot] = "ROOT/taobin_project/video/brewing_adv15.mp4";
|
||||
If show_eng = "true" Then
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
total 229168
|
||||
total 239472
|
||||
-rw-rw---- 1 root sdcard_rw 18065754 2024-11-27 16:31 brewing_adv11.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 8233782 2024-12-04 15:39 brewing_adv11_long.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 9415247 2024-10-08 14:40 brewing_adv12.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 1919848 2024-12-20 22:32 brewing_adv13.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 3789806 2024-12-20 22:31 brewing_adv13_long.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 10634530 2024-10-29 11:51 brewing_adv14.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 8455461 2024-10-04 09:52 brewing_adv15.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 9260622 2025-01-09 17:28 brewing_adv14.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 5353047 2025-01-23 13:08 brewing_adv14_long.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 9493162 2025-01-10 16:11 brewing_adv15.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 5579052 2025-01-23 13:11 brewing_adv15_long.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 7422861 2024-11-05 16:08 brewing_adv16.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 10348323 2024-11-21 18:04 brewing_adv17.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 9701195 2024-11-28 13:34 brewing_adv21.mp4
|
||||
|
|
@ -18,10 +20,10 @@ total 229168
|
|||
-rw-rw---- 1 root sdcard_rw 42692 2024-08-29 11:31 brewing_txt_adv12_en.png
|
||||
-rw-rw---- 1 root sdcard_rw 50704 2024-12-20 22:09 brewing_txt_adv13.png
|
||||
-rw-rw---- 1 root sdcard_rw 50172 2024-12-20 22:10 brewing_txt_adv13_en.png
|
||||
-rw-rw---- 1 root sdcard_rw 44623 2024-09-17 14:17 brewing_txt_adv14.png
|
||||
-rw-rw---- 1 root sdcard_rw 41395 2024-09-17 14:18 brewing_txt_adv14_en.png
|
||||
-rw-rw---- 1 root sdcard_rw 44262 2024-10-04 14:41 brewing_txt_adv15.png
|
||||
-rw-rw---- 1 root sdcard_rw 43432 2024-10-04 14:41 brewing_txt_adv15_en.png
|
||||
-rw-rw---- 1 root sdcard_rw 42617 2025-01-27 10:02 brewing_txt_adv14.png
|
||||
-rw-rw---- 1 root sdcard_rw 46154 2025-01-27 10:02 brewing_txt_adv14_en.png
|
||||
-rw-rw---- 1 root sdcard_rw 37899 2025-01-27 10:02 brewing_txt_adv15.png
|
||||
-rw-rw---- 1 root sdcard_rw 35319 2025-01-27 10:02 brewing_txt_adv15_en.png
|
||||
-rw-rw---- 1 root sdcard_rw 49830 2024-11-05 16:48 brewing_txt_adv16.png
|
||||
-rw-rw---- 1 root sdcard_rw 50931 2024-11-05 16:49 brewing_txt_adv16_en.png
|
||||
-rw-rw---- 1 root sdcard_rw 47482 2024-11-05 21:28 brewing_txt_adv17.png
|
||||
|
|
@ -33,11 +35,11 @@ total 229168
|
|||
-rw-rw---- 1 root sdcard_rw 35550 2023-09-18 18:44 brewing_txt_adv3_en.png
|
||||
-rw-rw---- 1 root sdcard_rw 17402219 2024-07-16 14:21 main_page.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 10634530 2024-10-29 11:51 main_page_event.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 5063 2025-01-22 15:48 script1.ev
|
||||
-rw-rw---- 1 root sdcard_rw 4708 2025-01-28 15:33 script1.ev
|
||||
-rw-rw---- 1 root sdcard_rw 288 2024-07-24 21:21 script2.ev
|
||||
-rw-rw---- 1 root sdcard_rw 210 2024-11-10 09:20 script3_brew.ev
|
||||
-rw-rw---- 1 root sdcard_rw 10646 2024-12-22 11:12 script3_first_brewing.ev
|
||||
-rw-rw---- 1 root sdcard_rw 0 2025-01-23 15:50 sync_1.file
|
||||
-rw-rw---- 1 root sdcard_rw 10704 2025-01-27 13:42 script3_first_brewing.ev
|
||||
-rw-rw---- 1 root sdcard_rw 0 2025-01-29 09:27 sync_1.file
|
||||
-rw-rw---- 1 root sdcard_rw 4806758 2023-09-18 18:44 taobin_save_world1.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 6428830 2023-09-18 18:44 taobin_save_world2.mp4
|
||||
-rw-rw---- 1 root sdcard_rw 4634942 2023-09-18 18:44 taobin_save_world3.mp4
|
||||
|
|
|
|||
|
|
@ -214,6 +214,10 @@ If SystemDateMonthInt >= 2 Then
|
|||
EndIf
|
||||
EndIf
|
||||
|
||||
If SystemDateMonthInt >= 3 Then
|
||||
Var CleanFeedbackFlag = 1
|
||||
EndIf
|
||||
|
||||
If SystemDateMonthInt = 2 Then
|
||||
Var OvaltineSchoolPro = 1
|
||||
|
||||
|
|
@ -246,38 +250,10 @@ If BoxID = 105005 Then
|
|||
Var SugarZeroCalFreeFlag = 1
|
||||
EndIf
|
||||
|
||||
If BoxID = 176757 Then
|
||||
Var MomCocoaPro = 0
|
||||
Var MomCocoaProDiscountEnable = 0
|
||||
Var RobinsonBeautyPro = 0
|
||||
Var WeekdayDiscountPro = 1
|
||||
Var WeekdayDiscountProEventOn = 1
|
||||
Var OreoDiscount11Pro = 1
|
||||
EndIf
|
||||
|
||||
If BoxID = 201729 Then
|
||||
Var MomCocoaPro = 0
|
||||
Var MomCocoaProDiscountEnable = 0
|
||||
Var RobinsonBeautyPro = 0
|
||||
Var JemilaToppingFlag = 1
|
||||
Var JemilaToppingFreeFlag = 1
|
||||
|
||||
|
||||
Var 12Day12MenuPro = 0
|
||||
Var WinterWonderPro = 1
|
||||
Var ThickTeaByBrewerPro = 1
|
||||
Var ThickTeaByBrewerBanner = 1
|
||||
|
||||
EndIf
|
||||
|
||||
If BoxID = 201714 Then
|
||||
Var MomCocoaPro = 0
|
||||
Var MomCocoaProDiscountEnable = 0
|
||||
Var RobinsonBeautyPro = 0
|
||||
|
||||
Var JemilaToppingFlag = 1
|
||||
Var ThickTeaByBrewerPro = 1
|
||||
Var ThickTeaByBrewerBanner = 1
|
||||
Var RedStringOfFatePro = 1
|
||||
Var OvaltineSchoolPro = 1
|
||||
EndIf
|
||||
|
||||
If BoxID = 173149 Then
|
||||
|
|
@ -290,21 +266,8 @@ If BoxID = 173149 Then
|
|||
EndIf
|
||||
|
||||
If BoxID = 172644 Then
|
||||
Var MomCocoaPro = 0
|
||||
Var MomCocoaProDiscountEnable = 0
|
||||
Var RobinsonBeautyPro = 0
|
||||
Var WeekdayDiscountPro = 0
|
||||
Var WeekdayDiscountProEventOn = 0
|
||||
Var OreoDiscount11Pro = 0
|
||||
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
|
||||
Var 12Day12MenuPro = 0
|
||||
Var WinterWonderPro = 1
|
||||
Var ThickTeaByBrewerPro = 1
|
||||
|
||||
Var JemilaToppingFlag = 1
|
||||
Var RedStringOfFatePro = 1
|
||||
Var OvaltineSchoolPro = 1
|
||||
EndIf
|
||||
|
||||
Var XMLLiveInfoEnable = 1
|
||||
|
|
@ -395,6 +358,8 @@ If taobin_nopro = "true" Then
|
|||
EndIf
|
||||
|
||||
|
||||
; check material
|
||||
|
||||
If CoconutSyrupEnable = "true" Then
|
||||
|
||||
Else
|
||||
|
|
@ -449,6 +414,16 @@ Else
|
|||
Var HappyTriosPro = 0
|
||||
EndIf
|
||||
|
||||
DEBUGVAR HaveIngredientOvaltine
|
||||
If HaveIngredientOvaltine = "true" Then
|
||||
|
||||
Else
|
||||
Var OvaltineSchoolPro = 0
|
||||
Var RedStringOfFatePro = 0
|
||||
EndIf
|
||||
|
||||
DEBUGVAR OvaltineSchoolPro
|
||||
DEBUGVAR RedStringOfFatePro
|
||||
|
||||
Var CurrentMainVideoTemp = 0
|
||||
|
||||
|
|
@ -468,61 +443,8 @@ EndIf
|
|||
DEBUGVAR OreoDiscount11Pro
|
||||
|
||||
; Control collect promotion point behavior
|
||||
Var New_Payment = 0
|
||||
Var NewFlowPaymentCode = 0
|
||||
|
||||
If BoxID = 105005 Then
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
EndIf
|
||||
|
||||
If BoxID = 173149 Then
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
EndIf
|
||||
|
||||
If BoxID = 173249 Then
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
EndIf
|
||||
|
||||
If BoxID = 172053 Then
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
EndIf
|
||||
|
||||
If BoxID = 200001 Then
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
EndIf
|
||||
If BoxID = 175689 Then
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
EndIf
|
||||
If BoxID = 201729 Then
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
|
||||
Var TaobinEnergyDrinkMenu = 1
|
||||
EndIf
|
||||
|
||||
If BoxID = 172644 Then
|
||||
Var TaobinEnergyDrinkMenu = 1
|
||||
EndIf
|
||||
|
||||
|
||||
If BoxID = 200000 Then
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
EndIf
|
||||
|
||||
|
||||
If BoxID = 176757 Then
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
EndIf
|
||||
|
||||
; open now
|
||||
; open away
|
||||
Var New_Payment = 1
|
||||
Var NewFlowPaymentCode = 1
|
||||
|
||||
|
|
|
|||
|
|
@ -326,7 +326,7 @@
|
|||
if multi_pro_gen:
|
||||
out_xml('<Max> 4 </Max>\r\n')
|
||||
elif recommend_page:
|
||||
out_xml('<Max> 12 </Max>\r\n')
|
||||
out_xml('<Max> 16 </Max>\r\n')
|
||||
out_xml('<X> 10 </X>\r\n')
|
||||
out_xml('<Y> 497 </Y>\r\n')
|
||||
out_xml('<Width> 1080 </Width>\r\n')
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
|
||||
|
||||
__CMD "PayWasSent" Seeker.ORDER_ID "-" "-"
|
||||
__CMD "machine-cleanliness-score" Seeker.CleanFeedbackScore "-" "-"
|
||||
|
||||
Var PictureFileTextDesctionState = "Enable"
|
||||
|
||||
|
|
@ -119,7 +120,7 @@
|
|||
Var XStraw = 142
|
||||
EndIf
|
||||
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
|
||||
Play "ROOT/taobin_project/sound_eng/Wait_a_moment.mp3"
|
||||
|
||||
|
|
@ -194,7 +195,7 @@
|
|||
Var DirImage2 = "ROOT/taobin_project/image/topping2"
|
||||
EndIf
|
||||
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
Var DirImage = "ROOT/taobin_project/image/page_payment_mmr/page_payment"
|
||||
Var DirImage2 = "ROOT/taobin_project/image/topping_mmr"
|
||||
EndIf
|
||||
|
|
@ -422,7 +423,7 @@
|
|||
Var LangString = "LANG: "TH"\r\n"
|
||||
EndIf
|
||||
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
Var LangString = "LANG: "TH"\r\n"
|
||||
EndIf
|
||||
|
||||
|
|
@ -452,7 +453,7 @@
|
|||
Var LangString = "LANG: "TH"\r\n"
|
||||
EndIf
|
||||
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
Var LangString = "LANG: "TH"\r\n"
|
||||
EndIf
|
||||
|
||||
|
|
@ -732,7 +733,7 @@
|
|||
|
||||
PlayLong PlaySoundLag
|
||||
EndIf
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
If LanguageShow = "MYANMAR" Then
|
||||
PlayLong "/mnt/sdcard/coffeevending/taobin_project/sound_eng/next_drink.mp3"
|
||||
EndIf
|
||||
EndIf
|
||||
|
|
|
|||
|
|
@ -211,6 +211,8 @@
|
|||
STRCONTAIN "1037" MaterialAvailable 7UpSyrupEnable
|
||||
STRCONTAIN "1038" MaterialAvailable PepsiHighYSyrupEnable
|
||||
STRCONTAIN "1052" MaterialAvailable CollagenPowderEnable
|
||||
|
||||
STRCONTAIN "1065" MaterialAvailable HaveIngredientOvaltine
|
||||
|
||||
;Var AppFastEnable = "false"
|
||||
If AppFastEnable = "true" Then
|
||||
|
|
|
|||
|
|
@ -574,7 +574,7 @@ Essential nutrients" </Value>
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "App Fast \NChocolate"
|
||||
Var NameDrink = "App Fast Chocolate"
|
||||
Var NameDrinkTH = "แอพ ฟาสท์ ช็อกโก"
|
||||
Var DrinkDescriptionTH = "โปรตีนจากพืชคุณภาพสูง พร้อมสารอาหารที่มีประโยชน์"
|
||||
Var DrinkDescription = "Plant-Based Protein with Essential nutrients"
|
||||
|
|
@ -670,7 +670,8 @@ Essential nutrients" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "App Fast \NChocolate" </Value>
|
||||
<Value> "App Fast
|
||||
Chocolate" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -827,7 +828,7 @@ Essential nutrients" </Value>
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "App Fast \NThai Tea"
|
||||
Var NameDrink = "App Fast Thai Tea"
|
||||
Var NameDrinkTH = "แอพ ฟาสท์ ชาไทย"
|
||||
Var DrinkDescriptionTH = "โปรตีนจากพืชคุณภาพสูง พร้อมสารอาหารที่มีประโยชน์"
|
||||
Var DrinkDescription = "Plant-Based Protein with Essential nutrients"
|
||||
|
|
@ -923,7 +924,8 @@ Essential nutrients" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "App Fast \NThai Tea" </Value>
|
||||
<Value> "App Fast
|
||||
Thai Tea" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1080,7 +1082,7 @@ Essential nutrients" </Value>
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "App Fast \NMatcha"
|
||||
Var NameDrink = "App Fast Matcha"
|
||||
Var NameDrinkTH = "แอพ ฟาสท์ ชาเขียว"
|
||||
Var DrinkDescriptionTH = "โปรตีนจากพืชคุณภาพสูง พร้อมสารอาหารที่มีประโยชน์"
|
||||
Var DrinkDescription = "Plant-Based Protein with Essential nutrients"
|
||||
|
|
@ -1176,7 +1178,8 @@ Essential nutrients" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "App Fast \NMatcha" </Value>
|
||||
<Value> "App Fast
|
||||
Matcha" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@
|
|||
Var NameDrink = "STX On The Beach"
|
||||
Var NameDrinkTH = "STX On The Beach"
|
||||
Var DrinkDescriptionTH = "Pineapple juice, Limeade, Soda, Ice, Malibu"
|
||||
Var DrinkDescription = "Pineapple Juice, Limeade, \NSoda, Ice, Malibu"
|
||||
Var DrinkDescription = "Pineapple Juice, Limeade, Soda, Ice, Malibu"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_ILYSB.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -164,7 +164,8 @@ Soda, Ice, Malibu" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Pineapple Juice, Limeade, \NSoda, Ice, Malibu" </Value>
|
||||
<Value> "Pineapple Juice, Limeade,
|
||||
Soda, Ice, Malibu" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -564,7 +565,7 @@ Soda, Ice, Malibu" </Value>
|
|||
Var NameDrink = "Sea Level RISE"
|
||||
Var NameDrinkTH = "Sea Level RISE"
|
||||
Var DrinkDescriptionTH = "Strawberry , Limeade, Soda, Malibu"
|
||||
Var DrinkDescription = "Strawberry , Limeade, \NSoda, Malibu"
|
||||
Var DrinkDescription = "Strawberry , Limeade, Soda, Malibu"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Third_Behind_Bars.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -667,7 +668,8 @@ Soda, Malibu" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Strawberry , Limeade, \NSoda, Malibu" </Value>
|
||||
<Value> "Strawberry , Limeade,
|
||||
Soda, Malibu" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -816,7 +818,7 @@ Soda, Malibu" </Value>
|
|||
Var NameDrink = "Methane Bubbles"
|
||||
Var NameDrinkTH = "Methane Bubbles"
|
||||
Var DrinkDescriptionTH = "Lychee, Limeade, Soda, Mount Gay Rum"
|
||||
Var DrinkDescription = "Lychee, Limeade, Soda, \NMount Gay Rum"
|
||||
Var DrinkDescription = "Lychee, Limeade, Soda, Mount Gay Rum"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Pinky_Promise.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -919,7 +921,8 @@ Mount Gay Rum" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Lychee, Limeade, Soda, \NMount Gay Rum" </Value>
|
||||
<Value> "Lychee, Limeade, Soda,
|
||||
Mount Gay Rum" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1068,7 +1071,7 @@ Mount Gay Rum" </Value>
|
|||
Var NameDrink = "My Carbon Footprint"
|
||||
Var NameDrinkTH = "My Carbon Footprint"
|
||||
Var DrinkDescriptionTH = "Pineapple juice, Limeade, Soda, Ice, Mount Gay Rum"
|
||||
Var DrinkDescription = "Pineapple Juice, Limeade, \NSoda, Ice, Mount Gay Rum"
|
||||
Var DrinkDescription = "Pineapple Juice, Limeade, Soda, Ice, Mount Gay Rum"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Love_Potion.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -1173,7 +1176,8 @@ Footprint" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Pineapple Juice, Limeade, \NSoda, Ice, Mount Gay Rum" </Value>
|
||||
<Value> "Pineapple Juice, Limeade,
|
||||
Soda, Ice, Mount Gay Rum" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1824,7 +1828,7 @@ Footprint" </Value>
|
|||
Var NameDrink = "Biofuel"
|
||||
Var NameDrinkTH = "Biofuel"
|
||||
Var DrinkDescriptionTH = "Strawberry , Pineaple juice Ice, Malibu"
|
||||
Var DrinkDescription = "Strawberry , Pineaple \NJuice Ice, Malibu"
|
||||
Var DrinkDescription = "Strawberry , Pineaple Juice Ice, Malibu"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Long_Night.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -1927,7 +1931,8 @@ juice Ice, Malibu" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Strawberry , Pineaple \NJuice Ice, Malibu" </Value>
|
||||
<Value> "Strawberry , Pineaple
|
||||
Juice Ice, Malibu" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -2076,7 +2081,7 @@ juice Ice, Malibu" </Value>
|
|||
Var NameDrink = "Coal Story Bro"
|
||||
Var NameDrinkTH = "Coal Story Bro"
|
||||
Var DrinkDescriptionTH = "Black sugar , Milk, Ice, Mount Gay Rum"
|
||||
Var DrinkDescription = "Black Sugar , Milk, Ice, \NMount Gay Rum"
|
||||
Var DrinkDescription = "Black Sugar , Milk, Ice, Mount Gay Rum"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Good_Night_Kiss.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -2179,7 +2184,8 @@ Mount Gay Rum" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Black Sugar , Milk, Ice, \NMount Gay Rum" </Value>
|
||||
<Value> "Black Sugar , Milk, Ice,
|
||||
Mount Gay Rum" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -2328,7 +2334,7 @@ Mount Gay Rum" </Value>
|
|||
Var NameDrink = "Bangkok Underwater"
|
||||
Var NameDrinkTH = "Bangkok Underwater"
|
||||
Var DrinkDescriptionTH = "Lychee juice, Pineaple juice, Ice, Mount Gay Rum"
|
||||
Var DrinkDescription = "Lychee Juice, Pineaple Juice, \NIce, Mount Gay Rum"
|
||||
Var DrinkDescription = "Lychee Juice, Pineaple Juice, Ice, Mount Gay Rum"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Alcohol_Forever_Love.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -2433,7 +2439,8 @@ Underwater" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Lychee Juice, Pineaple Juice, \NIce, Mount Gay Rum" </Value>
|
||||
<Value> "Lychee Juice, Pineaple Juice,
|
||||
Ice, Mount Gay Rum" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -4088,7 +4095,7 @@ Underwater" </Value>
|
|||
Var NameDrink = "Peach Smash"
|
||||
Var NameDrinkTH = "Peach Smash"
|
||||
Var DrinkDescriptionTH = "Peach , Limenade , Soda, Ice, Gin"
|
||||
Var DrinkDescription = "Peach , Limenade ,\NSoda, Ice, Gin"
|
||||
Var DrinkDescription = "Peach , Limenade , Soda, Ice, Gin"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Peach_Smash.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -4191,7 +4198,8 @@ Soda, Ice, Gin" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Peach , Limenade ,\NSoda, Ice, Gin" </Value>
|
||||
<Value> "Peach , Limenade ,
|
||||
Soda, Ice, Gin" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -4340,7 +4348,7 @@ Soda, Ice, Gin" </Value>
|
|||
Var NameDrink = "Melon Fizz"
|
||||
Var NameDrinkTH = "Melon Fizz"
|
||||
Var DrinkDescriptionTH = "Melon , Limenade , Soda, Ice, Gin"
|
||||
Var DrinkDescription = "Melon , Limenade ,\NSoda, Ice, Gin"
|
||||
Var DrinkDescription = "Melon , Limenade , Soda, Ice, Gin"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Melon_Fizz.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -4443,7 +4451,8 @@ Soda, Ice, Gin" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Melon , Limenade ,\NSoda, Ice, Gin" </Value>
|
||||
<Value> "Melon , Limenade ,
|
||||
Soda, Ice, Gin" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -4592,7 +4601,7 @@ Soda, Ice, Gin" </Value>
|
|||
Var NameDrink = "Yuzu Collins"
|
||||
Var NameDrinkTH = "Yuzu Collins"
|
||||
Var DrinkDescriptionTH = "Yuzu , Limenade , Soda, Ice, Gin"
|
||||
Var DrinkDescription = "Yuzu , Limenade ,\NSoda, Ice, Gin"
|
||||
Var DrinkDescription = "Yuzu , Limenade , Soda, Ice, Gin"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Yuzu_Collins.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -4695,7 +4704,8 @@ Soda, Ice, Gin" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Yuzu , Limenade ,\NSoda, Ice, Gin" </Value>
|
||||
<Value> "Yuzu , Limenade ,
|
||||
Soda, Ice, Gin" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -5095,7 +5105,7 @@ Soda, Ice, Gin" </Value>
|
|||
Var NameDrink = "The Floral"
|
||||
Var NameDrinkTH = "The Floral"
|
||||
Var DrinkDescriptionTH = "Peach , Jasmine Tea , Water, Ice, Gin"
|
||||
Var DrinkDescription = "Peach , Jasmine Tea ,\NWater, Ice, Gin"
|
||||
Var DrinkDescription = "Peach , Jasmine Tea , Water, Ice, Gin"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_The_Floral.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -5198,7 +5208,8 @@ Water, Ice, Gin" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Peach , Jasmine Tea ,\NWater, Ice, Gin" </Value>
|
||||
<Value> "Peach , Jasmine Tea ,
|
||||
Water, Ice, Gin" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -5347,7 +5358,7 @@ Water, Ice, Gin" </Value>
|
|||
Var NameDrink = "Combination"
|
||||
Var NameDrinkTH = "Combination"
|
||||
Var DrinkDescriptionTH = "Melon , Limenade , Soda, Ice, Vodka"
|
||||
Var DrinkDescription = "Melon , Limenade ,\NSoda, Ice, Vodka"
|
||||
Var DrinkDescription = "Melon , Limenade , Soda, Ice, Vodka"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Combination.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -5450,7 +5461,8 @@ Soda, Ice, Vodka" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Melon , Limenade ,\NSoda, Ice, Vodka" </Value>
|
||||
<Value> "Melon , Limenade ,
|
||||
Soda, Ice, Vodka" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -5599,7 +5611,7 @@ Soda, Ice, Vodka" </Value>
|
|||
Var NameDrink = "Ume Ume"
|
||||
Var NameDrinkTH = "Ume Ume"
|
||||
Var DrinkDescriptionTH = "Yuzu , Plum , Limenade , Soda, Ice, Vodka"
|
||||
Var DrinkDescription = "Yuzu , Plum , Limenade ,\NSoda, Ice, Vodka"
|
||||
Var DrinkDescription = "Yuzu , Plum , Limenade , Soda, Ice, Vodka"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Ume_Ume.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -5702,7 +5714,8 @@ Soda, Ice, Vodka" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Yuzu , Plum , Limenade ,\NSoda, Ice, Vodka" </Value>
|
||||
<Value> "Yuzu , Plum , Limenade ,
|
||||
Soda, Ice, Vodka" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -5851,7 +5864,7 @@ Soda, Ice, Vodka" </Value>
|
|||
Var NameDrink = "Like Sex on The Beach"
|
||||
Var NameDrinkTH = "Like Sex on The Beach"
|
||||
Var DrinkDescriptionTH = "Peach , Limenade , Pineapple juice ,Soda, Ice, Vodka"
|
||||
Var DrinkDescription = "Peach , Limenade ,\NPineapple Juice ,Soda, Ice, Vodka"
|
||||
Var DrinkDescription = "Peach , Limenade , Pineapple Juice ,Soda, Ice, Vodka"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Like_Sex_on_The_Beach.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -5956,7 +5969,8 @@ on The Beach" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Peach , Limenade ,\NPineapple Juice ,Soda, Ice, Vodka" </Value>
|
||||
<Value> "Peach , Limenade ,
|
||||
Pineapple Juice ,Soda, Ice, Vodka" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -6105,7 +6119,7 @@ on The Beach" </Value>
|
|||
Var NameDrink = "Plum Highball"
|
||||
Var NameDrinkTH = "Plum Highball"
|
||||
Var DrinkDescriptionTH = "Yuzu , Limenade , Soda, Ice, Gold label"
|
||||
Var DrinkDescription = "Yuzu , Limenade ,\NSoda, Ice, Gold Label"
|
||||
Var DrinkDescription = "Yuzu , Limenade , Soda, Ice, Gold Label"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Plum_Highball.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -6208,7 +6222,8 @@ Soda, Ice, Gold label" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Yuzu , Limenade ,\NSoda, Ice, Gold Label" </Value>
|
||||
<Value> "Yuzu , Limenade ,
|
||||
Soda, Ice, Gold Label" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -7110,7 +7125,7 @@ Soda, Ice, Gold label" </Value>
|
|||
Var NameDrink = "Neon Spark"
|
||||
Var NameDrinkTH = "Neon Spark"
|
||||
Var DrinkDescriptionTH = "Vodka, Melon , Lime, Soda , Ice"
|
||||
Var DrinkDescription = "Vodka, Melon , Lime,\NSoda , Ice"
|
||||
Var DrinkDescription = "Vodka, Melon , Lime, Soda , Ice"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Neon_Spark.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -7213,7 +7228,8 @@ Soda , Ice" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Vodka, Melon , Lime,\NSoda , Ice" </Value>
|
||||
<Value> "Vodka, Melon , Lime,
|
||||
Soda , Ice" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -7613,7 +7629,7 @@ Soda , Ice" </Value>
|
|||
Var NameDrink = "Strawberry Martini"
|
||||
Var NameDrinkTH = "Strawberry Martini"
|
||||
Var DrinkDescriptionTH = "Gin, Vodka, Strawberry , Ice"
|
||||
Var DrinkDescription = "Gin, Vodka, Strawberry \N, Ice"
|
||||
Var DrinkDescription = "Gin, Vodka, Strawberry , Ice"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Strawberry_Martini.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -7716,7 +7732,8 @@ Soda , Ice" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Gin, Vodka, Strawberry \N, Ice" </Value>
|
||||
<Value> "Gin, Vodka, Strawberry
|
||||
, Ice" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -7865,7 +7882,7 @@ Soda , Ice" </Value>
|
|||
Var NameDrink = "Russian Mojito"
|
||||
Var NameDrinkTH = "Russian Mojito"
|
||||
Var DrinkDescriptionTH = "Vodka, Mint , Sugar, Lime, Ice"
|
||||
Var DrinkDescription = "Vodka, Mint , Sugar,\NLime, Ice"
|
||||
Var DrinkDescription = "Vodka, Mint , Sugar, Lime, Ice"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Russian_Mojito.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -7968,7 +7985,8 @@ Lime, Ice" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Vodka, Mint , Sugar,\NLime, Ice" </Value>
|
||||
<Value> "Vodka, Mint , Sugar,
|
||||
Lime, Ice" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -8368,7 +8386,7 @@ Lime, Ice" </Value>
|
|||
Var NameDrink = "Beachy Mint"
|
||||
Var NameDrinkTH = "Beachy Mint"
|
||||
Var DrinkDescriptionTH = "Gin, Pineapple, Mint , Soda, Ice"
|
||||
Var DrinkDescription = "Gin, Pineapple, Mint ,\NSoda, Ice"
|
||||
Var DrinkDescription = "Gin, Pineapple, Mint , Soda, Ice"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Beachy_Mint.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -8471,7 +8489,8 @@ Soda, Ice" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Gin, Pineapple, Mint ,\NSoda, Ice" </Value>
|
||||
<Value> "Gin, Pineapple, Mint ,
|
||||
Soda, Ice" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -8620,7 +8639,7 @@ Soda, Ice" </Value>
|
|||
Var NameDrink = "Black Menthe"
|
||||
Var NameDrinkTH = "Black Menthe"
|
||||
Var DrinkDescriptionTH = "Black, Mint , Lime, Soda, Ice"
|
||||
Var DrinkDescription = "Black, Mint , Lime,\NSoda, Ice"
|
||||
Var DrinkDescription = "Black, Mint , Lime, Soda, Ice"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Black_Menthe.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -8723,7 +8742,8 @@ Soda, Ice" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Black, Mint , Lime,\NSoda, Ice" </Value>
|
||||
<Value> "Black, Mint , Lime,
|
||||
Soda, Ice" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -8872,7 +8892,7 @@ Soda, Ice" </Value>
|
|||
Var NameDrink = "Wakeup Call"
|
||||
Var NameDrinkTH = "Wakeup Call"
|
||||
Var DrinkDescriptionTH = "Vodka, Energy , Strawberry , Soda"
|
||||
Var DrinkDescription = "Vodka, Energy ,\NStrawberry , Soda"
|
||||
Var DrinkDescription = "Vodka, Energy , Strawberry , Soda"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Wakeup_Call.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -8975,7 +8995,8 @@ Strawberry , Soda" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Vodka, Energy ,\NStrawberry , Soda" </Value>
|
||||
<Value> "Vodka, Energy ,
|
||||
Strawberry , Soda" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -4123,7 +4123,7 @@ Espresso" </Value>
|
|||
Var NameDrink = "Espresso Ethiopia Guji"
|
||||
Var NameDrinkTH = "เอสเพรสโซ่ช็อต Guji Queen Berry"
|
||||
Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (natural process) หอมสตรอว์เบอร์รี ส้ม และดอกไม้"
|
||||
Var DrinkDescription = "Light Roast Natural Process: \Nstrawberry, Orange, Floral"
|
||||
Var DrinkDescription = "Light Roast Natural Process: strawberry, Orange, Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0013.Price
|
||||
|
|
@ -4228,7 +4228,8 @@ Ethiopia Guji" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Light Roast Natural Process: \Nstrawberry, Orange, Floral" </Value>
|
||||
<Value> "Light Roast Natural Process:
|
||||
strawberry, Orange, Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -4381,7 +4382,7 @@ Ethiopia Guji" </Value>
|
|||
Var NameDrink = "Blue Daddy Espresso"
|
||||
Var NameDrinkTH = "เอสเพรสโซ่ช็อต Blue Daddy"
|
||||
Var DrinkDescriptionTH = "Washed process หอมบลูเบอร์รี และดอกไม้"
|
||||
Var DrinkDescription = "Washed Process \Nnote: Blue Berry & Floral"
|
||||
Var DrinkDescription = "Washed Process note: Blue Berry & Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_bluedaddy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0020.Price
|
||||
|
|
@ -4486,7 +4487,8 @@ Espresso" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Washed Process \Nnote: Blue Berry & Floral" </Value>
|
||||
<Value> "Washed Process
|
||||
note: Blue Berry & Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -4639,7 +4641,7 @@ Espresso" </Value>
|
|||
Var NameDrink = "Chopin Espresso"
|
||||
Var NameDrinkTH = "เอสเพรสโซ่ช็อต Chopin"
|
||||
Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ"
|
||||
Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral"
|
||||
Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_chopin.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0043.Price
|
||||
|
|
@ -4744,7 +4746,8 @@ Espresso" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Raisin Honey Process \Nnote: Strawberry & Floral" </Value>
|
||||
<Value> "Raisin Honey Process
|
||||
note: Strawberry & Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -5411,7 +5414,7 @@ Espresso" </Value>
|
|||
Var NameDrink = "Mozart Espresso"
|
||||
Var NameDrinkTH = "เอสเพรสโซ่ช็อต Mozart"
|
||||
Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ"
|
||||
Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral"
|
||||
Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_mozart.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0022.Price
|
||||
|
|
@ -5516,7 +5519,8 @@ Espresso" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Raisin Honey Process \Nnote: Strawberry & Floral" </Value>
|
||||
<Value> "Raisin Honey Process
|
||||
note: Strawberry & Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -5669,7 +5673,7 @@ Espresso" </Value>
|
|||
Var NameDrink = "Snowwhite Espresso"
|
||||
Var NameDrinkTH = "เอสเพรสโซ่ช็อต Snowwhite"
|
||||
Var DrinkDescriptionTH = "Anaerobic process หอมมะลิ น้ำผึ้ง เมเปิล"
|
||||
Var DrinkDescription = "Anaerobic Process \Nnote: Jasmine & Honey"
|
||||
Var DrinkDescription = "Anaerobic Process note: Jasmine & Honey"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_snowwhite.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0024.Price
|
||||
|
|
@ -5774,7 +5778,8 @@ Espresso" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Anaerobic Process \Nnote: Jasmine & Honey" </Value>
|
||||
<Value> "Anaerobic Process
|
||||
note: Jasmine & Honey" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -5927,7 +5932,7 @@ Espresso" </Value>
|
|||
Var NameDrink = "Whisky Dude Espresso"
|
||||
Var NameDrinkTH = "เอสเพรสโซ่ช็อต Whisky Dude"
|
||||
Var DrinkDescriptionTH = "Washed Sherry cask ferment หอมวิสกี้ ช็อกโกแลต วนิลา"
|
||||
Var DrinkDescription = "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla"
|
||||
Var DrinkDescription = "Washed Sherry Cask Ferment note: Whisky & Vanilla"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_whiskydude.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0026.Price
|
||||
|
|
@ -6032,7 +6037,8 @@ Espresso" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" </Value>
|
||||
<Value> "Washed Sherry Cask Ferment
|
||||
note: Whisky & Vanilla" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -6185,7 +6191,7 @@ Espresso" </Value>
|
|||
Var NameDrink = "Peacher Espresso"
|
||||
Var NameDrinkTH = "เอสเพรสโซ่ช็อต Peacher"
|
||||
Var DrinkDescriptionTH = "Barrel-aged process หอมพีช, ชา, ช็อกโกแลต"
|
||||
Var DrinkDescription = "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate"
|
||||
Var DrinkDescription = "Barrel-Aged Process note: Peach, Tea, Chocolate"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_peacher.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0028.Price
|
||||
|
|
@ -6290,7 +6296,8 @@ Espresso" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" </Value>
|
||||
<Value> "Barrel-Aged Process
|
||||
note: Peach, Tea, Chocolate" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -6957,7 +6964,7 @@ Geisha" </Value>
|
|||
Var NameDrink = "Rosalyn Espresso"
|
||||
Var NameDrinkTH = "เอสเพรสโซ่ช็อต Rosalyn"
|
||||
Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (washed process) กลิ่นกุหลาบ และ เบอร์รี่"
|
||||
Var DrinkDescription = "Light Roast (Natural Process) \Npink Rose & Berry"
|
||||
Var DrinkDescription = "Light Roast (Natural Process) pink Rose & Berry"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_espresso_light_rosalyn.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0037.Price
|
||||
|
|
@ -7061,7 +7068,8 @@ Rosalyn" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Light Roast (Natural Process) \Npink Rose & Berry" </Value>
|
||||
<Value> "Light Roast (Natural Process)
|
||||
pink Rose & Berry" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -7713,7 +7721,7 @@ Rosalyn" </Value>
|
|||
Var NameDrink = "Americano Ethiopia Guji"
|
||||
Var NameDrinkTH = "อเมริกาโน Guji Queen Berry"
|
||||
Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (natural process) หอมสตรอว์เบอร์รี ส้ม และดอกไม้"
|
||||
Var DrinkDescription = "Light Roast Natural Process: \Nstrawberry, Orange, Floral"
|
||||
Var DrinkDescription = "Light Roast Natural Process: strawberry, Orange, Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0014.Price
|
||||
|
|
@ -7818,7 +7826,8 @@ Ethiopia Guji" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Light Roast Natural Process: \Nstrawberry, Orange, Floral" </Value>
|
||||
<Value> "Light Roast Natural Process:
|
||||
strawberry, Orange, Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -7971,7 +7980,7 @@ Ethiopia Guji" </Value>
|
|||
Var NameDrink = "Blue Daddy Americano"
|
||||
Var NameDrinkTH = "อเมริกาโน Blue Daddy"
|
||||
Var DrinkDescriptionTH = "Washed process หอมบลูเบอร์รี และดอกไม้"
|
||||
Var DrinkDescription = "Washed Process \Nnote: Blue Berry & Floral"
|
||||
Var DrinkDescription = "Washed Process note: Blue Berry & Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_bluedaddy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0019.Price
|
||||
|
|
@ -8076,7 +8085,8 @@ Americano" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Washed Process \Nnote: Blue Berry & Floral" </Value>
|
||||
<Value> "Washed Process
|
||||
note: Blue Berry & Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -8229,7 +8239,7 @@ Americano" </Value>
|
|||
Var NameDrink = "Chopin Americano"
|
||||
Var NameDrinkTH = "อเมริกาโน Chopin"
|
||||
Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ"
|
||||
Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral"
|
||||
Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_chopin.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0044.Price
|
||||
|
|
@ -8334,7 +8344,8 @@ Americano" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Raisin Honey Process \Nnote: Strawberry & Floral" </Value>
|
||||
<Value> "Raisin Honey Process
|
||||
note: Strawberry & Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -9001,7 +9012,7 @@ Americano" </Value>
|
|||
Var NameDrink = "Mozart Americano"
|
||||
Var NameDrinkTH = "อเมริกาโน Mozart"
|
||||
Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ"
|
||||
Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral"
|
||||
Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_mozart.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0021.Price
|
||||
|
|
@ -9106,7 +9117,8 @@ Americano" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Raisin Honey Process \Nnote: Strawberry & Floral" </Value>
|
||||
<Value> "Raisin Honey Process
|
||||
note: Strawberry & Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -9259,7 +9271,7 @@ Americano" </Value>
|
|||
Var NameDrink = "Whisky Dude Americano"
|
||||
Var NameDrinkTH = "อเมริกาโน Whisky Dude"
|
||||
Var DrinkDescriptionTH = "Washed Sherry cask ferment หอมวิสกี้ ช็อกโกแลต วนิลา"
|
||||
Var DrinkDescription = "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla"
|
||||
Var DrinkDescription = "Washed Sherry Cask Ferment note: Whisky & Vanilla"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_whiskydude.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0025.Price
|
||||
|
|
@ -9364,7 +9376,8 @@ Americano" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" </Value>
|
||||
<Value> "Washed Sherry Cask Ferment
|
||||
note: Whisky & Vanilla" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -9517,7 +9530,7 @@ Americano" </Value>
|
|||
Var NameDrink = "Snowwhite Americano"
|
||||
Var NameDrinkTH = "อเมริกาโน Snowwhite"
|
||||
Var DrinkDescriptionTH = "Anaerobic process หอมมะลิ น้ำผึ้ง เมเปิล"
|
||||
Var DrinkDescription = "Anaerobic Process \Nnote: Jasmine & Honey"
|
||||
Var DrinkDescription = "Anaerobic Process note: Jasmine & Honey"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_snowwhite.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0023.Price
|
||||
|
|
@ -9622,7 +9635,8 @@ Americano" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Anaerobic Process \Nnote: Jasmine & Honey" </Value>
|
||||
<Value> "Anaerobic Process
|
||||
note: Jasmine & Honey" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -9775,7 +9789,7 @@ Americano" </Value>
|
|||
Var NameDrink = "Peacher Americano"
|
||||
Var NameDrinkTH = "อเมริกาโน Peacher"
|
||||
Var DrinkDescriptionTH = "Barrel-aged process หอมพีช, ชา, ช็อกโกแลต"
|
||||
Var DrinkDescription = "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate"
|
||||
Var DrinkDescription = "Barrel-Aged Process note: Peach, Tea, Chocolate"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_peacher.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0027.Price
|
||||
|
|
@ -9880,7 +9894,8 @@ Americano" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" </Value>
|
||||
<Value> "Barrel-Aged Process
|
||||
note: Peach, Tea, Chocolate" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -10548,7 +10563,7 @@ Americano" </Value>
|
|||
Var NameDrink = "Rosalyn Americano"
|
||||
Var NameDrinkTH = "อเมริกาโน Rosalyn"
|
||||
Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (washed process) กลิ่นกุหลาบ และ เบอร์รี่"
|
||||
Var DrinkDescription = "Light Roast (Natural Process) \Npink Rose & Berry"
|
||||
Var DrinkDescription = "Light Roast (Natural Process) pink Rose & Berry"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_americano_light_rosalyn.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-0038.Price
|
||||
|
|
@ -10653,7 +10668,8 @@ Americano" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Light Roast (Natural Process) \Npink Rose & Berry" </Value>
|
||||
<Value> "Light Roast (Natural Process)
|
||||
pink Rose & Berry" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -10806,7 +10822,7 @@ Americano" </Value>
|
|||
Var NameDrink = "Blue Daddy Almost Dirty"
|
||||
Var NameDrinkTH = "Blue Daddy Almost Dirty"
|
||||
Var DrinkDescriptionTH = "Washed process หอมบลูเบอร์รี และดอกไม้"
|
||||
Var DrinkDescription = "Washed Process \Nnote: Blue Berry & Floral"
|
||||
Var DrinkDescription = "Washed Process note: Blue Berry & Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_bluedaddy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -10911,7 +10927,8 @@ Almost Dirty" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Washed Process \Nnote: Blue Berry & Floral" </Value>
|
||||
<Value> "Washed Process
|
||||
note: Blue Berry & Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -11060,7 +11077,7 @@ Almost Dirty" </Value>
|
|||
Var NameDrink = "Mozart Almost Dirty"
|
||||
Var NameDrinkTH = "Mozart Almost Dirty"
|
||||
Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ"
|
||||
Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral"
|
||||
Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_mozart.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -11165,7 +11182,8 @@ Almost Dirty" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Raisin Honey Process \Nnote: Strawberry & Floral" </Value>
|
||||
<Value> "Raisin Honey Process
|
||||
note: Strawberry & Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -11314,7 +11332,7 @@ Almost Dirty" </Value>
|
|||
Var NameDrink = "Chopin Almost Dirty"
|
||||
Var NameDrinkTH = "Chopin Almost Dirty"
|
||||
Var DrinkDescriptionTH = "Raisin Honey process หอมสตรอว์เบอร์รี กุหลาบ มะลิ"
|
||||
Var DrinkDescription = "Raisin Honey Process \Nnote: Strawberry & Floral"
|
||||
Var DrinkDescription = "Raisin Honey Process note: Strawberry & Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_chopin.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -11419,7 +11437,8 @@ Almost Dirty" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Raisin Honey Process \Nnote: Strawberry & Floral" </Value>
|
||||
<Value> "Raisin Honey Process
|
||||
note: Strawberry & Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -12074,7 +12093,7 @@ Almost Dirty" </Value>
|
|||
Var NameDrink = "Whisky Dude Almost Dirty"
|
||||
Var NameDrinkTH = "Whisky Dude Almost Dirty"
|
||||
Var DrinkDescriptionTH = "Washed Sherry cask ferment หอมวิสกี้ ช็อกโกแลต วนิลา"
|
||||
Var DrinkDescription = "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla"
|
||||
Var DrinkDescription = "Washed Sherry Cask Ferment note: Whisky & Vanilla"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_whiskydude.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -12179,7 +12198,8 @@ Almost Dirty" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Washed Sherry Cask Ferment \Nnote: Whisky & Vanilla" </Value>
|
||||
<Value> "Washed Sherry Cask Ferment
|
||||
note: Whisky & Vanilla" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -12328,7 +12348,7 @@ Almost Dirty" </Value>
|
|||
Var NameDrink = "Snowwhite Almost Dirty"
|
||||
Var NameDrinkTH = "Snowwhite Almost Dirty"
|
||||
Var DrinkDescriptionTH = "Anaerobic process หอมมะลิ น้ำผึ้ง เมเปิล"
|
||||
Var DrinkDescription = "Anaerobic Process \Nnote: Jasmine & Honey"
|
||||
Var DrinkDescription = "Anaerobic Process note: Jasmine & Honey"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light__snowwhite.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -12433,7 +12453,8 @@ Almost Dirty" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Anaerobic Process \Nnote: Jasmine & Honey" </Value>
|
||||
<Value> "Anaerobic Process
|
||||
note: Jasmine & Honey" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -12582,7 +12603,7 @@ Almost Dirty" </Value>
|
|||
Var NameDrink = "Queen Berry Almost Dirty"
|
||||
Var NameDrinkTH = "Queen Berry Almost Dirty"
|
||||
Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (washed process) หอมสตรอว์เบอร์รี ส้ม และดอกไม้"
|
||||
Var DrinkDescription = "Light Roast Natural Process: \Nstrawberry, Orange, Floral"
|
||||
Var DrinkDescription = "Light Roast Natural Process: strawberry, Orange, Floral"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -12687,7 +12708,8 @@ Almost Dirty" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Light Roast Natural Process: \Nstrawberry, Orange, Floral" </Value>
|
||||
<Value> "Light Roast Natural Process:
|
||||
strawberry, Orange, Floral" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -12836,7 +12858,7 @@ Almost Dirty" </Value>
|
|||
Var NameDrink = "Peacher Almost Dirty"
|
||||
Var NameDrinkTH = "Peacher Almost Dirty"
|
||||
Var DrinkDescriptionTH = "Barrel-aged process หอมพีช, ชา, ช็อกโกแลต"
|
||||
Var DrinkDescription = "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate"
|
||||
Var DrinkDescription = "Barrel-Aged Process note: Peach, Tea, Chocolate"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light__peacher.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -12941,7 +12963,8 @@ Almost Dirty" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Barrel-Aged Process \Nnote: Peach, Tea, Chocolate" </Value>
|
||||
<Value> "Barrel-Aged Process
|
||||
note: Peach, Tea, Chocolate" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -13597,7 +13620,7 @@ Almost Dirty" </Value>
|
|||
Var NameDrink = "Rosalyn Almost Dirty"
|
||||
Var NameDrinkTH = "Rosalyn Almost Dirty"
|
||||
Var DrinkDescriptionTH = "กาแฟคั่วอ่อน (washed process) กลิ่นกุหลาบ และ เบอร์รี่"
|
||||
Var DrinkDescription = "Light Roast (Natural Process) \Npink Rose & Berry"
|
||||
Var DrinkDescription = "Light Roast (Natural Process) pink Rose & Berry"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_dirty_light_rosalyn.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -13702,7 +13725,8 @@ Almost Dirty" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Light Roast (Natural Process) \Npink Rose & Berry" </Value>
|
||||
<Value> "Light Roast (Natural Process)
|
||||
pink Rose & Berry" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -567,7 +567,7 @@
|
|||
Var NameDrink = "Cafe' Latte"
|
||||
Var NameDrinkTH = "ลาเต้"
|
||||
Var DrinkDescriptionTH = "กาแฟ นม และ ฟองนม"
|
||||
Var DrinkDescription = "Espresso, Milk,\NFoamed Milk"
|
||||
Var DrinkDescription = "Espresso, Milk, Foamed Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_latte_Healthy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-1004.Price
|
||||
|
|
@ -669,7 +669,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Milk,\NFoamed Milk" </Value>
|
||||
<Value> "Espresso, Milk,
|
||||
Foamed Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -820,7 +821,7 @@
|
|||
Var NameDrink = "Cafe' Latte"
|
||||
Var NameDrinkTH = "ลาเต้"
|
||||
Var DrinkDescriptionTH = "กาแฟ นม และ ฟองนม"
|
||||
Var DrinkDescription = "Espresso, Milk,\NFoamed Milk"
|
||||
Var DrinkDescription = "Espresso, Milk, Foamed Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_latte_Healthy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-21-01-1004.Price
|
||||
|
|
@ -922,7 +923,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Milk,\NFoamed Milk" </Value>
|
||||
<Value> "Espresso, Milk,
|
||||
Foamed Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1074,7 +1076,7 @@
|
|||
Var NameDrink = "Mocha"
|
||||
Var NameDrinkTH = "มอคค่า"
|
||||
Var DrinkDescriptionTH = "กาแฟ นม ผสมช็อกโกแลต น้ำตาล"
|
||||
Var DrinkDescription = "Espresso, Cocoa,\NMilk, Sugar"
|
||||
Var DrinkDescription = "Espresso, Cocoa, Milk, Sugar"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Mocha_Healthy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-1006.Price
|
||||
|
|
@ -1177,7 +1179,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Cocoa,\NMilk, Sugar" </Value>
|
||||
<Value> "Espresso, Cocoa,
|
||||
Milk, Sugar" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1328,7 +1331,7 @@
|
|||
Var NameDrink = "Mocha"
|
||||
Var NameDrinkTH = "มอคค่า"
|
||||
Var DrinkDescriptionTH = "กาแฟ นม ผสมช็อกโกแลต น้ำตาล"
|
||||
Var DrinkDescription = "Espresso, Cocoa,\NMilk, Sugar"
|
||||
Var DrinkDescription = "Espresso, Cocoa, Milk, Sugar"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Mocha_Healthy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-21-01-1006.Price
|
||||
|
|
@ -1431,7 +1434,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Cocoa,\NMilk, Sugar" </Value>
|
||||
<Value> "Espresso, Cocoa,
|
||||
Milk, Sugar" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1583,7 +1587,7 @@
|
|||
Var NameDrink = "Cappuccino"
|
||||
Var NameDrinkTH = "คาปูชิโน่"
|
||||
Var DrinkDescriptionTH = "กาแฟ นม และ ฟองนม"
|
||||
Var DrinkDescription = "Espresso, Milk,\NFoamed Milk"
|
||||
Var DrinkDescription = "Espresso, Milk, Foamed Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Cappu_Healthy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-01-01-1099.Price
|
||||
|
|
@ -1685,7 +1689,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Milk,\NFoamed Milk" </Value>
|
||||
<Value> "Espresso, Milk,
|
||||
Foamed Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1836,7 +1841,7 @@
|
|||
Var NameDrink = "Cappuccino"
|
||||
Var NameDrinkTH = "คาปูชิโน่"
|
||||
Var DrinkDescriptionTH = "กาแฟ นม และ ฟองนม"
|
||||
Var DrinkDescription = "Espresso, Milk,\NFoamed Milk"
|
||||
Var DrinkDescription = "Espresso, Milk, Foamed Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_Cappu_Healthy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-21-01-1099.Price
|
||||
|
|
@ -1938,7 +1943,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Milk,\NFoamed Milk" </Value>
|
||||
<Value> "Espresso, Milk,
|
||||
Foamed Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -2345,7 +2351,7 @@
|
|||
Var NameDrink = "Taiwanese Milk Tea"
|
||||
Var NameDrinkTH = "ชานมไต้หวัน"
|
||||
Var DrinkDescriptionTH = "ชาไต้หวัน และ นมอุ่น"
|
||||
Var DrinkDescription = "Taiwanese Tea, Sugar, \NAnd Milk"
|
||||
Var DrinkDescription = "Taiwanese Tea, Sugar, And Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_taiwan_milk_tea_Jason_Healthy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-02-01-1025.Price
|
||||
|
|
@ -2448,7 +2454,8 @@ Milk Tea" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Taiwanese Tea, Sugar, \NAnd Milk" </Value>
|
||||
<Value> "Taiwanese Tea, Sugar,
|
||||
And Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -3877,7 +3884,7 @@ Limenade" </Value>
|
|||
Var NameDrink = "Taiwanese LBlack Tea"
|
||||
Var NameDrinkTH = "ชาดำไต้หวัน มะนาว"
|
||||
Var DrinkDescriptionTH = "ชาอู่หลงไต้หวัน น้ำ มะนาว"
|
||||
Var DrinkDescription = "Taiwan Tea, Limenade, \NWater, And Ice"
|
||||
Var DrinkDescription = "Taiwan Tea, Limenade, Water, And Ice"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_hot_lime_Oolong_tea_Healthy.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-02-01-1032.Price
|
||||
|
|
@ -3981,7 +3988,8 @@ LBlack Tea" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Taiwan Tea, Limenade, \NWater, And Ice" </Value>
|
||||
<Value> "Taiwan Tea, Limenade,
|
||||
Water, And Ice" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -3359,7 +3359,7 @@ Soda" </Value>
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Pepsi High Yeild"
|
||||
Var NameDrink = "Pepsi"
|
||||
Var NameDrinkTH = "เป๊ปซี่โซดา"
|
||||
Var DrinkDescriptionTH = "เป๊ปซี่ โซดา และน้ำแข็ง"
|
||||
Var DrinkDescription = "Pepsi, Soda And Ice"
|
||||
|
|
@ -3454,7 +3454,7 @@ Soda" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Pepsi High Yeild" </Value>
|
||||
<Value> "Pepsi" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -5471,7 +5471,8 @@ Limenade, Soda & Ice" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "7Up Lychee Limenade" </Value>
|
||||
<Value> "7Up Lychee
|
||||
Limenade" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -1073,7 +1073,7 @@ Soda" </Value>
|
|||
Var NameDrink = "Strawberry"
|
||||
Var NameDrinkTH = "น้ำสตรอเบอร์รี่"
|
||||
Var DrinkDescriptionTH = "สตรอเบอร์รี่ และน้ำตาล"
|
||||
Var DrinkDescription = "STRAWBERRY, SUGAR"
|
||||
Var DrinkDescription = "Strawberry, Sugar"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_strawberry.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $12-05-01-0040.Price
|
||||
|
|
@ -1175,7 +1175,7 @@ Soda" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "STRAWBERRY, SUGAR" </Value>
|
||||
<Value> "Strawberry, Sugar" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -814,7 +814,7 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Pepsi High Yeild"
|
||||
Var NameDrink = "Pepsi"
|
||||
Var NameDrinkTH = "เป๊ปซี่โซดา"
|
||||
Var DrinkDescriptionTH = "เป๊ปซี่ โซดา และน้ำแข็ง"
|
||||
Var DrinkDescription = "Pepsi, Soda And Ice"
|
||||
|
|
@ -909,7 +909,7 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Pepsi High Yeild" </Value>
|
||||
<Value> "Pepsi" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1665,7 +1665,8 @@ Plum Soda" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "7Up Lychee Limenade" </Value>
|
||||
<Value> "7Up Lychee
|
||||
Limenade" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -307,7 +307,7 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Premium Thai Tea\NCaramel Oreo"
|
||||
Var NameDrink = "Premium Thai Tea Caramel Oreo"
|
||||
Var NameDrinkTH = "พรีเมียมชาไทย คาราเมลโอรีโอ"
|
||||
Var DrinkDescriptionTH = "ชาไทย นม คาราเมล และโอรีโอ"
|
||||
Var DrinkDescription = "Thai Tea, Milk, Caramel , Oreo"
|
||||
|
|
@ -407,7 +407,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Premium Thai Tea\NCaramel Oreo" </Value>
|
||||
<Value> "Premium Thai Tea
|
||||
Caramel Oreo" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -563,7 +564,7 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Coconut Milk\NSmoothie"
|
||||
Var NameDrink = "Coconut Milk Smoothie"
|
||||
Var NameDrinkTH = "มะพร้าวน้ำหอมปั่น นมนิวซีแลนด์"
|
||||
Var DrinkDescriptionTH = "มะพร้าวน้ำหอมปั่น นม"
|
||||
Var DrinkDescription = "Coconut , Milk"
|
||||
|
|
@ -664,7 +665,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Coconut Milk\NSmoothie" </Value>
|
||||
<Value> "Coconut Milk
|
||||
Smoothie" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1583,7 +1585,7 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Strawberry Milk \NSmoothie"
|
||||
Var NameDrink = "Strawberry Milk Smoothie"
|
||||
Var NameDrinkTH = "นมสตอเบอร์รี่ปั่น"
|
||||
Var DrinkDescriptionTH = "นม สตอเบอร์รี่ และน้ำแข็ง"
|
||||
Var DrinkDescription = "Strawberry , Milk, Sugar"
|
||||
|
|
@ -1683,7 +1685,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Strawberry Milk \NSmoothie" </Value>
|
||||
<Value> "Strawberry Milk
|
||||
Smoothie" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1839,7 +1842,7 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Strawcocoa \NSmoothie"
|
||||
Var NameDrink = "Strawcocoa Smoothie"
|
||||
Var NameDrinkTH = "โกโก้สตอเบอร์รี่ปั่น"
|
||||
Var DrinkDescriptionTH = "นม สตอเบอร์รี่ โกโก้ และน้ำแข็ง"
|
||||
Var DrinkDescription = "Cocoa, Strawberry , Milk"
|
||||
|
|
@ -1939,7 +1942,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Strawcocoa \NSmoothie" </Value>
|
||||
<Value> "Strawcocoa
|
||||
Smoothie" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -2095,7 +2099,7 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Thai \NIced Espresso"
|
||||
Var NameDrink = "Thai Iced Espresso"
|
||||
Var NameDrinkTH = "เอสเย็นแบบไทยๆ"
|
||||
Var DrinkDescriptionTH = "กาแฟ นม และ น้ำแข็ง "
|
||||
Var DrinkDescription = "Espresso, Milk, Sugar,Ice"
|
||||
|
|
@ -2194,7 +2198,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Thai \NIced Espresso" </Value>
|
||||
<Value> "Thai
|
||||
Iced Espresso" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -2348,7 +2353,7 @@
|
|||
<Volume> SoundVolume </Volume>
|
||||
<OverlayImage> xmlpro( 12-31-02-0001, "ROOT/taobin_project/image/menu_overlay_set/button_overlay_%s_posi1.png") </OverlayImage>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Thai \NIced Espresso"
|
||||
Var NameDrink = "Thai Iced Espresso"
|
||||
Var NameDrinkTH = "เอสเย็นแบบไทยๆ"
|
||||
Var DrinkDescriptionTH = "กาแฟ นม และ น้ำแข็ง "
|
||||
Var DrinkDescription = "Espresso, Milk, Sugar,Ice"
|
||||
|
|
@ -2447,7 +2452,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Thai \NIced Espresso" </Value>
|
||||
<Value> "Thai
|
||||
Iced Espresso" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -2602,7 +2608,7 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Coconut \NJasmine Milk Tea"
|
||||
Var NameDrink = "Coconut Jasmine Milk Tea"
|
||||
Var NameDrinkTH = "มะพร้าว ชามะลินมนิวซีแลนด์"
|
||||
Var DrinkDescriptionTH = "มะพร้าวชามะลินมนิวซีแลนด์"
|
||||
Var DrinkDescription = "Coconut , Jasmine Tea, Milk Water"
|
||||
|
|
@ -2702,7 +2708,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Coconut \NJasmine Milk Tea" </Value>
|
||||
<Value> "Coconut
|
||||
Jasmine Milk Tea" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -3114,7 +3121,7 @@ Water" </Value>
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Lime \NGinger Tea"
|
||||
Var NameDrink = "Lime Ginger Tea"
|
||||
Var NameDrinkTH = "ชาขิงมะนาว"
|
||||
Var DrinkDescriptionTH = "ขิง มะนาว และน้ำ "
|
||||
Var DrinkDescription = "Ginger, Lime & Water "
|
||||
|
|
@ -3213,7 +3220,8 @@ Water" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Lime \NGinger Tea" </Value>
|
||||
<Value> "Lime
|
||||
Ginger Tea" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -3369,7 +3377,7 @@ Water" </Value>
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Plum \NLimenade Soda"
|
||||
Var NameDrink = "Plum Limenade Soda"
|
||||
Var NameDrinkTH = "บ๊วยมะนาวโซดา"
|
||||
Var DrinkDescriptionTH = "บ๊วย มะนาว โซดา "
|
||||
Var DrinkDescription = "Ume , Limenade, Soda & Ice"
|
||||
|
|
@ -3468,7 +3476,8 @@ Water" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Plum \NLimenade Soda" </Value>
|
||||
<Value> "Plum
|
||||
Limenade Soda" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -5342,7 +5342,7 @@ Refreshment" </Value>
|
|||
Var NameDrink = "Pepsi Salak Lime"
|
||||
Var NameDrinkTH = "เป๊ปซี่สละ"
|
||||
Var DrinkDescriptionTH = "เป๊ปซี่ สละ มะนาว และโซดา"
|
||||
Var DrinkDescription = "Pepsi, Salak , Lime\NAnd Soda"
|
||||
Var DrinkDescription = "Pepsi, Salak , Lime And Soda"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Pepsi_Salak_lucky_draw_x2.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -5444,7 +5444,8 @@ Refreshment" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0xFFFFFF </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Pepsi, Salak , Lime\NAnd Soda" </Value>
|
||||
<Value> "Pepsi, Salak , Lime
|
||||
And Soda" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -5593,7 +5594,7 @@ Refreshment" </Value>
|
|||
Var NameDrink = "Pepsi Salak Lime"
|
||||
Var NameDrinkTH = "เป๊ปซี่สละ"
|
||||
Var DrinkDescriptionTH = "เป๊ปซี่ สละ มะนาว และโซดา"
|
||||
Var DrinkDescription = "Pepsi, Salak , Lime\NAnd Soda"
|
||||
Var DrinkDescription = "Pepsi, Salak , Lime And Soda"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Pepsi_Salak_lucky_draw_x2.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -5695,7 +5696,8 @@ Refreshment" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0xFFFFFF </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Pepsi, Salak , Lime\NAnd Soda" </Value>
|
||||
<Value> "Pepsi, Salak , Lime
|
||||
And Soda" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -9864,7 +9866,7 @@ Lime" </Value>
|
|||
Var NameDrink = "Pepsi Energy"
|
||||
Var NameDrinkTH = "เป๊ปซี่ชูกำลัง"
|
||||
Var DrinkDescriptionTH = "เป๊ปซี่ ชูกำลัง มะนาว และโซดา"
|
||||
Var DrinkDescription = "Pepsi Energy , Lime\NAnd Soda"
|
||||
Var DrinkDescription = "Pepsi Energy , Lime And Soda"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Pepsi_Energy_lucky_draw_x2.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -9966,7 +9968,8 @@ Lime" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0xFFFFFF </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Pepsi Energy , Lime\NAnd Soda" </Value>
|
||||
<Value> "Pepsi Energy , Lime
|
||||
And Soda" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@
|
|||
Var NameDrink = "Bad kids smacked good ones ditched"
|
||||
Var NameDrinkTH = "เป็นเด็กดื้อโดนตีเป็น เด็กดีโดนทิ้งตลอด"
|
||||
Var DrinkDescriptionTH = "กาแฟ น้ำ นม โกโก้ และ กล้วย"
|
||||
Var DrinkDescription = "Espresso, Banana ,\Ncocoa, Milk"
|
||||
Var DrinkDescription = "Espresso, Banana , cocoa, Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Mocha_Tokyobanana_smoothie.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -162,7 +162,8 @@ good ones ditched" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Banana ,\Ncocoa, Milk" </Value>
|
||||
<Value> "Espresso, Banana ,
|
||||
cocoa, Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -309,7 +310,7 @@ good ones ditched" </Value>
|
|||
Var NameDrink = "Bad kids smacked good ones ditched"
|
||||
Var NameDrinkTH = "เป็นเด็กดื้อโดนตีเป็น เด็กดีโดนทิ้งตลอด"
|
||||
Var DrinkDescriptionTH = "กาแฟ น้ำ นม โกโก้ และ กล้วย"
|
||||
Var DrinkDescription = "Espresso, Banana ,\Ncocoa, Milk"
|
||||
Var DrinkDescription = "Espresso, Banana , cocoa, Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_Mocha_Tokyobanana_smoothie.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -414,7 +415,8 @@ good ones ditched" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Banana ,\Ncocoa, Milk" </Value>
|
||||
<Value> "Espresso, Banana ,
|
||||
cocoa, Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -562,7 +564,7 @@ good ones ditched" </Value>
|
|||
Var NameDrink = "Ghosted after night convo's dead"
|
||||
Var NameDrinkTH = "ตัดบทบอกฝันดี = เขาไม่อยากคุย"
|
||||
Var DrinkDescriptionTH = "กาแฟ น้ำ นม มัทฉะ และ กล้วย"
|
||||
Var DrinkDescription = "Espresso, Banana ,\Nmatcha, Milk"
|
||||
Var DrinkDescription = "Espresso, Banana , matcha, Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_matcha_Latte_TokyoBanana.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -667,7 +669,8 @@ convo's dead" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Banana ,\Nmatcha, Milk" </Value>
|
||||
<Value> "Espresso, Banana ,
|
||||
matcha, Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -814,7 +817,7 @@ convo's dead" </Value>
|
|||
Var NameDrink = "Ghosted after night convo's dead"
|
||||
Var NameDrinkTH = "ตัดบทบอกฝันดี = เขาไม่อยากคุย"
|
||||
Var DrinkDescriptionTH = "กาแฟ น้ำ นม มัทฉะ และ กล้วย"
|
||||
Var DrinkDescription = "Espresso, Banana ,\Nmatcha, Milk"
|
||||
Var DrinkDescription = "Espresso, Banana , matcha, Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_matcha_Latte_TokyoBanana.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -919,7 +922,8 @@ convo's dead" </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Banana ,\Nmatcha, Milk" </Value>
|
||||
<Value> "Espresso, Banana ,
|
||||
matcha, Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1067,7 +1071,7 @@ convo's dead" </Value>
|
|||
Var NameDrink = "Kindness fix, zero romance drama."
|
||||
Var NameDrinkTH = "ที่ทำดีด้วยเขาไม่ได้มีใจ แต่เขามีเมตตา"
|
||||
Var DrinkDescriptionTH = "กล้วย นม และโกโก้ และน้ำ"
|
||||
Var DrinkDescription = "Banana ,\Nmilk, Cocoa"
|
||||
Var DrinkDescription = "Banana , milk, Cocoa"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Choco_banana_smoothie.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -1172,7 +1176,8 @@ zero romance drama." </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Banana ,\Nmilk, Cocoa" </Value>
|
||||
<Value> "Banana ,
|
||||
milk, Cocoa" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1321,7 +1326,7 @@ zero romance drama." </Value>
|
|||
Var NameDrink = "Love on mute, stuck in suspense."
|
||||
Var NameDrinkTH = "ตกอยู่ในสถานะ สแตนด์บาย"
|
||||
Var DrinkDescriptionTH = "กล้วย สตรอเบอร์รี่ และนม "
|
||||
Var DrinkDescription = "Banana , Strawberry ,\Nmilk"
|
||||
Var DrinkDescription = "Banana , Strawberry , milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_iced_strawberry_Tokyobanana_smoothie.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -1426,7 +1431,8 @@ stuck in suspense." </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Banana , Strawberry ,\Nmilk" </Value>
|
||||
<Value> "Banana , Strawberry ,
|
||||
milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1575,7 +1581,7 @@ stuck in suspense." </Value>
|
|||
Var NameDrink = "Promised a chat, but poof,gone after HEY."
|
||||
Var NameDrinkTH = "บอกว่าคุยได้ พอทักไปก็หาย"
|
||||
Var DrinkDescriptionTH = "กล้วย นม น้ำตาล Oreo"
|
||||
Var DrinkDescription = "Banana , Milk,\Nsugar, Oreo"
|
||||
Var DrinkDescription = "Banana , Milk, sugar, Oreo"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_BananaOreo_smoothie_bad_valentine.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -1680,7 +1686,8 @@ poof,gone after HEY." </Value>
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Banana , Milk,\Nsugar, Oreo" </Value>
|
||||
<Value> "Banana , Milk,
|
||||
sugar, Oreo" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@
|
|||
Var NameDrink = "Mint Cafe Latte"
|
||||
Var NameDrinkTH = "กาแฟมินต์ลาเต้"
|
||||
Var DrinkDescriptionTH = "กาแฟ น้ำ นม และ มินต์"
|
||||
Var DrinkDescription = "Espresso, Mint ,\NSugar, Milk"
|
||||
Var DrinkDescription = "Espresso, Mint , Sugar, Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Iced_Mint_Latte_passion.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -153,7 +153,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Mint ,\NSugar, Milk" </Value>
|
||||
<Value> "Espresso, Mint ,
|
||||
Sugar, Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -300,7 +301,7 @@
|
|||
Var NameDrink = "Mint Cafe Latte"
|
||||
Var NameDrinkTH = "กาแฟมินต์ลาเต้"
|
||||
Var DrinkDescriptionTH = "กาแฟ น้ำ นม และ มินต์"
|
||||
Var DrinkDescription = "Espresso, Mint ,\NSugar, Milk"
|
||||
Var DrinkDescription = "Espresso, Mint , Sugar, Milk"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Iced_Mint_Latte_passion.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -402,7 +403,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Mint ,\NSugar, Milk" </Value>
|
||||
<Value> "Espresso, Mint ,
|
||||
Sugar, Milk" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -550,7 +552,7 @@
|
|||
Var NameDrink = "Mintcano"
|
||||
Var NameDrinkTH = "มินต์กาโน่"
|
||||
Var DrinkDescriptionTH = "กาแฟ น้ำ และ มินต์"
|
||||
Var DrinkDescription = "Espresso, Mint ,\NSugar, Water"
|
||||
Var DrinkDescription = "Espresso, Mint , Sugar, Water"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Americano_passion.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -652,7 +654,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Mint ,\NSugar, Water" </Value>
|
||||
<Value> "Espresso, Mint ,
|
||||
Sugar, Water" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -799,7 +802,7 @@
|
|||
Var NameDrink = "Mintcano"
|
||||
Var NameDrinkTH = "มินต์กาโน่"
|
||||
Var DrinkDescriptionTH = "กาแฟ น้ำ และ มินต์"
|
||||
Var DrinkDescription = "Espresso, Mint ,\NSugar, Water"
|
||||
Var DrinkDescription = "Espresso, Mint , Sugar, Water"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Americano_passion.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -901,7 +904,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Espresso, Mint ,\NSugar, Water" </Value>
|
||||
<Value> "Espresso, Mint ,
|
||||
Sugar, Water" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1046,7 +1050,7 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Matcha Latte\NMint"
|
||||
Var NameDrink = "Matcha Latte Mint"
|
||||
Var NameDrinkTH = "มัทฉะลาเต้มินต์"
|
||||
Var DrinkDescriptionTH = "มัทฉะ มินต์ และนมอุ่น"
|
||||
Var DrinkDescription = "Matcha, Mint &Milk"
|
||||
|
|
@ -1141,7 +1145,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Matcha Latte\NMint" </Value>
|
||||
<Value> "Matcha Latte
|
||||
Mint" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -1799,7 +1804,7 @@
|
|||
Var NameDrink = "Cocoa Mint"
|
||||
Var NameDrinkTH = "โกโก้มินต์"
|
||||
Var DrinkDescriptionTH = "มินต์ นม น้ำตาล และโกโก้"
|
||||
Var DrinkDescription = "Mint , Milk,\NSugar, Cocoa"
|
||||
Var DrinkDescription = "Mint , Milk, Sugar, Cocoa"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Cocoa_passion.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -1901,7 +1906,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Mint , Milk,\NSugar, Cocoa" </Value>
|
||||
<Value> "Mint , Milk,
|
||||
Sugar, Cocoa" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -2302,10 +2308,10 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Strawberry\NMint Milk"
|
||||
Var NameDrink = "Strawberry Mint Milk"
|
||||
Var NameDrinkTH = "นมสตรอเบอร์รี่มินต์"
|
||||
Var DrinkDescriptionTH = "มินต์ สตรอเบอร์รี่ นมและน้ำตาล "
|
||||
Var DrinkDescription = "Mint , Milk,\NStrawberry"
|
||||
Var DrinkDescription = "Mint , Milk, Strawberry"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "bn_Mint_Milk_Straw_Smoothie_passion.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -2397,7 +2403,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Strawberry\NMint Milk" </Value>
|
||||
<Value> "Strawberry
|
||||
Mint Milk" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
@ -2407,7 +2414,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Mint , Milk,\NStrawberry" </Value>
|
||||
<Value> "Mint , Milk,
|
||||
Strawberry" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -2556,7 +2564,7 @@
|
|||
Var NameDrink = "Mint Oreo Volcano"
|
||||
Var NameDrinkTH = "มินต์โอรีโอภูเขาไฟ"
|
||||
Var DrinkDescriptionTH = "มินต์ นม น้ำตาล Oreo"
|
||||
Var DrinkDescription = "Mint , Milk,\NSugar, Oreo"
|
||||
Var DrinkDescription = "Mint , Milk, Sugar, Oreo"
|
||||
Var PictureDrink = "ROOT/taobin_project/image/page_drink_picture2_n/" + "Mint_SuperVocano_passion.png"
|
||||
Var OpenFromXML = CurrentXMLFileName2
|
||||
Var PriceD1 = $-.Price
|
||||
|
|
@ -2659,7 +2667,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x6F5F51 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Mint , Milk,\NSugar, Oreo" </Value>
|
||||
<Value> "Mint , Milk,
|
||||
Sugar, Oreo" </Value>
|
||||
</Text>
|
||||
<Image>
|
||||
<X> 16 </X>
|
||||
|
|
@ -3056,7 +3065,7 @@
|
|||
<Sound> "/mnt/sdcard/coffeevending/wav/click.wav" </Sound>
|
||||
<Volume> SoundVolume </Volume>
|
||||
<EventOnClick>
|
||||
Var NameDrink = "Strawberry\NMint Soda"
|
||||
Var NameDrink = "Strawberry Mint Soda"
|
||||
Var NameDrinkTH = "สตรอเบอร์รี่ มินต์โซดา"
|
||||
Var DrinkDescriptionTH = "มินต์ สตรอเบอร์รี่ มะนาว และโซดา"
|
||||
Var DrinkDescription = "Mint , Strawberry , Lime, Soda & Ice"
|
||||
|
|
@ -3152,7 +3161,8 @@
|
|||
<Font> KanitMediumTTF </Font>
|
||||
<Color> 0x322B26 </Color>
|
||||
<State> showengText </State>
|
||||
<Value> "Strawberry\NMint Soda" </Value>
|
||||
<Value> "Strawberry
|
||||
Mint Soda" </Value>
|
||||
</Text>
|
||||
<Text>
|
||||
<X> 16 </X>
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue