Преглед изворни кода

Merge branch 'hy_dny_rgres' of ssh://192.168.0.8:29418/xianjing into hy_dny_16

gdl_123 пре 3 месеци
родитељ
комит
cc260faa25

+ 71 - 1
Assets/Editor/CsvToLua/CsvToLua.cs

@@ -172,6 +172,11 @@ return aaa";
         {
         {
             B2T("D:/项目/其他/Language15000-19000.csv", "D:/项目/其他/111.csv",Encoding.UTF8);
             B2T("D:/项目/其他/Language15000-19000.csv", "D:/项目/其他/111.csv",Encoding.UTF8);
         }
         }
+
+        if (GUILayout.Button("复制luacfg文件"))
+        {
+            CopyFleByLuaCfg("Assets\\Editor\\CsvToLua\\luaCopyFileCfg.lua", "", "D:/项目/图/仙境/cn/","_cn");
+        }
     }
     }
 
 
     public static string GetFilePath()
     public static string GetFilePath()
@@ -725,7 +730,7 @@ return aaa";
 
 
                     string field = fieldValue.RawGet<string, string>("field");
                     string field = fieldValue.RawGet<string, string>("field");
                     string value = fieldValue.RawGet<string, string>("value");
                     string value = fieldValue.RawGet<string, string>("value");
-
+                    
                     SetLuaLine(rowDatas,id,field,value.ToString(),"{0},");
                     SetLuaLine(rowDatas,id,field,value.ToString(),"{0},");
                     
                     
                 }
                 }
@@ -737,6 +742,71 @@ return aaa";
         File.WriteAllLines(outputPath, rowDatas);
         File.WriteAllLines(outputPath, rowDatas);
     }
     }
 
 
+    private static void CopyFleByLuaCfg(string luacfgpath, string fileRootPath,string outputPath,string output)
+    {
+
+        using (LuaState runTime = new LuaState())
+        {
+            runTime.Start();
+            LuaTable luaTable = runTime.DoFile<LuaTable>(luacfgpath);
+
+            LuaFunction init_fun = luaTable.GetLuaFunction("Init");
+            LuaFunction SetOutput_fun = luaTable.GetLuaFunction("SetOutput");
+            LuaFunction GetNextCfg_fun = luaTable.GetLuaFunction("GetNextCfg");
+            LuaFunction GetLen_fun = luaTable.GetLuaFunction("GetLen");
+           
+            init_fun.Call<LuaTable>(luaTable);
+            SetOutput_fun.Call<LuaTable, string>(luaTable, output);
+            int len = GetLen_fun.Invoke<LuaTable,int>(luaTable);
+            int curindex = 1;
+            EditorUtility.DisplayProgressBar("复制中", $"开始复制", 0);
+            string metastr = ".meta";
+            while (true)
+            {
+                EditorUtility.DisplayProgressBar("复制中", $"复制{curindex}/{len}", curindex/len);
+                curindex++;
+                LuaTable cfg = GetNextCfg_fun.Invoke<LuaTable, LuaTable>(luaTable);
+                //{result = false,path = path,outputPath = outputPath}
+                bool result = cfg.RawGet<string, bool>("result");
+                if (result)
+                {
+                    string path = cfg.RawGet<string, string>("path");
+                    string _outputPath = cfg.RawGet<string, string>("outputPath");
+                    string filePath = fileRootPath + path;
+                    string fileOutputPath = outputPath + _outputPath;
+
+                    if (path.Contains(".psd"))
+                    {
+                        Debug.Log($"不复制psd文件:[{path}]");
+                        continue;
+                    }
+
+                  
+
+                    FileHelper.CreateDir(FileHelper.PathRemoveBack(fileOutputPath));
+                    if (File.Exists(filePath))
+                    {
+                        File.Copy(filePath, fileOutputPath, true);
+                       
+                        if (!path.Contains(metastr))
+                        {
+                            File.Copy(filePath+ metastr, fileOutputPath+ metastr, true);
+                        }
+                    }
+                       
+                    else
+                    {
+                        Debug.Log($"不存在文件:[{filePath}]");
+                    }
+                }
+                else
+                {
+                    break;
+                }
+            }
+            EditorUtility.ClearProgressBar();
+        }
+    }
     struct lgInfo 
     struct lgInfo 
     {
     {
        public int index;
        public int index;

+ 1296 - 0
Assets/Editor/CsvToLua/luaCopyFileCfg.lua

@@ -0,0 +1,1296 @@
+local luaCopyFileCfg= {}
+-- basepath  基础路径
+-- path      文件上层路径   
+-- outputDis  输出后的文件上层路径
+-- fileName  文件名
+luaCopyFileCfg.FileCfg ={
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_jie.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_shier.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_sichun.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_taqinhaoli.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "active_icon_taqinqiandao.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "activitycharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "arborday_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "artifactsummon3_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "artifactsummon_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "beginershop_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "cardexchange_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "childrensday_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "christmas_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "comingsoon_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "compositetask1_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "compositetask2_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "cumulative_recharge1_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "cumulative_recharge2_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "dailyrecharge7_bt_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "dailyrecharge_bt_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "dailyrecharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "duihuanhaoli_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "firstrecharge02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "forthnightlogin1_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "forthnightlogin_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "fortnighttask_cn_14.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "fortnighttask_cn_7.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "fortnighttask_cn_7.png.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday10_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday10bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday11_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday13_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday13bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday15_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday15bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday16_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday16bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday17_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday17bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday18_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday18bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday2_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday3_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday3bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday4_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday4bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday5_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday5bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday6bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday7_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday7bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday9_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday9bg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessday_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "goddessdaybg_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "guoqingjie_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "holiday520_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_banner_arborday_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_banner_forthnightlogin1_cn.png",															 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_banner_forthnightlogin_cn.png",																 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_banner_petexchange.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_club_limited_banner14.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_club_limited_banner82.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_club_limited_banner85.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_fortnighttask_cn_14.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_fortnighttask_cn_7.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_guoqingjie_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_kingtask_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_laodongjie_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_shuang11Signin_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "img_summertask_cn_14.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "kingtask_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "laodongjie_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "monthrecharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "naoyuanxiao_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_01_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_02_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_03_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_04_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_05_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_06_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_07_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_08_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_09_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_10_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_11_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_12_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_13_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_14_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_15_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "petexchange_16_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "qiugaoqishuang_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang11Signin_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang11charge1_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang11charge2_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang11charge3_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang12charge1_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "shuang12charge2_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "sign_daily_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "smasheggs_bt_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summercharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summergoldaward_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summerlogin_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summerparty_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "summertask_cn_14.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "superartifactsummon_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ActivityImg",    fileName = "supercharge_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "BossImg",    fileName = "bossimg_qingtuan.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_001_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_002_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_003_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_004_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_005_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_006_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_007_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_008_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_009_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_009_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_009_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_010_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_010_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_010_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_011_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_011_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_011_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_012_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_012_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_012_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_013_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_013_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_013_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_014_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_014_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_014_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_015_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_015_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_015_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_016_cn.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_016_cn.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_016_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_017_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_017_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_017_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_018_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_018_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_018_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_019_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_019_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_019_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_020_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_020_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_020_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_021_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_022_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_023_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_023_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_023_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_024_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_024_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_024_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_025_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_026_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_026_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_026_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_027_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_028_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_028_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_028_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_029_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_030_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_030_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_030_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_031_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_031_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_031_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_032_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_032_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_032_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_033_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_033_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_033_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_034_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_034_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_034_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_035_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_036_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_036_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_036_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_037_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_038_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_038_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_038_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_atk_up_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_broken_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_broken_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_broken_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_down_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_down_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_up_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_crit_up_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_def_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_def_up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_dodge_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_dodge_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_dodge_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_immune_up_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_immune_up_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_immune_up_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_cn.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_up_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_up_cn.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_shield_up_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_speed_down_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Buff",    fileName = "text_buff_speed_up_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Common",    fileName = "ic_res_daijinquan.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Common",    fileName = "ic_res_newyear_coin.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_01.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_01.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_01.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_02.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_02.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_02.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_03.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_03.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_03.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_04.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_04.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_04.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_05.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_05.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_05.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_06.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_06.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_06.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_07.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_07.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_07.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_08.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_08.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_08.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_09.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_09.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_09.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_10.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_10.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_10.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_11.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_11.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_11.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_12.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_12.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_12.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_13.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_13.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_13.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_14.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_14.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_14.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_15.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_15.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_15.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_16.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_16.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_16.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_17.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_17.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_17.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_18.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_18.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_18.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_19.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_19.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_19.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_20.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_20.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ContinuousLogin",    fileName = "label_vip_20.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_101.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_102.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_103.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_104.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_105.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_111.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_113.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_117.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_203.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_204.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_205.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_206.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_207.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_208.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_209.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_301.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_302.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_303.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_304.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_305.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_306.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_307.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_309.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_313.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_315.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_316.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_317.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_318.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_319.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_323.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_324.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_403.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_404.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_405.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_406.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_407.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_408.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_409.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_410.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_412.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_413.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_414.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_417.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_418.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_419.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_420.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_422.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_423.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_424.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_503.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_504.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_505.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_506.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_507.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_510.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_510.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_510.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_511.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_512.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_601.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_602.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_603.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_604.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_605.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_606.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_607.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_608.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_609.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_610.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_611.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_612.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_613.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_614.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_615.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_616.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_617.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_618.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_619.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_620.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_621.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_622.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_623.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_624.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_625.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_626.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_627.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_628.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_629.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "ChatDesignation_630.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_201.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_202.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_401.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_402.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_501.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "Designation",    fileName = "chatdesignation_502.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg01.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg01.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg01.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg02.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg03.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg03.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg03.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg04.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg04.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg04.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg05.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg05.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg05.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg06.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg06.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg06.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg07.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg07.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg07.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg08.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg08.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "ExpeditionBanner",    fileName = "img_dungeon_bg08.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "FrameNew",    fileName = "frame_ic_contract.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "FrameNew",    fileName = "frame_ic_follow.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "FrameNew",    fileName = "frame_ic_follow_r.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "FrameNew",    fileName = "frame_ic_follow_s.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "HeadFrame",    fileName = "HeadFrameIcon_15011.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "HeadFrame",    fileName = "HeadFrameIcon_15021.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "HeadFrame",    fileName = "HeadFrame_15011.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "HeadFrame",    fileName = "HeadFrame_15021.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "designation324.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "designationmonth1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "designationmonth2.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "designationtoptower.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_baishatang.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_coinz_12h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_coinz_1h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_coinz_4h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_coinz_8h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_expbase_12h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_expbase_1h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_expbase_4h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_expbase_8h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_exppt_12h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_exppt_1h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_exppt_4h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_exppt_8h.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_guild_demonbox0.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyear_box.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyear_coin.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyearbox1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyearbox2.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_newyearbox3.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_nuomifen.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_ruyi.png",																						 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_ruyideng.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_skillexp_12h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_skillexp_1h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_skillexp_4h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_skillexp_8h.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tangyuan_dousha.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tangyuan_guihua.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tangyuan_zhima.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tanyuan_shenmi.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_tiaoliao.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_ai.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_dan.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_gao.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_huan.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_jian.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_kuai.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_kuang.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_le.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_nian.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_qi.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_qing.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_qiu.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_shuang.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_shuang1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_xin.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_word_zheng.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "Items",    fileName = "item_yuanxiaolihe.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_adv_01_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_adv_02_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_adv_sale_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_dojo_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_dojo_sale_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_idol_sale_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_pet_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_pet_sale_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_skill_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_skill_sale_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_tower_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_tower_guildwar_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "banner_tower_sale_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_idol_adv_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_03_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_03_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_adv_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_03_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_03_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_dojo_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_01_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_01_cn.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_01_cn.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_02_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_02_cn.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_02_cn.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_03_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_03_cn.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_03_cn.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_04_cn.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_04_cn.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_guildwar_04_cn.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_03_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_03_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_pet_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_skill_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_01_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_01_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_01_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_02_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_02_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_02_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_03_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_03_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_03_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_04_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_04_cn.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RankBanner",    fileName = "text_sale_tower_04_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Acolyte_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a_pro.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2a_pro.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b_pro.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Archer_2b_pro.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Mage_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a_pro.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2a_pro.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b.psd",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b.psd.meta",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b_pro.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Sword_2b_pro.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief_2a.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief_2a_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief_2b.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Head_Thief_2b_pro.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Label_Lead_cn.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Label_Lead_tw.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Label_Up_cn.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "List_Label_Up_tw.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "RoleList",    fileName = "img_club_limited_banner14.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "ic_reshop_banner.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "ic_shop_08.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner03.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner03.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner03.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner04.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner04.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner04.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner05.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner05.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner05.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner06.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner06.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_Banner06.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner01.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner01.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner01.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner02.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner02.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner02.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner07.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner07.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner07.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner09.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner09.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner09.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner10.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner10.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner10.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner100.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner100.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner100.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner101.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner101.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner101.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner102.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner102.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner102.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner103.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner103.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner103.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner104.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner104.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner108.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner104.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner105.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner105.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner105.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner106.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner106.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner106.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner107.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner107.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner107.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner108.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner108.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner109.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner109.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner109.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner11.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner11.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner11.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner110.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner110.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner110.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner111.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner111.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner111.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner112.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner112.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner112.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner113.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner113.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner113.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner114.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner114.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner114.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner115.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner115.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner115.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner116.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner116.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner116.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner117.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner117.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner117.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner118.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner119.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner119.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner119.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner12.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner12.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner12.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner120.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner120.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner120.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner121.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner121.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner121.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner122.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner122.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner122.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner123.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner123.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner123.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner124.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner124.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner124.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner125.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner125.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner125.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner126.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner126.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner126.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner127.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner127.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner127.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner128.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner128.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner128.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner129.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner129.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner129.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner130.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner130.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner130.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner131.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner131.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner131.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner132.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner132.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner132.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner133.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner133.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner133.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner134.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner134.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner134.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner14.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner14.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner14.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner16.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner16.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner16.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner17.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner17.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner17.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner18.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner18.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner18.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner19.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner19.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner19.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner20.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner20.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner20.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner21.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner21.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner21.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner22.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner22.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner22.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner23.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner23.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner23.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner24.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner24.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner24.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner25.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner25.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner25.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner26.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner26.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner26.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner27.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner27.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner27.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner28.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner28.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner28.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner29.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner29.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner29.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner30.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner30.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner30.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner31.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner31.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner31.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner32.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner32.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner32.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner33.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner33.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner33.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner34.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner34.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner34.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner35.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner35.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner35.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner36.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner36.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner36.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner37.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner37.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner37.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner38.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner38.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner38.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner39.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner39.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner39.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner40.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner40.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner40.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner42.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner42.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner42.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner46.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner46.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner46.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner47.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner47.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner47.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner48.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner48.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner48.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner51.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner51.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner51.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner52.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner52.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner52.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner53.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner53.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner53.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner55.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner55.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner55.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner58.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner58.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner58.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner59.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner59.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner59.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner60.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner60.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner60.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner61.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner61.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner61.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner62.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner62.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner62.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner63.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner63.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner63.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner64.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner64.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner64.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner65.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner65.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner65.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner68.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner68.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner68.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner69.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner69.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner69.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner70.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner70.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner70.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner71.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner71.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner71.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner72.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner72.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner72.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner73.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner73.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner73.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner74.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner74.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner74.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner75.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner75.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner75.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner78.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner78.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner78.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner79.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner79.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner79.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner80.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner80.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner80.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner82.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner84.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner85.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner88.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner89.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner89.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner89.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner90.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner90.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner90.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner91.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner91.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner91.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner92.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner92.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner92.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner93.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner93.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner93.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner94.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner94.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner94.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner95.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner95.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner95.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner96.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner96.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner96.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner97.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner97.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner97.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner98.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner98.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner98.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner99.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner99.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "img_club_limited_banner99.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_1.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_10.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_100.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_10k.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_1k.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_5.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_50.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_500.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "market_cashcard_5k.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1000.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1000.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_100w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_10w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1200.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_12000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_128.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_128.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_128.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1280.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1280.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1280.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_12w8.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_12w8.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_12w8.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1800.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_18000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w28.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w28.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_1w28.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_200w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_200w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_200w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_20w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_20w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_20w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_30.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_30.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_30.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_300.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_300.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_300.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3000.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3000.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_30000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_328.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_328.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_328.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3280.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3280.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3280.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_32w8.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_32w8.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_32w8.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w28.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w28.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_3w28.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_500w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_500w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_500w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_50w.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_50w.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_50w.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6.psd.meta",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_60.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_60.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_60.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_600.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_648.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_648.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_648.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6480.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6480.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6480.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_64w8.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_64w8.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_64w8.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6800.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_68000.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6w48.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6w48.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_6w48.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_98.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_98.psd",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_98.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_980.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_980.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_980.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9800.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9800.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9800.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9w8.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9w8.psd",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "num_club_9w8.psd.meta",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_0.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_1.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_14.99_ro.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_19.99_ro.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_2.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_4.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_49.99_ro.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_9.99_ro.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "product_99.99_ro.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "txt_club_first.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "txt_club_free_extra_cn.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "xianxiaLB1.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "xianxiaLB2.png",																					 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "zhanxinshiLB1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "ShopIcons",    fileName = "zhanxinshiLB2.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "Skills",    fileName = "bs-axiuluobafengquan.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "TurntableImg",    fileName = "turntable_title_61.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_lanwei1.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_lanwei2.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_lanwei3.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_lanwei4.png",																				 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot1.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot2.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot3.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot4.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot5.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UIFunOpen",    fileName = "ic_open_petslot6.png",																			 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName01.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName02.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName02.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName02.psd.meta",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName03.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName03.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName03.psd.meta",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName04.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName04.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName04.psd.meta",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName05.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName05.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISkillShow",    fileName = "Img_Skillshow_SkillName05.psd.meta",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon3_banner_artifact_limited.png",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon3_banner_artifact_limited.psd",													 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon3_banner_artifact_limited.psd.meta",														 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact.png",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact.psd",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact.psd.meta",																 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact_limited.png",															 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact_limited.psd",													 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_artifact_limited.psd.meta",														 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_card.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_card.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_card.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_pet.png",																		 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_pet.psd",																 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_pet.psd.meta",																	 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_superartifact_limited.png",														 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_superartifact_limited.psd",												 },
+{basepath = "Assets/Content/Icons/",     path = "UISummon",    fileName = "img_summon_banner_superartifact_limited.psd.meta",													 },
+{basepath = "Assets/Content/Raw_Art",     path = "/Effects/Textures/fuhao",    fileName = "FX_fuhao_daduan001.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_baishatang.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_daijinquan.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_nuomifen.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_ruyi.png",																					 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_ruyideng.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tangyuan_dousha.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tangyuan_guihua.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tangyuan_zhima.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tanyuan_shenmi.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_tiaoliao.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "Items",    fileName = "item_yuanxiaolihe.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "ic_activity_sellout.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_dailyrecharge_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_firstrecharge01_bt_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_firstrecharge01_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_firstrecharge02_bt_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_firstrecharge02_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "img_banner_kingback_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_get_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_receive_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_today2_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_today_cn.png",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_dailyrecharge_tomorrow_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "text_supervalue_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "txt_activity_7day_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIActivity",    fileName = "txt_activity_login_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_boss_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_boss_warning_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_courage_bft_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_expedition_Stageclear_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_title_lose_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_title_victory_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_warning_bft2_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIBattleResult",    fileName = "text_warning_bft_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "btn_club_passport.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "ic_club_sellout.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "title_club_passport_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_buy_blue_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_buy_week_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_buy_yellow_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_gifts_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_limited_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_month_a_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_month_b_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_month_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_passport_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_privilege01_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_privilege02_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_privilege_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_privilegecard_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_rewards_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_shop_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_week_a_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIClub",    fileName = "txt_club_week_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICollect",    fileName = "text_collect_card_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICollect",    fileName = "text_collect_collection_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICollect",    fileName = "text_collect_pet_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "LOGO1.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "LOGO1.png.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "img_create_banner.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "img_create_banner.psd",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "img_create_banner.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UICreateRole",    fileName = "img_create_title.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIExpedition",    fileName = "img_dungeon_bg00.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIExpedition",    fileName = "text_newrecord_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIExpedition",    fileName = "text_newrecord_cn.psd",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIExpedition",    fileName = "text_newrecord_cn.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFashion",    fileName = "btn_fashion_toggle_01.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFashion",    fileName = "btn_fashion_toggle_02.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_lanwei1.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_lanwei2.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_lanwei3.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_lanwei4.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot1.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot2.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot3.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot4.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot5.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIFunOpen",    fileName = "ic_open_petslot6.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIGuildWar",    fileName = "img_guildwar_lose.psd",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIGuildWar",    fileName = "img_guildwar_lose.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "LOGO1.png",																					 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "LOGO1.png.meta",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "LOGO1.psd",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "LOGO1.psd.meta",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa12.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa12.psd.meta",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa16.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa16.psd.meta",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa8.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "btn_cadpa8.psd.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "txt_login_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "txt_login_cn.psd",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILanuch",    fileName = "txt_login_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "ic_luckyegg_mvp.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "ic_luckyegg_mvp.psd",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "ic_luckyegg_mvp.psd.meta",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "label_luckyegg_rare_mvp.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "label_luckyegg_rare_mvp.psd",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "label_luckyegg_rare_mvp.psd.meta",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "txt_luckyegg_goldenegg_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UILuckyEgg",    fileName = "txt_luckyegg_variegationegg_cn.png",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_adventure_cn.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_adventure_cn.psd",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_adventure_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_bag_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_pet_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_role_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_role_cn.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_role_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_shop_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_town_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_town_cn.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "text_town_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "txt_login_cn.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMain",    fileName = "txt_login_cn.psd.meta",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIMap",    fileName = "img_start_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UINewStory",    fileName = "txt_story01_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UINewStory",    fileName = "txt_story02_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UINewStory",    fileName = "txt_story03_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIQestion",    fileName = "text_title_q1_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIQestion",    fileName = "text_title_q1_cn.psd",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIQestion",    fileName = "text_title_q1_cn.psd.meta",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRedPoint",    fileName = "ic_bubble_new_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRedPoint",    fileName = "ic_bubble_new_y_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRedPoint",    fileName = "ic_bubble_red.png.meta",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_artifact_transsuccess_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_artifact_transsuccess_cn.psd",														 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_artifact_transsuccess_cn.psd.meta",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_break_success_tw.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_cured_success1_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_cured_success2_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_cured_success3_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_cured_success4_cn.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success1_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success1_cn.psd",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success1_cn.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success2_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success2_cn.psd",															 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success2_cn.psd.meta",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success3_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIRole",    fileName = "txt_transfer_success4_cn.png",																	 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIShop",    fileName = "S_ic_sellout.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIShop",    fileName = "S_title.png",																					 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UISign",    fileName = "text_signin_title_tw.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIStarSign",    fileName = "img_banner_bg.png",																			 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIStarSign",    fileName = "img_banner_title.png",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UITurnWheel",    fileName = "text_title_turnwheel_cn.png",																 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIVoyage",    fileName = "txt_fail_cn.png",																				 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIVoyage",    fileName = "txt_fail_cn.psd",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIVoyage",    fileName = "txt_fail_cn.psd.meta",																		 },
+{basepath = "Assets/Content/Raw_Art/UI/",     path = "UIVoyage",    fileName = "txt_success_cn.png",                                                                           }, 
+
+}
+
+
+
+
+function luaCopyFileCfg:Init()
+    self.curindex = 1
+    self.MaxIndex = #self.FileCfg
+    self.curOutput = "_cn"
+end 
+
+function luaCopyFileCfg:SetOutput(output)
+    self.curOutput = output
+end
+
+function luaCopyFileCfg:GetLen()
+    return self.MaxIndex 
+end
+
+function luaCopyFileCfg:GetNextCfg()
+    if self.curindex > self.MaxIndex then
+        return {result = false}
+    end
+    local curCfg = self.FileCfg[self.curindex]
+    self.curindex = self.curindex + 1
+    local path = curCfg.basepath..curCfg.path..'/'..curCfg.fileName
+    local outputPath = curCfg.basepath..curCfg.path..self.curOutput..'/'..curCfg.fileName
+    return {result = true,path = path,outputPath = outputPath}
+end
+
+return luaCopyFileCfg

+ 7 - 0
Assets/Editor/CsvToLua/luaCopyFileCfg.lua.meta

@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 10a3e2ba675ae4941bbfb8e067ea23ca
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

+ 7 - 7
Assets/Lua/UI/Common/ChatTextItemCtr.lua

@@ -262,13 +262,13 @@ function ChatTextItemCtr:SetData(wnd, item, logicData, enterType, onClickOwner,
                 item.text.symbolText.raycastTarget = not content.used
                 item.text.symbolText.raycastTarget = not content.used
                 if not content.used then
                 if not content.used then
                     item.text.symbolTextEvent:RegisterClickEvent(nil, function (hyperParam)
                     item.text.symbolTextEvent:RegisterClickEvent(nil, function (hyperParam)
-                        local curTime = ManagerContainer.LuaTimerMgr:GetTimeSecond()
-                        local isOneDay = ManagerContainer.LuaTimerMgr:TwoTimeSecondBetweenOneDay(content.sendTime, curTime)
-                        if not isOneDay then
-                            ManagerContainer.LuaUIMgr:ErrorNoticeDisplay("ExpeditionBailout")
-                            content.used = true
-                            return
-                        end
+                        -- local curTime = ManagerContainer.LuaTimerMgr:GetTimeSecond()
+                        -- local isOneDay = ManagerContainer.LuaTimerMgr:TwoTimeSecondBetweenOneDay(content.sendTime, curTime)
+                        -- if not isOneDay then
+                        --     ManagerContainer.LuaUIMgr:ErrorNoticeDisplay("ExpeditionBailout")
+                        --     content.used = true
+                        --     return
+                        -- end
 
 
                         local list = string.split(hyperParam, ";")
                         local list = string.split(hyperParam, ";")
                         local uid = ManagerContainer.DataMgr.UserData:GetUserId()
                         local uid = ManagerContainer.DataMgr.UserData:GetUserId()

+ 7 - 7
Assets/Lua/UI/Common/PrivateChatItemCtr.lua

@@ -110,13 +110,13 @@ function PrivateChatItem:SetData(wnd, item, logicData)
             chatItem.helpText1.symbolText.raycastTarget = not chat.message.used
             chatItem.helpText1.symbolText.raycastTarget = not chat.message.used
             if not chat.message.used then
             if not chat.message.used then
                 chatItem.helpText1.symbolTextEvent:RegisterClickEvent(nil, function (hyperParam)
                 chatItem.helpText1.symbolTextEvent:RegisterClickEvent(nil, function (hyperParam)
-                    local curTime = ManagerContainer.LuaTimerMgr:GetTimeSecond()
-                    local isOneDay = ManagerContainer.LuaTimerMgr:TwoTimeSecondBetweenOneDay(chat.message.sendTime, curTime)
-                    if not isOneDay then
-                        ManagerContainer.LuaUIMgr:ErrorNoticeDisplay("ExpeditionBailout")
-                        chat.message.used = true
-                        return
-                    end
+                    -- local curTime = ManagerContainer.LuaTimerMgr:GetTimeSecond()
+                    -- local isOneDay = ManagerContainer.LuaTimerMgr:TwoTimeSecondBetweenOneDay(chat.message.sendTime, curTime)
+                    -- if not isOneDay then
+                    --     ManagerContainer.LuaUIMgr:ErrorNoticeDisplay("ExpeditionBailout")
+                    --     chat.message.used = true
+                    --     return
+                    -- end
 
 
                     local list = string.split(hyperParam, ";")
                     local list = string.split(hyperParam, ";")
                     local uid = ManagerContainer.DataMgr.UserData:GetUserId()
                     local uid = ManagerContainer.DataMgr.UserData:GetUserId()

+ 108 - 0
Build/BuildDependenceResource/PackConfig.json

@@ -1048,6 +1048,114 @@
             "keystorePass": "n9P5j2b7blMm",
             "keystorePass": "n9P5j2b7blMm",
             "keyaliasName": "game",
             "keyaliasName": "game",
             "keyaliasPass": "KlYX666Ro"
             "keyaliasPass": "KlYX666Ro"
+        },
+        {
+            "channelName": "小龙",
+            "appName": "萌新冒險家",
+            "distributeName": "正式服(新港澳台)",
+            "channelUniqueId": "12003020",
+            "bundleId": "com.mxmxjgame.gp",
+            "gameVersionCode": {
+                "major": 1,
+                "minor": 0,
+                "release": 0,
+                "patch": 6
+            },
+            "resVersionCode": {
+                "major": 0,
+                "minor": 1,
+                "release": 0,
+                "patch": 0
+            },
+            "iconRelativePath": "XinLiWuYu",
+            "defineSymbols": [
+                "USE_LUA",
+                "VUPLEX_CCU",
+                "FPS_DISABLE"
+            ],
+            "logo1RelativePath": "xlwy.png",
+            "loginRelativePath": "Default",
+            "gameAssetsPath": "Default",
+            "specialFuncShield": false,
+            "splashScreenRelativeFiles": [],
+            "obscureKey": "b497cf7b1214c130e0140910a7f8c6bf,536607",
+            "obscureOffsetMin": 0,
+            "obscureOffsetValues": [
+                6,
+                12,
+                18
+            ],
+            "sdkVerifyUrl": "http://128.14.226.105:81//",
+            "serverListUrl": "http://128.14.226.105:81/serverlist",
+            "notifyUrl": "http://128.14.226.105:88/res/NoticeNew/",
+            "specialInfoUrl": "http://128.14.226.105:81//channel",
+            "customerServiceInfoUrl": "http://165.154.202.27:81//vipService",
+            "leBian_MainChId": "69423",
+            "leBian_ClientChId": "youyi_bt_jj",
+            "leBian_SECID": "dmcve6kq.c",
+            "plugins": [
+                "common",
+                "YOUYI_1.6.9"
+            ],
+            "sdkBridges": [
+                "Quick_andriod_hy_en"
+            ],
+            "keystoreName": "wenting.keystore",
+            "keystorePass": "n9P5j2b7blMm",
+            "keyaliasName": "game",
+            "keyaliasPass": "KlYX666Ro"
+        },
+        {
+            "channelName": "小龙",
+            "appName": "萌新冒險家",
+            "distributeName": "测试服(新港澳台)",
+            "channelUniqueId": "12003021",
+            "bundleId": "com.mxmxjgame.gp",
+            "gameVersionCode": {
+                "major": 1,
+                "minor": 0,
+                "release": 0,
+                "patch": 6
+            },
+            "resVersionCode": {
+                "major": 0,
+                "minor": 1,
+                "release": 0,
+                "patch": 0
+            },
+            "iconRelativePath": "XinLiWuYu",
+            "defineSymbols": [
+                "USE_LUA",
+                "VUPLEX_CCU",
+                "FPS_DISABLE"
+            ],
+            "logo1RelativePath": "xlwy.png",
+            "loginRelativePath": "Default",
+            "gameAssetsPath": "Default",
+            "specialFuncShield": false,
+            "splashScreenRelativeFiles": [],
+            "obscureKey": "",
+            "obscureOffsetMin": 0,
+            "obscureOffsetValues": [],
+            "sdkVerifyUrl": "http://43.226.57.217:81//",
+            "serverListUrl": "http://43.226.57.217:81/serverlist",
+            "notifyUrl": "http://43.226.57.217:88/res/NoticeNew/",
+            "specialInfoUrl": "http://43.226.57.217:81//channel",
+            "customerServiceInfoUrl": "http://43.226.57.217:81//vipService",
+            "leBian_MainChId": "69423",
+            "leBian_ClientChId": "youyi_bt_jj",
+            "leBian_SECID": "dmcve6kq.c",
+            "plugins": [
+                "common",
+                "YOUYI_1.6.9"
+            ],
+            "sdkBridges": [
+                "Quick_andriod_hy_en"
+            ],
+            "keystoreName": "wenting.keystore",
+            "keystorePass": "n9P5j2b7blMm",
+            "keyaliasName": "game",
+            "keyaliasPass": "KlYX666Ro"
         }
         }
     ],
     ],
     "weiDuanAndroids": [
     "weiDuanAndroids": [

+ 10 - 1
Build/BuildDependenceResource/Plugins/SDKBridge/Android_en_hx/YouYiSDKAndroid.cs

@@ -74,7 +74,16 @@ namespace quicksdk
             {
             {
                 Dictionary<string, SDKMgr.ProductInfo> cfgs = SDKMgr.Instance.ProductInfos;
                 Dictionary<string, SDKMgr.ProductInfo> cfgs = SDKMgr.Instance.ProductInfos;
 
 
-                string pice = amount.ToString("F2");
+                 int itemp = Mathf.FloorToInt(amount);
+                string pice = "";
+                if ((itemp + 0.005f) > amount)
+                {
+                    pice = itemp.ToString();
+                }
+                else
+                {
+                    pice = amount.ToString("F2");
+                }
 
 
                 if (cfgs.ContainsKey(pice))
                 if (cfgs.ContainsKey(pice))
                 {
                 {

+ 10 - 1
Build/BuildDependenceResource/Plugins/SDKBridge/Quick_andriod_hy_en/YouYiSDKAndroid.cs

@@ -74,7 +74,16 @@ public class YouYiSDKAndroid : SDKBase
             {
             {
                 Dictionary<string, SDKMgr.ProductInfo> cfgs = SDKMgr.Instance.ProductInfos;
                 Dictionary<string, SDKMgr.ProductInfo> cfgs = SDKMgr.Instance.ProductInfos;
 
 
-                string pice = amount.ToString("F2");
+                 int itemp = Mathf.FloorToInt(amount);
+                string pice = "";
+                if ((itemp + 0.005f) > amount)
+                {
+                    pice = itemp.ToString();
+                }
+                else
+                {
+                    pice = amount.ToString("F2");
+                }
 
 
                 if (cfgs.ContainsKey(pice))
                 if (cfgs.ContainsKey(pice))
                 {
                 {