diff --git a/Assets/PerfectWorld/Scripts/Managers/CECAttacksMan.cs b/Assets/PerfectWorld/Scripts/Managers/CECAttacksMan.cs
index 680393191f..15506e1bbd 100644
--- a/Assets/PerfectWorld/Scripts/Managers/CECAttacksMan.cs
+++ b/Assets/PerfectWorld/Scripts/Managers/CECAttacksMan.cs
@@ -27,36 +27,98 @@ namespace BrewMonster
{
StartLoad();
}
- private async Task StartLoad()
+ private async void StartLoad()
{
SetupAttacksMan();
- uint idSkill = 0;
-
- //int count = 0;
- while (true/*count >=200*/)
+ // Get the skill map to check if it's populated
+ var skillMap = SkillStub.GetMap();
+ if (skillMap == null || skillMap.Count == 0)
+ {
+ BMLogger.LogWarning("CECAttacksMan::Start() - Skill map is empty, skipping GFX loading");
+ return;
+ }
+
+ LoadAllSkillGfxAsync();
+
+ }
+
+ ///
+ /// Load GFX for a specific skill on-demand (async, non-blocking)
+ /// Call this when a skill is about to be used for the first time
+ ///
+ public async void LoadSkillGfxOnDemand(uint skillId)
+ {
+ // Check if already loaded
+ if (m_pSkillGfxComposerMan.GetSkillGfxComposer((int)skillId) != null)
+ return; // Already loaded
+
+ // Get SkillStub instance / 获取技能存根实例
+ SkillStub skillStub = SkillStub.GetStub(skillId);
+ if (skillStub == null)
+ {
+ BMLogger.LogWarning($"CECAttacksMan::LoadSkillGfxOnDemand() - SkillStub not found for skill {skillId}");
+ return;
+ }
+
+ (string flyGFXPath, string hitGrdGFXPath, string hitGFXPath) = ElementSkill.GetAllGFX(skillId);
+
+ // Pass skillStub to LoadOneComposerAsync / 将技能存根传递给LoadOneComposerAsync
+ bool loaded = await m_pSkillGfxComposerMan.LoadOneComposerAsync((int)skillId, skillStub, flyGFXPath, hitGrdGFXPath, hitGFXPath);
+ if (!loaded)
+ {
+ BMLogger.LogWarning($"CECAttacksMan::LoadSkillGfxOnDemand() - Failed to load GFX for skill {skillId}");
+ }
+ }
+
+ public async void LoadAllSkillGfxAsync()
+ {
+ uint idSkill = 0;
+
+ var skillMap = SkillStub.GetMap();
+ if (skillMap == null || skillMap.Count == 0)
+ {
+ BMLogger.LogWarning("CECAttacksMan::LoadAllSkillGfxAsync() - Skill map is empty");
+ return;
+ }
+
+ BMLogger.Log($"CECAttacksMan::LoadAllSkillGfxAsync() - Loading GFX for {skillMap.Count} skills...");
+ int loadedCount = 0;
+ int failedCount = 0;
+
+ while (true)
{
- //count++;
idSkill = ElementSkill.NextSkill(idSkill);
if (idSkill == 0)
break;
+ // Get SkillStub instance / 获取技能存根实例
+ SkillStub skillStub = SkillStub.GetStub(idSkill);
+ if (skillStub == null)
+ {
+ BMLogger.LogWarning($"CECAttacksMan::LoadAllSkillGfxAsync() - SkillStub not found for skill {idSkill}");
+ failedCount++;
+ continue;
+ }
+
(string flyGFXPath, string hitGrdGFXPath, string hitGFXPath) = ElementSkill.GetAllGFX(idSkill);
- /*while (pszSGCFile.StartsWith("\\"))
- pszSGCFile = pszSGCFile.Substring(1);
-
- string szSGCFile;
- if (string.IsNullOrEmpty(pszSGCFile))
- szSGCFile = "nosuchthing";
+ // Use await instead of blocking .Result to prevent freezing
+ // Pass skillStub to LoadOneComposerAsync / 将技能存根传递给LoadOneComposerAsync
+ bool loaded = await m_pSkillGfxComposerMan.LoadOneComposerAsync((int)idSkill, skillStub, flyGFXPath, hitGrdGFXPath, hitGFXPath);
+ if (loaded)
+ loadedCount++;
else
- szSGCFile = $"{pszSGCFile}";*/
- var isLoaded = await m_pSkillGfxComposerMan.LoadOneComposer((int)idSkill, flyGFXPath, hitGrdGFXPath, hitGFXPath);
- if (!isLoaded)
+ failedCount++;
+
+ // Yield every 10 skills to keep Unity responsive
+ if ((loadedCount + failedCount) % 10 == 0)
{
- // a_LogOutput(1, "CECAttacksMan::CECAttacksMan(), failed to load skill [%d]'s gfx composer [%s]", idSkill, szSGCFile);
+ await System.Threading.Tasks.Task.Yield();
}
}
+
+ BMLogger.Log($"CECAttacksMan::LoadAllSkillGfxAsync() - Complete. Loaded: {loadedCount}, Failed: {failedCount}");
//TODO: convert this part
/* char szMultiSectionFile[MAX_PATH] = { 0 };
strcpy(szMultiSectionFile, "configs\\multi_section_skill.txt");
@@ -378,6 +440,8 @@ namespace BrewMonster
private GfxAttackMode m_AttHitMode;
private bool m_bRelScl;
+ private float m_fDefTarScl = 1.8f;
+ private GfxCluster m_HitCluster = new GfxCluster { m_ulCount = 1, m_dwInterv = 0 };
public A3DSkillGfxComposer()
@@ -399,7 +463,7 @@ namespace BrewMonster
string flyGfxName;
string hitGrdGfxName;
#endif
- public async Task Load(string flyGFXPath, string hitGrdGFXPath, string hitGFXPath)
+ public async Task Load(SkillStub skillStub, string flyGFXPath, string hitGrdGFXPath, string hitGFXPath)
{
#if !UNITY_EDITOR
string flyGfxName = flyGFXPath;
@@ -410,31 +474,67 @@ namespace BrewMonster
hitGfxName = hitGFXPath;
hitGrdGfxName = hitGrdGFXPath;
#endif
- if (flyGfxName != string.Empty)
- {
- flyGFX = await AddressableManager.Instance.LoadPrefabAsync("gfx/" + flyGfxName);
- }
- if (hitGfxName != string.Empty)
- {
- hitGFX = await AddressableManager.Instance.LoadPrefabAsync("gfx/" + hitGfxName);
- }
- if (hitGrdGfxName != string.Empty)
- {
- hitGrdGFX = await AddressableManager.Instance.LoadPrefabAsync("gfx/" + hitGrdGfxName);
- }
+
+ // Load GFX prefabs / 加载GFX预制体
+ flyGFX = string.IsNullOrEmpty(flyGfxName) ? null : await AddressableManager.Instance.LoadPrefabAsync("gfx/" + flyGfxName);
+ hitGFX = string.IsNullOrEmpty(hitGfxName) ? null : await AddressableManager.Instance.LoadPrefabAsync("gfx/" + hitGfxName);
+ hitGrdGFX = string.IsNullOrEmpty(hitGrdGfxName) ? null : await AddressableManager.Instance.LoadPrefabAsync("gfx/" + hitGrdGfxName);
+
//BMLogger.LogError("HoangDev: Load A3DSkillGfxComposer GFX name: " + name);
- if (flyGFX == null)
+ if (flyGFX == null && !string.IsNullOrEmpty(flyGfxName))
{
flyGFX = Resources.Load("GFX/" + "PlaceHolder");
}
- if (hitGFX == null)
+
+ // Read parameters from SkillStub / 从技能存根读取参数
+ if (skillStub != null)
{
- hitGFX = Resources.Load("GFX/" + "PlaceHolder");
+ m_MoveMode = skillStub.m_MoveMode;
+ m_TargetMode = skillStub.m_TargetMode;
+ m_AttFlyMode = skillStub.m_AttFlyMode;
+ m_AttHitMode = skillStub.m_AttHitMode;
+ m_dwFlyTime = skillStub.m_dwFlyTime;
+ m_bTraceTarget = skillStub.m_bTraceTarget;
+
+ // Clustering / 集群
+ m_FlyCluster.m_ulCount = skillStub.m_FlyClusterCount;
+ m_FlyCluster.m_dwInterv = skillStub.m_FlyClusterInterval;
+ m_HitCluster.m_ulCount = skillStub.m_HitClusterCount;
+ m_HitCluster.m_dwInterv = skillStub.m_HitClusterInterval;
+
+ // Behavior / 行为
+ m_bOneHit = skillStub.m_bOneHit;
+ m_bFadeOut = skillStub.m_bFadeOut;
+ m_bRelScl = skillStub.m_bRelScl;
+ m_fDefTarScl = skillStub.m_fDefTarScl;
+
+ // Area / 区域
+ /* m_param.m_bArea = skillStub.m_bArea;
+ m_param.m_Shape = skillStub.m_Shape;
+ m_param.m_vSize = skillStub.m_vSize;
+
+ // Param value / 参数值
+ m_param.value = skillStub.m_param.value;*/
}
- if (hitGrdGFX == null)
+ else
{
- hitGrdGFX = Resources.Load("GFX/" + "PlaceHolder");
+ // Set defaults if no skillStub provided / 如果没有提供技能存根则设置默认值
+ m_MoveMode = GfxMoveMode.enumLinearMove;
+ m_TargetMode = GfxTargetMode.enumHostToTarget;
+ m_AttFlyMode = GfxAttackMode.enumAttPoint;
+ m_AttHitMode = GfxAttackMode.enumAttPoint;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyCluster.m_ulCount = 1;
+ m_FlyCluster.m_dwInterv = 0;
+ m_HitCluster.m_ulCount = 1;
+ m_HitCluster.m_dwInterv = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
}
+
return true;
}
public void SpawnGFX(long IDTarget)
@@ -1243,4 +1343,12 @@ public enum EmitShape
enumSphere,
enumCylinder,
enumShapeNum
+};
+
+public enum GfxSkillValType
+{
+ enumGfxSkillBool = 0,
+ enumGfxSkillInt,
+ enumGfxSkillFloat,
+ enumGfxSkillValTypeNum
};
\ No newline at end of file
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/SkillStubs1.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/SkillStubs1.cs
index 55bdbb4ca4..9293eeba60 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/SkillStubs1.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/SkillStubs1.cs
@@ -5,11 +5,6 @@ namespace BrewMonster
{
public static partial class SkillStubs
{
- public static void Init()
- {
- int i = 0;
- i++;
- }
// Skill stub declarations
public static Skill1Stub __stub_Skill1Stub = new Skill1Stub();
public static Skill2Stub __stub_Skill2Stub = new Skill2Stub();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1.cs
index bcc83ee169..6b6fdd5f06 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/虎击击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill10.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill10.cs
index 5564da8104..3f1ecc0fe6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill10.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill10.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/沙陷击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill100.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill100.cs
index 51c3b7006d..18031a6076 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill100.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill100.cs
@@ -111,6 +111,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/缩地术.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1195.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1195.cs
index 29316ae11b..4a5bc5bdfa 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1195.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1195.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/疾风霹雳击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(23749);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill176.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill176.cs
index 8e19b7aa46..00527964d7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill176.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill176.cs
@@ -79,6 +79,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/凌波微步击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill177.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill177.cs
index 49a262c86c..7d8c7d412e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill177.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill177.cs
@@ -79,6 +79,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/易筋经.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill178.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill178.cs
index 808f2077f7..6be2c220b2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill178.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill178.cs
@@ -79,6 +79,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/易髓经.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill179.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill179.cs
index 30ce855aa4..18966d468c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill179.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill179.cs
@@ -79,6 +79,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/金刚经击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1805.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1805.cs
index 6d151fe323..bd7275ec28 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1805.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1805.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/法师_法之奥义_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1807.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1807.cs
index a6ee9649bb..b0188f5d24 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1807.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1807.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/法师_静谧之术_飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/静谧之术_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1808.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1808.cs
index 4ab4a4d85a..aae519c052 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1808.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1808.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/法师_灸焰_飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/法师_灸焰_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1809.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1809.cs
index eaf601ecbd..351e4b8f1b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1809.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1809.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/法师_沙暴_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1815.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1815.cs
index 8fb165819e..aa7585486b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1815.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1815.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/巫师_复仇雷霆_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(5);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1816.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1816.cs
index d7ef661273..fe6f1eae3d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1816.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1816.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_狂风.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
restrict_weapons.Add(5);
restrict_weapons.Add(9);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1817.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1817.cs
index e2219eac18..0147b2263b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1817.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1817.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_碎颅.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
restrict_weapons.Add(1);
restrict_weapons.Add(9);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1818.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1818.cs
index 60521bb984..0ce3068721 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1818.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1818.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/武侠_回旋击.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_回旋击.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
restrict_weapons.Add(1);
restrict_weapons.Add(5);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1819.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1819.cs
index 1e08911f3f..a297941bb7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1819.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1819.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/龙爪手_飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)8;
+ m_TargetMode = (GfxTargetMode)9;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1100;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill182.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill182.cs
index 4c9e06e3dc..445065543b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill182.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill182.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/冰雹飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 4000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill183.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill183.cs
index f03e16cd75..450faebf08 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill183.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill183.cs
@@ -78,6 +78,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/般若心经.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill184.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill184.cs
index e1dda38cd1..32f21517a7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill184.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill184.cs
@@ -113,6 +113,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/石破天惊飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/石破天惊击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1864.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1864.cs
index 16e03d1482..beab97baa6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1864.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1864.cs
@@ -58,6 +58,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/法师_冰晶世界_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1865.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1865.cs
index e8f882b2fb..ff3e8f6223 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1865.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1865.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/法师_静谧之术2_飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/静谧之术2_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1868.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1868.cs
index e5e2ec69e0..584d39a747 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1868.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1868.cs
@@ -58,6 +58,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_狂风.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1871.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1871.cs
index 0087698947..6cfaa2e43e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1871.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1871.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_狂风.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
restrict_weapons.Add(5);
restrict_weapons.Add(9);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1872.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1872.cs
index 854ae1e408..97c64ffc1b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1872.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1872.cs
@@ -58,6 +58,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_狂风.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1873.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1873.cs
index 7bd6829e78..bca3fdc7f0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1873.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1873.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/法师_静谧之术_飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/静谧之术_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1874.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1874.cs
index 9533bb79c0..65de267232 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1874.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill1874.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/法师_静谧之术2_飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/静谧之术2_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2.cs
index c04c633495..4cff4b1196 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/寸力击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2206.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2206.cs
index 63c99439b3..4b6e36b436 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2206.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2206.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_凌风改_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2207.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2207.cs
index 9d62ce8538..8bd2412689 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2207.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2207.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_凌风改_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2208.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2208.cs
index 50008c4af4..4c3388f65c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2208.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2208.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_横扫千军改_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2209.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2209.cs
index 8081ef98b5..26341f400e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2209.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2209.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_横扫千军改_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2210.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2210.cs
index d07d02906c..7d97e96d99 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2210.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2210.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_凌风改_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
restrict_weapons.Add(5);
restrict_weapons.Add(9);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2211.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2211.cs
index c83fe39037..4a8786ded3 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2211.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2211.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/武侠_凌风改_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
restrict_weapons.Add(5);
restrict_weapons.Add(9);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2254.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2254.cs
index c9f0efa237..cee1216f69 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2254.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2254.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/磐石护甲_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2255.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2255.cs
index ad3ac10e7f..11fa6a7796 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2255.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2255.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/磐石护甲_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2256.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2256.cs
index 51b7933eea..4a06d0127b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2256.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2256.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/烈焰护甲_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2257.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2257.cs
index 4ac808912f..7ac13fbaef 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2257.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2257.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/烈焰护甲_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2258.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2258.cs
index 8116036c1e..ea9588974e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2258.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2258.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/寒冰护甲_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2259.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2259.cs
index 5e579e1b1a..86cff55f05 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2259.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2259.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/寒冰护甲_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2260.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2260.cs
index 31a7d20f97..7139c17016 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2260.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2260.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/法师_业火符_飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/法师_业火符_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2261.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2261.cs
index 3e020e738e..377c02dcaf 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2261.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2261.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/法师_业火符_飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/法师_业火符_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2262.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2262.cs
index 97499d809b..27f7a06470 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2262.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2262.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/寒霜_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2263.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2263.cs
index d66c7dc70d..9efef2164d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2263.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2263.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/寒霜_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2264.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2264.cs
index 95fc57f8a5..bdb3e99af1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2264.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2264.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/法师_沙石咒_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2265.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2265.cs
index 66bc1b84f2..dc92308dde 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2265.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2265.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/法师_沙石咒_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2352.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2352.cs
index 259b998b67..c0ebfb196d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2352.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2352.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/回马枪击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2367.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2367.cs
index 26cd3bc520..50fd0df609 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2367.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2367.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/回马枪击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2368.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2368.cs
index 3b65c0e74b..49b7a97e63 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2368.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2368.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/追魂诀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2369.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2369.cs
index 9d6197b04c..69c5afe12e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2369.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2369.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/追魂诀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2370.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2370.cs
index fb8f6bb559..e7fda8b346 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2370.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2370.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/流星赶月击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
restrict_weapons.Add(1);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2371.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2371.cs
index af6be8e297..f4f0007054 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2371.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2371.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/流星赶月击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
restrict_weapons.Add(1);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2372.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2372.cs
index d73b022571..3b0ca2ec4d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2372.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2372.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/霸王断岳击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2373.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2373.cs
index 926a5aaf4e..9e6f312ffe 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2373.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2373.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/霸王断岳击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2374.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2374.cs
index e925906f46..e59c3ed536 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2374.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2374.cs
@@ -119,6 +119,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/霸王龙飞击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
restrict_weapons.Add(1);
restrict_weapons.Add(5);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2375.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2375.cs
index df091fd0cd..9220f97b03 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2375.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2375.cs
@@ -119,6 +119,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/霸王龙飞击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
restrict_weapons.Add(1);
restrict_weapons.Add(5);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2452.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2452.cs
index fd49663daf..861a3749a6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2452.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2452.cs
@@ -157,6 +157,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/凌杀飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/凌杀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2453.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2453.cs
index bd9ebd4576..1a203c689e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2453.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill2453.cs
@@ -157,6 +157,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/凌杀飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/凌杀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill3.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill3.cs
index 42c83dee15..f19e095d55 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill3.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill3.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/凌风击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
restrict_weapons.Add(5);
restrict_weapons.Add(9);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill374.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill374.cs
index 4bd5fc11db..0ada834019 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill374.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill374.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/虎击击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill375.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill375.cs
index fc91afd15c..5f91647a8b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill375.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill375.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/虎击击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill376.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill376.cs
index a7704e842e..affa4629d0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill376.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill376.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/寸力击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill377.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill377.cs
index 571f5719a2..bc49962a56 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill377.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill377.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/寸力击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill378.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill378.cs
index 65546d39f2..552e386624 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill378.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill378.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/流水击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill379.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill379.cs
index f59db06741..f99dbdd238 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill379.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill379.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/流水击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill380.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill380.cs
index a42a40a4ee..ffcf14fc57 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill380.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill380.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/凌风击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
restrict_weapons.Add(5);
restrict_weapons.Add(9);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill381.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill381.cs
index 6124a0c19a..61fb9e4b59 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill381.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill381.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/凌风击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
restrict_weapons.Add(5);
restrict_weapons.Add(9);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill382.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill382.cs
index f5dae2cb08..422c9c6b53 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill382.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill382.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/龙现飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/龙现击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill383.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill383.cs
index 7d4326e05d..6293b4786a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill383.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill383.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/龙现飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/龙现击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill384.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill384.cs
index 937d77b666..c4b6f009a1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill384.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill384.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/断岩斩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill385.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill385.cs
index 24ee55a6f3..a954139bb1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill385.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill385.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/断岩斩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill386.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill386.cs
index 30bda9c592..53f3b5aaf7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill386.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill386.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/狂龙斩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill387.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill387.cs
index f0ce6c69a0..57d1e9da57 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill387.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill387.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/狂龙斩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill388.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill388.cs
index dbf31ac8a1..cd9966ec4b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill388.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill388.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/横扫千军击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill389.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill389.cs
index 0e8fd0a499..d8683c50bb 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill389.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill389.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/横扫千军击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill390.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill390.cs
index 432e009dd7..c681ea8af9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill390.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill390.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/劈空掌飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/劈空掌击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 1;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 6.0f;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill391.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill391.cs
index f38bd84a6c..85571142c6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill391.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill391.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/劈空掌飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/劈空掌击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 1;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 6.0f;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill392.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill392.cs
index bb02504b76..eba01d516b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill392.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill392.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/无影脚击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill393.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill393.cs
index fb0fb1af9e..378cc82e54 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill393.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill393.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/无影脚击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill394.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill394.cs
index e602c48e3f..9ddc9accb6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill394.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill394.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/风卷残云击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill395.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill395.cs
index 1dbc282871..59daed91ba 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill395.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill395.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/风卷残云击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill396.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill396.cs
index 1c5d3d2159..cf1a1ada9e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill396.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill396.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/云龙九现击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill397.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill397.cs
index 4ab5a161a5..ea6bcb1a26 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill397.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill397.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/云龙九现击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill398.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill398.cs
index bd77cb6237..42d158801a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill398.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill398.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/疾风霹雳击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 1;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill399.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill399.cs
index df7ce1d55a..710c664603 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill399.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill399.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/疾风霹雳击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 1;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill4.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill4.cs
index 019ab080b7..c4d11dadfa 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill4.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill4.cs
@@ -113,6 +113,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/狮子吼击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill400.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill400.cs
index 96c6a2e4e5..41270ef76d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill400.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill400.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/回马枪击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill401.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill401.cs
index 81c26a63d8..2f0f77f82a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill401.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill401.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/回马枪击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill402.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill402.cs
index f5bd26f767..60e84cce0a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill402.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill402.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/流星赶月击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 1;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill403.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill403.cs
index f1e56cb9a8..03de1f6f3a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill403.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill403.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/流星赶月击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 1;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill404.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill404.cs
index 6b8dba547b..f1633e1c7f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill404.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill404.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/刃域击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 30;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill405.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill405.cs
index 45b004682e..38fa38bb52 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill405.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill405.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/刃域击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 30;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill406.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill406.cs
index d8721a9376..ccac409391 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill406.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill406.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/霸王龙飞击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill407.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill407.cs
index 4c5d0693a3..c428c35b10 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill407.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill407.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/霸王龙飞击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill408.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill408.cs
index 38eb363682..24e81dcfbc 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill408.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill408.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/霸王断岳击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill409.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill409.cs
index bc49830490..457e7c6306 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill409.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill409.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/霸王断岳击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill410.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill410.cs
index 087180bdf7..4fcecccb2f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill410.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill410.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/霸王暴怒击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill411.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill411.cs
index 0baa2a169c..35de283052 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill411.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill411.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/霸王暴怒击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill412.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill412.cs
index ea9e67ef0b..1c4f78a3c9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill412.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill412.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/天火狂龙飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 6000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill413.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill413.cs
index 1b129225f3..38adf26134 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill413.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill413.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/天火狂龙飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 6000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill414.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill414.cs
index c8a47d47db..5c3fe977ba 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill414.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill414.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/忘情式施放.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/忘情式击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 50000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 30;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill415.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill415.cs
index c1a5db4151..1b83301f4d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill415.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill415.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/忘情式施放.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/忘情式击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 50000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 30;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill416.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill416.cs
index 40ebac6d01..a3d973af35 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill416.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill416.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/追魂诀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill417.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill417.cs
index b96547296c..6e1b2692b0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill417.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill417.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/追魂诀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill418.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill418.cs
index 30d46823e7..d10a071454 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill418.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill418.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/剑气纵横击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill419.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill419.cs
index 9fb03ba10f..565f127d42 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill419.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill419.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/剑气纵横击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill420.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill420.cs
index 1b767787fe..aa36b05a19 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill420.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill420.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/万剑诀飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill421.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill421.cs
index b4b3b814d8..19b854e7cc 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill421.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill421.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/万剑诀飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill422.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill422.cs
index 0155143913..2b30d6f37c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill422.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill422.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/金钟罩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill423.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill423.cs
index ac8c98935a..03fb595dd7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill423.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill423.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/金钟罩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill424.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill424.cs
index 43f83286ee..9718ff8b7a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill424.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill424.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/狮子吼击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill425.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill425.cs
index ce4139db46..740e4db25a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill425.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill425.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/狮子吼击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill426.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill426.cs
index 1d51b33289..052160045e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill426.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill426.cs
@@ -80,6 +80,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/易筋经.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill427.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill427.cs
index 2305054622..dbe2f36c97 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill427.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill427.cs
@@ -80,6 +80,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/易筋经.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill428.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill428.cs
index 303a1e4dca..dece6ea614 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill428.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill428.cs
@@ -80,6 +80,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/易髓经.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill429.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill429.cs
index 2125c48268..40ba7ff7ea 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill429.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill429.cs
@@ -80,6 +80,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/易髓经.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill430.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill430.cs
index 456b2706e7..b3160ad125 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill430.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill430.cs
@@ -80,6 +80,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/金刚经击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill431.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill431.cs
index 0029d41ab7..81fff93c4c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill431.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill431.cs
@@ -80,6 +80,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/金刚经击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill440.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill440.cs
index d099bf9580..3024779661 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill440.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill440.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/烈火符施放.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/烈火副爆炸击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 2;
+ m_FlyClusterInterval = 1;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 1.0f;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill441.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill441.cs
index dc1cbeb1ba..ab204008d2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill441.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill441.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/烈火符施放.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/烈火副爆炸击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 2;
+ m_FlyClusterInterval = 1;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 1.0f;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill444.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill444.cs
index 177a6430f2..98f34b49e9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill444.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill444.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/火煞天灯击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill445.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill445.cs
index 5bdfee7971..b80e89eae6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill445.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill445.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/火煞天灯击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill446.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill446.cs
index 9f20c36236..c142bf2a6b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill446.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill446.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/神火符飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/神火符击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 1077936128;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill447.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill447.cs
index a26546fa73..7e0eca5bcd 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill447.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill447.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/神火符飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/神火符击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 1077936128;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill448.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill448.cs
index 0efa8df5e2..fff3ba5f13 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill448.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill448.cs
@@ -134,6 +134,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/炙炎阵击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill449.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill449.cs
index e5e4d46991..06ff994177 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill449.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill449.cs
@@ -134,6 +134,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/炙炎阵击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill450.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill450.cs
index c8e4cc4197..52133bfc85 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill450.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill450.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/炎索击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill451.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill451.cs
index 1d5eba72cb..6c98e54a55 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill451.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill451.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/炎索击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill452.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill452.cs
index f7cc888b80..014b9c8df9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill452.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill452.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/血祭炎爆击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill453.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill453.cs
index 3621159ea1..5d8a193877 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill453.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill453.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/血祭炎爆击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill454.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill454.cs
index 90c8067545..58f712705c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill454.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill454.cs
@@ -120,6 +120,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/击中/火海刀山击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 20;
+ m_FlyClusterInterval = 65;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 8.0f;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill455.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill455.cs
index 201e0be4ba..c8e074e6b6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill455.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill455.cs
@@ -120,6 +120,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/击中/火海刀山击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 2200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 20;
+ m_FlyClusterInterval = 65;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 8.0f;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill456.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill456.cs
index c94aea7f77..390ab73b24 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill456.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill456.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/飞行/涌泉中招.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill457.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill457.cs
index 31e53870ec..4d2e2cc3a6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill457.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill457.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/飞行/涌泉中招.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill460.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill460.cs
index 421d62c683..748e6127df 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill460.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill460.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/冰雹飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 4000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill461.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill461.cs
index c6e0b13e82..4193159250 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill461.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill461.cs
@@ -118,6 +118,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/冰雹飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 4000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill462.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill462.cs
index a3ecf092ef..30fc123c8f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill462.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill462.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/寒露击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill463.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill463.cs
index 1ab3caf4a4..156491236b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill463.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill463.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/寒露击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill464.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill464.cs
index f090f9fbc6..e3f8b3aeb5 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill464.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill464.cs
@@ -80,6 +80,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/润泽.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill465.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill465.cs
index 368337146b..25be676fe9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill465.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill465.cs
@@ -80,6 +80,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/润泽.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill466.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill466.cs
index 45522893e6..aa4c8ddc14 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill466.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill466.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill467.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill467.cs
index 714dbeb275..d47258423f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill467.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill467.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill468.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill468.cs
index d31681deb7..057eb3990f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill468.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill468.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/凌杀飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/凌杀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill469.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill469.cs
index d77d27a92b..25327c9f61 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill469.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill469.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/凌杀飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/凌杀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill470.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill470.cs
index 2e00108243..48f6516f8b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill470.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill470.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/玄冰水龙击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 10000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 200;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 5.0f;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill471.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill471.cs
index 96821abb8d..a4574c2d68 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill471.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill471.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/玄冰水龙击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 10000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 200;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 5.0f;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill472.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill472.cs
index f024c0cef6..f5c3e59b5b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill472.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill472.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/落石术飞行击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 5000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill473.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill473.cs
index 67918e9fef..a3e77978c1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill473.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill473.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/落石术飞行击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 5000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill476.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill476.cs
index a4c296a706..bbb40d708f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill476.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill476.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/沙陷击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill477.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill477.cs
index 5e8f0d1eac..14ca9030c6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill477.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill477.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/沙陷击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill478.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill478.cs
index f9cf809c0f..8c8b121774 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill478.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill478.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/缩地术.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill479.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill479.cs
index ae408969db..136694e483 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill479.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill479.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/缩地术.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill480.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill480.cs
index 46a08d10a5..d2b625ba92 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill480.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill480.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/飞沙击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)0;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.bVal = false;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill481.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill481.cs
index f34b4ed6a9..02bb8a50f0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill481.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill481.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/飞沙击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)0;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.bVal = false;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill482.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill482.cs
index 1b1de23e34..67abc97cd4 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill482.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill482.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/石破天惊飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/石破天惊击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill483.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill483.cs
index 4a04b6a6de..3ae71d8d7d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill483.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill483.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/石破天惊飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/石破天惊击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill484.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill484.cs
index 9f8b60e25b..021daad86c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill484.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill484.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/泰山石.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/被泰山砸中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)3;
+ m_TargetMode = (GfxTargetMode)2;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 700;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill485.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill485.cs
index ed7a1317a8..dabfa36027 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill485.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill485.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/泰山石.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/被泰山砸中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)3;
+ m_TargetMode = (GfxTargetMode)2;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 700;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill5.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill5.cs
index b8c6fe4938..a7035918a2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill5.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill5.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/龙现飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/龙现击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill54.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill54.cs
index 07c28e9859..dea563e978 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill54.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill54.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/流水击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill55.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill55.cs
index 21587d8ee4..c1b139c902 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill55.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill55.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/狂龙斩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill56.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill56.cs
index fb554f5020..10775e6f7c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill56.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill56.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/横扫千军击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill57.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill57.cs
index a9db113bc5..3f8013b361 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill57.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill57.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/断岩斩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill58.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill58.cs
index 609f9330ad..cfe3cfed51 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill58.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill58.cs
@@ -111,6 +111,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/龙腾.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill59.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill59.cs
index c2c50bb89a..d80b0a8f99 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill59.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill59.cs
@@ -111,6 +111,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/虎跃.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill60.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill60.cs
index 137f67c3ba..ec3590c73f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill60.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill60.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/劈空掌飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/劈空掌击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 1;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 6.0f;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill61.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill61.cs
index 3198a875e6..7b4d84139b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill61.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill61.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/无影脚击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill62.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill62.cs
index 09a325a5bd..c9133bd182 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill62.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill62.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/风卷残云击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill63.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill63.cs
index 0ba14092db..a00c704fa1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill63.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill63.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/云龙九现击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill64.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill64.cs
index 91a76d235a..de92e5dba0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill64.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill64.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/疾风霹雳击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 1;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill65.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill65.cs
index 8e2fc9156f..8bf6723666 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill65.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill65.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/回马枪击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill66.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill66.cs
index d6591fcc24..99b93a87d1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill66.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill66.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/流星赶月击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 1;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill67.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill67.cs
index aebb7d6c56..36afa5ecb0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill67.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill67.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/刃域击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 30;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(5);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill68.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill68.cs
index 76a552b6a6..2c1f7ae5c0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill68.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill68.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/霸王龙飞击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill69.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill69.cs
index da3d0152c5..ab12d80986 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill69.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill69.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/天火狂龙飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 6000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill7.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill7.cs
index 3964417e2d..330a37b17d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill7.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill7.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/火煞天灯击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill70.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill70.cs
index 08cc5c2726..371e17335d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill70.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill70.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/霸王断岳击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill71.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill71.cs
index 64b671f8c1..c947d5faac 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill71.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill71.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/霸王暴怒击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill72.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill72.cs
index 1af42fda58..3d959ba1d3 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill72.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill72.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/忘情式施放.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/忘情式击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 50000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 30;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill73.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill73.cs
index e8bc288428..94b34ac707 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill73.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill73.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/追魂诀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill74.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill74.cs
index 06a5f7bc44..529fdae033 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill74.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill74.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/剑气纵横击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill75.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill75.cs
index d5f9ab6866..29a546d098 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill75.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill75.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/万剑诀飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill76.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill76.cs
index 180f3b072d..2e5dbcffd8 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill76.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill76.cs
@@ -79,6 +79,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/疾云步击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill77.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill77.cs
index f197986de1..cae168e840 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill77.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill77.cs
@@ -113,6 +113,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/金钟罩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill8.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill8.cs
index e40fdf3ac6..09217457de 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill8.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill8.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/血祭炎爆击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill81.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill81.cs
index 5c37deb4df..4c71b6390f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill81.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill81.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/烈火符施放.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/烈火副爆炸击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 2;
+ m_FlyClusterInterval = 1;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 1.0f;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill84.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill84.cs
index 1a4e2f96db..b5ed7586e6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill84.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill84.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/炎索击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill85.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill85.cs
index 97a6e83e84..f98dfc0881 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill85.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill85.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/神火符飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/神火符击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 1077936128;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill86.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill86.cs
index bc489eca6a..a0adfcd33f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill86.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill86.cs
@@ -133,6 +133,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/炙炎阵击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill87.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill87.cs
index fbd918911f..85070d3c95 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill87.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill87.cs
@@ -119,6 +119,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/击中/火海刀山击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 2200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 22;
+ m_FlyClusterInterval = 60;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 8.0f;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill88.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill88.cs
index 3c09a5f395..4f7ea8121b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill88.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill88.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/飞行/涌泉中招.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill89.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill89.cs
index 4b5b5df92e..9ddc5702f2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill89.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill89.cs
@@ -79,6 +79,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/润泽.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill896.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill896.cs
index f98ca33ba4..9d5dc6ff6f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill896.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill896.cs
@@ -79,6 +79,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/狂龙之力击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(1);
restrict_weapons.Add(5);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill897.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill897.cs
index c359a5453c..866ce476c8 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill897.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill897.cs
@@ -114,6 +114,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/雷霆震击击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill898.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill898.cs
index bac5babf16..48c1a52266 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill898.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill898.cs
@@ -117,6 +117,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/无影.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
restrict_weapons.Add(0);
restrict_weapons.Add(5);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill899.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill899.cs
index 966f5af6ea..89a4028281 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill899.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill899.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/一闪击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill90.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill90.cs
index 47e44dc418..21f376e999 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill90.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill90.cs
@@ -113,6 +113,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/寒露击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill901.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill901.cs
index c9d85d5017..d5b8751efc 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill901.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill901.cs
@@ -112,6 +112,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/气惯长虹击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill902.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill902.cs
index 3e55048c6a..0197d17a44 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill902.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill902.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/被泰山砸中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill903.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill903.cs
index 90cda59b68..b2984cb949 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill903.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill903.cs
@@ -79,6 +79,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/疲惫击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill904.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill904.cs
index 19a62b0f22..2835e6ea0b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill904.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill904.cs
@@ -79,6 +79,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/五行之护击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill905.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill905.cs
index a8184c04cd..8040b7a935 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill905.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill905.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/元素虚空击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill91.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill91.cs
index 4bfe6f2f8e..c932b2c0af 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill91.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill91.cs
@@ -113,6 +113,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill92.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill92.cs
index f62b3df587..9c6fe9a1f6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill92.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill92.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/凌杀飞行.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/凌杀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill923.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill923.cs
index 609b38f1b8..7cd85bf2ea 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill923.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill923.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/一闪击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill924.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill924.cs
index d3c7dd3376..8c993e7b0e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill924.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill924.cs
@@ -113,6 +113,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/风卷残云击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill925.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill925.cs
index 6c23e17f66..90e7c29204 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill925.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill925.cs
@@ -112,6 +112,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/气惯长虹击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill926.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill926.cs
index 6b569c97ae..e896b6cfaa 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill926.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill926.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/元素虚空击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill93.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill93.cs
index b23ab58aa0..3327f996b8 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill93.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill93.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/玄冰水龙击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 10000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 200;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 5.0f;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill95.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill95.cs
index 5140066d30..bf1d490e12 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill95.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill95.cs
@@ -109,6 +109,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/水煞击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 10000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill97.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill97.cs
index 3b9671c262..9494cf98a3 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill97.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill97.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/落石术飞行击中.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 5000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill98.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill98.cs
index 9b0a479a37..eb73fdf2fc 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill98.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill98.cs
@@ -116,6 +116,32 @@ namespace BrewMonster
m_szFlyGfxPath = string.Empty;
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/飞沙击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)0;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.bVal = false;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill99.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill99.cs
index a200c2a102..77636ff7c7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill99.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs1/skill99.cs
@@ -115,6 +115,32 @@ namespace BrewMonster
m_szFlyGfxPath = "策划联入/人物技能/飞行/泰山石.gfx";
m_szHitGrndGfxPath = string.Empty;
m_szHitGfxPath = "策划联入/人物技能/击中/被泰山砸中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)3;
+ m_TargetMode = (GfxTargetMode)2;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 700;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1000.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1000.cs
index 328e188f94..ce676c3e45 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1000.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1000.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物通用/春普攻3_飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物通用/春普攻3_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1001.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1001.cs
index f3bc9563f2..f1e0388613 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1001.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1001.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1002.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1002.cs
index 1c97c9428e..a8c5c2a6f6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1002.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1002.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/泥泞_沼泽.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 3;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1003.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1003.cs
index 8d08223233..79e1fcf4dc 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1003.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1003.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/叶舞_地面效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1004.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1004.cs
index b035c35a08..c02c6773ef 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1004.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1004.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "人物/通用/飞行/飞剑飞行7.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1005.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1005.cs
index cece854691..6602a0bb09 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1005.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1005.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/叶舞.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1006.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1006.cs
index 7466abf9d6..7734aa22b7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1006.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1006.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/扎根_缠绕.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1007.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1007.cs
index 33f056ddc9..302334e595 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1007.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1007.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1008.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1008.cs
index 3afb9b7042..ed075b91a9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1008.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1008.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/击中/血祭炎爆击中1.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/爆裂击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1009.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1009.cs
index 3d9e3df85a..0a693acb46 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1009.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1009.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物通用/夏普攻2_飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/狂雷天鹰击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)5;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 3;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1010.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1010.cs
index 345a44f664..d6ca22c3cb 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1010.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1010.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/玄冰剑气飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/玄冰剑气击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)3;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 200;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1011.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1011.cs
index 6e975d4fa9..183da9adf8 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1011.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1011.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/波纹_2绿.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1012.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1012.cs
index 748963afa5..60990125bb 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1012.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1012.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/小精灵龙卷风拼接.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 4;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1013.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1013.cs
index 83b61f4ea3..2e7122fadb 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1013.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1013.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1014.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1014.cs
index c31241d188..adfb38819f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1014.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1014.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/小精灵风速子效果.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)9;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(3.0f, 3.0f, 3.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1015.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1015.cs
index 77f00cae30..9edbff65cd 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1015.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1015.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/击中/地火术飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/火自燃大招.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1016.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1016.cs
index 4c4f42b371..285e8e078a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1016.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1016.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/宠物复活击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1017.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1017.cs
index 5ae6064444..1181c00382 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1017.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1017.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/波纹_1黑.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1018.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1018.cs
index af34556fae..53a506d504 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1018.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1018.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3彩.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1053.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1053.cs
index f595a59a61..63d3375ae2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1053.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1053.cs
@@ -114,6 +114,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/剧毒蛊飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/剧毒蛊击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1091.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1091.cs
index 24f5784f35..9e015f35ff 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1091.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1091.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/巫师_复仇雷霆_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1092.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1092.cs
index 75611cb496..594f0aa5da 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1092.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1092.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/巫师_复仇封印_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1168.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1168.cs
index ba226bab6d..663db7db6d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1168.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1168.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/魔技能附加.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1169.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1169.cs
index 06cf724b42..fdb4a1a789 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1169.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1169.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/技能/幽灵战士群体buff击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1170.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1170.cs
index d2f4b19b3d..2fd2e60be2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1170.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1170.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/阴阳印击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1171.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1171.cs
index fbe289fbe0..27824c30d4 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1171.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1171.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/噬血飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/血祭炎爆击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1172.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1172.cs
index 22d04efc97..eff144716a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1172.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1172.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/旋刃释放.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/旋刃击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1173.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1173.cs
index 4f0672acd1..60fcb3bae5 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1173.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1173.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/吞噬击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1174.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1174.cs
index d208df0300..fb59794dd2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1174.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1174.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/僵尸兵击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1175.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1175.cs
index db1545f035..7712ab4c57 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1175.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1175.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/领主护卫_技能暴.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1176.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1176.cs
index 43662ca12c..e6704e52af 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1176.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1176.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/九幽凶灵技能击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill140.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill140.cs
index 70d147d0ba..b387be2124 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill140.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill140.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill141.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill141.cs
index d1025e4952..8039a5c0d4 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill141.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill141.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/破甲一击击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill142.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill142.cs
index a2d2184b47..d04bea19a9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill142.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill142.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/飞行/脚下涌起水柱.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill146.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill146.cs
index 570c406962..5458e72112 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill146.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill146.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/燃烧.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1568.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1568.cs
index 471b819866..f1bb88f3c9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1568.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1568.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1569.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1569.cs
index 71be12a7dd..233dd87d35 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1569.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1569.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1570.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1570.cs
index 3e0d11e4bf..7db8218125 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1570.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1570.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1571.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1571.cs
index c80a63f0f7..cbd8a344ec 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1571.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1571.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1572.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1572.cs
index 8cd2529db2..60cbbf73da 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1572.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1572.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1573.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1573.cs
index d419560aa5..2750e5b759 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1573.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1573.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1574.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1574.cs
index 6e59ff5d60..8ed4495dde 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1574.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1574.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1575.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1575.cs
index 595cd2c5c9..0417a63a04 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1575.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1575.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1576.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1576.cs
index 613c256f11..12d73cb009 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1576.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1576.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1577.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1577.cs
index 314aed1184..b194e17741 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1577.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1577.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1771.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1771.cs
index 718b228beb..e9fd572889 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1771.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1771.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/魔技能附加.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1772.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1772.cs
index f1b37c18b7..00571a28ed 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1772.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1772.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/破甲一击击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1774.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1774.cs
index 66ba1fdb90..f056ca6b68 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1774.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1774.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/流星锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1775.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1775.cs
index fff5549104..8c9edeeca7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1775.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1775.cs
@@ -57,6 +57,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火星四射.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1916.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1916.cs
index 66d746b1b4..99ab4f57ac 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1916.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1916.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/蓄气击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1917.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1917.cs
index 95b9e38f92..1ba4028ada 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1917.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1917.cs
@@ -94,6 +94,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/技能/幽灵战士群体buff击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1918.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1918.cs
index f51ea88768..1a124397cb 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1918.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill1918.cs
@@ -91,6 +91,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/流星锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill196.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill196.cs
index acd9c12c4f..e9c8f37a94 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill196.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill196.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/毒击中效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill197.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill197.cs
index 9db81d2498..aa8fc35e6c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill197.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill197.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/流星锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill198.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill198.cs
index 8a5db8e234..0a7f375739 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill198.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill198.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/毒魔法击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill199.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill199.cs
index d64cfc8112..cd145e69d7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill199.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill199.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/击中/头顶一道霹雳.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill200.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill200.cs
index f46bd7308d..3e873166e1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill200.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill200.cs
@@ -55,6 +55,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/金刚经击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill201.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill201.cs
index 49b5bf9a01..e61a499bca 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill201.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill201.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/五色符飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/五色符中招.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.5f, 0.5f, 0.5f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 0.5f;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill202.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill202.cs
index a41b5a2c17..b3865b167a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill202.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill202.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/沙陷击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill204.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill204.cs
index 8e164f55a3..a405af90f7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill204.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill204.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/聚神符击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill205.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill205.cs
index f818bd64be..a4d783cffc 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill205.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill205.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/巨灵神力击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill206.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill206.cs
index deca70027b..bd244b42bd 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill206.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill206.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/通用技能击中绿.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 1;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 6.0f;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill207.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill207.cs
index ef8ea8bd64..6876a53ab4 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill207.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill207.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/玄净咒击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2073.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2073.cs
index d7fbd8f976..f22bcda79b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2073.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2073.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/蓄气击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill208.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill208.cs
index 656f1f63c5..81355f65f7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill208.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill208.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/霸王暴怒击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill209.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill209.cs
index 157d22dcbb..25ca0bc62d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill209.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill209.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/击中/火魔法击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill210.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill210.cs
index a0a7c37b0f..2d2170029c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill210.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill210.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/易筋经.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill211.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill211.cs
index 0b19e1a5f0..85f840ecbb 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill211.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill211.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/噬血飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)1;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(2.0f, 2.0f, 2.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 0.0f;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill212.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill212.cs
index 760b2fcb24..be091617bc 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill212.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill212.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/飞行/生命飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)1;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 0.0f;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill213.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill213.cs
index 7f373a8133..3282073776 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill213.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill213.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/击中/治疗效果.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill214.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill214.cs
index 0a481f2f51..0effe78842 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill214.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill214.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/噬血飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)1;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(2.0f, 2.0f, 2.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 0.0f;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill215.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill215.cs
index 88836debfd..4c9c86eb21 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill215.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill215.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/飞行/生命飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)1;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 0.0f;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill216.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill216.cs
index aa1e0f9c91..d182abe014 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill216.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill216.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/还魂咒中招.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill217.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill217.cs
index 477c1ef8bf..d6b365ecaf 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill217.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill217.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/狂龙斩击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill218.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill218.cs
index 2a5090cff9..05dfea1077 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill218.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill218.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/灵助符击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill219.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill219.cs
index a79c7dde75..999c951847 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill219.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill219.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/绞杀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill220.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill220.cs
index b5c94a434a..4b7bebe3a6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill220.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill220.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/天地无级击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2202.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2202.cs
index 679fdc312f..5bf7a3173c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2202.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2202.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/投石车初级_火球.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/投石车初级_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2203.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2203.cs
index df77f4a50b..eae463f408 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2203.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2203.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/投石车中级_火球.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/投石车中级_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2204.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2204.cs
index 4812c375df..97b4805dc2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2204.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2204.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/投石车高级_火球.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/投石车高级_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill221.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill221.cs
index f411538df8..994ae04f0e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill221.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill221.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/易髓经.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill222.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill222.cs
index fb743f7521..f597c46c25 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill222.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill222.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/击中/水魔法击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 800;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill223.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill223.cs
index 3144018b83..963b537bd8 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill223.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill223.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/荆棘符击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 4000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill224.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill224.cs
index fe8c29b6f4..d77866ccb6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill224.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill224.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/极度乾坤击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 7000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill225.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill225.cs
index 966de6b889..5914152404 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill225.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill225.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/咆哮击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2271.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2271.cs
index e10c29e9a7..61862177be 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2271.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2271.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/魅灵_岐黄妙手_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2272.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2272.cs
index 51445698bd..9f94109384 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2272.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2272.cs
@@ -109,6 +109,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/巫师_复仇雷霆_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(5);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2276.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2276.cs
index a79cbb25dc..f01a04e626 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2276.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2276.cs
@@ -110,6 +110,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/剑灵_八方剑影_爆点.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 5;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2277.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2277.cs
index 86a3c8c07c..3b294bd7db 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2277.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2277.cs
@@ -55,6 +55,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/剑灵_八方剑影_爆点.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2279.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2279.cs
index 7e0921205d..bd37ce74f3 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2279.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2279.cs
@@ -113,6 +113,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/武侠_凌风改_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
restrict_weapons.Add(5);
restrict_weapons.Add(9);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2280.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2280.cs
index 3b54d1bc71..010b608b98 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2280.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2280.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/天火狂龙飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 6000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
restrict_weapons.Add(182);
restrict_weapons.Add(0);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2281.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2281.cs
index 2592475952..54c6ebdde9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2281.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2281.cs
@@ -111,6 +111,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/龙爪手_飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)8;
+ m_TargetMode = (GfxTargetMode)9;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1100;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(182);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2282.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2282.cs
index 8f9888d29c..a984e30ceb 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2282.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2282.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/玄冰水龙击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 10000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 200;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 5.0f;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2283.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2283.cs
index cc845e66da..160e42c874 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2283.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2283.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/炎索击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(1.0f, 1.0f, 1.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2284.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2284.cs
index 2c55dd0735..988b4e7552 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2284.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2284.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/泰山石.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/被泰山砸中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)3;
+ m_TargetMode = (GfxTargetMode)2;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 700;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2285.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2285.cs
index 1de10e555f..e49eb3fe6e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2285.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2285.cs
@@ -109,6 +109,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2286.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2286.cs
index 0d9f7314e2..e76aeb4d8a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2286.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2286.cs
@@ -128,6 +128,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/剑灵_剑神无敌_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 2;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2287.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2287.cs
index 5c40eaefba..f62af22f8f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2287.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2287.cs
@@ -111,6 +111,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/剑灵_身外化身二_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(1);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2288.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2288.cs
index 1d2fe46794..73637251b7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2288.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2288.cs
@@ -111,6 +111,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/魅灵_长风破击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2290.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2290.cs
index 9609bd84a9..a046acd2e9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2290.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2290.cs
@@ -111,6 +111,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/魅灵_东风咒.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2292.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2292.cs
index 405c4fb3dd..be63aa963a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2292.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2292.cs
@@ -113,6 +113,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/魅灵_碧云术_飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/魅灵_碧云术_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2293.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2293.cs
index e3533bb585..8f11624fd7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2293.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2293.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 1;
commoncooldowntime = 2000;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/白虎变.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2294.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2294.cs
index 56db17072b..382eccf639 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2294.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2294.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/妖兽_兽灵之力_飞行02.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/妖兽_兽灵之力.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2295.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2295.cs
index ecba3d17fe..7bfc1d361b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2295.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2295.cs
@@ -111,6 +111,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/妖兽_新千斤锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2296.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2296.cs
index 1d3db15b91..7c4ba873a9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2296.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2296.cs
@@ -113,6 +113,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "人物/技能/熊猫/新天崩地裂_施放起_石头.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(9);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2297.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2297.cs
index 163056b302..5a4fe82d77 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2297.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2297.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 2;
commoncooldowntime = 6000;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/妖狐附体.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2298.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2298.cs
index ff9ad155ef..d79f5f8236 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2298.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2298.cs
@@ -113,6 +113,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/妖精_铁岩蛊改_飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/妖精_铁岩蛊改击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 5000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2299.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2299.cs
index 4166059c7b..4e9e6ead87 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2299.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2299.cs
@@ -113,6 +113,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/妖精_妖煞击改击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2300.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2300.cs
index 5fa2ad78f2..cc146fbb80 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2300.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2300.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/万蛊食天飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)9;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 20;
+ m_FlyClusterInterval = 100;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(10.0f, 10.0f, 10.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 20.0f;
restrict_weapons.Add(0);
restrict_weapons.Add(292);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2301.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2301.cs
index 3c8794645f..b29ab5d522 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2301.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2301.cs
@@ -110,6 +110,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/风岩葬改_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(25333);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2302.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2302.cs
index a7d3bcc681..d935176949 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2302.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2302.cs
@@ -111,6 +111,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/击中/巫师_土灵_击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(25333);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2303.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2303.cs
index dcd05a2ae8..0059d31f18 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2303.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2303.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/击中/水瀑术_击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(25333);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2304.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2304.cs
index fd876e600a..7127b54523 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2304.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2304.cs
@@ -115,6 +115,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/羽芒_冰霜散射_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(13);
range = new Range();
range.type = 4;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2305.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2305.cs
index 8ce2f9a2bb..55e49bf70e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2305.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2305.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/羽芒_新翼展_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(13);
restrict_weapons.Add(1);
restrict_weapons.Add(5);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2306.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2306.cs
index ebd67d12c7..1d69e0f27f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2306.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2306.cs
@@ -111,6 +111,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/羽芒_落日矢_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(13);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2307.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2307.cs
index 7f1cc2c7e3..100fba9ffa 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2307.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2307.cs
@@ -129,6 +129,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/箭阵击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(13);
range = new Range();
range.type = 3;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2308.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2308.cs
index 773cd8147c..51a4c0139c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2308.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2308.cs
@@ -127,6 +127,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/新极度乾坤_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2309.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2309.cs
index 42352e806b..74703e0694 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2309.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2309.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/狂雷天威击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 10000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 7;
+ m_FlyClusterInterval = 100;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 11.0f;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2310.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2310.cs
index 904958afde..48ba5c9287 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2310.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2310.cs
@@ -109,6 +109,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/羽灵_诸神之佑.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2311.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2311.cs
index 88c4219501..9fd4b3ef45 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2311.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2311.cs
@@ -112,6 +112,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/和风拂面击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2314.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2314.cs
index 3b1a59c509..a23e64d4da 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2314.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2314.cs
@@ -109,6 +109,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(23749);
range = new Range();
range.type = 5;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2315.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2315.cs
index 3e5b9fd2bc..5ec5756462 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2315.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2315.cs
@@ -109,6 +109,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(23749);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2316.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2316.cs
index 71dc693b66..706977787e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2316.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2316.cs
@@ -135,6 +135,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/刺客_连击改_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(23749);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2317.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2317.cs
index 79e9f1079c..d0c67d5922 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2317.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2317.cs
@@ -109,6 +109,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/巫师_复仇之魂刺_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 4;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(25333);
range = new Range();
range.type = 0;
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2329.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2329.cs
index 9a1b2628ae..9439bcd376 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2329.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2329.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/飞沙击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)0;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.bVal = false;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2330.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2330.cs
index 015c4e85d5..2433684ddb 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2330.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2330.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/飞沙击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)0;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.bVal = false;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2331.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2331.cs
index 5731d25ff1..5a1c7b390f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2331.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2331.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/飞沙击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)0;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.bVal = false;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2332.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2332.cs
index 4cc8a2af6a..9e962c9383 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2332.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2332.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/冥王乐土_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2333.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2333.cs
index c96aadde77..2df82eb2e1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2333.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2333.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/冥王乐土_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2334.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2334.cs
index c1a799825d..f9ee770fb8 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2334.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2334.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/冥王乐土_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2335.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2335.cs
index dbc39b499f..57fb37a091 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2335.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2335.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/投石车高级_火球.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "人物/技能/熊猫/新天崩地裂_施放起_石头.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2336.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2336.cs
index a21203f7d4..91c7e802d0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2336.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2336.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/投石车高级_火球.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "人物/技能/熊猫/新天崩地裂_施放起_石头.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2337.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2337.cs
index 4bfbabc8ce..96a85f5331 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2337.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2337.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/弓弩战车_箭初级飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/妖兽_新千斤锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 5000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2338.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2338.cs
index b39f0c0a50..32926a63ca 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2338.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2338.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/弓弩战车_箭中级飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/妖兽_新千斤锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 5000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2339.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2339.cs
index 0287893d58..9a43a36c42 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2339.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2339.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/弓弩战车_箭高级飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/妖兽_新千斤锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 5000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2346.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2346.cs
index 1aa1dbccb1..52fba6e9c2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2346.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2346.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/弓弩战车_箭中级飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/妖兽_新千斤锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 5000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2354.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2354.cs
index 7ab4ce5b5d..75bb8de972 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2354.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2354.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/弓弩战车_箭高级飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/妖兽_新千斤锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 5000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2355.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2355.cs
index 5a2d3b2ef3..203c18b666 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2355.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2355.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/远程战车初级_飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/远程战车初级_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2356.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2356.cs
index 30f935d79a..7bcac9895d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2356.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2356.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/远程战车中级_飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/远程战车中级_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2357.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2357.cs
index 47f673b8fb..aca55556aa 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2357.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2357.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/远程战车高级_飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/远程战车高级_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2364.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2364.cs
index babac498ef..563b0fee4f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2364.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2364.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/远程战车高级_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.0f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2365.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2365.cs
index 76f329a86b..ab556d2099 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2365.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2365.cs
@@ -105,6 +105,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/远程战车高级_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.0f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(292);
restrict_weapons.Add(0);
restrict_weapons.Add(1);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2477.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2477.cs
index 259cd6fdb8..b86ca017e2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2477.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2477.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/蓄气击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2543.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2543.cs
index d5bb409527..68cf2a6fba 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2543.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2543.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/蓄气击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2544.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2544.cs
index 20640f1df6..839d7e5a7c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2544.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2544.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "人物/通用/其它/彩票效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2598.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2598.cs
index accbd93937..f791458311 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2598.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2598.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/神行真言击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2709.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2709.cs
index b1b0eaddff..63b46a7b2d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2709.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2709.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/驱逐咒击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
#if SKILL_SERVER
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2710.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2710.cs
index a59b9bf7f2..5998273dfe 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2710.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2710.cs
@@ -108,6 +108,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/霸王暴怒击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 4;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2711.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2711.cs
index b9c9ba880c..2426853e46 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2711.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2711.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/驱逐咒击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 3;
#if SKILL_SERVER
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2712.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2712.cs
index a924b8ddd7..e8b15c30ab 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2712.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2712.cs
@@ -108,6 +108,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/魔技能附加.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2713.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2713.cs
index beb541df12..dcde2803ab 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2713.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2713.cs
@@ -109,6 +109,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/楼炽_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
#if SKILL_SERVER
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2715.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2715.cs
index 682d1296f7..5d230154ad 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2715.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2715.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/楼炽_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
#if SKILL_SERVER
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2716.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2716.cs
index 837eccc939..edc1c44e7b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2716.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2716.cs
@@ -108,6 +108,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/魔技能附加.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2717.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2717.cs
index e1d41eb1e8..7fccdeaa2f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2717.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2717.cs
@@ -108,6 +108,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/魔技能附加.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2722.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2722.cs
index cf4eda29f5..38927911d3 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2722.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2722.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/噬血飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)1;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(2.0f, 2.0f, 2.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 0.0f;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2723.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2723.cs
index 8f6053a060..773865fd45 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2723.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2723.cs
@@ -110,6 +110,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/冰轮引_飞行02.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/冰轮引_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = true;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(44879);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2724.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2724.cs
index 44a2cc0d61..dfee51d20d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2724.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2724.cs
@@ -110,6 +110,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/雷霆万钧_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(44879);
restrict_weapons.Add(0);
range = new Range();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2836.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2836.cs
index cedd04b303..17f5b94436 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2836.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2836.cs
@@ -108,6 +108,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/击中/影飞绝_分身自爆_01.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2839.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2839.cs
index 8d0399d146..b4112f46d1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2839.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2839.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/噬血飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)1;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(2.0f, 2.0f, 2.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 0.0f;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2840.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2840.cs
index 80f9f2b038..6d48977718 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2840.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2840.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/噬血飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)1;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(2.0f, 2.0f, 2.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 0.0f;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2861.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2861.cs
index 8e09dddeee..f5a927f0e6 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2861.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2861.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/噬血飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)1;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 5;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = true;
+ // m_Shape = (EmitShape)1;
+ // m_vSize = new Vector3(2.0f, 2.0f, 2.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)2;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.fVal = 0.0f;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2864.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2864.cs
index 08bf8a752e..1be1fa9d56 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2864.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2864.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 992;
commoncooldowntime = 10000;
+ m_szFlyGfxPath = "策划联入/怪物技能/飞行/风球飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/电击中效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2865.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2865.cs
index dc2993bbee..080aa17e86 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2865.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill2865.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/飞行/风球飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/电击中效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill360.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill360.cs
index 73d2ed0d1b..583d437d2a 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill360.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill360.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/蓄气击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill361.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill361.cs
index 4208ccf258..8f43d19808 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill361.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill361.cs
@@ -107,6 +107,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/挑衅击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
restrict_weapons.Add(0);
restrict_weapons.Add(1);
restrict_weapons.Add(182);
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill690.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill690.cs
index e3a524baf5..607ab9d63b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill690.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill690.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/玄净咒击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill809.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill809.cs
index 56a97e5f77..0566ee0611 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill809.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill809.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/流星锤击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill810.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill810.cs
index 1e1a085a85..470bb05314 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill810.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill810.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/毒击中效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 500;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill811.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill811.cs
index cf69978448..92f03d77e9 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill811.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill811.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/寸力击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill812.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill812.cs
index 5f3a0a048a..5025f4e9d4 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill812.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill812.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/蓄气击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill813.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill813.cs
index 351bf86dda..4459888adf 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill813.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill813.cs
@@ -56,6 +56,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/碎灵咒击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill825.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill825.cs
index 5cec5e990c..e598c3ad86 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill825.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill825.cs
@@ -108,6 +108,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/飞行/黑暗骷髅头飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/黑暗怨灵兽技能击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill958.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill958.cs
index c6c10b2e48..f85c0c5fb7 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill958.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill958.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3白.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill959.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill959.cs
index c232b860ac..d3090baf84 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill959.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill959.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3彩.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill960.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill960.cs
index a7b1a80e96..b3a0818dc0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill960.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill960.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3红.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill961.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill961.cs
index 68e8098d5c..1ae543f29e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill961.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill961.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/飞行/引雷诀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.5f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill962.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill962.cs
index 06ceb7c2cb..5127867030 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill962.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill962.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/大风咒自身.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/风球击中效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill963.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill963.cs
index 0b53ba1013..0fe682563f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill963.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill963.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/小精灵龙卷风子效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill964.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill964.cs
index adfbbe0936..25aad840d1 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill964.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill964.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/气流锁.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 8000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill965.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill965.cs
index 9b92610a0f..a00eae7a8e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill965.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill965.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill966.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill966.cs
index b24aa7e419..b5762d199b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill966.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill966.cs
@@ -77,6 +77,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/奔雷飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/冲击波击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill967.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill967.cs
index 46d30d2606..ba075ec0d2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill967.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill967.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/飞行/电舞飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/炸雷击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 3;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill968.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill968.cs
index b29605c282..7b547e54f0 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill968.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill968.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill969.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill969.cs
index 9167d97a30..a4be65cc6f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill969.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill969.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/毒击中效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)1;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill970.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill970.cs
index 5438f0bf0d..d2b6a5e96b 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill970.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill970.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill971.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill971.cs
index 896d52bc65..3eb816a8ce 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill971.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill971.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物通用/春普攻6_击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill972.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill972.cs
index 0343d11320..b32ed459e4 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill972.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill972.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/灭魂真诀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill974.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill974.cs
index 6ee65f1347..dd4b6f0fe3 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill974.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill974.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/残神诀击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill975.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill975.cs
index 565832227a..ea54f1d892 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill975.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill975.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/悲酥印击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill976.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill976.cs
index b1c6fd1567..1596f14de5 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill976.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill976.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill977.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill977.cs
index bf7b947706..12482016d3 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill977.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill977.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill978.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill978.cs
index 815b78a77b..c24b1bfaaf 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill978.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill978.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/狂暴击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 5;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill979.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill979.cs
index 85c997c686..98e2005e2c 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill979.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill979.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/冲击波1.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/冲击波击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)3;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 4;
+ m_FlyClusterInterval = 100;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill980.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill980.cs
index 8ed8cb5fa1..3af88391ff 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill980.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill980.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/小精灵龙卷风拼接.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 3;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill981.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill981.cs
index ae943908c6..6cea5dbf24 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill981.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill981.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/太极击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill982.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill982.cs
index a59ec20e1b..ce0ac5657e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill982.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill982.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/空gfx.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill983.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill983.cs
index 10821d9c11..91e518dcab 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill983.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill983.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/大地之手击中2.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill984.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill984.cs
index efe84d7df3..6fc896f63d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill984.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill984.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/地恸诀.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/飞沙击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1400;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill985.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill985.cs
index b83f949f77..0c7a608e28 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill985.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill985.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/扎根_爆炸.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/扎根_爆炸.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill986.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill986.cs
index f0abe39cf7..6e4bd6d2f8 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill986.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill986.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/玄冰咒击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill987.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill987.cs
index 223bb0fc41..0483796cc2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill987.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill987.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/波纹_2青.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_2青.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill988.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill988.cs
index 22897629c2..22a88b9cd2 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill988.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill988.cs
@@ -77,6 +77,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/飞行/血光飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)2;
+ m_TargetMode = (GfxTargetMode)1;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 3000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 3;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill989.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill989.cs
index 86c4089787..d1138d53ea 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill989.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill989.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 1;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/波纹_2蓝.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3蓝.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill990.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill990.cs
index fee5ae8e3b..e0812aec44 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill990.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill990.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物技能/波纹_2白.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_3白.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill991.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill991.cs
index ef0629b83c..9b450d105d 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill991.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill991.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/波纹_2彩.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = false;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill992.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill992.cs
index f4df536338..336e6f83e3 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill992.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill992.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物技能/小精灵龙舞.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill993.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill993.cs
index 1d507ba8d6..88cdb0a167 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill993.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill993.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物通用/秋普攻6_飞行.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/火击中效果.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = true;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill994.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill994.cs
index 8daa9e0d5d..8e8fa4e798 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill994.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill994.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "怪物/宠物通用/冰火流.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/爆裂击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)3;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill995.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill995.cs
index 5359186b4d..aae9d0e2bc 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill995.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill995.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "怪物/宠物通用/精灵升级_子效果1.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill996.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill996.cs
index 5f9515e8ef..f6ed477661 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill996.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill996.cs
@@ -75,6 +75,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/阴阳印击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)1;
+ m_AttHitMode = (GfxAttackMode)1;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 3;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill997.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill997.cs
index 700f838520..284b796c0e 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill997.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill997.cs
@@ -74,6 +74,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/怪物技能/飞行/带尾焰的火球.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/怪物技能/击中/燃烧.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)3;
+ m_TargetMode = (GfxTargetMode)6;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 1400;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill998.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill998.cs
index ec68433f52..d75bc48c70 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill998.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill998.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = "策划联入/人物技能/击中/离火神诀击中.gfx";
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = string.Empty;
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)7;
+ m_TargetMode = (GfxTargetMode)7;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 2000;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 2;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill999.cs b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill999.cs
index 7969c96473..6e7fe17e00 100644
--- a/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill999.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/SkillStubs11/skill999.cs
@@ -76,6 +76,35 @@ namespace BrewMonster
dobless = 0;
commoncooldown = 0;
commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/落雷击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)3;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 200;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = true;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
range = new Range();
range.type = 0;
pre_skills = new Dictionary();
diff --git a/Assets/PerfectWorld/Scripts/Skills/skill.cs b/Assets/PerfectWorld/Scripts/Skills/skill.cs
index cb32c6c582..ee08a1332f 100644
--- a/Assets/PerfectWorld/Scripts/Skills/skill.cs
+++ b/Assets/PerfectWorld/Scripts/Skills/skill.cs
@@ -200,6 +200,21 @@ namespace BrewMonster.Scripts.Skills
public int itemcost; // �ͷ�ʱ������Ʒ >0��Ч // Item cost when casting, effective if >0
+ public GfxMoveMode m_MoveMode = GfxMoveMode.enumLinearMove;
+ public GfxTargetMode m_TargetMode = GfxTargetMode.enumHostToTarget;
+ public GfxAttackMode m_AttFlyMode = GfxAttackMode.enumAttPoint;
+ public GfxAttackMode m_AttHitMode = GfxAttackMode.enumAttPoint;
+ public uint m_dwFlyTime = 0;
+ public bool m_bTraceTarget = false;
+ public uint m_FlyClusterCount = 1;
+ public uint m_FlyClusterInterval = 0;
+ public uint m_HitClusterCount = 1;
+ public uint m_HitClusterInterval = 0;
+ public bool m_bOneHit = true;
+ public bool m_bFadeOut = false;
+ public bool m_bRelScl = true;
+ public float m_fDefTarScl = 1.8f;
+
// ������� // Combo related
public int combosk_preskill;
public int combosk_interval;
diff --git a/Assets/PerfectWorld/Scripts/Skills/skill1.cs b/Assets/PerfectWorld/Scripts/Skills/skill1.cs
new file mode 100644
index 0000000000..6b6fdd5f06
--- /dev/null
+++ b/Assets/PerfectWorld/Scripts/Skills/skill1.cs
@@ -0,0 +1,193 @@
+#define SKILL_CLIENT
+using BrewMonster.Scripts.Skills;
+using CSNetwork.GPDataType;
+using System.Collections.Generic;
+using System.Text;
+using UnityEngine;
+using static BrewMonster.PET_EVOLVE_CONFIG;
+
+namespace BrewMonster
+{
+
+#if SKILL_SERVER
+ public class Skill1 : Skill
+ {
+ public const int SKILL_ID = 1;
+
+ public Skill1() : base(SKILL_ID)
+ {
+ }
+ }
+#endif
+
+ public class Skill1Stub : SkillStub
+ {
+ private static readonly int[] RequiredLevelArray = { 0, 5, 10, 15, 20, 25, 30, 35, 40, 45 };
+ private static readonly int[] RequiredSpArray = { 0, 300, 1200, 2800, 5200, 8400, 12800, 18600, 26300, 36500 };
+ private static readonly int[] RequiredMoneyArray = { 0, 30, 130, 280, 480, 730, 1180, 1630, 2080, 2580 };
+
+
+#if SKILL_SERVER
+ public class State1 : SkillStub.State
+ {
+ public int GetTime(Skill skill) => 400;
+ public bool Quit(Skill skill) => false;
+ public bool Loop(Skill skill) => false;
+ public bool Bypass(Skill skill) => false;
+ public void Calculate(Skill skill)
+ {
+ skill.GetPlayer().SetDecmp(0.2f *(-5 + 7 * skill.GetLevel()));
+ skill.GetPlayer().SetPray(1);
+ }
+ public bool Interrupt(Skill skill) => false;
+ public bool Cancel(Skill skill) => true;
+ public bool Skip(Skill skill) => false;
+ }
+#endif
+
+#if SKILL_SERVER
+ public class State2 : SkillStub.State
+ {
+ public int GetTime(Skill skill) => 700;
+ public bool Quit(Skill skill) => false;
+ public bool Loop(Skill skill) => false;
+ public bool Bypass(Skill skill) => false;
+ public void Calculate(Skill skill)
+ {
+ skill.GetPlayer().SetDecmp(0.8f *(-5 + 7 * skill.GetLevel()));
+ skill.SetPlus(1.9f * skill.GetLevel() * skill.GetLevel() + 64 * skill.GetLevel() + 36.7f);
+ skill.SetRatio(0);
+ skill.SetDamage(skill.GetAttack());
+ skill.GetPlayer().SetPerform(1);
+ }
+ public bool Interrupt(Skill skill) => false;
+ public bool Cancel(Skill skill) => false;
+ public bool Skip(Skill skill) => false;
+ }
+#endif
+
+#if SKILL_SERVER
+ public class State3 : SkillStub.State
+ {
+ public int GetTime(Skill skill) => 0;
+ public bool Quit(Skill skill) => false;
+ public bool Loop(Skill skill) => false;
+ public bool Bypass(Skill skill) => false;
+ public void Calculate(Skill skill)
+ {
+ }
+ public bool Interrupt(Skill skill) => false;
+ public bool Cancel(Skill skill) => false;
+ public bool Skip(Skill skill) => false;
+ }
+#endif
+
+ public Skill1Stub() : base(1)
+ {
+ cls = 0;
+ name = "虎击";
+ nativename = "虎击";
+ icon = "虎击";
+ max_level = 10;
+ type = 1;
+ apcost = 0;
+ arrowcost = 0;
+ apgain = 10;
+ attr = 1;
+ rank = 0;
+ eventflag = 0;
+ posdouble = 0;
+ clslimit = 0;
+ time_type = 0;
+ showorder = 1101;
+ allow_land = true;
+ allow_air = true;
+ allow_water = true;
+ allow_ride = false;
+ auto_attack = true;
+ long_range = 0;
+ restrict_corpse = 0;
+ allow_forms = 1;
+ effect = "虎击";
+ doenchant = 0;
+ dobless = 0;
+ commoncooldown = 0;
+ commoncooldowntime = 0;
+ m_szFlyGfxPath = string.Empty;
+ m_szHitGrndGfxPath = string.Empty;
+ m_szHitGfxPath = "策划联入/人物技能/击中/虎击击中.gfx";
+
+ // GFX Movement and Behavior Parameters / GFX移动和行为参数
+ m_MoveMode = (GfxMoveMode)0;
+ m_TargetMode = (GfxTargetMode)0;
+ m_AttFlyMode = (GfxAttackMode)0;
+ m_AttHitMode = (GfxAttackMode)0;
+ m_dwFlyTime = 0;
+ m_bTraceTarget = false;
+ m_FlyClusterCount = 1;
+ m_FlyClusterInterval = 0;
+ m_HitClusterCount = 1;
+ m_HitClusterInterval = 0;
+ m_bOneHit = true;
+ m_bFadeOut = false;
+ m_bRelScl = false;
+ m_fDefTarScl = 1.8f;
+
+ // Area parameters (commented out) / 区域参数(已注释)
+ // m_bArea = false;
+ // m_Shape = (EmitShape)0;
+ // m_vSize = new Vector3(0.0f, 0.0f, 0.0f);
+
+ // Param (commented out) / 参数(已注释)
+ // m_paramType = (GfxSkillValType)1;
+ // m_param = new GFX_SKILL_PARAM();
+ // m_param.nVal = 0;
+ restrict_weapons.Add(0);
+ restrict_weapons.Add(1);
+ restrict_weapons.Add(182);
+ restrict_weapons.Add(5);
+ restrict_weapons.Add(292);
+ restrict_weapons.Add(9);
+ range = new Range();
+ range.type = 0;
+#if SKILL_SERVER
+ statestub.Add(new State1());
+ statestub.Add(new State2());
+ statestub.Add(new State3());
+#endif
+ }
+
+ ~Skill1Stub() { }
+
+ public override float GetMpcost(Skill skill) => (float)(-5 + 7 * skill.GetLevel());
+ public override int GetExecutetime(Skill skill) => 700;
+ public override int GetCoolingtime(Skill skill) => 3000;
+ public float GetRadius(Skill skill) => 0f;
+ public float GetAttackdistance(Skill skill) => 0f;
+ public float GetAngle(Skill skill) => (float)(1 - 0.0111111 * 0);
+ public override float GetPraydistance(Skill skill) => (float)(skill.GetPlayer().GetRange());
+ public override int GetRequiredLevel(Skill skill) => RequiredLevelArray[skill.GetLevel() - 1];
+ public override int GetRequiredSp(Skill skill) => RequiredSpArray[skill.GetLevel() - 1];
+ public override int GetRequiredMoney(Skill skill) => RequiredMoneyArray[skill.GetLevel() - 1];
+
+#if SKILL_CLIENT
+ public override int GetIntroduction(Skill skill, StringBuilder buffer, string format)
+ {
+ buffer.Append(GPDataTypeHelper.ReplacePercentD(format,
+ skill.GetLevel(),
+ -5 + 7 * skill.GetLevel(),
+ 1.9 * skill.GetLevel() * skill.GetLevel() + 64 * skill.GetLevel() + 36.7));
+ return buffer.Length;
+ }
+#endif
+
+#if SKILL_SERVER
+ public int GetEnmity(Skill skill) => 0;
+ public bool TakeEffect(Skill skill) => true;
+ public float GetEffectdistance(Skill skill) => 13.3f;
+ public int GetAttackspeed(Skill skill) => 3;
+ public float GetHitrate(Skill skill) => 1.2f + 0.05f * skill.GetLevel();
+#endif
+ }
+}
+
diff --git a/Assets/PerfectWorld/Scripts/Vfx/A3DSkillGfxComposerMan.cs b/Assets/PerfectWorld/Scripts/Vfx/A3DSkillGfxComposerMan.cs
index 2e9fcae169..6238acea12 100644
--- a/Assets/PerfectWorld/Scripts/Vfx/A3DSkillGfxComposerMan.cs
+++ b/Assets/PerfectWorld/Scripts/Vfx/A3DSkillGfxComposerMan.cs
@@ -2,6 +2,7 @@ using System.Collections.Generic;
using System.Threading.Tasks;
using BrewMonster.Network;
using BrewMonster.Scripts;
+using BrewMonster.Scripts.Skills;
namespace BrewMonster
{
@@ -9,15 +10,41 @@ namespace BrewMonster
{
private readonly Dictionary m_ComposerMap = new Dictionary();
- public async Task LoadOneComposer(int nSkillID, string flyGFXPath, string hitGrdGFXPath, string hitGFXPath)
+ ///
+ /// DEPRECATED: This method blocks the main thread. Use LoadOneComposerAsync instead.
+ ///
+ public bool LoadOneComposer(int nSkillID, SkillStub skillStub, string flyGFXPath, string hitGrdGFXPath, string hitGFXPath)
{
if (m_ComposerMap.ContainsKey(nSkillID))
return false;
var composer = new A3DSkillGfxComposer();
- var isLoaded = await composer.Load(flyGFXPath, hitGrdGFXPath, hitGFXPath);
+ // WARNING: .Result blocks the main thread - this can cause freezing!
+ if (!composer.Load(skillStub, flyGFXPath, hitGrdGFXPath, hitGFXPath).Result)
+ {
+ // failed to load
+ return false;
+ }
- if (!isLoaded)
+ // In original C++: composer->Init(g_pGame->GetGameRun()->GetWorld()->GetSkillGfxMan()->GetPtr());
+ // Not wired in Unity yet; keep placeholder init to allow future hookup.
+ composer.Init(A3DSkillGfxMan.Instance);
+
+ m_ComposerMap[nSkillID] = composer;
+ return true;
+ }
+
+ ///
+ /// Async version of LoadOneComposer that doesn't block the main thread.
+ ///
+ public async Task LoadOneComposerAsync(int nSkillID, SkillStub skillStub, string flyGFXPath, string hitGrdGFXPath, string hitGFXPath)
+ {
+ if (m_ComposerMap.ContainsKey(nSkillID))
+ return false;
+
+ var composer = new A3DSkillGfxComposer();
+ // Properly await the async Load operation
+ if (!await composer.Load(skillStub, flyGFXPath, hitGrdGFXPath, hitGFXPath))
{
// failed to load
return false;
diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset
index 01c04784d7..0af81e6d95 100644
--- a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset
+++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset
@@ -215,388 +215,8 @@ MonoBehaviour:
m_SourceFontFilePath:
m_AtlasPopulationMode: 1
InternalDynamicOS: 0
- m_GlyphTable:
- - m_Index: 2103
- m_Metrics:
- m_Width: 21
- m_Height: 51
- m_HorizontalBearingX: 11
- m_HorizontalBearingY: 48
- m_HorizontalAdvance: 43
- m_GlyphRect:
- m_X: 10
- m_Y: 10
- m_Width: 21
- m_Height: 51
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1743
- m_Metrics:
- m_Width: 38
- m_Height: 58
- m_HorizontalBearingX: 5
- m_HorizontalBearingY: 45
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 10
- m_Y: 80
- m_Width: 38
- m_Height: 58
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1677
- m_Metrics:
- m_Width: 45
- m_Height: 66
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 65
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 10
- m_Y: 157
- m_Width: 45
- m_Height: 66
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1731
- m_Metrics:
- m_Width: 42
- m_Height: 75
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 62
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 67
- m_Y: 10
- m_Width: 42
- m_Height: 75
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 370
- m_Metrics:
- m_Width: 50
- m_Height: 46
- m_HorizontalBearingX: 5
- m_HorizontalBearingY: 45
- m_HorizontalAdvance: 58
- m_GlyphRect:
- m_X: 10
- m_Y: 242
- m_Width: 50
- m_Height: 46
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1745
- m_Metrics:
- m_Width: 38
- m_Height: 66
- m_HorizontalBearingX: 5
- m_HorizontalBearingY: 65
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 74
- m_Y: 104
- m_Width: 38
- m_Height: 66
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1707
- m_Metrics:
- m_Width: 43
- m_Height: 67
- m_HorizontalBearingX: 2
- m_HorizontalBearingY: 66
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 128
- m_Y: 10
- m_Width: 43
- m_Height: 67
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1687
- m_Metrics:
- m_Width: 45
- m_Height: 75
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 62
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 10
- m_Y: 307
- m_Width: 45
- m_Height: 75
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1691
- m_Metrics:
- m_Width: 45
- m_Height: 75
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 74
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 10
- m_Y: 401
- m_Width: 45
- m_Height: 75
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1741
- m_Metrics:
- m_Width: 51
- m_Height: 59
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 46
- m_HorizontalAdvance: 56
- m_GlyphRect:
- m_X: 74
- m_Y: 307
- m_Width: 51
- m_Height: 59
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1737
- m_Metrics:
- m_Width: 51
- m_Height: 66
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 65
- m_HorizontalAdvance: 56
- m_GlyphRect:
- m_X: 79
- m_Y: 189
- m_Width: 51
- m_Height: 66
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 210
- m_Metrics:
- m_Width: 58
- m_Height: 59
- m_HorizontalBearingX: 0
- m_HorizontalBearingY: 59
- m_HorizontalAdvance: 62
- m_GlyphRect:
- m_X: 131
- m_Y: 96
- m_Width: 58
- m_Height: 59
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1709
- m_Metrics:
- m_Width: 42
- m_Height: 70
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 69
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 74
- m_Y: 385
- m_Width: 42
- m_Height: 70
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 197
- m_Metrics:
- m_Width: 45
- m_Height: 64
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 63
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 190
- m_Y: 10
- m_Width: 45
- m_Height: 64
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1675
- m_Metrics:
- m_Width: 45
- m_Height: 59
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 46
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 135
- m_Y: 385
- m_Width: 45
- m_Height: 59
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1705
- m_Metrics:
- m_Width: 44
- m_Height: 67
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 66
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 144
- m_Y: 274
- m_Width: 44
- m_Height: 67
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1679
- m_Metrics:
- m_Width: 45
- m_Height: 67
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 66
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 149
- m_Y: 174
- m_Width: 45
- m_Height: 67
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1715
- m_Metrics:
- m_Width: 19
- m_Height: 65
- m_HorizontalBearingX: 0
- m_HorizontalBearingY: 65
- m_HorizontalAdvance: 19
- m_GlyphRect:
- m_X: 199
- m_Y: 360
- m_Width: 19
- m_Height: 65
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 211
- m_Metrics:
- m_Width: 45
- m_Height: 63
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 62
- m_HorizontalAdvance: 48
- m_GlyphRect:
- m_X: 207
- m_Y: 260
- m_Width: 45
- m_Height: 63
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- - m_Index: 1735
- m_Metrics:
- m_Width: 51
- m_Height: 64
- m_HorizontalBearingX: 3
- m_HorizontalBearingY: 63
- m_HorizontalAdvance: 56
- m_GlyphRect:
- m_X: 213
- m_Y: 93
- m_Width: 51
- m_Height: 64
- m_Scale: 1
- m_AtlasIndex: 0
- m_ClassDefinitionType: 0
- m_CharacterTable:
- - m_ElementType: 1
- m_Unicode: 8593
- m_GlyphIndex: 2103
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7909
- m_GlyphIndex: 1743
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7843
- m_GlyphIndex: 1677
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7897
- m_GlyphIndex: 1731
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 432
- m_GlyphIndex: 370
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7911
- m_GlyphIndex: 1745
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7873
- m_GlyphIndex: 1707
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7853
- m_GlyphIndex: 1687
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7857
- m_GlyphIndex: 1691
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7907
- m_GlyphIndex: 1741
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7903
- m_GlyphIndex: 1737
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 272
- m_GlyphIndex: 210
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7875
- m_GlyphIndex: 1709
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 259
- m_GlyphIndex: 197
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7841
- m_GlyphIndex: 1675
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7871
- m_GlyphIndex: 1705
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7845
- m_GlyphIndex: 1679
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7881
- m_GlyphIndex: 1715
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 273
- m_GlyphIndex: 211
- m_Scale: 1
- - m_ElementType: 1
- m_Unicode: 7901
- m_GlyphIndex: 1735
- m_Scale: 1
+ m_GlyphTable: []
+ m_CharacterTable: []
m_AtlasTextures:
- {fileID: 28268798066460806}
m_AtlasTextureIndex: 0
@@ -607,168 +227,12 @@ MonoBehaviour:
m_AtlasHeight: 512
m_AtlasPadding: 9
m_AtlasRenderMode: 4169
- m_UsedGlyphRects:
- - m_X: 0
- m_Y: 0
- m_Width: 40
- m_Height: 70
- - m_X: 0
- m_Y: 70
- m_Width: 57
- m_Height: 77
- - m_X: 0
- m_Y: 147
- m_Width: 64
- m_Height: 85
- - m_X: 57
- m_Y: 0
- m_Width: 61
- m_Height: 94
- - m_X: 0
- m_Y: 232
- m_Width: 69
- m_Height: 65
- - m_X: 64
- m_Y: 94
- m_Width: 57
- m_Height: 85
- - m_X: 118
- m_Y: 0
- m_Width: 62
- m_Height: 86
- - m_X: 0
- m_Y: 297
- m_Width: 64
- m_Height: 94
- - m_X: 0
- m_Y: 391
- m_Width: 64
- m_Height: 94
- - m_X: 64
- m_Y: 297
- m_Width: 70
- m_Height: 78
- - m_X: 69
- m_Y: 179
- m_Width: 70
- m_Height: 85
- - m_X: 121
- m_Y: 86
- m_Width: 77
- m_Height: 78
- - m_X: 64
- m_Y: 375
- m_Width: 61
- m_Height: 89
- - m_X: 180
- m_Y: 0
- m_Width: 64
- m_Height: 83
- - m_X: 125
- m_Y: 375
- m_Width: 64
- m_Height: 78
- - m_X: 134
- m_Y: 264
- m_Width: 63
- m_Height: 86
- - m_X: 139
- m_Y: 164
- m_Width: 64
- m_Height: 86
- - m_X: 189
- m_Y: 350
- m_Width: 38
- m_Height: 84
- - m_X: 197
- m_Y: 250
- m_Width: 64
- m_Height: 82
- - m_X: 203
- m_Y: 83
- m_Width: 70
- m_Height: 83
+ m_UsedGlyphRects: []
m_FreeGlyphRects:
- - m_X: 40
- m_Y: 0
- m_Width: 17
- m_Height: 70
- - m_X: 57
- m_Y: 94
- m_Width: 7
- m_Height: 53
- m_X: 0
- m_Y: 485
+ m_Y: 0
m_Width: 511
- m_Height: 26
- - m_X: 64
- m_Y: 179
- m_Width: 5
- m_Height: 53
- - m_X: 118
- m_Y: 86
- m_Width: 3
- m_Height: 8
- - m_X: 64
- m_Y: 464
- m_Width: 447
- m_Height: 47
- - m_X: 125
- m_Y: 453
- m_Width: 386
- m_Height: 58
- - m_X: 69
- m_Y: 264
- m_Width: 65
- m_Height: 33
- - m_X: 121
- m_Y: 164
- m_Width: 18
- m_Height: 15
- - m_X: 134
- m_Y: 350
- m_Width: 55
- m_Height: 25
- - m_X: 189
- m_Y: 434
- m_Width: 322
- m_Height: 77
- - m_X: 139
- m_Y: 250
- m_Width: 58
- m_Height: 14
- - m_X: 227
- m_Y: 332
- m_Width: 284
- m_Height: 179
- - m_X: 197
- m_Y: 332
- m_Width: 314
- m_Height: 18
- - m_X: 180
- m_Y: 83
- m_Width: 23
- m_Height: 3
- - m_X: 198
- m_Y: 83
- m_Width: 5
- m_Height: 81
- - m_X: 244
- m_Y: 0
- m_Width: 267
- m_Height: 83
- - m_X: 261
- m_Y: 166
- m_Width: 250
- m_Height: 345
- - m_X: 273
- m_Y: 0
- m_Width: 238
m_Height: 511
- - m_X: 203
- m_Y: 166
- m_Width: 308
- m_Height: 84
m_FontFeatureTable:
m_MultipleSubstitutionRecords: []
m_LigatureSubstitutionRecords: []
@@ -1029,9 +493,9 @@ Texture2D:
Hash: 00000000000000000000000000000000
m_IsAlphaChannelOptional: 0
serializedVersion: 3
- m_Width: 512
- m_Height: 512
- m_CompleteImageSize: 262144
+ m_Width: 1
+ m_Height: 1
+ m_CompleteImageSize: 1
m_MipsStripped: 0
m_TextureFormat: 1
m_MipCount: 1
@@ -1056,8 +520,8 @@ Texture2D:
m_LightmapFormat: 0
m_ColorSpace: 0
m_PlatformBlob:
- image data: 262144
- _typelessdata: 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a1313130a0a080400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a131313131313130a090704000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090c0e10111213131212110f0d0b0807050200000000000000000000000000000000000000000000000000000000000000000000020507080b0e111212131212100e0c0808060200000000000000010406070c101213131211100e0b0a08040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b10141617202020171614100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161720202020202020161613100b040000000000000000000000000000000000000000000000000000000000000000000000000000000002050a0f121515181b1d1e1f20201f1f1e1c1a181514120e090501000000000000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191514120e090400000001080d111314191c1f1f201f1e1d1a171714110c0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2423201c1710080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d2d2d2d2322201b160f070000000000000000000000000000000000000000000000000000000000000000000000000003090e12151b1f21222528292b2c2c2c2c2b2b29272521201e1a14110d080200000000000000000000000000000000000000000000000000040a0f141a1e212225282a2b2c2c2c2b2a282522211e1a15100c07040c13191d202126292b2c2c2c2b29272423211c17100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d303139393931302d28221a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d303139393939393939302f2c27211911070000000000000000000000000000000000000000000000000000000000000000000002080d141a1e20262b2e2f323436383939393938373633312e2d2a25201d19130d080200000000000000000000000000000000000000000000070c161b1f262a2d2e31353738393939383735322f2e2b261f1c18120d161e24292c2d32363839393838363431302d28221a12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a232c33393c3d4646463d3c39332c231a1005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a232c33393c3d464646464646463d3b38322b23190f040000000000000000000000000000000000000000000000000000000000000000050d13191f252a2d31373a3c3f41434445464645454442403e3b3a36302d29251e19130c0400000000000000000000000000000000000000030b121821272c31363a3b3e4144454546454543413f3b3a37312c29231d1a1f282f35393a3f43454646454443413e3c39332c241a10050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222c363e44494a5353534a49443e362c22170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222c363e44494a535353535353534948443d352b21160b00000000000000000000000000000000000000000000000000000000000000060e171e252a30363a3c4347484b4e50515253535252514f4d4b4846423b39353029241e160e070000000000000000000000000000000000040c151d232832383b4246484b4e505152535252504e4c4847423c38342f27232c313a4145474c4f5252535251504d4a49453e362c22170c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e48505557606060575550483e33281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e485055576060606060606056544f473d32271b100400000000000000000000000000000000000000000000000000000000020a1117202930363b4246484e5355585b5c5e5f5f5f5f5e5e5c5a5854524d4746413a35302820191109010000000000000000000000000000040d161e272e343d43484d5355585b5d5e5f5f5f5e5d5b5855534d474540393128353e434c5154595c5e5f5f5f5e5c5a575550483e33281c1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c64615a5044392d2014080000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c6c6c6c6360594f44382c201307000000000000000000000000000000000000000000000000000000020b141b2227323a41464d5254585f626567696b6c6c6c6c6b6a696664615e5754524c46413a322b231b130900000000000000000000000000010c161f28303940454f54575f6164686a6b6c6c6c6b6a6865625f5753514b433e343e474f555d6065696b6c6c6b6b696764615a5045392d211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c70797979706c6155493c3023160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c7079797979797979706b6054483b2f2216090000000000000000000000000000000000000000000000000000020b141d262d333e444c52575e61666a6f727476777879797878777573716e6966615e56524c443d352d251b130900000000000000000000000007131d28313a424b51596063696e71747778787978787674726e6965605c5550443f474f5961676d727678797978777674716c6155493c3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8686867d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d868686868686867d706356493d3023160a00000000000000000000000000000000000000000000000000000a141d262f383f4450565e61696e73777b7e81838485868685858482807e7b77736d68615d564f473f372d251b110800000000000000000000030c18242f3a434b545c606b6f757b7e8183848586858583817f7b77726d67615a504a4f59616b707a7f82848586858483807e7164574a3e3124170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a938a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a9393939393897c706356493d3023160a0000000000000000000000000000000000000000000000000006111b262f384149505a61686d747b8084888b8e8f919292929291918f8d8b87837f7a736d68605951493f372d231a0e040000000000000000000a151e2935404b555d666d747c82878b8e909192929291908e8b88847e79706c605c5454606b707d858c8f91929292918f8d83776a5d5144372a1e11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a979f9f9f96897c706356493d3023160a000000000000000000000000000000000000000000000000030c17222d384149535b606c717a81868d9196989a9c9e9f9f9f9f9e9d9c999795908c86807a706b625b51493f352c20160c020000000000000006111c26303845515d676d7881898f939a9b9d9e9f9f9f9e9d9b9895918b857d746d665c5c66707d8792979c9e9f9f9e9e9c9084776a5d5144372a1e11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3aca396897c706356493d3023160a0000000000000000000000000000000000000000000000000b151e27333f49535b656c737e858e92999ea0a8a9a19e9d9c9b9c9d9fa2aaa7a09d98928d847d726d625b51473e32281e1308000000000000000c17232e3842505a606d79828d929c9fa4acaaa39f9d9c9b9c9e9fa09d97918a81786d67606d79849199a2a9a9a29f9895949084776a5d5144372a1e11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a979f9f9f96897c706356493d3023160a000000000000000000000000000000000000000000000007121d27303944505b656c77808a92979fa3a8a19e999792908f8f8f909298999da0a7a29f9691877f726d62594f443a3024190d02000000000003101c28343f4a54626c75818e949da4aca79f9d9892908f8f8f9193999a9f9e938e81796d64717d8a96a0ababa297928b88878883776a5d5144372a1e11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1724313d4a5764707d8a9393939393897c706356493d3023160e09030000000000000000000000000000000000000000000c18232e39424f59606c77808d929fa2a9a39f96918c8885838282838385888c91959ea1a8a199938b7f726b61564c4135291f1409000000000006121f2c3844505c66717e8b939ea6aea49d95908a86838282838486898d92989f938e81756d75828e9ba8afa39992857f7b7a7b7d706356493d3023160a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161c24313d4a5764707d868686868686867d706356493d30231e1a140e090200000000000000000000000000000000000004101c2834404b54606b737f8c929da4a9a299928c847f7b787675757677797b7f848b9297a0a7a49f93887d70685d52453b30251a0e02000000000713202d3a4653606d7884919ea5afa69d928d837d7977757576777a7d81858d9299938c7f727885919eabac9f92877c726e6e6e706b6054483b2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000060c161b21272c2f3c4955616c7079797979797979706b6054483b322d2a251f19140d05000000000000000000000000000000000006131f2c3845515c66707d87939fa4aba29792877f79726e696a696869666c6e72787e859095a0a8a49a91847a6d60574d42362a1e1105000000030f1b27333f495364717e8b96a1acab9e948d8078706d67696869676d70747a8087919593877c7a8796a1ada89c8f82756a6261626360594f44382c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000000000000030a111721272c3338394045505a61646c6c6c6c6c6c6c6360594f47433c3a36312a251f170e0600000000000000000000000000000004101c2834404b54606d79849199a4aea39992857d726d67625f575c5c545b6062666c717b839095a0aaa1968e8174695e52463a2d20140700000005121f2b3744505b6575828f9ba8afa4998f82776d66605c555c555d6063686d737c83909490837c8895a9b2a5988b7f726558545556544f473d32271b1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000040c151c232832383d44484b515356595c606060606060605c5b5855534e4846423b3630292017110a020000000000000000000000000006131f2c3845515c66727f8c96a0aba89f92877d6f6b605c55534d4f4f4a5053545b60696e7a839198a3a39f92867b6e6154473b2e2114080000000613202d394653606c7985929eabac9f93877b6e655c54514b4f4b5153565d616a6f7a8290959083909da9afa396897c70635649484948443d352b21160b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000040d161e262e343d43484f54555d606366686a6b6c6c6c6c6b696765625f5854534d46423b3228221c140b020000000000000000000000000713202d3a4653606d7984919ea8aca1968c80736b6059514b474242423f44464a50575e686e7b86929a99928f8b8073665a4d4033271a0d0000000815222e3b4855616e7b8897a1ada99d9083766a5f534a4540424045474c52585f686d7983909590959fabaea195887b6e6255483b3d3b38322b23190f0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000000030d161f2830383f444e54596063676d707375777879797978777674726f6a67615e57524d443f332d261d140b020000000000000000000004111d2935414c5564717e8a96a1adaa9e9184796d60594f45403937312d3338393f444d565f6973808c8e8a86827f7b6e6155483b2e2215080000000916232f3c4956626f7c8995a9b3a79a8d807467574e4138342f35393a41464e565d676e7b86929d9fa7b1aea194877b6e6154483b302f2c27211911070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000010b151f28313a424a505860626b70757a7d80828385858686858483817e7c78736e69615e5650443f382f261d140a000000000000000000000613202c3945515d6775828f9ca8aea2988b7e71675d51473d342e2b2622282b2d333b444d57616d7a84817d7a76726e695f53463a2d2114070000000a1724303d4a5763707d8a96a3b0a5998c7f7266594c3f2f2824292c30353c444c555f69727f8b96a1acb9aea194877b6e6154483b2e21201b160f07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000000007121d27313a434c545c606a6f767d8285898c8f909292939292918f8e8b8884807b756e69625a504a42382f261c11060000000000000000000714212d3a4754606d7a86929facac9f92857a6d60554b403528231d1a171c1f2228323c46525e686d7774706d6765615f574d42372b1e12050000000b1724313e4a5764717d8a97a4b0a5988c7f7265594c3f2e23181d1f2429323a434d57606d7984919eacb6aea194877b6e6154483b2e2115100b0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000040e18242f39434c555d666d737c83898e9298999b9d9e9f9f9f9f9e9c9a9896918d87817b716c605b544a42382d22170d0300000000000000000a1724303d4a5763707d8a99a3aea89b8e8175675d5143392f23181d1d1d1d1d17202a36414c565e616b6764605d5555534d453c31261a0e020000000a1724303d4a5763707d8a96abb5a6998c807366544a3f3428211e1a192028313b45515c66727f8c9aa4afaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000000020c16202935404b555d676d78808790959b9fa2a9a19e9c9b9a9a9b9d9fa3a8a19e99928e867e746c665b544a3f33281f150b01000000000000010d1a2734404d5a6773808d9aabb4aa978a7e7164554b4031272a2a2a2a2a2a2a2a2a25303a444c52545e5b5753514b4846423c332a1f1409000000000916222f3c4955626f7c8899a4afa89b8e8275665c50443a322d2a262727262834404b54616e7b87939facaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000008131e28323a45515d676d79828d93999fa7a39f9a97928f8e8d8e8f9092999c9ea6a39f98928b80786c665b50443d31271d120700000000000004101d2935404b556976828f9ca9aea298887b6e6255483b2f373737373737373737373737323a414647514e4a4745403b3a373128231c140c020000000714212d3a4754606d7a86939facab9e9285796d60564c443d3a3631343333322e3946525e697784919daaaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000010d1925303a44505a606d79828f949fa4a79f99928d8885838181818283868a8f949ea0a8a29f928d81786c60594f43392f23180c00000000000006131f2c3845515d677885919eabac9f9285796c6053464444444444444444444444444444444444444444444444444444443a38342e261e140a0000000613202c3945515d677783909dabada1978a7e71685d564f484642424140403f3f3f424d566875818e9ba8aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000005111d2935414c56626c75818e949fa6a69f959086817c797674747475777a7d828991969fa7a49d938c80736b60554b4034291d120700000000000714202d3a4753606d7a8696a1adaa9d908377665b505050505050505050505050505050505050505050505050505050505046443f3830261c1106000004111d2935414b556673808c99a3afa99e91847a6d68605955534d4f4d4d4c4c4c4b4b4d5a6774808d9aa7aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000713202d3946525e68717e8b939ea6a89f948f837b746f6c6568676768676d70757c8490959fa8a59f93887d70675c5145392e23180c00000000000815222e3b4855616e7b8894a9b2a99c8f837669545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d53504a42382e23170b0000010d18242f3b4854616e7b86929fa8aca19690827a706b65615f575b5a5a5959585858585a6673808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000005111d2935414c56616d7a85929fa5aca0968f82796e6962605b535a5b555d60636a6f7a839096a1ada49a9184796d60544b4034281c1004000000000916232f3c4956626f7c8995a2afa89b8f82756a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a605c544a3f34281c100300000714212d3a46535e6974818d96a1aaa89f9490847d76726e696a686766666565656564646673808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000713202d3946525d6874808d97a2ada59d9184796d675f575350494e4e4b51535860686d7a84919ea6aca0968c7f72665c5145382c1f1307000000000a1723303d4a5663707d8996a3b0a79b8e8177777777777777777777777777777777777777777777777777777777777777776d665c5044382b1f1206000005121e2a36424d57606d7a849198a1a9a69f969189837e7b7876757473737272727171717173808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86929fa9aa9e93897c6f675d554d46443f41414045474e565e68707d8a949faba89e9184796d6053463a2e23180c000000000a1724313d4a5764707d8a97a3b0ab9e92858383838383838383838383838383838383838383838383838383838383838383786d6053463a2d2013070000020e1a25313b45525d686f7c8692979ea6a8a09e95908b8885838280807f7f7f7e7e7e7e7d7d818e9ba8aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000005121e2a36424d5765727f8c98a2aea89b8f82756b60554b433c37332d2f35393d444c56616b7683909caaada1968a7d7164544b4034281c10040000000b1724313e4a5764717d8a97a4b0ada197929090909090909090909090909090909090909090909090909090909090909086796c605346392d20130600000009141f2935414c565f6a6f7c858f949c9fa4a79f9d989792908e8d8d8c8c8b8b8b8b8a8a8a8e939eaaaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000714212d3a46535e697783909daaaca196897c6f63594f433a312b272224292c323a444f5964717e8a98a2aea89b8e8275665c5145382c1f13060000000b1724313e4a5764717d8a97a4b0b3a9a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d928679655b5044372b1f1205000000030d19242f3a434e58606a6f7a82898f939a9c9fa2a9a29f9d9b9a999998989898979797979b9ea5afaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000815212e3b4854616e7b8795a0abab9e9184786c6053463d31281f1b17181d2029323e4753606d7985929facac9f9286796d6053463a2d2013070000000a1724303d4a5763707d8a96a3b0b8b0aba99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9faaaaaaaaaa9f9285786c5f493f33271b0f030000000008131e28313c464e5860686e757d82878c8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abaeb6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a7b1a79a8d8074655b5044372b1f160f0b0c1017202c3845515d6775828f9ca8aea298897c6f6356493c302316090000000a1623303d495663707c8996a3afb0a69f9c93939393939393939393939393939393939393939393939393a0a8b2ab9e9185786b5e52452d22170b0000000000010c161f2a343c464e565e616b70767b7f8385888a8c8d8f8f9090919191919292929292999ca4aeaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a978a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000030f1b27333f49536874818e9ba7b4aa978a7d716453493f3327190d04000005101d2935404b5566727f8c99a5b4aa998c7f7266594c3f332619070000000915222f3c4855626f7b8895aab3ab9f948f8686868686868686868686868686868686868686868686868996a0acaa9d9083776a5d5044372a1d06000000000000040d18222b343c444c52596063696e7276797c7d7f81828383848484848585858585868d929ca8aea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002070a0a1724313d4a5764707d8a978a7d7064574a3d3124170a0a0702000000000000000000000000000000000000000000000005121f2b3744505b657783909daaaea298877b6e6154483b2d221708000000000c18242f3d4a5663707d8996abb5a89b8e8175685b4e422e23180c0000000714212e3a4754616d7a8798a2aea99c8f8279797979797979797979797979797979797979797979797984919eaaa99c8f8276695c4f4336291c10030000000000050e171e252a323b41464f54575f6165666d6f71737475767677777778787878797979808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d1316191924313d4a5764707d8a978a7d7064574a3d3124191916130d07000000000000000000000000000000000000000000000613202d394653606c7985929facac9f928579695e53463a2d211406000000000715212e3b4854616e7b8799a3aeaa9d9083776a554b4034281c100400000713202d3946525d687885929fabaa9d9084776c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7986929faca79a8d8174675a4e4134271b0e0100000000020d1720293036393a3e3f44484d5355545c606264666768696a6a6a6b6b6b6b6c6c6c73808d99a6aea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a12191e23252626313d4a5764707d8a978a7d7064574a3d31262625231e19120a0100000000000000000000000000000000000000000814212e3b4754616e7a8798a2aeaa9d9084776a574d42362a1e1205000000000613202d394653606c7986929facab9f928578675c5145382c1f1306000005111d2935414c566a7683909da9ab9f928578695e606060606060606060606060606060606060626e7b8899a3afab988b7f7265584c3f3225190c000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f6673808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a131c242a2f323333313d4a5764707d8a978a7d7064574a3d313333322f2a241c130a00000000000000000000000000000000000000000916222f3c4955626f7c8895aab4a99c8f8276695c4f4331251a0e020000000006121f2b3844505b667884919eabada29786796d6053463a2d2013070000010d192430414e5a6774818d9aabada297877b6e6154535353535353535353535353535353535764717d8a97abaea399897c706356493d3023160a00000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525a6774818d9aa7ada194877a6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121c252e353b3e403f3a3d4a5764707d8a978a7d7064574a3d3a3f403e3b352e251c1207000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b090000000000030f1c28333f4a546a7784909daab3a994877b6e6154483b2e211508000000081724313e4a5764717e8a99a4afa9978b7e7164564d41464646464646464646464646434f596774818e9aa7ac9f92867a6d6053473a2d2014070000000005111e2a36414c565e6164656768696a6b68655d534840414243434444444545454e5b6875818e9ba8b3a994877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d19242e3740464b4c4c47454a5764707d8a978a7d7064574a45474c4c4b4640372e24190d020000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e0100000000000b17222d43505d697683909ca9aea195887b6e6255483b2f2215080000000714212e3a4754616d7a86939faca89b8e8175685e52463c313939393939393939313a4854606b7884919eaba99d908376675d5145392c1f1306000000000713202d3946525e686d71727374767778756f65594d3c323536373737383837424d576976838f9ca9ada19786796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131e2a3540495257595954514b5764707d8a978a7d7064574b5154595957524940352a1e13070000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000000061d293643505c6976838f9ca9afa295887c6f6255493c2f2216090000000713202d3946525e6876838f9ca9ac9f92867b6e61584e433a322c292424292c323a434e58636f7c8996a1aca6998c7f7266554b4035291d1004000000000714212e3a4754616d7a7e7f8081828485817568584e43372d2c2823292c303847535f697885929eabab9e918578665c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a16232f3b46525b636666605d555764707d8a978a7d706457555d606666635b52463b2f23160a0000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1a69a8d8073675a4d4034271a0d010000000003101c2936434f5c6976828f9ca9afa295897c6f6256493c2f23160900000005111d2a36414c5665717e8b97a1ada3998d80736a5f554c443d39352f2f35393d444c56606a75828f9ca8ab9f94887b6e6155483b2f24180c00000000000815222e3b4855616e7b888c8d8e8f909184776a5f53473f3a38342f34383a424c56626e7b8897a2ada99c90837669544b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323e4b57636d73726d67605c64707d8a978a7d70645c60676d72736d63574b3e3225190c0000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000003101d293643505c6976838f9ca9afa295887c6f6255493c2f221609000000010d1925303a4753606d7985919ea8ab9f92867c6f675e564f47454041414045474e565d686f7c87939faca69c8f8276695f53463a2d1d120700000000000714212d3a46535f697884919a9b9c9d96887c6f625a504a46443f434045474c545e6873808d99a9b2a89a8d8073675a4d402e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d192633404c5966737f7f7a726d6764707d8a978a7d7064676d727a7f7f7366594c403326190d0000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e010000000003101d2a3643505d697683909ca9aea195887b6e6255483b2f2215080000000008131f2c3845515c67727f8c96a0aba3989183796d68605953514b4e4e4b51535860686d7a84919aa4aa9f94897d7063574d42362a1e0b01000000000005121e2a36424d576874818e9ba6a9a89b8e81756c605b5453504a504b5153565e666d7a85929eabaca196897c706356493d302316070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1b2734414e5a6774818c857f79716c707d8a978a7d706c71797f858c8074675a4e4134271b0e0000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b08000000000004111d2a3744505d6a7783909daab4aa94887b6e6155483b2e2215080000000004101c2934404b55606d79849199a3aaa09590837a706b64605d555b5b555d60636a6f7a828f96a0aca3988f82766b6055453b31261a0e000000000000020e1a26313c4955626f7c88949faaaa9e938a7e726c6662605c545d555c6063686d78828f97a1ada89e9184786d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1a2734414d5a6774808d928c847e75707d8a978a7d70757e848c928d8074675a4d4134271a0e0000000000000000000000000000000000000916232f3c4956626f7c8995abb5a89c8f8275695c4f423025190e020000000005111d2935414c566b7784919eaaaea398877a6d6054473a2d21140700000000000c18232f3945515c67707d87929fa4a79f9590847d75706d6769676869676d70757c848f949fa8a49f92867c6f62594f44332a1f1409000000000000000915222e3b4754606a76828f98a3aea59f92877f78726e6d666a696a676d6f747a828f949ea9aaa0968b7f72665c5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b4854616e7b849095918a827b7d8a978a7d7b828a919590847b6e6154483b2e2115080000000000000000000000000000000000000815212e3b4854616e7b8799a3afaa9d9083776a564c41362a1e1105000000000713202d3946525e687985929facac9f928579675d5145392c201306000000000007121d2834404b55606b727f8c929da4a79f969189827d7a7675747475777a7d828991969fa6a49d928b7f726a5f53473d3321180e030000000000000006131f2b37434e58626f7c86929fa4aea399928b837f7b797777767777797c80868f949ea6aba3989184796d60544a3f34281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e696e7a838f94938f85808d9a8d80858f94948f837a6e695e53463a2d2114070000000000000000000000000000000000000713202d3a4653606d7986929facab9f928578685e5246392d201407000000000714212e3a4754616d7a8798a2aeaa9e9184776b554b4135291d11040000000000010c18232e39434f59636d74808d929fa2a8a09e948f8a86838281818283868a8f949ea0a8a29f928d80746d62584e43352c210f060000000000000000030f1b27323c47535f6a717e8b929fa3aaa39f95908c8886848383838486898d92989fa6a9a29992867c6f665c5142382e23170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d575e686d79828f9497928d929d928d9297948f82796d685e574d42362a1e120500000000000000000000000000000000000006121f2c3844515c667784919daaada297877a6e6154473b2e21140a00000000091623303c4956636f7c8996aab4a89c8f8275695c4f422f24180d0100000000000007121d27303d47515b606c77808a92979fa3a69e9c9992908f8e8e8f9092999c9ea6a49f98928b80776c605b51463c31231a0f000000000000000000000a15202b37434e58626c737f8a92989fa4a7a09d989992919090909192999a9fa2aaa59e9792877e716a60544b4030261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b454d565e676d798290959e9a9da49d9a9e959082796d675e564d453b31251a0e0200000000000000000000000000000000000004101c2834404a546875828e9ba8b3a9968a7d7063574a3d31261b0d040000030f1b27333f495365717e8b98a4b1a69a8d8073675a4d4034271a0700000000000000000b151e2b353f44505b656c737e858e92999ea1a8a39f9d9c9a9b9c9d9fa3a9a19e9a938f867e746c655b50493f342a20110800000000000000000000040f1b26323c46505a636d737e868e93999ea0a8aba39f9e9d9c9d9e9fa3aba9a29f9a938e857d716c61584e42392e1e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f29333b444c555d676d7a839096a1abaeaba19690837a6d675d554c443b33291f140900000000000000000000000000000000000000000c18232e3f4c5865727f8b98a8b2a6998d807366584e43372b1f15100c0b0f141f2b3744505b6574818e9ba7b1a7978a7d7164574a3e3124170b0000000000000000030c192327333f49535b606c717a81878d9196989b9c9e9f9f9f9f9e9c9b9897928d87827b716c605b53493f372d22180e0000000000000000000000000a15202a343f48525b636c717b81878d9196979a9c9d9e9e9f9f9f9e9d9b9997928e88817b706b615a50463c30271d0c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d172129323a434b555d686e7a849199a3afa39991847a6e685d554b433a322921170d0300000000000000000000000000000000000000000716222f3c4955626f7c8896a1acaa9d9083776a5f53473c31271f1c18171b1f2630394653606c7884919eabaca095877a6e6154473b2e211408000000000000000000071117222d384149505a61686e747b8084888b8e90919292929291908e8c8985817b756e69625a504941382d251b1006000000000000000000000000040e18222d364049525a61696e747b8084888b8d8f90919292929291908e8c8985817c756e69615950483e342b1e150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050f1720283139434c565e686f7d87929fa69f92877d6f685e564c4339312820170f050000000000000000000000000000000000000000000613202d394653606c7884919eabaca095887c6f62584e4339302c282322272b2f38424d57626f7c8996a1adab9d908377685e5246392d2014070000000000000000000006111b262f383f4450565e61696e73787c7f818384858686858483817f7c79746e6a615e5750443f382f261b1309000000000000000000000000000006101b242e37404850575e616a6e73777b7e80828484858686858483817f7c79746f6a615e574f473e362c22190c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e161f27313a434c56606b727f8c949f948c7f726b60564c433a31271f160e050000000000000000000000000000000000000000000005121f2b3744505b6573808d99a4afa79a8e81746a5f554b423c38342e2d33373b414a545f6974818e9ba8afa4998c7f7366564d41362a1e110500000000000000000000000a141d2c353d44484c52575e61656c6f7274767878797978787675726f6d66625f58534d5345413a32281e130800000000000000000000000000000009121c252e363e454d53585f62666a6f717375777878797979787675726f6d66625f58524d453d352c241a10070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d151f28313b444f59626d76828f998f82766d62594f443b31281f150d040000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939fabac9f92877c6f675c544e46444041413f44464c535c666e7b86929facab9f93877b6e6155483b3025190e020000000000000000000004101c27333d474f5556606060605b60626568696b6c6c6c6c6b69686562605c54606060605f524c443a3024190d010000000000000000000000000000000a131c242c333b42464e5355585f626467696a6b6b6c6c6c6b6a686663605c54534e46423b332c231a120800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d161f29323d47515b626f7c8792877c6e625b51463d32291f160d03000000000000000000000000000000000000000000000000000b17222d3847535f6975828f99a3aea3999083796d665f5753514a4e4e495053565e656d78829099a3aea4998f8275695f53463a2d1f140800000000000000000000000714202c38444f5961636c6c6c6c69615d565b5d5e5f5f5f5f5e5d5b59575f616a6c6c6c6c6c5d564c4135291d1104000000000000000000000000000000010a121a212931363c4347484e53575e6165686a6b6c6b6a6965625f5753514b47433c363029201a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d17202b343f47535f6a73808680736a5f53493f342b20170d04000000000000000000000000000000000000000000000000000006111b2b37424d57626e7b87929fa6ab9f958f81786e6a63605c545b5a535b6062686e77818e949faba79f93877c6f62574d42362a1e0d0200000000000000000000000916232f3c4855616b7079797979756d686058515152535352514b515a61696e777979797976685d5245392c2013070000000000000000000000000000000000080f171d273039414950585f62696e7275777879787775726e6a626058514a423a32281e170e080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e19222b37434e58646e7379736e64584e43372d22190e05000000000000000000000000000000000000000000000000000000000e1a26313c47535f6a73808d949fa8a79e938f837b74706d6668676768656c6f737a828e939da6a9a0958d80746a5f53453b31261a0e0000000000000000000000000a1723303d4a5663707d86868686827a6f6a625b524c4446464e555d606c717b83868686867a6d6054473a2d211407000000000000000000000000000000000006111b262f39434b535b606a6e757b7e828485868584827f7b766f6a605c544c443a30271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101a26313c46525c64676c67645c52463c31251b1007000000000000000000000000000000000000000000000000000000000009151f2b37424e57606d78829096a0a7a69e959087817c79767574747576797c80868f949da5a9a1979183796d60584e4333291f14090000000000000000000000000713202d3a4653606d78828f95948f847c726d605d564e4550585f676d747e869095938c8073685d5245392c20130700000000000000000000000000000000000b17222d38414b555c656c727c81878b8f91929292918f8b88827c746d665d564c43392e23180b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a34404a52585a605a58524a40342a201309000000000000000000000000000000000000000000000000000000000000030e1a26313c44505c666e7a8490959da5a79f99928e898583828181818385888d92989ea6a69f9791857c6e675d51463c3221170d0300000000000000000000000006121f2b3844505c666d798390979691877f756d686058515a626a6f79818a9298958e81776c60564c4135291d110400000000000000000000000000000000030f1b27333f49535c676d777f878e93999b9d9e9f9e9d9c98948f8980786d685d554b4034281d140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18222e3840474c4d534d4c4740382e22180e010000000000000000000000000000000000000000000000000000000000000009152028343f4a545e686e7a838e939da0a7a39f9b9892908e8e8d8e9092979a9fa2a8a19e948f857c6f6a5f554b40342a200f060000000000000000000000000003101c28343f4a545d676e7b85929899928c827a6f6a625d606c717c838e939f969083796d655b50443a3024190d01000000000000000000000000000000040e19222b3744505b656d79818c92999fa4aba8a7a7a7a8a8a69f9c928d837a6d675c51453d2f261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101c262e363b3f4046403f3b362e261c0f060000000000000000000000000000000000000000000000000000000000000000030c17232e38424c565e686e79818990959b9fa2aaa29f9d9b9a9a9b9c9ea1a9a39f9c96918b827a6f6a5f574e43392f22180e00000000000000000000000000050c151d232e38424c555f696f7d86929f9f938f847c726d676d757e8690959d9891847a6e675d53493f32281e1308000000000000000000000000000000000a15202b37434e58606c77818e939fa3a8a09e9b9a9a9a9b9d9fa4a49d958f82796d60594f42382d22170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141c242b3033343934332f2b241c140a0000000000000000000000000000000000000000000000000000000000000000000006111c26303b444d565e676d747d83898e9298999b9d9e9f9f9f9f9e9d9b9999928f8a847e776e685f584e453c31281d1006000000000000000000000000070f171e272e343f464e5457606b717e8b929c9e9691877f757079818b9298a09992867c6f685e554b41382d20160c02000000000000000000000000000000030f1b27323a47535f6a73808d939ea29f9996918f8e8d8d8e9193999fa29f948e81746b60544a3f33281c0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a12191f2326272d2726231f19120a0200000000000000000000000000000000000000000000000000000000000000000000000a151e29323b444d555d606b70777d8285898c8e90919292929291908f8c8a86827e79716c655e564e463c332a1f160c000000000000000000000001071119212930394045505860626b6c6c73808d939ea199928c827c848e939fa29f93877e706a5f564c43392f261b0e040000000000000000000000000000000006131f2b37434e58626f7c87929fa098928d8884828180818284868c92979f9d93897d70665b5044382b1f12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080e1317191a201a1917130e0801000000000000000000000000000000000000000000000000000000000000000000000000030c172029323b434b515960636b7075797d7f82838585868685858382807d7a76716d66605b534c443c342a21180d0400000000000000000000040c1218232b333b424b515a626a6f7879797979818e959fa39f938f8991969ea59d938c7f726c61584e443b31271d140a00000000000000000000000000000000000815222e3b4754606a76839099a0959186807b777574747475777b7f8590949f9d9184786c605346392e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003070b0d0d130d0d0b07020000000000000000000000000000000000000000000000000000000000000000000000000000030e1a242f3841474c4e4f54596063676d70727576787879797878777573706d6864605c545049413c342a22180f0600000000000000000000040d161d2429353d454d545c606c717c848686867f79839096a1a59e9b969ea0a89f948e81746d635a50463c32291f150b0200000000000000000000000000000000000916222f3c4955626f7c88949f9791837b736e696867676768686e727a829095a095897d7063544b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f2b36414a52585a6060605f555d606366686a6b6c6c6c6c6b6a686663605d5660606055534e463c32261b0f03000000000000000000010c161f282f353f474f575e666d747e8691969184796e7b849198a29f9f9f9fa9a0968f82786d605b51473e342a20170d03000000000000000000000000000000000005121e2a36424d576774818d9a9e91857a6e69615f575b5a5a565e61686d7983919d9b8e8275665c5145382c1f130600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003070b0d0e1313131313131313120f0a05000000000000000000000000000000000000000000000000000000000b1724303c47525c64676c6c6c6c66605b54595b5d5e5f5f5f5f5e5d5c565e61696c6c6c6c625f584e43372b1f130600000000000000000007121d2831394045515960696e78818b9298958b7e71696f7c86929a93939393939791847a6d665c51493f352c22180e050000000000000000000000000000000000000714212d3a46535e697885919e968a7e71685f57534d4e4d4e4d52565e676f7c89959f9286796d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080e13171a1a20202020202020201e1b1610090100000000000000000000000000000000000000000000000000000d1a26333f4c58646e7479797979726c665e57505052525353524a505960696e7679797979766a5f53473b2e2115080000000000000000010d18242f39434b515b626b707b838e939f9a9083786c606a707e8786868686868686857b6e685e544a40372d231a1006000000000000000000000000000000000000000815212e3b4854616e7b8797939184796d60564d474241414141464c55606b7683909398897c6f6256493c2f231609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b12191f2326272d2d2d2d2d2d2d2d2b27211b130a01000000000000000000000000000000000000000000000000010e1b2734414e5a677480868686867f786e69615a514b4346444c545b606b707b83868686867c6f6255493c2f221609000000000000000004101d2935404b555d606d727d8590959d9f93877c6f655b616c707979797979797979786e695f564c42392e251c110800000000000000000000000000000000000000000a1724313d4a5764707d868686868174665c50443b37313430363a434f5966737f868686867f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d242b303334393939393939393937332c251c1309000000000000000000000000000000000000000000000000000815212e3b4854616e7b849198928c827b706c605d554e444f565e666c737d859094948e81746a5f53473b2e21150800000000000000000613202c3945515d676d757f8792979fa2978e81746a60535a61646c6c6c6c6c6c6c6c6c625f574d443a30271c130a0000000000000000000000000000000000000000000a1623303c4955616c7079797979746f64544a3f322b2627252a313d4b57636d7379797979726d62564a3e3125180b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008121d262f363c3f414646464646464646433e372e251b10050000000000000000000000000000000000000000000000000714202d3a46525e696f7c869299948f857e746d675f58505960686d787f879297969082786d60584e43372b1f130600000000000000000714202d3a4753606d79818c929993939392857a6d61584e50555760606060606060605f55534d453c32281e150b010000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c67645d5342382e201a1a191f2f3b46525b63666c6c6c6c65625b51463a2e22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e19242f3840474c4d53535353535353534f4940372c21160a00000000000000000000000000000000000000000000000005121e2a36424d575f6a707d87929f97928a81796f6a605b626b6f7a828c93999891847a6d665c51463c32261b0f030000000000000000111d2a3744505d6a778386868686868686867f72685e524644494a5353535353535353524847423c332a20160c030000000000000000000000000000000000000000000004101c28333e48505557606060605b59534b4130261c0e090d1e2a35404952575960606060585651493f34291e12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131f2b36404a52585a606060606060605f5a52493e33271b0f020000000000000000000000000000000000000000000000020e1a25303b454e58606b717e8b919c9e938e837c726c656d727d848f949f9992867c6e685e544b40342a20150a000000000000000000101d2936424f5b6671777979797979797979726d62564c41393c3d4646464646464646453b3a37312a21180e040000000000000000000000000000000000000000000000000b17222c363e44494a535353534e4c4841382f1e140a020d19242e3740464b4c535353534c4a463f372d23180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1723303c47525c64676c6c6c6c6c6c6c6c645a4f43372b1e120500000000000000000000000000000000000000000000000009141f29333c464f59616c737f8c939d9d9591867f776e757f8791969f9f92877d706a5f564c42392e22180e040000000000000000000e1a26333e4a555f666a6c6c6c6c6c6c6c6c65625b51443a3030313939393939393939392f2e2b2620180f060000000000000000000000000000000000000000000000000005101a242c33393c3d4646464641403c362f261d0c020007121c252e353b3e40464646463f3e3a342d251b110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1a26333f4c58646e7479797979797979766c5f5346392d201306000000000000000000000000000000000000000000000000020d17212a343d47505a636d74818e949ea099928c827b828c9299a19d928b7f726b60584e443a30271d1006000000000000000000000a16222d39434d555b5d6060606060606060595751493f322923242d2d2d2d2d2d2d2d2c22211e1a150e0600000000000000000000000000000000000000000000000000000008121a22282d3031393939393433302b251d140b0000000a131c242a2f32333939393932312e29231b13090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a67748086868686868686796c605346392d20130600000000000000000000000000000000000000000000000000050f18222b353e48515b606d78828f959fa39f948f888f939fa39f948d80746d62594f463c32281e150b000000000000000000000005111c27313b434a4f5053535353535353534c4a463f372d20171720202020202020201f1514120e090300000000000000000000000000000000000000000000000000000000000810171c2023242d2d2d2d282724201a130b02000000010a12191e2325262d2d2d2d2525221e181109010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d939393939386796c605346392d2013060000000000000000000000000000000000000000000000000000061019232d364044505c666d79839096a1a69f9c959b9ea5a0958f82786d605b51473d342a20160c030000000000000000000000000b151f2931393e424446464646464646463f3e3a352d251b0e0a131313131313131312080806020000000000000000000000000000000000000000000000000000000000000000050b10141617202020201b1a18140f0801000000000000070d1316191920202020191816120d0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9a9f9f9f9386796c605346392d20130600000000000000000000000000000000000000000000000000000007111b2428343f4a545d676e7a849197a29f9f9f9f9fa19791837a6d665c50493f352c22180e0500000000000000000000000000030d171f272d333637393939393939393932312e29231b130900060606060606060606000000000000000000000000000000000000000000000000000000000000000000000000000004080a0a131313130e0e0b080300000000000000000002070a0c0d131313130c0b0906010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1a2734414d5a6774808d9aa7ac9f9386796c605346392d20130606060606060600000000000000000000000000000000000000000000091217232e38424b555e686e7c85929893939393939992857b6e685d544a3f372d231a0f06000000000000000000000000000000050d151c2226292a2d2d2d2d2d2d2d2d2625221e18110901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002081a2734414d5a6774808d9a9f9f9f9386796c605346392d201313131313131313070704010000000000000000000000000000000000000006111c263039434c565f6a6f7d8686868686868686867d6f695f564c42382e251b11080000000000000000000000000000000000030b11161a1d1d2020202020202020191816120d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010406070a0d0f11121313131211100e0c0908060300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13192734414d5a6774808d939393939386796c605346392d2014202020202020201413110d08020000000000000000000000000000000000000a141e28313b444e57606b6f7979797979797979796f6b60574d433a30261c13090000000000000000000000000000000000000000050a0e101113131313131313130c0b0906010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001070d101314171a1c1d1f1f20201f1e1d1b181615130f0a05020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b151a1e252934414d5a67748086868686868686796c605346392d20212d2d2d2d2d2d2d21201d19130c040000000000000000000000000000000000020c161f29323c454f5960636c6c6c6c6c6c6c6c6c6360594f453b31281e150a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1012181d20202326292a2c2c2d2c2c2b29282522211f1b15120e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a111720262b3035393a4c58646e7479797979797979766c5f534639292d3939393939393939392c29241e160e040000000000000000000000000000000000040d17202a333d474f54565f606060606060605f56544f473d332a1f160c0300000000000000000000000000000000000000000000000000000000000002080c10121213131313131313131313131313131313131313131313121211100e0b0907060400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f161c1d24292c2d303335373839393939383634322f2e2b26211e1a140e090300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b141b222731373a4146474a525c64676c6c6c6c6c6c6c6c645a4f433035394646464646464646463935302820160c020000000000000000000000000000000000050e18212b353d4348495353535353535353534948443d352b21180d04000000000000000000000000000000000000000000000000000000000000060d13181c1e1f202020202020202020202020202020202020202020201f1e1e1d1a18161413100c0705010000000000000000000000000000000000000000000000000000000000000000000000000000000000060c161b21272c2f35393a3d40424445464646454443413f3c3b37322d2b261f1a140d050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d151d262d333c42474c5254575a5c5e5e606060606060605f504a46413a414653535353535353535345413a32281e1308000000000000000000000000000000000000060f19232b32383b3c4646464646464646463c3b38322b23190f060000000000000000000000000000000000000000000000000000000000000710181f24282b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2a29272523201f1d1813110d080200000000000000000000000000000000000000000000000000000000000000000000000000030a111721272c3338394045474a4d4f50525253535251504e4b4947433c3a37312a251f170f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f383f444e53565e616467696a6b6c6c6b6b696663605c54524c444c525f606060606060605f524c443a3024190d0100000000000000000000000000000000000007101921272c2f30393939393939393939302f2c2721191107000000000000000000000000000000000000000000000000000000000000061019222930353839393939393939393939393939393939393939393939393938373634322f2d2c2924201e19130f0a0400000000000000000000000000000000000000000000000000000000000000000000040c151c232832383d44484b515356595c5d5f5f605f5f5e5c5b5855534e4846423c3631292117110a030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273139414950575f62686d7073767778797978777573706d66615e5650565d6c6c6c6c6c6c6c6c6c5d564c4135291d110400000000000000000000000000000000000000070f161b1f22232c2d2d2d2d2d2d2d2c23221f1b160f07000000000000000000000000000000000000000000000000000000000000020d18222b343b4144454646464646464646464646464646464646464646464645454443413e3c3a39352f2d2a251e1b150f0a0400000000000000000000000000000000000000000000000000000000000000040d161e262e343d43484f54555d606366686a6b6c6c6c6c6b696765625f5855534d46423b3328231c150c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232f39434b535b606a6e747a7d808384858686858482807c79736d68615a5d68767979797979797976685d5245392c2013070000000000000000000000000000000000000000040a0f1315162020202020202020201615130f0a040000000000000000000000000000000000000000000000000000000000000008131f29343d464c515253535353535353535353535353535353535353535353525151504d4b494745403a3936302b27201b160d070100000000000000000000000000000000000000000000000000000000030d161f2830383f444e54596063676d707375777879797978777674726f6a67615f57534d453f342e261e150c020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2934404b555c656c737b81868a8d8f9191929292918f8d8985807a716c64616d7a868686868686867a6d6054473a2d2114070000000000000000000000000000000000000000000003070909131313131313131313090907030000000000000000000000000000000000000000000000000000000000000000000c1824303b464f575d5f6060606060606060606060606060606060606060605f5f5e5d5c5a585653514b4746413a37322c272118120c040000000000000000000000000000000000000000000000000000010b151f28313a424a505860626b70757a7d80828385858686858483817e7c78736e69615e5751443f3830261e140a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18222c3845515c676d7780878e92999a9c9d9e9f9f9e9e9c9997928c857e736e616e7b88939393939386796c605346392d201306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c2835414c5761696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6a69676562605d5554524c47433c383229241d160d070000000000000000000000000000000000000000000000000007121d27313a434c545c606a6f767d8285898c8f909292939292918f8e8b8884807b756e69625b504a423830261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202c38444f59606d79818c939a9fa3aba9a8aaa29f9e9e9e9fa29e97928a80746e6f7b88959f9f9f928579655b5044372b1f120500000000000000000000000000000000000000000000010507070a0d101112131312110f0d0a07060300000000000006060606060606000000000000000000000000000000000005121e2b3844515d697378797979797979797979797979797979797979797979797878777674716f6d6765615e56544e48433d352f281f1911080000000000000000000000000000000000000000000000040e18242f39434c555d666d737c83898e9298999b9d9e9f9f9f9f9e9c9a9896918d87817b726d605c544a42382e23170d04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26323c4854606b74818e939fa4acaba39f9b979892919192939a999d9f928d80746f7c8996a2ab9e9285786b5f493f33271b0f03000000000000000000000000000000000000000002080d111314171a1d1e1f20201f1e1c1a161312100c060005070713131313131313070704010000000000000000000000000006121f2c3945525f6c78858686868686868686868686868686868686868686868685848483807e7c7a75716d68626058544e454039312b231a120a010000000000000000000000000000000000000000020c16202935404b555d676d78808790959b9fa2a9a19e9c9b9a9a9b9d9fa3a8a19e99938e867f746d665c544a3f34281f160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5863707d89939da5afa8a199928e8a878584848586888c90959e928b7f727d8996a3ab9e9185786b5e52452d22170b0000000000000000000000000000000000000003090e13191d20212427292b2b2c2c2c2b292723201f1c17110d111314202020202020201413110d0802000000000000000000000006121f2c3945525f6c7885929393939393939393939393939393939393939399929291908f8d8b8986827e7a756f6a626058514b433d352c241b130a010000000000000000000000000000000000000008131e28323a45515d676d79828d93999fa7a39f9a97928f8e8d8e8f9092999c9ea6a49f98928b81786d665c50443e31281d130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a7683909da5afaaa1969187817d7a79787778797c7f838b919792877c7d8a97a3ab9e9184786b5e5145382b1e06000000000000000000000000000000000000060b151a1e25292d2e3134363738393938383633302d2c28231c191d20212d2d2d2d2d2d2d21201d19130c040000000000000000000006121f2c3945525f6c7885929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9f9e9d9c9a9898928f8b87827c766f6a605d554f473e362d251b1309000000000000000000000000000000000000010d1925303a44505a606d79828f949fa4a79f99928d8885838181818283868a8f949ea0a8a29f938e81786d605a50433a2f24180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c88959fabaea29891847c75706d686b6b666d6f73787e85919590837e8a97a4ab9e9184786b5e5145382b1e1205000000000000000000000000000000020a111720262b3035393a3d404344454646454442403d3a38342e2a25292d3939393939393939392c29241e160e0400000000000000000006121f2c3945525f6c7885929fabacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a5a6a6a7aaa9a7aaa39f9c99938e88827c746d67605950483f372d251b1108000000000000000000000000000000000005111d2935414c56626c75818e949fa6a69f959086817c797674747475777a7d828991969fa7a59e938d80736c61554b4035291d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546673808d99a7b1ab9f92867c6f6a64615e56545c6062666c717b8391959083909daaaa9e9184776b5e5144382b1e11050000000000000000000000000000030b141b222731373a4146474a4d505152535352514f4d4946443f38363035394646464646464646463935302820160c02000000000000000006121f2c3945525f6c7885929fabb8ada39c9998989898989898989898989898999a9b9d9fa2aaaaacaba49f9b948f8780796f6b615a51493f372d231a0f06000000000000000000000000000000000713202d3946525e68717e8b939ea6a89f948f837b746f6c6568676768676d70757c8490959fa8a59d928a7d70675d5145392f24180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667683909da9afa3998c80736a605854524c4a5153545b60696e7a8491959095a0abaa9e9184776b5e5144382b1e110500000000000000000000000000030d151d262d333c42474c5254575a5c5e5e5f5f5f5e5c5a5653504a46413a414653535353535353535345413a32281e1308000000000000000006121f2c3945525f6c7885929fabb8a79c918c8b8b8b8b8b8b8b8b8b8b8b8b8b8c8d8e909298999da0a7acaca69f9a938d847d716c625b51493f352c21180b02000000000000000000000000000005111d2935414c56616d7a85929fa5aca0968f82796e6962605b535a5b555d60636a6f7a839096a1ada49e9184796d60554b4035291d100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facac9f92867a6d61584e4746414044464a50575e686f7c87929da0a7b1aa9e9184776b5e5144382b1e1105000000000000000000000000010b151f272f383f444e53565e616467696a6b6c6c6b6b696663605c54524c444c525f606060606060605f524c443a3024190d010000000000000006121f2c3945525f6c7885929fabb2a5998c7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f80818385888c90959b9fa4acaca49f9691877e726d625b51473e332a1d140a00000000000000000000000000000713202d3946525d6874808d97a2ada59d9184796d675f575350494e4e4b51535860686d7a84919ea6ada1968c7f73675d5145392c1f130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8898a3aea99c908376685e52463c393634383a3f444d56606a73808d99a3afb7aa9e9184776b5e5144382b1e110500000000000000000000000007121d273139414950575f62686d7073767778797978777573706d66615e5650565d6c6c6c6c6c6c6c6c6c5d564c4135291d11040000000000000006121f2c3945525f6c7885929fabada094877a7272727272727272727272727273737477797c7f83888f939a9fa7afa8a19992887f726d62594f463c2f261c1106000000000000000000000000000714212e3a4754616d7a86929fa9aa9e93897c6f675d554d46443f41414045474e565e68707d8a949faba89e9285796d6053473a2f24180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996aab4a79a8d807467564c41342d2a282c2d333b444e58616e7b86929facb7aa9e9184776b5e5144382b1e11050000000000000000000000000c18232f39434b535b606a6e747a7d808384858686858482807c79736d68615a5d68767979797979797976685d5245392c2013070000000000000006121f2c3945525f6c7885929fabada094877a6d656565656565656565656565666768666c6f73777c828790959fa3ababa39a938c7f726b61584e42382d22170b02000000000000000000000005121e2a36424d5765727f8c98a2aea89b8f82756b60554b433c37332d2f35393d444c56616b7683909caaada1978a7e7164554b4035291d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a5988b7e7265584b3f30251d1c1f2228323d46525e6975828f9ba8b5aa9e9184776b5e5144382b1e1105000000000000000000000004101c2934404b555c656c737b81868a8d8f9191929292918f8d8985807a716c64616d7a868686868686867a6d6054473a2d2114070000000000000006121f2c3945525f6c7885929fabada094877a6d615858585858585858585858595a545b6062666a6f757c838c9299a3aaaca49f92877d706a5f544a3f33281e130800000000000000000000000714212d3a46535e697783909daaaca196897c6f63594f433a312b272224292c323a444f5964717e8a98a2aea99c8f8275675d5145392c1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b0a3978a7d7064574a3d312417101217202a36424d5764717e8b97a9b3aa9e9184776b5e5144382b1e110500000000000000000000040e18222c3845515c676d7780878e92999a9c9d9e9f9f9e9e9c9997928c857e736e616e7b88939393939386796c605346392d2013060000000000000006121f2c3945525f6c7885929fabada094877a6d61544c4c4c4c4c4c4c4c4c4c4c4d4a5053555860626a6f787f879298a2aaafa39992867c6e665b50443a3025190d01000000000000000000000815212e3b4854616e7b8795a0abab9e9184786c6053463d31281f1b17181d2029323e4753606d7985929facac9f92867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5afa296897c6f6356493c30231609060e1a25303b4855626e7b8897a2adaa9e9184776b5e5144382b1e1105000000000000000000000a15202c38444f59606d79818c939a9fa3aba9a8aaa29f9e9e9e9fa29e97928a80746e6f7b88959f9f9f928579655b5044372b1f12050000000000000006121f2c3945525f6c7885929fabada094877a6d6154473f3f3f3f3f3f3f3f3f40403f4446484e54585f666d737e869298a2aeaba2989083786c60564c41362a1e1308000000000000000000000b1825313e4b5864717e8b97a7b1a79a8d8074655b5044372b1f160f0b0c1017202c3845515d6775828f9ca8aea399897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295897c6f6256493c2f231609000913202d394653606c7985929fabaa9e9184776b5e5144382b1e1105000000000000000000030f1b26323c4854606b74818e939fa4acaba39f9b979892919192939a999d9f928d80746f7c8996a2ab9e9285786b5f493f33271b0f030000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a3232323232323232332d3338393c43474e545c606c707d86929fa4aeaa9f958b7e72685e52463a2f24190d000000000000000000030f1b27333f49536874818e9ba7b4aa978a7d716453493f3327190d04000005101d2935404b5566727f8c99a5b5ab998c807366594d4033261a07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f2216090005121f2b3744505b657784919daaaa9e9184776b5e5144382b1e110500000000000000000006131f2b37434e5863707d89939da5afa8a199928e8a878584848586888c90959e928b7f727d8996a3ab9e9185786b5e52452d22170b000000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a2e252525252525252622282b2d32373c424a505a616b717e8a929da8b1a79f92857a6d61564c4135291b1106000000000000000005121f2b3744505b657783909daaaea298877b6e6154483b2d221708000000000c18242f3d4a5663707d8996abb5a89b8e8275685b4f422f24180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900030f1b27333f49536a7683909da9aa9e9184776b5e5144382b1e11050000000000000000000815212e3b47535f6a7683909da5afaaa1969187817d7a79787778797c7f838b919792877c7d8a97a3ab9e9184786b5e5145382b1e06000000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a2e2119191919191919171c1f20272b30383f445059616c73808d96a0acada2978d8074685d5245382d22170b00000000000000000613202d394653606c7985929facac9f928579695e53463a2d211406000000000715212e3b4854616e7b8799a3aeaa9d9184776a554b4035291d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900000b17222d424f5c6975828f9ca8aa9e9184776b5e5144382b1e11050000000000000000000916222f3c4955626f7c88959fabaea29891847c75706d686b6b666d6f73787e85919590837e8a97a4ab9e9184786b5e5145382b1e12050000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a2e21140c0c0c0c0c060b0f12131b1e262e343e47505a606d7984919ea6b0a99f92857a6d6053493f33271b0f03000000000000000814212e3b4754616e7a8798a2aeaa9d9084776a574d42362a1e1205000000000613202d394653606c7986929facac9f928579675d5145392c2013060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f2216090000061c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000000000000000003101c28343f4a546673808d99a7b1ab9f92867c6f6a64615e56545c6062666c717b8391959083909daaaa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a2e21140700000000000003060a0c151c2328353e45515c66707d8a949fabaea2988c7f72655b5044372b1f1205000000000000000916222f3c4955626f7c8895aab4a99c8f8276695c4f4331251a0e020000000006121f2b3844505b667884919eabaea298867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000000000000000006121f2b3844505c667683909da9afa3998c80736a605854524c4a5153545b60696e7a8491959095a0abaa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a2e211407000000000000000000030a1117232834404b54616b76828f9ca8b2aa9e9184786c605346392d201308000000000000000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b090000000000030f1c28333f4a546a7784909daab4aa94877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000713202d3a4653606d7986929facac9f92867a6d61584e4746414044464a50575e686f7c87929da0a7b1aa9e9184776b5e5144382b1e11050000000000000003121f2c3945525f6c7885929fabada094877a6d6154473a2e21140c0c0c0c0c0c0c0c07060400061118232e39424f5964707d8a96a1acaca096887c6f6255493c3024190d010000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e0100000000000b17222d43505d697683909ca9aea195887b6e6255483b2f22140c0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000815222e3b4855616e7b8898a3aea99c908376685e52463c393634383a3f444d56606a73808d99a3afb7aa9e9184776b5e5144382b1e11050000000000040a0f131f2c3945525f6c7885929fabada094877a6d6154473a2e211919191919191919191413110d0807121d27303e4653606d7984919eabb2a8998c7f7366564c4135291d11040000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000000061d293643505c6976838f9ca9afa295887c6f6255493c2e261e170f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000a1623303d495663707c8996aab4a79a8d807467564c41342d2a282c2d333b444e58616e7b86929facb7aa9e9184776b5e5144382b1e110500000000060e151b1f212c3945525f6c7885929fabada094877a6d6154473a2e2626262626262626262621201d19130c0b151f2b3844505c6673808c99aab3a99d908376685d5245392c2013070000000000000b1825323e4b5865717e8b98a4b1a69a8d8073675a4d4034271a0d010000000003101c2936434f5c6976828f9ca9afa295897c6f6256493f38302921180f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000b1724313e4a5764717d8a97a4b0a5988b7e7265584b3f30251d1c1f2228323d46525e6975828f9ba8b5aa9e9184776b5e5144382b1e110500000006101820262b2e2f3945525f6c7885929fabada094877a6d6154473a33333333333333333333332d2c29241e160d101c28343f4a54636f7c8998a2aeac9f93867a6d6054473a2d2114070000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000003101d293643505c6976838f9ca9aea295887b6f6256504a423b332a21180f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000b1825323e4b5865717e8b98a4b0a3978a7d7064574a3d312417101217202a36424d5764717e8b97a9b3aa9e9184776b5e5144382b1e11050000040e18222a32373b3c3f45525f6c7885929fabada094877a6d6154473f3f3f3f3f3f3f3f3f3f3f3f3a39352f281f160b17232e3a4653606d7985929fabafa499897c6f6356493c302316090000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e010000000003101d2a3643505d697683909ca9aea195887b6e68605c544d453c332a21170c03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1825323f4b5865727e8b98a5afa296897c6f6356493c30231609060e1a25303b4855626e7b8897a2adaa9e9184776b5e5144382b1e110500000a15202a343c4347494c4c525f6c7885929fabada094877a6d61544c4c4c4c4c4c4c4c4c4c4c4c4c4745413a31281e13121f2c3844505c6676828f9ca9b5ab988b7e7265584b3f3225180c0000000000000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b08000000000004111d2a3744505d6a7783909daab3a79a8d807a736d665e574e453c33291e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295897c6f6256493c2f231609000913202d394653606c7985929fabaa9e9184776b5e5144382b1e110500030f1b26323c464e53555959595f6c7885929fabada094877a6d61595959595959595959595959595954524c433a2f2419101c28343f4a546774808d9aa7b3a79a8d8074675a4d4134271a0e0000000000000916232f3c4956626f7c8995abb5a89c8f8275695c4f423025190e020000000005111d2935414c566b7784919eaab7a99d928d867f786e695f574e453b30271c12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f2216090005121f2b3744505b657784919daaaa9e9184776b5e5144382b1e11050006131f2b37434e585f62666666666c7885929fabada094877a6d666666666666666666666666666666605d564c4135291d1117232e3f4b5865727e8b98a5b1a99c8f8276695c4f4336291c100000000000000815212e3b4854616e7b8799a3afaa9d9083776a564c41362a1e1105000000000713202d3946525e687985929facafa59e9b98928c837b6e6a5f574d42392e23180c0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900030f1b27333f49536a7683909da9aa9e9184776b5e5144382b1e1105000815212e3b47535f6a6f72727272727885929fabada094877a727272727272727272727272727272726d685d5245392c20131723303d4a5663707d8996a3b0aa9d9083776a5d5044372a1d110000000000000713202d3a4653606d7986929facab9f928578685e5246392d201407000000000714212e3a4754616d7a8798a2aeaa9e938f8b929590847c6e695e544a4034281e130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900000b17222d424f5c6975828f9ca8aa9e9184776b5e5144382b1e1105000916222f3c4955626f7c7f7f7f7f7f7f86929facb3a6998c807f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7a6d6054473a2d211416222f3c4955626f7c8895a2afaa9d9184776a5e5144372b1e1100000000000006121f2c3844515c667784919daaada297877a6e6154473b2e21140a00000000091623303c4956636f7c8996aab4a89b8f817e85909591857b6e665c51443a3025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f2216090000061c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000c1825323f4b5865727e8b8c8c8c8c8c9298a3aeb4a89c928c8c8c8c8c8c8c8c8c8c8c8c8c8c8c8c877b6e6154483b2e211515222f3b4855626e7b8895a1aeab9e9185786b5e5245382b1f1200000000000004101c2834404a546875828e9ba8b3a9968a7d7063574a3d31261b0d040000030f1b27333f495365717e8b98a4b5ab998c7f737b8390959083786d60564c4135291d1105000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000c1825323f4b5865727e8b98999999999fa3aab4b9aea49c99999999999999999999999999999994877b6e6154483b2e211515212e3b4854616e7b8794a1aeac9f9285796c5f5246392c1f13000000000000000c18232e3f4c5865727f8b98a8b2a6998d807366584e43372b1f15100c0b0f141f2b3744505b6574818e9ba7afa399897d706e798390958c7f73685e5246392d20150a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000c1825323f4b5865727e8b98a5a5a5a5acaeb4bcbfb6aea8a6a5a5a5a5a5a5a5a5a5a5a5a5a5a194877b6e6154483b2e211514212e3b4754616e7a8794a1adac9f9285796c5f5246392c1f13000000000000000716222f3c4955626f7c8896a1acaa9d9083776a5f53473c31271f1c18171b1f2630394653606c7884919eabac9f92867a6d676e7b869292857a6d6154473c32271b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000c1825323f4b5865727e8b989f9f9f9fa0adb3bcbab0a8a3a09f9f9f9f9f9f9f9f9f9f9f9f9f9f94877b6e6154483b2e211515222e3b4855616e7b8894a1aeab9f9285786c5f5245392c1f12000000000000000613202d394653606c7884919eabaca095887c6f62584e4339302c282322272b2f38424d57626f7c8996a1adaa9c8f8376675f6973808d988c807366584e43372b1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000c1825323f4b5865727e8b939393939393a2a9b3b3a89e9794939393939393939393939393939393877b6e6154483b2e211515222f3c4855626f7b8895a2aeab9e9185786b5e5245382b1f120000000000000005121f2b3744505b6573808d99a4afa79a8e81746a5f554b423c38342e2d33373b414a545f6974818e9ba8aea2988b7e726557626e7b88969184776a6054473b2e2215080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000c1825323f4b5865727e8686868686868997a2adafa3978c87868686868686868686868686868686867b6e6154483b2e21151623303d495663707c8996a3afaa9d9184776a5e5144372b1e1100000000000000030f1b27333f4953616e7b87939fabac9f92877c6f675c544e46444041413f44464c535c666e7b86929facaa9f92867a6d60575f6a78849196887c6f6255493c2f2216090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000b1824313d4a56626d7279797979797985929fabada094877a7979797979797979797979797979797976695e53463a2d21141825313e4b5864717e8b97a4b1a99c8f8276695c4f4336291c1000000000000000000b17222d3847535f6975828f99a3aea3999083796d665f5753514a4e4e495053565e656d78829099a3aea2988d81746861646c6c75828f988b7f7265584c3f3225190c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000915222e3a45515b62656c6c6c6c6c7885929fabada094877a6d6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c5e574d42362a1e121b27333f49536673808c99a6b3a79a8e8174675b4e4134281b0e000000000000000006111b2b37424d57626e7b87929fa6ab9f958f81786e6a63605c545b5a535b6062686e77818e949faba69f92867b6e616c70797979818e9a8e8174675b4e4134281b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050005111d29343f49515658606060606c7885929fabada094877a6d6160606060606060606060606060605f534d453b31251a121f2b3744505b6575828f9ca8b2a6998c7f7366594c403326190d0000000000000000000e1a26313c47535f6a73808d949fa8a79e938f837b74706d6668676768656c6f737a828e939da6a89f948c7f726964707d8686868e939c8f8376695c504336291d100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500010c18232d373f454a4b5353535f6c7885929fabada094877a6d6154535353535353535353535353534846423b33291f1413202d394653606c7985929eabb2a8968a7d7063574a3d3024170a00000000000000000009151f2b37424e57606d78829096a0a7a69e959087817c79767574747576797c80868f949da5a8a0969082786d6064707d8a93939b9e9d9083776a5d5044372a1d110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5aca295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000006111b242d343a3d3f4646525f6c7885929fabada094877a6d6154474646464646464646464646463b3a3631292117101c28343f4a54626f7c8897a1adaca096877a6d6154473a2e211407000000000000000000030e1a26313c44515c666e7a8490959ea5a79f99928e898583828181818385888d92989ea6a59e9691847a6d665c64707d8a979fa8aa9e9184776b5e5144382b1e110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b989f9f9f95887c6f6255493c2f22160900020f1c2935424f5c6875828f9b9f9f9e9184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e110500000009121b23292e31323945525f6c7885929fabada094877a6d6154473a39393939393939393939392e2d2a251f170f18212b3844505c6673808c99a9b3aa9d918477685d5246392d201307000000000000000000000915202834404a545e686e7b838e939da0a7a39f9b9892908e8e8d8e9092979a9fa2a8a09e938f847b6e685e5464707d8a97a3acab9e9184786b5e5145382b1e120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b9393939393887c6f6255493c2f22160900020f1c2935424f5c6875828f939393939184776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e1105000000000911181d22242c3945525f6c7885929fabada094877a6d6154473a2e2d2d2d2d2d2d2d2d2d2d21211e1a140d162028343f4a54606d7884919eabb2a89a8d807367564c4135291d110500000000000000000000030c18232e39424c565e696e79818990959b9fa2aaa29f9d9b9a9a9b9c9ea1a9a39f9c96918a827a6e695e565764707d8a979f9f9f9e9184786b5e5145382b1e120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f868686868686867c6f6255493c2f22160900020f1c2935424f5c68758186868686868684776b5e5144382b1e110500000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000060c11151f2c3945525f6c7885929fabada094877a6d6154473a2e212020202020202020201514120e0e171f28323a44505c66707d8a96a1acaca196897c6f6256493c3024190d01000000000000000000000007121c27303b444d565e676d747d83898e9298999b9d9e9f9f9f9f9e9d9b9999928f8a847e756d685e574d5764707d8a93939393939184786b5e5145382b1e120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4a56626d7279797979797979766a5f53473b2e21150800020e1b2834414d59656f757979797979797772675c4f43372a1d110400000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000000105121f2c3945525f6c7885929fabada094877a6d6154473a2e21141313131313131313080a0f141a2029313a444d57606d7883909da8b2a99e9184786c605346392d201308000000000000000000000000000b151e29323b444d555d606b70777d8285898c8e90919292929291908f8c8a86827e78716c605d564d4a5764707d8686868686868684786b5e5145382b1e120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222e3a46515b62656c6c6c6c6c6c6c625f584e43372b1f130600000c1925313d49545d65686c6c6c6c6c6c6b6760564b3f33271b0e0200000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a2e21140c0c0c0c0d080d1114141b1f262a323b434c565f69727f8b95a0acada2978b7f72655b5044372b1f120500000000000000000000000000030c172029323b434b515960636b7075797d7f82838585868685858382807d7a75716d66615a524c434955616c70797979797979797872685c5043372a1d1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121e29343f495156586060606060606055534e463c32261b0f0300000915212c37424b54595c6060606060605e5c564e44392e23170b0000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a2e211919191919191a191e2021272c31363e444d555d686e7b86929fa7b1a89f92857a6d6053493f33271b0f030000000000000000000000000000050e172029313940454f54596063676d70737576787879797978777573706d6764605c545045413a44505a61646c6c6c6c6c6c6c6b6860564b3f33271b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18232d373f464a4c535353535353534947433c342a20150a00000004101b26303942494d4f535353535353514f4b443c32281d12060000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a2e2525252525262627252a2d2e32383b42464f565e676d7a839098a2aeaba0968c7f72675d5141382d22170b00000000000000000000000000000000050e171f272f353d44484f55555d606366686a6b6c6c6c6c6b6a686663605d5553504a423e35333e48505557606060606060605e5c564e443a2f23170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b252d343a3e3f464646464646463c3b37322a22180e040000000009141e2730373d414246464646464644433f39322a20160c010000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d6154473a3232323232323233343036393b3d44484d535961696e79829095a0aaafa4999184796d60554b412f261b11060000000000000000000000000000000000050d151d242933383d44484b515356595b5d5e5960636c6c6c6c64615a514b46443f3830292c363e44494a5353535353535351504b443c32281d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b23292e3132393939393939392f2e2b26201810060000000000020c151e262c3134353939393939393837332e2820180e04000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d6154473f3f3f3f3f3f3f3f4040424146474a4f54575f616b707b8390949fa7b0a69f93877d70665c51433a2f1d140a00000000000000000000000000000000000000030b121821272c3338394045474a4c49505a626b7078797979716c6155493a38342e261e232c33393c3d4646464646464645433f3a322a20160c010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010911181e2224252d2d2d2d2d2d2d22211f1b150e0600000000000000030c141b212528292d2d2d2d2d2d2b2a27231d160e0600000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d61544c4c4c4c4c4c4c4c4c4c4d4e4c525457596063696e757d8590959fa6b0a69e948c7f736b60544b4031281d0b02000000000000000000000000000000000000000001070c161c21272c2f35383b434b535b606c717d858686867e7164574a3e3128231c141a22282d3031393939393939393837332f2820180f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d12151819202020202020201615130f0a0400000000000000000002091015191b1c2020202020201e1d1b17120c040000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160906060f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d6158585858585858585859595a5b565e6163676b6f747b818a91979fa7aea69f948f82786c60594f42392e1f160c0000000000000000000000000000000000000000000000050b10161c232c343c444d555d656c737e8792979083796d6053473a2d2017110a10171c2023242d2d2d2d2d2d2d2b2a27231d160f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090b0c13131313131313090806030000000000000000000000000004090c0e0f13131313131311110e0b0601000000000000000000000000000c1925323f4c5865727f8b98a5aca295887c6f6255493c2f22161313130f1c2935424f5c6875828f9ba8aa9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a6d656565656565656565656566676869686e7074777c81878e939ea1a9ada49d948f82796d665b50473d30271d0d040000000000000000000000000000000000000000000000040c151c2328353e464e565e676d77808b929992867b6e675c5145382c1f130600050b10141617202020202020201e1d1b17120c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b989f9f9f95887c6f6255493c2f22202020201c1c2935424f5c6875828f9b9f9f9e9184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabada094877a72727272727272727272727273737576787a7d8084898e92999ea5ada9a19e928d82796d675c544a3f352b1e150b0000000000000000000000000000000000000000000000060d161e262e343f474f585f686e79818d929f938a7e71695f554b4034291c100400000004080a0a1313131313131312110f0b0701000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0e111212131212100e0c0808060200000000000000010406070c101213131211100e0b0a0804000000000000000c1925323f4c5865727f8b9393939393887c6f6255493c2f222d2d2d2d28272935424f5c6875828f939393939184776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabb2a5998c7f7f7f7f7f7f7f7f7f7f7f7f7f7f80818385878a8d91969b9fa3abaca49f97928a80786d675d554b42382d23190c0300000000000000000000000000000000000000000000070f171f2830383f445159616a6f7a838f939c958e81746c61574d43392f23180c0000000000000000060606060606060504020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191514120e090400000001080d111314191c1f1f201f1e1d1a171714110c0500000000000c1925323f4c5865727f868686868686867c6f6255493c2f393939393935343135424f5c68758186868686868684776b5e5144382b1e11050000000000000006121f2c3945525f6c7885929fabb8a79c918c8b8b8b8b8b8b8b8b8b8b8b8c8c8d8e8f9197969a9ea0a8acaca49f9a938e857e736d665d554b43392f261c1107000000000000000000000000000000000000000000000710182129313a424a505b626b707c8490959e989083796d605a50453c31271d12070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e212225282a2b2c2c2c2b2a282522211e1a15100c07040c13191d202126292b2c2c2c2b29272423211c171008000000000b1824313e4a56626d7279797979797979766a5f53473b39464646464642403d37414d59656f757979797979797772675c4f43372a1d11040000000000000006121f2c3945525f6c7885929fabb8ada39c99989898989898989898989898999a9b9c9ea1a9a7aaa9a8a19e9a938e87817a716c605c544b433930271d140a00000000000000000000000000000000000000000000040e18222a333b434c545c606d727d8691969f9f92867b6e675c51483e332a1f150b0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c161b1f262a2d2e31353738393939383735322f2e2b261f1c18120d161e24292c2d32363839393838363431302d28221a12080000000915222e3a46515b62656c6c6c6c6c6c6c625f584e43404553535353534f4d48413d49545d65686c6c6c6c6c6c6b6760564b3f33271b0e020000000000000006121f2c3945525f6c7885929fabacacada7a5a5a5a5a5a5a5a5a5a5a5a5a5a6a6a8a9a8a6aba39f9d9996918d87827c746d68615a504a423931271e150b02000000000000000000000000000000000000000000000a15202a343c454d565d666d747f879298a19d938a7e71695f554b40362c21180d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121821272c31363a3b3e4144454546454543413f3b3a37312c29231d1a1f282f35393a3f43454646454443413e3c39332c241a1005000006121e29343f495156586060606060606055534e46434b515f606060605b59534b41424b54595c6060606060605e5c564e44392e23170b000000000000000006121f2c3945525f6c7885929f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9fa39f9f9e9e9c9b9a979992908c8984807b756f6a615e5650443f3830271f150c0300000000000000000000000000000000000000000000030f1b26323c464e575f686d78808c9399a2a0958e81746c61574d43392f241a0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c151d232832383b4246484b4e505152535252504e4c4847423c38342f27232c313a4145474c4f5252535251504d4a49453e362c22170c0000010d18232d373f464a4c53535353535353494743404b555d6c6c6c6c6c68655d53484342494d4f535353535353514f4b443c32281d1206000000000000000006121f2c3945525f6c788592939393939393939393939393939393939398929291918f8e8d8b888683807c79736e69625f58524c443e342e261e150d03000000000000000000000000000000000000000000000006131f2b37434e585f696e7a828d929fa4a2989083796d605a50453c31271d1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161e272e343d43484d5355585b5d5e5f5f5f5e5d5b5855534d474540393128353e434c5154595c5e5f5f5f5e5c5a575550483e33281c1104000006111b252d343a3e3f464646464646463c3b3945515d677679797979756f6556544f47433d4246464646464644433f39322a20160c01000000000000000006121f2c3945525f6c788586868686868686868686868686868686868686868585848381807e7c7976736f6d66625f57534e46413a3228231c140c030000000000000000000000000000000000000000000000000815212e3b47535f6a6f7b838f949da4a59f92867b6e675d51483e332a1f150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28303940454f54575f6164686a6b6c6c6c6b6a6865625f5753514b433e343e474f555d6065696b6c6c6b6b696764615a5045392d21140800000009131b23292e3132393939393939392f2d3a4753606d7986868686817568636059544e463d3539393939393837332e2820180e0400000000000000000005121e2b3844515d6973787979797979797979797979797979797979797979787877767573716f6d676663605c54534d47433c3530282017110a02000000000000000000000000000000000000000000000000000916222f3c4955626f7c85919593939393938a7e71695f554b40362c21180d0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313a424b51596063696e71747778787978787674726e6965605c5550443f474f5961676d727678797978777674716c6155493c3023170a000000010911181e2224252d2d2d2d2d2d2d222d3a4753606d7a8693938e8176736f6b6260584f473d32282d2d2d2b2a27231d160e060000000000000000000003101c2835414c5761696c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6b6b6968676462605c555653504a47423c373129251e160e060000000000000000000000000000000000000000000000000000000c1926323f4c5965727f868686868686868681746c61574d43392f241a0f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c18242f3a434b545c606b6f757b7e8183848586858583817f7b77726d67615a504a4f59616b707a7f82848586858483807e7164574a3e3124170b0000000000060d1215181920202020202018202d3a4753606d7a86939f928682807c776f6a60594f443a302419201e1d1b17120c040000000000000000000000000c1824303b464f575d5f606060606060606060606060606060606060605f5f5e5e5c5b5a585553514b4946443f3837312b262019130c04000000000000000000000000000000000000000000000000000000000b1825313e4a57626d727979797979797979746f645a50453c31271d1208000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e2935404b555d666d747c82878b8e909192929291908e8b88847e79706c605c5454606b707d858c8f91929292918f8d83776a5d5144372a1e110000000000000106090b0c1313130d151d23292d3a4753606d7a86939798928f8d89837c706b60564c4135291d1111110e0b06010000000000000000000000000008131f29343d464c51525353535353535353535353535353535353535353525251504e4d4b494745403c3a38342e2b261f1b150d080200000000000000000000000000000000000000000000000000000000000916222e3a46515b62656c6c6c6c6c6c6c6c67645c53483e332a1f150b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303845515d676d7881898f939a9b9d9e9f9f9f9e9d9b9895918b857d746d665c5c66707d8792979c9e9f9f9e9e9c9084776a5d5144372a1e11000000000000000000000006010b151f272f34383a4753606d7a86888b8f939c999590867d70685d5245392c201307040200000000000000000000000000000000020d18222b343b41444546464646464646464646464646464646464646464545444342403e3c3a38342f2d2b28231c1a150f0a040000000000000000000000000000000000000000000000000000000000000006121e29353f4951575960606060606060605b58534a41362c21180d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3842505a606d79828d929c9fa4acaaa39f9d9c9b9c9e9fa09d97918a81786d67606d79849199a2a9a9a29f9895949084776a5d5144372a1e1100000000000000000000000007121d2731394045474a515d67767b7c7e828d929c9f9892857a6d6054473a2d211407000000000000000000000000000000000000000610192229303538393939393939393939393939393939393939393939393838363534312f2d2c2923201f1c17110e0903000000000000000000000000000000000000000000000000000000000000000000010d18232d373f464a4c53535353535353534e4c4841382f241a0f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626c75818e949da4aca79f9d9892908f8f8f9193999a9f9e938e81796d64717d8a96a0ababa297928b88878883776a5d5144372a1e110000000000000000000000000c18232f39434b51535754555e696e6f7175808d99aaa1978c7f7266594c3f3326190c00000000000000000000000000000000000000000710181f24282b2c2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2c2c2b2b2928272522201f1c181312100b060000000000000000000000000000000000000000000000000000000000000000000000000007111b252d353a3e3f464646464646464641403c362f261d1209000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c66717e8b939ea6aea49d95908a86838282838486898d92989f938e81756d75828e9ba8afa39992857f7b7a7b7d706356493d3023160a000000000000000000000004101c2934404b555c6064615e575e6162646e7b8895a1a99c8f8376695c504336291d10030000000000000000000000000000000000000000060d13181c1e1f20202020202020202020202020202020202020201f1f1e1d1b1a18161413100c070603000000000000000000000000000000000000000000000000000000000000000000000000000000000a131b23292e313239393939393939393433302b251d140b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7884919ea5afa69d928d837d7977757576777a7d81858d9299938c7f727885919eabac9f92877c726e6e6e706b6054483b2f221609000000000000000000000006131f2c3845515c676d716d686867666668707c8996a3aa9d9184776a5e5144372b1e110400000000000000000000000000000000000000000002080c1012121313131313131313131313131313131313131313121211100f0d0b090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a11181e2225262d2d2d2d2d2d2d2d282724201a130b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495364717e8b96a1acab9e948d8078706d67696869676d70747a8087919593877c7a8796a1ada89c8f82756a6261626360594f44382c20130700000000000000000000000714202d3a4753606d797d7a7775747373757a83909da9ab9d9083766a5d5043372a1d10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070d1216181920202020202020201b1a18140f080100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6575828f9ba8afa4998f82776d66605c555c555d6063686d737c83909490837c8895a9b2a5988b7f726558545556544f473d32271b100400000000000000000000030f1c28333f4a5463707d8a868482807f80818690959faba3998d8174675a4e4134271b0e01000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0e111212131212100e0c0808060200000000000000010406070c101213131211100e0b0a080400000000000000000000000000000000000000000106090b0c13131313131313130e0d0b080300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929eabac9f93877b6e655c54514b4f4b5153565d616a6f7a8290959083909da9afa396897c70635649484948443d352b21160b000000000000000000000006121f2b3844505b6674818e93908e8d8c8c8e92989fa7a09d92877c6f6255493c2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191514120e090400000001080d111314191c1f1f201f1e1d1a171714110c0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8897a1ada99d9083766a5f534a4540424045474c52585f686d7983909590959fabaea195887b6e6255483b3d3b38322b23190f0400000000000000000000000613202d394653606c798591989b9b9a99999b9f9e9c9996918a7f726a5f53473b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e212225282a2b2c2c2c2b2a282522211e1a15100c07040c13191d202126292b2c2c2c2b29272423211c171008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a9b3a79a8d807467574e4138342f35393a41464e565d676e7b86929d9fa7b1aea194877b6e6154483b302f2c27211911070000000000000000000000000815222e3b4855616e7b86898c8e909192929292918f8d89847d726d62584e43372b1f13060000000000000000000000000000000000000000000000000000000000000000000000000000070c161b1f262a2d2e31353738393939383735322f2e2b261f1c18120d161e24292c2d32363839393838363431302d28221a12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a5998c7f7266594c3f2f2824292c30353c444c555f69727f8b96a1acb9aea194877b6e6154483b2e21201b160f07000000000000000000000000000814212d3a47535f696e787c7f818384858686858482807c78706c625b51463c32261b0f03000000000000000000000000000000000000000000000000000000000000000000000000030b121821272c31363a3b3e4144454546454543413f3b3a37312c29231d1a1f282f35393a3f43454646454443413e3c39332c241a100500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a5988c7f7265594c3f2e23181d1f2429323a434d57606d7984919eacb6aea194877b6e6154483b2e2115100b04000000000000000000000000000006121e2b37424d575f666d6f7275767878797978777673706c66615a51493f342a20150a000000000000000000000000000000000000000000000000000000000000000000000000040c151d232832383b4246484b4e505152535252504e4c4847423c38342f27232c313a4145474c4f5252535251504d4a49453e362c22170c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96abb5a6998c807366544a3f3428211e1a192028313b45515c66727f8c9aa4afaea194877b6e6154483b2e21150800000000000000000000000000000000020e1a26313c454d545c606365686a6b6c6c6c6c6b696663605b5450473f372d22180e040000000000000000000000000000000000000000000000000000000000000000000000040d161e272e343d43484d5355585b5d5e5f5f5f5e5d5b5855534d474540393128353e434c5154595c5e5f5f5f5e5c5a575550483e33281c1104000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8899a4afa89b8e8275665c50443a322d2a262727262834404b54616e7b87939facaea194877b6e6154483b2e211508000000000000000000000000000000000009151f2a333c424a505356595b5d5e5f5f5f5f5e5c5a5653504a423e352d251b10070000000000000000000000000000000000000000000000000000000000000000000000010c161f28303940454f54575f6164686a6b6c6c6c6b6a6865625f5753514b433e343e474f555d6065696b6c6c6b6b696764615a5045392d211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facab9e9285796d60564c443d3a3631343333322e3946525e697784919daaaea194877b6e6154483b2e2115080000000000000000000000000000000000030e18212a30383f4446494c4e505152535352514f4d4946443f382f2c231b130900000000000000000000000000000000000000000000000000000000000000000000000007131d28313a424b51596063696e71747778787978787674726e6965605c5550443f474f5961676d727678797978777674716c6155493c3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677783909dabada1978a7e71685d564f484642424140403f3f3f424d566875818e9ba8aea194877b6e6154483b2e211508000000000000000000000000000000000000060f181e262e34383a3c3f424345454646454443403d3938332d261d1a1109010000000000000000000000000000000000000000000000000000000000000000000000030c18242f3a434b545c606b6f757b7e8183848586858583817f7b77726d67615a504a4f59616b707a7f82848586858483807e7164574a3e3124170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414b556673808c99a3afa99e91847a6d68605955534d4f4d4d4c4c4c4b4b4d5a6774808d9aa7aea194877b6e6154483b2e21150800000000000000000000000000000000000000060c151c23282c2d303235373839393939383633302d2b28221c140b08000000000000000000000000000000000000000000000000000000000000000000000000000a151e2935404b555d666d747c82878b8e909192929291908e8b88847e79706c605c5454606b707d858c8f91929292918f8d83776a5d5144372a1e1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3b4854616e7b86929fa8aca19690827a706b65615f575b5a5a5959585858585a6673808d99a6aea194877b6e6154483b2e2115080000000000000000000000000000000000000000030a11171c1f202326282a2b2c2c2c2c2b292723201f1c17110a020000000000000000000000000000000000000000000000000000000000000000000000000006111c26303845515d676d7881898f939a9b9d9e9f9f9f9e9d9b9895918b857d746d665c5c66707d8792979c9e9f9f9e9e9c9084776a5d5144372a1e1100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e6974818d96a1aaa89f9490847d76726e696a686766666565656564646673808d99a6aea194877b6e6154483b2e21150800000000000000000000000000000000000000000000060c10121316191b1d1e1f20201f1e1c1a1613120f0b060000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3842505a606d79828d929c9fa4acaaa39f9d9c9b9c9e9fa09d97918a81786d67606d79849199a2a9a9a29f9895949084776a5d5144372a1e11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d57606d7a849198a1a9a69f969189837e7b7876757473737272727171717173808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000030607090c0f10121213131211100d0a0606030000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626c75818e949da4aca79f9d9892908f8f8f9193999a9f9e938e81796d64717d8a96a0ababa297928b88878883776a5d5144372a1e110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b45525d686f7c8692979ea6a8a09e95908b8885838280807f7f7f7e7e7e7e7d7d818e9ba8aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c66717e8b939ea6aea49d95908a86838282838486898d92989f938e81756d75828e9ba8afa39992857f7b7a7b7d706356493d3023160a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2935414c565f6a6f7c858f949c9fa4a79f9d989792908e8d8d8c8c8b8b8b8b8a8a8a8e939eaaaea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000010406070a0d0f11121313131211100e0c09080603000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7884919ea5afa69d928d837d7977757576777a7d81858d9299938c7f727885919eabac9f92877c726e6e6e706b6054483b2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d19242f3a434e58606a6f7a82898f939a9c9fa2a9a29f9d9b9a999998989898979797979b9ea5afaea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000001070d101314171a1c1d1f1f20201f1e1d1b181615130f0a0502000000000000000000000000000000000000000000000000000000030f1b27333f495364717e8b96a1acab9e948d8078706d67696869676d70747a8087919593877c7a8796a1ada89c8f82756a6261626360594f44382c2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313c464e5860686e757d82878c8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abaeb6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000050b1012181d20202326292a2c2c2d2c2c2b29282522211f1b15120e09030000000000000000000000000000000000000000000000000005121f2b3744505b6575828f9ba8afa4998f82776d66605c555c555d6063686d737c83909490837c8895a9b2a5988b7f726558545556544f473d32271b100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343c464e565e616b70767b7f8385888a8c8d8f8f9090919191919292929292999ca4aeaea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000040a0f161c1d24292c2d303335373839393939383634322f2e2b26211e1a140e090300000000000000000000000000000000000000000000000613202d394653606c7985929eabac9f93877b6e655c54514b4f4b5153565d616a6f7a8290959083909da9afa396897c70635649484948443d352b21160b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18222b343c444c52596063696e7276797c7d7f81828383848484848585858585868d929ca8aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000060c161b21272c2f35393a3d40424445464646454443413f3c3b37322d2b261f1a140d05000000000000000000000000000000000000000000000815222e3b4855616e7b8897a1ada99d9083766a5f534a4540424045474c52585f686d7983909590959fabaea195887b6e6255483b3d3b38322b23190f04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a323b41464f54575f6165666d6f71737475767677777778787878797979808d99a6aea194877b6e6154483b2e21150800000000000000000000000000000000000000000000030a111721272c3338394045474a4d4f50525253535251504e4b4947433c3a37312a251f170f060000000000000000000000000000000000000000000916232f3c4956626f7c8995a9b3a79a8d807467574e4138342f35393a41464e565d676e7b86929d9fa7b1aea194877b6e6154483b302f2c2721191107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d1720293036393a3e3f44484d5355545c606264666768696a6a6a6b6b6b6b6c6c6c73808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000040c151c232832383d44484b515356595c5d5f5f605f5f5e5c5b5855534e4846423c3631292117110a03000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a5998c7f7266594c3f2f2824292c30353c444c555f69727f8b96a1acb9aea194877b6e6154483b2e21201b160f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f6673808d99a6aea194877b6e6154483b2e2115080000000000000000000000000000000000000000040d161e262e343d43484f54555d606366686a6b6c6c6c6c6b696765625f5855534d46423b3328231c150c030000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a5988c7f7265594c3f2e23181d1f2429323a434d57606d7984919eacb6aea194877b6e6154483b2e2115100b0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525a6774818d9aa7ada194877a6e6154473b2e21140800000000000000000000000000000000000000030d161f2830383f444e54596063676d707375777879797978777674726f6a67615f57534d453f342e261e150c0200000000000000000000000000000000000a1724303d4a5763707d8a96abb5a6998c807366544a3f3428211e1a192028313b45515c66727f8c9aa4afaea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c565e6164656768696a6b68655d534840414243434444444545454e5b6875818e9ba8b3a994877a6d6154473a2e211407000000000000000000000000000000000000010b151f28313a424a505860626b70757a7d80828385858686858483817e7c78736e69615e5751443f3830261e140a00000000000000000000000000000000000916222f3c4955626f7c8899a4afa89b8e8275665c50443a322d2a262727262834404b54616e7b87939facaea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e686d71727374767778756f65594d3c323536373737383837424d576976838f9ca9ada19786796d6053463a2d20130700000000000000000000000000000000000007121d27313a434c545c606a6f767d8285898c8f909292939292918f8e8b8884807b756e69625b504a423830261c1106000000000000000000000000000000000714212d3a4754606d7a86939facab9e9285796d60564c443d3a3631343333322e3946525e697784919daaaea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372d2c2823292c303847535f697885929eabab9e918578665c5145382c1f13060000000000000000000000000000000000040e18242f39434c555d666d737c83898e9298999b9d9e9f9f9f9f9e9c9a9896918d87817b726d605c544a42382e23170d040000000000000000000000000000000613202c3945515d677783909dabada1978a7e71685d564f484642424140403f3f3f424d566875818e9ba8aea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b888c8d8e8f909184776a5f53473f3a38342f34383a424c56626e7b8897a2ada99c90837669544b4034281c100400000000000000000000000000000000020c16202935404b555d676d78808790959b9fa2a9a19e9c9b9a9a9b9d9fa3a8a19e99938e867f746d665c544a3f34281f160c01000000000000000000000000000004111d2935414b556673808c99a3afa99e91847a6d68605955534d4f4d4d4c4c4c4b4b4d5a6774808d9aa7aea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697884919a9b9c9d96887c6f625a504a46443f434045474c545e6873808d99a9b2a89a8d8073675a4d402e23180c000000000000000000000000000000000008131e28323a45515d676d79828d93999fa7a39f9a97928f8e8d8e8f9092999c9ea6a49f98928b81786d665c50443e31281d13070000000000000000000000000000010d18242f3b4854616e7b86929fa8aca19690827a706b65615f575b5a5a5959585858585a6673808d99a6aea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576874818e9ba6a9a89b8e81756c605b5453504a504b5153565e666d7a85929eabaca196897c706356493d3023160700000000000000000000000000000000010d1925303a44505a606d79828f949fa4a79f99928d8885838181818283868a8f949ea0a8a29f938e81786d605a50433a2f24180d0100000000000000000000000000000714212d3a46535e6974818d96a1aaa89f9490847d76726e696a686766666565656564646673808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313c4955626f7c88949faaaa9e938a7e726c6662605c545d555c6063686d78828f97a1ada89e9184786d6053463a2d2013070000000000000000000000000000000005111d2935414c56626c75818e949fa6a69f959086817c797674747475777a7d828991969fa7a59e938d80736c61554b4035291d1207000000000000000000000000000005121e2a36424d57606d7a849198a1a9a69f969189837e7b7876757473737272727171717173808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222e3b4754606a76828f98a3aea59f92877f78726e6d666a696a676d6f747a828f949ea9aaa0968b7f72665c5044382b1f1206000000000000000000000000000000000713202d3946525e68717e8b939ea6a89f948f837b746f6c6568676768676d70757c8490959fa8a59d928a7d70675d5145392f24180c0000000000000000000000000000020e1a25313b45525d686f7c8692979ea6a8a09e95908b8885838280807f7f7f7e7e7e7e7d7d818e9ba8aea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e58626f7c86929fa4aea399928b837f7b797777767777797c80868f949ea6aba3989184796d60544a3f34281c100300000000000000000000000000000005111d2935414c56616d7a85929fa5aca0968f82796e6962605b535a5b555d60636a6f7a839096a1ada49e9184796d60554b4035291d1004000000000000000000000000000009141f2935414c565f6a6f7c858f949c9fa4a79f9d989792908e8d8d8c8c8b8b8b8b8a8a8a8e939eaaaea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323c47535f6a717e8b929fa3aaa39f95908c8886848383838486898d92989fa6a9a29992867c6f665c5142382e23170b000000000000000000000000000000000713202d3946525d6874808d97a2ada59d9184796d675f575350494e4e4b51535860686d7a84919ea6ada1968c7f73675d5145392c1f13070000000000000000000000000000030d19242f3a434e58606a6f7a82898f939a9c9fa2a9a29f9d9b9a999998989898979797979b9ea5afaea194877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202b37434e58626c737f8a92989fa4a7a09d989992919090909192999a9fa2aaa59e9792877e716a60544b4030261c1106000000000000000000000000000000000714212e3a4754616d7a86929fa9aa9e93897c6f675d554d46443f41414045474e565e68707d8a949faba89e9285796d6053473a2f24180c00000000000000000000000000000008131e28313c464e5860686e757d82878c8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abaeb6aea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f1b26323c46505a636d737e868e93999ea0a8aba39f9e9d9c9d9e9fa3aba9a29f9a938e857d716c61584e42392e1e140a0000000000000000000000000000000005121e2a36424d5765727f8c98a2aea89b8f82756b60554b433c37332d2f35393d444c56616b7683909caaada1978a7e7164554b4035291d10040000000000000000000000000000010c161f2a343c464e565e616b70767b7f8385888a8c8d8f8f9090919191919292929292999ca4aeaea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343f48525b636c717b81878d9196979a9c9d9e9e9f9f9f9e9d9b9997928e88817b706b615a50463c30271d0c02000000000000000000000000000000000714212d3a46535e697783909daaaca196897c6f63594f433a312b272224292c323a444f5964717e8a98a2aea99c8f8275675d5145392c1f1306000000000000000000000000000000040d18222b343c444c52596063696e7276797c7d7f81828383848484848585858585868d929ca8aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18222d364049525a61696e747b8084888b8d8f90919292929291908e8c8985817c756e69615950483e342b1e150b00000000000000000000000000000000000815212e3b4854616e7b8795a0abab9e9184786c6053463d31281f1b17181d2029323e4753606d7985929facac9f92867a6d6053473a2d201407000000000000000000000000000000050e171e252a323b41464f54575f6165666d6f71737475767677777778787878797979808d99a6aea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101b242e37404850575e616a6e73777b7e80828484858686858483817f7c79746f6a615e574f473e362c22190c0300000000000000000000000000000000000b1825313e4b5864717e8b97a7b1a79a8d8074655b5044372b1f160f0b0c1017202c3845515d6775828f9ca8aea399897d7063564a3d3023170a0000000000000000000000000000020d1720293036393a3e3f44484d5355545c606264666768696a6a6a6b6b6b6b6c6c6c73808d99a6aea194877b6e6154483b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121c252e363e454d53585f62666a6f717375777878797979787675726f6d66625f58524d453d352c241a10070000000000000000000000000000000000030f1b27333f49536874818e9ba7b4aa978a7d716453493f3327190d04000005101d2935404b5566727f8c99a5b5ab998c807366594d4033261a07000000000000000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f6673808d99a6aea194877b6e6154483b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a131c242c333b42464e5355585f626467696a6b6b6c6c6c6b6a686663605c54534e46423b332c231a120800000000000000000000000000000000000005121f2b3744505b657783909daaaea298877b6e6154483b2d221708000000000c18242f3d4a5663707d8996abb5a89b8e8275685b4f422f24180d01000000000000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525a6774818d9aa7ada194877a6e6154473b2e211408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a121a212931363c4347484e5355585f676a6c6c6c6b67605d5b595653514b47433c363029201a1108000000000000000000000000000000000000000613202d394653606c7985929facac9f928579695e53463a2d211406000000000715212e3b4854616e7b8799a3aeaa9d9184776a554b4035291d100400000000000000000000000005111e2a36414c565e6164656768696a6b68655d534840414243434444444545454e5b6875818e9ba8b3a994877a6d6154473a2e2114070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f171f252a31373a3c4347485b6771777979797772675753514b4645403937322a251f170e0800000000000000000000000000000000000000000814212e3b4754616e7a8798a2aeaa9d9084776a574d42362a1e1205000000000613202d394653606c7986929facac9f928579675d5145392c2013060000000000000000000000000713202d3946525e686d71727374767778756f65594d3c323536373737383837424d576976838f9ca9ada19786796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d141a20262b2e313744515e6a778486868684776b63605c5450483f372b26201a140d050000000000000000000000000000000000000000000916222f3c4955626f7c8895aab4a99c8f8276695c4f4331251a0e020000000006121f2b3844505b667884919eabaea298867a6d6053473a2d2014070000000000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372d2c2823292c303847535f697885929eabab9e918578665c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e151a1f21263744515e6a7784919391847774706d66615a51493f342b20150a02000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b090000000000030f1c28333f4a546a7784909daab4aa94877b6e6154483b2e2115080000000000000000000000000815222e3b4855616e7b888c8d8e8f909184776a5f53473f3a38342f34383a424c56626e7b8897a2ada99c90837669544b4034281c1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f171c2b3744515e6a7784919d928783817d79716c625b51463c32271b0f03000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e0100000000000b17222d43505d697683909ca9aea195887b6e6255483b2f22140c0500000000000000000000000714212d3a46535f697884919a9b9c9d96887c6f625a504a46443f434045474c545e6873808d99a9b2a89a8d8073675a4d402e23180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a22282d3744515e6a778491979992908d8a847e726d62584e43372b1f1306000000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000000061d293643505c6976838f9ca9afa295887c6f6255493c2e261e170f060000000000000000000005121e2a36424d576874818e9ba6a9a89b8e81756c605b5453504a504b5153565e666d7a85929eabaca196897c706356493d30231607000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e1a232c33393c44515e6a7784888a8e92999a96918a7f726a6054473b2e221507000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b1a69a8d8073675a4d4034271a0d010000000003101c2936434f5c6976828f9ca9afa295897c6f6256493f38302921180f06000000000000000000020e1a26313c4955626f7c88949faaaa9e938a7e726c6662605c545d555c6063686d78828f97a1ada89e9184786d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d17202c363e44494a4854616e7a7b7d8187929fa19e92877c6f6255493c2f24180d010000000000000000000000000000000000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000003101d293643505c6976838f9ca9aea295887b6f6256504a423b332a21180f050000000000000000000915222e3b4754606a76828f98a3aea59f92877f78726e6d666a696a676d6f747a828f949ea9aaa0968b7f72665c5044382b1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008141f29323e4850555754535e686e6f71747e8a98a2a3998f827568554b4135291d11040000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e010000000003101d2a3643505d697683909ca9aea195887b6e68605c544d453c332a21170c03000000000000000006131f2b37434e58626f7c86929fa4aea399928b837f7b797777767777797c80868f949ea6aba3989184796d60544a3f34281c100300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1925303b44505a6164615e575e6162646c7985929fab9f928578675d5145392c2013060000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b08000000000004111d2a3744505d6a7783909daab3a79a8d807a736d665e574e453c33291e150b0000000000000000030f1b27323c47535f6a717e8b929fa3aaa39f95908c8886848383838486898d92989fa6a9a29992867c6f665c5142382e23170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414d56616c706e6968676666676d7a86929faca298877a6d6054473a2d2114070000000000000000000000000000000000000000000916232f3c4956626f7c8995abb5a89c8f8275695c4f423025190e020000000005111d2935414c566b7784919eaab7a99d928d867f786e695f574e453b30271c120700000000000000000a15202b37434e58626c737f8a92989fa4a7a09d989992919090909192999a9fa2aaa59e9792877e716a60544b4030261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e68707d7b78757473737479818e99a3ac9f9286796c605346392d2013060000000000000000000000000000000000000000000815212e3b4854616e7b8799a3afaa9d9083776a564c41362a1e1105000000000713202d3946525e687985929facafa59e9b98928c837b6e6a5f574d42392e23180c0200000000000000040f1b26323c46505a636d737e868e93999ea0a8aba39f9e9d9c9d9e9fa3aba9a29f9a938e857d716c61584e42392e1e140a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7b8887848281807f81858e939eaba59d908377665b5044382b1f12060000000000000000000000000000000000000000000713202d3a4653606d7986929facab9f928578685e5246392d201407000000000714212e3a4754616d7a8798a2aeaa9e938f8b929590847c6e695e544a4034281e130800000000000000000a15202a343f48525b636c717b81878d9196979a9c9d9e9e9f9f9f9e9d9b9997928e88817b706b615a50463c30271d0c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a5465727e8b96918f8d8c8c8e92979ea5a19e938b7e7165544a3f33281c0f0300000000000000000000000000000000000000000006121f2c3844515c667784919daaada297877a6e6154473b2e21140a00000000091623303c4956636f7c8996aab4a89b8f817e85909591857b6e665c51443a3025190d0100000000000000040e18222d364049525a61696e747b8084888b8d8f90919292929291908e8c8985817c756e69615950483e342b1e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c6675828f989a9b9a99999a9e9e9c9a97928b81756c625642382d22170b0000000000000000000000000000000000000000000004101c2834404a546875828e9ba8b3a9968a7d7063574a3d31261b0d040000030f1b27333f495365717e8b98a4b5ab998c7f737b8390959083786d60564c4135291d1105000000000000000006101b242e37404850575e616a6e73777b7e80828484858686858483817f7c79746f6a615e574f473e362c22190c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7884888b8e909192929292918f8d8a857f776c605a50452f261c110600000000000000000000000000000000000000000000000c18232e3f4c5865727f8b98a8b2a6998d807366584e43372b1f15100c0b0f141f2b3744505b6574818e9ba7afa399897d706e798390958c7f73685e5246392d20150a00000000000000000009121c252e373f454d53585f62666a6f717375777878797979787675726f6d66625f58524d514c463d34291f130800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c666d777c7e818384858686858483817d79726c655b50483f341d140a0000000000000000000000000000000000000000000000000716222f3c4955626f7c8896a1acaa9d9083776a5f53473c31271f1c18171b1f2630394653606c7884919eabac9f92867a6d676e7b869292857a6d6154473c32271b0f03000000000000000005111d29343f49515658606060585f626467696a6b6b6c6c6c6b6a686663605c546060605f5d574f463b3024180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a545c606a6f7274767778797978787674706d67605b53493f362d220b020000000000000000000000000000000000000000000000000613202d394653606c7884919eabaca095887c6f62584e4339302c282322272b2f38424d57626f7c8996a1adaa9c8f8376675f6973808d988c807366584e43372b1f130600000000000000000915222e3a45515b62656c6c6c6c67605c555c5d5e5f5f5f5f5e5d5b595960636b6c6c6c6c6961574c4135281c10030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17232e38424a50585f626567696b6c6c6c6c6b696764605d55504941382d241b110000000000000000000000000000000000000000000000000005121f2b3744505b6573808d99a4afa79a8e81746a5f554b423c38342e2d33373b414a545f6974818e9ba8aea2988b7e726557626e7b88969184776a6054473b2e22150800000000000000000b1824313d4a56626d7279797979746d675f57505152535352514c535b606b6f787979797873695d5144382b1e120500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c2630383f444e5355585b5d5e5f5f5f5f5e5c5a5753514b443f382f261b120900000000000000000000000000000000000000000000000000030f1b27333f4953616e7b87939fabac9f92877c6f675c544e46444041413f44464c535c666e7b86929facaa9f92867a6d60575f6a78849196887c6f6255493c2f22160900000000000000000c1825323f4b5865727e8686868681796e69615a514b433f444e565e656c727d8486868685786c5f5245392c1f1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141e262e343c4347484b4e50515253535251504e4a47454039332d261d140a0000000000000000000000000000000000000000000000000000000b17222d3847535f6975828f99a3aea3999083796d665f5753514a4e4e495053565e656d78829099a3aea2988d81746861646c6c75828f988b7f7265584c3f3225190c00000000000000000714202d3a4753606d79839097928d837b716c605d554e49505860686d777f879196928b7e7165584b3e3225180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c141c232832373b3c3f414344454646454543413d3a38352f27221b140b0200000000000000000000000000000000000000000000000000000006111b2b37424d57626e7b87929fa6ab9f958f81786e6a63605c545b5a535b6062686e77818e949faba69f92867b6e616c70797979818e9a8e8174675b4e4134281b0e00000000000000000613202c3945515d676e7b8591989590867e746d675f58535b606a6f7a828c9299938d80736c6256493d3024170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a111720262b2e2f3234363839393939383634312d2c29241d17110a0200000000000000000000000000000000000000000000000000000000000e1a26313c47535f6a73808d949fa8a79e938f837b74706d6668676768656c6f737a828e939da6a89f948c7f726964707d8686868e939c8f8376695c504336291d10000000000000000004101d2935404b555e696f7c86929a98928a81796f6a625d656c727c848f949f958f82786c605a5045392d2115060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b151b1f212225282a2b2c2c2c2c2b292724201f1d18120b060000000000000000000000000000000000000000000000000000000000000009151f2b37424e57606d78829096a0a7a69e959087817c79767574747576797c80868f949da5a8a0969082786d6064707d8a93939b9e9d9083776a5d5044372a1d110000000000000000010d18242f39434d57606a717e88939f9f938e837c716c686d777f8791969e979083796d665b50483f312a2217110a0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f121515181b1d1e1f20201f1e1d1b171413100c07010000000000000000000000000000000000000000000000000000000000000000030e1a26313c44515c666e7a8490959ea5a79f99928e898583828181818385888d92989ea6a59e9691847a6d665c64707d8a979fa8aa9e9184776b5e5144382b1e1100000000000000000007121d28313b454e58616c737f8c939e9d9591867e75707a828c9299a19891857b6e675d54514c433c3428231c140c050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090c0e10111213131212100e0a0706040000000000000000000000000000000000000000000000000000000000000000000000000915202834404a545e686e7b838e939da0a7a39f9b9892908e8e8d8e9092979a9fa2a8a09e938f847b6e685e5464707d8a97a3acab9e9184786b5e5145382b1e12000000000000000000010c161f29333d46505a636d75818e959fa098928b817d848f949fa39a92867c6f696c68605d554e463e342e261e160e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c18232e39424c565e696e79818990959b9fa2aaa29f9d9b9a9a9b9c9ea1a9a39f9c96918a827a6e695e565764707d8a979f9f9f9e9184786b5e5145382b1e1200000000000000000000040d17212b343e48515b606d79839096a1a29f938e8991969ea59f93887e77797979756d675f5850443f383028201910090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010507070a0d101112131312110f0d09060503000000000000060606060606060000000000000000000000000000000000000000000000000000000007121c27303b444d565e676d747d83898e9298999b9d9e9f9f9f9f9e9d9b9999928f8a847e756d685e574d5764707d8a93939393939184786b5e5145382b1e120000000000000000000000050f19222c364045515c676d7a849198a2a59e9b969ea1a79e938c7f778386868682796e6a615a504a423a322b221b120a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d111314171a1d1e1f20201f1e1c1a1613120f0b06000407071313131313131307070501000000000000000000000000000000000000000000000000000b151e29323b444d555d606b70777d8285898c8e90919292929291908f8c8a86827e78716c605d564d4a5764707d8686868686868684786b5e5145382b1e1200000000000000000000000007101a242834404b555e686f7c869299a39f9f9f9fa89f958e8175707d8a94938f847c716c605c544c443d342d241c130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e13191d20212427292b2b2c2c2c2b292623201f1b17110d111314202020202020201413110d08020000000000000000000000000000000000000000000000030c172029323b434b515960636b7075797d7f82838585868685858382807d7a75716d66615a524c434955616c70797979797979797872685c5043372a1d1100000000000000000000000000081218232e39434c565f6a707d8792939393939393969083796d6b75828f999691867e736d665e564e463f362d251c1107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b151a1e24292d2e3134363738393938373533302d2b27221b191d202d2d2d2d2d2d2d2d21201d19130c040000000000000000000000000000000000000000000000050e172029313940454f54596063676d70737576787879797978777573706d6764605c545045413a44505a61646c6c6c6c6c6c6c6b6860564b3f33271b0f000000000000000000000000000007121d27303a444e58616b727f8686868686868686847a6d67626e7b87929f98928a80786d68605850483f372d23180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a111720262b3035393a3d404344454646454442403c3937332d2924292c3939393939393939392d29241e160e040000000000000000000000000000000000000000000000050e171f272f353d44484f55555d606366686a6b6c6c6c6c6b6a686663605d5553504a423e35333e48505557606060606060605e5c564e443a2f23170b0000000000000000000000000000000b151e29323c464f59626d727979797979797979786d685e5f6973808d97a19f928d827a6f6a625a51493f352a1e12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b141b222731373a4146474a4d505152535352514f4d4946443f38352f35394646464646464646463935302820160c020000000000000000000000000000000000000000000000050d151d242933383d44484b515356555d6c6c6c6c6c68655d5c595754514b46443f3830292c363e44494a5353535353535351504b443c32281d1207000000000000000000000000000000030c17202a343e47515b62656c6c6c6c6c6c6c6c6b615e5657606d7a85919ea49d948f847c716c635b51463a2e22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c151d262d333c42474c5254575a5c5e5e5f5f5f5e5c595653504945403a414553535353535353535346413a32281e1308000000000000000000000000000000000000000000000000030b121821272c333839404547515d677679797979756f6556544f4745413a38342e261e232c33393c3d4646464646464645433f3a322a20160c0100000000000000000000000000000000050e18222c353f4951565860606060606060605e54524c515d67717e8b959393939691867e726d63574a3e3125180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e272f383f444d53565d616467696a6b6c6c6b6a686663605b53514b444c525f606060606060605f524c443a3024190d0100000000000000000000000000000000000000000000000001070c161c21272c2f353a4753606d7986868686817568636059544e463d3528231c141a22282d3031393939393939393837332f2820180f0500000000000000000000000000000000000006101a232d373f464a4c5353535353535353514746414b55606c778386868686868686867f7265594c3f3226190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d273039414950575f62686d70737677787979787775736f6c65605d554f565d6c6c6c6c6c6c6c6c6c5d564c4135291d11050000000000000000000000000000000000000000000000000000050b10161c1d242d3a4753606d7a8693938e8176736f6b6260584f473d32281e1310171c2023242d2d2d2d2d2d2d2b2a27231d160f06000000000000000000000000000000000000000008111b252d343a3e3f4646464646464646453a393a44505b656c767979797979797979726d63574a3e3125180c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424b535b60696e747a7d808384858686858482807c78726d6760595d68767979797979797976685d5246392d20130700000000000000000000000000000000000000000000000000000000030b1218202d3a4753606d7a86939f928682807c776f6a60594f443a3024190d0b10141617202020202020201e1d1b17120c050000000000000000000000000000000000000000000009131b23292e31323939393939393939382e2d333f49535b606a6c6c6c6c6c6c6c6c65635b51463a2e221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b545c656c737b81868a8d8f9191929292918f8c89847f79706b62606d7a868686868686867a6d6154473a2e211407000000000000000000000000000000000000000000000000000000030d151d23292d3a4753606d7a86939798928f8d89837c706b60564c4135291d110404080a0a1313131313131312110f0b07010000000000000000000000000000000000000000000000010911181e2225252d2d2d2d2d2d2d2d2b21222d38414950535d6060606060606060595751493f352a1e120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18222c3845515c666d777f878e92989a9c9d9e9f9f9e9d9b9996918c847d726d616e7b87939393939386796c605346392d2013060000000000000000000000000000000000000000000000000000010b151f272f34383a4753606d7a86888b8f939c999590867d70685d5245392c201307000000000606060606060605040200000000000000000000000000000000000000000000000000000000070d1216181920202020202020201e141b262f383f44465053535353535353534c4a463f372d23180d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202c38444f59606d78818c93999fa3aaa9a8aaa29f9e9e9e9fa19e9691877f726d6e7b88959f9f9f928579655b5044372b1f1205000000000000000000000000000000000000000000000000000007121d2731394045474a515d67767b7c7e828d929c9f9892857a6d6054473a2d211407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090b0c1313131313131313120a141d262d3337394346464646464646463f3e3a352d251c110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b26323c4854606b74818e939fa4ababa39f9b979892919192939a999d99938b7f726f7c8995a2ab9e9285786b5f493f33271b0f0300000000000000000000000000000000000000000000000000000c18232f39434b51535754555e696e6f7175808d99aaa1978c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060606060606060605020b141b22272b2d37393939393939393932312e2a231c130a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e5863707d89939da5afa8a199928e8a878584848586888c90959e92877d707c8996a3ab9e9185786b5e52452d22170b000000000000000000000000000000000000000000000000000004101c2934404b555c6064615e575e6162646e7b8895a1a99c8f8376695c504336291d1003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171b1f202a2d2d2d2d2d2d2d2d2625221e18110a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a7683909da5afaaa1969187817d7a79787778797c7f838b919791857a7d8a96a3ab9e9184786b5e5145382b1e06000000000000000000000000000000000000000000000000000006131f2c3845515c676d716d686867666668707c8996a3aa9d9184776a5e5144372b1e11040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131d2020202020202020191816120d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c88959fabaea29891847c75706d686b6b666d6f73787e8591958e817e8a97a3ab9e9184786b5e5145382b1e1205000000000000000000000000000000000000000000000000000714202d3a4753606d797d7a7775747373757a83909da9ab9d9083766a5d5043372a1d1004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000305061013131313131313130c0c0906010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a546673808c99a7b1ab9f92867c6f6a64615e56545c6062666c717b83919388808d9aa7aa9e9184776b5e5144382b1e1105000000000000000000000000000000000000000000000000030f1c28333f4a5463707d8a868482807f80818690959faba3998d8174675a4e4134271b0e010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2b3844505c667683909da9afa3998c80736a605854524c4a5153545b60696e7a8491938d929da9aa9e9184776b5e5144382b1e110500000000000000000000000000000000000000000000000006121f2b3844505b6674818e93908e8d8c8c8e92989fa7a09d92877c6f6255493c2f22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090c0f111213131212100e0b080705020000000000060606060606060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7986929facac9f92867a6d61584e4746414044464a50575e686f7c87929a9da4aeaa9e9184776b5e5144382b1e11050000000000000000000000000000000000000000000000000613202d394653606c798591989b9b9a99999b9f9e9c9996918a7f726a5f53473b2e2115080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030a0f121515191c1d1f1f201f1f1d1b181514120e0902030607131313131313130909070300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8898a3aea99c908376685e52463c393634383a3f444d56606a73808d99a3afb7aa9e9184776b5e5144382b1e11050000000000000000000000000000000000000000000000000815222e3b4855616e7b86898c8e909192929292918f8d89847d726d62584e43372b1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f151a1f212226282a2c2c2c2c2b2a282521201e1a1410101213202020202020201615130f0a040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996aab4a79a8d807467564c41342d2a282c2d333b444e58616e7b86929facb7aa9e9184776b5e5144382b1e11050000000000000000000000000000000000000000000000000814212d3a47535f696e787c7f818384858686858482807c78706c625b51463c32261b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171c1f262b2e2f32353738393939383634322e2d2a251f1c1c1f202c2d2d2d2d2d2d23221f1b160f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a5988b7e7265584b3f30251d1c1f2228323d46525e6975828f9ba8b5aa9e9184776b5e5144382b1e110500000000000000000000000000000000000000000000000006121e2b37424d575f666d6f7275767878797978777673706c66615a51493f342a20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060b141c22282b31373a3c3f4244454646454543413e3b3a36302d28282c2d39393939393939302f2c2721191007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1825323e4b5865717e8b98a4b0a3978a7d7064574a3d312417101217202a36424d5764717e8b97a9b3aa9e9184776b5e5144382b1e1105000000000000000000000000000000000000000000000000020e1a26313c454d545c606365686a6b6c6c6c6c6b696663605b5450473f372d22180e040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810181d262d33383c4347484c4f505252535252504e4b4846423b3933343845464646464646463c3b38322b23190f040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825323f4b5865727e8b98a5afa296897c6f6356493c30231609060e1a25303b4855626e7b8897a2adaa9e9184776b5e5144382b1e11050000000000000000000000000000000000000000000000000009151f2a333c424a505356595b5d5e5f5f5f5f5e5c5a5653504a423e352d251b100700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a222a2f383f44464e5355595b5d5f5f5f5f5e5d5b5854524d49443e3f4452535353535353534948433d352b21160a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295897c6f6256493c2f231609000913202d394653606c7985929fabaa9e9184776b5e5144382b1e110500000000000000000000000000000000000000000000000000030e18212a30383f4446494c4e505152535352514f4d4946443f382f2c231b130900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a242c343c424a5053585f6265686a6b6c6c6c6b696765615e57554f464a505e5f60606060606056544f473d32271b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f2216090005121f2b3744505b657784919daaaa9e9184776b5e5144382b1e11050000000000000000000000000000000000000000000000000000060f181e262e34383a3c3f424345454646454443403d3938332d261d1a1109010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f1a232c363e464e545b60646a6f72757778797978787674716e6964615953545c6a6c6c6c6c6c6c6c6360594f43382c1f130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900030f1b27333f49536a7683909da9aa9e9184776b5e5144382b1e0802000000000000000000000000000000000000000000000000000000060c151c23282c2d303235373839393939383633302d2b28221c140b08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b18212c363e4850585f666c71777b7f8283858586858583817e7b76706c615e5c6675797979797979796f6b6054483b2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900000b17222d424f5c6975828f9ca8aa9e9184776b5e5144382b19140d08010000000000000000000000000000000000000000000000000000030a11171c1f202326282a2b2c2c2c2c2b292723201f1c17110a02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d2a333e48505a616a6f787e83888c8e909292929291908e8b87837d766e69606d78878686868686867c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f2216090000061c2935424f5c6875828f9ba8aa9e9184776b5e51442e2a251e19130c04000000000000000000000000000000000000000000000000000000060c10121316191b1d1e1f20201f1e1c1a1613120f0b06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f3c46505a616c707c838b9095989b9d9e9f9f9f9e9c9a98948f8a827b6f6a6e7a879993939393887b6f6255483c2f22150900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e513f38363029241e160d0700000000000000000000000000000000000000000000000000000000030607090c0f10121213131211100d0a060603000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38424e58616c707e8690959da0a7a8aaaaa29f9e9e9e9fa39f9c948f857c6f6f7b88959f9f9f94877b6e6154483b2e21150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e504a46413b352f281f19100900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c28333f4a545f6a707e879298a0a7aca7a09d9898929191919299989d9f9792857c6f7c8996a2aca194877a6e6154473b2e21140800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b605c54524c45413a312b231b12090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030608090c0e10111213131212110f0d0b080705020000000000000000000000000000000000000000000000000006121f2b3844505b666e7c869299a2aaaaa29f95908b888584848586888c91959e979183797d8a96a3ada094877a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e918477706d66615e56524c433d352d241b12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002050a0f121515181b1d1e1f20201f1f1e1c1a181514120e090501000000000000000000000000000000000000000000030f1c28333f4a54606c78839098a2abaaa298928b837e7b79787778797c7f848a9297958d807e8a97a4ada093877a6d6054473a2d21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8ac9f9286817d79736e68605d564f473f362d241a0f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e12151b1f21222528292b2c2c2c2c2b2b29272521201e1a14110d08020000000000000000000000000000000000000006121f2b3844505b66717e8b959faaaea29892867e78726e6c656b666d6f72787e85919692877f8c99a6ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aea398928e8985807a746d68605950483f362c21180e030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002080d141a1e20262b2e2f323436383939393938373633312e2d2a25201d19130d080200000000000000000000000000000000000613202d394653606c7884919da7b0a69f92867d716c6561605b545c6062656c717b8491979286929facada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8b2a8a09e9597928d86807a6f6b625a50483e332a201509000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050d13191f252a2d31373a3c3f41434445464645454442403e3b3a36302d29251e19130c0400000000000000000000000000000003101c28343f4a5463707d8996a0acab9f948b7e716b605b5353504b5153535b60696e7b8592999299a3aeada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aca09691898d9297928d847d716c625a50463c31261a0f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e171e252a30363a3c4347484b4e50515253535252514f4d4b4846423b39353029241e160e07000000000000000000000000000006121f2c3844505c6675818e9ba8b2a99c9083766c6159504946444045464950575e69707d8a949fa3abb4ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e91847c80858b919691877e716c61584e43372b21170b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020a1117202930363b4246484e5355585b5c5e5f5f5f5f5e5e5c5a5854524d4746413a35302820191109010000000000000000000000000713202d3a4653606d7985929fabada1978a7d70635a50443f393734383a3f444d57616c7683909ca9b3bdada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e91847774797f858e9392877e716a5f53473e33281c1002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141b2227323a41464d5254585f626567696b6c6c6c6c6b6a696664615e5754524c46413a322b231b1309000000000000000000000000091623303c4956636f7c8998a2aeab9e9185786c6053463e332d2b282c2d333b45505a64707d8a97a1adb9ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e918477676d727a818e9392867c6e62594f44392d1e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b141d262d333e444c52575e61666a6f727476777879797878777573716e6966615e56524c443d352d251b130900000000000000000000000c1926333f4c5966727f8c99aab3a79a8e8174665b50443827221f1c1f2227333e4653606d7985929eabb8ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b60686d78818e968f82766c6155493a3025190d01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d262f383f4450565e61696e73777b7e81838485868685858482807e7b77736d68615d564f473f372d251b1108000000000000000000030f1b27333f49536875828e9ba8b5ab978b7e7164544a3f33281712101317212c3844505c6674818e9ba7b4ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b565d666d798491948a7d7064564c41362a1e110500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f384149505a61686d747b8084888b8e8f919292929291918f8d8b87837f7a736d68605951493f372d231a0e04000000000000000005121f2b3744505b657784919daaafa399887b6e6255483b2d2217060406101c28343f4a5464717e8b97aab4ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e545c67717e8b998f8275685e5246392d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c17222d384149535b606c717a81868d9196989a9c9e9f9f9f9f9e9d9c999795908c86807a706b625b51493f352c20160c02000000000000000613202d394653606c7985929facac9f9286796d6053463a2d20130600000c17232e3b4855626e7b8898a3aeada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e4b55606d7a869292867a6d6154473a2e21140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b151e27333f49535b656c737e858e92999ea0a8a9a19e9d9c9b9c9d9fa2aaa7a09d98928d847d726d625b51473e32281e1308000000000000000814212e3b4754616e7a8798a3aeaa9e918477665c5144382c1f120600000613202d3a4653606d7986929facada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5e54565d67778390998a7d7064574a3d3124170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007121d27303944505b656c77808a92979fa3a8a19e999792908f8f8f909298999da0a7a29f9691877f726d62594f443a3024190d020000000000000916222f3c4955626f7c8895aab4a99c90837669544a4034281c1004000006121f2b3844505c667784919eaaada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b5960636c6c75818e998d8073665a4d4033271a0d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c18232e39424f59606c77808d929fa2a9a39f96918c8885838282838385888c91959ea1a8a199938b7f726b61564c4135291f14090000000000000a1623303d495663707c8996a3afa89b8f8275685c4f422e23180c00000003101c28343f4a546976838f9ca9ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b606b70797979818d9a8f8275695c4f4236291c0f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54606b737f8c929da4a9a299928c847f7b787675757677797b7f848b9297a0a7a49f93887d70685d52453b30251a0e0200000000000b1724313e4a5764717d8a97a4b0a79b8e8174685b4e4135281b07000000000b17232e424f5b6875828e9ba8ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b63707d8686868d929d9083766a5d5043372a1d1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c66707d87939fa4aba29792877f79726e696a696869666c6e72787e859095a0a8a49a91847a6d60574d42362a1e110500000000000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e01000000061b2834414e5b6774818e9aa7ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b63707d8993939a9d9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54606d79849199a4aea39992857d726d67625f575c5c545b6062666c717b839095a0aaa1968e8174695e52463a2d20140700000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000010e1a2734414d5a6774808d9aa7ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5afa295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b63707d89969fa7ab9e9185786b5e5245382b1f12000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515c66727f8c96a0aba89f92877d6f6b605c55534d4f4f4a5053545b60696e7a839198a3a39f92867b6e6154473b2e21140800000000000b1825323e4b5865717e8b98a4b1a69a8d8073675a4d4034271a0d010000010d1a2734404d5a6773808d9aa6ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b98a5aca295887c6f6255493c2f22160900020f1c2935424f5c6875828f9ba8aa9e9184776b63707d8996a3acab9e9285786b5f5245382c1f1200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7984919ea8aca1968c80736b6059514b474242423f44464a50575e686e7b86929a99928f8b8073665a4d4033271a0d00000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000010d1a2734404d5a6773808d9aa6ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b989f9f9f95887c6f6255493c2f22160900020f1c2935424f5c6875828f9b9f9f9e9184776b63707d89969f9f9f9e9285786b5f5245382c1f120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414c5564717e8a96a1adaa9e9184796d60594f45403937312d3338393f444d565f6973808c8e8a86827f7b6e6155483b2e22150800000000000b1824313e4b5764717e8a97a4b1a79a8d8174675a4e4134271b0e010000010e1a2734414d5a6774808d9aa7ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f8b9393939393887c6f6255493c2f22160900020f1c2935424f5c6875828f939393939184776b63707d8993939393939285786b5f5245382c1f12000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d6775828f9ca8aea2988b7e71675d51473d342e2b2622282b2d333b444d57616d7a84817d7a76726e695f53463a2d21140700000000000a1724303d4a5763707d8a96a3b0a79b8e8174685b4e4135281b06000000010e1b2834414e5b6774818e9aa7ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1925323f4c5865727f868686868686867c6f6255493c2f22160900020f1c2935424f5c68758186868686868684776b63707d8686868686868685786b5f5245382c1f12000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86929facac9f92857a6d60554b403528231d1a171c1f2228323c46525e686d7774706d6765615f574d42372b1e12050000000000091623303c4956636f7c8996a2afa89b8f8275685c4f422e23170c000000020f1c2835424f5b6875828e9ba8ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824313e4a56626d7279797979797979766a5f53473b2e21150800020e1b2834414d59656f75797979797979777267606b70797979797979797873685d5044372b1e11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a99a3aea89b8e8175675d5143392f23181d1d1d1d1d17202a36414c565e616b6764605d5555534d453c31261a0e0200000000000815222f3b4855626e7b8895a9b3a99c90837669544a3f34281c1003000004101c2834404b556976838f9ca9ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222e3a46515b62656c6c6c6c6c6c6c625f584e43372b1f130600000c1925313d49545d65686c6c6c6c6c6c6b67605960636c6c6c6c6c6c6c6b6861574c4034281c0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2734404d5a6773808d9aabb4aa978a7e7164554b4031272a2a2a2a2a2a2a2a2a25303a444c52545e5b5753514b4846423c332a1f14090000000000000714202d3a4753606d7a8697a1adaa9e918477665c5044382c1f1206000006131f2c3845515c677784919eaaada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121e29343f495156586060606060606055534e463c32261b0f0300000915212c37424b54595c6060606060605e5c564f5456606060606060605f5d574f453b2f24180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101d2935404b556976828f9ca9aea298887b6e6255483b2f373737373737373737373737323a414647514e4a4745403b3a373128231c140c0200000000000613202c3945515d677885929eabac9f9286796d6053463a2d20130700000713202d3a4653606d7986929facada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18232d373f464a4c535353535353534947433c342a20150a00000004101b26303942494d4f535353535353514f4b44484a5353535353535352504c453d33291e130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2c3845515d677885919eabac9f9285796c6053464444444444444444444444444444444444444444444444444444443a38342e261e140a000000000004111d2935404b55697683909ca9aea399887b6e6255483b2f22150b00010816222f3c4955626f7c8899a3afada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b252d343a3e3f464646464646463c3b37322a22180e040000000009141e2730373d414246464646464644433f383c3d464646464646464544403b332b21170d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3a4753606d7a8696a1adaa9d908377665b505050505050505050505050505050505050505050505050505050505046443f3830261c110600000000010d18242f414e5a6774818d9aa7b5ab978a7e7164574b3e32271b0f0a0e131d2935414c5665727f8b98abb5ada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009131b23292e3132393939393939392f2e2b26201810060000000000020c151e262c3134353939393939393837332c2f30393939393939393837342f2921190f06000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8894a9b2a99c8f837669545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d53504a42382e23170b0000000000071825313e4b5864717e8b97a8b1a79a8d817467594f44382c211b1b1a1e242d3946525d6875828f9ca8b5ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010911181e2224252d2d2d2d2d2d2d22211f1b150e0600000000000000030c141b212528292d2d2d2d2d2d2b2a272022232d2d2d2d2d2d2d2c2b28241e170f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a2afa89b8f82756a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a605c544a3f34281c1003000000000815212e3b4854616e7b8795a0acab9e9184786b6054483d332b2627262b2f35414c56616d7a86929facb9ada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060d12151819202020202020201615130f0a0400000000000000000002091015191b1c2020202020201e1d1b131617202020202020201f1e1c18130d060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a79b8e8177777777777777777777777777777777777777777777777777777777777777776d665c5044382b1f1206000000000714212d3a46535e697784919dacaca196897c7063594f453d37323431373a4146525d68727f8c99a3aebbada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000106090b0c13131313131313090806030000000000000000000000000004090c0e0f13131313131311110e07090a1313131313131312110f0c0702000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d8a97a3b0ab9e92858383838383838383838383838383838383838383838383838383838383838383786d6053463a2d2013070000000005121e2a36424d576673808c9aa4afa89c8f82756b60574e474341414142474c525c616d7a85929eabb0b8ada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0ada197929090909090909090909090909090909090909090909090909090909090909086796c605346392d20130600000000020e1a25313b4855616e7b87939fabaa9e94897d70696058534e4e4e4e4d53565d606e75818e979c9ea6b0ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003080b0d0e1313131313131312100d0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809131313131313130b0a08050000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0b3a9a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d928679655b5044372b1f120500000000000914212d3a46535f6975828f99a4afa69e91857b6f6a625f585b5a5b575f62686d75808c93948f949eaaada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001080f14181a1b202020202020201f1d19140e070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151620202020202020181715110c06000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0b8b0aba99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9faaaaaaaaaa9f9285786c5f493f33271b0f03000000000005121e2a36424d57626f7c87939fa7ada19791847c746f6a6968676869696e737a818c92938e828f9ca8ada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b131a202427272d2d2d2d2d2d2c2b29251f191108000000000000000000000000000000000000000000000000000000000000000000000000000000000000060e151b1f21222d2d2d2d2d2d2d2524211d1711090000000000000000000000000000000000000000000000000000000000000a1623303d495663707c8996a3afb0a69f9c93939393939393939393939393939393939393939393939393a0a8b2ab9e9185786b5e52452d22170b000000000000020e1a26313b47535f6a74808d95a0a9a9a1969187817c787674747476787b80858e93968e817f8c99a5ada093867a6d6053473a2d2014070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010b141d252b303334393939393939393835312a231a11070000000000000000000000000000000000000000000000000000000000000000000000000000000006101820262b2e2f3939393939393931302d29221b120900000000000000000000000000000000000000000000000000000000000915222f3c4855626f7b8895aab3ab9f948f8686868686868686868686868686868686868686868686868996a0acaa9d9083776a5d5044372a1d060000000000000009141f2b37434e58606d79839097a1a8a8a199938e8885828181818285888c92979891847a7f8c99a6ada093867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131d262f363c40414646464646464645413c352c23190e030000000000000000000000000000000000000000000000000000000000000000000000000000040e18222a32373b3c464646464646463e3d39342d241b1106000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a8798a2aea99c8f8279797979797979797979797979797979797979797979797984919eaaa99c8f8276695c4f4336291c1003000000000000030f1b26323c45515d676e7b8591969ea5aba49f9a97918f8e8d8e8f9196999f9792867c73808c99a6ada093867a6d6053473a2d20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1a252f3841484c4e53535353535353514d473e352a1f140900000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343c434749535353535353534b49453e362d22170c000000000000000000000000000000000000000000000000000000000713202d3946525d687885929fabaa9d9084776c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7986929faca79a8d8174675a4e4134271b0e01000000000000000a15202935404b555f696e7b848e939c9fa4aba9a19e9c9b9a9b9c9e9f9c948f857c6f73808d99a6ada093867a6d6053473a2d20140b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202b36414a53585a6060606060605f5e5850473c3125190d01000000000000000000000000000000000000000000000000000000000000000000000000030f1b26323c464e535560606060606060585650483e34291d110500000000000000000000000000000000000000000000000000000005111d2935414c566a7683909da9ab9f928578695e606060606060606060606060606060606060626e7b8899a3afab988b7f7265584c3f3225190c0000000000000000040d18242f39434d575f696e7a81898f93999b9d9e9f9f9f9e9c9a98948f8a827b6f6a73808d99a6ada093867a6d6053473a2d201c16100800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1824303c48535c64676c6c6c6c6c6c6c6a62584d4135291d100400000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e585f626c6c6c6c6c6c6c64625a5045392d211508000000000000000000000000000000000000000000000000000000010d192430414e5a6774818d9aabada297877b6e6154535353535353535353535353535353535764717d8a97abaea399897c706356493d3023160a00000000000000000007121d28313c454d575f686d757c82878b8e909292929291908e8b87837d766e696673808d99a6ada093867a6d6053473a2d2c28211a1108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1a2733404c58646e7479797979797979746a5e5145382b1f12050000000000000000000000000000000000000000000000000000000000000000000000000815212e3b47535f6a7679797979797979716c6256493d3024170a00000000000000000000000000000000000000000000000000000000081724313e4a5764717e8a99a4afa9978b7e7164564d41464646464646464646464646434f596774818e9aa7ac9f92867a6d6053473a2d201407000000000000000000010c161f2a333c454d565d606b6f757b7e8183858586858483817e7b76706b615e6673808d99a6ada093867a6d6053473d3c38332c231a10050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a67748086868686868686796c5f5346392c2013060000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c868686868686867e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a86939faca89b8e8175685e52463c313939393939393939313a4854606b7884919eaba99d908376675d5145392c1f130600000000000000000000040d18212a333c444c52596063696e71747678797978787674716e696361595a6673808d99a6ada093867a6d60534d4a48443e352c21160b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d939393939286796c5f5346392c2013060000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8893939393938b7e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000713202d3946525e6876838f9ca9ac9f92867b6e61584e433a322c292424292c323a434e58636f7c8996a1aca6998c7f7266554b4035291d10040000000000000000000000060f18212a323a41454f54575e6165686a6b6c6c6c6b696765615e5759595a6673808d99a6ada093867a6d60595957554f473e33281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734414e5a6774818d9a9f9f9f9286796c5f5346392c2013060003050606050503010000000000000000000000000000000000000000000000000000000916222f3c4955626f7c88959f9f9f978b7e7164584b3e3125180b0000000000000000000000000000000000000000000000000000000005111d2a36414c5665717e8b97a1ada3998d80736a5f554c443d39352f2f35393d444c56606a75828f9ca8ab9f94887b6e6155483b2f24180c00000000000000000000000000060f1820282f353d43484d5254585b5d5f565d60666666666666666666666673808d99a6ada093867a6d6666666361594f44382c20140700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000205070e1b2734414e5a6774818d9aa7ac9f9286796c5f5346392c2013070c101213131211100e0b0a080400000000000000000000000000000000000000000000000916222f3c4955626f7c8895a2aca4978b7e7164584b3e3125180b00000000000000000000000000000000000000000000000000000000010d1925303a4753606d7985919ea8ab9f92867c6f675e564f47454041414045474e565d686f7c87939faca69c8f8276695f53463a2d1d12070000000000000000000000000000060d161e242932383b4246484b4e50525d686d737373737373737373737373808d99a6ada093867973737373706b6155483c2f23160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e1214151b2734414e5a6774818d9a9f9f9f9286796c5f5346392c201314191c1f1f201f1e1d1a171714110c050000000000000000000000000000000000000000000916222f3c4955626f7c88959f9f9f978b7e7164584b3e3125180b000000000000000000000000000000000000000000000000000000000008131f2c3845515c67727f8c96a0aba3989183796d68605953514b4e4e4b51535860686d7a84919aa4aa9f94897d7063574d42362a1e0b01000000000000000000000000000000040c131921272c30363a3b3e414754606d7a80808080808080808080808082909ca9b3a6998c80808080807d7063574a3d3024170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e2122252834414e5a6774818d939393939286796c5f5346392c1d202126292b2c2c2c2b29272423211c17100800000000000000000000000000000000000000050b16222f3c4955626f7c8893939393938b7e7164584b3e3125180e090300000000000000000000000000000000000000000000000000000004101c2934404b55606d79849199a3aaa09590837a706b64605d555b5b555d60636a6f7a828f96a0aca3988f82766b6055453b31261a0e000000000000000000000000000000000001080d161b1f252a2d2e323b4854616e7b878c8c8c8c8c8c8c8c8c8c8c90949fabb4a89c928c8c8c8c8c8074675a4e4134271b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c161b1f262a2d2e313537414e5a67748086868686868686796c5f53463924292c2d32363839393838363431302d28221a120800000000000000000000000000000000040a0f161c222f3c4955626f7c868686868686867e7164584b3e31251e1a140e090300000000000000000000000000000000000000000000000000000c18232f3945515c67707d87929fa4a79f9590847d75706d6769676869676d70757c848f949fa8a49f92867c6f62594f44332a1f140900000000000000000000000000000000000000040a0f141a1e20212e3b4854616e7b8794999999999999999999999c9fa6b0b9aea49c999999998d8174675a4e4134271b0e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121821272c31363a3b3e4144454c58646e7479797979797979746a5e5145382f35393a3f43454646454443413e3c39332c241a10050000000000000000000000000000060c161b21272c2f3b47535f6a7679797979797979716c6256493d322d2b261f1a140d050000000000000000000000000000000000000000000000000007121d2834404b55606b727f8c929da4a79f969189827d7a7675747475777a7d828991969fa6a49d928b7f726a5f53473d3321180e0300000000000000000000000000000000000000000002090e1215212e3b4854616e7b87949f9f9f9f9f9f9f9f9f9fa6a8aeb6b9afa7a2a09f9f9a8d8174675a4e4134271b0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c151d232832383b4246484b4e505152535c64676c6c6c6c6c6c6c6a62584d41313a4145474c4f5252535251504d4a49453e362c22170c000000000000000000000000030a111721272c33383940454e585f626c6c6c6c6c6c6c64625a5047433c3a37312a251f170f06000000000000000000000000000000000000000000000000010c18232e39434f59636d74808d929fa2a8a09e948f8a86838281818283868a8f949ea0a8a29f928d80746d62584e43352c210f06000000000000000000000000000000000000000000000000020815212e3b4854616e7b879393939393939393939393999ca4aeb2a79d95939393938d8174675a4e4134271b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161e272e343d43484d5355585b5d5e5f5f5f5e5d6060606060605f5e585047353e434c5154595c5e5f5f5f5e5c5a575550483e33281c110400000000000000000000040c151c232832383d44484b515356595c606060606060605c5b5855534e4846423c3631292117110a03000000000000000000000000000000000000000000000007121d27303d47515b606c77808a92979fa3a69e9c9992908f8e8e8f9092999c9ea6a49f98928b80776c605b51463c31231a0f00000000000000000000000000000000000000000000000000000815212e3b4854616e7b8686868686868686868686868d929ca8aea2958b86868686868074675a4e4134271b0e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28303940454f54575f6164686a6b6c6c6c6b6a6865625f5753514b4347343e474f555d6065696b6c6c6b6b696764615a5045392d211408000000000000000000040d161e262e343d43484f54555d606366686a6b6c6c6c6c6b696765625f5855534d46423b3328231c150c0300000000000000000000000000000000000000000000000b151e2b353f44505b656c737e858e92999ea1a8a39f9d9c9a9b9c9d9fa3a9a19e9a938f867e746c655b50493f342a20110800000000000000000000000000000000000000000000000000000714212d3a46535e6976797979797979797979797979808d99a6ada093867979797979746e64584c3f33261a0d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313a424b51596063696e71747778787978787674726e6965605c5550443f474f5961676d727678797978777674716c6155493c3023170a0000000000000000030d161f2830383f444e54596063676d707375777879797978777674726f6a67615f57534d453f342e261e150c0200000000000000000000000000000000000000000000030c192327333f49535b606c717a81878d9196989b9c9e9f9f9f9f9e9c9b9897928d87827b716c605b53493f372d22180e00000000000000000000000000000000000000000000000000000005121e2a36424d575e6c6c6c6c6c6c6c6c6c6c6c6c73808d99a6ada093867a6d6c6c6c67645c52473c3024170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c18242f3a434b545c606b6f757b7e8183848586858583817f7b77726d67615a504a4f59616b707a7f82848586858483807e7164574a3e3124170b00000000000000010b151f28313a424a505860626b70757a7d80828385858686858483817e7c78736e69615e5751443f3830261e140a0000000000000000000000000000000000000000000000071117222d384149505a61686e747b8084888b8e90919292929291908e8c8985817b756e69625a504941382d251b1006000000000000000000000000000000000000000000000000000000020e1a25313b454d535f606060606060606060606673808d99a6aca093867a6d6060605a58524a41362b1f14080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e2935404b555d666d747c82878b8e909192929291908e8b88847e79706c605c5454606b707d858c8f91929292918f8d83776a5d5144372a1e110000000000000007121d27313a434c545c606a6f767d8285898c8f909292939292918f8e8b8884807b756e69625b504a423830261c1106000000000000000000000000000000000000000000000006111b262f383f4450565e61696e73787c7f818384858686858483817f7c79746e6a615e5750443f382f261b1309000000000000000000000000000000000000000000000000000000000009141f29333b4246485353535353535353535a6673808d999f9f9f93867a6d6053534e4c4741382f241a0e03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303845515d676d7881898f939a9b9d9e9f9f9f9e9d9b9895918b857d746d665c5c66707d8792979c9e9f9f9e9e9c9084776a5d5144372a1e11000000000000040e18242f39434c555d666d737c83898e9298999b9d9e9f9f9f9f9e9c9a9896918d87817b726d605c544a42382e23170d0400000000000000000000000000000000000000000000000a141d2d373f454a4c52575e61656c6f7274767878797978787675726f6d66625f58534d514c463d341d140a080000000000000000000000000000000000000000000000000000000000030d17212931363a3b46464646464646464d5a6673808d9393939393867a6d605347413f3c362f261d13080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3842505a606d79828d929c9fa4acaaa39f9d9c9b9c9e9fa09d97918a81786d67606d79849199a2a9a9a29f9895949084776a5d5144372a1e110000000000020c16202935404b555d676d78808790959b9fa2a9a19e9c9b9a9a9b9d9fa3a8a19e99938e867f746d665c544a3f34281f160c0100000000000000000000000000000000000000000005111d29343f49515658606060605b60626568696b6c6c6c6c6b69686562605c546060605f5d574f463b3024180c000000000000000000000000000000000000000000000000000000000000050f171f252a2d2e39393939393939404d5a66738086868686868686796d6053473a2d302b241d140b01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626c75818e949da4aca79f9d9892908f8f8f9193999a9f9e938e81796d64717d8a96a0ababa297928b88878883776a5d5144372a1e11000000000008131e28323a45515d676d79828d93999fa7a39f9a97928f8e8d8e8f9092999c9ea6a49f98928b81786d665c50443e31281d13070000000000000000000000000000000000000000000915222e3a45515b62656c6c6c6c67605c555b5d5e5f5f5f5f5e5d5b595960636b6c6c6c6c6961574c4135281c1003000000000000000000000000000000000000000000000000000000000000050d141a1e21212d2d2d2d2d2d323f4b58636e737979797979797976675c5145382c1f1f1a130b0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c66717e8b939ea6aea49d95908a86838282838486898d92989f938e81756d75828e9ba8afa39992857f7b7a7b7d706356493d3023160a00000000010d1925303a44505a606d79828f949fa4a79f99928d8885838181818283868a8f949ea0a8a29f938e81786d605a50433a2f24180d0100000000000000000000000000000000000000000b1824313d4a56626d7279797979746d675f57505152535352514c535b606b6f787979797873695d5144382b1e12050000000000000000000000000000000000000000000000000000000000000003090e1214152020202020232f3b47525c63666c6c6c6c6c6c6c6c5c554b4034291c100e0801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7884919ea5afa69d928d837d7977757576777a7d81858d9299938c7f727885919eabac9f92877c726e6e6e706b6054483b2f2216090000000005111d2935414c56626c75818e949fa6a69f959086817c797674747475777a7d828991969fa7a59e938d80736c61554b4035291d120700000000000000000000000000000000000000000c1825323f4b5865727e8686868681796e69615a514b433f444e565e656c727d8486868685786c5f5245392c1f12060000000000000000000000000000000000000000000000000000000000000000000205070813131313131f2a36404a52585a606060606060605f514b43392f23180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495364717e8b96a1acab9e948d8078706d67696869676d70747a8087919593877c7a8796a1ada89c8f82756a6261626360594f44382c201307000000000713202d3946525e68717e8b939ea6a89f948f837b746f6c6568676768676d70757c8490959fa8a59d928a7d70675d5145392f24180c00000000000000000000000000000000000000000714202d3a4753606d79839097928d837b716c605d554e49505860686d777f879196928b7e7165584b3e3225180b0000000000000000000000000000000000000000000000000000000000000000000000000000060606020e19242e3840474b4d535353535353535345403931271d120700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6575828f9ba8afa4998f82776d66605c555c555d6063686d737c83909490837c8895a9b2a5988b7f726558545556544f473d32271b100400000005111d2935414c56616d7a85929fa5aca0968f82796e6962605b535a5b555d60636a6f7a839096a1ada49e9184796d60554b4035291d1004000000000000000000000000000000000000000613202c3945515d676e7b8591989590867e746d675f58535b606a6f7a828c9299938d80736c6256493d3024170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000008121c262e363b3f40464646464646464638342f271f150b010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929eabac9f93877b6e655c54514b4f4b5153565d616a6f7a8290959083909da9afa396897c70635649484948443d352b21160b000000000713202d3946525d6874808d97a2ada59d9184796d675f575350494e4e4b51535860686d7a84919ea6ada1968c7f73675d5145392c1f13070000000000000000000000000000000000000004101d2935404b555e696f7c86929a98928a81796f6a625d656c727c848f949f958f82786c605a5045392d211506000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141c242a2f323339393939393939392c29231d150d03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8897a1ada99d9083766a5f534a4540424045474c52585f686d7983909590959fabaea195887b6e6255483b3d3b38322b23190f04000000000714212e3a4754616d7a86929fa9aa9e93897c6f675d554d46443f41414045474e565e68707d8a949faba89e9285796d6053473a2f24180c00000000000000000000000000000000000000010d18242f39434d57606a717e88939f9f938e837c716c686d777f8791969e979083796d665b50483f312a2217110a020000000000000000000000000000000000000000000000000000000000000000000000000000000000020a12191f2326272d2d2d2d2d2d2d2d1f1c18120b0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a9b3a79a8d807467574e4138342f35393a41464e565d676e7b86929d9fa7b1aea194877b6e6154483b302f2c27211911070000000005121e2a36424d5765727f8c98a2aea89b8f82756b60554b433c37332d2f35393d444c56616b7683909caaada1978a7e7164554b4035291d10040000000000000000000000000000000000000007121d28313b454e58616c737f8c939e9d9591867e75707a828c9299a19891857b6e675d54514c433c3428231c140c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000080e1317191a202020202020202013100c07010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a5998c7f7266594c3f2f2824292c30353c444c555f69727f8b96a1acb9aea194877b6e6154483b2e21201b160f0700000000000714212d3a46535e697783909daaaca196897c6f63594f433a312b272224292c323a444f5964717e8a98a2aea99c8f8275675d5145392c1f130600000000000000000000000000000000000000010c161f29333d46505a636d75818e959fa098928b817d848f949fa39a92867c6f696c68605d554e463e342e261e160e0700000000000000000000000000000000000000000000000000000000000000000000000000000000000002070a0c0d131313131313131306040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a5988c7f7265594c3f2e23181d1f2429323a434d57606d7984919eacb6aea194877b6e6154483b2e2115100b040000000000000815212e3b4854616e7b8795a0abab9e9184786c6053463d31281f1b17181d2029323e4753606d7985929facac9f92867a6d6053473a2d2014070000000000000000000000000000000000000000040d17212b343e48515b606d79839096a1a29f938e8991969ea59f93887e77797979756d675f5850443f3830282019100900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96abb5a6998c807366544a3f3428211e1a192028313b45515c66727f8c9aa4afaea194877b6e6154483b2e21150800000000000000000b1825313e4b5864717e8b97a7b1a79a8d8074655b5044372b1f160f0b0c1017202c3845515d6775828f9ca8aea399897d7063564a3d3023170a000000000000000000000000000000000000000000050f19222c364045515c676d7a849198a2a59e9b969ea1a79e938c7f778386868682796e6a615a504a423a322b221b120a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8899a4afa89b8e8275665c50443a322d2a262727262834404b54616e7b87939facaea194877b6e6154483b2e21150800000000000000030f1b27333f49536874818e9ba7b4aa978a7d716453493f3327190d04000005101d2935404b5566727f8c99a5b5ab998c807366594d4033261a070000000000000000000000000000000000000000000007101a242834404b555e686f7c869299a39f9f9f9fa89f958e8175707d8a94938f847c716c605c544c443d342d241c130a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facab9e9285796d60564c443d3a3631343333322e3946525e697784919daaaea194877b6e6154483b2e2115080000000000000005121f2b3744505b657783909daaaea298877b6e6154483b2d221708000000000c18242f3d4a5663707d8996abb5a89b8e8275685b4f422f24180d0100000000000000000000000000000000000000000000081218232e39434c565f6a707d8792939393939393969083796d6b75828f999691867e736d665e564e463f362d251c110700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677783909dabada1978a7e71685d564f484642424140403f3f3f424d566875818e9ba8aea194877b6e6154483b2e211508000000000000000613202d394653606c7985929facac9f928579695e53463a2d211406000000000715212e3b4854616e7b8799a3aeaa9d9184776a554b4035291d1004000000000000000000000000000000000000000000000007121d27303a444e58616b727f8686868686868686847a6d67626e7b87929f98928a80786d68605850483f372d23180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414b556673808c99a3afa99e91847a6d68605955534d4f4d4d4c4c4c4b4b4d5a6774808d9aa7aea194877b6e6154483b2e211508000000000000000814212e3b4754616e7a8798a2aeaa9d9084776a574d42362a1e1205000000000613202d394653606c7986929facac9f928579675d5145392c2013060000000000000000000000000000000000000000000000000b151e29323c464f59626d727979797979797979786d685e5f6973808d97a19f928d827a6f6a625a51493f352a1e120600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3b4854616e7b86929fa8aca19690827a706b65615f575b5a5a5959585858585a6673808d99a6aea194877b6e6154483b2e211508000000000000000916222f3c4955626f7c8895aab4a99c8f8276695c4f4331251a0e020000000006121f2b3844505b667884919eabaea298867a6d6053473a2d201407000000000000000000000000000000000000000000000000030c17202a343e47515b62656c6c6c6c6c6c6c6c6b615e5657606d7a85919ea49d948f847c716c635b51463a2e22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e6974818d96a1aaa89f9490847d76726e696a686766666565656564646673808d99a6aea194877b6e6154483b2e211508000000000000000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b090000000000030f1c28333f4a546a7784909daab4aa94877b6e6154483b2e21150800000000000000000000000000000000000000000000000000050e18222c353f4951565860606060606060605e54524c515d67717e8b959393939691867e726d63574a3e3125180c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d57606d7a849198a1a9a69f969189837e7b7876757473737272727171717173808d99a6aea194877b6e6154483b2e211508000000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e0100000000000b17222d43505d697683909ca9aea195887b6e6255483b2f22140c050000000000000000000000000000000000000000000000000006101a232d373f464a4c5353535353535353514746414b55606c778386868686868686867f7265594c3f3226190c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b45525d686f7c8692979ea6a8a09e95908b8885838280807f7f7f7e7e7e7e7d7d818e9ba8aea194877b6e6154483b2e211508000000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000000061d293643505c6976838f9ca9afa295887c6f6255493c2e261e170f060000000000000000000000000000000000000000000000000008111b252d343a3e3f4646464646464646453a393a44505b656c767979797979797979726d63574a3e3125180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2935414c565f6a6f7c858f949c9fa4a79f9d989792908e8d8d8c8c8b8b8b8b8a8a8a8e939eaaaea194877b6e6154483b2e211508000000000000000b1825323e4b5865717e8b98a4b1a69a8d8073675a4d4034271a0d010000000003101c2936434f5c6976828f9ca9afa295897c6f6256493f38302921180f060000000000000000000000000000000000000000000000000009131b23292e31323939393939393939382e2d333f49535b606a6c6c6c6c6c6c6c6c65635b51463a2e221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d19242f3a434e58606a6f7a82898f939a9c9fa2a9a29f9d9b9a999998989898979797979b9ea5afaea194877b6e6154483b2e211508000000000000000b1825313e4b5864717e8b97a4b1a79a8d8074675a4d4134271a0e010000000003101d293643505c6976838f9ca9aea295887b6f6256504a423b332a21180f05000000000000000000000000000000000000000000000000010911181e2225252d2d2d2d2d2d2d2d2b21222d38414950535d6060606060606060595751493f352a1e12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313c464e5860686e757d82878c8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abaeb6aea194877b6e6154483b2e211508000000000000000b1724313e4a5764717d8a97a4b0a79a8d8174675a4e4134271b0e010000000003101d2a3643505d697683909ca9aea195887b6e68605c544d453c332a21170c0300000000000000000000000000000000000000000000000000070d1216181920202020202020201e141b262f383f44465053535353535353534c4a463f372d23180d0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343c464e565e616b70767b7f8385888a8c8d8f8f9090919191919292929292999ca4aeaea194877b6e6154483b2e211508000000000000000a1724303d4a5763707d8a96a3b0a89b8e8175685b4e4235281b08000000000004111d2a3744505d6a7783909daab3a79a8d807a736d665e574e453c33291e150b00000000000000000000000000000000000000000000000000000106090b0c1313131313131313120a141d262d3337394346464646464646463f3e3a352d251c1107000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18222b343c444c52596063696e7276797c7d7f81828383848484848585858585868d929ca8aea194877b6e6154483b2e211508000000000000000916232f3c4956626f7c8995abb5a89c8f8275695c4f423025190e020000000005111d2935414c566b7784919eaab7a99d928d867f786e695f574e453b30271c1207000000000000000000000000000000000000000000000000000000000000060606060606060605020b141b22272b2d37393939393939393932312e2a231c130a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a323b41464f54575f6165666d6f71737475767677777778787878797979808d99a6aea194877b6e6154483b2e211508000000000000000815212e3b4854616e7b8799a3afaa9d9083776a564c41362a1e1105000000000713202d3946525e687985929facafa59e9b98928c837b6e6a5f574d42392e23180c02000000000000000000000000000000000000000000000000000000000000000000000000000000020a11171b1f202a2d2d2d2d2d2d2d2d2625221e18110a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d1720293036393a3e3f44484d5355545c606264666768696a6a6a6b6b6b6b6c6c6c73808d99a6aea194877b6e6154483b2e211508000000000000000713202d3a4653606d7986929facab9f928578685e5246392d201407000000000714212e3a4754616d7a8798a2aeaa9e938f8b929590847c6e695e544a4034281e13080000000000000000000000000000000000000000000000000000000000000000000000000000000000060b0f12131d2020202020202020191816120d07000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f6673808d99a6aea194877b6e6154483b2e2115080000000000000006121f2c3844515c667784919daaada297877a6e6154473b2e21140a00000000091623303c4956636f7c8996aab4a89b8f817e85909591857b6e665c51443a3025190d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000305061013131313131313130c0c0906010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525a6774818d9aa7ada194877a6e6154473b2e2114080000000000000004101c2834404a546875828e9ba8b3a9968a7d7063574a3d31261b0d040000030f1b27333f495365717e8b98a4b5ab998c7f737b8390959083786d60564c4135291d11050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c565e6164656768696a6b68655d534840414243434444444545454e5b6875818e9ba8b3a994877a6d6154473a2e21140700000000000000000c18232e3f4c5865727f8b98a8b2a6998d807366584e43372b1f15100c0b0f141f2b3744505b6574818e9ba7afa399897d706e798390958c7f73685e5246392d20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a131313131313130a09070400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e686d71727374767778756f65594d3c323536373737383837424d576976838f9ca9ada19786796d6053463a2d20130700000000000000000716222f3c4955626f7c8896a1acaa9d9083776a5f53473c31271f1c18171b1f2630394653606c7884919eabac9f92867a6d676e7b869292857a6d6154473c32271b0f030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161720202020202020171613100b050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372d2c2823292c303847535f697885929eabab9e918578665c5145382c1f130600000000000000000613202d394653606c7884919eabaca095887c6f62584e4339302c282322272b2f38424d57626f7c8996a1adaa9c8f8376675f6973808d988c807366584e43372b1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810161c2023232d2d2d2d2d2d2d2322201c160f0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b888c8d8e8f909184776a5f53473f3a38342f34383a424c56626e7b8897a2ada99c90837669544b4034281c1004000000000000000005121f2b3744505b6573808d99a4afa79a8e81746a5f554b423c38342e2d33373b414a545f6974818e9ba8aea2988b7e726557626e7b88969184776a6054473b2e22150800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a21272c2f3039393939393939302f2c2721191108000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697884919a9b9c9d96887c6f625a504a46443f434045474c545e6873808d99a9b2a89a8d8073675a4d402e23180c000000000000000000030f1b27333f4953616e7b87939fabac9f92877c6f675c544e46444041413f44464c535c666e7b86929facaa9f92867a6d60575f6a78849196887c6f6255493c2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a232c33383c3d464646464646463d3c38332b23190f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576874818e9ba6a9a89b8e81756c605b5453504a504b5153565e666d7a85929eabaca196897c706356493d30231607000000000000000000000b17222d3847535f6975828f99a3aea3999083796d665f5753514a4e4e495053565e656d78829099a3aea2988d81746861646c6c75828f988b7f7265584c3f3225190c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212c353d44484a535353535353534a48443d352b21160b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313c4955626f7c88949faaaa9e938a7e726c6662605c545d555c6063686d78828f97a1ada89e9184786d6053463a2d2013070000000000000000000006111b2b37424d57626e7b87929fa6ab9f958f81786e6a63605c545b5a535b6062686e77818e949faba69f92867b6e616c70797979818e9a8e8174675b4e4134281b0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c27333d474f55566060606060606056544f473d33271c10040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222e3b4754606a76828f98a3aea59f92877f78726e6d666a696a676d6f747a828f949ea9aaa0968b7f72665c5044382b1f120600000000000000000000000e1a26313c47535f6a73808d949fa8a79e938f837b74706d6668676768656c6f737a828e939da6a89f948c7f726964707d8686868e939c8f8376695c504336291d10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202c38444f5961636c6c6c6c6c6c6c6360594f44382c20130700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e58626f7c86929fa4aea399928b837f7b797777767777797c80868f949ea6aba3989184796d60544a3f34281c1003000000000000000000000009151f2b37424e57606d78829096a0a7a69e959087817c79767574747576797c80868f949da5a8a0969082786d6064707d8a93939b9e9d9083776a5d5044372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4855616b7079797979797979706b6054483c2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323c47535f6a717e8b929fa3aaa39f95908c8886848383838486898d92989fa6a9a29992867c6f665c5142382e23170b000000000000000000000000030e1a26313c44515c666e7a8490959ea5a79f99928e898583828181818385888d92989ea6a59e9691847a6d665c64707d8a979fa8aa9e9184776b5e5144382b1e11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d868686868686867d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202b37434e58626c737f8a92989fa4a7a09d989992919090909192999a9fa2aaa59e9792877e716a60544b4030261c1106000000000000000000000000000915202834404a545e686e7b838e939da0a7a39f9b9892908e8e8d8e9092979a9fa2a8a09e938f847b6e685e5464707d8a97a3acab9e9184786b5e5145382b1e12000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d899393939393897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f1b26323c46505a636d737e868e93999ea0a8aba39f9e9d9c9d9e9fa3aba9a29f9a938e857d716c61584e42392e1e140a0000000000000000000000000000030c18232e39424c565e696e79818990959b9fa2aaa29f9d9b9a9a9b9c9ea1a9a39f9c96918a827a6e695e565764707d8a979f9f9f9e9184786b5e5145382b1e12000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d89969f9f9f96897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343f48525b636c717b81878d9196979a9c9d9e9e9f9f9f9e9d9b9997928e88817b706b615a50463c30271d0c0200000000000000000000000000000007121c27303b444d565e676d747d83898e9298999b9d9e9f9f9f9f9e9d9b9999928f8a847e756d685e574d5764707d8a93939393939184786b5e5145382b1e12000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3aca396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18222d364049525a61696e747b8084888b8d8f90919292929291908e8c8985817c756e69615950483e342b1e150b00000000000000000000000000000000000b151e29323b444d555d606b70777d8285898c8e90919292929291908f8c8a86827e78716c605d564d4a5764707d8686868686868684786b5e5145382b1e12000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101b242e37404850575e616a6e73777b7e80828484858686858483817f7c79746f6a615e574f473e362c22190c030000000000000000000000000000000000030c172029323b434b515960636b7075797d7f82838585868685858382807d7a75716d66615a524c434955616c70797979797979797872685c5043372a1d11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f1a252f3941484d4d53585f62666a6f717375777878797979787675726f6d66625f58524d46423b33291f140900000000000000000000000000000000000000050e172029313940454f54596063676d70737576787879797978777573706d6764605c545045413a44505a61646c6c6c6c6c6c6c6b6860564b3f33271b0f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202c37414b53595b6060605f585f626467696a6b6b6c6c6c6b6a686663605c606060605f524d453b30251a0e0200000000000000000000000000000000000000050e171f272f353d44484f55555d606366686a6b6c6c6c6c6b6a686663605d5553504a423e35333e48505557606060606060605e5c564e443a2f23170b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1825313d48535d65686c6c6c6c65625b585a5c5d5e5f5f5f5f5e5d5b575f616a6c6c6c6c6c5e574d42362a1e12050000000000000000000000000000000000000000050d151d242933383d44484b515356595b5d5e5f5f5f5f5e5d5c595754514b46443f3830292c363e44494a5353535353535351504b443c32281d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010e1b2734404d59656f7579797979726d615e564f5151525353524a505a61696e777979797976695e52463a2d201407000000000000000000000000000000000000000000030b121821272c3338394045474a4c4f50525253535252504f4d4a4745413a38342e261e232c33393c3d4646464646464645433f3a322a20160c01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1c2835424f5b687581868686867f756d686059514b4246454d545c606c707b83868686867b6e6154483b2e2115080000000000000000000000000000000000000000000001070c161c21272c2f35383a3d4042434545464646454442403d3a39352f2b28231c141a22282d3031393939393939393837332f2820180f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b859298928b827a706b605c544d444f575e666d737e859095948d8073695e52463a2d201407000000000000000000000000000000000000000000000000050b10161c1d24292c2d30333537383939393938373533302d2c29241f1c17110a10171c2023242d2d2d2d2d2d2d2b2a27231d160f060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f696f7d869299948f857d736d665f57505960696e78808a9297958f82786c60574d42362a1e12050000000000000000000000000000000000000000000000000000050b1012181d1f202326282a2b2c2c2c2c2b2a29262421201d1813100b0600050b10141617202020202020201e1d1b17120c05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424d57606b717e87939f97918880796e69625b606b707b828d929f979083796d665b50453b30251a0e020000000000000000000000000000000000000000000000000000000001070c10131417191c1d1f1f20201f1f1d1c1a171413110d0703000000000004080a0a1313131313131312110f0b070100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313c454f59616c727f8c929d9a938d837b716c666c737d8590949d9891857b6e675d544a3f33291f140900000000000000000000000000000000000000000000000000000000000000000406070a0d0f10121213131312110f0d0a0706040100000000000000000000000606060606060605040200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915202a333d47505a626d74808d939e9f9590867e756e78808792979f9f92867c6f695e554b42382d21170d02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18212b343e48515b606c78818e949fa098928b817b828c9399a19c928a7e716a60574d433a2f261c0f05000000000000000000000000000000000000000000000000000000000000000000030608090c0e10111213131212110f0d0b0807050200000000000000000000000000000000000000000000000000000000000000000000000000000000000003060809131313131313130b0a080500000000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f19222c363f44505b666d79829096a0a29f938e888f949fa49e938c80736c61584e453b31281d140a0000000000000000000000000000000000000000000000000000000000000002050a0f121515181b1d1e1f20201f1f1e1c1a181514120e09050100000000000000000000000000000000000000000000000000000000000000000000000000040a0f13151620202020202020181714110c060000000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101a2428333f4a545c676d7a849197a1a59e9b959c9fa69f958e81776c605a50463d33291f160b02000000000000000000000000000000000000000000000000000000000003090e12151b1f21222528292b2c2c2c2c2b2b29272521201e1a14110d080200000000000000000000000000000000000000000000000000000000000000000000070f161b1f22232d2d2d2d2d2d2d2423211d17100800000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081217222d38424b555e686e7b859298a29f9f9f9faaa1969083796d655b50483e342b21170d040000000000000000000000000000000000000000000000000000000002080d141a1e20262b2e2f323436383939393938373633312e2d2a25201d19130d08020000000000000000000000000000000000000000000000000000000000000007101920272b2e2f3939393939393931302d28221a1208000000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c262f39434c565f696f7c86929993939393939891847a6e675c53493f362c22190f0500000000000000000000000000000000000000000000000000000000050d13191f252a2d31373a3c3f41434445464645454442403e3b3a36302d29251e19130c040000000000000000000000000000000000000000000000000000000000040f19222b32383b3c464646464646463e3d39332c241a10060000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a141d27313a444d57606a707d8686868686868686857c6f685e554b41382d241a100700000000000000000000000000000000000000000000000000000000060e171e252a30363a3c4347484b4e50515253535252514f4d4b4846423b39353029241e160e07000000000000000000000000000000000000000000000000000000000a16202b343d434749535353535353534b49453e362c22170c0000000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020b151f28323b454e58616b707979797979797979796f6a5f564c43392f261b1208000000000000000000000000000000000000000000000000000000020a1117202930363b4246484e5355585b5c5e5f5f5f5f5e5e5c5a5854524d4746413a353028201911090100000000000000000000000000000000000000000000000000030f1b27323d464e545660606060606060575550483e33281d110500000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d162029333c464f5961636c6c6c6c6c6c6c6c6c625f584e443b31271d140a000000000000000000000000000000000000000000000000000000020b141b2227323a41464d5254585f626567696b6c6c6c6c6b6a696664615e5754524c46413a322b231b13090000000000000000000000000000000000000000000000000006131f2b38434e5860626c6c6c6c6c6c6c64615a5045392d21140800000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e17212b343e474f55575f606060606060605f55534e463c32291f150b020000000000000000000000000000000000000000000000000000020b141d262d333e444c52575e61666a6f727476777879797878777573716e6966615e56524c443d352d251b13090000000000000000000000000000000000000000000000000815222e3b4754606a6f79797979797979716c6155493d3023170a00000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060f19222c353e44484a5353535353535353524847433c342a20170d030000000000000000000000000000000000000000000000000000000a141d262f383f4450565e61696e73777b7e81838485868685858482807e7b77736d68615d564f473f372d251b110800000000000000000000000000000000000000000000000916232f3c4956626f7c868686868686867e7164574b3e3124180b00000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007101a232c33383c3d4646464646464646463c3b37322a22180e0500000000000000000000000000000000000000000000000000000006111b262f384149505a61686d747b8084888b8e8f919292929291918f8d8b87837f7a736d68605951493f372d231a0e04000000000000000000000000000000000000000000000916232f3c4956626f7c8993939393938a7e7164574b3e3124180b00000000000000000000000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008111a21282c2f303939393939393939392f2e2b2620181006000000000000000000000000000000000000000000000000000000030c17222d384149535b606c717a81868d9196989a9c9e9f9f9f9f9e9d9c999795908c86807a706b625b51493f352c20160c020000000000000000000000000000000000000000000916232f3c4956626f7c89959f9f9f978a7e7164574b3e3124180b00000305060605050301000000000000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000810161c2023242c2d2d2d2d2d2d2d2c22211f1b150e06000000000000000000000000000000000000000000000000000000000b151e27333f49535b656c737e858e92999ea0a8a9a19e9d9c9b9c9d9fa2aaa7a09d98928d847d726d625b51473e32281e13080000000000000000000000000000000000000002050916232f3c4956626f7c8995a2aca4978a7e7164574b3e3124180b070c101213131211100e0b0a08040000000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050b1014161720202020202020201f1515120f0a040000000000000000000000000000000000000000000000000000000007121d27303944505b656c77808a92979fa3a8a19e999792908f8f8f909298999da0a7a29f9691877f726d62594f443a3024190d020000000000000000000000000000000003090e121416232f3c4956626f7c89959f9f9f978a7e7164574b3e3124181314191c1f1f201f1e1d1a171714110c05000000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000407090a131313131313131313090806030000000000000000000000000000000000000000000000000000000000000c18232e39424f59606c77808d929fa2a9a39f96918c8885838282838385888c91959ea1a8a199938b7f726b61564c4135291f14090000000000000000000000000000040a0f141a1e2122252f3c4956626f7c8993939393938a7e7164574b3e31241d202126292b2c2c2c2b29272423211c1710080000000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c2834404b54606b737f8c929da4a9a299928c847f7b787675757677797b7f848b9297a0a7a49f93887d70685d52453b30251a0e02000000000000000000000000070c161b1f262a2d2e31353c4956626f7c868686868686867e7164574b3e3124292c2d32363839393838363431302d28221a120800000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020507080b0e111212131212100e0c0808060200000000000000010406070c101213131211100e0b0a08040000000000000000000006131f2c3845515c66707d87939fa4aba29792877f79726e696a696869666c6e72787e859095a0a8a49a91847a6d60574d42362a1e110500000000000000000000030b121821272c31363a3b3e41444754606a6f79797979797979716c6155493d302f35393a3f43454646454443413e3c39332c241a1005000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003090e121415181b1d1e1f201f1f1d1b191514120e090400000001080d111314191c1f1f201f1e1d1a171714110c050000000000000004101c2834404b54606d79849199a4aea39992857d726d67625f575c5c545b6062666c717b839095a0aaa1968e8174695e52463a2d201407000000000000000000040c151d232832383b4246484b4e50514e5860626c6c6c6c6c6c6c64615a504539313a4145474c4f5252535251504d4a49453e362c22170c000000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040a0f141a1e212225282a2b2c2c2c2b2a282522211e1a15100c07040c13191d202126292b2c2c2c2b29272423211c17100800000000000006131f2c3845515c66727f8c96a0aba89f92877d6f6b605c55534d4f4f4a5053545b60696e7a839198a3a39f92867b6e6154473b2e2114080000000000000000040d161e272e343d43484d5355585b5d5e5f5f5f5e60606060606060575550483e353e434c5154595c5e5f5f5f5e5c5a575550483e33281c11040000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070c161b1f262a2d2e31353738393939383735322f2e2b261f1c18120d161e24292c2d32363839393838363431302d28221a120800000000000713202d3a4653606d7984919ea8aca1968c80736b6059514b474242423f44464a50575e686e7b86929a99928f8b8073665a4d4033271a0d00000000000000010c161f28303940454f54575f6164686a6b6c6c6c6b6a6865625f5753514b433e343e474f555d6065696b6c6c6b6b696764615a5045392d2114080000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030b121821272c31363a3b3e4144454546454543413f3b3a37312c29231d1a1f282f35393a3f43454646454443413e3c39332c241a100500000004111d2935414c5564717e8a96a1adaa9e9184796d60594f45403937312d3338393f444d565f6973808c8e8a86827f7b6e6155483b2e2215080000000000000007131d28313a424b51596063696e71747778787978787674726e6965605c5550443f474f5961676d727678797978777674716c6155493c3023170a0000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040c151d232832383b4246484b4e505152535252504e4c4847423c38342f27232c313a4145474c4f5252535251504d4a49453e362c22170c0000000613202c3945515d6775828f9ca8aea2988b7e71675d51473d342e2b2622282b2d333b444d57616d7a84817d7a76726e695f53463a2d211407000000000000030c18242f3a434b545c606b6f757b7e8183848586858583817f7b77726d67615a504a4f59616b707a7f82848586858483807e7164574a3e3124170b0000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d161e272e343d43484d5355585b5d5e5f5f5f5e5d5b5855534d474540393128353e434c5154595c5e5f5f5f5e5c5a575550483e33281c110400000714212d3a4754606d7a86929facac9f92857a6d60554b403528231d1a171c1f2228323c46525e686d7774706d6765615f574d42372b1e12050000000000000a151e2935404b555d666d747c82878b8e909192929291908e8b88847e79706c605c5454606b707d858c8f91929292918f8d83776a5d5144372a1e110000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f28303940454f54575f6164686a6b6c6c6c6b6a6865625f5753514b433e343e474f555d6065696b6c6c6b6b696764615a5045392d21140800000a1724303d4a5763707d8a99a3aea89b8e8175675d5143392f23181d1d1d1d1d17202a36414c565e616b6764605d5555534d453c31261a0e02000000000006111c26303845515d676d7881898f939a9b9d9e9f9f9f9e9d9b9895918b857d746d665c5c66707d8792979c9e9f9f9e9e9c9084776a5d5144372a1e110000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007131d28313a424b51596063696e71747778787978787674726e6965605c5550443f474f5961676d727678797978777674716c6155493c3023170a00010d1a2734404d5a6773808d9aabb4aa978a7e7164554b4031272a2a2a2a2a2a2a2a2a25303a444c52545e5b5753514b4846423c332a1f14090000000000000c17232e3842505a606d79828d929c9fa4acaaa39f9d9c9b9c9e9fa09d97918a81786d67606d79849199a2a9a9a29f9895949084776a5d5144372a1e110000000000000a1723303d4a5663707d8996a3b0a396897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c18242f3a434b545c606b6f757b7e8183848586858583817f7b77726d67615a504a4f59616b707a7f82848586858483807e7164574a3e3124170b0004101d2935404b556976828f9ca9aea298887b6e6255483b2f373737373737373737373737323a414647514e4a4745403b3a373128231c140c020000000003101c28343f4a54626c75818e949da4aca79f9d9892908f8f8f9193999a9f9e938e81796d64717d8a96a0ababa297928b88878883776a5d5144372a1e110000000000000a1723303d4a5663707d8996a3aca396897d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a151e2935404b555d666d747c82878b8e909192929291908e8b88847e79706c605c5454606b707d858c8f91929292918f8d83776a5d5144372a1e110006131f2c3845515d677885919eabac9f9285796c6053464444444444444444444444444444444444444444444444444444443a38342e261e140a0000000006121f2c3844505c66717e8b939ea6aea49d95908a86838282838486898d92989f938e81756d75828e9ba8afa39992857f7b7a7b7d706356493d3023160a0000000000000a1723303d4a5663707d89969f9f9f96897d7063564a3d3023170a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111c26303845515d676d7881898f939a9b9d9e9f9f9f9e9d9b9895918b857d746d665c5c66707d8792979c9e9f9f9e9e9c9084776a5d5144372a1e11000714202d3a4753606d7a8696a1adaa9d908377665b505050505050505050505050505050505050505050505050505050505046443f3830261c11060000000713202d3a4653606d7884919ea5afa69d928d837d7977757576777a7d81858d9299938c7f727885919eabac9f92877c726e6e6e706b6054483b2f2216090000000000000a1723303d4a5663707d899393939393897d7063564a3d3023170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c17232e3842505a606d79828d929c9fa4acaaa39f9d9c9b9c9e9fa09d97918a81786d67606d79849199a2a9a9a29f9895949084776a5d5144372a1e11000815222e3b4855616e7b8894a9b2a99c8f837669545d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d5d53504a42382e23170b0000030f1b27333f495364717e8b96a1acab9e948d8078706d67696869676d70747a8087919593877c7a8796a1ada89c8f82756a6261626360594f44382c2013070000000000000a1723303d4a5663707d868686868686867d7063564a3d3023170a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003101c28343f4a54626c75818e949da4aca79f9d9892908f8f8f9193999a9f9e938e81796d64717d8a96a0ababa297928b88878883776a5d5144372a1e11000916232f3c4956626f7c8995a2afa89b8f82756a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a6a605c544a3f34281c10030005121f2b3744505b6575828f9ba8afa4998f82776d66605c555c555d6063686d737c83909490837c8895a9b2a5988b7f726558545556544f473d32271b10040000000000000916232f3c4855616b7079797979797979706b6054483c2f2216090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121f2c3844505c66717e8b939ea6aea49d95908a86838282838486898d92989f938e81756d75828e9ba8afa39992857f7b7a7b7d706356493d3023160a000a1723303d4a5663707d8996a3b0a79b8e8177777777777777777777777777777777777777777777777777777777777777776d665c5044382b1f1206000613202d394653606c7985929eabac9f93877b6e655c54514b4f4b5153565d616a6f7a8290959083909da9afa396897c70635649484948443d352b21160b000000000000000714202c38444f5961636c6c6c6c6c6c6c6360594f44382c201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3a4653606d7884919ea5afa69d928d837d7977757576777a7d81858d9299938c7f727885919eabac9f92877c726e6e6e706b6054483b2f221609000a1724313d4a5764707d8a97a3b0ab9e92858383838383838383838383838383838383838383838383838383838383838383786d6053463a2d201307000815222e3b4855616e7b8897a1ada99d9083766a5f534a4540424045474c52585f686d7983909590959fabaea195887b6e6255483b3d3b38322b23190f040000000000000004101c27333d474f55566060606060606056544f473d33271e160e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f495364717e8b96a1acab9e948d8078706d67696869676d70747a8087919593877c7a8796a1ada89c8f82756a6261626360594f44382c201307000b1724313e4a5764717d8a97a4b0ada197929090909090909090909090909090909090909090909090909090909090909086796c605346392d201306000916232f3c4956626f7c8995a9b3a79a8d807467574e4138342f35393a41464e565d676e7b86929d9fa7b1aea194877b6e6154483b302f2c27211911070000000000000000000b16212d3945505a61646c6c6c6c64625a5046423b36302820170e050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121f2b3744505b6575828f9ba8afa4998f82776d66605c555c555d6063686d737c83909490837c8895a9b2a5988b7f726558545556544f473d32271b1004000b1724313e4a5764717d8a97a4b0b3a9a19e9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d9d928679655b5044372b1f1205000a1724303d4a5763707d8a96a3b0a5998c7f7266594c3f2f2824292c30353c444c555f69727f8b96a1acb9aea194877b6e6154483b2e21201b160f07000000000000000000000a1723303c4955616c7179797979716c6255534d46413a322920170d020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202d394653606c7985929eabac9f93877b6e655c54514b4f4b5153565d616a6f7a8290959083909da9afa396897c70635649484948443d352b21160b00000a1724303d4a5763707d8a96a3b0b8b0aba99f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9f9faaaaaaaaaa9f9285786c5f493f33271b0f03000b1724313e4a5764717d8a97a4b0a5988c7f7265594c3f2e23181d1f2429323a434d57606d7984919eacb6aea194877b6e6154483b2e2115100b0400000000000000000000000b1724313e4a5764717e868686867e7165615f57524c443b32291e14080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b8897a1ada99d9083766a5f534a4540424045474c52585f686d7983909590959fabaea195887b6e6255483b3d3b38322b23190f0400000a1623303d495663707c8996a3afb0a69f9c93939393939393939393939393939393939393939393939393a0a8b2ab9e9185786b5e52452d22170b00000a1724303d4a5763707d8a96abb5a6998c807366544a3f3428211e1a192028313b45515c66727f8c9aa4afaea194877b6e6154483b2e21150800000000000000000000000003091724313e4a5764717d8a93938b7e75726e69615e564c443b3025190d0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4956626f7c8995a9b3a79a8d807467574e4138342f35393a41464e565d676e7b86929d9fa7b1aea194877b6e6154483b302f2c27211911070000000915222f3c4855626f7b8895aab3ab9f948f8686868686868686868686868686868686868686868686868996a0acaa9d9083776a5d5044372a1d0600000916222f3c4955626f7c8899a4afa89b8e8275665c50443a322d2a262727262834404b54616e7b87939facaea194877b6e6154483b2e2115080000000000000000000000060e151a24313e4a5764717d8a979e9184827f7b756d685e564c41362a20150a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96a3b0a5998c7f7266594c3f2f2824292c30353c444c555f69727f8b96a1acb9aea194877b6e6154483b2e21201b160f07000000000714212e3a4754616d7a8798a2aea99c8f8279797979797979797979797979797979797979797979797984919eaaa99c8f8276695c4f4336291c1003000714212d3a4754606d7a86939facab9e9285796d60564c443d3a3631343333322e3946525e697784919daaaea194877b6e6154483b2e21150800000000000000000000060f181f262b313e4a5764717d8a969896918f8c87817a6e685e52463c32261b0f03000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b1724313e4a5764717d8a97a4b0a5988c7f7265594c3f2e23181d1f2429323a434d57606d7984919eacb6aea194877b6e6154483b2e2115100b0400000000000713202d3946525d687885929fabaa9d9084776c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6c6d7986929faca79a8d8174675a4e4134271b0e01000613202c3945515d677783909dabada1978a7e71685d564f484642424140403f3f3f424d566875818e9ba8aea194877b6e6154483b2e211508000000000000000000030e18212a31373a3e4a5764717e88898b90959b9a938e847a6e61584e43372b1f1306000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d8a96abb5a6998c807366544a3f3428211e1a192028313b45515c66727f8c9aa4afaea194877b6e6154483b2e2115080000000000000005111d2935414c566a7683909da9ab9f928578695e606060606060606060606060606060606060626e7b8899a3afab988b7f7265584c3f3225190c000004111d2935414b556673808c99a3afa99e91847a6d68605955534d4f4d4d4c4c4c4b4b4d5a6774808d9aa7aea194877b6e6154483b2e21150800000000000000000009151f2a333c4247484953606d797b7c7f8390959f9f968f82756a5f53473b2e211508000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916222f3c4955626f7c8899a4afa89b8e8275665c50443a322d2a262727262834404b54616e7b87939facaea194877b6e6154483b2e21150800000000000000010d192430414e5a6774818d9aabada297877b6e6154535353535353535353535353535353535764717d8a97abaea399897c706356493d3023160a0000010d18242f3b4854616e7b86929fa8aca19690827a706b65615f575b5a5a5959585858585a6673808d99a6aea194877b6e6154483b2e2115080000000000000000020e1a26313c454d535556535c676d6e6f727883909da89e94887c6f6255493c2f221609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a4754606d7a86939facab9e9285796d60564c443d3a3631343333322e3946525e697784919daaaea194877b6e6154483b2e2115080000000000000000081724313e4a5764717e8a99a4afa9978b7e7164564d41464646464646464646464646434f596774818e9aa7ac9f92867a6d6053473a2d2014070000000714212d3a46535e6974818d96a1aaa89f9490847d76726e696a686766666565656564646673808d99a6aea194877b6e6154483b2e211508000000000000000006121e2b37424d575f6263605c5c60616366727f8c98a5a6998c7f7266594c3f3326190c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000613202c3945515d677783909dabada1978a7e71685d564f484642424140403f3f3f424d566875818e9ba8aea194877b6e6154483b2e21150800000000000000000714212e3a4754616d7a86939faca89b8e8175685e52463c313939393939393939313a4854606b7884919eaba99d908376675d5145392c1f130600000005121e2a36424d57606d7a849198a1a9a69f969189837e7b7876757473737272727171717173808d99a6aea194877b6e6154483b2e21150800000000000000000814212e3a47535f696e706d67686766676a73808d99a6a79a8d8074675a4d4134271a0e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004111d2935414b556673808c99a3afa99e91847a6d68605955534d4f4d4d4c4c4c4b4b4d5a6774808d9aa7aea194877b6e6154483b2e21150800000000000000000713202d3946525e6876838f9ca9ac9f92867b6e61584e433a322c292424292c323a434e58636f7c8996a1aca6998c7f7266554b4035291d1004000000020e1a25313b45525d686f7c8692979ea6a8a09e95908b8885838280807f7f7f7e7e7e7e7d7d818e9ba8aea194877b6e6154483b2e21150800000000000000000815222f3b4855626e7b7c797675737273767c85929faba8998c807366594d4033261a0d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d18242f3b4854616e7b86929fa8aca19690827a706b65615f575b5a5a5959585858585a6673808d99a6aea194877b6e6154483b2e211508000000000000000005111d2a36414c5665717e8b97a1ada3998d80736a5f554c443d39352f2f35393d444c56606a75828f9ca8ab9f94887b6e6155483b2f24180c000000000009141f2935414c565f6a6f7c858f949c9fa4a79f9d989792908e8d8d8c8c8b8b8b8b8a8a8a8e939eaaaea194877b6e6154483b2e2115080000000000000006131f2b37434e5867748089868381807f8083899297a2aaa1968a7d7064574a3d3124170a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535e6974818d96a1aaa89f9490847d76726e696a686766666565656564646673808d99a6aea194877b6e6154483b2e2115080000000000000000010d1925303a4753606d7985919ea8ab9f92867c6f675e564f47454041414045474e565d686f7c87939faca69c8f8276695f53463a2d1d12070000000000030d19242f3a434e58606a6f7a82898f939a9c9fa2a9a29f9d9b9a999998989898979797979b9ea5afaea194877b6e6154483b2e211508000000000000000815222e3b47545f6a78849192908e8d8c8d8f949fa2a69f989184796d6053463a2d201307000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d57606d7a849198a1a9a69f969189837e7b7876757473737272727171717173808d99a6aea194877b6e6154483b2e21150800000000000000000008131f2c3845515c67727f8c96a0aba3989183796d68605953514b4e4e4b51535860686d7a84919aa4aa9f94897d7063574d42362a1e0b0100000000000008131e28313c464e5860686e757d82878c8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abaeb6aea194877b6e6154483b2e211508000000000000000916222f3c4955626f7c8896999b9b9a999a9c9e9d9b98948f867c6f665c5145382c1f13060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a25313b45525d686f7c8692979ea6a8a09e95908b8885838280807f7f7f7e7e7e7e7d7d818e9ba8aea194877b6e6154483b2e21150800000000000000000004101c2934404b55606d79849199a3aaa09590837a706b64605d555b5b555d60636a6f7a828f96a0aca3988f82766b6055453b31261a0e00000000000000010c161f2a343c464e565e616b70767b7f8385888a8c8d8f8f9090919191919292929292999ca4aeaea194877b6e6154483b2e211508000000000000000b1825323e4b5865717e878a8c8f909292939292908f8c88827c6f6a60544b4034281c100400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141f2935414c565f6a6f7c858f949c9fa4a79f9d989792908e8d8d8c8c8b8b8b8b8a8a8a8e939eaaaea194877b6e6154483b2e211508000000000000000000000c18232f3945515c67707d87929fa4a79f9590847d75706d6769676869676d70757c848f949fa8a49f92867c6f62594f44332a1f14090000000000000000040d18222b343c444c52596063696e7276797c7d7f81828383848484848585858585868d929ca8aea194877b6e6154483b2e211508000000000000000b1724313d4a56626c717a7d808283858586858584827f7b766e6a60584e42392e23180c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030d19242f3a434e58606a6f7a82898f939a9c9fa2a9a29f9d9b9a999998989898979797979b9ea5afaea194877b6e6154483b2e2115080000000000000000000007121d2834404b55606b727f8c929da4a79f969189827d7a7675747475777a7d828991969fa6a49d928b7f726a5f53473d3321180e030000000000000000050e171e252a323b41464f54575f6165666d6f71737475767677777778787878797979808d99a6aea194877b6e6154483b2e211508000000000000000915212e3a45505a62686d7073757778797979787775726e6a625f574e463d30271d1207000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e28313c464e5860686e757d82878c8f929897999a9b9c9d9d9d9e9e9e9e9f9f9f9fa3abaeb6aea194877b6e6154483b2e21150800000000000000000000010c18232e39434f59636d74808d929fa2a8a09e948f8a86838281818283868a8f949ea0a8a29f928d80746d62584e43352c210f060000000000000000020d1720293036393a3e3f44484d5355545c606264666768696a6a6a6b6b6b6b6c6c6c73808d99a6aea194877b6e6154483b2e2115080000000000000005111d29343f4850565d606466686a6b6c6c6c6b6a6865625f58534e453d342b1e150b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010c161f2a343c464e565e616b70767b7f8385888a8c8d8f8f9090919191919292929292999ca4aeaea194877b6e6154483b2e211508000000000000000000000007121d27303d47515b606c77808a92979fa3a69e9c9992908f8e8e8f9092999c9ea6a49f98928b80776c605b51463c31231a0f00000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f6673808d99a6aea194877b6e6154483b2e21150800000000000000010c17222d363f434c525457595c5d5f5f605f5f5d5c5955534e47423c332b22190c0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040d18222b343c444c52596063696e7276797c7d7f81828383848484848585858585868d929ca8aea194877b6e6154483b2e2115080000000000000000000000000b151e2b353f44505b656c737e858e92999ea1a8a39f9d9c9a9b9c9d9fa3a9a19e9a938f867e746c655b50493f342a2011080000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525a6774818d9aa7ada194877a6e6154473b2e211408000000000000000006111b242d313a4145474a4d4f505252535252514f4c4847433c37312a211910070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050e171e252a323b41464f54575f6165666d6f71737475767677777778787878797979808d99a6aea194877b6e6154483b2e211508000000000000000000000000030c192327333f49535b606c717a81878d9196989b9c9e9f9f9f9f9e9c9b9897928d87827b716c605b53493f372d22180e00000000000000000005111e2a36414c565e6164656768696a6b68655d534840414243434444444545454e5b6875818e9ba8b3a994877a6d6154473a2e21140700000000000000000009121b1f282f35393a3d404244454646464544423f3b3a37312b2620180f070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d1720293036393a3e3f44484d5355545c606264666768696a6a6a6b6b6b6b6c6c6c73808d99a6aea194877b6e6154483b2e21150800000000000000000000000000071117222d384149505a61686e747b8084888b8e90919292929291908e8c8985817b756e69625a504941382d251b10060000000000000000000713202d3946525e686d71727374767778756f65594d3c323536373737383837424d576976838f9ca9ada19786796d6053463a2d20130700000000000000000000090d161e24292c2d3133353738393939383735322f2e2b26201a150e0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008131e29323a4146474b4c4d4e4f51524a50535557595a5c5c5d5d5e5e5e5e5f5f5f6673808d99a6aea194877b6e6154483b2e211508000000000000000000000000000006111b262f383f4450565e61696e73787c7f818384858686858483817f7c79746e6a615e5750443f382f261b1309000000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372d2c2823292c303847535f697885929eabab9e918578665c5145382c1f13060000000000000000000000040c13191d20212426292a2c2c2d2c2c2a292622211f1a150e0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010d1925303a444c525457595a5b5c5d5e5b5953484a4c4e4f5050515151515252525a6774818d9aa7ada194877a6e6154473b2e2114080000000000000000000000000000000a141d313b434a4f4c52575e61656c6f7274767878797978787675726f6d66625f58534d4b4740382e1d140a02000000000000000000000815222e3b4855616e7b888c8d8e8f909184776a5f53473f3a38342f34383a424c56626e7b8897a2ada99c90837669544b4034281c100400000000000000000000000001080d111314171a1c1d1f1f201f1f1e1c191514120f0903000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c565e6164656768696a6b68655d534840414243434444444545454e5b6875818e9ba8b3a994877a6d6154473a2e21140700000000000000000000000000000a16222e39434d555b5d6060605f5b60626568696b6c6c6c6c6b69686562605c606060605a58524a40362a1f1307000000000000000000000714212d3a46535f697884919a9b9c9d96887c6f625a504a46443f434045474c545e6873808d99a9b2a89a8d8073675a4d402e23180c000000000000000000000000000000010406070a0d0f111213131312110f0c08080602000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000713202d3946525e686d71727374767778756f65594d3c323536373737383837424d576976838f9ca9ada19786796d6053463a2d20130700000000000000000000000000010e1a27333f4a555f676a6c6c6c6b636159585b5d5e5f5f5f5f5e5d5b545c60666c6c6c6c66635c52473b2f23170a0000000000000000000005121e2a36424d576874818e9ba6a9a89b8e81756c605b5453504a504b5153565e666d7a85929eabaca196897c706356493d302316070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212e3a4754616d7a7e7f8081828485817568584e43372d2c2823292c303847535f697885929eabab9e918578665c5145382c1f13060000000000000000000000000003101d2936424f5b67717779797978706b605c544d5152535352514f565e666d7379797979736e63584b3f3226190c00000000000000000000020e1a26313c4955626f7c88949faaaa9e938a7e726c6662605c545d555c6063686d78828f97a1ada89e9184786d6053463a2d2013070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222e3b4855616e7b888c8d8e8f909184776a5f53473f3a38342f34383a424c56626e7b8897a2ada99c90837669544b4034281c10040000000000000000000000000004111e2a3744515d6a7783868686857d736d665e57504540424a505960686e7880868686868073665a4d4033271a0d00000000000000000000000915222e3b4754606a76828f98a3aea59f92877f78726e6d666a696a676d6f747a828f949ea9aaa0968b7f72665c5044382b1f12060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714212d3a46535f697884919a9b9c9d96887c6f625a504a46443f434045474c545e6873808d99a9b2a89a8d8073675a4d402e23180c0000000000000000000000000000000a1723303d4a5663707d879297928880786e69615a514b4c545c606b707a828d939891847a6e6154473b2e211406000000000000000000000006131f2b37434e58626f7c86929fa4aea399928b837f7b797777767777797c80868f949ea6aba3989184796d60544a3f34281c100300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005121e2a36424d576874818e9ba6a9a89b8e81756c605b5453504a504b5153565e666d7a85929eabaca196897c706356493d302316070000000000000000000000000000000916222f3c4854606b727f8b929a938d837b706c605c54565e666d737d858f949992867c6f685e5246392d2017110a02000000000000000000030f1b27323c47535f6a717e8b929fa3aaa39f95908c8886848383838486898d92989fa6a9a29992867c6f665c5142382e23170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313c4955626f7c88949faaaa9e938a7e726c6662605c545d555c6063686d78828f97a1ada89e9184786d6053463a2d2013070000000000000000000000000000000714202c38444f59626d74808d949f9590857e746d665f60686e78808792979f93877d706a5f564c41362b27221b140b020000000000000000000a15202b37434e58626c737f8a92989fa4a7a09d989992919090909192999a9fa2aaa59e9792877e716a60544b4030261c110600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915222e3b4754606a76828f98a3aea59f92877f78726e6d666a696a676d6f747a828f949ea9aaa0968b7f72665c5044382b1f120600000000000000000000000000000004101c27333d47515b606d78828f959f97928a80786e696b707a828c93999d938c7f726b6158554f473e37332d261d140b020000000000000000040f1b26323c46505a636d737e868e93999ea0a8aba39f9e9d9c9d9e9fa3aba9a29f9a938e857d716c61584e42392e1e140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006131f2b37434e58626f7c86929fa4aea399928b837f7b797777767777797c80868f949ea6aba3989184796d60544a3f34281c1003000000000000000000000000000000000b16212b353f44505c666d7a839197a19f928d837b71737d858f949f9f948e81746d6c6c6361594f46443f382f261d140a0000000000000000000a15202a343f48525b636c717b81878d9196979a9c9d9e9e9f9f9f9e9d9b9997928e88817b706b615a50463c30271d0c02000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27323c47535f6a717e8b929fa3aaa39f95908c8886848383838486898d92989fa6a9a29992867c6f665c5142382e23170b0000000000000000000000000000000000050f1a2328343f4a545d686e7b859299a39d9590867e808791979fa0968f827873797979706b615753504941382f261b11060000000000000000040e18222d364049525a61696e747b8084888b8d8f90919292929291908e8c8985817c756e69615950483e342b1e150b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202b37434e58626c737f8a92989fa4a7a09d989992919090909192999a9fa2aaa59e9792877e716a60544b4030261c1106000000000000000000000000000000000000081117232e38424c565f696f7d87929fa4a098928a8c9399a1a29791847a73808686867d706964605b534941382d22170b00000000000000000006101b242e37404850575e616a6e73777b7e80828484858686858483817f7c79746f6a615e574f473e362c22190c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040f1b26323c46505a636d737e868e93999ea0a8aba39f9e9d9c9d9e9fa3aba9a29f9a938e857d716c61584e42392e1e140a000000000000000000000000000000000000000006111c26303a434d57606b717e8b929ca5a29f97999fa4a39992857b6e73808c938c7f7b77716c655b53493f33271b0f0300000000000000000009121c252e363e454d53585f62666a6f717375777878797979787675726f6d66625f58524d453d352c241a1007000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a15202a343f48525b636c717b81878d9196979a9c9d9e9e9f9f9f9e9d9b9997928e88817b706b615a50463c30271d0c020000000000000000000000000000000000000000000a141e28313b454f59626c73808d939ea79f9f9f9fa49f92877d706973808c99918c87837e776c655b5044372b1f1308000000000000000000000a131c242c333b42464e5355585f626467696a6b6b6c6c6c6b6a686663605c54534e46423b332c231a12080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040e18222d364049525a61696e747b8084888b8d8f90919292929291908e8c8985817c756e69615950483e342b1e150b00000000000000000000000000000000000000000000020c161f29333d47505a606c77818f95939393939393928b7f726b6673808b8d919695908b81776c6053463a3025190d01000000000000000000010a121a212931363c4347484e5355585a5c5d5e5f5f5f5f5e5d5b595653514b47433c363029201a11080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006101b242e37404850575e616a6e73777b7e80828484858686858483817f7c79746f6a615e574f473e362c22190c030000000000000000000000000000000000000000000000040d18212b353e44505b656d7983868686868686868680746d62626f7c7f818490959d938b7f7265564c41362a1d11050000000000000000000000080f171f252a31373a3c4347484b4d4f51515253535251504e4c494645403937322a251f170e0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009121c252e363e454d53585f62666a6f717375777878797979787675726f6d66625f58524d453d352c241a100700000000000000000000000000000000000000000000000000060f192327333f49535d676d777979797979797979746e62615f6a6f72747883909d9e918478685e5246392d201307000000000000000000000000050d141a20262b2e31373a3c3e40424445454646464543423f3c3a38342e2b26201a140d0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a131c242c333b42464e5355585f626467696a6b6b6c6c6c6b6a686663605c54534e46423b332c231a1208000000000000000000000000000000000000000000000000000000071017222d38414b555d606a6c6c6c6c6c6c6c6c676a6f6e696968676874808d9aa196877a6d6154473a2e2114070000000000000000000000000003090e151a1f21262b2e2f31343637383839393938373533302d2c28231d1b150e0902000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010a121a212931363c4347484e53575e6165686a6b6c6b6a6965625f5853514b47433c363029201a1108000000000000000000000000000000000000000000000000000000000006111b262f39434b51535d6060606060606057626f7c7a77757474757a83919da197877a6e6154473b2e211408000000000000000000000000000000030a0f12151b1f21222527292a2b2c2c2c2c2b2a282623201f1c18120f0a0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080f171d273039414950585f62696e7275777879787775726e6a636059514b423a32281f170e08000000000000000000000000000000000000000000000000000000000000000a141d27313940454750535353535353525e697683878482818182859195a09e9185786c605346392d201306000000000000000000000000000000000002060a0f121515181a1c1e1e1f20201f1e1d1b19161313100c070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006111b262f39434b535b606a6f757b7e828485868584827f7b766f6b605c544c443a31271d120700000000000000000000000000000000000000000000000000000000000000020b151f272f35393a4446464646464854616e7b8793918f8e8d8f92979c98928b7f72655b5044372b1f12050000000000000000000000000000000000000000030608090b0d0f11121213131312100f0c090706040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222d38414b555c656c737c82878b8f91929292918f8c88827c746d665e564c43392f24180c0300000000000000000000000000000000000000000000000000000000000000030d151d24292c2d37393939393f4c5865727f898c8f9091929292918f8c867f736d6253493f33271b0f0300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1b27333f49535c676d777f878e939a9b9d9e9f9e9d9c98948f8980786d685e554b4035291e150b0000000000000000000000000000000000000000000000000000000000000000030b12181d1f202a2d2d2d2d3a4753606d797d7f82848485868584827f7b736d635b5141382d22170b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030e18212b3744505b656d79828c93999fa4aca8a7a7a7a8a8a69f9c928d837a6d675d51453e30271d1207000000000000000000000000000000000000000000000000000000000000000001070c1013141d20201f2c3945515d676d70737677787979787775726e68635b51493f2f261b1106000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915202b37424e57606c77818e949fa4a8a09e9b9a9a9a9b9d9fa4a49d959083796d60594f42392e23180c00000000000000000000000000000000000000000000000000000000000000000000000406071113101d2935404b555d606366696a6b6c6c6c6a6965615e56514940372d1d140a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020e1a26313a47535f6a73808c939ea29f9996918f8e8d8d8e91939a9fa29f958e81756c61544b4034281c10040000000000000000000000000000000000000000000000000000000000000000000000000004000c18242f39434b515356595c5d5e5f5f5f5e5c5954524d4440372e251b0b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006121e2b37424e57626e7b87929fa098928c8884828180818284878c92979f9e938a7d70665c5145382c1f130700000000000000000000000000000000000000000000000000000000000000000000000000000007121d273139404547494c4f5151525352514f4c4746413b322e251c130900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3a47535f6a76828f99a0959186807b777574747475777b7f8590949f9e9184796d6053463a2f24180d010000000000000000000000000000000000000000000000000000000000000000000000000000010b151f272f35393a3d4043444546464544423f3b39363029201c130a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000815222f3b4855626e7b88949f9791837b736e696867676768696e727a829095a0968a7d7164554b4035291d1104000000000000000000000000000000000000000000000000000000000000000000000000000000030d151d24292c2d30333637383939393736322e2d2a251f170e0a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005111e2a36414c566773808d9a9e91857a6e69615f575b5a5a575e61686d7983919d9c8f8275675d5145392c20130600000000000000000000000000000000000000000000000000000000000000000000000000000000030b12181d1f202326292a2b2c2c2c2b292621201e19140d05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202d3946525e687884919e968a7e71685f57534d4e52534d52565e676f7c89959f92867a6d6053473a2d201407000000000000000000000000000000000000000000000000000000000000000000000000000000000001070c10131416191c1e1e1f201f1e1c191414110e080200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814212e3b4754616e7a8796939184796d60564d5053595f6060606055606b7683909399897c6f6356493c3023160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000406070a0d101112131312110f0c08070502000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724313d4a5764707d868686868174665c50545b60656c6c6c6c6c6b5e66737f868686867f7265594c3f3226190c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1623303c4955616c7079797979746f6454575f666c7279797979797668636d7379797979726d62564a3e3125180b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000814202d3944505a61646c6c6c6c67645d5b60696e787f86868686887a6d6163666c6c6c6c65625b51463a2e22160900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e48505557606060605b575e656c727b828c9298918b7f72685e575960606060595651493f35291e1206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b17222c363e44494a53534c525a62696e777f8690949f918b7f726d62564c4c535353534c4a463f372d23180d010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005101a242c33393a414650565e616c717b828b92989b918b7f726d625b514440464646463f3e3a352d251b11070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b16212c353e444c525a61686e757e858f949f9b918b7f726d625b51493f323939393932312e29231b130900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101c28333e474f565e616c717a828b92989f9b918c7f726d625b51493f372d2d2d2d2d2625221e181109010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000714202c38444f5961686d757e858f949fa29c918c7f726d625b51493f372d251b202020191816120d0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000916232f3c4855616b707a818a92979ea39c918c7f726d625b51493f372d251b131313130c0b0906010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a1724303d4a5763707d858e9393939393918c7f726d635b51493f372d251b130900060600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f1c2936424f5c69758286868686868686867f726d635b51493f372d251b13090100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f1b2835414d5a6570757979797979797979726d635b51493f372d251b1309010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d1925313d49545e65696c6c6c6c6c6c6c6c66635b51493f372d251b130901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000915212c37424c545a5c60606060606060605957514940372e251c130a01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004101b26303942494d4f53535353535353534c4b4640372e251c130a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009141e2730373d414246464646464646463f3e3b352e251c130a010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020c151e262c313536393939393939393933322f2a231c130a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030c141b212528292d2d2d2d2d2d2d2d2625221e18120a0100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002091015191b1c2020202020202020191816120d070000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004090d0f0f13131313131313130c0c0a060200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+ image data: 1
+ _typelessdata: 00
m_StreamData:
serializedVersion: 2
offset: 0