Index: ps/trunk/binaries/data/mods/public/art/actors/structures/romans/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/romans/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/romans/wall_long.xml (revision 23185) @@ -1,26 +1,35 @@ structural/rome_wall_long.dae - - - - - + + + + + + + + + + + + + + - player_trans_ao_parallax_spec.xml + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/romans/wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/wall_long.xml (revision 23185) @@ -1,30 +1,39 @@ structural/sele_wall_long.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/spartans/sentry_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/spartans/sentry_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/spartans/sentry_tower.xml (revision 23185) @@ -1,43 +1,53 @@ structural/spart_sentry_tower.dae + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/spartans/sentry_tower.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/simulation/components/Upgrade.js =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/components/Upgrade.js (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/components/Upgrade.js (revision 23185) @@ -1,318 +1,347 @@ function Upgrade() {} const UPGRADING_PROGRESS_INTERVAL = 250; Upgrade.prototype.Schema = "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + + "" + + "" + + "" + + "" + + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + Resources.BuildSchema("nonNegativeInteger") + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + ""; Upgrade.prototype.Init = function() { this.upgrading = false; this.completed = false; this.elapsedTime = 0; this.timer = undefined; this.expendedResources = {}; this.upgradeTemplates = {}; for (let choice in this.template) { let cmpIdentity = Engine.QueryInterface(this.entity, IID_Identity); let name = this.template[choice].Entity; if (cmpIdentity) name = name.replace(/\{civ\}/g, cmpIdentity.GetCiv()); if (this.upgradeTemplates.name) warn("Upgrade Component: entity " + this.entity + " has two upgrades to the same entity, only the last will be used."); this.upgradeTemplates[name] = choice; } }; // This will also deal with the "OnDestroy" case. Upgrade.prototype.OnOwnershipChanged = function(msg) { if (!this.completed) this.CancelUpgrade(msg.from); if (msg.to != INVALID_PLAYER) this.owner = msg.to; }; Upgrade.prototype.ChangeUpgradedEntityCount = function(amount) { if (!this.IsUpgrading()) return; let cmpTempMan = Engine.QueryInterface(SYSTEM_ENTITY, IID_TemplateManager); let template = cmpTempMan.GetTemplate(this.upgrading); let categoryTo; if (template.TrainingRestrictions) categoryTo = template.TrainingRestrictions.Category; else if (template.BuildRestrictions) categoryTo = template.BuildRestrictions.Category; if (!categoryTo) return; let categoryFrom; let cmpTrainingRestrictions = Engine.QueryInterface(this.entity, IID_TrainingRestrictions); let cmpBuildRestrictions = Engine.QueryInterface(this.entity, IID_BuildRestrictions); if (cmpTrainingRestrictions) categoryFrom = cmpTrainingRestrictions.GetCategory(); else if (cmpBuildRestrictions) categoryFrom = cmpBuildRestrictions.GetCategory(); if (categoryTo == categoryFrom) return; let cmpEntityLimits = QueryPlayerIDInterface(this.owner, IID_EntityLimits); cmpEntityLimits.ChangeCount(categoryTo, amount); }; Upgrade.prototype.CanUpgradeTo = function(template) { return this.upgradeTemplates[template] !== undefined; }; Upgrade.prototype.GetUpgrades = function() { let ret = []; let cmpIdentity = Engine.QueryInterface(this.entity, IID_Identity); for (let option in this.template) { let choice = this.template[option]; let templateName = cmpIdentity ? choice.Entity.replace(/\{civ\}/g, cmpIdentity.GetCiv()) : choice.Entity; let cost = {}; if (choice.Cost) cost = this.GetResourceCosts(templateName); if (choice.Time) cost.time = this.GetUpgradeTime(templateName); let hasCost = choice.Cost || choice.Time; ret.push({ "entity": templateName, "icon": choice.Icon || undefined, "cost": hasCost ? cost : undefined, "tooltip": choice.Tooltip || undefined, "requiredTechnology": this.GetRequiredTechnology(option), }); } return ret; }; Upgrade.prototype.CancelTimer = function() { if (!this.timer) return; let cmpTimer = Engine.QueryInterface(SYSTEM_ENTITY, IID_Timer); cmpTimer.CancelTimer(this.timer); this.timer = undefined; }; Upgrade.prototype.IsUpgrading = function() { return !!this.upgrading; }; Upgrade.prototype.GetUpgradingTo = function() { return this.upgrading; }; Upgrade.prototype.WillCheckPlacementRestrictions = function(template) { if (!this.upgradeTemplates[template]) return undefined; // is undefined by default so use X in Y return "CheckPlacementRestrictions" in this.template[this.upgradeTemplates[template]]; }; Upgrade.prototype.GetRequiredTechnology = function(templateArg) { let choice = this.upgradeTemplates[templateArg] || templateArg; if (this.template[choice].RequiredTechnology) return this.template[choice].RequiredTechnology; if (!("RequiredTechnology" in this.template[choice])) return undefined; let cmpTemplateManager = Engine.QueryInterface(SYSTEM_ENTITY, IID_TemplateManager); let cmpIdentity = Engine.QueryInterface(this.entity, IID_Identity); let entType = this.template[choice].Entity; if (cmpIdentity) entType = entType.replace(/\{civ\}/g, cmpIdentity.GetCiv()); let template = cmpTemplateManager.GetTemplate(entType); return template.Identity.RequiredTechnology || undefined; }; Upgrade.prototype.GetResourceCosts = function(template) { if (!this.upgradeTemplates[template]) return undefined; if (this.IsUpgrading() && template == this.GetUpgradingTo()) return clone(this.expendedResources); let choice = this.upgradeTemplates[template]; if (!this.template[choice].Cost) return {}; let costs = {}; for (let r in this.template[choice].Cost) costs[r] = ApplyValueModificationsToEntity("Upgrade/Cost/"+r, +this.template[choice].Cost[r], this.entity); return costs; }; Upgrade.prototype.Upgrade = function(template) { if (this.IsUpgrading() || !this.upgradeTemplates[template]) return false; let cmpPlayer = QueryOwnerInterface(this.entity, IID_Player); this.expendedResources = this.GetResourceCosts(template); if (!cmpPlayer.TrySubtractResources(this.expendedResources)) { this.expendedResources = {}; return false; } this.upgrading = template; + this.SetUpgradeAnimationVariant(); // Prevent cheating this.ChangeUpgradedEntityCount(1); if (this.GetUpgradeTime(template) !== 0) { let cmpTimer = Engine.QueryInterface(SYSTEM_ENTITY, IID_Timer); this.timer = cmpTimer.SetInterval(this.entity, IID_Upgrade, "UpgradeProgress", 0, UPGRADING_PROGRESS_INTERVAL, { "upgrading": template }); } else this.UpgradeProgress(); return true; }; Upgrade.prototype.CancelUpgrade = function(owner) { if (!this.IsUpgrading()) return; let cmpPlayer = QueryPlayerIDInterface(owner, IID_Player); if (cmpPlayer) cmpPlayer.AddResources(this.expendedResources); this.expendedResources = {}; this.ChangeUpgradedEntityCount(-1); + // Do not update visual actor if the animation didn't change. + let choice = this.upgradeTemplates[this.upgrading]; + if (choice && this.template[choice].Variant) + { + let cmpVisual = Engine.QueryInterface(this.entity, IID_Visual); + if (cmpVisual) + cmpVisual.SelectAnimation("idle", false, 1.0); + } + this.upgrading = false; this.CancelTimer(); this.SetElapsedTime(0); }; Upgrade.prototype.GetUpgradeTime = function(templateArg) { let template = this.upgrading || templateArg; let choice = this.upgradeTemplates[template]; if (!choice) return undefined; if (!this.template[choice].Time) return 0; return ApplyValueModificationsToEntity("Upgrade/Time", +this.template[choice].Time, this.entity); }; Upgrade.prototype.GetElapsedTime = function() { return this.elapsedTime; }; Upgrade.prototype.GetProgress = function() { if (!this.IsUpgrading()) return undefined; return this.GetUpgradeTime() == 0 ? 1 : Math.min(this.elapsedTime / 1000.0 / this.GetUpgradeTime(), 1.0); }; Upgrade.prototype.SetElapsedTime = function(time) { this.elapsedTime = time; }; +Upgrade.prototype.SetUpgradeAnimationVariant = function() +{ + let choice = this.upgradeTemplates[this.upgrading]; + + if (!choice || !this.template[choice].Variant) + return; + + let cmpVisual = Engine.QueryInterface(this.entity, IID_Visual); + if (!cmpVisual) + return; + + cmpVisual.SelectAnimation(this.template[choice].Variant, false, 1.0); +}; + Upgrade.prototype.UpgradeProgress = function(data, lateness) { if (this.elapsedTime/1000.0 < this.GetUpgradeTime()) { this.SetElapsedTime(this.GetElapsedTime() + UPGRADING_PROGRESS_INTERVAL + lateness); return; } this.CancelTimer(); this.completed = true; this.ChangeUpgradedEntityCount(-1); this.expendedResources = {}; let newEntity = ChangeEntityTemplate(this.entity, this.upgrading); if (newEntity) PlaySound("upgraded", newEntity); }; Engine.RegisterComponentType(IID_Upgrade, "Upgrade", Upgrade); Property changes on: ps/trunk/binaries/data/mods/public/simulation/components/Upgrade.js ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/props/special/palisade_rocks_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/props/special/palisade_rocks_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/props/special/palisade_rocks_long.xml (revision 23185) @@ -1,14 +1,32 @@ - - props/palisade_rocks_long.dae - + + + - + + + + + + + + + + + + + + + + + + + default.xml \ No newline at end of file Property changes on: ps/trunk/binaries/data/mods/public/art/actors/props/special/palisade_rocks_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/props/structures/gauls/wooden_tower_2_roof.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/props/structures/gauls/wooden_tower_2_roof.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/props/structures/gauls/wooden_tower_2_roof.xml (revision 23185) @@ -1,22 +1,16 @@ - - - - - - - - structural/gaul_wooden_tower_2_roof_2.dae + structural/gaul_wooden_tower_2_roof.dae + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/props/structures/gauls/wooden_tower_2_roof.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/britons/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/britons/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/britons/wall_long.xml (revision 23185) @@ -1,39 +1,44 @@ structural/brit_wall_long.dae structural/brit_wall_long.dae - - + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/britons/wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/britons/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/britons/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/britons/wooden_tower.xml (revision 23185) @@ -1,60 +1,70 @@ structural/brit_wooden_tower.dae structural/brit_wooden_tower.dae + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/britons/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/fndn_wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/fndn_wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/fndn_wall_long.xml (revision 23185) @@ -1,35 +1,35 @@ structural/kart_wall_long_b_foundation.dae - + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/fndn_wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/fndn_wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/fndn_wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/fndn_wooden_tower.xml (revision 23185) @@ -1,35 +1,35 @@ structural/kart_wooden_tower_foundation.dae - + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/fndn_wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/scout_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/scout_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/scout_tower.xml (revision 23185) @@ -1,66 +1,75 @@ structural/kart_scout_tower.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/scout_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/short_wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/short_wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/short_wall_long.xml (revision 23185) @@ -1,49 +1,57 @@ structural/kart_s_wall_l.dae + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/short_wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/wall_long.xml (revision 23185) @@ -1,54 +1,63 @@ structural/kart_wall_long.dae structural/kart_wall_long_b.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/wooden_tower.xml (revision 23185) @@ -1,66 +1,75 @@ structural/kart_wooden_tower.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/carthaginians/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/gauls/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/gauls/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/gauls/wall_long.xml (revision 23185) @@ -1,26 +1,35 @@ structural/gaul_wall_long.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/gauls/wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/gauls/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/gauls/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/gauls/wooden_tower.xml (revision 23185) @@ -1,61 +1,70 @@ structural/gaul_wooden_tower.dae structural/gaul_wooden_tower_2.dae - - + + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/gauls/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/scout_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/scout_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/scout_tower.xml (revision 23185) @@ -1,48 +1,60 @@ - - - - - - - - - structural/hele_scout_tower.dae - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - player_trans_ao_parallax_spec.xml - + + + + + + + + + structural/hele_scout_tower.dae + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + player_trans_ao_parallax_spec.xml + Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/scout_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/wall_long.xml (revision 23185) @@ -1,26 +1,35 @@ structural/hele_wall_long.dae - - - - - + + + + + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/wooden_tower.xml (revision 23185) @@ -1,46 +1,57 @@ structural/hele_wooden_tower.dae + + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/hellenes/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/scout_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/scout_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/scout_tower.xml (revision 23185) @@ -1,68 +1,77 @@ + + + + + + + + + structural/iber_tower_1.dae structural/iber_tower_2.dae player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/scout_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/wall_long.xml (revision 23185) @@ -1,25 +1,34 @@ structural/iber_wall_long.dae + + + + + + + + + player_trans_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/wooden_tower.xml (revision 23185) @@ -1,53 +1,62 @@ + + + + + + + + + structural/iber_wooden_tower.dae player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/iberians/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/defense_tower_stone.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/defense_tower_stone.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/defense_tower_stone.xml (revision 23185) @@ -1,43 +1,53 @@ structural/kush_defense_tower.dae + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/defense_tower_stone.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/defense_tower_wood.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/defense_tower_wood.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/defense_tower_wood.xml (revision 23185) @@ -1,42 +1,51 @@ props/palisade_rocks_fort.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/defense_tower_wood.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/outpost_stone.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/outpost_stone.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/outpost_stone.xml (revision 23185) @@ -1,43 +1,53 @@ structural/kush_sentry_tower.dae + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/outpost_stone.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/scout_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/scout_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/scout_tower.xml (revision 23185) @@ -1,44 +1,54 @@ structural/kush_defense_tower.dae + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/scout_tower.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/wall_long.xml (revision 23185) @@ -1,28 +1,37 @@ structural/kush_wall_long.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/kushites/wall_long.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/scout_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/scout_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/scout_tower.xml (revision 23185) @@ -1,54 +1,69 @@ - - - - - - - - - structural/maur_scout_tower.dae - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - player_trans_ao_parallax_spec.xml - + + + + + + + + + structural/maur_scout_tower.dae + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + player_trans_ao_parallax_spec.xml + Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/scout_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/wall_long.xml (revision 23185) @@ -1,31 +1,42 @@ - - - - - - structural/maur_wall_long_struct.dae - - - - - - - - - - - - - - - - - - - - - - - - player_trans_ao_parallax_spec.xml - + + + + + + structural/maur_wall_long_struct.dae + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + player_trans_ao_parallax_spec.xml + Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/persians/scout_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/persians/scout_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/persians/scout_tower.xml (revision 23185) @@ -1,49 +1,58 @@ structural/pers_scout_tower_a.dae structural/pers_scout_tower_a.dae + + + + + + + + + - player_trans_ao_parallax_spec.xml + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/persians/scout_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/persians/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/persians/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/persians/wooden_tower.xml (revision 23185) @@ -1,46 +1,55 @@ structural/pers_wooden_tower.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/persians/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/wall_long.xml (revision 23185) @@ -1,34 +1,43 @@ structural/ptol_wall_long.dae structural/ptol_wall_long_2.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/romans/scout_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/romans/scout_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/romans/scout_tower.xml (revision 23185) @@ -1,61 +1,73 @@ structural/rome_tower.dae - + + - - + + + + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/romans/scout_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/romans/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/romans/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/romans/wooden_tower.xml (revision 23185) @@ -1,45 +1,56 @@ structural/rome_wooden_tower.dae + + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/romans/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/wooden_tower.xml (revision 23185) @@ -1,47 +1,57 @@ structural/sele_wooden_tower.dae - + + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/meshes/structural/gaul_wooden_tower_2.dae =================================================================== --- ps/trunk/binaries/data/mods/public/art/meshes/structural/gaul_wooden_tower_2.dae (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/meshes/structural/gaul_wooden_tower_2.dae (revision 23185) @@ -1,88 +1,88 @@ - + Blender User - Blender 2.76.0 commit date:2015-11-03, commit time:10:56, hash:f337fea + Blender 2.80.75 commit date:2019-07-29, commit time:14:47, hash:f6cb5f54494e - 2016-09-22T14:09:30 - 2016-09-22T14:09:30 + 2019-11-23T00:39:37 + 2019-11-23T00:39:37 Z_UP - - -3.33172 -3.33172 -10.63015 -3.33172 -3.33172 0.4175688 -3.33172 3.33172 -10.63015 -3.33172 3.33172 0.4175688 3.33172 -3.33172 -10.63015 3.33172 -3.33172 0.4175688 3.33172 3.33172 -10.63015 3.33172 3.33172 0.4175688 -2.988427 -2.988427 -0.4012523 -2.988427 -2.988427 11.28079 -2.988427 2.988427 -0.4012523 -2.988427 2.988427 11.28079 2.988427 -2.988427 -0.4012523 2.988427 -2.988427 11.28079 2.988427 2.988427 -0.4012523 2.988427 2.988427 11.28079 -3.185433 -3.185433 11.06861 -3.185433 -3.185433 11.69353 -3.185433 3.185433 11.06861 -3.185433 3.185433 11.69353 3.185433 -3.185433 11.06861 3.185433 -3.185433 11.69353 3.185433 3.185433 11.06861 3.185433 3.185433 11.69353 -3.185433 -3.185433 4.359916 -3.185433 -3.185433 5.091893 -3.185433 3.185433 4.359916 -3.185433 3.185433 5.091893 3.185433 -3.185433 4.359916 3.185433 -3.185433 5.091893 3.185433 3.185433 4.359916 3.185433 3.185433 5.091893 -2.988427 -2.988427 4.569335 -2.988427 2.988427 4.569335 2.988427 2.988427 4.569335 2.988427 -2.988427 4.569335 2.621667 -3.130826 0.4287167 2.621667 -3.130826 11.18286 2.621667 -2.598645 0.4287167 2.621667 -2.598645 11.18286 3.153847 -3.130826 0.4287167 3.153847 -3.130826 11.18286 3.153847 -2.598645 0.4287167 3.153847 -2.598645 11.18286 -3.124822 -3.130826 0.4287167 -3.124822 -3.130826 11.18286 -3.124822 -2.598645 0.4287167 -3.124822 -2.598645 11.18286 -2.592642 -3.130826 0.4287167 -2.592642 -3.130826 11.18286 -2.592642 -2.598645 0.4287167 -2.592642 -2.598645 11.18286 2.621667 2.547084 0.4287167 2.621667 2.547084 11.18286 2.621667 3.079265 0.4287167 2.621667 3.079265 11.18286 3.153847 2.547084 0.4287167 3.153847 2.547084 11.18286 3.153847 3.079265 0.4287167 3.153847 3.079265 11.18286 -3.124822 2.547084 0.4287167 -3.124822 2.547084 11.18286 -3.124822 3.079265 0.4287167 -3.124822 3.079265 11.18286 -2.592642 2.547084 0.4287167 -2.592642 2.547084 11.18286 -2.592642 3.079265 0.4287167 -2.592642 3.079265 11.18286 0 -2.988427 14.82902 0 2.988427 14.82902 -2.988427 -2.988427 11.62837 -2.988427 2.988427 11.62837 2.988427 2.988427 11.62837 2.988427 -2.988427 11.62837 0 3.274689 14.78121 -3.182986 3.274689 11.37218 3.182986 3.274689 11.37218 3.182986 -3.435716 11.37218 -3.182986 -3.435716 11.37218 0 -3.435716 14.78121 0 3.274689 15.37579 -3.493749 3.274689 11.54625 0 -3.435716 15.37579 3.493749 -3.435716 11.54625 3.493749 3.274689 11.54625 -3.493749 -3.435716 11.54625 -0.8000736 -3.083786 11.10205 0.8000736 -3.083786 11.10205 -0.8000736 -3.083786 8.976525 0.8000736 -3.083786 8.976525 -0.6968775 -3.083786 13.77221 0.6968775 -3.083786 13.77221 -0.6968775 -3.083786 12.60743 0.6968775 -3.083786 12.60743 -0.8000736 3.018048 11.10205 0.8000736 3.018048 11.10205 -0.8000736 3.018048 8.976525 0.8000736 3.018048 8.976525 -0.6968775 3.018048 13.77221 0.6968775 3.018048 13.77221 -0.6968775 3.018048 12.60743 0.6968775 3.018048 12.60743 3.050917 -0.832943 11.10205 3.050917 0.7672043 11.10205 3.050917 -0.832943 8.976525 3.050917 0.7672043 8.976525 -3.050917 -0.8329425 11.10205 -3.050917 0.7672048 11.10205 -3.050917 -0.8329425 8.976525 -3.050917 0.7672048 8.976525 -3.185433 -3.185433 7.989746 -3.185433 -3.185433 8.721723 -3.185433 3.185433 7.989746 -3.185433 3.185433 8.721723 3.185433 -3.185433 7.989746 3.185433 -3.185433 8.721723 3.185433 3.185433 7.989746 3.185433 3.185433 8.721723 -1.411113 -3.130826 -0.8588355 -1.411113 -3.130826 4.86113 -1.411113 3.098415 -0.8588355 -1.411113 3.098415 4.86113 -0.8789324 -3.130826 -0.8588355 -0.8789324 -3.130826 4.86113 -0.8789324 3.098415 -0.8588355 -0.8789324 3.098415 4.86113 0.9016846 -3.130826 -0.8588355 0.9016846 -3.130826 4.86113 0.9016846 3.098415 -0.8588355 0.9016846 3.098415 4.86113 1.433865 -3.130826 -0.8588355 1.433865 -3.130826 4.86113 1.433865 3.098415 -0.8588355 1.433865 3.098415 4.86113 3.125997 -1.438695 -0.8588355 3.125997 -1.438695 4.86113 -3.103244 -1.438694 -0.8588355 -3.103244 -1.438694 4.86113 3.125997 -0.9065142 -0.8588355 3.125997 -0.9065142 4.86113 -3.103244 -0.9065137 -0.8588355 -3.103244 -0.9065137 4.86113 3.125997 0.8741026 -0.8588355 3.125997 0.8741026 4.86113 -3.103245 0.8741031 -0.8588355 -3.103245 0.8741031 4.86113 3.125997 1.406283 -0.8588355 3.125997 1.406283 4.86113 -3.103245 1.406283 -0.8588355 -3.103245 1.406283 4.86113 4.097249 3.631983 11.48177 -4.097249 3.631983 11.48177 0 3.631983 15.97282 3.732805 3.631983 11.27764 -3.732805 3.631983 11.27764 0 3.631983 15.27553 -4.097249 -3.708186 11.48177 4.097249 -3.708186 11.48177 0 -3.708186 15.97282 0 -3.708186 15.27553 -3.732805 -3.708186 11.27764 3.732805 -3.708186 11.27764 -1.208378 -3.066551 -0.4012523 1.208378 -3.066551 -0.4012523 -1.208378 -3.066551 4.569335 1.208378 -3.066551 4.569335 -1.556838 -3.555595 4.321699 -1.556838 -3.700057 4.521466 -1.556838 -1.816895 5.579046 -1.556838 -1.961357 5.778813 1.556838 -3.555595 4.321699 1.556838 -3.700057 4.521466 1.556838 -1.816895 5.579046 1.556838 -1.961357 5.778813 + -3.33172 -3.33172 -10.63015 -3.33172 -3.33172 0.4175688 -3.33172 3.33172 -10.63015 -3.33172 3.33172 0.4175688 3.33172 -3.33172 -10.63015 3.33172 -3.33172 0.4175688 3.33172 3.33172 -10.63015 3.33172 3.33172 0.4175688 -2.988427 -2.988427 -0.4012523 -2.988427 -2.988427 11.28079 -2.988427 2.988427 -0.4012523 -2.988427 2.988427 11.28079 2.988427 -2.988427 -0.4012523 2.988427 -2.988427 11.28079 2.988427 2.988427 -0.4012523 2.988427 2.988427 11.28079 -3.185433 -3.185433 11.06861 -3.185433 -3.185433 11.69353 -3.185433 3.185433 11.06861 -3.185433 3.185433 11.69353 3.185433 -3.185433 11.06861 3.185433 -3.185433 11.69353 3.185433 3.185433 11.06861 3.185433 3.185433 11.69353 -3.185433 -3.185433 4.359916 -3.185433 -3.185433 5.091893 -3.185433 3.185433 4.359916 -3.185433 3.185433 5.091893 3.185433 -3.185433 4.359916 3.185433 -3.185433 5.091893 3.185433 3.185433 4.359916 3.185433 3.185433 5.091893 -2.988427 -2.988427 4.569335 -2.988427 2.988427 4.569335 2.988427 2.988427 4.569335 2.988427 -2.988427 4.569335 2.621667 -3.130826 0.4287167 2.621667 -3.130826 11.18286 2.621667 -2.598645 0.4287167 2.621667 -2.598645 11.18286 3.153847 -3.130826 0.4287167 3.153847 -3.130826 11.18286 3.153847 -2.598645 0.4287167 3.153847 -2.598645 11.18286 -3.124822 -3.130826 0.4287167 -3.124822 -3.130826 11.18286 -3.124822 -2.598645 0.4287167 -3.124822 -2.598645 11.18286 -2.592642 -3.130826 0.4287167 -2.592642 -3.130826 11.18286 -2.592642 -2.598645 0.4287167 -2.592642 -2.598645 11.18286 2.621667 2.547084 0.4287167 2.621667 2.547084 11.18286 2.621667 3.079265 0.4287167 2.621667 3.079265 11.18286 3.153847 2.547084 0.4287167 3.153847 2.547084 11.18286 3.153847 3.079265 0.4287167 3.153847 3.079265 11.18286 -3.124822 2.547084 0.4287167 -3.124822 2.547084 11.18286 -3.124822 3.079265 0.4287167 -3.124822 3.079265 11.18286 -2.592642 2.547084 0.4287167 -2.592642 2.547084 11.18286 -2.592642 3.079265 0.4287167 -2.592642 3.079265 11.18286 0 -2.988427 14.82902 0 2.988427 14.82902 -2.988427 -2.988427 11.62837 -2.988427 2.988427 11.62837 2.988427 2.988427 11.62837 2.988427 -2.988427 11.62837 0 3.274689 14.78121 -3.182986 3.274689 11.37218 3.182986 3.274689 11.37218 3.182986 -3.435716 11.37218 -3.182986 -3.435716 11.37218 0 -3.435716 14.78121 0 3.274689 15.37579 -3.493749 3.274689 11.54625 0 -3.435716 15.37579 3.493749 -3.435716 11.54625 3.493749 3.274689 11.54625 -3.493749 -3.435716 11.54625 -0.8000736 -3.083786 11.10205 0.8000736 -3.083786 11.10205 -0.8000736 -3.083786 8.976526 0.8000736 -3.083786 8.976526 -0.6968775 -3.083786 13.77221 0.6968775 -3.083786 13.77221 -0.6968775 -3.083786 12.60743 0.6968775 -3.083786 12.60743 -0.8000736 3.018048 11.10205 0.8000736 3.018048 11.10205 -0.8000736 3.018048 8.976526 0.8000736 3.018048 8.976526 -0.6968775 3.018048 13.77221 0.6968775 3.018048 13.77221 -0.6968775 3.018048 12.60743 0.6968775 3.018048 12.60743 3.050917 -0.832943 11.10205 3.050917 0.7672043 11.10205 3.050917 -0.832943 8.976526 3.050917 0.7672043 8.976526 -3.050917 -0.8329425 11.10205 -3.050917 0.7672048 11.10205 -3.050917 -0.8329425 8.976526 -3.050917 0.7672048 8.976526 -3.185433 -3.185433 7.989746 -3.185433 -3.185433 8.721723 -3.185433 3.185433 7.989746 -3.185433 3.185433 8.721723 3.185433 -3.185433 7.989746 3.185433 -3.185433 8.721723 3.185433 3.185433 7.989746 3.185433 3.185433 8.721723 -1.411113 -3.130826 -0.8588355 -1.411113 -3.130826 4.86113 -1.411113 3.098415 -0.8588355 -1.411113 3.098415 4.86113 -0.8789324 -3.130826 -0.8588355 -0.8789324 -3.130826 4.86113 -0.8789324 3.098415 -0.8588355 -0.8789324 3.098415 4.86113 0.9016846 -3.130826 -0.8588355 0.9016846 -3.130826 4.86113 0.9016846 3.098415 -0.8588355 0.9016846 3.098415 4.86113 1.433865 -3.130826 -0.8588355 1.433865 -3.130826 4.86113 1.433865 3.098415 -0.8588355 1.433865 3.098415 4.86113 3.125997 -1.438695 -0.8588355 3.125997 -1.438695 4.86113 -3.103244 -1.438694 -0.8588355 -3.103244 -1.438694 4.86113 3.125997 -0.9065142 -0.8588355 3.125997 -0.9065142 4.86113 -3.103244 -0.9065137 -0.8588355 -3.103244 -0.9065137 4.86113 3.125997 0.8741026 -0.8588355 3.125997 0.8741026 4.86113 -3.103245 0.8741031 -0.8588355 -3.103245 0.8741031 4.86113 3.125997 1.406283 -0.8588355 3.125997 1.406283 4.86113 -3.103245 1.406283 -0.8588355 -3.103245 1.406283 4.86113 4.097249 3.631983 11.48177 -4.097249 3.631983 11.48177 0 3.631983 15.97282 3.732805 3.631983 11.27764 -3.732805 3.631983 11.27764 0 3.631983 15.27553 -4.097249 -3.708186 11.48177 4.097249 -3.708186 11.48177 0 -3.708186 15.97282 0 -3.708186 15.27553 -3.732805 -3.708186 11.27764 3.732805 -3.708186 11.27764 -1.208378 -3.066551 -0.4012523 1.208378 -3.066551 -0.4012523 -1.208378 -3.066551 4.569335 1.208378 -3.066551 4.569335 -1.556838 -3.555595 4.321699 -1.556838 -3.700057 4.521466 -1.556838 -1.816895 5.579046 -1.556838 -1.961357 5.778813 1.556838 -3.555595 4.321699 1.556838 -3.700057 4.521466 1.556838 -1.816895 5.579046 1.556838 -1.961357 5.778813 - -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 -1.47265e-7 0 1 -1 0 0 0 1 -3.18187e-7 1 0 0 0 -1 -3.18187e-7 -1.61154e-7 0 -1 0 0 1 -1 0 0 0 1 -2.71652e-7 1 0 0 0 -1 -2.71652e-7 0 0 -1 0 0 1 0 -1 0 1 0 0 0 1 0 -1 0 0 -1 1.49143e-7 0 0 1 0 1 -5.13128e-7 0 0 -1 0 0 0 -1 0 0 1 -1 -4.71702e-7 0 1 1.99104e-7 0 0 1 0 0 -1 0 0 0 -1 0 0 1 0 -1 0 0 1 0 0 -1 0 0 1 3.50442e-7 0.4886874 0 -0.8724591 -0.7309239 0 -0.6824591 -0.4886834 0 -0.8724612 0.7309238 0 -0.6824591 0 -1 0 0 -1 -2.13788e-7 0 1 -1.19643e-7 0 1 2.23064e-7 1 1.38224e-7 0 -1 1.38224e-7 0 -1 0 0 0 1 -2.71652e-7 1 0 0 0 -1 -2.71652e-7 0 0 -1 0 0 1 -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 -3.69417e-7 0 1 -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 -3.69417e-7 0 1 0 -1 0 -1 4.23143e-7 0 0 1 0 1 -3.79142e-7 0 0 0 -1 0 0 1 0 -1 0 -1 -4.72864e-7 0 0 1 0 1 -3.79142e-7 0 0 0 -1 0 0 1 0.7309238 0 -0.6824591 0.488686 0 -0.8724598 -0.4886839 0 -0.8724609 -0.730924 0 -0.682459 0 1 -2.77084e-7 0 -1 0 0 -1 0 -1 -2.64345e-7 0 0 0.8103211 0.5859862 1 -1.87667e-7 0 0 -0.8103211 -0.5859863 1.37164e-7 0.5859863 -0.810321 0 -0.5859866 0.8103208 -1 0 0 1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0 1 0 0 -1 0 0 0 -1 0 0 1 0 0 -1 0 0 0 -1 0 0 1 0 1 0 0 -1 0 0 1 4.51198e-7 0 1 -7.3096e-7 0.4886856 0 -0.87246 -0.730924 0 -0.682459 -0.4886866 0 -0.8724595 0.7309238 0 -0.6824591 1 1.38224e-7 0 -1 1.38224e-7 0 -1 0 0 1 0 0 0 1 0 0 -1 0 0 0 -1 -3.69417e-7 0 1 0 1 0 0 -1 0 0 -1 0 0 1 0 1 -3.79142e-7 0 0 0 -1 0 0 1 0 -1 0 0 1 0 0 0 1 0.7309238 0 -0.6824591 0.4886851 0 -0.8724604 -0.4886868 0 -0.8724593 -0.7309238 0 -0.6824591 0 1 5.02807e-7 0 1 -3.56749e-7 0 -1 0 -1 -2.46549e-7 0 0 0.8103209 0.5859866 1 -1.65511e-7 0 0 -0.8103212 -0.5859861 1.37164e-7 0.5859864 -0.8103209 0 -0.5859866 0.8103209 + -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 0.4886934 0 -0.8724557 -0.7309244 0 -0.6824585 -0.4886934 0 -0.8724557 0.7309241 0 -0.6824588 -1.53096e-7 -1 0 0 1 0 0 0 -1 0 0 1 0 -1 0 0.7309238 0 -0.6824591 0.4886796 0 -0.8724635 -0.4886796 0 -0.8724635 -0.730924 0 -0.6824589 0 0.8103213 0.5859858 1 0 0 0 -0.8103207 -0.5859868 0 0.5859864 -0.810321 0 -0.5859864 0.8103209 -0.7309241 0 -0.6824588 0.7309244 0 -0.6824585 0 1 0 0 0 -1 0 -1 0 0.730924 0 -0.6824589 0.4886796 0 -0.8724634 -0.4886796 0 -0.8724634 -0.7309238 0 -0.6824591 0 0.8103219 0.5859851 0 -0.5859865 0.8103209 - + - 0.2743151 0.6221677 0.274315 0.497686 0.3493962 0.497686 0.1992338 0.6221677 0.1992338 0.497686 0.274315 0.497686 0.4244775 0.6221677 0.4244774 0.4976859 0.4995586 0.497686 0.3493962 0.6221677 0.3493962 0.497686 0.4244774 0.4976859 1 0 1 1 0 1 0.3405381 0.5162267 0.3405381 0.5971748 0.25959 0.5971748 0.4244773 0.5792732 0.4244774 0.5051269 0.3493962 0.5051269 0.4995586 0.5792732 0.4995586 0.5051269 0.4244774 0.5051269 0.2743149 0.5792732 0.2743149 0.5051268 0.1992338 0.5051269 0.3493962 0.5792732 0.3493962 0.5051269 0.2743149 0.5051268 1 0 1 1 0 1 0.3405381 0.4852227 0.3405381 0.5661709 0.25959 0.5661709 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.2457126 0.6542401 0.3335492 0.6542401 0.3335492 0.7402712 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.3493962 0.5911637 0.3493962 0.5014558 0.4244775 0.5014557 0.4244775 0.5911637 0.4244775 0.5014557 0.4995586 0.5014558 0.2525606 0.5911637 0.2525606 0.5014558 0.3276418 0.5014558 0.2743151 0.6184471 0.274315 0.5681118 0.3493962 0.5681118 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.3207752 0.6280735 0.2864001 0.5777382 0.3614814 0.5777381 0.282227 0.6268333 0.2478519 0.576498 0.3229331 0.576498 0.5035098 0.4642165 0.529574 0.4969012 0.5285673 0.1563166 0.5035098 0.4642165 0.529574 0.4969012 0.5256675 0.1556348 0.5256675 0.1556348 0.529574 0.4969012 0.5035098 0.4642165 0.5285673 0.1563166 0.529574 0.4969012 0.5035098 0.4642165 0.5256675 0.1556348 0.5034533 0.1576964 0.5034533 0.1576964 0.5034533 0.1576964 0.5035098 0.4642165 0.5035098 0.4642165 0.5063393 0.1582253 0.5285673 0.1563166 0.5285673 0.1563166 0.5035098 0.4642165 0.5063393 0.1582253 0.5063393 0.1582253 0.5359749 0.8866152 0.5359749 0.8306512 0.5631905 0.8306512 0.5359749 0.8866152 0.5359749 0.8306512 0.5631905 0.8306512 0.5631905 0.8306512 0.5359749 0.8306512 0.5359749 0.8866152 0.5631905 0.8306512 0.5359749 0.8306512 0.5359749 0.8866152 0.5359749 0.8866152 0.5359749 0.8306512 0.5631905 0.8306512 0.5631905 0.8306512 0.5359749 0.8306512 0.5359749 0.8866152 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.319865 0.5063393 0.1582253 0.5035098 0.4642165 0.5035098 0.4642165 0.5034533 0.1576964 0.5256675 0.1556348 0.5256675 0.1556348 0.5285673 0.1563166 0.5063393 0.1582253 0.5063393 0.1582253 0.5035098 0.4642165 0.5034533 0.1576964 0.5034533 0.1576964 0.5285673 0.1563166 0.529574 0.4969012 0.5035098 0.4642165 0.5035098 0.4642165 0.529574 0.4969012 0.5256675 0.1556348 0.5256675 0.1556348 0.529574 0.4969012 0.5035098 0.4642165 0.5035098 0.4642165 0.529574 0.4969012 0.5285673 0.1563166 0.5714116 0.1165663 0.5714117 -0.01661735 0.5009711 -0.01661741 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.2306547 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.3493962 0.6221677 0.2743151 0.6221677 0.3493962 0.497686 0.2743151 0.6221677 0.1992338 0.6221677 0.274315 0.497686 0.4995586 0.6221677 0.4244775 0.6221677 0.4995586 0.497686 0.4244775 0.6221677 0.3493962 0.6221677 0.4244774 0.4976859 0 0 1 0 0 1 0.25959 0.5162267 0.3405381 0.5162267 0.25959 0.5971748 0.3493962 0.5792732 0.4244773 0.5792732 0.3493962 0.5051269 0.4244773 0.5792732 0.4995586 0.5792732 0.4244774 0.5051269 0.1992337 0.5792732 0.2743149 0.5792732 0.1992338 0.5051269 0.2743149 0.5792732 0.3493962 0.5792732 0.2743149 0.5051268 0 0 1 0 0 1 0.25959 0.4852227 0.3405381 0.4852227 0.25959 0.5661709 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.2457126 0.7402712 0.2457126 0.6542401 0.3335492 0.7402712 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.4244775 0.5911637 0.3493962 0.5911637 0.4244775 0.5014557 0.4995586 0.5911637 0.4244775 0.5911637 0.4995586 0.5014558 0.3276418 0.5911637 0.2525606 0.5911637 0.3276418 0.5014558 0.3493962 0.6184471 0.2743151 0.6184471 0.3493962 0.5681118 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5063393 0.1582253 0.5035098 0.4642165 0.5285673 0.1563166 0.5034533 0.1576964 0.5035098 0.4642165 0.5256675 0.1556348 0.5034533 0.1576964 0.5256675 0.1556348 0.5035098 0.4642165 0.5063393 0.1582253 0.5285673 0.1563166 0.5035098 0.4642165 0.5256675 0.1556348 0.5256675 0.1556348 0.5034533 0.1576964 0.5034533 0.1576964 0.5034533 0.1576964 0.5035098 0.4642165 0.5063393 0.1582253 0.5063393 0.1582253 0.5285673 0.1563166 0.5035098 0.4642165 0.5035098 0.4642165 0.5063393 0.1582253 0.5631905 0.8866152 0.5359749 0.8866152 0.5631905 0.8306512 0.5631905 0.8866152 0.5359749 0.8866152 0.5631905 0.8306512 0.5631905 0.8866152 0.5631905 0.8306512 0.5359749 0.8866152 0.5631905 0.8866152 0.5631905 0.8306512 0.5359749 0.8866152 0.5631905 0.8866152 0.5359749 0.8866152 0.5631905 0.8306512 0.5631905 0.8866152 0.5631905 0.8306512 0.5359749 0.8866152 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.5231428 0.4058961 0.506119 0.4058961 0.5231428 0.319865 0.5063393 0.1582253 0.5063393 0.1582253 0.5035098 0.4642165 0.5034533 0.1576964 0.5034533 0.1576964 0.5256675 0.1556348 0.5285673 0.1563166 0.5285673 0.1563166 0.5063393 0.1582253 0.5035098 0.4642165 0.5035098 0.4642165 0.5034533 0.1576964 0.5063393 0.1582253 0.5285673 0.1563166 0.5035098 0.4642165 0.5034533 0.1576964 0.5035098 0.4642165 0.5256675 0.1556348 0.5034533 0.1576964 0.5256675 0.1556348 0.5035098 0.4642165 0.5063393 0.1582253 0.5035098 0.4642165 0.5285673 0.1563166 0.5009711 0.1165662 0.5714116 0.1165663 0.5009711 -0.01661741 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5022201 0.1508588 0.5283991 0.1508588 0.5022201 0.2306547 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 + 0.2743151 0.6221677 0.274315 0.497686 0.3493962 0.497686 0.1992338 0.6221677 0.1992338 0.497686 0.274315 0.497686 0.4244775 0.6221677 0.4244774 0.4976859 0.4995586 0.497686 0.3493962 0.6221677 0.3493962 0.497686 0.4244774 0.4976859 1 0 1 1 0 1 0.3405381 0.5162267 0.3405381 0.5971748 0.25959 0.5971748 0.4244773 0.5792732 0.4244774 0.5051269 0.3493962 0.5051269 0.4995586 0.5792732 0.4995586 0.5051269 0.4244774 0.5051269 0.2743149 0.5792732 0.2743149 0.5051268 0.1992338 0.5051269 0.3493962 0.5792732 0.3493962 0.5051269 0.2743149 0.5051268 1 0 1 1 0 1 0.3405381 0.4852227 0.3405381 0.5661709 0.25959 0.5661709 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.2457126 0.6542401 0.3335492 0.6542401 0.3335492 0.7402712 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.3493962 0.5911637 0.3493962 0.5014558 0.4244775 0.5014557 0.4244775 0.5911637 0.4244775 0.5014557 0.4995586 0.5014558 0.2525606 0.5911637 0.2525606 0.5014558 0.3276418 0.5014558 0.2743151 0.6184471 0.274315 0.5681118 0.3493962 0.5681118 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.3207752 0.6280735 0.2864001 0.5777382 0.3614814 0.5777381 0.282227 0.6268333 0.2478519 0.576498 0.3229331 0.576498 0.5035098 0.4642165 0.529574 0.4969012 0.5285673 0.1563166 0.5035098 0.4642165 0.529574 0.4969012 0.5256675 0.1556348 0.5256675 0.1556348 0.529574 0.4969012 0.5035098 0.4642165 0.5285673 0.1563166 0.529574 0.4969012 0.5035098 0.4642165 0.5256675 0.1556348 0.5034533 0.1576964 0.5034533 0.1576964 0.5034533 0.1576964 0.5035098 0.4642165 0.5035098 0.4642165 0.5063393 0.1582252 0.5285673 0.1563166 0.5285673 0.1563166 0.5035098 0.4642165 0.5063393 0.1582252 0.5063393 0.1582252 0.5359749 0.8866152 0.5359749 0.8306512 0.5631905 0.8306512 0.5359749 0.8866152 0.5359749 0.8306512 0.5631905 0.8306512 0.5631905 0.8306512 0.5359749 0.8306512 0.5359749 0.8866152 0.5631905 0.8306512 0.5359749 0.8306512 0.5359749 0.8866152 0.5359749 0.8866152 0.5359749 0.8306512 0.5631905 0.8306512 0.5631905 0.8306512 0.5359749 0.8306512 0.5359749 0.8866152 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.2306547 0.5022201 0.2306547 0.5022201 0.1508588 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.319865 0.5063393 0.1582252 0.5035098 0.4642165 0.5035098 0.4642165 0.5034533 0.1576964 0.5256675 0.1556348 0.5256675 0.1556348 0.5285673 0.1563166 0.5063393 0.1582252 0.5063393 0.1582252 0.5035098 0.4642165 0.5034533 0.1576964 0.5034533 0.1576964 0.5285673 0.1563166 0.529574 0.4969012 0.5035098 0.4642165 0.5035098 0.4642165 0.529574 0.4969012 0.5256675 0.1556348 0.5256675 0.1556348 0.529574 0.4969012 0.5035098 0.4642165 0.5035098 0.4642165 0.529574 0.4969012 0.5285673 0.1563166 0.5714116 0.1165663 0.5714117 -0.01661729 0.5009711 -0.01661735 0.5283989 0.3902464 0.50222 0.3902465 0.50222 0.3104507 0.5283989 0.4700424 0.50222 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.2306547 0.5283991 0.3104506 0.50222 0.3104507 0.5022201 0.2306547 1 0 1 1 0 1 0.506119 0.319865 0.5231428 0.319865 0.5231428 0.4058961 0.3493962 0.6221677 0.2743151 0.6221677 0.3493962 0.497686 0.2743151 0.6221677 0.1992338 0.6221677 0.274315 0.497686 0.4995586 0.6221677 0.4244775 0.6221677 0.4995586 0.497686 0.4244775 0.6221677 0.3493962 0.6221677 0.4244774 0.4976859 0 0 1 0 0 1 0.25959 0.5162267 0.3405381 0.5162267 0.25959 0.5971748 0.3493962 0.5792732 0.4244773 0.5792732 0.3493962 0.5051269 0.4244773 0.5792732 0.4995586 0.5792732 0.4244774 0.5051269 0.1992337 0.5792732 0.2743149 0.5792732 0.1992338 0.5051269 0.2743149 0.5792732 0.3493962 0.5792732 0.2743149 0.5051268 0 0 1 0 0 1 0.25959 0.4852227 0.3405381 0.4852227 0.25959 0.5661709 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.2457126 0.7402712 0.2457126 0.6542401 0.3335492 0.7402712 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.4244775 0.5911637 0.3493962 0.5911637 0.4244775 0.5014557 0.4995586 0.5911637 0.4244775 0.5911637 0.4995586 0.5014558 0.3276418 0.5911637 0.2525606 0.5911637 0.3276418 0.5014558 0.3493962 0.6184471 0.2743151 0.6184471 0.3493962 0.5681118 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5063393 0.1582252 0.5035098 0.4642165 0.5285673 0.1563166 0.5034533 0.1576964 0.5035098 0.4642165 0.5256675 0.1556348 0.5034533 0.1576964 0.5256675 0.1556348 0.5035098 0.4642165 0.5063393 0.1582252 0.5285673 0.1563166 0.5035098 0.4642165 0.5256675 0.1556348 0.5256675 0.1556348 0.5034533 0.1576964 0.5034533 0.1576964 0.5034533 0.1576964 0.5035098 0.4642165 0.5063393 0.1582252 0.5063393 0.1582252 0.5285673 0.1563166 0.5035098 0.4642165 0.5035098 0.4642165 0.5063393 0.1582252 0.5631905 0.8866152 0.5359749 0.8866152 0.5631905 0.8306512 0.5631905 0.8866152 0.5359749 0.8866152 0.5631905 0.8306512 0.5631905 0.8866152 0.5631905 0.8306512 0.5359749 0.8866152 0.5631905 0.8866152 0.5631905 0.8306512 0.5359749 0.8866152 0.5631905 0.8866152 0.5359749 0.8866152 0.5631905 0.8306512 0.5631905 0.8866152 0.5631905 0.8306512 0.5359749 0.8866152 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5283991 0.1508588 0.5283991 0.2306547 0.5022201 0.1508588 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.5231428 0.4058961 0.506119 0.4058961 0.5231428 0.319865 0.5063393 0.1582252 0.5063393 0.1582252 0.5035098 0.4642165 0.5034533 0.1576964 0.5034533 0.1576964 0.5256675 0.1556348 0.5285673 0.1563166 0.5285673 0.1563166 0.5063393 0.1582252 0.5035098 0.4642165 0.5035098 0.4642165 0.5034533 0.1576964 0.5063393 0.1582252 0.5285673 0.1563166 0.5035098 0.4642165 0.5034533 0.1576964 0.5035098 0.4642165 0.5256675 0.1556348 0.5034533 0.1576964 0.5256675 0.1556348 0.5035098 0.4642165 0.5063393 0.1582252 0.5035098 0.4642165 0.5285673 0.1563166 0.5009711 0.1165662 0.5714116 0.1165663 0.5009711 -0.01661735 0.5283991 0.3104506 0.5283989 0.3902464 0.50222 0.3104507 0.5283989 0.3902464 0.5283989 0.4700424 0.50222 0.3902465 0.5022201 0.1508588 0.5283991 0.1508588 0.5022201 0.2306547 0.5283991 0.2306547 0.5283991 0.3104506 0.5022201 0.2306547 0 0 1 0 0 1 0.506119 0.4058961 0.506119 0.319865 0.5231428 0.4058961 - 0.1422926 2.1386e-4 0.1422926 0.2364802 2.13258e-4 0.2364802 0.1427191 0.2364802 0.1427191 2.1388e-4 0.2847985 2.1386e-4 0.285225 0.2364802 0.285225 2.1386e-4 0.4273044 2.1388e-4 2.13222e-4 0.4731744 2.13222e-4 0.236908 0.1422926 0.236908 0.4277309 0.142718 0.4277309 2.1389e-4 0.5698103 2.1386e-4 0.1422926 0.4736022 0.1422926 0.6161063 2.13253e-4 0.6161064 0.5258919 0.3804391 0.5258919 0.4867399 0.3984519 0.4867399 0.3980255 0.3804391 0.3980255 0.4867399 0.2705856 0.4867399 0.2701591 0.3804391 0.2701591 0.4867399 0.1427192 0.4867399 0.6537582 0.3804391 0.6537582 0.4867399 0.5263183 0.4867399 0.5295959 0.7516636 0.5295959 0.6238427 0.6570357 0.6238427 0.5291693 0.6238427 0.5291694 0.7516635 0.4017295 0.7516636 0.9707511 0.6938251 0.9840759 0.6938251 0.9840759 0.8300724 0.9664911 0.2329937 0.9798158 0.2329937 0.9798158 0.3692409 0.9664911 0.5063437 0.9798158 0.5063437 0.9798158 0.6425909 0.9798158 0.5059159 0.9664911 0.5059159 0.9664911 0.3696687 0.1427191 0.6234149 0.1427191 0.4871677 0.2785602 0.4871677 0.5510953 0.4871677 0.5510953 0.6234149 0.4152542 0.6234149 0.8760368 0.6238427 0.8916441 0.6238427 0.8916442 0.7600899 0.3507784 0.7542806 0.3663858 0.7542806 0.3663858 0.8905278 0.1226021 0.7532091 0.1382095 0.7532091 0.1382095 0.8894563 0.3824197 0.8905278 0.3668123 0.8905278 0.3668122 0.7542806 2.13243e-4 0.7527813 2.13222e-4 0.6165341 0.1360543 0.6165341 0.4148277 0.4871677 0.4148278 0.6234149 0.2789867 0.6234149 0.6537582 0.236908 0.6537582 0.3804391 0.5263183 0.3804391 0.270159 0.236908 0.2701591 0.3804391 0.1427192 0.3804391 0.3980254 0.236908 0.3980255 0.3804391 0.2705855 0.3804391 0.5258918 0.236908 0.5258919 0.3804391 0.3984519 0.3804391 0.9251287 2.1386e-4 0.9251288 0.2302018 0.9137815 0.2302018 0.9373289 0.2302018 0.9373289 2.13862e-4 0.9486762 2.1386e-4 0.9547173 0.4629817 0.9547173 0.2329937 0.9660646 0.2329937 0.9425171 0.6938251 0.9425171 0.9238131 0.9311699 0.9238131 0.4395046 0.2101625 0.4508518 0.2101625 0.4508518 0.2215437 0.4743993 0.2101625 0.4743993 0.2215437 0.463052 0.2215437 0.913355 2.1386e-4 0.913355 0.2302018 0.9020078 0.2302018 0.9311699 0.6933974 0.9311698 0.4634094 0.9425171 0.4634094 0.9547173 0.6933974 0.9547173 0.4634094 0.9660646 0.4634094 0.9542909 0.4634094 0.9542909 0.6933974 0.9429436 0.6933974 0.4277309 0.2101625 0.4390782 0.2101625 0.4390782 0.2215437 0.4743993 0.2219714 0.4743993 0.2333526 0.463052 0.2333526 0.9307434 0.4634094 0.9307434 0.6933974 0.9193962 0.6933974 0.9429436 0.4629817 0.9429436 0.2329937 0.9542909 0.2329937 0.9071958 0.4634094 0.9071959 0.6933974 0.8958486 0.6933974 0.9369025 2.1386e-4 0.9369025 0.2302018 0.9255552 0.2302018 0.4395046 0.2219715 0.4508518 0.2219715 0.4508518 0.2333527 0.4626256 0.2219715 0.4626256 0.2333526 0.4512783 0.2333526 0.9189696 0.4634094 0.9189697 0.6933974 0.9076224 0.6933974 0.9429436 0.9238131 0.9429436 0.6938251 0.9542908 0.6938251 0.9491026 0.2302018 0.9491026 2.1386e-4 0.9604499 2.13863e-4 0.9425171 0.2329937 0.9425171 0.4629817 0.9311699 0.4629817 0.4277309 0.2219715 0.4390782 0.2219715 0.4390782 0.2333527 0.4626256 0.2101625 0.4626256 0.2215437 0.4512783 0.2215437 0.6633856 0.2305361 0.5702368 0.2241213 0.6633856 0.1368888 0.8529656 0.8451576 0.9212107 0.7812471 0.9212107 0.909068 0.7589838 0.8589555 0.7675284 0.8683493 0.6574621 0.8582041 0.7557063 0.4720209 0.7642509 0.4814147 0.6541846 0.4712694 0.7675284 0.7574889 0.7675284 0.8683493 0.7589838 0.8589555 0.7642508 0.3705542 0.7642509 0.4814147 0.7557063 0.4720209 0.9228214 0.8562776 0.9294475 0.8562776 0.9294475 0.9997861 0.8525391 0.9247557 0.7798511 0.9247557 0.7798511 0.7812471 0.9986422 0.5339068 0.992016 0.5339068 0.992016 0.3903982 0.8288932 2.1388e-4 0.9015812 2.1386e-4 0.9015812 0.1437224 0.5368484 0.1890299 0.5368484 0.2344863 0.5027297 0.2344863 0.5621104 0.1729526 0.5372748 0.1729526 0.5372748 0.1431457 0.6979308 0.1823452 0.6638121 0.1823452 0.6638121 0.1368888 0.5372748 0.2031871 0.5372748 0.1733803 0.5621104 0.1733803 0.6638121 0.2282293 0.6638121 0.1827729 0.6979308 0.1827729 0.5368484 0.1886022 0.5027297 0.1886022 0.5027297 0.1431457 0.9608764 2.1386e-4 0.9764837 2.1386e-4 0.9764838 0.136461 0.3828461 0.7542806 0.3984535 0.7542806 0.3984535 0.8905278 0.9547173 0.6938251 0.9703247 0.6938251 0.9703247 0.8300724 0.9703247 0.9667472 0.9547173 0.9667472 0.9547173 0.8305 0.5702368 0.1364611 0.5702368 2.1389e-4 0.7060778 2.1386e-4 0.6873628 0.4871677 0.6873629 0.6234149 0.5515218 0.6234149 2.13222e-4 0.7532091 0.1221756 0.7532091 0.1221756 0.8864275 0.7276781 0.868777 0.7276781 0.9911041 0.7163308 0.9911041 0.6574621 0.6238427 0.7794246 0.6238427 0.7794246 0.7570611 0.7041306 0.868777 0.7041306 0.9911041 0.6927833 0.9911041 0.9802423 0.2329937 0.9915896 0.2329937 0.9915896 0.3662121 0.9915896 0.4998583 0.9802423 0.4998583 0.9802423 0.3666399 0.5241184 0.7520913 0.6460808 0.7520913 0.6460809 0.8853097 0.7159043 0.868777 0.7159043 0.9911041 0.7045571 0.9911041 0.6541846 0.236908 0.7761471 0.236908 0.7761471 0.3701264 0.6923569 0.868777 0.6923569 0.9911041 0.6810097 0.9911041 0.9825249 0.8305 0.9938721 0.8305 0.9938721 0.9637184 0.9915896 0.6335045 0.9802423 0.6335045 0.9802423 0.5002861 0.8097517 0.6203861 0.6877893 0.6203862 0.6877893 0.4871677 0.6805832 0.868777 0.6805832 0.9911041 0.6692359 0.9911041 0.2646815 0.887499 0.1427191 0.887499 0.1427191 0.7542806 0.7281045 0.9911041 0.7281045 0.868777 0.7394518 0.868777 0.9820984 0.9637184 0.9707511 0.9637184 0.9707511 0.8305 0.9845023 0.6938251 0.9958496 0.6938251 0.9958496 0.8270435 0.8284667 0.1334323 0.7065043 0.1334323 0.7065043 2.1388e-4 0.6688094 0.868777 0.6688094 0.9911041 0.6574622 0.9911041 0.4017295 0.7520913 0.5236919 0.7520913 0.5236919 0.8853097 0.7398782 0.9911041 0.7398782 0.868777 0.7512255 0.868777 0.9882575 0.1334323 0.9769102 0.1334323 0.9769102 2.1386e-4 0.7793021 0.7574889 0.7793021 0.8907073 0.7679548 0.8907073 0.3503519 0.9112573 0.265108 0.9112573 0.265108 0.7542806 0.9886839 2.13865e-4 0.9964547 2.1386e-4 0.9964547 0.1571906 0.992016 0.2329937 0.9997867 0.2329937 0.9997867 0.3899705 0.8101782 0.4634094 0.8954221 0.4634094 0.8954221 0.6203862 0.1427191 0.6357404 0.2717978 0.6238427 0.2617773 0.6348592 0.2617773 0.6348592 0.2717978 0.6238427 0.2717978 0.7538529 0.401303 0.6238427 0.401303 0.7538529 0.3912824 0.7428364 0.3912824 0.7428364 0.401303 0.7538529 0.2722243 0.7419551 0.9242899 0.236908 0.9242899 0.3432089 0.8727593 0.3432089 0.7036138 0.229092 0.6983572 0.229092 0.6983572 0.1832042 0.5625368 0.1431457 0.5667963 0.1431457 0.5667964 0.2097348 0.6983572 0.1827765 0.6983572 0.1368888 0.7036138 0.1368888 0.1407402 0.6831231 0.1364807 0.6831231 0.1364807 0.6165341 0.4648038 0.1431457 0.4648038 0.2097348 0.4277309 0.2097348 0.5023033 0.1431457 0.5023033 0.2097348 0.4652303 0.2097348 2.13222e-4 2.13883e-4 0.1422926 2.1386e-4 2.13258e-4 0.2364802 0.2847986 0.2364802 0.1427191 0.2364802 0.2847985 2.1386e-4 0.4273044 0.2364802 0.285225 0.2364802 0.4273044 2.1388e-4 0.1422926 0.4731744 2.13222e-4 0.4731744 0.1422926 0.236908 0.5698103 0.142718 0.4277309 0.142718 0.5698103 2.1386e-4 2.13222e-4 0.4736022 0.1422926 0.4736022 2.13253e-4 0.6161064 0.3984519 0.3804391 0.5258919 0.3804391 0.3984519 0.4867399 0.2705855 0.3804391 0.3980255 0.3804391 0.2705856 0.4867399 0.1427192 0.3804391 0.2701591 0.3804391 0.1427192 0.4867399 0.5263183 0.3804391 0.6537582 0.3804391 0.5263183 0.4867399 0.6570357 0.7516635 0.5295959 0.7516636 0.6570357 0.6238427 0.4017295 0.6238427 0.5291693 0.6238427 0.4017295 0.7516636 0.9707511 0.8300724 0.9707511 0.6938251 0.9840759 0.8300724 0.9664911 0.3692409 0.9664911 0.2329937 0.9798158 0.3692409 0.9664911 0.6425909 0.9664911 0.5063437 0.9798158 0.6425909 0.9798158 0.3696687 0.9798158 0.5059159 0.9664911 0.3696687 0.2785602 0.6234149 0.1427191 0.6234149 0.2785602 0.4871677 0.4152542 0.4871677 0.5510953 0.4871677 0.4152542 0.6234149 0.8760368 0.7600899 0.8760368 0.6238427 0.8916442 0.7600899 0.3507784 0.8905278 0.3507784 0.7542806 0.3663858 0.8905278 0.1226021 0.8894563 0.1226021 0.7532091 0.1382095 0.8894563 0.3824197 0.7542806 0.3824197 0.8905278 0.3668122 0.7542806 0.1360543 0.7527813 2.13243e-4 0.7527813 0.1360543 0.6165341 0.2789866 0.4871677 0.4148277 0.4871677 0.2789867 0.6234149 0.5263183 0.236908 0.6537582 0.236908 0.5263183 0.3804391 0.1427191 0.236908 0.270159 0.236908 0.1427192 0.3804391 0.2705855 0.236908 0.3980254 0.236908 0.2705855 0.3804391 0.3984519 0.236908 0.5258918 0.236908 0.3984519 0.3804391 0.9137814 2.1386e-4 0.9251287 2.1386e-4 0.9137815 0.2302018 0.9486762 0.2302018 0.9373289 0.2302018 0.9486762 2.1386e-4 0.9660646 0.4629817 0.9547173 0.4629817 0.9660646 0.2329937 0.9311698 0.6938251 0.9425171 0.6938251 0.9311699 0.9238131 0.4395046 0.2215437 0.4395046 0.2101625 0.4508518 0.2215437 0.463052 0.2101625 0.4743993 0.2101625 0.463052 0.2215437 0.9020077 2.1386e-4 0.913355 2.1386e-4 0.9020078 0.2302018 0.9425171 0.6933974 0.9311699 0.6933974 0.9425171 0.4634094 0.9660646 0.6933974 0.9547173 0.6933974 0.9660646 0.4634094 0.9429436 0.4634094 0.9542909 0.4634094 0.9429436 0.6933974 0.4277309 0.2215437 0.4277309 0.2101625 0.4390782 0.2215437 0.463052 0.2219714 0.4743993 0.2219714 0.463052 0.2333526 0.9193961 0.4634094 0.9307434 0.4634094 0.9193962 0.6933974 0.9542909 0.4629817 0.9429436 0.4629817 0.9542909 0.2329937 0.8958486 0.4634094 0.9071958 0.4634094 0.8958486 0.6933974 0.9255552 2.1386e-4 0.9369025 2.1386e-4 0.9255552 0.2302018 0.4395046 0.2333527 0.4395046 0.2219715 0.4508518 0.2333527 0.4512783 0.2219715 0.4626256 0.2219715 0.4512783 0.2333526 0.9076223 0.4634094 0.9189696 0.4634094 0.9076224 0.6933974 0.9542909 0.9238131 0.9429436 0.9238131 0.9542908 0.6938251 0.9604499 0.2302018 0.9491026 0.2302018 0.9604499 2.13863e-4 0.9311698 0.2329937 0.9425171 0.2329937 0.9311699 0.4629817 0.4277309 0.2333527 0.4277309 0.2219715 0.4390782 0.2333527 0.4512783 0.2101625 0.4626256 0.2101625 0.4512783 0.2215437 0.6598558 0.8509747 0.7589838 0.8589555 0.6574621 0.8582041 0.6565783 0.4640402 0.7557063 0.4720209 0.6541846 0.4712694 0.7601318 0.759218 0.7675284 0.7574889 0.7589838 0.8589555 0.7568543 0.3722834 0.7642508 0.3705542 0.7557063 0.4720209 0.9228214 0.9997862 0.9228214 0.8562776 0.9294475 0.9997861 0.8525391 0.7812471 0.8525391 0.9247557 0.7798511 0.7812471 0.9986422 0.3903982 0.9986422 0.5339068 0.992016 0.3903982 0.8288932 0.1437224 0.8288932 2.1388e-4 0.9015812 0.1437224 0.5027297 0.1890299 0.5368484 0.1890299 0.5027297 0.2344863 0.5621104 0.1431457 0.5621104 0.1729526 0.5372748 0.1431457 0.6979308 0.1368888 0.6979308 0.1823452 0.6638121 0.1368888 0.5621104 0.2031871 0.5372748 0.2031871 0.5621104 0.1733803 0.6979308 0.2282293 0.6638121 0.2282293 0.6979308 0.1827729 0.5368484 0.1431457 0.5368484 0.1886022 0.5027297 0.1431457 0.9608764 0.136461 0.9608764 2.1386e-4 0.9764838 0.136461 0.3828462 0.8905278 0.3828461 0.7542806 0.3984535 0.8905278 0.9547173 0.8300724 0.9547173 0.6938251 0.9703247 0.8300724 0.9703247 0.8305 0.9703247 0.9667472 0.9547173 0.8305 0.7060778 0.136461 0.5702368 0.1364611 0.7060778 2.1386e-4 0.5515218 0.4871677 0.6873628 0.4871677 0.5515218 0.6234149 2.13243e-4 0.8864275 2.13222e-4 0.7532091 0.1221756 0.8864275 0.7163308 0.868777 0.7276781 0.868777 0.7163308 0.9911041 0.6574622 0.7570611 0.6574621 0.6238427 0.7794246 0.7570611 0.6927833 0.868777 0.7041306 0.868777 0.6927833 0.9911041 0.9802423 0.3662121 0.9802423 0.2329937 0.9915896 0.3662121 0.9915896 0.3666399 0.9915896 0.4998583 0.9802423 0.3666399 0.5241184 0.8853097 0.5241184 0.7520913 0.6460809 0.8853097 0.7045571 0.868777 0.7159043 0.868777 0.7045571 0.9911041 0.6541847 0.3701265 0.6541846 0.236908 0.7761471 0.3701264 0.6810096 0.868777 0.6923569 0.868777 0.6810097 0.9911041 0.9825249 0.9637184 0.9825249 0.8305 0.9938721 0.9637184 0.9915896 0.5002861 0.9915896 0.6335045 0.9802423 0.5002861 0.8097517 0.4871677 0.8097517 0.6203861 0.6877893 0.4871677 0.6692359 0.868777 0.6805832 0.868777 0.6692359 0.9911041 0.2646815 0.7542806 0.2646815 0.887499 0.1427191 0.7542806 0.7394518 0.9911041 0.7281045 0.9911041 0.7394518 0.868777 0.9820984 0.8305 0.9820984 0.9637184 0.9707511 0.8305 0.9845023 0.8270435 0.9845023 0.6938251 0.9958496 0.8270435 0.8284667 2.1386e-4 0.8284667 0.1334323 0.7065043 2.1388e-4 0.6574621 0.868777 0.6688094 0.868777 0.6574622 0.9911041 0.4017295 0.8853097 0.4017295 0.7520913 0.5236919 0.8853097 0.7512255 0.9911041 0.7398782 0.9911041 0.7512255 0.868777 0.9882575 2.1386e-4 0.9882575 0.1334323 0.9769102 2.1386e-4 0.7679548 0.7574889 0.7793021 0.7574889 0.7679548 0.8907073 0.3503519 0.7542806 0.3503519 0.9112573 0.265108 0.7542806 0.9886839 0.1571906 0.9886839 2.13865e-4 0.9964547 0.1571906 0.992016 0.3899705 0.992016 0.2329937 0.9997867 0.3899705 0.8101782 0.6203862 0.8101782 0.4634094 0.8954221 0.6203862 0.1455262 0.6442185 0.1427191 0.6357404 0.2617773 0.6348592 0.2631236 0.751825 0.2617773 0.6348592 0.2717978 0.7538529 0.3926289 0.6258705 0.401303 0.6238427 0.3912824 0.7428364 0.2750315 0.7334771 0.3912824 0.7428364 0.2722243 0.7419551 0.8727592 0.236908 0.9242899 0.236908 0.8727593 0.3432089 0.7036138 0.1832042 0.7036138 0.229092 0.6983572 0.1832042 0.5625368 0.2097348 0.5625368 0.1431457 0.5667964 0.2097348 0.7036138 0.1827765 0.6983572 0.1827765 0.7036138 0.1368888 0.1407402 0.6165341 0.1407402 0.6831231 0.1364807 0.6165341 0.4277309 0.1431457 0.4648038 0.1431457 0.4277309 0.2097348 0.4652303 0.1431457 0.5023033 0.1431457 0.4652303 0.2097348 + 0.1422926 2.1386e-4 0.1422926 0.2364802 2.13258e-4 0.2364802 0.1427191 0.2364802 0.1427191 2.1388e-4 0.2847985 2.1386e-4 0.285225 0.2364802 0.285225 2.1386e-4 0.4273044 2.1388e-4 2.13222e-4 0.4731744 2.13222e-4 0.236908 0.1422926 0.236908 0.4277309 0.142718 0.4277309 2.1389e-4 0.5698103 2.1386e-4 0.1422926 0.4736022 0.1422926 0.6161063 2.13253e-4 0.6161064 0.5258919 0.3804391 0.5258919 0.4867399 0.3984519 0.4867399 0.3980255 0.3804391 0.3980255 0.4867399 0.2705856 0.4867399 0.2701591 0.3804391 0.2701591 0.4867399 0.1427192 0.4867399 0.6537582 0.3804391 0.6537582 0.4867399 0.5263183 0.4867399 0.5295959 0.7516636 0.5295959 0.6238427 0.6570357 0.6238427 0.5291693 0.6238427 0.5291694 0.7516635 0.4017295 0.7516636 0.9707511 0.6938251 0.9840759 0.6938251 0.9840759 0.8300724 0.9664911 0.2329937 0.9798159 0.2329937 0.9798159 0.3692409 0.9664911 0.5063437 0.9798159 0.5063437 0.9798159 0.6425909 0.9798159 0.5059159 0.9664911 0.5059159 0.9664911 0.3696687 0.1427191 0.6234149 0.1427191 0.4871677 0.2785602 0.4871677 0.5510953 0.4871677 0.5510953 0.6234149 0.4152542 0.6234149 0.8760368 0.6238427 0.8916441 0.6238427 0.8916442 0.7600899 0.3507784 0.7542806 0.3663858 0.7542806 0.3663858 0.8905278 0.1226021 0.7532091 0.1382095 0.7532091 0.1382095 0.8894563 0.3824197 0.8905278 0.3668123 0.8905278 0.3668122 0.7542806 2.13243e-4 0.7527813 2.13222e-4 0.6165341 0.1360543 0.6165341 0.4148277 0.4871677 0.4148278 0.6234149 0.2789867 0.6234149 0.6537582 0.236908 0.6537582 0.3804391 0.5263183 0.3804391 0.270159 0.236908 0.2701591 0.3804391 0.1427192 0.3804391 0.3980254 0.236908 0.3980255 0.3804391 0.2705855 0.3804391 0.5258918 0.236908 0.5258919 0.3804391 0.3984519 0.3804391 0.9251287 2.1386e-4 0.9251288 0.2302018 0.9137815 0.2302018 0.9373289 0.2302018 0.9373289 2.13862e-4 0.9486762 2.1386e-4 0.9547173 0.4629817 0.9547173 0.2329937 0.9660646 0.2329937 0.9425171 0.6938251 0.9425171 0.9238131 0.9311699 0.9238131 0.4395046 0.2101625 0.4508518 0.2101625 0.4508518 0.2215437 0.4743993 0.2101625 0.4743993 0.2215437 0.463052 0.2215437 0.913355 2.1386e-4 0.913355 0.2302018 0.9020078 0.2302018 0.9311699 0.6933974 0.9311698 0.4634094 0.9425171 0.4634094 0.9547173 0.6933974 0.9547173 0.4634094 0.9660646 0.4634094 0.9542909 0.4634094 0.9542909 0.6933974 0.9429436 0.6933974 0.4277309 0.2101625 0.4390782 0.2101625 0.4390782 0.2215437 0.4743993 0.2219714 0.4743993 0.2333526 0.463052 0.2333526 0.9307434 0.4634094 0.9307434 0.6933974 0.9193962 0.6933974 0.9429436 0.4629817 0.9429436 0.2329937 0.9542909 0.2329937 0.9071958 0.4634094 0.9071959 0.6933974 0.8958486 0.6933974 0.9369025 2.1386e-4 0.9369025 0.2302018 0.9255552 0.2302018 0.4395046 0.2219715 0.4508518 0.2219715 0.4508518 0.2333527 0.4626256 0.2219715 0.4626256 0.2333526 0.4512783 0.2333526 0.9189696 0.4634094 0.9189697 0.6933974 0.9076224 0.6933974 0.9429436 0.9238131 0.9429436 0.6938251 0.9542908 0.6938251 0.9491026 0.2302018 0.9491026 2.1386e-4 0.9604499 2.13863e-4 0.9425171 0.2329937 0.9425171 0.4629817 0.9311699 0.4629817 0.4277309 0.2219715 0.4390782 0.2219715 0.4390782 0.2333527 0.4626256 0.2101625 0.4626256 0.2215437 0.4512783 0.2215437 0.6633856 0.2305361 0.5702368 0.2241213 0.6633856 0.1368888 0.8529656 0.8451576 0.9212107 0.7812471 0.9212107 0.909068 0.7589838 0.8589555 0.7675284 0.8683493 0.6574621 0.8582041 0.7557063 0.4720209 0.7642509 0.4814147 0.6541846 0.4712694 0.7675284 0.7574889 0.7675284 0.8683493 0.7589838 0.8589555 0.7642508 0.3705542 0.7642509 0.4814147 0.7557063 0.4720209 0.9228214 0.8562776 0.9294475 0.8562776 0.9294475 0.9997861 0.8525391 0.9247557 0.7798511 0.9247557 0.7798511 0.7812471 0.9986422 0.5339068 0.992016 0.5339068 0.992016 0.3903982 0.8288932 2.1388e-4 0.9015812 2.1386e-4 0.9015812 0.1437224 0.5368484 0.1890299 0.5368484 0.2344863 0.5027297 0.2344863 0.5621104 0.1729526 0.5372748 0.1729526 0.5372748 0.1431457 0.6979308 0.1823452 0.6638121 0.1823452 0.6638121 0.1368888 0.5372748 0.2031871 0.5372748 0.1733803 0.5621104 0.1733803 0.6638121 0.2282293 0.6638121 0.1827729 0.6979308 0.1827729 0.5368484 0.1886022 0.5027297 0.1886022 0.5027297 0.1431457 0.9608764 2.1386e-4 0.9764837 2.1386e-4 0.9764838 0.136461 0.3828461 0.7542806 0.3984535 0.7542806 0.3984535 0.8905278 0.9547173 0.6938251 0.9703247 0.6938251 0.9703247 0.8300724 0.9703247 0.9667472 0.9547173 0.9667472 0.9547173 0.8305 0.5702368 0.1364611 0.5702368 2.1389e-4 0.7060778 2.1386e-4 0.6873628 0.4871677 0.6873629 0.6234149 0.5515218 0.6234149 2.13222e-4 0.7532091 0.1221756 0.7532091 0.1221756 0.8864275 0.7276781 0.868777 0.7276781 0.9911041 0.7163308 0.9911041 0.6574621 0.6238427 0.7794246 0.6238427 0.7794246 0.7570611 0.7041306 0.868777 0.7041306 0.9911041 0.6927833 0.9911041 0.9802423 0.2329937 0.9915896 0.2329937 0.9915896 0.3662121 0.9915896 0.4998583 0.9802423 0.4998583 0.9802423 0.3666399 0.5241184 0.7520913 0.6460808 0.7520913 0.6460809 0.8853097 0.7159043 0.868777 0.7159043 0.9911041 0.7045571 0.9911041 0.6541846 0.236908 0.7761471 0.236908 0.7761471 0.3701264 0.6923569 0.868777 0.6923569 0.9911041 0.6810097 0.9911041 0.9825249 0.8305 0.9938721 0.8305 0.9938721 0.9637184 0.9915896 0.6335045 0.9802423 0.6335045 0.9802423 0.5002861 0.8097517 0.6203861 0.6877893 0.6203862 0.6877893 0.4871677 0.6805832 0.868777 0.6805832 0.9911041 0.6692359 0.9911041 0.2646815 0.887499 0.1427191 0.887499 0.1427191 0.7542806 0.7281045 0.9911041 0.7281045 0.868777 0.7394518 0.868777 0.9820984 0.9637184 0.9707511 0.9637184 0.9707511 0.8305 0.9845023 0.6938251 0.9958496 0.6938251 0.9958496 0.8270435 0.8284667 0.1334323 0.7065043 0.1334323 0.7065043 2.1388e-4 0.6688094 0.868777 0.6688094 0.9911041 0.6574622 0.9911041 0.4017295 0.7520913 0.5236919 0.7520913 0.5236919 0.8853097 0.7398782 0.9911041 0.7398782 0.868777 0.7512255 0.868777 0.9882575 0.1334323 0.9769102 0.1334323 0.9769102 2.1386e-4 0.7793021 0.7574889 0.7793021 0.8907073 0.7679548 0.8907073 0.3503519 0.9112573 0.265108 0.9112573 0.265108 0.7542806 0.9886839 2.13865e-4 0.9964547 2.1386e-4 0.9964547 0.1571906 0.992016 0.2329937 0.9997867 0.2329937 0.9997867 0.3899705 0.8101782 0.4634094 0.8954221 0.4634094 0.8954221 0.6203862 0.1427191 0.6357404 0.2717978 0.6238427 0.2617773 0.6348592 0.2617773 0.6348592 0.2717978 0.6238427 0.2717978 0.7538529 0.401303 0.6238427 0.401303 0.7538529 0.3912824 0.7428364 0.3912824 0.7428364 0.401303 0.7538529 0.2722243 0.7419551 0.9242899 0.236908 0.9242899 0.3432089 0.8727593 0.3432089 0.7036138 0.229092 0.6983572 0.229092 0.6983572 0.1832042 0.5625368 0.1431457 0.5667963 0.1431457 0.5667964 0.2097347 0.6983572 0.1827765 0.6983572 0.1368888 0.7036138 0.1368888 0.1407402 0.6831231 0.1364807 0.6831231 0.1364807 0.6165341 0.4648038 0.1431457 0.4648038 0.2097347 0.4277309 0.2097347 0.5023033 0.1431457 0.5023033 0.2097347 0.4652303 0.2097347 2.13222e-4 2.13883e-4 0.1422926 2.1386e-4 2.13258e-4 0.2364802 0.2847986 0.2364802 0.1427191 0.2364802 0.2847985 2.1386e-4 0.4273044 0.2364802 0.285225 0.2364802 0.4273044 2.1388e-4 0.1422926 0.4731744 2.13222e-4 0.4731744 0.1422926 0.236908 0.5698103 0.142718 0.4277309 0.142718 0.5698103 2.1386e-4 2.13222e-4 0.4736022 0.1422926 0.4736022 2.13253e-4 0.6161064 0.3984519 0.3804391 0.5258919 0.3804391 0.3984519 0.4867399 0.2705855 0.3804391 0.3980255 0.3804391 0.2705856 0.4867399 0.1427192 0.3804391 0.2701591 0.3804391 0.1427192 0.4867399 0.5263183 0.3804391 0.6537582 0.3804391 0.5263183 0.4867399 0.6570357 0.7516635 0.5295959 0.7516636 0.6570357 0.6238427 0.4017295 0.6238427 0.5291693 0.6238427 0.4017295 0.7516636 0.9707511 0.8300724 0.9707511 0.6938251 0.9840759 0.8300724 0.9664911 0.3692409 0.9664911 0.2329937 0.9798159 0.3692409 0.9664911 0.6425909 0.9664911 0.5063437 0.9798159 0.6425909 0.9798159 0.3696687 0.9798159 0.5059159 0.9664911 0.3696687 0.2785602 0.6234149 0.1427191 0.6234149 0.2785602 0.4871677 0.4152542 0.4871677 0.5510953 0.4871677 0.4152542 0.6234149 0.8760368 0.7600899 0.8760368 0.6238427 0.8916442 0.7600899 0.3507784 0.8905278 0.3507784 0.7542806 0.3663858 0.8905278 0.1226021 0.8894563 0.1226021 0.7532091 0.1382095 0.8894563 0.3824197 0.7542806 0.3824197 0.8905278 0.3668122 0.7542806 0.1360543 0.7527813 2.13243e-4 0.7527813 0.1360543 0.6165341 0.2789866 0.4871677 0.4148277 0.4871677 0.2789867 0.6234149 0.5263183 0.236908 0.6537582 0.236908 0.5263183 0.3804391 0.1427191 0.236908 0.270159 0.236908 0.1427192 0.3804391 0.2705855 0.236908 0.3980254 0.236908 0.2705855 0.3804391 0.3984519 0.236908 0.5258918 0.236908 0.3984519 0.3804391 0.9137814 2.1386e-4 0.9251287 2.1386e-4 0.9137815 0.2302018 0.9486762 0.2302018 0.9373289 0.2302018 0.9486762 2.1386e-4 0.9660646 0.4629817 0.9547173 0.4629817 0.9660646 0.2329937 0.9311698 0.6938251 0.9425171 0.6938251 0.9311699 0.9238131 0.4395046 0.2215437 0.4395046 0.2101625 0.4508518 0.2215437 0.463052 0.2101625 0.4743993 0.2101625 0.463052 0.2215437 0.9020077 2.1386e-4 0.913355 2.1386e-4 0.9020078 0.2302018 0.9425171 0.6933974 0.9311699 0.6933974 0.9425171 0.4634094 0.9660646 0.6933974 0.9547173 0.6933974 0.9660646 0.4634094 0.9429436 0.4634094 0.9542909 0.4634094 0.9429436 0.6933974 0.4277309 0.2215437 0.4277309 0.2101625 0.4390782 0.2215437 0.463052 0.2219714 0.4743993 0.2219714 0.463052 0.2333526 0.9193961 0.4634094 0.9307434 0.4634094 0.9193962 0.6933974 0.9542909 0.4629817 0.9429436 0.4629817 0.9542909 0.2329937 0.8958486 0.4634094 0.9071958 0.4634094 0.8958486 0.6933974 0.9255552 2.1386e-4 0.9369025 2.1386e-4 0.9255552 0.2302018 0.4395046 0.2333527 0.4395046 0.2219715 0.4508518 0.2333527 0.4512783 0.2219715 0.4626256 0.2219715 0.4512783 0.2333526 0.9076223 0.4634094 0.9189696 0.4634094 0.9076224 0.6933974 0.9542909 0.9238131 0.9429436 0.9238131 0.9542908 0.6938251 0.9604499 0.2302018 0.9491026 0.2302018 0.9604499 2.13863e-4 0.9311698 0.2329937 0.9425171 0.2329937 0.9311699 0.4629817 0.4277309 0.2333527 0.4277309 0.2219715 0.4390782 0.2333527 0.4512783 0.2101625 0.4626256 0.2101625 0.4512783 0.2215437 0.6598558 0.8509747 0.7589838 0.8589555 0.6574621 0.8582041 0.6565783 0.4640402 0.7557063 0.4720209 0.6541846 0.4712694 0.7601318 0.759218 0.7675284 0.7574889 0.7589838 0.8589555 0.7568543 0.3722834 0.7642508 0.3705542 0.7557063 0.4720209 0.9228214 0.9997862 0.9228214 0.8562776 0.9294475 0.9997861 0.8525391 0.7812471 0.8525391 0.9247557 0.7798511 0.7812471 0.9986422 0.3903982 0.9986422 0.5339068 0.992016 0.3903982 0.8288932 0.1437224 0.8288932 2.1388e-4 0.9015812 0.1437224 0.5027297 0.1890299 0.5368484 0.1890299 0.5027297 0.2344863 0.5621104 0.1431457 0.5621104 0.1729526 0.5372748 0.1431457 0.6979308 0.1368888 0.6979308 0.1823452 0.6638121 0.1368888 0.5621104 0.2031871 0.5372748 0.2031871 0.5621104 0.1733803 0.6979308 0.2282293 0.6638121 0.2282293 0.6979308 0.1827729 0.5368484 0.1431457 0.5368484 0.1886022 0.5027297 0.1431457 0.9608764 0.136461 0.9608764 2.1386e-4 0.9764838 0.136461 0.3828462 0.8905278 0.3828461 0.7542806 0.3984535 0.8905278 0.9547173 0.8300724 0.9547173 0.6938251 0.9703247 0.8300724 0.9703247 0.8305 0.9703247 0.9667472 0.9547173 0.8305 0.7060778 0.136461 0.5702368 0.1364611 0.7060778 2.1386e-4 0.5515218 0.4871677 0.6873628 0.4871677 0.5515218 0.6234149 2.13243e-4 0.8864275 2.13222e-4 0.7532091 0.1221756 0.8864275 0.7163308 0.868777 0.7276781 0.868777 0.7163308 0.9911041 0.6574622 0.7570611 0.6574621 0.6238427 0.7794246 0.7570611 0.6927833 0.868777 0.7041306 0.868777 0.6927833 0.9911041 0.9802423 0.3662121 0.9802423 0.2329937 0.9915896 0.3662121 0.9915896 0.3666399 0.9915896 0.4998583 0.9802423 0.3666399 0.5241184 0.8853097 0.5241184 0.7520913 0.6460809 0.8853097 0.7045571 0.868777 0.7159043 0.868777 0.7045571 0.9911041 0.6541847 0.3701265 0.6541846 0.236908 0.7761471 0.3701264 0.6810096 0.868777 0.6923569 0.868777 0.6810097 0.9911041 0.9825249 0.9637184 0.9825249 0.8305 0.9938721 0.9637184 0.9915896 0.5002861 0.9915896 0.6335045 0.9802423 0.5002861 0.8097517 0.4871677 0.8097517 0.6203861 0.6877893 0.4871677 0.6692359 0.868777 0.6805832 0.868777 0.6692359 0.9911041 0.2646815 0.7542806 0.2646815 0.887499 0.1427191 0.7542806 0.7394518 0.9911041 0.7281045 0.9911041 0.7394518 0.868777 0.9820984 0.8305 0.9820984 0.9637184 0.9707511 0.8305 0.9845023 0.8270435 0.9845023 0.6938251 0.9958496 0.8270435 0.8284667 2.1386e-4 0.8284667 0.1334323 0.7065043 2.1388e-4 0.6574621 0.868777 0.6688094 0.868777 0.6574622 0.9911041 0.4017295 0.8853097 0.4017295 0.7520913 0.5236919 0.8853097 0.7512255 0.9911041 0.7398782 0.9911041 0.7512255 0.868777 0.9882575 2.1386e-4 0.9882575 0.1334323 0.9769102 2.1386e-4 0.7679548 0.7574889 0.7793021 0.7574889 0.7679548 0.8907073 0.3503519 0.7542806 0.3503519 0.9112573 0.265108 0.7542806 0.9886839 0.1571906 0.9886839 2.13865e-4 0.9964547 0.1571906 0.992016 0.3899705 0.992016 0.2329937 0.9997867 0.3899705 0.8101782 0.6203862 0.8101782 0.4634094 0.8954221 0.6203862 0.1455262 0.6442185 0.1427191 0.6357404 0.2617773 0.6348592 0.2631236 0.751825 0.2617773 0.6348592 0.2717978 0.7538529 0.3926289 0.6258705 0.401303 0.6238427 0.3912824 0.7428364 0.2750315 0.7334771 0.3912824 0.7428364 0.2722243 0.7419551 0.8727592 0.236908 0.9242899 0.236908 0.8727593 0.3432089 0.7036138 0.1832042 0.7036138 0.229092 0.6983572 0.1832042 0.5625368 0.2097347 0.5625368 0.1431457 0.5667964 0.2097347 0.7036138 0.1827765 0.6983572 0.1827765 0.7036138 0.1368888 0.1407402 0.6165341 0.1407402 0.6831231 0.1364807 0.6165341 0.4277309 0.1431457 0.4648038 0.1431457 0.4277309 0.2097347 0.4652303 0.1431457 0.5023033 0.1431457 0.4652303 0.2097347 - + - 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 -

3 0 0 2 0 1 0 0 2 7 1 3 6 1 4 2 1 5 5 2 6 4 2 7 6 2 8 1 3 9 0 3 10 4 3 11 2 4 12 6 4 13 4 4 14 7 5 15 3 5 16 1 5 17 33 6 18 10 6 19 8 6 20 34 7 21 14 7 22 10 7 23 35 8 24 12 8 25 14 8 26 32 9 27 8 9 28 12 9 29 10 10 30 14 10 31 12 10 32 15 11 33 11 11 34 9 11 35 19 12 36 18 12 37 16 12 38 23 13 39 22 13 40 18 13 41 21 14 42 20 14 43 22 14 44 17 15 45 16 15 46 20 15 47 18 16 48 22 16 49 20 16 50 23 17 51 19 17 52 17 17 53 27 18 54 26 18 55 24 18 56 31 19 57 30 19 58 26 19 59 29 20 60 28 20 61 30 20 62 25 21 63 24 21 64 28 21 65 26 22 66 30 22 67 28 22 68 31 23 69 27 23 70 25 23 71 9 24 72 32 24 73 35 24 74 13 25 75 35 25 76 34 25 77 15 26 78 34 26 79 33 26 80 11 27 81 33 27 82 32 27 83 39 28 84 38 28 85 36 28 86 43 29 87 42 29 88 38 29 89 41 30 90 40 30 91 42 30 92 37 31 93 36 31 94 40 31 95 38 32 96 42 32 97 40 32 98 43 33 99 39 33 100 37 33 101 47 34 102 46 34 103 44 34 104 51 29 105 50 29 106 46 29 107 49 35 108 48 35 109 50 35 110 45 31 111 44 31 112 48 31 113 46 32 114 50 32 115 48 32 116 51 33 117 47 33 118 45 33 119 55 28 120 54 28 121 52 28 122 59 36 123 58 36 124 54 36 125 57 30 126 56 30 127 58 30 128 53 37 129 52 37 130 56 37 131 54 38 132 58 38 133 56 38 134 59 39 135 55 39 136 53 39 137 63 34 138 62 34 139 60 34 140 67 36 141 66 36 142 62 36 143 65 35 144 64 35 145 66 35 146 61 37 147 60 37 148 64 37 149 62 38 150 66 38 151 64 38 152 67 39 153 63 39 154 61 39 155 68 40 156 70 40 157 73 40 158 69 41 159 72 41 160 71 41 161 79 42 162 82 42 163 85 42 164 74 43 165 80 43 166 84 43 167 83 42 168 82 42 169 79 42 170 81 43 171 80 43 172 74 43 173 83 44 174 77 44 175 76 44 176 77 45 177 79 45 178 74 45 179 78 46 180 85 46 181 81 46 182 79 47 183 78 47 184 75 47 185 86 48 186 88 48 187 89 48 188 90 49 189 92 49 190 93 49 191 97 50 192 96 50 193 94 50 194 101 51 195 100 51 196 98 51 197 102 52 198 104 52 199 105 52 200 109 53 201 108 53 202 106 53 203 113 54 204 112 54 205 110 54 206 117 55 207 116 55 208 112 55 209 115 56 210 114 56 211 116 56 212 111 57 213 110 57 214 114 57 215 112 58 216 116 58 217 114 58 218 117 59 219 113 59 220 111 59 221 121 60 222 120 60 223 118 60 224 125 61 225 124 61 226 120 61 227 123 62 228 122 62 229 124 62 230 119 63 231 118 63 232 122 63 233 120 64 234 124 64 235 122 64 236 125 65 237 121 65 238 119 65 239 129 66 240 128 66 241 126 66 242 133 67 243 132 67 244 128 67 245 131 68 246 130 68 247 132 68 248 127 69 249 126 69 250 130 69 251 128 70 252 132 70 253 130 70 254 133 71 255 129 71 256 127 71 257 137 72 258 136 72 259 134 72 260 141 73 261 140 73 262 136 73 263 139 74 264 138 74 265 140 74 266 135 75 267 134 75 268 138 75 269 136 76 270 140 76 271 138 76 272 141 77 273 137 77 274 135 77 275 145 78 276 144 78 277 142 78 278 149 79 279 148 79 280 144 79 281 147 80 282 146 80 283 148 80 284 143 81 285 142 81 286 146 81 287 144 82 288 148 82 289 146 82 290 147 83 291 149 83 292 145 83 293 154 84 294 155 84 295 159 84 296 153 85 297 150 85 298 157 85 299 151 86 300 154 86 301 160 86 302 155 87 303 153 87 304 161 87 305 151 88 306 152 88 307 155 88 308 155 88 309 152 88 310 150 88 311 157 89 312 158 89 313 159 89 314 159 89 315 158 89 316 156 89 317 164 90 318 162 90 319 163 90 320 169 91 321 168 91 322 166 91 323 173 92 324 172 92 325 168 92 326 173 93 327 171 93 328 170 93 329 167 94 330 166 94 331 170 94 332 168 95 333 172 95 334 170 95 335 173 96 336 169 96 337 167 96 338 1 0 339 3 0 340 0 0 341 3 1 342 7 1 343 2 1 344 7 2 345 5 2 346 6 2 347 5 3 348 1 3 349 4 3 350 0 4 351 2 4 352 4 4 353 5 5 354 7 5 355 1 5 356 32 97 357 33 97 358 8 97 359 33 7 360 34 7 361 10 7 362 34 98 363 35 98 364 14 98 365 35 9 366 32 9 367 12 9 368 8 10 369 10 10 370 12 10 371 13 11 372 15 11 373 9 11 374 17 99 375 19 99 376 16 99 377 19 13 378 23 13 379 18 13 380 23 100 381 21 100 382 22 100 383 21 15 384 17 15 385 20 15 386 16 16 387 18 16 388 20 16 389 21 17 390 23 17 391 17 17 392 25 101 393 27 101 394 24 101 395 27 19 396 31 19 397 26 19 398 31 102 399 29 102 400 30 102 401 29 21 402 25 21 403 28 21 404 24 22 405 26 22 406 28 22 407 29 23 408 31 23 409 25 23 410 13 24 411 9 24 412 35 24 413 15 103 414 13 103 415 34 103 416 11 26 417 15 26 418 33 26 419 9 104 420 11 104 421 32 104 422 37 28 423 39 28 424 36 28 425 39 29 426 43 29 427 38 29 428 43 30 429 41 30 430 42 30 431 41 105 432 37 105 433 40 105 434 36 38 435 38 38 436 40 38 437 41 39 438 43 39 439 37 39 440 45 34 441 47 34 442 44 34 443 47 106 444 51 106 445 46 106 446 51 35 447 49 35 448 50 35 449 49 31 450 45 31 451 48 31 452 44 38 453 46 38 454 48 38 455 49 39 456 51 39 457 45 39 458 53 28 459 55 28 460 52 28 461 55 36 462 59 36 463 54 36 464 59 30 465 57 30 466 58 30 467 57 107 468 53 107 469 56 107 470 52 108 471 54 108 472 56 108 473 57 109 474 59 109 475 53 109 476 61 34 477 63 34 478 60 34 479 63 110 480 67 110 481 62 110 482 67 35 483 65 35 484 66 35 485 65 37 486 61 37 487 64 37 488 60 108 489 62 108 490 64 108 491 65 109 492 67 109 493 61 109 494 78 111 495 79 111 496 85 111 497 76 112 498 74 112 499 84 112 500 77 111 501 83 111 502 79 111 503 75 113 504 81 113 505 74 113 506 84 114 507 83 114 508 76 114 509 76 115 510 77 115 511 74 115 512 75 116 513 78 116 514 81 116 515 74 117 516 79 117 517 75 117 518 87 48 519 86 48 520 89 48 521 91 49 522 90 49 523 93 49 524 95 50 525 97 50 526 94 50 527 99 51 528 101 51 529 98 51 530 103 118 531 102 118 532 105 118 533 107 119 534 109 119 535 106 119 536 111 120 537 113 120 538 110 120 539 113 55 540 117 55 541 112 55 542 117 121 543 115 121 544 116 121 545 115 57 546 111 57 547 114 57 548 110 58 549 112 58 550 114 58 551 115 59 552 117 59 553 111 59 554 119 60 555 121 60 556 118 60 557 121 122 558 125 122 559 120 122 560 125 62 561 123 62 562 124 62 563 123 123 564 119 123 565 122 123 566 118 124 567 120 124 568 122 124 569 123 125 570 125 125 571 119 125 572 127 66 573 129 66 574 126 66 575 129 126 576 133 126 577 128 126 578 133 68 579 131 68 580 132 68 581 131 127 582 127 127 583 130 127 584 126 70 585 128 70 586 130 70 587 131 71 588 133 71 589 127 71 590 135 128 591 137 128 592 134 128 593 137 73 594 141 73 595 136 73 596 141 129 597 139 129 598 140 129 599 139 130 600 135 130 601 138 130 602 134 131 603 136 131 604 138 131 605 139 132 606 141 132 607 135 132 608 143 133 609 145 133 610 142 133 611 145 79 612 149 79 613 144 79 614 149 134 615 147 134 616 148 134 617 147 81 618 143 81 619 146 81 620 142 76 621 144 76 622 146 76 623 143 135 624 147 135 625 145 135 626 160 136 627 154 136 628 159 136 629 161 137 630 153 137 631 157 137 632 156 138 633 151 138 634 160 138 635 159 139 636 155 139 637 161 139 638 154 140 639 151 140 640 155 140 641 153 141 642 155 141 643 150 141 644 161 142 645 157 142 646 159 142 647 160 142 648 159 142 649 156 142 650 165 90 651 164 90 652 163 90 653 167 143 654 169 143 655 166 143 656 169 144 657 173 144 658 168 144 659 172 145 660 173 145 661 170 145 662 171 146 663 167 146 664 170 146 665 166 147 666 168 147 667 170 147 668 171 148 669 173 148 670 167 148 671

-
+

3 0 0 2 0 1 0 0 2 7 1 3 6 1 4 2 1 5 5 2 6 4 2 7 6 2 8 1 3 9 0 3 10 4 3 11 2 4 12 6 4 13 4 4 14 7 5 15 3 5 16 1 5 17 33 0 18 10 0 19 8 0 20 34 1 21 14 1 22 10 1 23 35 2 24 12 2 25 14 2 26 32 3 27 8 3 28 12 3 29 10 4 30 14 4 31 12 4 32 15 5 33 11 5 34 9 5 35 19 0 36 18 0 37 16 0 38 23 1 39 22 1 40 18 1 41 21 2 42 20 2 43 22 2 44 17 3 45 16 3 46 20 3 47 18 4 48 22 4 49 20 4 50 23 5 51 19 5 52 17 5 53 27 0 54 26 0 55 24 0 56 31 1 57 30 1 58 26 1 59 29 2 60 28 2 61 30 2 62 25 3 63 24 3 64 28 3 65 26 4 66 30 4 67 28 4 68 31 5 69 27 5 70 25 5 71 9 3 72 32 3 73 35 3 74 13 2 75 35 2 76 34 2 77 15 1 78 34 1 79 33 1 80 11 0 81 33 0 82 32 0 83 39 0 84 38 0 85 36 0 86 43 1 87 42 1 88 38 1 89 41 2 90 40 2 91 42 2 92 37 3 93 36 3 94 40 3 95 38 4 96 42 4 97 40 4 98 43 5 99 39 5 100 37 5 101 47 0 102 46 0 103 44 0 104 51 1 105 50 1 106 46 1 107 49 2 108 48 2 109 50 2 110 45 3 111 44 3 112 48 3 113 46 4 114 50 4 115 48 4 116 51 5 117 47 5 118 45 5 119 55 0 120 54 0 121 52 0 122 59 1 123 58 1 124 54 1 125 57 2 126 56 2 127 58 2 128 53 3 129 52 3 130 56 3 131 54 4 132 58 4 133 56 4 134 59 5 135 55 5 136 53 5 137 63 0 138 62 0 139 60 0 140 67 1 141 66 1 142 62 1 143 65 2 144 64 2 145 66 2 146 61 3 147 60 3 148 64 3 149 62 4 150 66 4 151 64 4 152 67 5 153 63 5 154 61 5 155 68 3 156 70 3 157 73 3 158 69 1 159 72 1 160 71 1 161 79 3 162 82 3 163 85 3 164 74 1 165 80 1 166 84 1 167 83 3 168 82 3 169 79 3 170 81 1 171 80 1 172 74 1 173 83 6 174 77 6 175 76 6 176 77 7 177 79 7 178 74 7 179 78 8 180 85 8 181 81 8 182 79 9 183 78 9 184 75 9 185 86 3 186 88 3 187 89 3 188 90 3 189 92 3 190 93 3 191 97 1 192 96 1 193 94 1 194 101 1 195 100 1 196 98 1 197 102 2 198 104 2 199 105 2 200 109 0 201 108 0 202 106 0 203 113 0 204 112 0 205 110 0 206 117 1 207 116 1 208 112 1 209 115 2 210 114 2 211 116 2 212 111 3 213 110 3 214 114 3 215 112 4 216 116 4 217 114 4 218 117 5 219 113 5 220 111 5 221 121 0 222 120 0 223 118 0 224 125 1 225 124 1 226 120 1 227 123 2 228 122 2 229 124 2 230 119 3 231 118 3 232 122 3 233 120 4 234 124 4 235 122 4 236 125 5 237 121 5 238 119 5 239 129 0 240 128 0 241 126 0 242 133 1 243 132 1 244 128 1 245 131 2 246 130 2 247 132 2 248 127 3 249 126 3 250 130 3 251 128 4 252 132 4 253 130 4 254 133 5 255 129 5 256 127 5 257 137 10 258 136 10 259 134 10 260 141 0 261 140 0 262 136 0 263 139 11 264 138 11 265 140 11 266 135 2 267 134 2 268 138 2 269 136 12 270 140 12 271 138 12 272 141 13 273 137 13 274 135 13 275 145 14 276 144 14 277 142 14 278 149 0 279 148 0 280 144 0 281 147 1 282 146 1 283 148 1 284 143 2 285 142 2 286 146 2 287 144 4 288 148 4 289 146 4 290 147 5 291 149 5 292 145 5 293 154 15 294 155 15 295 159 15 296 153 16 297 150 16 298 157 16 299 151 17 300 154 17 301 160 17 302 155 18 303 153 18 304 161 18 305 151 1 306 152 1 307 155 1 308 155 1 309 152 1 310 150 1 311 157 3 312 158 3 313 159 3 314 159 3 315 158 3 316 156 3 317 164 3 318 162 3 319 163 3 320 169 0 321 168 0 322 166 0 323 173 19 324 172 19 325 168 19 326 173 20 327 171 20 328 170 20 329 167 21 330 166 21 331 170 21 332 168 22 333 172 22 334 170 22 335 173 23 336 169 23 337 167 23 338 1 0 339 3 0 340 0 0 341 3 1 342 7 1 343 2 1 344 7 2 345 5 2 346 6 2 347 5 3 348 1 3 349 4 3 350 0 4 351 2 4 352 4 4 353 5 5 354 7 5 355 1 5 356 32 0 357 33 0 358 8 0 359 33 1 360 34 1 361 10 1 362 34 2 363 35 2 364 14 2 365 35 3 366 32 3 367 12 3 368 8 4 369 10 4 370 12 4 371 13 5 372 15 5 373 9 5 374 17 0 375 19 0 376 16 0 377 19 1 378 23 1 379 18 1 380 23 2 381 21 2 382 22 2 383 21 3 384 17 3 385 20 3 386 16 4 387 18 4 388 20 4 389 21 5 390 23 5 391 17 5 392 25 0 393 27 0 394 24 0 395 27 1 396 31 1 397 26 1 398 31 2 399 29 2 400 30 2 401 29 3 402 25 3 403 28 3 404 24 4 405 26 4 406 28 4 407 29 5 408 31 5 409 25 5 410 13 3 411 9 3 412 35 3 413 15 2 414 13 2 415 34 2 416 11 1 417 15 1 418 33 1 419 9 0 420 11 0 421 32 0 422 37 0 423 39 0 424 36 0 425 39 1 426 43 1 427 38 1 428 43 2 429 41 2 430 42 2 431 41 3 432 37 3 433 40 3 434 36 4 435 38 4 436 40 4 437 41 5 438 43 5 439 37 5 440 45 0 441 47 0 442 44 0 443 47 1 444 51 1 445 46 1 446 51 2 447 49 2 448 50 2 449 49 3 450 45 3 451 48 3 452 44 4 453 46 4 454 48 4 455 49 5 456 51 5 457 45 5 458 53 0 459 55 0 460 52 0 461 55 1 462 59 1 463 54 1 464 59 2 465 57 2 466 58 2 467 57 3 468 53 3 469 56 3 470 52 4 471 54 4 472 56 4 473 57 5 474 59 5 475 53 5 476 61 0 477 63 0 478 60 0 479 63 1 480 67 1 481 62 1 482 67 2 483 65 2 484 66 2 485 65 3 486 61 3 487 64 3 488 60 4 489 62 4 490 64 4 491 65 5 492 67 5 493 61 5 494 78 3 495 79 3 496 85 3 497 76 1 498 74 1 499 84 1 500 77 3 501 83 3 502 79 3 503 75 1 504 81 1 505 74 1 506 84 6 507 83 6 508 76 6 509 76 24 510 77 24 511 74 24 512 75 8 513 78 8 514 81 8 515 74 25 516 79 25 517 75 25 518 87 3 519 86 3 520 89 3 521 91 3 522 90 3 523 93 3 524 95 1 525 97 1 526 94 1 527 99 1 528 101 1 529 98 1 530 103 2 531 102 2 532 105 2 533 107 0 534 109 0 535 106 0 536 111 0 537 113 0 538 110 0 539 113 1 540 117 1 541 112 1 542 117 2 543 115 2 544 116 2 545 115 3 546 111 3 547 114 3 548 110 4 549 112 4 550 114 4 551 115 5 552 117 5 553 111 5 554 119 0 555 121 0 556 118 0 557 121 1 558 125 1 559 120 1 560 125 2 561 123 2 562 124 2 563 123 3 564 119 3 565 122 3 566 118 4 567 120 4 568 122 4 569 123 5 570 125 5 571 119 5 572 127 0 573 129 0 574 126 0 575 129 1 576 133 1 577 128 1 578 133 2 579 131 2 580 132 2 581 131 3 582 127 3 583 130 3 584 126 4 585 128 4 586 130 4 587 131 5 588 133 5 589 127 5 590 135 10 591 137 10 592 134 10 593 137 0 594 141 0 595 136 0 596 141 26 597 139 26 598 140 26 599 139 2 600 135 2 601 138 2 602 134 27 603 136 27 604 138 27 605 139 5 606 141 5 607 135 5 608 143 28 609 145 28 610 142 28 611 145 0 612 149 0 613 144 0 614 149 1 615 147 1 616 148 1 617 147 2 618 143 2 619 146 2 620 142 4 621 144 4 622 146 4 623 143 5 624 147 5 625 145 5 626 160 29 627 154 29 628 159 29 629 161 30 630 153 30 631 157 30 632 156 31 633 151 31 634 160 31 635 159 32 636 155 32 637 161 32 638 154 1 639 151 1 640 155 1 641 153 1 642 155 1 643 150 1 644 161 3 645 157 3 646 159 3 647 160 3 648 159 3 649 156 3 650 165 3 651 164 3 652 163 3 653 167 0 654 169 0 655 166 0 656 169 33 657 173 33 658 168 33 659 172 2 660 173 2 661 170 2 662 171 21 663 167 21 664 170 21 665 166 22 666 168 22 667 170 22 668 171 34 669 173 34 670 167 34 671

+
- 0.9568985 0 0 0 0 0.9568985 0 0 0 0 0.9568985 0 0 0 0 1 1.045043 -6.35101e-11 0 0.100148 6.35101e-11 1.045043 0 0.1284036 0 0 1.045043 10.82729 0 0 0 1 1.045043 -6.35101e-11 0 0.05135649 6.35101e-11 1.045043 0 -2.606869 0 0 1.045043 15.85755 0 0 0 1 + + 1.045043 0 0 0 0 1.045043 0 -0.03810131 0 0 1.045043 12.79453 0 0 0 1 +
\ No newline at end of file Property changes on: ps/trunk/binaries/data/mods/public/art/meshes/structural/gaul_wooden_tower_2.dae ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/wooden_tower.xml (revision 23185) @@ -1,44 +1,54 @@ structural/maur_wooden_tower.dae + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/mauryas/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/persians/wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/persians/wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/persians/wall_long.xml (revision 23185) @@ -1,24 +1,33 @@ structural/pers_wall_long.dae + + + + + + + + + player_trans_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/persians/wall_long.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/defense_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/defense_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/defense_tower.xml (revision 23185) @@ -1,54 +1,64 @@ structural/ptol_defense_tower.dae structural/ptol_defense_tower_2.dae + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/defense_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/wooden_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/wooden_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/wooden_tower.xml (revision 23185) @@ -1,54 +1,63 @@ structural/ptol_wooden_tower.dae structural/ptol_wooden_tower_2.dae + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/ptolemies/wooden_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/romans/siege_wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/romans/siege_wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/romans/siege_wall_long.xml (revision 23185) @@ -1,19 +1,39 @@ structural/siege_large_wood.dae + + + + + + + + + + + + + + + + + + + + basic_trans_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/romans/siege_wall_long.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/scout_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/scout_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/scout_tower.xml (revision 23185) @@ -1,43 +1,53 @@ structural/sele_tower.dae - + + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/seleucids/scout_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/actors/structures/spartans/defense_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/art/actors/structures/spartans/defense_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/actors/structures/spartans/defense_tower.xml (revision 23185) @@ -1,45 +1,55 @@ structural/spart_defense_tower.dae + + + + + + + + + + player_trans_ao_parallax_spec.xml Property changes on: ps/trunk/binaries/data/mods/public/art/actors/structures/spartans/defense_tower.xml ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/art/meshes/structural/gaul_wooden_tower_2_roof.dae =================================================================== --- ps/trunk/binaries/data/mods/public/art/meshes/structural/gaul_wooden_tower_2_roof.dae (revision 23184) +++ ps/trunk/binaries/data/mods/public/art/meshes/structural/gaul_wooden_tower_2_roof.dae (revision 23185) @@ -1,82 +1,79 @@ - + Blender User - Blender 2.76.0 commit date:2015-11-03, commit time:10:56, hash:f337fea + Blender 2.80.75 commit date:2019-07-29, commit time:14:47, hash:f6cb5f54494e - 2016-09-22T14:09:48 - 2016-09-22T14:09:48 + 2019-11-23T00:39:02 + 2019-11-23T00:39:02 Z_UP - - + - - 4.097249 3.631983 11.48177 -4.097249 3.631983 11.48177 0 3.631983 15.97282 -4.097249 -3.708186 11.48177 4.097249 -3.708186 11.48177 0 -3.708186 15.97282 0.3389611 3.750006 15.67322 -0.3389611 3.750006 15.67322 0 3.750006 16.04476 -0.3389611 -3.826209 15.67322 0.3389611 -3.826209 15.67322 0 -3.826209 16.04476 + + 4.097249 3.670084 -1.312757 -4.097249 3.670084 -1.312757 0 3.670084 3.178292 -4.097249 -3.670085 -1.312757 4.097249 -3.670085 -1.312757 0 -3.670085 3.178292 0.3389611 3.788107 2.878693 -0.3389611 3.788107 2.878693 0 3.788107 3.250233 -0.3389611 -3.788108 2.878693 0.3389611 -3.788108 2.878693 0 -3.788108 3.250233 - + - - 0.7387536 0 0.6739757 -0.7387537 0 0.6739755 0.7387458 0 0.6739842 0 0 1 -0.7387458 0 0.6739842 0.7387536 0 0.6739757 -0.7387536 0 0.6739756 + + 0.7387537 0 0.6739755 -0.7387537 0 0.6739755 0.7387458 0 0.6739842 0 0 1 -0.7387458 0 0.6739842 - + - - 0.2982801 0.386433 0.2982801 0.9906253 0.1159018 0.9906252 0.2982801 0.9906253 0.2982801 0.383718 0.1159018 0.3837179 0.2982801 0.9679377 0.2982801 0.9995544 0.1159018 0.9995543 0.2982801 0.9995544 0.2982801 0.9652227 0.1159018 0.9652226 0.1159018 0.386433 0.2982801 0.386433 0.1159018 0.9906252 0.1159018 0.9906252 0.2982801 0.9906253 0.1159018 0.3837179 0.1159018 0.9679377 0.2982801 0.9679377 0.1159018 0.9995543 0.1159018 0.9995543 0.2982801 0.9995544 0.1159018 0.9652226 + + 0.2982801 0.386433 0.2982801 0.9906253 0.1159018 0.9906252 0.2982801 0.9906253 0.2982801 0.383718 0.1159018 0.3837179 0.2982801 0.9679377 0.2982801 0.9995544 0.1159018 0.9995543 0.2982801 0.9995544 0.2982801 0.9652227 0.1159018 0.9652226 0.1159018 0.386433 0.2982801 0.386433 0.1159018 0.9906252 0.1159018 0.9906252 0.2982801 0.9906253 0.1159018 0.3837179 0.1159018 0.9679377 0.2982801 0.9679377 0.1159018 0.9995543 0.1159018 0.9995543 0.2982801 0.9995544 0.1159018 0.9652226 - + - - 0.8723328 0.3938847 0.7765736 0.3938848 0.7765736 0.236908 0.7798511 0.6238427 0.8756103 0.6238427 0.8756103 0.7808194 0.6544293 0.914116 0.6465073 0.914116 0.6465073 0.7520913 0.9228214 0.6938251 0.9307433 0.6938251 0.9307433 0.8558499 0.8723328 0.236908 0.8723328 0.3938847 0.7765736 0.236908 0.7798511 0.7808194 0.7798511 0.6238427 0.8756103 0.7808194 0.6544293 0.7520913 0.6544293 0.914116 0.6465073 0.7520913 0.9228214 0.8558499 0.9228214 0.6938251 0.9307433 0.8558499 + + 0.8723328 0.3938847 0.7765736 0.3938848 0.7765736 0.236908 0.7798511 0.6238427 0.8756103 0.6238427 0.8756103 0.7808194 0.6544293 0.914116 0.6465073 0.914116 0.6465073 0.7520913 0.9228214 0.6938251 0.9307433 0.6938251 0.9307433 0.8558499 0.8723328 0.236908 0.8723328 0.3938847 0.7765736 0.236908 0.7798511 0.7808194 0.7798511 0.6238427 0.8756103 0.7808194 0.6544293 0.7520913 0.6544293 0.914116 0.6465073 0.7520913 0.9228214 0.8558499 0.9228214 0.6938251 0.9307433 0.8558499 - + - - + + - - - - - - 3 3 3 3 3 3 3 3 -

0 0 0 2 0 1 5 0 2 2 1 3 1 1 4 3 1 5 6 2 6 8 3 7 11 3 8 8 3 9 7 4 10 9 4 11 4 5 12 0 5 13 5 5 14 5 6 15 2 6 16 3 6 17 10 2 18 6 2 19 11 3 20 11 3 21 8 3 22 9 4 23

-
+ + + + + +

0 0 0 2 0 1 5 0 2 2 1 3 1 1 4 3 1 5 6 2 6 8 3 7 11 3 8 8 3 9 7 4 10 9 4 11 4 0 12 0 0 13 5 0 14 5 1 15 2 1 16 3 1 17 10 2 18 6 2 19 11 3 20 11 3 21 8 3 22 9 4 23

+
- - + 0.9568985 0 0 0 0 0.9568985 0 0 0 0 0.9568985 0 0 0 0 1 - +
\ No newline at end of file Property changes on: ps/trunk/binaries/data/mods/public/art/meshes/structural/gaul_wooden_tower_2_roof.dae ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/mace_defense_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/mace_defense_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/mace_defense_tower.xml (revision 23185) @@ -1,42 +1,44 @@ 15.0 mace Pyrgíon 22.0 structures/{civ}_tower_artillery Reinforce with stone block, and install small stone throwers to upgrade this defense tower into a slow, area of effect, and siege resistant artillery tower. phase_city 150 100 + upgrading structures/{civ}_tower_bolt Reinforce with stone block, and install scorpions to upgrade this defense tower into a prompt, long range, and accurate bolt tower. phase_city 100 100 + upgrading structures/hellenes/scout_tower.xml Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/rome_siege_wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/rome_siege_wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/rome_siege_wall_long.xml (revision 23185) @@ -1,80 +1,91 @@ 15.0 35.0 5.0 4.0 7.0 3.0 own neutral enemy 60 0 7.0 - 05.70 + 0 + 5.7 + 0 - 85.70 + 8 + 5.7 + 0 - -85.70 + -8 + 5.7 + 0 - 45.70 + 4 + 5.7 + 0 - -45.70 + -4 + 5.7 + 0 0.75 rome structures/rome_wallset_siege Siege Wall Mūrus Circummūnītiōnis SiegeWall structures/siege_wall.png A wooden and turf palisade buildable in enemy and neutral territories. 15 0 structures/rome_siege_wall_gate 80 0 + upgrading structures/romans/siege_wall_long.xml 36.0 Index: ps/trunk/binaries/data/mods/public/simulation/templates/template_structure_defensive_wall_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/template_structure_defensive_wall_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/template_structure_defensive_wall_long.xml (revision 23185) @@ -1,59 +1,60 @@ structures/wall_garrisoned 45 28 5 Ranged+Infantry 0.1 Unit 0 2 011.50 811.50 -811.50 411.50 -411.50 3000 decay|rubble/rubble_stone_wall_long LongWall Long wall segments can be converted to gates. structures/{civ}_wall_gate This will allow you to let units circulate through your fortifications. 60 + upgrading structures/fndn_9x3_wall.xml Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/cart_defense_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/cart_defense_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/cart_defense_tower.xml (revision 23185) @@ -1,43 +1,45 @@ 18.0 cart Mijdil 20.0 structures/carthaginians/fndn_defense_tower.xml structures/carthaginians/scout_tower.xml structures/{civ}_tower_artillery Reinforce with stone block, and install small stone throwers to upgrade this defense tower into a slow, area of effect, and siege resistant artillery tower. phase_city 150 100 + upgrading structures/{civ}_tower_bolt Reinforce with stone block, and install scorpions to upgrade this defense tower into a prompt, long range, and accurate bolt tower. phase_city 100 100 + upgrading Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/rome_defense_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/rome_defense_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/rome_defense_tower.xml (revision 23185) @@ -1,42 +1,44 @@ 15.0 rome Turris Laterīcia 19.0 structures/romans/scout_tower.xml structures/{civ}_tower_artillery Reinforce with stone block, and install small stone throwers to upgrade this defense tower into a slow, area of effect, and siege resistant artillery tower. phase_city 150 100 + upgrading structures/{civ}_tower_bolt Reinforce with stone block, and install scorpions to upgrade this defense tower into a prompt, long range, and accurate bolt tower. phase_city 100 100 + upgrading Index: ps/trunk/binaries/data/mods/public/simulation/templates/template_structure_defensive_tower_sentry.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/template_structure_defensive_tower_sentry.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/template_structure_defensive_tower_sentry.xml (revision 23185) @@ -1,69 +1,70 @@ -5 -5 -2 9 70 10 9 40 100 9.0 3 500 Sentry Tower structures/sentry_tower.png GarrisonTower Village DefenseTower SentryTower Shoots arrows. Garrison to provide extra defence. Needs the murder holes tech to protect its foot. Upgradeable to stone tower. 20 tower_watch false 16 30000 structures/{civ}_defense_tower Reinforce with stone and upgrade to a defense tower. phase_town 50 100 + upgrading Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/palisades_long.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/palisades_long.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/palisades_long.xml (revision 23185) @@ -1,43 +1,44 @@ 11 13 9.0 0.75 structures/wallset_palisade Palisade 9.0 structures/palisades_gate 20 This will allow you to let units circulate through your fortifications. + upgrading props/special/palisade_rocks_long.xml structures/fndn_3x1.xml 14.0 Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/sele_defense_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/sele_defense_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/sele_defense_tower.xml (revision 23185) @@ -1,32 +1,33 @@ 15.0 sele Pyrgíon 22.0 structures/seleucids/scout_tower.xml structures/{civ}_tower_artillery Reinforce with stone block, and install small torsion engines to upgrade this defense tower into an artillery tower. phase_city 150 100 + upgrading Index: ps/trunk/binaries/data/tools/atlas/lists.xml =================================================================== --- ps/trunk/binaries/data/tools/atlas/lists.xml (revision 23184) +++ ps/trunk/binaries/data/tools/atlas/lists.xml (revision 23185) @@ -1,93 +1,94 @@ root head helmet head_extra l_hand shield l_forearm l_shoulder r_hand r_forearm r_shoulder chest back shoulders l_leg r_leg l_hip r_hip tree props_main props_fancy baseTex aoTex normTex specTex attack_anti_cavalry_back attack_anti_cavalry_front attack_capture attack_melee attack_ranged attack_slaughter build carry_meat carry_metal carry_wood death feeding garrisoned gate_closed gate_closing gate_open gather_fruit gather_grain gather_meat gather_ore gather_praise gather_rock gather_ruins gather_treasure gather_tree heal idle idle_anti_cavalry_back idle_anti_cavalry_front idle_testudo_front idle_testudo_front_left idle_testudo_front_right idle_testudo_left idle_testudo_right idle_testudo_top phalanx_attack phalanx_back_idle phalanx_idle phalanx_run phalanx_walk promotion run scaffold syntagma_back_idle syntagma_back_run syntagma_back_walk syntagma_front_idle syntagma_front_run syntagma_front_walk syntagma_med_idle syntagma_med_run syntagma_med_walk + upgrading walk walk_testudo_front walk_testudo_front_left walk_testudo_front_right walk_testudo_left walk_testudo_right walk_testudo_top Property changes on: ps/trunk/binaries/data/tools/atlas/lists.xml ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/xml \ No newline at end of property Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/athen_defense_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/athen_defense_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/athen_defense_tower.xml (revision 23185) @@ -1,42 +1,44 @@ 15.0 athen Pyrgíon 22.0 structures/hellenes/scout_tower.xml structures/{civ}_tower_artillery Reinforce with stone block, and install small stone throwers to upgrade this defense tower into a slow, area of effect, and siege resistant artillery tower. phase_city 150 100 + upgrading structures/{civ}_tower_bolt Reinforce with stone block, and install scorpions to upgrade this defense tower into a prompt, long range, and accurate bolt tower. phase_city 100 100 + upgrading Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/ptol_defense_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/ptol_defense_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/ptol_defense_tower.xml (revision 23185) @@ -1,42 +1,44 @@ 18.0 ptol mktr-n-ḏw 22.0 structures/ptolemies/defense_tower.xml structures/{civ}_tower_artillery Reinforce with stone block, and install small stone throwers to upgrade this defense tower into a slow, area of effect, and siege resistant artillery tower. phase_city 150 100 + upgrading structures/{civ}_tower_bolt Reinforce with stone block, and install scorpions to upgrade this defense tower into a prompt, long range, and accurate bolt tower. phase_city 100 100 + upgrading Index: ps/trunk/binaries/data/mods/public/simulation/templates/structures/spart_defense_tower.xml =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/templates/structures/spart_defense_tower.xml (revision 23184) +++ ps/trunk/binaries/data/mods/public/simulation/templates/structures/spart_defense_tower.xml (revision 23185) @@ -1,32 +1,33 @@ 15.0 spart Pyrgíon 22.0 structures/spartans/defense_tower.xml structures/{civ}_tower_bolt Reinforce with stone block, and install small oxybeles to upgrade this defense tower into a prompt, long range, and accurate bolt tower. phase_city 100 100 + upgrading