From 2037ccc9811d89eb6afd5049433ff3261088344f Mon Sep 17 00:00:00 2001 From: iht Date: Sun, 25 May 2025 18:51:15 +0200 Subject: [PATCH 1/6] Output on-actions file for converted defensive leagues --- .../Imperator/Diplomacy/DiplomacyDBTests.cs | 17 ++++ ImperatorToCK3/CK3/Diplomacy/DiplomacyDB.cs | 37 ++++++++ ImperatorToCK3/CK3/World.cs | 7 ++ .../Imperator/Diplomacy/DiplomacyDB.cs | 27 +++++- ImperatorToCK3/Imperator/World.cs | 14 ++- .../Outputter/DiplomacyOutputter.cs | 92 +++++++++++++++++++ ImperatorToCK3/Outputter/WorldOutputter.cs | 4 +- 7 files changed, 191 insertions(+), 7 deletions(-) create mode 100644 ImperatorToCK3/CK3/Diplomacy/DiplomacyDB.cs create mode 100644 ImperatorToCK3/Outputter/DiplomacyOutputter.cs diff --git a/ImperatorToCK3.UnitTests/Imperator/Diplomacy/DiplomacyDBTests.cs b/ImperatorToCK3.UnitTests/Imperator/Diplomacy/DiplomacyDBTests.cs index b475874fc..dbd653678 100644 --- a/ImperatorToCK3.UnitTests/Imperator/Diplomacy/DiplomacyDBTests.cs +++ b/ImperatorToCK3.UnitTests/Imperator/Diplomacy/DiplomacyDBTests.cs @@ -99,4 +99,21 @@ public void DependencyCanBeLoaded() { Assert.Equal(new Date("1.1.1", AUC: true), diplomacy.Dependencies[0].StartDate); Assert.Equal("tributary", diplomacy.Dependencies[0].SubjectType); } + + [Fact] + public void DefensiveLeagueCanBeLoaded() { + var reader = new BufferedReader( + """ + defensive_league={ + member=7 + member=552 + } + """); + var diplomacy = new ImperatorToCK3.Imperator.Diplomacy.DiplomacyDB(reader); + + Assert.Single(diplomacy.DefensiveLeagues); + Assert.Equal(2, diplomacy.DefensiveLeagues[0].Count); + Assert.Equal((ulong)7, diplomacy.DefensiveLeagues[0][0]); + Assert.Equal((ulong)552, diplomacy.DefensiveLeagues[0][1]); + } } \ No newline at end of file diff --git a/ImperatorToCK3/CK3/Diplomacy/DiplomacyDB.cs b/ImperatorToCK3/CK3/Diplomacy/DiplomacyDB.cs new file mode 100644 index 000000000..5084f3396 --- /dev/null +++ b/ImperatorToCK3/CK3/Diplomacy/DiplomacyDB.cs @@ -0,0 +1,37 @@ +using commonItems; +using ImperatorToCK3.CK3.Titles; +using ImperatorToCK3.Imperator.Countries; +using System.Collections.Generic; +using System.Linq; + +namespace ImperatorToCK3.CK3.Diplomacy; + +internal class DiplomacyDB { + public List> Leagues { get; } = []; + + public void ImportImperatorLeagues(IReadOnlyCollection> irLeagues, CountryCollection countries) { + Logger.Info("Importing Imperator defensive leagues..."); + + foreach (var irLeague in irLeagues) { + List ck3LeagueMembers = []; + foreach (var irMemberId in irLeague) { + if (!countries.TryGetValue(irMemberId, out var country)) { + Logger.Warn($"Member {irMemberId} of defensive league not found in countries!"); + continue; + } + + var ck3Title = country.CK3Title; + if (ck3Title is not null) { + ck3LeagueMembers.Add(ck3Title); + } + } + + if (ck3LeagueMembers.Count < 2) { + Logger.Notice("Not enough members in league to import it, skipping: " + + $"{string.Join(", ", ck3LeagueMembers.Select(t => t.Id))}"); + continue; + } + Leagues.Add(ck3LeagueMembers); + } + } +} \ No newline at end of file diff --git a/ImperatorToCK3/CK3/World.cs b/ImperatorToCK3/CK3/World.cs index 27143a35e..9cdaa0b50 100644 --- a/ImperatorToCK3/CK3/World.cs +++ b/ImperatorToCK3/CK3/World.cs @@ -5,6 +5,7 @@ using ImperatorToCK3.CK3.Armies; using ImperatorToCK3.CK3.Characters; using ImperatorToCK3.CK3.Cultures; +using ImperatorToCK3.CK3.Diplomacy; using ImperatorToCK3.CK3.Dynasties; using ImperatorToCK3.CK3.Legends; using ImperatorToCK3.CK3.Provinces; @@ -38,6 +39,7 @@ using System.Threading; using System.Threading.Tasks; using Open.Collections; +using DiplomacyDB = ImperatorToCK3.CK3.Diplomacy.DiplomacyDB; namespace ImperatorToCK3.CK3; @@ -59,6 +61,7 @@ internal sealed class World { public MapData MapData { get; private set; } = null!; public List<Wars.War> Wars { get; } = []; public LegendSeedCollection LegendSeeds { get; } = []; + public DiplomacyDB Diplomacy { get; } = new(); internal CoaMapper CK3CoaMapper { get; private set; } = null!; private readonly List<string> enabledDlcFlags = []; @@ -407,6 +410,10 @@ public World(Imperator.World impWorld, Configuration config, Thread? irCoaExtrac () => { LegendSeeds.LoadSeeds(ModFS); LegendSeeds.RemoveAnachronisticSeeds("configurables/legend_seeds_to_remove.txt"); + }, + + () => { + Diplomacy.ImportImperatorLeagues(impWorld.DefensiveLeagues, impWorld.Countries); } ); } diff --git a/ImperatorToCK3/Imperator/Diplomacy/DiplomacyDB.cs b/ImperatorToCK3/Imperator/Diplomacy/DiplomacyDB.cs index 5718f10a4..d0440a2b2 100644 --- a/ImperatorToCK3/Imperator/Diplomacy/DiplomacyDB.cs +++ b/ImperatorToCK3/Imperator/Diplomacy/DiplomacyDB.cs @@ -12,6 +12,11 @@ internal sealed class DiplomacyDB { private readonly List<Dependency> dependencies = []; public IReadOnlyList<Dependency> Dependencies => dependencies; + private readonly List<List<ulong>> defensiveLeagues = []; // stored as lists of member IDs + public IReadOnlyList<List<ulong>> DefensiveLeagues => defensiveLeagues; + + public DiplomacyDB() {} + public DiplomacyDB(BufferedReader diplomacyReader) { var parser = new Parser(); parser.RegisterKeyword("database", databaseReader => { @@ -22,18 +27,22 @@ public DiplomacyDB(BufferedReader diplomacyReader) { databaseParser.ParseStream(databaseReader); }); parser.RegisterKeyword("dependency", LoadDependency); + parser.RegisterKeyword("defensive_league", LoadDefensiveLeague); parser.IgnoreAndStoreUnregisteredItems(ignoredTokens); parser.ParseStream(diplomacyReader); if (War.IgnoredTokens.Any()) { Logger.Debug($"Ignored War tokens: {War.IgnoredTokens}"); + War.IgnoredTokens.Clear(); } if (ignoredDatabaseTokens.Count > 0) { Logger.Debug($"Ignored Diplomacy database tokens: {ignoredDatabaseTokens}"); + ignoredDatabaseTokens.Clear(); } if (ignoredTokens.Any()) { Logger.Debug($"Ignored Diplomacy tokens: {ignoredTokens}"); + ignoredTokens.Clear(); } Logger.Info($"Loaded {Wars.Count} wars."); } @@ -79,6 +88,22 @@ private void LoadDependency(BufferedReader dependencyReader) { dependencies.Add(new(overlordId, subjectId, startDate, subjectType)); } + private void LoadDefensiveLeague(BufferedReader leagueReader) { + List<ulong> memberIds = []; + + var leagueParser = new Parser(); + leagueParser.RegisterKeyword("member", r => memberIds.Add(r.GetULong())); + leagueParser.IgnoreAndLogUnregisteredItems(); + leagueParser.ParseStream(leagueReader); + + if (memberIds.Count < 2) { + Logger.Debug($"Skipping defensive league with {memberIds.Count} members: {string.Join(", ", memberIds)}"); + return; + } + + defensiveLeagues.Add(memberIds); + } + private readonly IgnoredKeywordsSet ignoredTokens = []; - private readonly IgnoredKeywordsSet ignoredDatabaseTokens = new(); + private readonly IgnoredKeywordsSet ignoredDatabaseTokens = []; } \ No newline at end of file diff --git a/ImperatorToCK3/Imperator/World.cs b/ImperatorToCK3/Imperator/World.cs index a570b1aa0..f1d26997f 100644 --- a/ImperatorToCK3/Imperator/World.cs +++ b/ImperatorToCK3/Imperator/World.cs @@ -57,8 +57,12 @@ internal partial class World { public AreaCollection Areas { get; } = []; public ImperatorRegionMapper ImperatorRegionMapper { get; private set; } public StateCollection States { get; } = []; - public IReadOnlyCollection<War> Wars { get; private set; } = Array.Empty<War>(); - public IReadOnlyCollection<Dependency> Dependencies { get; private set; } = Array.Empty<Dependency>(); + + private DiplomacyDB diplomacyDB; + public IReadOnlyCollection<War> Wars => diplomacyDB.Wars; + public IReadOnlyCollection<Dependency> Dependencies => diplomacyDB.Dependencies; + public IReadOnlyCollection<List<ulong>> DefensiveLeagues => diplomacyDB.DefensiveLeagues; // TODO: convert this to CK3 + public Jobs.JobsDB JobsDB { get; private set; } = new(); internal UnitCollection Units { get; } = []; public CulturesDB CulturesDB { get; } = []; @@ -84,6 +88,8 @@ protected World(Configuration config) { Religions = new ReligionCollection(new ScriptValueCollection()); ImperatorRegionMapper = new ImperatorRegionMapper(Areas, MapData); + + diplomacyDB = new(); } private static void OutputGuiContainer(ModFilesystem modFS, IEnumerable<string> tagsNeedingFlags, Configuration config) { @@ -447,9 +453,7 @@ private void LoadJobs(BufferedReader reader) { private void LoadDiplomacy(BufferedReader reader) { Logger.Info("Loading diplomacy..."); - var diplomacy = new Diplomacy.DiplomacyDB(reader); - Wars = diplomacy.Wars; - Dependencies = diplomacy.Dependencies; + diplomacyDB = new DiplomacyDB(reader); Logger.IncrementProgress(); } diff --git a/ImperatorToCK3/Outputter/DiplomacyOutputter.cs b/ImperatorToCK3/Outputter/DiplomacyOutputter.cs new file mode 100644 index 000000000..b0ef25811 --- /dev/null +++ b/ImperatorToCK3/Outputter/DiplomacyOutputter.cs @@ -0,0 +1,92 @@ +using ImperatorToCK3.CK3.Titles; +using ImperatorToCK3.CommonUtils; +using System.Collections.Generic; +using System.IO; +using System.Text; +using System.Threading.Tasks; + +namespace ImperatorToCK3.Outputter; + +internal static class DiplomacyOutputter { + public static async Task OutputLeagues(string outputModPath, List<List<Title>> leagues) { + var outputPath = Path.Combine(outputModPath, "common/on_action/irtock3_confederations.txt"); + await using var output = FileHelper.OpenWriteWithRetries(outputPath, encoding: Encoding.UTF8); + + var sb = new StringBuilder(); + sb.AppendLine( + """ + on_game_start/on_game_start_after_lobby = { + on_actions = { + irtock3_confederation_setup + } + } + + irtock3_confederation_setup = { + effect = { + """); + foreach (var leagueMembers in leagues) { + // Make sure there are at least two members in the league. + if (leagueMembers.Count < 2) { + continue; + } + + var leagueMemberIds = leagueMembers.ConvertAll(member => member.Id); + WriteEffectsForLeague(sb, leagueMemberIds); + } + + sb.AppendLine( + """ + } + } + """); + + await output.WriteAsync(sb.ToString()); + } + + private static void WriteEffectsForLeague(StringBuilder sb, List<string> leagueMemberIds) { + var firstMemberId = leagueMemberIds[0]; + var secondMemberId = leagueMemberIds[1]; + sb.AppendLine( + $$""" + title:{{firstMemberId}}.holder = { + add_to_list = irtock3_confederation_members + save_scope_as = first_confed_member + } + title:{{secondMemberId}}.holder = { + add_to_list = irtock3_confederation_members + save_scope_as = second_confed_member + } + """); + + var otherMembersIds = leagueMemberIds.GetRange(2, leagueMemberIds.Count - 2); + foreach (var otherMemberId in otherMembersIds) { + sb.AppendLine( + $$""" + title:{{otherMemberId}}.holder = { + add_to_list = irtock3_confederation_members + } + """); + } + + sb.AppendLine("\t\tirtock3_confederation_name_setup_effect = yes"); + + sb.AppendLine("\t\tscope:new_confederation = {"); + sb.AppendLine($"\t\t\tadd_confederation_member = title:{secondMemberId}.holder"); + foreach (var otherMemberId in otherMembersIds) { + sb.AppendLine($"\t\t\tadd_confederation_member = title:{otherMemberId}.holder"); + } + + sb.AppendLine( + """ + irtock3_confederation_finish_setup_effect = yes + } + # Do some scope/list cleanup so there are no issues when setting up multiple confederations. + clear_saved_scope = first_confed_member + clear_saved_scope = second_confed_member + """); + foreach (var memberId in leagueMemberIds) { + sb.AppendLine($"\t\ttitle:{memberId}.holder = {{ remove_from_list = irtock3_confederation_members }}"); + } + sb.AppendLine(); + } +} \ No newline at end of file diff --git a/ImperatorToCK3/Outputter/WorldOutputter.cs b/ImperatorToCK3/Outputter/WorldOutputter.cs index 2af03d033..e3a3f1863 100644 --- a/ImperatorToCK3/Outputter/WorldOutputter.cs +++ b/ImperatorToCK3/Outputter/WorldOutputter.cs @@ -64,7 +64,9 @@ public static void OutputWorld(World ck3World, Imperator.World imperatorWorld, C if (config.LegionConversion == LegionConversion.MenAtArms) { MenAtArmsOutputter.OutputMenAtArms(outputName, ck3World.ModFS, ck3World.Characters, ck3World.MenAtArmsTypes); } - }) + }), + + DiplomacyOutputter.OutputLeagues(outputPath, ck3World.Diplomacy.Leagues) ); // Localization should be output last, as it uses data written by other outputters. From eb66187127e3f6ca9188575f1e3cd1a6031af815 Mon Sep 17 00:00:00 2001 From: tanner918 <30297148+tanner918@users.noreply.github.com> Date: Wed, 28 May 2025 15:00:40 -0700 Subject: [PATCH 2/6] Update removable_file_blocks.txt Added part from game_start.txt that forces k_magyar to have the confederation_elective_succession_law. --- .../configurables/removable_file_blocks.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt index 84746bf63..24c47ebbe 100644 --- a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt +++ b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt @@ -1930,6 +1930,19 @@ } } + { + if = { + limit = { + title:k_magyar = { + exists = holder + } + } + title:k_magyar = { + add_title_law = confederation_elective_succession_law + } + } + } + } # End of "common/on_action/game_start.txt" "common/on_action/title_on_actions.txt" = { From 2f818f62ccfae376447b764fa28003bcc75eff4a Mon Sep 17 00:00:00 2001 From: tanner918 <30297148+tanner918@users.noreply.github.com> Date: Tue, 10 Jun 2025 18:12:40 -0700 Subject: [PATCH 3/6] Finished Defensive League Work - Imperator Defensive Leagues now properly convert over to CK3. - At game start, the script will check whether you are using the `Confederations & Leagues` mod, and will setup the Defensive Leagues accordingly. - If you are using the mod, then the script will setup the confederations and leagues as long as there are enough members of eligible title rank, setting them up according to whether the majority of members should use Leagues or Confederations. - If not using the mod, it assumes you are just using the base game confederations, so will only setup confederations using Nomad/Tribal rulers, like in base game. - Setup to have a global variable (`irtock3_enabled`) set to indicate that the IMP-CK3 converter was used, in case any future mod needs to consider that. - Expanded the Welcome event at game start to now have a section that shows off mods that were made to go along with a converted save game. For now, the only mod listed is the `Confederations & Leagues` mod. --- .../on_action/IRToCK3_titles_game_start.txt | 8 + .../irtock3_scripted_effects.txt | 233 ++++++++++++++++++ .../blankMod/output/events/welcome.txt | 32 +++ .../english/CONVERTER_events_l_english.yml | 15 ++ .../CONVERTER_game_rules_l_english.yml | 5 - .../Outputter/DiplomacyOutputter.cs | 27 +- 6 files changed, 293 insertions(+), 27 deletions(-) create mode 100644 ImperatorToCK3/Data_Files/blankMod/output/common/scripted_effects/irtock3_scripted_effects.txt create mode 100644 ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_events_l_english.yml diff --git a/ImperatorToCK3/Data_Files/blankMod/output/common/on_action/IRToCK3_titles_game_start.txt b/ImperatorToCK3/Data_Files/blankMod/output/common/on_action/IRToCK3_titles_game_start.txt index bdf5606d8..f6048f16e 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/common/on_action/IRToCK3_titles_game_start.txt +++ b/ImperatorToCK3/Data_Files/blankMod/output/common/on_action/IRToCK3_titles_game_start.txt @@ -3,6 +3,7 @@ on_game_start = { on_actions = { IRToCK3_create_admin_noble_families IRToCK3_fix_roman_empire_name + IRToCK3_initial_variables } } @@ -723,4 +724,11 @@ IRToCK3_gamestart_events = { trigger_event = welcome.1 # This event so far just notifies the players of the game rules added by the converter } } +} + +# This just sets up a global variable that could be checked by any theoretical mod that wants to consider whether the converter was used +IRToCK3_initial_variables = { + effect = { + set_global_variable = irtock3_enabled + } } \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/blankMod/output/common/scripted_effects/irtock3_scripted_effects.txt b/ImperatorToCK3/Data_Files/blankMod/output/common/scripted_effects/irtock3_scripted_effects.txt new file mode 100644 index 000000000..7e11fa943 --- /dev/null +++ b/ImperatorToCK3/Data_Files/blankMod/output/common/scripted_effects/irtock3_scripted_effects.txt @@ -0,0 +1,233 @@ +## This handles setting up the defensive leagues converted from Imperator +# Inputs: +# list = irtock3_confederation_members - A list containing all of the members of the specific Imperator Defensive League +irtock3_confederation_setup_effect = { + if = { # Check if the Confederations & Leagues mod is loaded, allowing more than Nomads/Tribes into confederations + limit = { has_global_variable = confed_league_enabled } + + if = { + limit = { # Need to make sure that there are enough members in the Imperator Defensive League of appropriate rank. Confederations & Leagues might be modified to allow smaller kingdoms into Confederations/Leagues (likely as a game rule), so when that is done, this will likely get modified to account for that. + any_in_list = { + list = irtock3_confederation_members + count > 1 + CL_has_appropriate_title_tier = yes + } + } + + # Remove rulers who can't be in a confederation/league because of title rank or government, so they aren't added later or considered for anything else later on + every_in_list = { + limit = { + OR = { + CL_has_appropriate_title_tier = no + AND = { + CL_uses_confederations = no + CL_uses_leagues = no + } + } + } + list = irtock3_confederation_members + remove_from_list = irtock3_confederation_members + } + + ## Need to determine whether this specific Imperator Defensive League will convert to a Confederation or a League, so check the government of every member, and count how many should be in confederations and how many should be in leagues + set_global_variable = { + name = confed_num + value = 0 + } + set_global_variable = { + name = league_num + value = 0 + } + every_in_list = { + list = irtock3_confederation_members + + if = { + limit = { CL_uses_confederations = yes } + change_global_variable = { + name = confed_num + add = 1 + } + } + else_if = { + limit = { CL_uses_leagues = yes } + change_global_variable = { + name = league_num + add = 1 + } + } + } + + # Now need to get relevant rulers to be used to determine the name of the confederation/league. For now, will just take the two with the largest military strength + if = { + limit = { global_var:league_num >= global_var:confed_num } # This should imply they should be in a Defensive League + + # Get first member, for the 'actor' scope + ordered_in_list = { + limit = { CL_uses_leagues = yes } + alternative_limit = { always = yes } # Incase somehow this was chosen and no one is actually capable of using leagues, need to make sure someone is chosen + list = irtock3_confederation_members + order_by = max_military_strength + save_scope_as = actor + save_scope_as = confederation_offerer + } + # Get second member, for the 'recipient' scope + ordered_in_list = { + limit = { + CL_uses_leagues = yes + NOT = { this = scope:actor } + } + alternative_limit = { # Incase somehow this was chosen and no one is actually capable of using leagues, need to make sure someone is chosen + NOT = { this = scope:actor } + } + list = irtock3_confederation_members + order_by = max_military_strength + save_scope_as = recipient + save_scope_as = confederation_accepter + } + + # When an Imperator Defensive League is converted, its members will always be allowed into the confederation/league, regardless of government, so need to give them a variable that signifies they should be allowed in + every_in_list = { + limit = { CL_uses_leagues = no } + list = irtock3_confederation_members + set_variable = allowed_in_leagues + } + } + else = { # Otherwise, they will be put into a confederation + # Get first member, for the 'actor' scope + ordered_in_list = { + limit = { CL_uses_confederations = yes } + alternative_limit = { always = yes } # Incase somehow this was chosen an no one is actually capable of using confederations, need to make sure someone is chosen + list = irtock3_confederation_members + order_by = max_military_strength + save_scope_as = actor + save_scope_as = confederation_offerer + } + # Get second member, for the 'recipient' scope + ordered_in_list = { + limit = { + CL_uses_confederations = yes + NOT = { this = scope:actor } + } + alternative_limit = { # Incase somehow this was chosen an no one is actually capable of using confederations, need to make sure someone is chosen + NOT = { this = scope:actor } + } + list = irtock3_confederation_members + order_by = max_military_strength + save_scope_as = recipient + save_scope_as = confederation_accepter + } + + # When an Imperator Defensive League is converted, its members will always be allowed into the confederation/league, regardless of government (as long as they meet the rank requirements), so need to give them a variable that signifies they should be allowed in + every_in_list = { + limit = { CL_uses_confederations = no } + list = irtock3_confederation_members + set_variable = allowed_in_confederations + } + } + + # Trigger the event that will create the confederation/league and have both scope:actor and scope:recipient added to it + scope:actor = { + #Event distributor event + trigger_event = mpo_interactions_events.0001 + } + + # Add other Defensive League members + every_in_list = { + limit = { is_confederation_member = no } + list = irtock3_confederation_members + save_scope_as = new_member + scope:actor.confederation = { add_confederation_member = scope:new_member } + clear_saved_scope = new_member + } + + # Cleanup so it doesn't cause any issues when converting multiple Defensive Leagues from Imperator + remove_global_variable = league_num + remove_global_variable = confed_num + clear_saved_scope = actor + clear_saved_scope = confederation_offerer + clear_saved_scope = recipient + clear_saved_scope = confederation_accepter + clear_saved_scope = new_confederation + } + } + # Otherwise, assume just using base game confederations, meaning only Nomads/Tribes should be allowed in + else = { + if = { + limit = { # Need to make sure that there are enough members in the Imperator Defensive League of appropriate rank and government for base game confederations + any_in_list = { + list = irtock3_confederation_members + count > 1 + AND = { + highest_held_title_tier < tier_kingdom + OR = { + has_government = nomad_government + has_government = tribal_government + } + } + } + } + + # Remove rulers who can't be in a confederation because of title rank or government, so they aren't added later on + every_in_list = { + limit = { + OR = { + highest_held_title_tier >= tier_kingdom + NOR = { + has_government = nomad_government + has_government = tribal_government + } + } + } + list = irtock3_confederation_members + remove_from_list = irtock3_confederation_members + } + + ## Now need to get relevant rulers to be used to determine the name of the confederation. For now, will just take the two with the largest military strength + # Get first member, for the 'actor' scope + ordered_in_list = { + list = irtock3_confederation_members + order_by = max_military_strength + save_scope_as = actor + save_scope_as = confederation_offerer + } + # Get second member, for the 'recipient' scope + ordered_in_list = { + limit = { + NOT = { this = scope:actor } + } + list = irtock3_confederation_members + order_by = max_military_strength + save_scope_as = recipient + save_scope_as = confederation_accepter + } + + # Trigger the event that will create the confederation and have both scope:actor and scope:recipient added to it + scope:actor = { + #Event distributor event + trigger_event = mpo_interactions_events.0001 + } + + # Add other Defensive League members + every_in_list = { + limit = { is_confederation_member = no } + list = irtock3_confederation_members + save_scope_as = new_member + scope:actor.confederation = { add_confederation_member = scope:new_member } + clear_saved_scope = new_member + } + + # Cleanup so it doesn't cause any issues when converting multiple Defensive Leagues from Imperator + clear_saved_scope = actor + clear_saved_scope = confederation_offerer + clear_saved_scope = recipient + clear_saved_scope = confederation_accepter + clear_saved_scope = new_confederation + } + } + + # Empty the list of members so there are no conflicts when converting multiple Imperator Defensive Leagues + every_in_list = { + list = irtock3_confederation_members + remove_from_list = irtock3_confederation_members + } +} diff --git a/ImperatorToCK3/Data_Files/blankMod/output/events/welcome.txt b/ImperatorToCK3/Data_Files/blankMod/output/events/welcome.txt index 7998e9692..3ecab2028 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/events/welcome.txt +++ b/ImperatorToCK3/Data_Files/blankMod/output/events/welcome.txt @@ -18,4 +18,36 @@ welcome.1 = { option = { name = welcome_ok } + + option = { # Look at what mods are recommend/available + name = welcome_mods + trigger_event = welcome.2 + } } + +welcome.2 = { + type = character_event + title = welcome_mods_title + desc = welcome_mods_desc + override_background = { reference = relaxing_room } + theme = crown + right_portrait = { + character = root + animation = thinking + } + + trigger = { + is_ai = no + } + + option = { + name = welcome_mods_confed_leagues + custom_tooltip = welcome_mods_recommend_choose_in_converter + custom_tooltip = welcome_mods_confed_leagues_desc + } + + option = { # Go back to main welcome screen + name = welcome_back + trigger_event = welcome.1 + } +} \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_events_l_english.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_events_l_english.yml new file mode 100644 index 000000000..d967eec79 --- /dev/null +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_events_l_english.yml @@ -0,0 +1,15 @@ +l_english: + # Welcome Event + welcome_ok: "OK" + welcome_back: "Back" + + welcome_title: "IMP-CK3 Welcome" + welcome_desc: "Thank you for using the Imperator to CK3 converter. If you haven't done so already, make sure you look through your game rules.\n\nThe converter currently includes game rules for:\n - Deciding which Imperator tags can be [nomadic|E]\n - Deciding how the [filler_rulers|E] should have their [government|E] decided" + welcome_mods: "IMP-CK3 Intended Mods" + + welcome_mods_title: "IMP-CK3 Mods" + welcome_mods_desc: "Here are some mods made with the intent to work alongside the Imperator-CK3 converter.\n\nEach option shows the name and author of the mod to make it easier to find in the workshop. Hover over each option to get a brief description of the mod. Click any of the mod options to exit this event.\n\nIf a mod shows this in the description:\n\t$welcome_mods_must_choose_in_converter$\nThat means that in order to use the mod with a converted save, it must have been chosen as a CK3 mod you were playing with when converting the Imperator save in order for it to work. But, if you see this:\n\t$welcome_mods_recommend_choose_in_converter$\nThat means it is recommended that the mod was chosen in the converter when converting the save, likely because it adds stuff like cultures/faiths that could be used when converting the save or because it is to ensure that the mod is loaded at game start, but it isn't required.\nIf the mod doesn't show either, then it doesn't need to be chosen when converting the save game, it could be added manually to the playlist after conversion." + welcome_mods_must_choose_in_converter: "@warning_icon! #warning THIS MOD MUST BE CHOSEN WHEN RUNNING CONVERTER TO WORK#!" + welcome_mods_recommend_choose_in_converter: "@warning_icon! #alert_trial IT IS RECOMMENDED THIS MOD BE CHOSEN WHEN RUNNING CONVERTER#!" + welcome_mods_confed_leagues: "'Confederations & Leagues' by tanner918" + welcome_mods_confed_leagues_desc: "This mod expands the confederation system. Using this mod will allow:\n$EFFECT_LIST_BULLET$Non-Tribal/Nomadic realms to form Defensive Leagues\n$EFFECT_LIST_BULLET$Faith-based Confederations/Leagues, instead of just Culture-based like in base game\n$EFFECT_LIST_BULLET$Some historical Confederation/League names to appear, with some creating new cultures when elevating the confederation/league\n$EFFECT_LIST_BULLET$Allows Imperator Defensive Leagues to be fully converted over upon game start, instead of just the ones containing Tribes/Nomads" \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_game_rules_l_english.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_game_rules_l_english.yml index 1dc3a92c1..c9b5e337c 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_game_rules_l_english.yml +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_game_rules_l_english.yml @@ -31,8 +31,3 @@ setting_irtock3_gamerule_filler_rulers_steppe_nomads_herdhead: "Steppe Nomads\nHerd Culture Head" setting_irtock3_gamerule_filler_rulers_steppe_nomads_herdhead_desc: "Requires Khans of the Steppe to work. Converts all [filler_rulers|E] in the Steppe to be [nomadic|E] if their [culture|E] determines its [culture_head|E] using [herd|E]. The rest are made [tribal|E]." - - - welcome_title: "IMP-CK3 Game Rules" - welcome_desc: "Thank you for using the Imperator to CK3 converter. If you haven't done so already, make sure you look through your game rules.\n\nThe converter currently includes game rules for:\n - Deciding which Imperator tags can be [nomadic|E]\n - Deciding how the [filler_rulers|E] should have their [government|E] decided" - welcome_ok: "OK" \ No newline at end of file diff --git a/ImperatorToCK3/Outputter/DiplomacyOutputter.cs b/ImperatorToCK3/Outputter/DiplomacyOutputter.cs index b0ef25811..01ce1d60a 100644 --- a/ImperatorToCK3/Outputter/DiplomacyOutputter.cs +++ b/ImperatorToCK3/Outputter/DiplomacyOutputter.cs @@ -15,7 +15,7 @@ public static async Task OutputLeagues(string outputModPath, List<List<Title>> l var sb = new StringBuilder(); sb.AppendLine( """ - on_game_start/on_game_start_after_lobby = { + on_game_start_after_lobby = { on_actions = { irtock3_confederation_setup } @@ -48,13 +48,12 @@ private static void WriteEffectsForLeague(StringBuilder sb, List<string> leagueM var secondMemberId = leagueMemberIds[1]; sb.AppendLine( $$""" + ## Beginning of new confederation/league setup title:{{firstMemberId}}.holder = { add_to_list = irtock3_confederation_members - save_scope_as = first_confed_member } title:{{secondMemberId}}.holder = { add_to_list = irtock3_confederation_members - save_scope_as = second_confed_member } """); @@ -68,25 +67,9 @@ private static void WriteEffectsForLeague(StringBuilder sb, List<string> leagueM """); } - sb.AppendLine("\t\tirtock3_confederation_name_setup_effect = yes"); - - sb.AppendLine("\t\tscope:new_confederation = {"); - sb.AppendLine($"\t\t\tadd_confederation_member = title:{secondMemberId}.holder"); - foreach (var otherMemberId in otherMembersIds) { - sb.AppendLine($"\t\t\tadd_confederation_member = title:{otherMemberId}.holder"); - } - - sb.AppendLine( - """ - irtock3_confederation_finish_setup_effect = yes - } - # Do some scope/list cleanup so there are no issues when setting up multiple confederations. - clear_saved_scope = first_confed_member - clear_saved_scope = second_confed_member - """); - foreach (var memberId in leagueMemberIds) { - sb.AppendLine($"\t\ttitle:{memberId}.holder = {{ remove_from_list = irtock3_confederation_members }}"); - } + sb.AppendLine("\t\tirtock3_confederation_setup_effect = yes"); + sb.AppendLine("\t\t## End of this confederation/league setup"); + sb.AppendLine(); sb.AppendLine(); } } \ No newline at end of file From d8b3a10a28e7e23facb7baf1e844abb6a5cd9b94 Mon Sep 17 00:00:00 2001 From: tanner918 <30297148+tanner918@users.noreply.github.com> Date: Thu, 12 Jun 2025 01:52:42 -0700 Subject: [PATCH 4/6] TFE 1.16.2.3 Update --- .../removable_file_blocks_tfe.txt | 490 ++++++++---------- .../replaceable_file_blocks_tfe.txt | 463 +++++++++++++++-- 2 files changed, 645 insertions(+), 308 deletions(-) diff --git a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_tfe.txt b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_tfe.txt index 3724c0a48..17789e150 100644 --- a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_tfe.txt +++ b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_tfe.txt @@ -122,7 +122,7 @@ } character:70519 = { designate_diarch = character:rufinus_02 - start_diarchy = regency + try_start_diarchy = regency set_diarchy_swing = 40 } } @@ -153,7 +153,7 @@ } character:145227 = { designate_diarch = character:900062 - start_diarchy = regency + try_start_diarchy = regency set_diarchy_swing = 40 } } @@ -251,6 +251,7 @@ } } } + title:e_byzantium.holder = { consume_imprisonment_reasons = title:e_byzantium.holder.primary_spouse } set_global_variable = { name = justinian value = title:e_byzantium.holder @@ -334,7 +335,7 @@ } character:992023 = { designate_diarch = character:992020 - start_diarchy = regency + try_start_diarchy = regency set_diarchy_swing = 40 } } @@ -1399,11 +1400,6 @@ set_minorities_game_start = { SIZE = large COUNTY = title:c_kongu } - add_faith_minority_effect = { - FAITH = faith:dravida_saiva - SIZE = large - COUNTY = title:c_korkai - } # Digambaras in Tamilakam add_faith_minority_effect = { @@ -1421,11 +1417,6 @@ set_minorities_game_start = { SIZE = large COUNTY = title:c_madurai } - add_faith_minority_effect = { - FAITH = faith:dravida_saiva - SIZE = large - COUNTY = title:c_korkai - } # Tamils in Tambapanni add_culture_minority_effect = { @@ -4357,7 +4348,7 @@ set_minorities_game_start = { limit = { has_government = tribal_government } - change_government = nomadic_government + change_government = nomad_government } } } @@ -4372,7 +4363,7 @@ set_minorities_game_start = { limit = { has_government = tribal_government } - change_government = nomadic_government + change_government = nomad_government } } } @@ -4387,7 +4378,7 @@ set_minorities_game_start = { limit = { has_government = tribal_government } - change_government = nomadic_government + change_government = nomad_government } } } @@ -4402,7 +4393,7 @@ set_minorities_game_start = { limit = { has_government = tribal_government } - change_government = nomadic_government + change_government = nomad_government } } } @@ -4417,7 +4408,7 @@ set_minorities_game_start = { limit = { has_government = tribal_government } - change_government = nomadic_government + change_government = nomad_government } } } @@ -4508,16 +4499,6 @@ set_minorities_game_start = { } } title:k_france.holder ?= { - if = { - limit = { - highest_held_title_tier >= tier_kingdom - has_dlc_feature = roads_to_power - } - change_government = autocratic_government_ep3 - } - else_if = { - change_government = autocratic_government - } every_vassal_or_below = { limit = { OR = { @@ -4811,8 +4792,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:kushan_014 SUZERAIN = character:900963 } @@ -4825,8 +4806,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:matraka_01 SUZERAIN = character:900963 } @@ -4839,8 +4820,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:yaudheya_01 SUZERAIN = character:900963 } @@ -4853,8 +4834,8 @@ set_minorities_game_start = { # exists = character:900963 # } # } - # make_tributary = { - # TYPE = tributary_permanent + # start_tributary_interaction_effect = { + #TYPE = tributary_permanent # TRIBUTARY = character:malava_01 # SUZERAIN = character:900963 # } @@ -4867,8 +4848,8 @@ set_minorities_game_start = { # exists = character:900963 # } # } - # make_tributary = { - # TYPE = tributary_permanent + # start_tributary_interaction_effect = { + #TYPE = tributary_permanent # TRIBUTARY = character:guptasad_32 # SUZERAIN = character:900963 # } @@ -4881,8 +4862,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:karttripura_01 SUZERAIN = character:900963 } @@ -4895,8 +4876,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:licchavi_02 SUZERAIN = character:900963 } @@ -4909,8 +4890,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:190054 SUZERAIN = character:900963 } @@ -4923,8 +4904,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:davaka_01 SUZERAIN = character:900963 } @@ -4937,8 +4918,8 @@ set_minorities_game_start = { # exists = character:900963 # } # } - # make_tributary = { - # TYPE = tributary_permanent + # start_tributary_interaction_effect = { + #TYPE = tributary_permanent # TRIBUTARY = character:samatata_01 # SUZERAIN = character:900963 # } @@ -4951,8 +4932,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:orissa_01 SUZERAIN = character:900963 } @@ -4965,8 +4946,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:orissa_02 SUZERAIN = character:900963 } @@ -4979,8 +4960,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:salankayana_01 SUZERAIN = character:900963 } @@ -4994,8 +4975,8 @@ set_minorities_game_start = { } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:orissa_06 SUZERAIN = character:900963 } @@ -5008,8 +4989,8 @@ set_minorities_game_start = { exists = character:900963 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:orissa_08 SUZERAIN = character:900963 } @@ -5023,8 +5004,8 @@ set_minorities_game_start = { exists = character:aksum_12 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:meroitic_misc_01 SUZERAIN = character:aksum_12 } @@ -5036,8 +5017,8 @@ set_minorities_game_start = { exists = character:aksum_12 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:dinka_01 SUZERAIN = character:aksum_12 } @@ -5049,8 +5030,8 @@ set_minorities_game_start = { exists = character:aksum_12 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:dinka_05 SUZERAIN = character:aksum_12 } @@ -5062,8 +5043,8 @@ set_minorities_game_start = { exists = character:aksum_12 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:dinka_09 SUZERAIN = character:aksum_12 } @@ -5124,8 +5105,8 @@ set_minorities_game_start = { exists = character:70519 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:judham_11 SUZERAIN = character:70519 } @@ -5137,8 +5118,8 @@ set_minorities_game_start = { exists = character:70519 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:amilah_01 SUZERAIN = character:70519 } @@ -5150,8 +5131,8 @@ set_minorities_game_start = { exists = character:70519 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:lazika_03 SUZERAIN = character:70519 } @@ -5163,8 +5144,8 @@ set_minorities_game_start = { exists = character:70519 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:tanukhid_011 SUZERAIN = character:70519 } @@ -5179,8 +5160,8 @@ set_minorities_game_start = { # exists = character:2020123 # } # } - # make_tributary = { - # TYPE = tributary_permanent + # start_tributary_interaction_effect = { + #TYPE = tributary_permanent # TRIBUTARY = character:matraka_01 # SUZERAIN = character:2020123 # } @@ -5193,8 +5174,8 @@ set_minorities_game_start = { exists = character:2020123 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:yaudheya_01 SUZERAIN = character:2020123 } @@ -5207,8 +5188,8 @@ set_minorities_game_start = { exists = character:2020123 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:karttripura_02 SUZERAIN = character:2020123 } @@ -5221,8 +5202,8 @@ set_minorities_game_start = { exists = character:2020123 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:licchavi_02 SUZERAIN = character:2020123 } @@ -5235,8 +5216,8 @@ set_minorities_game_start = { exists = character:2020123 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:190055 SUZERAIN = character:2020123 } @@ -5249,8 +5230,8 @@ set_minorities_game_start = { exists = character:2020123 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:davaka_01 SUZERAIN = character:2020123 } @@ -5263,8 +5244,8 @@ set_minorities_game_start = { # exists = character:2020123 # } # } - # make_tributary = { - # TYPE = tributary_permanent + # start_tributary_interaction_effect = { + #TYPE = tributary_permanent # TRIBUTARY = character:samatata_01 # SUZERAIN = character:2020123 # } @@ -5281,8 +5262,8 @@ set_minorities_game_start = { exists = character:70515 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:996002 SUZERAIN = character:70515 } @@ -5294,8 +5275,8 @@ set_minorities_game_start = { exists = character:70515 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:tanukhid_03 SUZERAIN = character:70515 } @@ -5307,8 +5288,8 @@ set_minorities_game_start = { exists = character:70515 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:lazika_05 SUZERAIN = character:70515 } @@ -5377,8 +5358,8 @@ set_minorities_game_start = { exists = character:145227 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:159009 SUZERAIN = character:145227 } @@ -5390,8 +5371,8 @@ set_minorities_game_start = { exists = character:145227 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:mauri_18 SUZERAIN = character:145227 } @@ -5403,8 +5384,8 @@ set_minorities_game_start = { exists = character:145227 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:afroroman_01 SUZERAIN = character:145227 } @@ -5416,8 +5397,8 @@ set_minorities_game_start = { exists = character:mauri_18 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:mauri_28 SUZERAIN = character:mauri_18 } @@ -5429,8 +5410,8 @@ set_minorities_game_start = { exists = character:145227 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:mauri_23 SUZERAIN = character:145227 } @@ -5451,8 +5432,8 @@ set_minorities_game_start = { exists = character:145237 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:afroroman_01 SUZERAIN = character:145237 } @@ -5464,8 +5445,8 @@ set_minorities_game_start = { exists = character:145237 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:mauri_17 SUZERAIN = character:145237 } @@ -5477,8 +5458,8 @@ set_minorities_game_start = { exists = character:145237 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:arsacid_46 SUZERAIN = character:145237 } @@ -5490,8 +5471,8 @@ set_minorities_game_start = { exists = character:mauri_17 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:mauri_27 SUZERAIN = character:mauri_17 } @@ -5503,8 +5484,8 @@ set_minorities_game_start = { exists = character:145237 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:mauri_22 SUZERAIN = character:145237 } @@ -5517,8 +5498,8 @@ set_minorities_game_start = { exists = character:180617 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:159582 SUZERAIN = character:180617 } @@ -5530,8 +5511,8 @@ set_minorities_game_start = { exists = character:180617 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:159758 SUZERAIN = character:180617 } @@ -5543,8 +5524,8 @@ set_minorities_game_start = { exists = character:180617 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:lakhmid_03 SUZERAIN = character:180617 } @@ -5556,8 +5537,8 @@ set_minorities_game_start = { exists = character:himyar_11 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:khinda_05 SUZERAIN = character:himyar_11 } @@ -5611,23 +5592,23 @@ set_minorities_game_start = { game_start_date < 396.1.1 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:lakhmid_06 SUZERAIN = character:180618 } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:159583 SUZERAIN = character:180618 } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:159761 SUZERAIN = character:180618 } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:arsacid_58 SUZERAIN = character:180618 } @@ -5646,8 +5627,8 @@ set_minorities_game_start = { exists = character:180624 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:lakhmid_08 SUZERAIN = character:180624 } @@ -5659,8 +5640,8 @@ set_minorities_game_start = { exists = character:180624 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:159766 SUZERAIN = character:180624 } @@ -5672,8 +5653,8 @@ set_minorities_game_start = { exists = character:180624 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:159859 SUZERAIN = character:180624 } @@ -5695,8 +5676,8 @@ set_minorities_game_start = { exists = character:2020123 } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = character:salankayana_02 SUZERAIN = character:2020123 } @@ -5718,8 +5699,8 @@ set_minorities_game_start = { exists = title:e_byzantium.holder } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = title:d_abkhazia.holder SUZERAIN = title:e_byzantium.holder } @@ -5731,8 +5712,8 @@ set_minorities_game_start = { exists = title:e_persia.holder } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = title:d_georgia.holder SUZERAIN = title:e_persia.holder } @@ -5744,8 +5725,8 @@ set_minorities_game_start = { exists = title:e_persia.holder } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = title:d_albania.holder SUZERAIN = title:e_persia.holder } @@ -5757,8 +5738,8 @@ set_minorities_game_start = { exists = title:e_persia.holder } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = title:k_lakhmid.holder SUZERAIN = title:e_persia.holder } @@ -5770,8 +5751,8 @@ set_minorities_game_start = { exists = title:e_byzantium.holder } } - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent TRIBUTARY = title:k_ghassanid.holder SUZERAIN = title:e_byzantium.holder } @@ -6101,7 +6082,7 @@ set_minorities_game_start = { NOT = { exists = title:k_ostrogoths.holder } exists = title:e_byzantium.holder has_global_variable = gothic_war_won - #NOT = { has_global_variable = has_eternal_peace } + NOT = { has_global_variable = ostrogoth_revolt } NOT = { has_global_variable = gothic_war_stalemate } title:e_byzantium.holder = { any_vassal_or_below = { @@ -6153,6 +6134,10 @@ set_minorities_game_start = { } trigger_event = { id = germanic_events.0028 + set_global_variable = { + name = ostrogoth_revolt + value = yes + } days = 1 } } @@ -16316,8 +16301,8 @@ western_roman.0041 = { } resolve_title_and_vassal_change = scope:change - make_tributary = { - TYPE = tributary_permanent + start_tributary_interaction_effect = { + #TYPE = tributary_permanent SUZERAIN = title:e_byzantium.holder TRIBUTARY = global_var:hildirix } @@ -20046,7 +20031,7 @@ tfe_culture.4001 = { "common\scripted_modifiers\00_faction_modifiers.txt" = { { - # Keep it while the Calip is alive + # Keep it while the Caliph is alive modifier = { add = -1000 $FACTION_TARGET$ = { @@ -24477,8 +24462,8 @@ eastern_iranian_struggle = { unlocks_border_raid_casus_belli = yes unlocks_contract_assistance_interaction = yes unlocks_bargain_fealty_interaction = yes - more_nomadic_migration_armies = yes - cheaper_nomadic_migrations_within_struggle_region = yes + #more_nomadic_migration_armies = yes + #cheaper_nomadic_migrations_within_struggle_region = yes } involved_character_modifier = { @@ -26922,76 +26907,6 @@ struggle_eastern_iranian_urbanize_area = { } "common/casus_belli_types/00_migration_wars.txt" = { - # The converter removes eastern_iranian_struggle - { - if = { - limit = { - AND = { - exists = struggle:eastern_iranian_struggle - struggle:eastern_iranian_struggle = { - AND = { - has_struggle_phase_parameter = cheaper_nomadic_migrations_within_struggle_region - is_culture_involved_in_struggle = scope:attacker.culture - } - } - } - } - multiply = { - value = 0.5 - desc = EASTERN_IRANIAN_STRUGGLE - } - } - } - - # The converter removes eastern_iranian_struggle - { - if = { - limit = { - OR = { - AND = { - exists = struggle:eastern_iranian_struggle - migration_levies_value >= 10 - struggle:eastern_iranian_struggle = { - has_struggle_phase_parameter = more_nomadic_migration_armies - } - any_in_list = { - list = target_titles - title_capital_county.title_province = { - geographical_region = TFE_eastern_iranian_struggle_region - } - } - has_cultural_tradition = tradition_nomadic_migrations - } - AND = { - exists = struggle:north_indian_struggle - migration_levies_value >= 10 - struggle:north_indian_struggle = { - has_struggle_phase_parameter = more_nomadic_migration_armies - } - any_in_list = { - list = target_titles - title_capital_county.title_province = { - geographical_region = TFE_north_indian_struggle_region - } - } - has_cultural_tradition = tradition_nomadic_migrations - } - } - } - spawn_army = { - name = event_troop_default_name - levies = migration_army_levies_small - men_at_arms = { - type = light_horsemen - stacks = migration_army_maa_small - } - location = scope:attacker.capital_province - uses_supply = no - inheritable = yes - } - } - } - # k_juteland not in TFE as of the 'After the Pharaohs' update { this = title:k_juteland @@ -28006,6 +27921,28 @@ TFE_eastern_iranian_struggle_compromise_de_jure_effect = { } } + #split from muyunkum + # d_talas_alatau + title:d_talas_alatau = { + set_de_jure_liege_title = title:k_talas_alatau_struggle + } + title:k_talas_alatau_struggle = { + set_de_jure_liege_title = title:e_turan + } + if = { + limit = { + exists = title:d_talas_alatau.holder + NOT = { + title:d_talas_alatau.holder = { + any_held_title = { tier = tier_kingdom } + } + } + } + title:d_talas_alatau.holder = { + get_title = title:k_talas_alatau_struggle + } + } + # d_sistan title:d_sistan = { set_de_jure_liege_title = title:k_sistan_struggle @@ -30473,20 +30410,6 @@ d_phoenicia = { item = { trigger = { coa_switch_to_roman_trigger = yes } coat_of "common/scripted_effects/TFE_dejure.txt" = { - # No c_placensia in TFE as of the 'After The Pharaohs' update - { - title:c_placensia = { - set_de_jure_liege_title = title:d_badajoz - } - } - - # No c_clemont_sur_allier in TFE as of the 'After The Pharaohs' update - { - title:c_clemont_sur_allier = { - set_de_jure_liege_title = title:d_auvergne - } - } - # No d_gloucestor in TFE as of the 'After The Pharaohs' update { title:c_hereford = { @@ -30735,24 +30658,40 @@ on_yearly_sevenhouses = { exists = character:125501 character:125501 = { is_ai = no - is_landed = yes } } character:125501 = { save_scope_as = temujin } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 + if = { + limit = { + #The DLC has our own BECOME GENGHIS stuff for players + has_mpo_dlc_trigger = no } + scope:temujin = { + give_temujin_land_effect = yes + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } - add_trait = greatest_of_khans - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - trigger_event = conqueror.0001 + add_trait = greatest_of_khans + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + trigger_event = conqueror.0001 + } + } + else = { + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + trigger_event = conqueror.0001 + } } } else_if = { @@ -30778,7 +30717,10 @@ on_yearly_sevenhouses = { form_the_mongol_empire_effect = yes add_prestige = 25000 if = { - limit = { NOT = { has_perk = peacemaker_perk } } + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } add_perk = peacemaker_perk } remove_trait = education_diplomacy_1 @@ -30867,18 +30809,31 @@ on_yearly_sevenhouses = { save_scope_as = temujin } } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } + if = { + limit = { has_mpo_dlc_trigger = no } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } - add_trait = greatest_of_khans - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - trigger_event = conqueror.0001 + add_trait = greatest_of_khans + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + trigger_event = conqueror.0001 + } + } + else = { + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + trigger_event = conqueror.0001 + } } } else_if = { @@ -30917,7 +30872,10 @@ on_yearly_sevenhouses = { form_the_mongol_empire_effect = yes add_prestige = 25000 if = { - limit = { NOT = { has_perk = peacemaker_perk } } + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } add_perk = peacemaker_perk } remove_trait = education_diplomacy_1 @@ -31115,14 +31073,6 @@ silk_road_urbanization = { } -"common/governments/other_government.txt" = { - # Not defined in TFE as of the 'After The Pharaohs' update. - { - clan_government_obligations - } -} - - "events/decisions_events/middle_europe_decisions_events.txt" = { # Uses k_sorbia which is not in TFE as of the 'After The Pharaohs' update. { diff --git a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_tfe.txt b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_tfe.txt index 82360103d..9e40a490d 100644 --- a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_tfe.txt +++ b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_tfe.txt @@ -717,43 +717,6 @@ TFE_General_Cue = { "common/governments/other_government.txt" = { - # from error.log: - # Error: "Unexpected token: regiments_prestige_as_gold, near line: 235" in file: "common/governments/other_government.txt" near line: 235 - # Error: "Unexpected token: dynasty_named_realms, near line: 510" in file: "common/governments/other_government.txt" near line: 510 - replace = { - before = { - government_rules = { - rulers_should_have_dynasty = yes - royal_court = yes - legitimacy = yes - #landless_playable = yes - #mercenary = yes - } - - supply_limit_mult_for_others = -0.8 - valid_holdings = { castle_holding trade_center_holding } - regiments_prestige_as_gold = yes - required_county_holdings = { tribal_holding city_holding church_holding } - flag = government_can_raid_rule - } - - after = { - government_rules = { - rulers_should_have_dynasty = yes - regiments_prestige_as_gold = yes - royal_court = yes - legitimacy = yes - #landless_playable = yes - #mercenary = yes - } - - supply_limit_mult_for_others = -0.8 - valid_holdings = { castle_holding trade_center_holding } - required_county_holdings = { tribal_holding city_holding church_holding } - flag = government_can_raid_rule - } - } - # from error.log: # Error: "Unexpected enum found: always_use_patronym, near line: 307" in file: "common/governments/other_government.txt" near line: 313 # Error: "Unexpected enum found: always_use_patronym, near line: 350" in file: "common/governments/other_government.txt" near line: 356 @@ -1664,4 +1627,428 @@ gaetuli_dynasty = { } } # end of after } -} \ No newline at end of file +} + + +"common/scripted_effects/00_mongol_invasion_effects.txt" = { + # spawn_temujin_character_effect; Character 125501 (Temujin) is not in TFE as of the 'After The Pharaohs' update. Converter removed part of this effect, but the part that remains needs to be modified to start with an "if" instead of "else_if" in order to work properly. + replace = { + before = { + else_if = { + limit = { + #Generate Temujin if there has BEEN NO Temujin + NOT = { + has_global_variable = temujin_was_born + } + } + if = { + limit = { has_game_rule = inversed_gender_equality } + create_character = { + name = "Borte" # AKA: Genghis Khan's wife + gender = female + location = scope:temujins_birthplace + template = borte_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + else_if = { + limit = { has_game_rule = full_gender_equality } + random_list = { + #Female Ghengis Khan. + 50 = { + create_character = { + name = "Borte" # AKA: Genghis Khan's wife + gender = female + location = scope:temujins_birthplace + template = borte_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + #Male Ghengis Khan. + 50 = { + create_character = { + name = "Temujin" # AKA: Genghis Khan + location = scope:temujins_birthplace + template = genghis_khan_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + } + } + else = { + create_character = { + name = "Temujin" # AKA: Genghis Khan + location = scope:temujins_birthplace + template = genghis_khan_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + set_global_variable = { + name = temujin_was_born + value = scope:temujin + } + } + } # End of before + + after = { + if = { + limit = { + #Generate Temujin if there has BEEN NO Temujin + NOT = { + has_global_variable = temujin_was_born + } + } + if = { + limit = { has_game_rule = inversed_gender_equality } + create_character = { + name = "Borte" # AKA: Genghis Khan's wife + gender = female + location = scope:temujins_birthplace + template = borte_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + else_if = { + limit = { has_game_rule = full_gender_equality } + random_list = { + #Female Ghengis Khan. + 50 = { + create_character = { + name = "Borte" # AKA: Genghis Khan's wife + gender = female + location = scope:temujins_birthplace + template = borte_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + #Male Ghengis Khan. + 50 = { + create_character = { + name = "Temujin" # AKA: Genghis Khan + location = scope:temujins_birthplace + template = genghis_khan_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + } + } + else = { + create_character = { + name = "Temujin" # AKA: Genghis Khan + location = scope:temujins_birthplace + template = genghis_khan_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + set_global_variable = { + name = temujin_was_born + value = scope:temujin + } + } + } # End of after + } +} # End of "common/scripted_effects/00_mongol_invasion_effects.txt" \ No newline at end of file From 364dd68e581dee8674e608e448e38fa025566cc2 Mon Sep 17 00:00:00 2001 From: tanner918 <30297148+tanner918@users.noreply.github.com> Date: Fri, 20 Jun 2025 18:00:37 -0700 Subject: [PATCH 5/6] ROA Update Work - Updated for RoA Version 4.0.0 (mainly just made sure there were no big errors when converting, haven't added much of their new content yet) - RoA changed how it handles the CCU parameter to be similar to how WtWSMS handles it, so the relevant code files were modified to account for that change. - Converter heritage and language files were modified to account for RoA CCU change, as well as change some of the parameters given to some of the heritages/languages by the mods so they make a little more sense. - Merged the Venetic heritage and language file into the main IRToCK3_heritage/language files to simplify things. - Made Basque have Equal Inheritance instead of Visigothic Codes in vanilla CK3 and RoA (TFE and WtWSMS make their own edits) - Renamed zzz_IRToCK3_tfe_override_l_english.yml.liquid to zzz_IRToCK3_mod_override_l_english.yml.liquid and added a section for ROA. - Made Talaiotic map to Nuragic, since they were expected to be closer to them than the Basque. - Added a mapping to ROA's new Nenets culture in the proper out-of-scope region of CK3 - Added a mapping for the romano_hellenic and helleno_roman cultures from the Imperator "Terra Europea - Terra Indomita Sub-Mod" to greek since they represent a kind of Roman-Hellenic hybrid culture in Imperator - Redid the province mappings for RoA since they changed their map a bit. Might need to be reworked later, but should be fine for now. (Since the converter can now convert wasteland provinces to whoever owns most of the land surrounding them, I left quite a bit of the wasteland province mappings the provinceMapper made) - Redid the imperator_invictus mappings, removing the mapped provinces from Subsaharan Africa so they don't all end up Berber/Megalithic. --- .../CK3/Cultures/PillarCollection.cs | 4 +- ...IRToCK3_mod_override_l_english.yml.liquid} | 10 + .../configurables/ccu_heritage_parameters.txt | 4 +- .../configurables/ccu_language_parameters.txt | 48 +- .../configurables/converter_cultures.txt | 34 + .../cultural_pillars/00_heritage_venetic.txt | 34 - .../cultural_pillars/00_language_venetic.txt | 91 - .../cultural_pillars/IRToCK3_heritage.txt | 223 +- .../cultural_pillars/IRToCK3_language.txt | 776 +-- .../Data_Files/configurables/culture_map.txt | 10 +- .../ccu_heritage_parameters_l_english.yml | 4 +- .../ccu_language_parameters_l_english.yml | 25 +- .../ccu_heritage_parameters_l_english.yml | 2 + .../ccu_heritage_parameters_l_english.yml | 2 +- .../ccu_language_parameters_l_english.yml | 4 + .../province_mappings/imperator_invictus.txt | 4232 ++++++++--------- .../terra_indomita_to_rajas_of_asia.txt | 2528 +++++----- .../removable_file_blocks_roa.txt | 3976 ++-------------- .../replaceable_file_blocks_roa.txt | 118 +- ImperatorToCK3/Outputter/CulturesOutputter.cs | 44 +- 20 files changed, 4692 insertions(+), 7477 deletions(-) rename ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/{zzz_IRToCK3_tfe_override_l_english.yml.liquid => zzz_IRToCK3_mod_override_l_english.yml.liquid} (84%) delete mode 100644 ImperatorToCK3/Data_Files/configurables/cultural_pillars/00_heritage_venetic.txt delete mode 100644 ImperatorToCK3/Data_Files/configurables/cultural_pillars/00_language_venetic.txt diff --git a/ImperatorToCK3/CK3/Cultures/PillarCollection.cs b/ImperatorToCK3/CK3/Cultures/PillarCollection.cs index 4188e0aaa..a8f2c324c 100644 --- a/ImperatorToCK3/CK3/Cultures/PillarCollection.cs +++ b/ImperatorToCK3/CK3/Cultures/PillarCollection.cs @@ -93,12 +93,12 @@ private void LoadPillar(string pillarId, BufferedReader pillarReader, OrderedDic Logger.Warn($"Language {pillarId} is missing required language_family parameter!"); } } - if (ck3ModFlags["wtwsms"]) { + if (ck3ModFlags["wtwsms"] || ck3ModFlags["roa"]) { if (!pillar.Parameters.AsValueEnumerable().Any(p => p.Key.StartsWith("language_branch_"))) { Logger.Warn($"Language {pillarId} is missing required language_branch parameter!"); } } - if (ck3ModFlags["tfe"] || ck3ModFlags["roa"]) { + if (ck3ModFlags["tfe"]) { if (!pillar.Parameters.AsValueEnumerable().Any(p => p.Key.StartsWith("language_group_"))) { Logger.Warn($"Language {pillarId} is missing required language_group parameter!"); } diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_tfe_override_l_english.yml.liquid b/ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_mod_override_l_english.yml.liquid similarity index 84% rename from ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_tfe_override_l_english.yml.liquid rename to ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_mod_override_l_english.yml.liquid index bdb02bc94..06c5d01d1 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_tfe_override_l_english.yml.liquid +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_mod_override_l_english.yml.liquid @@ -74,4 +74,14 @@ l_english: # Key is missing localization: TFE_chariot_completed_log_entry_title TFE_gladiator_completed_log_entry_title: "$TFE_gladiator_completed_log_title$" TFE_chariot_completed_log_entry_title: "$TFE_chariot_completed_log_title$" + + # TFE refers to this heritage group as the Latin Heritage Group, but because the converter adds in non-Latin Italic cultures, this should be renamed to be the Italic Heritage Group instead + culture_parameter_heritage_group_latin: "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Italic [heritage_group|E]" +{% elsif roa %} +l_english: + # MUST READ: + # for every overridden loc, explain why we're overriding it! + + # ROA refers to this heritage group as the Romance Heritage Group, but because the converter adds in non-Latin Italic cultures, this should be renamed to be the Italic Heritage Group instead + culture_parameter_heritage_group_latin: "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Italic [heritage_group|E]" {% endif %} \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/ccu_heritage_parameters.txt b/ImperatorToCK3/Data_Files/configurables/ccu_heritage_parameters.txt index 9485ac669..c3296d4cc 100644 --- a/ImperatorToCK3/Data_Files/configurables/ccu_heritage_parameters.txt +++ b/ImperatorToCK3/Data_Files/configurables/ccu_heritage_parameters.txt @@ -1,6 +1,6 @@ # This file contains the heritage families and heritage groups added by the converter # when a CK3 mod that uses Community Culture Utility mechanics is detected. -# Currently, this includes "When the World Stopped Making Sense", "The Fallen Eagle" and "Rajas of Asia". +# Currently, this includes "When the World Stopped Making Sense" (wtwsms), "The Fallen Eagle" (tfe), and "Rajas of Asia" (roa). heritage_families = {} @@ -9,11 +9,13 @@ heritage_groups = { MOD_DEPENDENT = { IF roa = { heritage_group_nuragic + heritage_group_balko_anatolian } ELSE_IF wtwsms = { heritage_group_nuragic } ELSE_IF tfe = { heritage_group_nuragic heritage_group_austroasiatic + heritage_group_balko_anatolian } } } diff --git a/ImperatorToCK3/Data_Files/configurables/ccu_language_parameters.txt b/ImperatorToCK3/Data_Files/configurables/ccu_language_parameters.txt index c763208f0..7b74254f7 100644 --- a/ImperatorToCK3/Data_Files/configurables/ccu_language_parameters.txt +++ b/ImperatorToCK3/Data_Files/configurables/ccu_language_parameters.txt @@ -1,33 +1,32 @@ # This file contains the language families, language branches and language groups added by the converter # when a CK3 mod that uses Community Culture Utility mechanics is detected. -# Currently, this includes "When the World Stopped Making Sense", "The Fallen Eagle" and "Rajas of Asia". +# Currently, this includes "When the World Stopped Making Sense" (wtwsms), "The Fallen Eagle" (tfe), and "Rajas of Asia" (roa). language_families = { MOD_DEPENDENT = { IF wtwsms = { language_family_kra_dai - language_family_elamite_family - language_family_paleo_sardinian - language_family_tyrsenian - language_family_hurro_urartian + language_family_paleo_sardinian + language_family_tyrsenian language_family_sumerian + language_family_hurro_urartian language_family_gutian language_family_pre_greek language_family_hatti } ELSE_IF roa = { language_family_paleo_sardinian language_family_tyrsenian - language_family_hurro_urartian language_family_sumerian + language_family_hurro_urartian language_family_gutian language_family_pre_greek language_family_hatti } ELSE_IF tfe = { language_family_paleo_sardinian language_family_kra_dai - language_family_hurro_urartian language_family_sumerian + language_family_hurro_urartian language_family_gutian language_family_pre_greek language_family_hatti @@ -38,14 +37,24 @@ language_families = { language_branches = { MOD_DEPENDENT = { IF wtwsms = { - language_branch_palaungic - language_branch_pearic language_branch_tai language_branch_nuragic - language_branch_elamite_group language_branch_etruscan + language_branch_palaungic + language_branch_pearic + language_branch_sumerian language_branch_hurrian + language_branch_gutian + language_branch_pre_greek + language_branch_hatti + } + ELSE_IF roa = { + language_branch_nuragic + language_branch_anatolian + language_branch_balkan + language_branch_etruscan language_branch_sumerian + language_branch_hurrian language_branch_gutian language_branch_pre_greek language_branch_hatti @@ -56,25 +65,22 @@ language_branches = { language_groups = { MOD_DEPENDENT = { IF roa = { - language_group_nuragic - language_group_anatolian - language_group_italic - language_group_etruscan + language_group_continental_celtic + language_group_sabellic + language_group_celto_italic language_group_daco_thracian - language_group_hurrian - language_group_sumerian - language_group_gutian - language_group_pre_greek - language_group_hatti } ELSE_IF tfe = { + language_group_tai language_group_nuragic language_group_italic - language_group_tai - language_group_hurrian language_group_sumerian + language_group_hurrian language_group_gutian language_group_pre_greek language_group_hatti + } ELSE_IF wtwsms = { + language_group_sabellic + language_group_celto_italic } } } diff --git a/ImperatorToCK3/Data_Files/configurables/converter_cultures.txt b/ImperatorToCK3/Data_Files/configurables/converter_cultures.txt index a4a4d9e70..22b181952 100644 --- a/ImperatorToCK3/Data_Files/configurables/converter_cultures.txt +++ b/ImperatorToCK3/Data_Files/configurables/converter_cultures.txt @@ -3861,4 +3861,38 @@ hatti = { #Pre-Hittite people of central Anatolia unit_gfx = { mena_unit_gfx } } +# No guarentee that the Visigoths will conquer Iberia, so changing Visigothic Codes to Equal Inheritance, since they seem to have at least practiced that +basque = { + INVALIDATED_BY = { + tfe = { basque } # TFE makes its own changes that should be kept + wtwsms = { basque } # WtWSMS makes its own changes that should be kept + } + color = basque + + ethos = ethos_egalitarian + heritage = heritage_iberian + language = language_basque + martial_custom = martial_custom_male_only + head_determination = head_determination_domain + traditions = { + tradition_equal_inheritance + tradition_mountaineers + tradition_wedding_ceremonies + } + dlc_tradition = { + trait = tradition_fp2_ritualised_friendship + requires_dlc_flag = the_fate_of_iberia + } + + name_list = name_list_basque + + coa_gfx = { iberian_group_coa_gfx western_coa_gfx } + building_gfx = { iberian_building_gfx } + clothing_gfx = { iberian_christian_clothing_gfx western_clothing_gfx } + unit_gfx = { iberian_christian_unit_gfx } + + ethnicities = { + 10 = mediterranean + } +} diff --git a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/00_heritage_venetic.txt b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/00_heritage_venetic.txt deleted file mode 100644 index e07c400db..000000000 --- a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/00_heritage_venetic.txt +++ /dev/null @@ -1,34 +0,0 @@ - -heritage_venetic = { - REPLACED_BY = { - tfe = { heritage_venetic } - vanilla = { heritage_venetic } - } - - type = heritage - MOD_DEPENDENT = { - IF roa = { - parameters = { - heritage_group_latin = yes - heritage_family_european = yes - } - } ELSE_IF tfe = { - parameters = { - heritage_group_latin = yes - heritage_family_mediterranean = yes - } - } ELSE_IF wtwsms = { - parameters = { - heritage_group_romance = yes - heritage_family_european = yes - } - } - } - - is_shown = { - heritage_is_shown_trigger = { - HERITAGE = heritage_venetic - } - } - audio_parameter = european -} diff --git a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/00_language_venetic.txt b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/00_language_venetic.txt deleted file mode 100644 index f8e55b4ff..000000000 --- a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/00_language_venetic.txt +++ /dev/null @@ -1,91 +0,0 @@ - -language_venetic = { - REPLACED_BY = { - tfe = { language_venetic } - vanilla = { language_venetic } - } - - type = language - is_shown = { - language_is_shown_trigger = { - LANGUAGE = language_venetic - } - } - - MOD_DEPENDENT = { - IF wtwsms = { - parameters = { - language_branch_italic = yes - language_family_indo_european = yes - } - } ELSE_IF @[roa|tfe] = { - parameters = { - language_group_italic = yes - language_family_indo_european = yes - } - } - } - - MOD_DEPENDENT = { - IF wtwsms = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_venetic } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_branch_italic } - multiply = same_language_branch_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_venetic } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_italic } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } - } ELSE_IF tfe = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_venetic } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_italic } - multiply = 5 - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = 2.5 - } - } - } - ELSE = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_venetic } - multiply = 10 - } - } - } - } - - color = venetic_culture -} \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_heritage.txt b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_heritage.txt index 177dec19c..27dc5346d 100644 --- a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_heritage.txt +++ b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_heritage.txt @@ -1,6 +1,6 @@ # Add mod-specific stuff inside MOD_DEPENDENT = { IF @[wtwsms] = {} } blocks. -# WtWSMS uses (broadest->specific): heritage_family (multiple allowed) -> heritage_group (multiple allowed); optionally also allows heritage_kulturbund -# ROA uses (broadest->specific): heritage_family -> heritage_group +# WtWSMS uses (broadest->specific): heritage_family (multiple allowed) -> heritage_group (multiple allowed); optionally also allows heritage_kulturbund (multiple allowed) +# ROA uses (broadest->specific): heritage_family (multiple allowed) -> heritage_group (multiple allowed); optionally also allows heritage_kulturbund # TFE uses (broadest->specific): heritage_family -> heritage_group heritage_nuragic = { @@ -39,12 +39,12 @@ heritage_anatolian = { MOD_DEPENDENT = { IF roa = { parameters = { - heritage_group_byzantine = yes + heritage_group_anatolian = yes heritage_family_european = yes } } ELSE_IF tfe = { parameters = { - heritage_group_byzantine = yes + heritage_group_balko_anatolian = yes heritage_family_mediterranean = yes } } @@ -138,13 +138,13 @@ heritage_romano_british = { MOD_DEPENDENT = { IF roa = { parameters = { - heritage_group_latin = yes + heritage_group_celtic = yes # Romano-British, historically, were likely native Britons who began adopting Roman culture heritage_family_european = yes } } ELSE_IF tfe = { parameters = { - heritage_group_latin = yes - heritage_family_mediterranean = yes + heritage_group_celtic = yes # Romano-British, historically, were likely native Britons who began adopting Roman culture + heritage_family_northern = yes } } } @@ -163,21 +163,16 @@ heritage_romano_germanic = { vanilla = { heritage_romano_germanic } } MOD_DEPENDENT = { - IF roa = { + IF @[roa|wtwsms] = { parameters = { - heritage_group_latin = yes + heritage_group_germanic = yes # Historically, the Romano-Germanic peoples would have been Germanic peoples who began adopting Roman culture. heritage_family_european = yes } } ELSE_IF tfe = { parameters = { - heritage_group_latin = yes + heritage_group_germanic = yes # Historically, the Romano-Germanic peoples would have been Germanic peoples who began adopting Roman culture. heritage_family_northern = yes } - } ELSE_IF wtwsms = { - parameters = { - heritage_group_romance = yes - heritage_family_european = yes - } } } type = heritage @@ -211,14 +206,14 @@ heritage_thracian = { vanilla = { heritage_thracian } } MOD_DEPENDENT = { - IF roa = { + IF wtwsms = { parameters = { - heritage_group_byzantine = yes + heritage_group_balko_anatolian = yes heritage_family_european = yes } - } ELSE_IF wtwsms = { + } ELSE_IF roa = { parameters = { - heritage_group_balko_anatolian = yes + heritage_group_balkan = yes heritage_family_european = yes } } @@ -335,12 +330,6 @@ heritage_mon_khmer = { # from Rajas of Asia heritage_family_east_asian = yes } } - ELSE = { - # parameters = { # heritages for CCU - # heritage_group_austroasiatic = yes - # heritage_family_southeast_asian = yes - # } - } } is_shown = { @@ -405,3 +394,187 @@ heritage_frankish = { # To replace assigned Latin heritage group/family in TFE/R } audio_parameter = european } + +heritage_venetic = { + REPLACED_BY = { + tfe = { heritage_venetic } + vanilla = { heritage_venetic } + } + + type = heritage + MOD_DEPENDENT = { + IF roa = { + parameters = { + heritage_group_latin = yes + heritage_family_european = yes + } + } ELSE_IF tfe = { + parameters = { + heritage_group_latin = yes + heritage_family_mediterranean = yes + } + } ELSE_IF wtwsms = { + parameters = { + heritage_group_romance = yes + heritage_family_european = yes + } + } + } + + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_venetic + } + } + audio_parameter = european +} + +# To remove them from being in the "Romance" group in RoA +heritage_iberian = { + REPLACED_BY = { + tfe = { heritage_iberian } + wtwsms = { heritage_iberian } + vanilla = { heritage_iberian } + } + type = heritage + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_iberian + } + } + MOD_DEPENDENT = { + IF roa = { + parameters = { + heritage_group_iberian = yes + heritage_family_european = yes + } + } + } + audio_parameter = european +} + +# To remove heritage_group_byzantine from it in RoA, since the Byzantines aren't guarenteed to exist, and they already have a proper heritage group +heritage_byzantine = { + REPLACED_BY = { + tfe = { heritage_byzantine } + wtwsms = { heritage_byzantine } + vanilla = { heritage_byzantine } + } + type = heritage + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_byzantine + } + } + MOD_DEPENDENT = { + IF roa = { + parameters = { + heritage_group_balkan = yes + heritage_family_west_asian = yes + heritage_family_european = yes + } + } + } + audio_parameter = european +} + +# To rework CCU parameters, since they are based mainly around the Magyars/Hungarians being already near Europe +heritage_magyar = { + REPLACED_BY = { + tfe = { heritage_magyar } + wtwsms = { heritage_magyar } + vanilla = { heritage_magyar } + } + type = heritage + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_magyar + } + } + MOD_DEPENDENT = { + IF roa = { + parameters = { + heritage_group_steppe = yes + heritage_group_ugro_permian = yes + heritage_family_eurasian = yes + } + } + } + audio_parameter = european +} + +# To remove heritage_group_byzantine from it in RoA, since the Byzantines aren't guarenteed to exist, and they already have a proper heritage group +heritage_south_slavic = { + REPLACED_BY = { + tfe = { heritage_south_slavic } + wtwsms = { heritage_south_slavic } + vanilla = { heritage_south_slavic } + } + type = heritage + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_south_slavic + } + } + MOD_DEPENDENT = { + IF roa = { + parameters = { + heritage_group_central_european = yes + heritage_group_balkan = yes + heritage_family_european = yes + } + } + } + audio_parameter = european +} + +# To remove heritage_group_byzantine and heritage_group_latin from it in RoA, since the Byzantines aren't guarenteed to exist, they are not ethnically "Latin/Italic", and they already have a proper heritage group +heritage_vlach = { + REPLACED_BY = { + tfe = { heritage_vlach } + wtwsms = { heritage_vlach } + vanilla = { heritage_vlach } + } + type = heritage + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_vlach + } + } + MOD_DEPENDENT = { + IF roa = { + parameters = { + heritage_group_balkan = yes + heritage_family_european = yes + } + } + } + audio_parameter = european +} + +# To remove heritage_group_byzantine from it in RoA, since the Byzantines aren't guarenteed to exist, and they already have a proper heritage group +heritage_caucasian = { + REPLACED_BY = { + tfe = { heritage_caucasian } + wtwsms = { heritage_caucasian } + vanilla = { heritage_caucasian } + } + type = heritage + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_caucasian + } + } + MOD_DEPENDENT = { + IF roa = { + parameters = { + heritage_group_iranian = yes + heritage_group_levantine = yes + heritage_family_caucasian = yes + heritage_family_west_asian = yes + heritage_family_eurasian = yes + } + } + } + audio_parameter = european +} \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_language.txt b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_language.txt index a5fb60569..8db67557e 100644 --- a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_language.txt +++ b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_language.txt @@ -1,8 +1,10 @@ # Add mod-specific stuff inside MOD_DEPENDENT = { IF @[wtwsms] = {} } blocks. # WtWSMS uses (broadest->specific): language_family -> language_branch -> language_group (optional) -> language_dialect_continuum (optional, multiple allowed); optionally also allows language_creole and language_union -# ROA uses (broadest->specific): language_family -> language_group; optionally also allows language_union +# ROA uses (broadest->specific): language_family -> language_branch -> language_group (optional) -> language_dialect_continuum (optional, multiple allowed); optionally also allows language_creole and language_union # TFE uses (broadest->specific): language_family -> language_group +# Nice chart I found that could help with setting up some families/branches/etc. ~tanner918: https://upload.wikimedia.org/wikipedia/commons/4/4f/IndoEuropeanTree.svg + language_gothic = { # https://en.wikipedia.org/wiki/East_Germanic_languages REPLACED_BY = { tfe = { language_gothic } @@ -35,12 +37,12 @@ language_nuragic = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_nuragic = yes language_family_paleo_sardinian = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { language_group_nuragic = yes language_family_paleo_sardinian = yes @@ -56,12 +58,12 @@ language_nuragic = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_nuragic } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_nuragic } @@ -72,22 +74,6 @@ language_nuragic = { multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_nuragic } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_nuragic } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_paleo_sardinian } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -126,16 +112,11 @@ language_luwian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_anatolian = yes language_family_indo_european = yes } - } ELSE_IF roa = { - parameters = { - language_group_anatolian = yes - language_family_indo_european = yes - } } } @@ -147,12 +128,12 @@ language_luwian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_luwian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_anatolian } @@ -163,23 +144,7 @@ language_luwian = { multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_luwian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_anatolian } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } - } + } ELSE = { ai_will_do = { value = 10 @@ -201,16 +166,11 @@ language_lydian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_anatolian = yes language_family_indo_european = yes } - } ELSE_IF roa = { - parameters = { - language_group_anatolian = yes - language_family_indo_european = yes - } } } @@ -222,12 +182,12 @@ language_lydian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_lydian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_anatolian } @@ -238,22 +198,6 @@ language_lydian = { multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_lydian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_anatolian } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } } ELSE = { ai_will_do = { @@ -276,12 +220,12 @@ language_hittite = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_anatolian = yes language_family_indo_european = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { language_group_anatolian = yes language_family_indo_european = yes @@ -297,12 +241,12 @@ language_hittite = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_hittite } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_anatolian } @@ -313,22 +257,6 @@ language_hittite = { multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_hittite } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_anatolian } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -367,33 +295,28 @@ language_phrygian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_anatolian = yes language_family_indo_european = yes } - } ELSE_IF roa = { - parameters = { - language_group_anatolian = yes - language_family_indo_european = yes - } } } type = language is_shown = { language_is_shown_trigger = { - LANGUAGE = language_phrygian + LANGUAGE = language_phrygian } } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_phrygian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_anatolian } @@ -404,22 +327,6 @@ language_phrygian = { multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_phrygian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_anatolian } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } } ELSE = { ai_will_do = { @@ -467,12 +374,12 @@ language_babylonian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_semitic = yes language_family_afro_asiatic = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { language_group_semitic = yes language_family_afro_asiatic = yes @@ -488,12 +395,12 @@ language_babylonian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_babylonian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_semitic } @@ -504,22 +411,6 @@ language_babylonian = { multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_babylonian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_semitic } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_afro_asiatic } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -558,12 +449,12 @@ language_eblaite = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_semitic = yes language_family_afro_asiatic = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { language_group_semitic = yes language_family_afro_asiatic = yes @@ -579,12 +470,12 @@ language_eblaite = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_eblaite } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_semitic } @@ -595,22 +486,6 @@ language_eblaite = { multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_eblaite } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_semitic } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_afro_asiatic } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -650,11 +525,17 @@ language_gaulish = { } MOD_DEPENDENT = { - IF @[tfe|roa] = { + IF tfe = { parameters = { language_group_celtic = yes language_family_indo_european = yes } + } ELSE_IF roa = { + parameters = { + language_group_continental_celtic = yes + language_branch_celtic = yes + language_family_indo_european = yes + } } } @@ -670,12 +551,16 @@ language_gaulish = { value = 10 if = { limit = { has_cultural_pillar = language_gaulish } - multiply = 10 + multiply = same_language_choice_factor } else_if = { - limit = { has_cultural_parameter = language_group_celtic } + limit = { has_cultural_parameter = language_group_continental_celtic } multiply = same_language_group_choice_factor } + else_if = { + limit = { has_cultural_parameter = language_branch_celtic } + multiply = same_language_branch_choice_factor + } else_if = { limit = { has_cultural_parameter = language_family_indo_european } multiply = same_language_family_choice_factor @@ -745,12 +630,13 @@ language_oscan = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { + language_group_sabellic = yes language_branch_italic = yes language_family_indo_european = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { language_group_italic = yes language_family_indo_european = yes @@ -766,33 +652,20 @@ language_oscan = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_oscan } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_branch_italic } - multiply = same_language_branch_choice_factor + multiply = same_language_choice_factor } else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } - } - ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_oscan } - multiply = 10 + limit = { has_cultural_parameter = language_group_sabellic } + multiply = same_language_group_choice_factor } else_if = { - limit = { has_cultural_parameter = language_group_italic } - multiply = same_language_group_choice_factor + limit = { has_cultural_parameter = language_branch_italic } + multiply = same_language_branch_choice_factor } else_if = { limit = { has_cultural_parameter = language_family_indo_european } @@ -838,12 +711,13 @@ language_samnite = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { + language_group_sabellic = yes language_branch_italic = yes language_family_indo_european = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { language_group_italic = yes language_family_indo_european = yes @@ -859,33 +733,20 @@ language_samnite = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { - limit = { has_cultural_pillar = language_samnite } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_branch_italic } - multiply = same_language_branch_choice_factor + limit = { has_cultural_pillar = language_oscan } + multiply = same_language_choice_factor } else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } - } - ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_samnite } - multiply = 10 + limit = { has_cultural_parameter = language_group_sabellic } + multiply = same_language_group_choice_factor } else_if = { - limit = { has_cultural_parameter = language_group_italic } - multiply = same_language_group_choice_factor + limit = { has_cultural_parameter = language_branch_italic } + multiply = same_language_branch_choice_factor } else_if = { limit = { has_cultural_parameter = language_family_indo_european } @@ -931,12 +792,13 @@ language_ligustic = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { + language_group_celto_italic = yes # The ancient Ligurian language, if it did exist, is expected to have possibly had very strong Celtic influence, or even be Celtic itself. Though there is some debate whether it is even an Indo-European language. language_branch_italic = yes language_family_indo_european = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { language_group_italic = yes language_family_indo_european = yes @@ -952,34 +814,21 @@ language_ligustic = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_ligustic } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_branch_italic } - multiply = same_language_branch_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } - } - ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_ligustic } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_group_italic } multiply = same_language_group_choice_factor } + else_if = { + limit = { has_cultural_parameter = language_branch_italic } + multiply = same_language_branch_choice_factor + } else_if = { limit = { has_cultural_parameter = language_family_indo_european } multiply = same_language_family_choice_factor @@ -1024,14 +873,14 @@ language_messapic = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { - language_branch_italic = yes + language_branch_balkan = yes language_family_indo_european = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { - language_group_italic = yes + language_group_illyrian = yes language_family_indo_european = yes } } @@ -1045,15 +894,15 @@ language_messapic = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_messapic } - multiply = 10 + multiply = same_language_choice_factor } else_if = { - limit = { has_cultural_parameter = language_branch_italic } + limit = { has_cultural_parameter = language_branch_balkan } multiply = same_language_branch_choice_factor } else_if = { @@ -1062,23 +911,6 @@ language_messapic = { } } } - ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_messapic } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_italic } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } - } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -1087,7 +919,7 @@ language_messapic = { multiply = 10 } else_if = { - limit = { has_cultural_parameter = language_group_italic } + limit = { has_cultural_parameter = language_group_illyrian } multiply = 5 } else_if = { @@ -1117,12 +949,12 @@ language_sardonian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_italic = yes language_family_indo_european = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { language_group_italic = yes language_family_indo_european = yes @@ -1138,12 +970,12 @@ language_sardonian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_sardonian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_italic } @@ -1155,23 +987,6 @@ language_sardonian = { } } } - ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_sardonian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_italic } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } - } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -1210,12 +1025,12 @@ language_siculian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_italic = yes language_family_indo_european = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF tfe = { parameters = { language_group_italic = yes language_family_indo_european = yes @@ -1231,12 +1046,12 @@ language_siculian = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_siculian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_italic } @@ -1248,23 +1063,6 @@ language_siculian = { } } } - ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_siculian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_italic } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_indo_european } - multiply = same_language_family_choice_factor - } - } - } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -1365,7 +1163,7 @@ language_punic = { MOD_DEPENDENT = { IF roa = { parameters = { - language_group_semitic = yes + language_branch_semitic = yes language_family_afro_asiatic = yes } } @@ -1383,11 +1181,11 @@ language_punic = { value = 10 if = { limit = { has_cultural_pillar = language_punic } - multiply = 10 + multiply = same_language_choice_factor } else_if = { - limit = { has_cultural_parameter = language_group_semitic } - multiply = same_language_group_choice_factor + limit = { has_cultural_parameter = language_branch_semitic } + multiply = same_language_branch_choice_factor } else_if = { limit = { has_cultural_parameter = language_family_afro_asiatic } @@ -1422,7 +1220,14 @@ language_breathanach = { # language for Romano-Celtic hybrids in the British Isl language_branch_italic = yes language_family_indo_european = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF roa = { + parameters = { + dialect_continua_romance = yes + language_group_latino_faliscan = yes + language_branch_italic = yes + language_family_indo_european = yes + } + } ELSE_IF tfe = { parameters = { language_group_romance = yes language_family_indo_european = yes @@ -1443,7 +1248,7 @@ language_breathanach = { # language for Romano-Celtic hybrids in the British Isl value = 10 if = { limit = { has_cultural_pillar = language_breathanach } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_group_romance } @@ -1464,12 +1269,20 @@ language_breathanach = { # language for Romano-Celtic hybrids in the British Isl value = 10 if = { limit = { has_cultural_pillar = language_breathanach } - multiply = 10 + multiply = same_language_choice_factor } else_if = { - limit = { has_cultural_parameter = language_group_romance } + limit = { has_cultural_parameter = dialect_continua_romance } + multiply = same_language_dialect_continuum_choice_factor + } + else_if = { + limit = { has_cultural_parameter = language_group_latino_faliscan } multiply = same_language_group_choice_factor } + else_if = { + limit = { has_cultural_parameter = language_branch_italic } + multiply = same_language_branch_choice_factor + } else_if = { limit = { has_cultural_parameter = language_family_indo_european } multiply = same_language_family_choice_factor @@ -1520,7 +1333,14 @@ language_laessin = { language_branch_italic = yes language_family_indo_european = yes } - } ELSE_IF @[roa|tfe] = { + } ELSE_IF roa = { + parameters = { + dialect_continua_romance = yes + language_group_latino_faliscan = yes + language_branch_italic = yes + language_family_indo_european = yes + } + } ELSE_IF tfe = { parameters = { language_group_romance = yes language_family_indo_european = yes @@ -1541,7 +1361,7 @@ language_laessin = { value = 10 if = { limit = { has_cultural_pillar = language_laessin } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_group_romance } @@ -1562,12 +1382,20 @@ language_laessin = { value = 10 if = { limit = { has_cultural_pillar = language_laessin } - multiply = 10 + multiply = same_language_choice_factor } else_if = { - limit = { has_cultural_parameter = language_group_romance } + limit = { has_cultural_parameter = dialect_continua_romance } + multiply = same_language_dialect_continuum_choice_factor + } + else_if = { + limit = { has_cultural_parameter = language_group_latino_faliscan } multiply = same_language_group_choice_factor } + else_if = { + limit = { has_cultural_parameter = language_branch_italic } + multiply = same_language_branch_choice_factor + } else_if = { limit = { has_cultural_parameter = language_family_indo_european } multiply = same_language_family_choice_factor @@ -1616,6 +1444,7 @@ language_thracian = { IF roa = { parameters = { language_group_daco_thracian = yes + language_branch_balkan = yes language_family_indo_european = yes } } @@ -1634,12 +1463,16 @@ language_thracian = { value = 10 if = { limit = { has_cultural_pillar = language_thracian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_group_daco_thracian } multiply = same_language_group_choice_factor } + else_if = { + limit = { has_cultural_parameter = language_branch_balkan } + multiply = same_language_branch_choice_factor + } else_if = { limit = { has_cultural_parameter = language_family_indo_european } multiply = same_language_family_choice_factor @@ -1671,6 +1504,7 @@ language_dacian = { IF roa = { parameters = { language_group_daco_thracian = yes + language_branch_balkan = yes language_family_indo_european = yes } } @@ -1689,12 +1523,16 @@ language_dacian = { value = 10 if = { limit = { has_cultural_pillar = language_dacian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_group_daco_thracian } multiply = same_language_group_choice_factor } + else_if = { + limit = { has_cultural_parameter = language_branch_balkan } + multiply = same_language_branch_choice_factor + } else_if = { limit = { has_cultural_parameter = language_family_indo_european } multiply = same_language_family_choice_factor @@ -1722,16 +1560,11 @@ language_etruscan = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { parameters = { language_branch_etruscan = yes language_family_tyrsenian = yes } - } ELSE_IF roa = { - parameters = { - language_group_etruscan = yes - language_family_tyrsenian = yes - } } } @@ -1743,12 +1576,12 @@ language_etruscan = { } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_etruscan } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_etruscan } @@ -1759,22 +1592,6 @@ language_etruscan = { multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_etruscan } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_etruscan } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_tyrsenian } - multiply = same_language_family_choice_factor - } - } } ELSE = { ai_will_do = { @@ -1798,15 +1615,6 @@ language_elamite = { vanilla = { language_elamite } } - MOD_DEPENDENT = { - IF wtwsms = { - parameters = { - language_branch_elamite_group = yes - language_family_elamite_family = yes - } - } - } - type = language is_shown = { language_is_shown_trigger = { @@ -1814,32 +1622,11 @@ language_elamite = { } } - MOD_DEPENDENT = { - IF wtwsms = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_elamite } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_branch_elamite_group } - multiply = same_language_branch_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_elamite_family } - multiply = same_language_family_choice_factor - } - } - } - ELSE = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_elamite } - multiply = 10 - } - } + ai_will_do = { + value = 10 + if = { + limit = { has_cultural_pillar = language_elamite } + multiply = 10 } } @@ -1898,7 +1685,7 @@ language_tai = { value = 10 if = { limit = { has_cultural_pillar = language_tai } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_tai } @@ -2079,12 +1866,12 @@ language_chong = { language_alasiyan = { MOD_DEPENDENT = { - IF @[roa|tfe] = { + IF tfe = { parameters = { language_group_semitic = yes language_family_afro_asiatic = yes } - } ELSE_IF wtwsms = { + } ELSE_IF @[roa|wtwsms] = { parameters = { language_branch_semitic = yes language_family_afro_asiatic = yes @@ -2099,24 +1886,7 @@ language_alasiyan = { } } MOD_DEPENDENT = { - IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_alasiyan } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_semitic } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_afro_asiatic } - multiply = same_language_family_choice_factor - } - } - } - ELSE_IF tfe = { + IF tfe = { ai_will_do = { value = 10 if = { @@ -2133,7 +1903,7 @@ language_alasiyan = { } } } - ELSE_IF wtwsms = { + ELSE_IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { @@ -2167,7 +1937,7 @@ language_alasiyan = { language_ugaritic = { MOD_DEPENDENT = { - IF @[roa|tfe] = { + IF tfe = { parameters = { language_group_semitic = yes language_family_afro_asiatic = yes @@ -2178,6 +1948,11 @@ language_ugaritic = { language_branch_semitic = yes language_family_afro_asiatic = yes } + } ELSE_IF roa = { + parameters = { + language_branch_semitic = yes + language_family_afro_asiatic = yes + } } } @@ -2193,11 +1968,11 @@ language_ugaritic = { value = 10 if = { limit = { has_cultural_pillar = language_ugaritic } - multiply = 10 + multiply = same_language_choice_factor } else_if = { - limit = { has_cultural_parameter = language_group_semitic } - multiply = same_language_group_choice_factor + limit = { has_cultural_parameter = language_branch_semitic } + multiply = same_language_branch_choice_factor } else_if = { limit = { has_cultural_parameter = language_family_afro_asiatic } @@ -2260,12 +2035,12 @@ language_ugaritic = { language_sumerian = { # A true isolate with no known relatives MOD_DEPENDENT = { - IF @[roa|tfe] = { + IF tfe = { parameters = { language_group_sumerian = yes language_family_sumerian = yes } - } ELSE_IF wtwsms = { + } ELSE_IF @[roa|wtwsms] = { parameters = { language_branch_sumerian = yes language_family_sumerian = yes @@ -2280,12 +2055,12 @@ language_sumerian = { # A true isolate with no known relatives } } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_sumerian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_sumerian } @@ -2296,22 +2071,6 @@ language_sumerian = { # A true isolate with no known relatives multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_sumerian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_sumerian } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_sumerian } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -2346,12 +2105,12 @@ language_sumerian = { # A true isolate with no known relatives language_hurrian = { # In the Hurro-Urartian family, long extinct MOD_DEPENDENT = { - IF @[roa|tfe] = { + IF tfe = { parameters = { language_group_hurrian = yes language_family_hurro_urartian = yes } - } ELSE_IF wtwsms = { + } ELSE_IF @[roa|wtwsms] = { parameters = { language_branch_hurrian = yes language_family_hurro_urartian = yes @@ -2366,12 +2125,12 @@ language_hurrian = { # In the Hurro-Urartian family, long extinct } } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_hurrian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_hurrian } @@ -2382,22 +2141,6 @@ language_hurrian = { # In the Hurro-Urartian family, long extinct multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_hurrian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_hurrian } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_hurro_urartian } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -2432,12 +2175,12 @@ language_hurrian = { # In the Hurro-Urartian family, long extinct language_gutian = { # Ancient and long-forgotten language of the Gutians from the Bronze Age, unknown MOD_DEPENDENT = { - IF @[roa|tfe] = { + IF tfe = { parameters = { language_group_gutian = yes language_family_gutian = yes } - } ELSE_IF wtwsms = { + } ELSE_IF @[roa|wtwsms] = { parameters = { language_branch_gutian = yes language_family_gutian = yes @@ -2452,12 +2195,12 @@ language_gutian = { # Ancient and long-forgotten language of the Gutians from th } } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_gutian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_gutian } @@ -2468,22 +2211,6 @@ language_gutian = { # Ancient and long-forgotten language of the Gutians from th multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_gutian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_gutian } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_gutian } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -2518,12 +2245,12 @@ language_gutian = { # Ancient and long-forgotten language of the Gutians from th language_minoan = { # Ancient Pre-Greek language, unknown classification due to Linear A remaining undeciphered MOD_DEPENDENT = { - IF @[roa|tfe] = { + IF tfe = { parameters = { language_group_pre_greek = yes language_family_pre_greek = yes } - } ELSE_IF wtwsms = { + } ELSE_IF @[roa|wtwsms] = { parameters = { language_branch_pre_greek = yes language_family_pre_greek = yes @@ -2538,12 +2265,12 @@ language_minoan = { # Ancient Pre-Greek language, unknown classification due to } } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_minoan } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_pre_greek } @@ -2554,22 +2281,6 @@ language_minoan = { # Ancient Pre-Greek language, unknown classification due to multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_minoan } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_pre_greek } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_pre_greek } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -2604,12 +2315,12 @@ language_minoan = { # Ancient Pre-Greek language, unknown classification due to language_cycladic = { # Ancient Pre-Greek language of the Cyclades, no written records discovered MOD_DEPENDENT = { - IF @[roa|tfe] = { + IF tfe = { parameters = { language_group_pre_greek = yes language_family_pre_greek = yes } - } ELSE_IF wtwsms = { + } ELSE_IF @[roa|wtwsms] = { parameters = { language_branch_pre_greek = yes language_family_pre_greek = yes @@ -2624,12 +2335,12 @@ language_cycladic = { # Ancient Pre-Greek language of the Cyclades, no written r } } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_cycladic } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_pre_greek } @@ -2640,22 +2351,6 @@ language_cycladic = { # Ancient Pre-Greek language of the Cyclades, no written r multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_cycladic } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_pre_greek } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_pre_greek } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -2690,12 +2385,12 @@ language_cycladic = { # Ancient Pre-Greek language of the Cyclades, no written r language_pelasgian = { # Ancient Pre-Greek language of mainland Greece, no written records discovered MOD_DEPENDENT = { - IF @[roa|tfe] = { + IF tfe = { parameters = { language_group_pre_greek = yes language_family_pre_greek = yes } - } ELSE_IF wtwsms = { + } ELSE_IF @[roa|wtwsms] = { parameters = { language_branch_pre_greek = yes language_family_pre_greek = yes @@ -2710,12 +2405,12 @@ language_pelasgian = { # Ancient Pre-Greek language of mainland Greece, no writt } } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_pelasgian } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_pre_greek } @@ -2726,22 +2421,6 @@ language_pelasgian = { # Ancient Pre-Greek language of mainland Greece, no writt multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { - ai_will_do = { - value = 10 - if = { - limit = { has_cultural_pillar = language_pelasgian } - multiply = 10 - } - else_if = { - limit = { has_cultural_parameter = language_group_pre_greek } - multiply = same_language_group_choice_factor - } - else_if = { - limit = { has_cultural_parameter = language_family_pre_greek } - multiply = same_language_family_choice_factor - } - } } ELSE_IF tfe = { ai_will_do = { value = 10 @@ -2776,12 +2455,12 @@ language_pelasgian = { # Ancient Pre-Greek language of mainland Greece, no writt language_hatti = { # Pre-Hittite language of central Anatolia MOD_DEPENDENT = { - IF @[roa|tfe] = { + IF tfe = { parameters = { language_group_hatti = yes language_family_hatti = yes } - } ELSE_IF wtwsms = { + } ELSE_IF @[roa|wtwsms] = { parameters = { language_branch_hatti = yes language_family_hatti = yes @@ -2796,12 +2475,12 @@ language_hatti = { # Pre-Hittite language of central Anatolia } } MOD_DEPENDENT = { - IF wtwsms = { + IF @[roa|wtwsms] = { ai_will_do = { value = 10 if = { limit = { has_cultural_pillar = language_hatti } - multiply = 10 + multiply = same_language_choice_factor } else_if = { limit = { has_cultural_parameter = language_branch_hatti } @@ -2812,7 +2491,7 @@ language_hatti = { # Pre-Hittite language of central Anatolia multiply = same_language_family_choice_factor } } - } ELSE_IF roa = { + } ELSE_IF tfe = { ai_will_do = { value = 10 if = { @@ -2821,10 +2500,69 @@ language_hatti = { # Pre-Hittite language of central Anatolia } else_if = { limit = { has_cultural_parameter = language_group_hatti } - multiply = same_language_group_choice_factor + multiply = 5 } else_if = { limit = { has_cultural_parameter = language_family_hatti } + multiply = 2.5 + } + } + } + ELSE = { + ai_will_do = { + value = 10 + if = { + limit = { has_cultural_pillar = language_hatti } + multiply = 10 + } + } + } + } + + color = rgb { 200 200 200 } +} + +language_venetic = { + REPLACED_BY = { + tfe = { language_venetic } + vanilla = { language_venetic } + } + + type = language + is_shown = { + language_is_shown_trigger = { + LANGUAGE = language_venetic + } + } + + MOD_DEPENDENT = { + IF @[roa|wtwsms] = { + parameters = { + language_branch_italic = yes + language_family_indo_european = yes + } + } ELSE_IF tfe = { + parameters = { + language_group_italic = yes + language_family_indo_european = yes + } + } + } + + MOD_DEPENDENT = { + IF @[roa|wtwsms] = { + ai_will_do = { + value = 10 + if = { + limit = { has_cultural_pillar = language_venetic } + multiply = same_language_choice_factor + } + else_if = { + limit = { has_cultural_parameter = language_branch_italic } + multiply = same_language_branch_choice_factor + } + else_if = { + limit = { has_cultural_parameter = language_family_indo_european } multiply = same_language_family_choice_factor } } @@ -2832,15 +2570,15 @@ language_hatti = { # Pre-Hittite language of central Anatolia ai_will_do = { value = 10 if = { - limit = { has_cultural_pillar = language_hatti } + limit = { has_cultural_pillar = language_venetic } multiply = 10 } else_if = { - limit = { has_cultural_parameter = language_group_hatti } + limit = { has_cultural_parameter = language_group_italic } multiply = 5 } else_if = { - limit = { has_cultural_parameter = language_family_hatti } + limit = { has_cultural_parameter = language_family_indo_european } multiply = 2.5 } } @@ -2849,12 +2587,12 @@ language_hatti = { # Pre-Hittite language of central Anatolia ai_will_do = { value = 10 if = { - limit = { has_cultural_pillar = language_hatti } + limit = { has_cultural_pillar = language_venetic } multiply = 10 } } } } - color = rgb { 200 200 200 } + color = venetic_culture } diff --git a/ImperatorToCK3/Data_Files/configurables/culture_map.txt b/ImperatorToCK3/Data_Files/configurables/culture_map.txt index afdb33826..3d7309a11 100644 --- a/ImperatorToCK3/Data_Files/configurables/culture_map.txt +++ b/ImperatorToCK3/Data_Files/configurables/culture_map.txt @@ -469,6 +469,7 @@ link = { ck3 = german @ir_all_germanic_cultures } # The Glory of Rome link = { ck3 = greek @ir_greek_cultures @roman_tags } # Modified cultures so base game greek represents the Romanized-Greeks +link = { ck3 = greek ir = romano_hellenic ir = helleno_roman } # From "Terra Europea - Terra Indomita Sub-Mod". Both represent a sort of Roman-Hellenic hybridized culture, which, as of now, best matches the base game greek culture, so will map to that for now until a better mapping is determined. # TFE link = { ck3 = pontic ir = greco_pontic } @@ -666,10 +667,10 @@ link = { ck3 = nepali ir = kasi ir = vrji ir = malla } ## Proto European # TFE -link = { ck3 = aquitanian ir = cantabrian ir = ilergetian ir = autrigonian ir = vasconian ir = aquitani ir = talaiotic } +link = { ck3 = aquitanian ir = cantabrian ir = ilergetian ir = autrigonian ir = vasconian ir = aquitani } # Vanilla CK3 -link = { ck3 = basque ir = cantabrian ir = ilergetian ir = autrigonian ir = vasconian ir = aquitani ir = talaiotic } -link = { ck3 = nuragic ir = nuragic ir = corsian } +link = { ck3 = basque ir = cantabrian ir = ilergetian ir = autrigonian ir = vasconian ir = aquitani } +link = { ck3 = nuragic ir = nuragic ir = corsian ir = talaiotic } ## Scythian link = { ck3 = cuman ir = cuman } # https://steamcommunity.com/sharedfiles/filedetails/?id=3098496649 @@ -979,7 +980,8 @@ link = { ck3=georgian ir=sasperires } # Sasperires were an ancient tribe in the link = { ck3=udmurt ir=argippaei } # Argippaei were described by Herodotus as living north of Scythia, possibly related to Sarmatians or Alans (But the converter already has quite a few cultures mapped to those, and doing research/asking chatgpt doesn't give a single answer as they may not have been an atual culture, just a mis-identified one. So for now, will map it to something different for more variety. ChatGPT recommneded cultures like Komi, but since another culture is mapped to that, for now I will just map it to Udmurt ~~tanner918) link = { ck3=samoyed ir=arimphaei } # Arimphaei were described as living in the far north, possibly related to Finno-Ugric peoples link = { ck3=kurykan ir=jiankun } # Both cultures seem to have same/similar language and culture group/background -link = { ck3=samoyed ir=sargat ck3Region = d_ustyug ck3Region = d_vologda ck3Region = d_chudia ck3Region = d_biarmia ck3Region = d_nizhny_novgorod ck3Region = d_vepsia } # This mapping is here since the russian impassable wasteland at the top of the map appears to be Sargat, and it covers the region of Bjarmaland. So I am including this mapping to make sure that Bjarmian gets setup there. ~~tanner918 +link = { ck3=samoyed ir=sargat ck3Region = d_ustyug ck3Region = d_vologda ck3Region = d_chudia ck3Region = d_biarmia ck3Region = d_nizhny_novgorod ck3Region = d_vepsia ck3Region = d_pinega } # This mapping is here since the russian impassable wasteland at the top of the map appears to be Sargat, and it covers the region of Bjarmaland. So I am including this mapping to make sure that Bjarmian gets setup there. ~~tanner918 +link = { ck3=nenets ir=sargat ck3Region = d_cherdyn ck3Region = d_mezen ck3Region = d_pyras ck3Region = d_vychegda ck3Region = d_vym ck3Region = d_pechora ck3Region = d_nenetsia ck3Region = d_ortina ck3Region = d_izhma } # This mapping is here since the russian impassable wasteland at the top of the map covers the Nenets' region, so I am including this mapping to make sure that they get setup there. ~~tanner918 link = { ck3=khanty ir=sargat } # Wikipedia says they could have been a mix of Ugrian and Siberian peoples, and some early Iranian/Indo-Iranian peoples. Since it is in the Uralic culture group, mapping to Khanty for now link = { ck3 = tocharian ir = jushi } # ChatGPT and Wikipedia state they most likely spoke a Sakan or Tocharian language, and that they eventually got pushed out by incoming invading Turkic peoples. So for now, will map to Tocharian ~~tanner918 link = { ck3 = komi ir = permic } diff --git a/ImperatorToCK3/Data_Files/configurables/localization/roa/english/ccu_heritage_parameters_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/roa/english/ccu_heritage_parameters_l_english.yml index ac08e690f..c65f66512 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/roa/english/ccu_heritage_parameters_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/roa/english/ccu_heritage_parameters_l_english.yml @@ -1,6 +1,8 @@ l_english: # heritage groups - culture_parameter_heritage_group_nuragic:0 "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Nuragic [heritage_group|E]" + culture_parameter_heritage_group_nuragic: "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Nuragic [heritage_group|E]" + culture_parameter_heritage_group_anatolian: "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Anatolian [heritage_group|E]" + # heritage families diff --git a/ImperatorToCK3/Data_Files/configurables/localization/roa/english/ccu_language_parameters_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/roa/english/ccu_language_parameters_l_english.yml index c22ca669b..f3f44d7aa 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/roa/english/ccu_language_parameters_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/roa/english/ccu_language_parameters_l_english.yml @@ -1,15 +1,9 @@ l_english: - # language groups - culture_parameter_language_group_nuragic: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Nuragic [language_group|E]" - culture_parameter_language_group_anatolian: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Anatolian [language_group|E]" - culture_parameter_language_group_italic: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Italic [language_group|E]" - culture_parameter_language_group_etruscan: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Etruscan [language_group|E]" + # Language group + culture_parameter_language_group_continental_celtic: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Continental Celtic [language_group|E]" + culture_parameter_language_group_sabellic: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Sabellic [language_group|E]" + culture_parameter_language_group_celto_italic: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Celto-Italic [language_group|E]" culture_parameter_language_group_daco_thracian: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Daco-Thracian [language_group|E]" - culture_parameter_language_group_hurrian: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Hurrian [language_group|E]" - culture_parameter_language_group_sumerian: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Sumerian [language_group|E]" - culture_parameter_language_group_gutian: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Gutian [language_group|E]" - culture_parameter_language_group_pre_greek: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Pre-Greek [language_group|E]" - culture_parameter_language_group_hatti: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Hattian [language_group|E]" # Language families culture_parameter_language_family_paleo_sardinian: "#P +[EmptyScope.ScriptValue('same_language_family_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Paleo-Sardinian [language_family|E]" @@ -19,3 +13,14 @@ culture_parameter_language_family_gutian: "#P +[EmptyScope.ScriptValue('same_language_family_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Gutian [language_family|E]" culture_parameter_language_family_pre_greek: "#P +[EmptyScope.ScriptValue('same_language_family_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Pre-Greek [language_family|E]" culture_parameter_language_family_hatti: "#P +[EmptyScope.ScriptValue('same_language_family_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Hattian [language_family|E]" + + # language branch + culture_parameter_language_branch_nuragic: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Nuragic [language_branch|E]" + culture_parameter_language_branch_anatolian: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Anatolian [language_branch|E]" + culture_parameter_language_branch_balkan: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Balkan [language_branch|E]" + culture_parameter_language_branch_etruscan: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Etruscan [language_branch|E]" + culture_parameter_language_branch_sumerian: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Sumerian [language_branch|E]" + culture_parameter_language_branch_hurrian: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Hurrian [language_branch|E]" + culture_parameter_language_branch_gutian: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Gutian [language_branch|E]" + culture_parameter_language_branch_pre_greek: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Pre-Greek [language_branch|E]" + culture_parameter_language_branch_hatti: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Hattian [language_branch|E]" diff --git a/ImperatorToCK3/Data_Files/configurables/localization/tfe/english/ccu_heritage_parameters_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/tfe/english/ccu_heritage_parameters_l_english.yml index a11cd3a0c..7a1901880 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/tfe/english/ccu_heritage_parameters_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/tfe/english/ccu_heritage_parameters_l_english.yml @@ -1,6 +1,8 @@ l_english: # heritage groups culture_parameter_heritage_group_austroasiatic: "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Austroasiatic [heritage_group|E]" + culture_parameter_heritage_group_nuragic: "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Nuragic [heritage_group|E]" + culture_parameter_heritage_group_balko_anatolian: "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Balko-Anatolian [heritage_group|E]" # heritage families diff --git a/ImperatorToCK3/Data_Files/configurables/localization/wtwsms/english/ccu_heritage_parameters_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/wtwsms/english/ccu_heritage_parameters_l_english.yml index ac08e690f..c7b456a20 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/wtwsms/english/ccu_heritage_parameters_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/wtwsms/english/ccu_heritage_parameters_l_english.yml @@ -1,6 +1,6 @@ l_english: # heritage groups - culture_parameter_heritage_group_nuragic:0 "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Nuragic [heritage_group|E]" + culture_parameter_heritage_group_nuragic: "#P +[EmptyScope.ScriptValue('same_heritage_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Nuragic [heritage_group|E]" # heritage families diff --git a/ImperatorToCK3/Data_Files/configurables/localization/wtwsms/english/ccu_language_parameters_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/wtwsms/english/ccu_language_parameters_l_english.yml index d27dccae1..233af1807 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/wtwsms/english/ccu_language_parameters_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/wtwsms/english/ccu_language_parameters_l_english.yml @@ -22,3 +22,7 @@ culture_parameter_language_branch_gutian: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Gutian [language_branch|E]" culture_parameter_language_branch_pre_greek: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Pre-Greek [language_branch|E]" culture_parameter_language_branch_hatti: "#P +[EmptyScope.ScriptValue('same_language_branch_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Hattian [language_branch|E]" + +# Language Group + culture_parameter_language_group_sabellic: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Sabellic [language_group|E]" + culture_parameter_language_group_celto_italic: "#P +[EmptyScope.ScriptValue('same_language_group_cultural_acceptance')|0]#! [cultural_acceptance_baseline|E] with Cultures sharing the Celto-Italic [language_group|E]" \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_invictus.txt b/ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_invictus.txt index 84eb1736c..cf600cb5e 100644 --- a/ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_invictus.txt +++ b/ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_invictus.txt @@ -659,44 +659,44 @@ imperator_invictus = { link = { imp = 7552 imp = 7553 ck3 = 6380 } # Deresa, Aqiq -> BADI link = { imp = 8608 ck3 = 6383 } # Tabot -> UPPER_AMUR link = { imp = 8550 ck3 = 6389 } # Meroe Desert -> SHUNQAYR - link = { imp = 3321 imp = 630 imp = 632 imp = 3322 ck3 = 6356 } # Rocat, Scammos, Abale, Borassa -> ATBARA + link = { imp = 3321 imp = 630 imp = 632 imp = 3322 ck3 = 6356 } # Rocat*, Scammos, Abale, Borassa -> ATBARA link = { imp = 628 ck3 = 6355 } # Alana -> BERBER link = { imp = 8615 imp = 7584 ck3 = 6353 } # Hashim, Hashem -> TARFAYA link = { imp = 8609 ck3 = 6382 } # Misrar -> WADI_AMUR link = { imp = 8612 ck3 = 6385 } # Talguharai -> BAQLIN-NORTH link = { imp = 8663 ck3 = 6438 } # Akordat -> QATAA - link = { imp = 8666 imp = 8740 ck3 = 6442 } # Tokolay, Hambok -> TO_LUS - link = { imp = 8665 imp = 5972 ck3 = 8283 } # Tokore, Ona Mountains -> SERAYE - link = { imp = 8636 imp = 3328 imp = 8634 imp = 8635 imp = 8738 imp = 8638 ck3 = 6412 } # Kassala, Thana, Gamal, Matamir, Haykota, Gash -> KASSALA - link = { imp = 7590 imp = 3331 imp = 7591 ck3 = 6437 } # Demora, Zithaa, Acranoe -> SHOWAK + link = { imp = 8666 imp = 8740 ck3 = 6442 } # Tokolay, (Unknown) -> TO_LUS + link = { imp = 8665 imp = 5972 ck3 = 8283 } # Tokore, Ethiopian Mountains -> SERAYE + link = { imp = 8636 imp = 3328 imp = 8634 imp = 8635 imp = 8738 imp = 8638 ck3 = 6412 } # Kassala, Thana*, Gamal, Matamir, Haykota, Gash -> KASSALA + link = { imp = 7590 imp = 3331 imp = 7591 ck3 = 6437 } # Demora*, Zithaa*, Acranoe* -> SHOWAK link = { imp = 8623 imp = 8633 imp = 8629 imp = 8624 imp = 8622 imp = 7589 ck3 = 6418 } # Thalathun, Rumaylah, Qadarif, Qigi, Kawahilah, Abliata -> BUTANA link = { imp = 8642 imp = 8643 ck3 = 6436 } # Baqbaqah, Gabub -> WOLQAYT link = { imp = 8729 imp = 8728 ck3 = 6445 } # Samtarru, Kura -> WAD_ABU_NAHL link = { imp = 8649 ck3 = 8303 } # Haria -> KOSOGE link = { imp = 8646 imp = 8645 ck3 = 8292 } # Metemmeh, Boval -> WALDABBA link = { imp = 8644 ck3 = 6444 } # Barakit -> SHOWAK_SOUTH - link = { imp = 633 imp = 8739 ck3 = 6443 } # Druka, Mareb -> GASH + link = { imp = 633 imp = 8739 ck3 = 6443 } # Druka*, Mareb -> GASH link = { imp = 8664 imp = 8741 ck3 = 8290 } # Tucul, Durna -> SOUTH_SERAYE link = { imp = 8652 imp = 8656 imp = 8654 ck3 = 8293 } # Enda Cherqos, Tembien, Seglamen -> JOHA link = { imp = 7505 ck3 = 8296 } # Yeha -> QIHA link = { imp = 5354 ck3 = 6413 ck3 = 6440 ck3 = 6414 } # IP 355 -> KHAWR_BARAKA, DHERBE, DJARIN - link = { imp = 7545 ck3 = 8301 } # Awash -> LALIBELA + link = { imp = 7545 ck3 = 8301 } # Awash*** -> LALIBELA link = { imp = 7511 ck3 = 8308 ck3 = 8299 } # Roha -> ANGOT, ADAFA link = { imp = 7508 ck3 = 8295 } # Uikra -> INTARTA - link = { imp = 7514 ck3 = 8300 } # Esheta -> DOBA + link = { imp = 7514 ck3 = 8300 } # Esheta* -> DOBA link = { imp = 7510 ck3 = 8294 } # Adi Gelamo -> WIQRO link = { imp = 7513 imp = 8658 ck3 = 8288 } # Matara, Mezber -> MATARA link = { imp = 7504 ck3 = 8284 } # Qohaito -> QOHAITO link = { imp = 8659 imp = 8661 imp = 8660 imp = 8657 ck3 = 8285 } # Sembel, Debarwa, Adi Ugri, Tsirhan -> SHIMAZANA - link = { imp = 651 imp = 7540 imp = 7593 ck3 = 8291 } # Sumita, Shire, Tanachtala -> TIGRE - link = { imp = 7539 ck3 = 8305 ck3 = 8304 } # D'bark -> FALASHA, SEMIEN - link = { imp = 8651 imp = 7536 ck3 = 8307 } # Uacne, Gwara -> DEMBIYA + link = { imp = 651 imp = 7540 imp = 7593 ck3 = 8291 } # Sumita*, Shire*****, Tanachtala* -> TIGRE + link = { imp = 7539 ck3 = 8305 ck3 = 8304 } # D'bark**** -> FALASHA, SEMIEN + link = { imp = 8651 imp = 7536 ck3 = 8307 } # Uacne, Gwara***** -> DEMBIYA link = { imp = 8722 ck3 = 8313 } # Weyto -> GALILA link = { imp = 8730 ck3 = 8312 ck3 = 8311 } # Gondar -> GONDAR, GOUZARA - link = { imp = 7519 ck3 = 8339 } # Abasenia -> AFAR + link = { imp = 7519 ck3 = 8339 } # Punte -> AFAR link = { imp = 8731 ck3 = 8343 } # Yoboki -> MORA-AWSSA link = { imp = 7546 ck3 = 8338 } # Beilul -> NORTH_AFAR - link = { imp = 7517 imp = 7516 ck3 = 8340 } # Arsinoe, Smyrnophoros Chora -> ASSAB + link = { imp = 7517 imp = 7516 ck3 = 8340 } # Arsinoe, Aualites -> ASSAB link = { imp = 7518 ck3 = 8341 ck3 = 8342 } # Deire -> AWBUK, TADJOURA link = { imp = 7547 ck3 = 8332 } # Undulli -> EDD link = { imp = 7548 ck3 = 8331 } # Thio -> EDD-NORTH @@ -707,28 +707,28 @@ imperator_invictus = { link = { imp = 8648 imp = 8647 imp = 8650 ck3 = 8302 } # Gherma, Tawirda, Maganan -> WEGERA link = { imp = 7512 ck3 = 8298 } # Muchera -> LASTA link = { imp = 7537 ck3 = 8306 } # Roza -> BELASA - link = { imp = 7538 ck3 = 8309 } # Agawe -> BEGEMDIR + link = { imp = 7538 ck3 = 8309 } # Agawe** -> BEGEMDIR link = { imp = 8655 ck3 = 8297 } # Gijet -> TEKEZE - link = { imp = 7506 imp = 8653 imp = 7509 ck3 = 8289 } # Aksum, Mai Adrasha, Sazila -> AKSUM + link = { imp = 7506 imp = 8653 imp = 7509 ck3 = 8289 } # Aksum, Mai Adrasha, Sazila* -> AKSUM link = { imp = 7515 imp = 8662 imp = 8742 ck3 = 8282 } # Naamen, Taille, Gher -> HAMASEN link = { imp = 5332 ck3 = 6384 ck3 = 6372 ck3 = 6374 ck3 = 6375 ck3 = 6373 } # IP 333 -> NAQIS-SOUTH, WADI_ODIB, NAQIS-NORTH, KHAWR_NUBT, GEBEIT link = { imp = 8611 ck3 = 6387 } # Tohamiyam -> BAQLIN-EAST link = { imp = 8641 imp = 8614 imp = 8613 ck3 = 6386 } # Kalakoy, Qoqay, Mahaneit -> BAQLIN-WEST - link = { imp = 3323 imp = 8637 imp = 8640 imp = 8639 ck3 = 6411 } # Durai, Hagiz, Tuwesat, Taragaga -> MIDDLE_ATBARA + link = { imp = 3323 imp = 8637 imp = 8640 imp = 8639 ck3 = 6411 } # Durai*, Hagiz, Tuwesat, Taragaga -> MIDDLE_ATBARA link = { imp = 8607 imp = 8610 ck3 = 6376 } # Sinkat, Hamdab -> SINKAT link = { imp = 8744 ck3 = 6439 } # Afabet -> MARYA link = { imp = 8743 ck3 = 6423 } # Nakfa -> JEBEL_BEJA link = { imp = 7551 ck3 = 6441 } # Gulbub -> KA'BIR link = { imp = 7550 ck3 = 8278 } # Imberimi -> MASSAWA link = { imp = 7500 ck3 = 6381 ck3 = 6379 } # Ptolemais Theron -> BAZIN, AKIK - link = { imp = 8606 imp = 7501 ck3 = 6378 } # Kaweit, Elephanton Chora -> TOKAR - link = { imp = 7599 ck3 = 6377 } # Setronon -> SUAKIN - link = { imp = 7595 imp = 7596 ck3 = 6371 } # Arachos, Canarbis -> DUNGUNAB + link = { imp = 8606 imp = 7501 ck3 = 6378 } # Kaweit, Elephas Agrum -> TOKAR + link = { imp = 7599 ck3 = 6377 } # Setronon????????????? -> SUAKIN + link = { imp = 7595 imp = 7596 ck3 = 6371 } # Arachos*, Canarbis??? -> DUNGUNAB link = { comment = "NUBIA BY IHT" } link = { imp = 8092 imp = 8093 imp = 8094 imp = 8095 imp = 8096 ck3 = 6354 } # Duweb, Hidiglib, Murrat, Sufar, Doum -> KOROSKO-ROAD link = { imp = 8091 ck3 = 6352 ck3 = 6370 ck3 = 6369 } # Biyar -> ABU-HAMMAD, AL-HAJAR_NUBIA, KUWEIB - link = { imp = 3312 imp = 8104 imp = 8102 ck3 = 6390 } # Petta, Fashfash, Baggura -> SHAHEINAB - link = { imp = 3310 imp = 8103 imp = 8101 ck3 = 6366 } # Ameta, Samra, Bum -> WAD_HAMID + link = { imp = 3312 imp = 8104 imp = 8102 ck3 = 6390 } # Petta*, Fashfash, Baggura -> SHAHEINAB + link = { imp = 3310 imp = 8103 imp = 8101 ck3 = 6366 } # Ameta*, Samra, Bum -> WAD_HAMID link = { imp = 635 imp = 636 imp = 639 imp = 631 imp = 629 imp = 8065 ck3 = 6357 } # Galim, Seserem, Tadu, Gora, Sankole, Kurmut -> AL-BAWGA link = { imp = 643 imp = 640 imp = 8063 ck3 = 6365 } # Araba, Epis, Tulih -> KELI link = { imp = 645 imp = 627 ck3 = 6351 } # Kurgus, Marru -> KURGUS @@ -741,25 +741,25 @@ imperator_invictus = { link = { imp = 7582 imp = 7583 imp = 608 ck3 = 6340 } # Soleb, Kedurma, Paroa -> DELGO link = { imp = 607 imp = 605 ck3 = 6359 } # Gugo, Noa -> KASSI-MARKOL link = { imp = 611 imp = 609 imp = 618 ck3 = 6343 } # Orsum, Acina, Urbim -> DONGOLA - link = { imp = 3315 imp = 8723 imp = 8105 imp = 8724 ck3 = 6393 } # Gurnah, Bana, Muqaddam, Kigeira -> USHARA + link = { imp = 3315 imp = 8723 imp = 8105 imp = 8724 ck3 = 6393 } # Sobra*, Bana, Muqaddam, Kigeira -> USHARA link = { imp = 622 imp = 619 imp = 615 imp = 616 ck3 = 6345 } # Zamnes, Segasa, Pago, Mulon -> DEBBA link = { imp = 606 ck3 = 6339 } # Saye -> SAI link = { imp = 3314 ck3 = 6395 ck3 = 6397 } # Alwa -> ALTI, KAMLIN - link = { imp = 604 ck3 = 6337 } # Semna Nubia -> SEMNA + link = { imp = 604 ck3 = 6337 } # Semna -> SEMNA link = { imp = 8630 imp = 8727 imp = 8632 imp = 8115 ck3 = 6404 } # Dinder, Gisi, Simsim, Northern Bayuda Desert -> ABU_GEILI link = { imp = 7580 imp = 7579 imp = 7581 ck3 = 6338 } # Tila, Firke, Pderme -> AKASHA link = { imp = 8626 imp = 8605 imp = 8625 ck3 = 6406 } # Ghorani, Harazah, Azraq -> BASHARGA - link = { imp = 3318 imp = 3320 imp = 8110 ck3 = 6396 } # Kuria, Korin, Kawah -> GETEINA + link = { imp = 3318 imp = 3320 imp = 8110 ck3 = 6396 } # Kuria*, Korin*, Kawah -> GETEINA link = { imp = 8627 imp = 8628 imp = 8631 ck3 = 6405 } # Fao, Singda, Qalbi -> EL-ELEILA link = { imp = 8107 ck3 = 6400 } # Sennar -> SENNAR link = { imp = 5330 ck3 = 6415 } # IP 331 -> WADI_EL-MILK - link = { imp = 3317 imp = 3319 ck3 = 6398 } # Attrah, Syuta -> ARBAJI + link = { imp = 3317 imp = 3319 ck3 = 6398 } # Attrah*, Syuta* -> ARBAJI link = { imp = 8604 imp = 8601 imp = 8619 imp = 5975 imp = 8621 imp = 8620 ck3 = 6410 } # Keili, Suriba, Essayal, Sudan Impassable, Shirayyet, Mirikh -> JEBEL_GEILI - link = { imp = 7587 imp = 7588 imp = 8618 imp = 8617 ck3 = 6409 } # Anak, Dmut, Bagarah, Hufrah -> UMM_USUDA + link = { imp = 7587 imp = 7588 imp = 8618 imp = 8617 ck3 = 6409 } # Anak*, Dmut, Bagarah, Hufrah -> UMM_USUDA link = { imp = 8067 imp = 8069 imp = 8070 imp = 8116 imp = 8100 ck3 = 6350 } # Kalas, Khafur, Barkol, Southern Bayuda Desert, Hosh -> AL-GHAZALI link = { imp = 8591 imp = 8593 imp = 8594 imp = 8602 imp = 8603 ck3 = 6407 } # Nagaa, Mahdood, Hissuna, Adabda, Zariba -> NAGA link = { imp = 8114 ck3 = 6402 } # Sabbalo -> JEBEL_MOYA - link = { imp = 634 imp = 7592 imp = 637 ck3 = 6358 } # Darou, Ganagaras, Mallo -> ED-DAMER + link = { imp = 634 imp = 7592 imp = 637 ck3 = 6358 } # Darou, Ganagaras******???????, Mallo -> ED-DAMER link = { imp = 8112 imp = 8726 ck3 = 6403 } # Singa, Abal -> SINGA link = { imp = 8725 ck3 = 6429 } # Santah -> KOSTI link = { imp = 7585 imp = 8068 ck3 = 6349 } # Nuri, Kuweib -> NURI @@ -771,17 +771,17 @@ imperator_invictus = { link = { imp = 644 imp = 8590 ck3 = 6364 } # Wad ban Naqa, Aborepi -> SHENDI link = { imp = 8616 imp = 8598 imp = 8599 imp = 8600 ck3 = 6408 } # Kakabi, Hamadab, Bafalil, Hatab -> BASA link = { imp = 8596 ck3 = 6392 } # Sayyidab -> KADERO - link = { imp = 3311 imp = 8592 ck3 = 6391 } # Toprate, Kasir -> GEILI + link = { imp = 3311 imp = 8592 ck3 = 6391 } # Toprate*, Kasir -> GEILI link = { imp = 8109 imp = 8113 ck3 = 6401 } # Rabak, Surayj -> SAQADI - link = { imp = 3313 imp = 8595 imp = 8597 ck3 = 6394 } # Soba, Surayriyah, Hejeilat -> SOBA + link = { imp = 3313 imp = 8595 imp = 8597 ck3 = 6394 } # Soba***, Surayriyah, Hejeilat -> SOBA link = { imp = 8108 imp = 8111 imp = 8106 ck3 = 6399 } # Jebel Moya, Manaqil, Amara -> UM_SUNT link = { comment = "EGYPT AND CYRENAICA BY IHT" } link = { imp = 7690 imp = 508 ck3 = 6046 } # Tamiathis, Tanis -> DUMIYAT link = { imp = 524 imp = 534 imp = 7689 ck3 = 6043 } # Pharbaithos, Mendes, Hermopolis -> DAQAHLA link = { imp = 513 imp = 503 imp = 504 ck3 = 6041 } # Athribis, Bubastis, Leontopolis -> QALYUB - link = { imp = 7668 imp = 507 ck3 = 6040 } # Bilbeis, Leonton Polis -> BILBAYS + link = { imp = 7668 imp = 507 ck3 = 6040 } # Bilbeis, Leontopolis(Hel) -> BILBAYS link = { imp = 514 imp = 512 ck3 = 6056 } # Nikiou, Letopolis -> ABU_GHALIB - link = { imp = 511 imp = 655 imp = 502 ck3 = 6044 } # Phakoussai, Serapieion, Heroopolis -> FAQUS + link = { imp = 511 imp = 655 imp = 502 ck3 = 6044 } # Phakoussai, Serapieion, (Unknown) -> FAQUS link = { imp = 505 ck3 = 6039 } # Klysma -> QUZLUM link = { imp = 523 ck3 = 6048 } # Pakhnemounis -> BURULLUS link = { imp = 7691 imp = 533 imp = 518 ck3 = 6049 } # Perseos Skope, Chemmis, Buto -> NASTARAWA @@ -789,21 +789,21 @@ imperator_invictus = { link = { imp = 526 imp = 528 ck3 = 6051 } # Onouphis Ano, Isieion -> MINUF link = { imp = 522 imp = 521 ck3 = 6047 } # Diospolis Kato, Sebennytos -> SAMANNUD link = { imp = 7688 imp = 510 ck3 = 6045 } # Thenessos, Daphnai -> TINNIS - link = { imp = 5543 imp = 5541 imp = 5529 imp = 5530 imp = 5527 imp = 5542 ck3 = 6090 } # Magrab, Shunne, Poka, Mandish, Tablamum, Murta -> BAWITI + link = { imp = 5543 imp = 5541 imp = 5529 imp = 5530 imp = 5527 imp = 5542 ck3 = 6090 } # Magrab**, Shunne, Poka, Mandish****, Tablarum, Murta* -> BAWITI link = { imp = 5531 ck3 = 6089 } # Parva -> AL-BAHRIYA - link = { imp = 5535 imp = 5534 imp = 5533 ck3 = 6091 } # Colira, Varam, Berku -> AL-HARRA - link = { imp = 568 imp = 569 imp = 572 ck3 = 6077 } # Petemout, Diospolis Magna, Hermonthis -> QUS + link = { imp = 5535 imp = 5534 imp = 5533 ck3 = 6091 } # Colira*, Varam*, Oxyrhincus -> AL-HARRA + link = { imp = 568 imp = 569 imp = 572 ck3 = 6077 } # Petemout, Diospolis Magna/Luxor, Hermonthis -> QUS link = { imp = 580 imp = 582 ck3 = 6109 } # Myos Hormos, Siqdit -> QUSAYR link = { imp = 590 ck3 = 6119 } # Novum Hydreuma -> CENTRAL_JBL_QUZLUM - link = { imp = 588 imp = 589 imp = 578 imp = 586 ck3 = 6118 } # Aristonis, Falacro, Dunqash, Sukkari -> NORTH_JBL_QUZLUM + link = { imp = 588 imp = 589 imp = 578 imp = 586 ck3 = 6118 } # Aristonis, Falacro, Hydreuma to epi tou Paneiou, Sukkari -> NORTH_JBL_QUZLUM link = { imp = 565 ck3 = 6114 } # Ghuzza -> EASTERN DESERT - link = { imp = 650 imp = 649 imp = 647 imp = 581 ck3 = 6122 } # Drepanum, Lykabettus-Porphyrites, Quei, Semna -> SAFAGA - link = { imp = 564 imp = 566 imp = 579 ck3 = 6076 } # Kaine, Koptos, Persou -> QINA - link = { imp = 561 ck3 = 6075 } # Polybiane -> FAW + link = { imp = 650 imp = 649 imp = 647 imp = 581 ck3 = 6122 } # Drepanum (unsettled), Lykabettus-PorphyritesMons, Quei, Semna -> SAFAGA + link = { imp = 564 imp = 566 imp = 579 ck3 = 6076 } # Kainepolis, Koptos, Persou -> QINA + link = { imp = 561 ck3 = 6075 } # Abydos -> FAW link = { imp = 557 imp = 559 ck3 = 6072 } # Panopolis, Ptolemais Hermeiou -> IKHMIN link = { imp = 553 imp = 556 ck3 = 6071 } # Lykopolis, Antaiopolis -> BAWIT - link = { imp = 548 imp = 551 imp = 552 ck3 = 6068 } # Alabastronpolis, Monkanei, Koussai -> ANSINA - link = { imp = 546 imp = 542 ck3 = 6064 } # Kynopolis, Ankyronpolis -> IHRIT + link = { imp = 548 imp = 551 imp = 552 ck3 = 6068 } # Alabastronpolis, Besa, Koussai -> ANSINA + link = { imp = 546 imp = 542 ck3 = 6064 } # Kynopolis, Ankyropolis -> IHRIT link = { imp = 577 imp = 575 imp = 574 ck3 = 6080 } # Omboi, Eileithyiopolis, Latopolis -> ZARNIKH link = { imp = 591 ck3 = 6081 } # Syene -> ASWAN link = { imp = 583 imp = 584 imp = 585 imp = 587 imp = 8071 ck3 = 1108 } # Berenike, Vetus Hydreuma, Lahami, Nechesia, Ileigha -> EASTERN DESERT @@ -817,68 +817,67 @@ imperator_invictus = { link = { imp = 8082 imp = 8079 imp = 8080 imp = 8081 imp = 8083 imp = 8098 ck3 = 6112 } # Heimur, Contra Pselchis, Hairiri, Dhahab, Garaiyat, Dayyub -> HAIMUR link = { imp = 8086 imp = 8087 imp = 8085 imp = 8084 ck3 = 6113 } # Allaqi, Fas, Shoshoba, Seiga -> ALLAQI link = { imp = 8089 imp = 8078 imp = 8088 ck3 = 6111 } # Berenike Pancrysia, Tuyur, Eigat -> DERAHIB - link = { imp = 7594 ck3 = 6110 } # Sabraiton -> AYDHAB - link = { imp = 7598 imp = 7597 imp = 8090 ck3 = 6388 } # Sabaste, Erascum, Gidmib -> LOWER_ODIB - link = { imp = 562 imp = 560 ck3 = 6073 } # Diospolis, Thinis -> IBSHAYA - link = { imp = 576 ck3 = 6079 ck3 = 6082 } # Apollinopolis Megale -> UDFU, ASWAN-WEST - link = { imp = 567 imp = 570 imp = 571 imp = 573 ck3 = 6078 } # Apollinopolis Mikra, Memnonia, Terkythis, Pathyris -> ARMANT + link = { imp = 7594 ck3 = 6110 } # Sabraiton* -> AYDHAB + link = { imp = 7598 imp = 7597 imp = 8090 ck3 = 6388 } # Sabaste???????, Erascum??????, Gidmib -> LOWER_ODIB + link = { imp = 562 imp = 560 ck3 = 6073 } # Diospolis Mikra, Thinis -> IBSHAYA + link = { imp = 576 ck3 = 6079 ck3 = 6082 } # Apollonopolis Magna -> UDFU, ASWAN-WEST + link = { imp = 567 imp = 570 imp = 571 imp = 573 ck3 = 6078 } # Apollonopolis Parva, Memnonia, Terkythis, Pathyris -> ARMANT link = { imp = 563 ck3 = 6074 } # Tenthyris -> HUW link = { imp = 592 ck3 = 6362 } # Talmis -> KALABSHA - link = { imp = 600 imp = 5521 imp = 5520 imp = 603 ck3 = 6336 } # Pachora, Boron, Cataphri, Boon -> FARAS - link = { imp = 598 imp = 599 imp = 5519 imp = 5518 ck3 = 6333 } # Premis, Kambousis, Simbel, Hameka -> SHEIKH_DAWUD + link = { imp = 600 imp = 5521 imp = 5520 imp = 603 ck3 = 6336 } # Pachora, Boron, Cataphri*, Boon -> FARAS + link = { imp = 598 imp = 599 imp = 5519 imp = 5518 ck3 = 6333 } # Premis, Cambusis, Simbel, Hameka* -> SHEIKH_DAWUD link = { imp = 595 ck3 = 6329 ck3 = 6330 } # Kortia -> QURTA, IKHMINDI - link = { imp = 545 imp = 5532 imp = 547 ck3 = 6063 } # Oxyrhynchus, Kom Namrud, Chysis -> AL-BAHNASA - link = { imp = 544 imp = 5546 ck3 = 6062 } # Herakleopolis, Pseneros -> AHNAS + link = { imp = 545 imp = 5532 imp = 547 ck3 = 6063 } # Oxyrhynchus, Sinary, Chysis -> AL-BAHNASA + link = { imp = 544 imp = 5546 ck3 = 6062 } # Herakleopolis, Nakala -> AHNAS link = { imp = 5547 imp = 5548 ck3 = 6061 } # Philoteris, Kerkethoris -> IQNA - link = { imp = 5538 imp = 5555 imp = 5537 imp = 5539 imp = 8122 imp = 8121 ck3 = 6093 } # Gargara, Carnasa, Ammon, Zethin, Jaghbub, Tubat -> SIWA - link = { imp = 5506 imp = 5507 imp = 5508 imp = 5515 imp = 5517 ck3 = 6084 } # Tchonemyris, Tabenesse, Kysis, Sykaminia, Precariton -> BARIS + link = { imp = 5538 imp = 5555 imp = 5537 imp = 5539 imp = 8122 imp = 8121 ck3 = 6093 } # Gargara, Carnasa, Ammon, Zethin**, Jaghbub, Tubat -> SIWA + link = { imp = 5506 imp = 5507 imp = 5508 imp = 5515 imp = 5517 ck3 = 6084 } # Tchonemyris, Tabenesse, Kysis, Cykaminia, Precariton* -> BARIS link = { imp = 5504 imp = 5503 imp = 5502 ck3 = 6083 } # Hibis, Gibra, Gebara -> KHARGA - link = { imp = 549 imp = 550 ck3 = 6067 } # Hermopolis Magna, Thynis -> AL-USHMUNAIN - link = { imp = 554 imp = 5501 ck3 = 6069 } # Pokis, Pohe -> MANFALUT - link = { imp = 558 imp = 5500 imp = 555 ck3 = 6070 } # Tripheion, Erebe, Hypsele -> ASYUT + link = { imp = 549 imp = 550 ck3 = 6067 } # Hermopolis Magna/Schmun, Thynis -> AL-USHMUNAIN + link = { imp = 554 imp = 5501 ck3 = 6069 } # Moirai, Pohe -> MANFALUT + link = { imp = 558 imp = 5500 imp = 555 ck3 = 6070 } # Athribis, Erebe, Hypsele -> ASYUT link = { imp = 5509 imp = 5510 imp = 5522 ck3 = 6085 } # Kellis, Mothis, Debiri -> MUT link = { imp = 5512 imp = 5513 imp = 5516 imp = 5505 ck3 = 6086 } # Thenete, Parammon, Perusekh, Amura -> TUNAYDA link = { imp = 5511 ck3 = 6087 } # Trimithis -> AL-QASR-DAKHLA - link = { imp = 5523 imp = 5528 imp = 5524 imp = 5525 imp = 5526 imp = 5545 imp = 5514 ck3 = 6088 } # Farafra, Elassa, Bishaya, Tawar, Minqar, Thumat, Farafra -> AL-FARAFRA - link = { imp = 5540 imp = 5551 imp = 5536 imp = 5544 ck3 = 6092 } # Areg, Varias, Sitra, Gerum -> AIN_AL-GHANBI - link = { imp = 5554 imp = 5550 imp = 5552 imp = 5556 imp = 5553 ck3 = 6117 } # Sanus, Alexandrou Parembole, Klimax, Abid, Graias -> QARA + link = { imp = 5523 imp = 5528 imp = 5524 imp = 5525 imp = 5526 imp = 5545 imp = 5514 ck3 = 6088 } # Farafra, Elassa, Bishaya, Tawar, Minqar***, Thumat**, Siwa -> AL-FARAFRA + link = { imp = 5540 imp = 5551 imp = 5536 imp = 5544 ck3 = 6092 } # Areg, Varias*, Sitra, Gerum* -> AIN_AL-GHANBI + link = { imp = 5554 imp = 5550 imp = 5552 imp = 5556 imp = 5553 ck3 = 6117 } # Sanus*, Alexandrou, Klimax, Abid, Graias -> QARA link = { imp = 5339 ck3 = 6116 } # IP 340 -> WADI_NATRUN - link = { imp = 543 ck3 = 6065 } # Neiloupolis -> ATFIH + link = { imp = 543 ck3 = 6065 } # Nilopolis -> ATFIH link = { imp = 537 imp = 538 ck3 = 6066 } # Panarachthis, Aphroditopolis -> HULWAN-CAIRO link = { imp = 5549 imp = 500 ck3 = 6057 } # Takyris, Memphis -> GIZA link = { imp = 541 ck3 = 6058 ck3 = 6059 } # Karanis -> BUSIR, TIRSA link = { imp = 540 imp = 539 ck3 = 6060 } # Dionysias, Krokodilopolis -> AL-FAYYUM link = { imp = 515 imp = 527 ck3 = 6055 } # Naukratis, Atarbechis-Aphroditopolis -> RAMSIS link = { imp = 517 imp = 531 ck3 = 6054 } # Hermopolis Mikra, Psenemphaia -> DAMANHUR - link = { imp = 536 imp = 501 ck3 = 6042 } # Babylon, Heliopolis -> CAIRO + link = { imp = 536 imp = 501 ck3 = 6042 } # Babylon (Egypt), (Unknown) -> CAIRO link = { imp = 529 imp = 530 imp = 532 ck3 = 6052 } # Kanopos, Bolbitine, Chaireon -> RASHID - link = { imp = 516 imp = 453 ck3 = 6053 } # Alexandria, Taposiris -> ALEXANDRIA - link = { imp = 3477 imp = 3478 imp = 445 ck3 = 6094 } # Pedonia, Derras, Dyme -> AL-HAMAM - link = { imp = 3379 imp = 3380 imp = 3476 ck3 = 6095 } # Kallias, Leuke Akte Kyrenaike, Pnigeus -> QASR_ASH_SHAMMAS + link = { imp = 516 imp = 453 ck3 = 6053 } # Alexandria, Mareia -> ALEXANDRIA + link = { imp = 3477 imp = 3478 imp = 445 ck3 = 6094 } # Pedonia, Derras, Antiphrai -> AL-HAMAM + link = { imp = 3379 imp = 3380 imp = 3476 ck3 = 6095 } # Kallias, LeukeAkte, Pnigeus -> QASR_ASH_SHAMMAS link = { imp = 3376 imp = 3377 imp = 3378 ck3 = 6096 } # Selenis, Apis, Paraetonium -> KANAIS_AL-HADID - link = { imp = 3375 imp = 3374 imp = 3373 ck3 = 6097 } # Chettaia, Nesus, Catabathmus Maior -> SULLUM + link = { imp = 3375 imp = 3374 imp = 3373 ck3 = 6097 } # Chettaia, Nesus, CatabathmusMagnus -> SULLUM link = { imp = 3370 imp = 3368 imp = 3369 imp = 3371 imp = 3372 ck3 = 6098 } # Antipyrgos, Batrachos, Gonia, Kyrthanion, Menelaos -> TOBRUK link = { imp = 3357 imp = 3351 imp = 5993 ck3 = 6102 } # Barke, Chairekla, Cyrenaica -> WADI MASUS - link = { imp = 3364 imp = 3367 imp = 3362 imp = 3359 ck3 = 6100 } # Marandis, Petras Mikros, Agabis, Balagrae -> WADI_MAKHIL + link = { imp = 3364 imp = 3367 imp = 3362 imp = 3359 ck3 = 6100 } # Marandis, PetrasMikros, Agabis, Balagrae -> WADI_MAKHIL link = { imp = 3363 imp = 3365 imp = 3366 ck3 = 6099 } # Darnis, Aziris, Paliouros -> DERNA - link = { imp = 3361 imp = 3360 imp = 3358 ck3 = 6101 } # Apollonia Kyrenaike, Kyrene, Phykous -> MARAWA - link = { imp = 3352 imp = 3353 imp = 3354 ck3 = 6104 } # Hadrianopolis, Taucheira, Ptolemais -> BARQA-AL-MARJ - link = { imp = 3349 imp = 3347 ck3 = 6103 } # Zau Taberna, Talliamunera -> JABAL_AL-GHARBI + link = { imp = 3361 imp = 3360 imp = 3358 ck3 = 6101 } # Apollonia, Cyrene, Phykous -> MARAWA + link = { imp = 3352 imp = 3353 imp = 3354 ck3 = 6104 } # Hadrianopolis, Arsinoe, Ptolemais -> BARQA-AL-MARJ + link = { imp = 3349 imp = 3347 ck3 = 6103 } # ZauTaberna, Talliamunera -> JABAL_AL-GHARBI link = { imp = 3344 imp = 3346 imp = 3348 imp = 3350 ck3 = 6105 } # Serapeion, Amastor, Chersis, Euesperides -> BENGHAZI - link = { imp = 3341 imp = 3342 imp = 3343 imp = 3345 ck3 = 4551 } # Astrochonda, Kainon, Corniclanum, Chorotus -> AJADABIYA + link = { imp = 3341 imp = 3342 imp = 3343 imp = 3345 ck3 = 4551 } # Astrochonda, Kainon, Comicianum, Noetu -> AJADABIYA link = { comment = "LIBYA BY IHT" } link = { imp = 8146 imp = 8147 imp = 8149 imp = 8152 ck3 = 6459 } # Tamshin, Mughattah, Umm Abid, Brak -> TAMZAWA link = { imp = 8162 imp = 8163 imp = 8171 imp = 8161 ck3 = 6448 } # Sabha, Chlef, Gadduwah, Samnu -> SABHA link = { imp = 8181 imp = 8182 imp = 9136 imp = 8190 imp = 8189 ck3 = 6447 } # Zuwila, Tmessa, Sahara Impassable, Terbu, Majdul -> ZAWILA link = { imp = 8174 ck3 = 6451 } # Murzuq -> MURZUK - link = { imp = 8192 imp = 8193 ck3 = 6667 } # Qatrun, Tajhiri -> FEZZAN_ROUTE - link = { imp = 8173 imp = 8194 imp = 8191 ck3 = 6669 } # Traghen, Mastutah, Izam -> TRAGHAN + link = { imp = 8173 ck3 = 6669 } # Traghen -> TRAGHAN link = { imp = 8168 imp = 8166 imp = 8169 imp = 8164 ck3 = 6449 } # Garama, Lecksair, Zinchekra, Gelah -> GERMA link = { imp = 8139 imp = 8140 imp = 8141 ck3 = 6446 } # Zala, Jufrah, Fuqaha -> ZALHA link = { imp = 8128 imp = 8131 imp = 8240 imp = 8132 ck3 = 6106 } # Augila, Kalanshah, Sand Sea, Jabbanah -> AWJILA link = { imp = 8130 imp = 8129 ck3 = 6108 } # Sahabi, Bu Athla -> JAKHARRAD link = { imp = 8127 imp = 8126 imp = 8125 ck3 = 6107 } # Gialo, Gicherra, Mawahi -> JALU - link = { imp = 8137 imp = 8151 imp = 8136 imp = 8133 imp = 8138 imp = 8150 imp = 8134 ck3 = 4553 } # Tagrifet, Harawa, Talhah, Maradah, Meduin, Psyllic Desert, Jafr -> TAJRIFT + link = { imp = 8137 imp = 8151 imp = 8136 imp = 8133 imp = 8138 imp = 8150 imp = 8134 ck3 = 4553 } # Tagrifet, Harawah, Talhah, Maradah, Meduin, Psyllic Desert, Jafr -> TAJRIFT link = { imp = 8231 imp = 8236 ck3 = 6321 } # Sinawen, Zar -> SINAWIN link = { imp = 8232 ck3 = 4571 } # Derg -> DARADJ link = { imp = 8233 imp = 8234 ck3 = 4570 } # Cydamus, Debdeb -> GHADAMES @@ -886,15 +885,15 @@ imperator_invictus = { link = { imp = 8227 imp = 8225 imp = 8212 imp = 8213 imp = 8177 imp = 8215 imp = 8216 ck3 = 4569 } # Ajdab, Scemech, Mizda, Centenarium, Desert, Vinaza, Garian -> TAMAZDA link = { imp = 8211 imp = 8210 imp = 8209 imp = 8207 imp = 8206 imp = 8204 imp = 8203 imp = 8222 imp = 8208 imp = 8205 imp = 8197 imp = 8167 imp = 8224 imp = 8170 ck3 = 4564 } # Shawi, Schiueref, Sherbia, Gharbya, Duraybikah, Ghirza, Faschia, Khnafes, Tabaqah, Scedeua, Zayden, Zamzam Desert, Lebr, Ninah -> TININAI link = { imp = 8142 imp = 8199 imp = 8200 imp = 8201 imp = 8143 imp = 8195 imp = 8196 imp = 8144 imp = 8145 ck3 = 4563 } # Waddan, Manfuchia, Nagdiyah, Qarinah, Hun, Jashalam, Gholaia, Socna, Wilyan -> WADDAN - link = { imp = 3337 imp = 3338 imp = 3339 imp = 3340 ck3 = 4550 } # Digdida Selorum, Arae Philaenorum, Automalax, Mendrion -> AL-AGHAILA - link = { imp = 3330 imp = 3332 imp = 3333 imp = 3334 imp = 3335 imp = 3336 imp = 8202 ck3 = 4552 } # Auxiu, Dysopon, Euphranta, Iscina, Aulazon, Ad Palmam, Majdubiyah -> SURT + link = { imp = 3337 imp = 3338 imp = 3339 imp = 3340 ck3 = 4550 } # DigdidaSelorum, AraePhilaenorum, Automalax, Mendrion -> AL-AGHAILA + link = { imp = 3330 imp = 3332 imp = 3333 imp = 3334 imp = 3335 imp = 3336 imp = 8202 ck3 = 4552 } # Auxiu, Dysopon, Euphranta, Iscina, Aulazon, AdPalmam, Majdubiyah -> SURT link = { imp = 3326 imp = 3327 imp = 3329 imp = 8220 imp = 8176 imp = 8198 ck3 = 4554 } # Base, Thebunte, Annesel, Banat, Desert, Auxiqua -> TAWURGHA link = { imp = 3325 imp = 8226 imp = 8221 imp = 8223 ck3 = 4555 } # Thubactis, Rimoniana, Sdada, Bularkan -> MISURATA - link = { imp = 3306 imp = 3324 imp = 5947 imp = 8228 ck3 = 4556 } # Leptis Magna, Kinyps, Sahara Impassable, Dnar -> LABDA + link = { imp = 3306 imp = 3324 imp = 5947 imp = 8228 ck3 = 4556 } # LeptisMagna, Kinypes, Sahara Impassable, Dnar -> LABDA link = { imp = 3303 imp = 3304 imp = 3305 imp = 8218 imp = 8219 imp = 8217 ck3 = 4557 } # Oea, Amarea, Gaphara, Mesphe, Subututtu, Thenadassa -> TRIPOLIS - link = { imp = 3301 imp = 3302 ck3 = 4568 } # Sabratha, Zanazia -> SABRATHA + link = { imp = 3301 imp = 3302 ck3 = 4568 } # Abrotonum, Zanazia -> SABRATHA link = { imp = 3298 imp = 3299 imp = 3300 ck3 = 4561 } # Zouchis, Pisida, Locri -> ZUWARA - link = { imp = 3295 imp = 3296 imp = 3297 imp = 8250 ck3 = 4565 } # Gergis, Zitha, Putea Pallene, Naffatiyah -> JARJIS + link = { imp = 3295 imp = 3296 imp = 3297 imp = 8250 ck3 = 4565 } # Meninge, Zitha, PuteaPallene, Naffatiyah -> JARJIS link = { imp = 8188 ck3 = 4567 } # Desert -> FURSATA link = { imp = 8229 imp = 8230 ck3 = 4559 } # Giosc, Tabuinati -> DJADO link = { imp = 8235 imp = 8238 ck3 = 4560 } # Praesidium, Tillibari -> NALUT @@ -903,109 +902,109 @@ imperator_invictus = { link = { comment = "AFRICA PROCONSULARIS BY IHT" } link = { imp = 3283 imp = 3287 imp = 3285 imp = 3284 ck3 = 4575 } # Usula, Taparura, Thaenae, Cercina -> SFAX link = { imp = 3201 ck3 = 4599 } # Tabira -> QAFSA - link = { imp = 3267 imp = 3265 imp = 3268 imp = 3264 ck3 = 4589 } # Numluli, Thimida Bure, Aunobaris, Septimia -> BAJA - link = { imp = 3218 imp = 3217 imp = 3220 ck3 = 4628 } # Tipasa, Madauros, Saltus Sorothensis -> TIFASH - link = { imp = 3231 imp = 3221 ck3 = 4629 } # Pagus Malarensium, Zattara -> TUBURSHIQ + link = { imp = 3267 imp = 3265 imp = 3268 imp = 3264 ck3 = 4589 } # ThibursicumBure, ThimidaBure, Aunobaris, Septimia -> BAJA + link = { imp = 3218 imp = 3217 imp = 3220 ck3 = 4628 } # Tipasa, Madauros, SaltusSorothensis -> TIFASH + link = { imp = 3231 imp = 3221 ck3 = 4629 } # PagusMalarensium, Zattara -> TUBURSHIQ link = { imp = 3223 imp = 3228 imp = 3224 ck3 = 4630 } # Calama, Celtianis, Asuccuris -> QALAMA link = { imp = 3161 imp = 3227 ck3 = 4752 } # Chullu, Rusicade -> IZAN - link = { imp = 3225 imp = 3226 ck3 = 4588 } # Hippo Regius, Culucitanis -> ANNABA + link = { imp = 3225 imp = 3226 ck3 = 4588 } # HippoRegius, Culucitanis -> ANNABA link = { imp = 3229 ck3 = 4587 } # Tuniza -> MANSA'L-KHARAZ link = { imp = 3230 ck3 = 4586 } # Thabraca -> TABARQA - link = { imp = 3258 imp = 3262 imp = 3260 imp = 3263 ck3 = 4585 } # Hippo Diarrhytus, Kinna Thabracania, Matar, Rucuma -> BANZART - link = { imp = 3256 imp = 3257 imp = 3261 ck3 = 4583 } # Carthago, Utica, Thisika -> QARTAJANA - link = { imp = 3259 imp = 3250 ck3 = 4582 } # Uzali Sar, Uthina -> TUNIS - link = { imp = 3271 imp = 3266 imp = 3270 ck3 = 4753 } # Thignica, Ureu, Bisica Lucana -> SILYANA - link = { imp = 3235 imp = 3269 imp = 3237 ck3 = 4591 } # Lares, Thugga, Obba -> AL-ARIBUS - link = { imp = 3169 imp = 3187 imp = 3185 imp = 3176 ck3 = 4622 } # Badias, Midili, Leges Maiores, Aurasius Inferior -> BADIS - link = { imp = 3209 imp = 3248 imp = 3247 imp = 3205 ck3 = 4624 } # Thala Musulamia, Thugga Terebenthina, Althiburos, Menegesum -> TALA - link = { imp = 3182 imp = 3184 imp = 3167 imp = 3168 imp = 3170 imp = 3174 ck3 = 4627 } # Bagai, Thalades, Macomades, Mascula Tiberia, Lambafundi, Claudi -> BAGHAYA + link = { imp = 3258 imp = 3262 imp = 3260 imp = 3263 ck3 = 4585 } # HippoDiarrhytus, Rucuma, ThuburbisMinor, Thisika -> BANZART + link = { imp = 3256 imp = 3257 imp = 3261 ck3 = 4583 } # Carthago, Utica, Thimida -> QARTAJANA + link = { imp = 3259 imp = 3250 ck3 = 4582 } # Inuca, Uthina -> TUNIS + link = { imp = 3271 imp = 3266 imp = 3270 ck3 = 4753 } # Thignica, Membressa, BisicaLucana -> SILYANA + link = { imp = 3235 imp = 3269 imp = 3237 ck3 = 4591 } # Lares, Agbia, Obba -> AL-ARIBUS + link = { imp = 3169 imp = 3187 imp = 3185 imp = 3176 ck3 = 4622 } # Badias, Midili, LegesMaiores, AurasiusMons -> BADIS + link = { imp = 3209 imp = 3248 imp = 3247 imp = 3205 ck3 = 4624 } # Thala, ThuggaTerebenthina, Althiburos, Menegesum -> TALA + link = { imp = 3182 imp = 3184 imp = 3167 imp = 3168 imp = 3170 imp = 3174 ck3 = 4627 } # Bagai, Thalades, Macomades, MasculaTiberia, Lambafundi, Claudi -> BAGHAYA link = { imp = 3166 ck3 = 4620 } # Gadiaufala -> QASR AL-IFRIQI - link = { imp = 3164 imp = 3355 imp = 3181 imp = 3165 ck3 = 4632 } # Thibilis, Fabatianum, Sigus, Nattabutum -> TIJIS - link = { imp = 3234 imp = 3232 imp = 3216 imp = 3233 ck3 = 4590 } # Sicca Veneria, Simitthus, Funda Thavagalensis, Bulla Regia -> SIQQABANARIYA + link = { imp = 3164 imp = 3355 imp = 3181 imp = 3165 ck3 = 4632 } # Thibilis, Fabatianum, CastellumSiguitanorum, Nattabutum -> TIJIS + link = { imp = 3234 imp = 3232 imp = 3216 imp = 3233 ck3 = 4590 } # SiccaVeneria, Thuburnica, FundaThavagalensis, BullaRegia -> SIQQABANARIYA link = { imp = 3214 imp = 3208 ck3 = 4625 } # Thaesactum, Ammaedara -> MAYDARA link = { imp = 3215 imp = 3219 imp = 3213 ck3 = 4626 } # Casaea, Marcimeni, Vasampus -> MASKIYANA - link = { imp = 3203 imp = 3206 imp = 3207 ck3 = 4623 } # Theveste, Ad Aquas Caesaris, Vegesela -> TABASSA - link = { imp = 3204 imp = 3186 ck3 = 4607 } # Vatari, Ubaza Castellum -> MADILA - link = { imp = 3199 imp = 3197 imp = 3198 imp = 3194 ck3 = 4598 } # Nara Maxyesia, Sufetula, Cillium, Thelepte -> AL-QASRAYN + link = { imp = 3203 imp = 3206 imp = 3207 ck3 = 4623 } # Theveste, AdAquasCaesaris, Vegesela -> TABASSA + link = { imp = 3204 imp = 3186 ck3 = 4607 } # Vatari, UbazaCastellum -> MADILA + link = { imp = 3199 imp = 3197 imp = 3198 imp = 3194 ck3 = 4598 } # Nara, Sufetula, Cillium, Thelepte -> AL-QASRAYN link = { imp = 3292 imp = 8247 imp = 8246 imp = 8239 imp = 8135 imp = 8237 ck3 = 4572 } # Arelliorum, Tibubuci, Tisavar, Dekrlet, Desert, Bourma -> BIR AMIR link = { imp = 8256 imp = 8255 ck3 = 4604 } # Rjim Maatoug, Faouar -> SOUF link = { imp = 8257 ck3 = 4608 } # Talib -> AJLU link = { imp = 8249 imp = 8254 imp = 5948 imp = 8253 imp = 8251 imp = 8241 ck3 = 4605 } # Tabria, Ghidma, Desert, Jamnah, Turris Tamaleni, Jebil -> DOUZ link = { imp = 3291 imp = 8252 imp = 8248 ck3 = 4573 } # Tacape, Aquae Tacapitanae, Bezereos -> QABIS - link = { imp = 3195 imp = 3193 imp = 3189 imp = 3188 ck3 = 4606 } # Gemellia, Cerva, Ad Speculum, Casae Nigrae -> MADAS - link = { imp = 3191 ck3 = 4603 ck3 = 4601 } # Castra Neptitana -> NAFTA, TOZEUR - link = { imp = 3190 ck3 = 4602 } # Thiges -> HAMMA - link = { imp = 3202 imp = 3196 ck3 = 4600 } # Silesva, Capsa Iustiniana -> TAQYUS - link = { imp = 3288 imp = 3289 imp = 3290 ck3 = 4574 } # Macomades Minores, Bennafa, Aves -> AL-HAMMA - link = { imp = 3246 imp = 3211 imp = 3212 imp = 3210 ck3 = 4593 } # Mactaris, Masclinae, Aquae Regiae, Sufes -> SABIBA - link = { imp = 3241 imp = 3238 imp = 3239 imp = 3236 ck3 = 4592 } # Furnos Maius, Zama Regia, Uzappa, Assuras -> JALULA + link = { imp = 3195 imp = 3193 imp = 3189 imp = 3188 ck3 = 4606 } # Gemellia, Cerva, AdSpeculum, Casae Nigrae -> MADAS + link = { imp = 3191 ck3 = 4603 ck3 = 4601 } # CastraNeptitana -> NAFTA, TOZEUR + link = { imp = 3190 ck3 = 4602 } # CastellumThigensium -> HAMMA + link = { imp = 3202 imp = 3196 ck3 = 4600 } # Silesva, CapsaIustiniana -> TAQYUS + link = { imp = 3288 imp = 3289 imp = 3290 ck3 = 4574 } # MacomadesMinores, Bennata, Aves -> AL-HAMMA + link = { imp = 3246 imp = 3211 imp = 3212 imp = 3210 ck3 = 4593 } # Mactaris, Masclinae, AquaeRegiae, Sufes -> SABIBA + link = { imp = 3241 imp = 3238 imp = 3239 imp = 3236 ck3 = 4592 } # FurnosMaius, ZamaRegia, Uzappa, Assuras -> JALULA link = { imp = 3272 imp = 3242 imp = 3240 ck3 = 4594 } # Muzuc, Abthugni, Seressi -> KAIROUAN - link = { imp = 3279 ck3 = 4596 } # Vicus Augusti -> MANSURIYA - link = { imp = 3273 ck3 = 4595 } # Aquae Casae -> RAQQADA + link = { imp = 3279 ck3 = 4596 } # VicusAugusti -> MANSURIYA + link = { imp = 3273 ck3 = 4595 } # AquaeCasae -> RAQQADA link = { imp = 3286 ck3 = 4597 } # Aeliae -> AL-ABBASIYA link = { imp = 3200 ck3 = 4576 } # Oviscae -> EL-JEM - link = { imp = 3280 imp = 3282 imp = 3281 ck3 = 4577 } # Acholla, Thysdrus, Bararus -> SLAKTA - link = { imp = 3277 imp = 3278 ck3 = 4578 } # Leptis Minor, Thapsus -> MAHDIYA + link = { imp = 3280 imp = 3282 imp = 3281 ck3 = 4577 } # Iustinianopolis, Thysdrus, Bararus -> SLAKTA + link = { imp = 3277 imp = 3278 ck3 = 4578 } # LeptisMinor, Thapsus -> MAHDIYA link = { imp = 3276 ck3 = 4579 } # Hadrametum -> MONASTIR - link = { imp = 3243 imp = 3275 imp = 3274 ck3 = 4580 } # Feradi Maius, Ulizibbira, Mediccera -> SUSA - link = { imp = 3249 imp = 3244 imp = 3251 ck3 = 4581 } # Ziqua, Pupput, Membressa -> ZAGHWAN - link = { imp = 3245 imp = 3252 imp = 3255 imp = 3254 imp = 1470 imp = 3253 ck3 = 4584 } # Curubis, Carpis, Missua, Kerkouane, Cossyra, Nepheris -> NABEUL + link = { imp = 3243 imp = 3275 imp = 3274 ck3 = 4580 } # PheradiMaius, Unizibbira, Mediccera -> SUSA + link = { imp = 3249 imp = 3244 imp = 3251 ck3 = 4581 } # Ziqua, Pupput, ThuburboMaius -> ZAGHWAN + link = { imp = 3245 imp = 3252 imp = 3255 imp = 3254 imp = 1470 imp = 3253 ck3 = 4584 } # Neapolis, Carpis, Missua, Aspis, Cossyra, Nepheris -> NABEUL link = { comment = "ALGERIA BY IHT" } link = { imp = 3146 imp = 3147 imp = 3148 ck3 = 4639 } # Satafis, Sitifis, Mopth -> SATIF - link = { imp = 3163 imp = 3180 ck3 = 4631 } # Cirta, Thenebrestia -> CONSTANTINE + link = { imp = 3163 imp = 3180 ck3 = 4631 } # Constantina, Thenebrestia -> CONSTANTINE link = { imp = 3149 ck3 = 4638 } # Cuicul -> IKJAN - link = { imp = 3150 imp = 3160 imp = 3145 ck3 = 4636 } # Igilgili, Tucca, Choba -> JIJEL + link = { imp = 3150 imp = 3160 imp = 3145 ck3 = 4636 } # Igilgivi, Tucca, Choba -> JIJEL link = { imp = 3126 imp = 3135 imp = 3143 imp = 3144 ck3 = 4637 } # Saldae, Tubusuctu, Lesbia, Muslubium -> BEJAYA link = { imp = 3104 ck3 = 4659 } # Cenavicum -> TAHART - link = { imp = 3103 imp = 3099 ck3 = 4660 } # Breucorum, Ala Miliaria -> QALA'A IBN SALAMA + link = { imp = 3103 imp = 3099 ck3 = 4660 } # Breucorum, AlaMiliaria -> QALA'A IBN SALAMA link = { imp = 8376 imp = 8378 imp = 8381 imp = 8383 imp = 8385 ck3 = 4645 } # Errich, Gahra, Hamel, Moudjebara, Ibel -> BOU SAADA link = { imp = 8384 imp = 8382 ck3 = 4646 } # Djelfa, Chioukh -> ASHIR-BANYA - link = { imp = 3128 ck3 = 4647 } # Phruraesius Mons -> ASHIR-YASHIR - link = { imp = 3127 imp = 3105 ck3 = 4658 } # Cinnaba Mons, Columnata -> AL-'UBBAD - link = { imp = 3110 imp = 3112 imp = 3114 imp = 3115 ck3 = 4654 } # Tingitanum, Castra Germanorum, Oppidum Definum, Zucchabar -> MILIYANA - link = { imp = 3107 ck3 = 4655 } # Caudium Castra -> YALALA - link = { imp = 3100 imp = 3102 ck3 = 4656 } # Castra Nova, Mina -> QALA'A B_HUWARA - link = { imp = 3098 ck3 = 4657 } # Aquae Sirenses -> AL-GABAL - link = { imp = 3117 imp = 3131 imp = 3130 imp = 3129 ck3 = 4762 } # Sufasar, Auzia, Rapidum, Thanaramusa Castra -> SERSOU + link = { imp = 3128 ck3 = 4647 } # PhruraesiusMons -> ASHIR-YASHIR + link = { imp = 3127 imp = 3105 ck3 = 4658 } # CinnabaMons, Columnata -> AL-'UBBAD + link = { imp = 3110 imp = 3112 imp = 3114 imp = 3115 ck3 = 4654 } # CastellumTingitanum, CastraGermanorum, OppidumDefinum, Zucchabar -> MILIYANA + link = { imp = 3107 ck3 = 4655 } # GaudumCastra -> YALALA + link = { imp = 3100 imp = 3102 ck3 = 4656 } # CastraNova, Mina -> QALA'A B_HUWARA + link = { imp = 3098 ck3 = 4657 } # AquaeSirenses -> AL-GABAL + link = { imp = 3117 imp = 3131 imp = 3130 imp = 3129 ck3 = 4762 } # Sufasar, Auzia, Rapidum, ThanaramusaCastra -> SERSOU link = { imp = 3136 imp = 3137 imp = 3119 ck3 = 4648 } # Ausum, Bessemium, Lambdia -> MEDEA link = { imp = 8366 imp = 8367 imp = 8368 imp = 8369 ck3 = 4661 } # Laghouat, Aflou, Bayadh, Krakda -> ASKEDAL link = { imp = 8374 imp = 8375 ck3 = 4619 } # Messaad, Dechret Kamra -> AL-AGHWAT link = { imp = 3133 imp = 3132 imp = 8386 imp = 3134 imp = 3142 imp = 8377 ck3 = 4641 } # Zabi, Tatiliti, Teboucha, Equizeto, Aras, Khoubana -> AL-MASILA - link = { imp = 3139 imp = 3140 imp = 3157 imp = 3141 ck3 = 4640 } # Vanisnesi, Ad Sava Municipium, Lemellia, Sertei -> QALA'A B_HAMMAD + link = { imp = 3139 imp = 3140 imp = 3157 imp = 3141 ck3 = 4640 } # Vanisnesi, AdSavaMunicipium, Lemellia, Sertei -> QALA'A B_HAMMAD link = { imp = 3151 imp = 8380 imp = 3158 ck3 = 4642 } # Macri, Mcif, Lobrinia -> MAGRA - link = { imp = 3156 imp = 3173 ck3 = 4643 } # Nicivibus, Burgus Gaetulia -> NGAOUS - link = { imp = 3153 imp = 3172 ck3 = 4621 } # Mesarietta, Aurasius Superior -> BISKRA - link = { imp = 3152 imp = 3155 imp = 8379 ck3 = 4644 } # Thubunae, Aqua Viva, Slimane -> TUBNA + link = { imp = 3156 imp = 3173 ck3 = 4643 } # Nicivibus, BurgusSpeculatorius -> NGAOUS + link = { imp = 3153 imp = 3172 ck3 = 4621 } # Mesarietta, AurasiusMons -> BISKRA + link = { imp = 3152 imp = 3155 imp = 8379 ck3 = 4644 } # Thubunae, AquaViva, Slimane -> TUBNA link = { imp = 3154 ck3 = 4754 } # Gemellae -> WAGHLANAT link = { imp = 3171 ck3 = 4633 } # Tabudium -> SIDI UQBA - link = { imp = 3183 imp = 3159 imp = 3177 imp = 3179 imp = 3178 ck3 = 4634 } # Subzuaritanum, Zarai, Lamasba, Verecunda, Diana Veteranorum -> BILIZMA + link = { imp = 3183 imp = 3159 imp = 3177 imp = 3179 imp = 3178 ck3 = 4634 } # Subzuaritanum, Zarai, Lamasba, Verecunda, DianaVeteranorum -> BILIZMA link = { imp = 3162 ck3 = 4635 } # Milevum -> MILA link = { imp = 3121 imp = 3122 imp = 3123 imp = 3124 ck3 = 4649 } # Rusuccuru, Rusippisir, Rusazus, Bida -> TADALLIS link = { imp = 3118 imp = 3120 ck3 = 4650 } # Icosium, Rusguniae -> ALGIERS - link = { imp = 3116 ck3 = 4651 } # Iol -> MATTIJA - link = { imp = 3111 imp = 3113 ck3 = 4652 } # Cartili, Gunugu -> SHARSHAL - link = { imp = 3109 imp = 3106 imp = 3108 ck3 = 4653 } # Portus Magulus, Arsennaria, Cartennae -> TANAS - link = { imp = 3101 ck3 = 4664 } # Quiza Xenitana -> MARSA FARUKH - link = { imp = 3095 ck3 = 4665 } # Portus Magnus -> ARZEW + link = { imp = 3116 ck3 = 4651 } # Tipasa -> MATTIJA + link = { imp = 3111 imp = 3113 ck3 = 4652 } # Cartilli, Gunugus -> SHARSHAL + link = { imp = 3109 imp = 3106 imp = 3108 ck3 = 4653 } # PortusMagulus, Arsennaria, Cartenae -> TANAS + link = { imp = 3101 ck3 = 4664 } # QuizaXenitana -> MARSA FARUKH + link = { imp = 3095 ck3 = 4665 } # PortusMagnus -> ARZEW link = { imp = 3089 imp = 3087 ck3 = 4671 } # Altava, Pomaria -> AIN TEKBALET link = { imp = 3097 imp = 3096 imp = 3094 ck3 = 4663 } # Lucu, Tasaccora, Caputtasaccora -> MUASKAR link = { imp = 3093 imp = 3088 ck3 = 4667 } # Regiae, Albulae -> QASR IBN SINAN - link = { imp = 3091 imp = 3092 ck3 = 4666 } # Castra Puerorum, Portus Divinus -> ORAN + link = { imp = 3091 imp = 3092 ck3 = 4666 } # CastraPuerorum, PortusDivinus -> ORAN link = { imp = 3086 imp = 3090 ck3 = 4668 } # Siga, Tepidae -> ARSGUL link = { comment = "SICILY AND MALTA BY IHT" } - link = { imp = 90 imp = 7843 ck3 = 2645 } # Hippana, Adranon -> CALATAFIMI - link = { imp = 91 imp = 93 ck3 = 2644 } # Heraclea Minoa, Selinus -> MAZARA + link = { imp = 90 imp = 7843 ck3 = 2645 } # Herbesus, Adranon -> CALATAFIMI + link = { imp = 91 imp = 93 ck3 = 2644 } # Heraclea, Selinus -> MAZARA link = { imp = 86 ck3 = 2637 } # Acragas -> GIRGENTI link = { imp = 85 imp = 7840 ck3 = 2642 } # Gela, Menae -> CALTAGIRONE - link = { imp = 84 imp = 87 imp = 101 ck3 = 2638 } # Syracusae, Acrae, Camarina -> SYRACUSE - link = { imp = 83 imp = 7837 imp = 5148 ck3 = 2643 } # Leontini, Megara, IMPASSIBLE TERRAIN 148 -> LENTINI - link = { imp = 82 imp = 7838 imp = 5000 ck3 = 2639 } # Catana, Centuripae, Aetna Volcano -> CATANIA - link = { imp = 80 imp = 99 imp = 1472 imp = 7861 imp = 81 imp = 5147 ck3 = 2633 } # Messana, Tyndaris, Liparae, Strongyle Volcano, Tauromenium, IMPASSIBLE TERRAIN 147 -> MESSINA - link = { imp = 98 imp = 100 imp = 5150 ck3 = 2634 } # Cephaloedium, Calacte, IMPASSIBLE TERRAIN 150 -> CEFALU + link = { imp = 84 imp = 87 imp = 101 ck3 = 2638 } # Syracuse, Acrae, Camarina -> SYRACUSE + link = { imp = 83 imp = 7837 imp = 5148 ck3 = 2643 } # Leontini, Megara Hyblaia, IMPASSIBLE TERRAIN 148 -> LENTINI + link = { imp = 82 imp = 7838 imp = 5000 ck3 = 2639 } # Catana, Centuripae, IMPASSIBLE TERRAIN 000 -> CATANIA + link = { imp = 80 imp = 99 imp = 1472 imp = 7861 imp = 81 imp = 5147 ck3 = 2633 } # Messana, Tyndaris, Liparae, Strongyle, Naxos, IMPASSIBLE TERRAIN 147 -> MESSINA + link = { imp = 98 imp = 100 imp = 5150 ck3 = 2634 } # Cephaleodium, Calacte, IMPASSIBLE TERRAIN 150 -> CEFALU link = { imp = 88 ck3 = 2641 } # Murgantia -> CALTANISETTA link = { imp = 89 imp = 7839 imp = 7841 imp = 5149 ck3 = 2640 } # Henna, Capitium, Myttistraton, IMPASSIBLE TERRAIN 149 -> CASTROGIOVANNI - link = { imp = 96 imp = 7842 imp = 97 ck3 = 2635 } # Panorumus, Soluntum, Thermai -> PALERMO - link = { imp = 94 imp = 95 imp = 92 ck3 = 2636 } # Lilybaeum, Eryx, Egesta -> TRAPANI + link = { imp = 96 imp = 7842 imp = 97 ck3 = 2635 } # Panorumus, Soluntum, Thermae -> PALERMO + link = { imp = 94 imp = 95 imp = 92 ck3 = 2636 } # Lilybaeum, Eryx, Segesta -> TRAPANI link = { imp = 1471 ck3 = 2646 } # Melita -> MALTA link = { comment = "MALDIVES BY IHT" } link = { imp = 8282 imp = 8281 imp = 8283 ck3 = 8712 } # Laccadives, Amindivi, Minicoy -> Thiladhunmathi @@ -1017,16 +1016,16 @@ imperator_invictus = { link = { imp = 6966 ck3 = 3267 } # Rohanada -> KATARGAMA link = { imp = 8287 imp = 6980 ck3 = 3269 } # Mahiyanganaya, Salikhaprava -> MAHIYANGANA link = { imp = 8286 imp = 6970 ck3 = 3273 } # Polonnaruwa, Vijitanagara -> POLONNARUWA - link = { imp = 5314 ck3 = 3274 } # Palaiogonoi -> DAMBADENIYA + link = { imp = 5314 ck3 = 3274 } # Parakramapura -> DAMBADENIYA link = { imp = 6978 ck3 = 3282 } # Avakana -> DHAMBALLAI - link = { imp = 8285 imp = 6974 ck3 = 3279 } # Matale, Etalava -> MATALE + link = { imp = 8285 imp = 6974 ck3 = 3279 } # Matale, Anuradhapura -> MATALE link = { imp = 6973 ck3 = 3284 } # Upatissagama -> KURUNAGALA - link = { imp = 6950 ck3 = 3272 } # Anuradhapura -> ANURADHAPURA + link = { imp = 6950 ck3 = 3272 } # Anourogrammon -> ANURADHAPURA link = { imp = 6976 ck3 = 3281 } # Girikandi -> TRINCOMALEE link = { imp = 6968 ck3 = 3287 } # Modoutou -> MULLAITIVU - link = { imp = 6953 ck3 = 3266 } # Mahagrama -> MAGAMPURA + link = { imp = 6953 ck3 = 3266 } # Maagrammon -> MAGAMPURA link = { imp = 6977 ck3 = 3270 } # Dighavapi -> DIGHAVAPI - link = { imp = 6967 imp = 6981 ck3 = 3280 } # Gokanna, Litta -> BATTICALOA + link = { imp = 6967 imp = 6981 ck3 = 3280 } # Nagadiba, Litta -> BATTICALOA link = { imp = 6952 ck3 = 3268 } # Dagana -> GODAWAYA link = { imp = 6951 imp = 6965 ck3 = 3271 } # Odoka, Oulippada -> GIMHATHITHTHA link = { imp = 6982 imp = 8284 ck3 = 3277 } # Nabartha, Dedigama -> SITAWAKA @@ -1046,27 +1045,27 @@ imperator_invictus = { link = { imp = 8709 ck3 = 8513 } # Moqor Yar -> MUDUG-NORTH link = { imp = 8706 imp = 8711 imp = 8710 imp = 8705 ck3 = 8506 } # Qarxis, Afdugweyne, Mulug, Dalmoxor -> LOWER_NUGAAL link = { imp = 7531 imp = 8679 imp = 7528 ck3 = 8432 } # Pano, Bandarbeyla, Opone -> RAS_HAFUN - link = { imp = 8667 imp = 7522 imp = 7534 ck3 = 8404 } # Isis, Malao, Amaitaia -> BERBERA - link = { imp = 7535 ck3 = 8403 ck3 = 8401 } # Maphoris -> GOGESA, AMUD + link = { imp = 8667 imp = 7522 imp = 7534 ck3 = 8404 } # Isis, Malao, Dacca* -> BERBERA + link = { imp = 7535 ck3 = 8403 ck3 = 8401 } # Dumar* -> GOGESA, AMUD link = { imp = 8670 imp = 9134 imp = 8669 imp = 8668 imp = 8671 ck3 = 8405 } # Hargeysa, Somali Impassable, Barkhadle, Bagan, Gebiilay -> HARGEISA link = { imp = 8673 imp = 8696 imp = 8674 imp = 8672 imp = 8676 imp = 8675 imp = 8677 ck3 = 8502 } # Gidheys, Xood, Seeto, Suuqsade, Lafaha, Haqayo Malaas, Goyar -> SHEIKH link = { imp = 7541 ck3 = 8391 } # Handoga -> ABBE - link = { imp = 7520 ck3 = 8399 } # Anchitaia -> GHOUBET - link = { imp = 7521 ck3 = 8398 ck3 = 8400 } # Aualites -> ABASA, ZAILA + link = { imp = 7520 ck3 = 8399 } # Tanetjer -> GHOUBET + link = { imp = 7521 ck3 = 8398 ck3 = 8400 } # Atule -> ABASA, ZAILA link = { imp = 8701 imp = 8697 imp = 8699 imp = 8695 imp = 8694 imp = 8698 ck3 = 8503 } # Afweyn, Danano, Gar Adag, Aelal, Berberia Desert, Qoridheere -> TOGDHEER link = { imp = 8682 imp = 7527 ck3 = 8424 } # Shalcaw, Khoor Shoora -> MAKHIR - link = { imp = 7533 imp = 7523 imp = 8683 ck3 = 8425 } # Salweyn, Moundou, Ceerigabo -> MAIT + link = { imp = 7533 imp = 7523 imp = 8683 ck3 = 8425 } # Salweyn, Mundus, Ceerigabo -> MAIT link = { imp = 7524 ck3 = 8426 } # Macajilayn -> LAAS_QORAY link = { imp = 7532 ck3 = 8429 } # Mosylon -> EL-AYO - link = { imp = 7525 imp = 8681 imp = 8691 ck3 = 8430 } # Elephanton Limen, Qandala, Aromata Desert -> BOSASO - link = { imp = 7526 imp = 7529 imp = 8680 ck3 = 8431 } # Aromata, Yehta, Mudun -> GARDAFUUL + link = { imp = 7525 imp = 8681 imp = 8691 ck3 = 8430 } # Elephas Limen, Qandala, Aromata Desert -> BOSASO + link = { imp = 7526 imp = 7529 imp = 8680 ck3 = 8431 } # Aromata, Yehta*, Mudun -> GARDAFUUL link = { imp = 7530 ck3 = 1369 ck3 = 1310 } # Dioscoridus -> Socotra, Qualnsiyah link = { comment = "BURMA BY IHT" } link = { imp = 8796 ck3 = 9625 ck3 = 826 } # Burma Mountains -> Chin, Manipur link = { imp = 8805 ck3 = 9624 } # Thanbauk -> Kale link = { imp = 8781 ck3 = 9658 } # Mawlaik -> Thaungdut link = { imp = 8794 ck3 = 9622 } # Burma Mountains -> Maukkadaw - link = { imp = 8785 imp = 8812 imp = 5669 ck3 = 9644 } # Piao, Bahmo, Burma Mountains -> Katha + link = { imp = 8785 imp = 8812 imp = 5669 ck3 = 9644 } # Piao, Bahmo, PASS -> Katha link = { imp = 8806 ck3 = 9561 } # Myitnge -> Mekkhaya link = { imp = 8807 ck3 = 9642 } # Mongmit -> Momeik link = { imp = 5964 ck3 = 9637 ck3 = 9596 ck3 = 9597 ck3 = 9599 ck3 = 9626 ck3 = 9633 ck3 = 9632 ck3 = 9631 ck3 = 9591 ck3 = 9635 ck3 = 9589 ck3 = 9636 ck3 = 9638 ck3 = 9593 ck3 = 9594 ck3 = 9598 ck3 = 9630 ck3 = 9627 ck3 = 9629 ck3 = 9628 } # Burma Impassable -> Sittaung, Pegu, Syriam, Krapan, Bogale, Myaungmya, Kusumi, Negrais, Hinthada, Tharrawaddy, Myede, Phyu, Shwegyin, Toungoo, Mong_Pai, Dagon, Taikkala, Thaton, Mawlamyine, Muttina @@ -1100,11 +1099,11 @@ imperator_invictus = { link = { imp = 5892 imp = 5894 imp = 5895 imp = 5889 ck3 = 5340 } # Sechem, Kyta, Vynikka, Donol -> Yergolyk link = { imp = 6190 imp = 5888 imp = 5891 ck3 = 5288 } # Kichpa, Techka, Avrar -> Manych link = { imp = 5885 imp = 5887 ck3 = 5339 } # Muiksita, Bashkra -> Chamchev - link = { imp = 7626 imp = 7624 imp = 1674 imp = 7625 ck3 = 603 } # Arukai, Contani, Cumania, Didai -> Cabarda + link = { imp = 7626 imp = 7624 imp = 1674 imp = 7625 ck3 = 603 } # Arukai*, Contani, Cumania, Didai -> Cabarda link = { imp = 7623 ck3 = 5306 } # Terekata -> Durdzukia link = { imp = 7602 ck3 = 5342 ck3 = 675 } # Endzhara -> Sambalut, Kumukh - link = { imp = 7629 imp = 7628 imp = 7627 ck3 = 5302 } # Gorat, Malyts, Verks -> Tatartopa - link = { imp = 7633 imp = 7632 ck3 = 5305 } # Kayit, Irmana -> Samander + link = { imp = 7629 imp = 7628 imp = 7627 ck3 = 5302 } # Gorat*, Malyts*, Verks* -> Tatartopa + link = { imp = 7633 imp = 7632 ck3 = 5305 } # Kayit*, Irmana* -> Samander link = { imp = 4558 imp = 5884 imp = 7637 ck3 = 597 } # Paniardis, Katys, Yeyata -> Azov link = { imp = 5886 imp = 5890 ck3 = 5338 } # Akkei, Mykon -> Tikhon link = { imp = 7636 ck3 = 5337 } # Garen -> Chelbaska @@ -1116,18 +1115,18 @@ imperator_invictus = { link = { imp = 7603 ck3 = 674 ck3 = 5341 ck3 = 668 } # Derbent -> Derbent, Kuba, Shirvan link = { imp = 5870 imp = 5875 imp = 5923 ck3 = 5308 } # Kurema, Ashawm, Achtab -> Cabartei link = { imp = 5867 imp = 5869 ck3 = 5309 } # Suthrander, Magrai -> Tserlona - link = { imp = 1642 imp = 1633 ck3 = 5771 } # Bagawan, Absheron -> Baku + link = { imp = 1642 imp = 1633 ck3 = 5771 } # Absheron, Bagawan -> Baku link = { imp = 7621 imp = 7604 imp = 7605 ck3 = 5304 } # Valent, Tzur, Urtseki -> Balanjar link = { imp = 5874 imp = 5873 imp = 5921 ck3 = 5343 } # Recrassia, Molliuch, Abach -> Samiran link = { imp = 5866 imp = 5868 ck3 = 5307 } # Zabender, Lotin -> Kizlyar link = { imp = 5871 imp = 5872 ck3 = 5310 } # Zarem, Shiech -> Cisterki link = { imp = 5930 imp = 5929 imp = 5931 imp = 5927 ck3 = 5303 } # Huruir, Zhodyn, Skatar, Varyr -> Besinada - link = { imp = 7622 imp = 7631 imp = 7630 ck3 = 606 } # Skarin, Irkat, Kaflur -> Petigoria - link = { imp = 7606 imp = 7619 imp = 7620 ck3 = 5300 } # Heniat, Lapra, Kalkry -> Etzeri - link = { imp = 7616 imp = 4568 ck3 = 5298 } # Tmakrat, Palaia Achaia -> Ulmi - link = { imp = 7614 imp = 7615 imp = 7608 ck3 = 5297 } # Salavy, Elvruz, Hypanera -> Zapaxi - link = { imp = 4566 imp = 4567 imp = 7600 ck3 = 5296 } # Bata, Torikos, Sabiranum -> Bata - link = { imp = 4563 imp = 4562 imp = 4565 imp = 4564 ck3 = 598 } # Phanagoria, Hermonassa, Gorgippia, Labrys -> Tmutarakan + link = { imp = 7622 imp = 7631 imp = 7630 ck3 = 606 } # Skarin*, Irkat*, Kaflur* -> Petigoria + link = { imp = 7606 imp = 7619 imp = 7620 ck3 = 5300 } # Heniat, Lapra*, Kalkry* -> Etzeri + link = { imp = 7616 imp = 4568 ck3 = 5298 } # Tmakrat, PalaiaAchaia -> Ulmi + link = { imp = 7614 imp = 7615 imp = 7608 ck3 = 5297 } # Salavy, Elvruz*, Hypanera -> Zapaxi + link = { imp = 4566 imp = 4567 imp = 7600 ck3 = 5296 } # Bata, HeptalouLimen, Sabiranum -> Bata + link = { imp = 4563 imp = 4562 imp = 4565 imp = 4564 ck3 = 598 } # Phanagoria, Hermonassa, SindikosLimen, Labrys -> Tmutarakan link = { comment = "NORTH CAUCASIAN SEA COAST BY IHT" } link = { imp = 8933 imp = 8931 ck3 = 7231 } # Aksha, Kenbay -> Zarapan link = { imp = 8930 ck3 = 7066 } # Imankara -> Azgyl @@ -1139,12 +1138,12 @@ imperator_invictus = { link = { imp = 6201 imp = 6202 imp = 6203 imp = 6204 imp = 5901 ck3 = 607 } # Agharite, Irkant, Ghalat, Urghalat, Porach -> Sarkel link = { imp = 6214 imp = 6206 imp = 6207 imp = 6205 ck3 = 5315 } # Zhuna, Ketsk, Urviygra, Uyoro -> Aksay link = { imp = 5876 imp = 5919 imp = 5920 imp = 5918 imp = 5922 ck3 = 5312 } # Sechtra, Kurnsck, Ermel, Chroda, Kumetta -> Sara - link = { imp = 8050 imp = 5908 imp = 5907 ck3 = 5311 } # Uyra, Gyashech, Taksaty -> Astrakhan + link = { imp = 8050 imp = 5908 imp = 5907 ck3 = 5311 } # Moslar, Gyashech, Taksaty -> Astrakhan link = { imp = 6219 imp = 6222 imp = 8960 imp = 8959 imp = 8968 ck3 = 5345 } # Uyennik, Arzhahk, Shungay, Mukhat, Saykhin -> Chyorny Yar link = { imp = 6225 imp = 6226 imp = 6230 imp = 6227 imp = 6223 imp = 6224 imp = 8956 ck3 = 620 } # Monok, Urmonok, Arkhonnt, Zale, Khorolats, Vhingad, Suyindik -> Itil - link = { imp = 5877 imp = 5909 imp = 6228 imp = 6229 ck3 = 5313 } # Enim, Norom, Arzhale, Khonnt -> Saqsin - link = { imp = 5878 imp = 5910 imp = 6231 ck3 = 5346 } # Atar, Uvra, Ashina -> Ryn - link = { imp = 5879 imp = 5911 imp = 6232 imp = 8944 imp = 8939 ck3 = 5317 } # Gyoria, Usch, Schelats, Bangazy, Orlik -> Saraychiq + link = { imp = 5877 imp = 5909 imp = 6228 imp = 6229 ck3 = 5313 } # PASS, Norom, Arzhale, Khonnt -> Saqsin + link = { imp = 5878 imp = 5910 imp = 6231 ck3 = 5346 } # PASS, Uvra, Ashina -> Ryn + link = { imp = 5879 imp = 5911 imp = 6232 imp = 8944 imp = 8939 ck3 = 5317 } # PASS, Usch, Schelats, Bangazy, Orlik -> Saraychiq link = { imp = 8916 ck3 = 7093 } # Karabulak -> Kashkarata link = { imp = 8918 imp = 8917 ck3 = 7068 } # Tobusken, Dzhaindy -> Namastau link = { imp = 8910 imp = 8919 ck3 = 7237 } # Sagiz, Ashchiy -> Tulugai Sor @@ -1183,20 +1182,20 @@ imperator_invictus = { link = { imp = 9112 imp = 9113 ck3 = 5319 } # Uase, Uluki -> Yaitsk link = { imp = 9103 imp = 8947 imp = 9104 imp = 9102 ck3 = 5349 } # Batya, Zhanaqala, Hurasa, Batesa -> Zhaltyr link = { imp = 8940 imp = 8943 imp = 8946 ck3 = 5318 } # Inder, Krugli, Taskuduk -> Kalmikovsky - link = { imp = 5912 imp = 5880 imp = 8938 ck3 = 618 } # Azgar, Ruta, Tortkuduk -> Atyrau + link = { imp = 5912 imp = 5880 imp = 8938 ck3 = 618 } # Azgar, PASS, Tortkuduk -> Atyrau link = { imp = 8911 ck3 = 7236 } # Koptogay -> Sorkul link = { imp = 8935 ck3 = 7226 ck3 = 7232 } # Kuyandy -> Ulu-Uil, Jarkul link = { imp = 8936 imp = 8937 ck3 = 7227 } # Shoba, Zelshargan -> Sagiz link = { imp = 8934 ck3 = 7230 } # Mukur -> Kainar link = { imp = 8932 ck3 = 7228 } # Makat -> Hyan - link = { imp = 5881 imp = 5913 imp = 5914 ck3 = 7229 } # Gyechk, Nassin, Kholan -> Bakash-aul + link = { imp = 5881 imp = 5913 imp = 5914 ck3 = 7229 } # PASS, Nassin, Kholan -> Bakash-aul link = { imp = 5499 imp = 5498 ck3 = 7065 } # Satticha, Vyoros -> Qoshagyl link = { imp = 5495 ck3 = 7075 } # Gyranchi -> Sam link = { imp = 5915 imp = 5916 ck3 = 7072 } # Alsita, Chevka -> Kumstan link = { imp = 5496 imp = 5497 ck3 = 7073 } # Donom, Kylorica -> Tengiz link = { imp = 5488 imp = 5485 imp = 5487 ck3 = 7090 } # Tirim, Gran, Thema -> Davlet-Girei link = { comment = "NOVORUSSIA BY IHT" } - link = { imp = 6124 imp = 6144 imp = 6146 imp = 6147 ck3 = 5278 } # Syti, Borysthenia, Aegha, Ruti -> Kakovka + link = { imp = 6124 imp = 6144 imp = 6146 imp = 6147 ck3 = 5278 } # Syti, Ish, Aegha, Ruti -> Kakovka link = { imp = 6135 imp = 6134 imp = 6137 imp = 6136 ck3 = 5320 } # Thense, Annike, Voynor, Skurtisk -> Lozova link = { imp = 6158 imp = 6151 imp = 6150 ck3 = 5321 } # Unige, Alkhyent, Kihkyengra -> Pokrovsk link = { imp = 6157 imp = 6159 imp = 6156 imp = 6153 ck3 = 5324 } # Shgaritat, Stat, Aihkohna, Uldan -> Donetsk @@ -1218,10 +1217,10 @@ imperator_invictus = { link = { imp = 4556 imp = 6165 ck3 = 563 } # Karoia, Vel -> Taganrog link = { imp = 4557 imp = 6178 imp = 6189 imp = 6187 imp = 6180 ck3 = 596 } # Tanais, Ganka, Arn, Zhutikka, Vygriya -> Tana link = { imp = 6148 imp = 6143 imp = 6140 imp = 6152 ck3 = 557 } # Nynt, Aghonor, Tahent, Kilgad -> Khortytsia - link = { imp = 4555 imp = 4554 imp = 6155 imp = 6163 ck3 = 5280 } # Hygreis, Halieuma Theou, Kisko, Vyonots -> Mariupol - link = { imp = 4553 imp = 7193 imp = 6154 imp = 6149 ck3 = 5281 } # Kremnoi, Settina, Rynek, Ghahko -> Kutur-Ogly - link = { imp = 4552 imp = 4551 imp = 6391 imp = 7192 ck3 = 5279 } # Limnaioi, Coretia, LAKE, Sarmapolis -> Kyzyl Jar - link = { imp = 4531 imp = 4532 imp = 4530 imp = 7190 ck3 = 558 } # Karkine, Hylaia, Hippolaou Akra, Kanit -> Oleshye + link = { imp = 4555 imp = 4554 imp = 6155 imp = 6163 ck3 = 5280 } # Hygreis, HalieumaTheou, Kisko, Vyonots -> Mariupol + link = { imp = 4553 imp = 7193 imp = 6154 imp = 6149 ck3 = 5281 } # Kremnoi, Settina*, Rynek, Ghahko -> Kutur-Ogly + link = { imp = 4552 imp = 4551 imp = 6391 imp = 7192 ck3 = 5279 } # Meotae, Roxolania, LAKE, Sarmapolis* -> Kyzyl Jar + link = { imp = 4531 imp = 4532 imp = 4530 imp = 7190 ck3 = 558 } # Borysthenia, Karkine, Hippolaou, Kanit* -> Oleshye link = { comment = "POLAND BY IHT" } link = { imp = 4774 ck3 = 4913 ck3 = 4910 } # Elysiana -> Koscian, Kozmin link = { imp = 4770 ck3 = 4912 ck3 = 3146 ck3 = 4914 } # Vindua -> Wschowa, SIEDLISCHO, Srem @@ -1230,7 +1229,7 @@ imperator_invictus = { link = { imp = 4762 ck3 = 3144 ck3 = 4904 ck3 = 3145 } # Buguntia -> CROSSEN, Wolsztyn, SCHWIEBUS link = { imp = 4759 ck3 = 3148 ck3 = 3147 ck3 = 4901 } # Iadua -> SULECIN, RZEPIN, Miedzyrzecz link = { imp = 3908 ck3 = 3154 ck3 = 3153 } # Viritium -> SOLDIN, KOSTSCHIN - link = { imp = 4898 ck3 = 3044 ck3 = 3054 ck3 = 526 } # Vectia -> BETHEN, LUBLINIEC, Czestochowa + link = { imp = 4898 ck3 = 3044 ck3 = 3054 ck3 = 526 } # Vectia* -> BETHEN, LUBLINIEC, Czestochowa link = { imp = 4778 ck3 = 3052 ck3 = 3053 } # Lygia -> OPPELN, KREUZBURG link = { imp = 4013 ck3 = 3050 ck3 = 3048 } # Carredunum -> GLOGOWEK, NYSA link = { imp = 4005 ck3 = 3059 ck3 = 3069 } # Stragona -> SWINY, WLEN @@ -1243,35 +1242,35 @@ imperator_invictus = { link = { imp = 4011 ck3 = 3046 } # Cognia -> FRANKENSTEIN link = { imp = 4015 ck3 = 4181 } # Gothinia -> Unicov link = { imp = 4014 ck3 = 4183 ck3 = 4184 } # Eburum -> Hradec-nad-Moravici, Opava - link = { imp = 4897 ck3 = 3043 ck3 = 3042 ck3 = 3051 } # Lecrotiana -> RYBNIK, RATIBOR, STREHLITZ - link = { imp = 4899 ck3 = 4972 ck3 = 440 } # Sidaris -> Dabrowa Gorn, Olsztyn - link = { imp = 4896 ck3 = 4973 } # Valitum -> Wislica - link = { imp = 4004 ck3 = 3063 ck3 = 3060 } # Didunia -> GLOGOW, SADOWEL + link = { imp = 4897 ck3 = 3043 ck3 = 3042 ck3 = 3051 } # Lecrotiana* -> RYBNIK, RATIBOR, STREHLITZ + link = { imp = 4899 ck3 = 4972 ck3 = 440 } # Sidaris* -> Dabrowa Gorn, Olsztyn + link = { imp = 4896 ck3 = 4973 } # Valitum* -> Wislica + link = { imp = 4004 ck3 = 3063 ck3 = 3060 } # DiduniaOrientalis -> GLOGOW, SADOWEL link = { imp = 4771 ck3 = 3062 } # Leucaristus -> OLESNICA link = { imp = 4773 ck3 = 3061 } # Elysia -> MILIEZ - link = { imp = 4900 ck3 = 4931 ck3 = 4929 } # Ambium -> Wielun, Radomsko - link = { imp = 4903 ck3 = 4930 ck3 = 4924 ck3 = 4927 } # Exitanes -> Uniejow, Leczyca, Piotrkow + link = { imp = 4900 ck3 = 4931 ck3 = 4929 } # Ambium* -> Wielun, Radomsko + link = { imp = 4903 ck3 = 4930 ck3 = 4924 ck3 = 4927 } # Exitanes* -> Uniejow, Leczyca, Piotrkow link = { imp = 4777 ck3 = 4911 ck3 = 528 } # Vartia -> Turek, Sieradz link = { imp = 4772 ck3 = 4909 ck3 = 4932 } # Calisia -> Kalisz, Grabow - link = { imp = 4890 ck3 = 4970 ck3 = 4969 } # Agrum -> Bochnia, Nowy Targ - link = { imp = 4894 ck3 = 3040 ck3 = 4182 } # Arsonis -> TESCHEN, Prerov - link = { imp = 4893 ck3 = 3041 ck3 = 4971 } # Matiscua -> BIELSKO, Wieliczka - link = { imp = 4947 ck3 = 5080 ck3 = 4968 } # Tandum -> Sanok, Pilzno + link = { imp = 4890 ck3 = 4970 ck3 = 4969 } # Agrum* -> Bochnia, Nowy Targ + link = { imp = 4894 ck3 = 3040 ck3 = 4182 } # Arsonis* -> TESCHEN, Prerov + link = { imp = 4893 ck3 = 3041 ck3 = 4971 } # Matiscua* -> BIELSKO, Wieliczka + link = { imp = 4947 ck3 = 5080 ck3 = 4968 } # Tandum* -> Sanok, Pilzno link = { imp = 6262 ck3 = 4958 } # Varcret -> Parczew link = { imp = 6258 ck3 = 5075 } # Cariala -> Kholm link = { imp = 6257 ck3 = 5073 ck3 = 5076 } # Malica -> Cherven, Suteysk link = { imp = 6260 imp = 6255 ck3 = 4959 } # Folla, Donar -> Goraj link = { imp = 6261 ck3 = 4957 } # Sophine -> Lublin - link = { imp = 4902 ck3 = 4928 } # Amellua -> Przedborz - link = { imp = 4901 ck3 = 4974 ck3 = 4964 } # Salata -> Jedrzejow, Checiny + link = { imp = 4902 ck3 = 4928 } # Amellua* -> Przedborz + link = { imp = 4901 ck3 = 4974 ck3 = 4964 } # Salata* -> Jedrzejow, Checiny link = { imp = 6266 ck3 = 4955 ck3 = 4962 } # Gorion -> Ilza, Kielce - link = { imp = 6272 ck3 = 4950 } # Kavera Venedia -> Lowicz - link = { imp = 6269 ck3 = 4954 } # Gurala Venedia -> Opoczno + link = { imp = 6272 ck3 = 4950 } # Kavera -> Lowicz + link = { imp = 6269 ck3 = 4954 } # Gurala -> Opoczno link = { imp = 6270 ck3 = 4956 } # Mantora -> Szydlowiec - link = { imp = 4904 ck3 = 4926 } # Laudicum -> Klodawa + link = { imp = 4904 ck3 = 4926 } # Laudicum* -> Klodawa link = { imp = 4768 ck3 = 4902 } # Erbia -> Czarnkow link = { imp = 4758 ck3 = 3152 ck3 = 3151 } # Seurgium -> LANDSBERG, DRIESEN - link = { imp = 4753 ck3 = 3155 ck3 = 3156 } # Rhuticlia Helveconia -> GRYFINO, ARNSWALDE + link = { imp = 4753 ck3 = 3155 ck3 = 3156 } # Rhuticlia -> GRYFINO, ARNSWALDE link = { imp = 4756 ck3 = 2826 ck3 = 2828 } # Eughum -> CAMMIN, KOSZALIN link = { imp = 4751 ck3 = 2824 ck3 = 3184 } # Rhugium -> KOLOBRZEG, DRAMBERG link = { imp = 4761 ck3 = 4906 ck3 = 4905 } # Ascaucalis -> Sroda, Gniezno @@ -1282,7 +1281,7 @@ imperator_invictus = { link = { imp = 4766 ck3 = 3186 ck3 = 3187 } # Cariniana -> PILA, WALCZ link = { imp = 4760 ck3 = 3185 ck3 = 3188 } # Campia -> BELGARD, SZCZECINEK link = { imp = 4757 ck3 = 3195 ck3 = 3191 ck3 = 3189 } # Lemoviana -> BERENT, BYTOW, MIASTKO - link = { imp = 4755 ck3 = 3193 ck3 = 3194 } # Sciria Rugia -> TUCHOWNA, TRSOW + link = { imp = 4755 ck3 = 3193 ck3 = 3194 } # Sciria -> TUCHOWNA, TRSOW link = { imp = 4764 ck3 = 3196 ck3 = 3192 } # Helveconiana -> SCHWETZ, KONITZ link = { imp = 4765 ck3 = 4915 ck3 = 4916 ck3 = 3190 } # Carinia -> Naklo, Zlotow, HAMMERSTEIN link = { imp = 4763 ck3 = 4920 ck3 = 4921 ck3 = 4917 } # Helveconia -> Inowroclaw, Bydgoszcz, Znin @@ -1294,7 +1293,7 @@ imperator_invictus = { link = { imp = 6268 ck3 = 4953 } # Venideva -> Radom link = { imp = 6265 ck3 = 4961 } # Gorideva -> Opatow link = { imp = 6259 ck3 = 531 } # Urgana -> Sandomierz - link = { imp = 4895 ck3 = 4963 } # Mitabis -> Olesnica + link = { imp = 4895 ck3 = 4963 } # Mitabis* -> Olesnica link = { imp = 6280 ck3 = 4922 ck3 = 4923 } # Brigare -> Dobrzyn, Michalowo link = { imp = 6279 ck3 = 529 } # Vadina -> Plock link = { imp = 6278 ck3 = 4933 } # Mornal -> Wyszogrod @@ -1309,11 +1308,11 @@ imperator_invictus = { link = { imp = 6249 ck3 = 5074 } # Celavira -> Volin link = { imp = 6247 ck3 = 5077 } # Sottika -> Belz link = { imp = 6246 ck3 = 5063 } # Venulia -> Lviv - link = { imp = 4945 imp = 4946 ck3 = 534 } # Riparum, Solitarium -> Peremyshl - link = { imp = 4889 ck3 = 3860 } # Tantonum -> Barfta - link = { imp = 4891 ck3 = 532 } # Ectonum -> Sacz + link = { imp = 4945 imp = 4946 ck3 = 534 } # Riparum*, Solitarium* -> Peremyshl + link = { imp = 4889 ck3 = 3860 } # Tantonum* -> Barfta + link = { imp = 4891 ck3 = 532 } # Ectonum* -> Sacz link = { imp = 6254 ck3 = 4967 ck3 = 4966 } # Donaria -> Baranow, Mielec - link = { imp = 4887 ck3 = 527 ck3 = 4965 } # Cracovia -> Krakow, Tarnow + link = { imp = 4887 ck3 = 527 ck3 = 4965 } # Cracovia* -> Krakow, Tarnow link = { comment = "RUS BY IHT" } link = { imp = 6253 ck3 = 5050 } # Mavar -> Rozhyshche link = { imp = 6248 ck3 = 5047 } # Bonava -> Lutsk @@ -1333,7 +1332,7 @@ imperator_invictus = { link = { imp = 6070 imp = 6084 ck3 = 5100 } # Lechta, Schech -> Yampil link = { imp = 2543 imp = 6067 ck3 = 5069 } # Uccrynyika, Alkonet -> Chortkiv link = { imp = 6047 imp = 5383 ck3 = 5067 } # Olnish, Oggrunet -> Moklekov - link = { imp = 6238 ck3 = 5064 } # Arhao -> Zvenyhorod + link = { imp = 6238 ck3 = 5064 } # Arheo -> Zvenyhorod link = { imp = 6245 ck3 = 5065 } # Mitteria -> Busk link = { imp = 6250 imp = 6065 ck3 = 5066 } # Arha, Granika -> Buchach link = { imp = 6239 imp = 6242 ck3 = 5072 } # Sitha, Seno -> Ostroh @@ -1366,7 +1365,7 @@ imperator_invictus = { link = { imp = 8466 imp = 9129 ck3 = 933 } # Blagoveshchenskaya, Sirdis -> Roslavl link = { imp = 8462 ck3 = 5203 } # Zamhlay -> Starodub link = { imp = 8399 imp = 8408 ck3 = 5182 } # Gelon, Hlynsk -> Akhtyr - link = { imp = 8470 imp = 8475 ck3 = 5198 } # Sejm, Kursk -> Sudzha + link = { imp = 8470 imp = 8475 ck3 = 5198 } # (Unknown), Kursk -> Sudzha link = { imp = 8476 imp = 8478 ck3 = 5199 } # Psel, Oskil -> Oboyan link = { imp = 8409 imp = 8415 ck3 = 5188 } # Boromlya, Velykyi -> Sumy link = { imp = 8413 imp = 8416 ck3 = 5194 } # Basivka, Tereshkivka -> Vyr @@ -1398,7 +1397,7 @@ imperator_invictus = { link = { imp = 6125 imp = 6116 imp = 6120 ck3 = 5184 } # Machiekkyt, Syuthgrat, Volg -> Poltava link = { imp = 6115 imp = 6114 ck3 = 5181 } # Ahgranika, Selb -> Hradyzk link = { imp = 6112 ck3 = 5189 } # Schelera -> Voin - link = { imp = 7299 imp = 8422 ck3 = 5178 } # Pirhirci, Zhurivka -> Boryspil + link = { imp = 7299 imp = 8422 ck3 = 5178 } # Pidhirci, Zhurivka -> Boryspil link = { imp = 8419 ck3 = 555 } # Khotove -> Pereyaslavl link = { imp = 6109 ck3 = 5180 } # Soe -> Zolotonosha link = { imp = 8428 ck3 = 5179 } # Sula -> Priluk @@ -1416,28 +1415,28 @@ imperator_invictus = { link = { imp = 6090 ck3 = 547 } # Sitya -> Kiev link = { imp = 6081 ck3 = 5084 } # Kyrtik -> Yuriev link = { imp = 6085 imp = 6086 ck3 = 5257 } # Tumin, Volyatss -> Ladyzyn - link = { imp = 7194 imp = 6088 ck3 = 5258 } # Konae, Kmekhich -> Birzula - link = { imp = 7189 ck3 = 5267 } # Rakan -> Tiraspol - link = { imp = 4528 imp = 7186 imp = 7195 ck3 = 543 } # Scopuli, Scyra, Tanarke -> Okachiv - link = { imp = 4526 imp = 7185 imp = 4527 ck3 = 5268 } # Nikonia, Atavria, Istrianon -> Odessa + link = { imp = 7194 imp = 6088 ck3 = 5258 } # Konae*, Kmekhich -> Birzula + link = { imp = 7189 ck3 = 5267 } # Rakan* -> Tiraspol + link = { imp = 4528 imp = 7186 imp = 7195 ck3 = 543 } # Scopuli, Scyra*, Tanarke* -> Okachiv + link = { imp = 4526 imp = 7185 imp = 4527 ck3 = 5268 } # Nikonia, Atavria*, Istrianon -> Odessa link = { imp = 6087 imp = 6083 ck3 = 5260 } # Hkar, Vyrketin -> Yary link = { imp = 6074 imp = 6073 ck3 = 5090 } # Tiersi, Vonnet -> Malaia Skvirka link = { imp = 6091 imp = 6082 ck3 = 544 } # Aggrygh, Donts -> Korsun link = { imp = 6094 ck3 = 5261 } # Akhynt -> Buky - link = { imp = 4529 imp = 7187 ck3 = 542 } # Olbia, Ektonopolis -> Olbia_ETEL + link = { imp = 4529 imp = 7187 ck3 = 542 } # Olbia, Ektonopolis* -> Olbia_ETEL link = { imp = 6097 ck3 = 5259 } # Kilkhaneg -> Liubashivka link = { imp = 6099 ck3 = 5265 } # Onskoet -> Kashan link = { imp = 6105 imp = 6104 imp = 6098 ck3 = 5266 } # Gonoska, Maske, Ocraent -> Pervomaisk link = { imp = 6092 imp = 6093 ck3 = 5085 } # Gelts, Mangyl -> Kaniv link = { imp = 6106 imp = 6110 imp = 6101 ck3 = 5263 } # Jyr, Ehkere, Zetha -> Cherkassy link = { imp = 6117 imp = 6121 imp = 6107 ck3 = 5264 } # Aggrat, Oykets, Kreshcek -> Sacacatce - link = { imp = 6119 imp = 6108 imp = 6122 ck3 = 5270 } # Exampeaus, Mnata, Syalite -> Kazanka + link = { imp = 6119 imp = 6108 imp = 6122 ck3 = 5270 } # Skintara, Mnata, Syalite -> Kazanka link = { imp = 6100 imp = 6103 ck3 = 5271 } # Hkraniyat, Vashschka -> Voznessensk link = { imp = 6128 imp = 6129 ck3 = 5275 } # Zeh, Gyonal -> Salmacatce link = { imp = 6139 imp = 6130 ck3 = 5274 } # Kyakkam, Vurd -> Dnipro - link = { imp = 6145 imp = 6141 imp = 6142 ck3 = 5273 } # Gerrhos, Enke, Ghasett -> Nikopol - link = { imp = 7191 imp = 6123 imp = 6118 ck3 = 5272 } # Uttar, Shuchshek, Kin -> Beryslav - link = { imp = 7188 imp = 6102 ck3 = 5269 } # Yendi, Korulin -> Kherson + link = { imp = 6145 imp = 6141 imp = 6142 ck3 = 5273 } # Yottor, Enke, Ghasett -> Nikopol + link = { imp = 7191 imp = 6123 imp = 6118 ck3 = 5272 } # Uttar*, Shuchshek, Kin -> Beryslav + link = { imp = 7188 imp = 6102 ck3 = 5269 } # Yendi*, Korulin -> Kherson link = { imp = 9056 imp = 9057 ck3 = 5286 } # Krauja, Sausas -> Khursa link = { imp = 9046 imp = 9047 imp = 9051 imp = 9055 ck3 = 5285 } # Zweris, Kirmis, Karo, Ragas -> Khorysdan link = { imp = 8962 imp = 8961 imp = 8966 imp = 8969 imp = 8967 ck3 = 619 } # Sary Su, Akhtuba, Ilicha, Bulukhta, Zhitkur -> Saray @@ -1467,7 +1466,7 @@ imperator_invictus = { link = { imp = 8501 ck3 = 131 ck3 = 129 } # Pagramancio -> KEDAINIAI, VELIUONA link = { imp = 7808 ck3 = 123 ck3 = 124 } # Rubonia -> JURBARKAS, RASEINIAI link = { imp = 7810 ck3 = 126 } # Turuntia Australis -> MEDENIKEN - link = { imp = 4863 ck3 = 3197 ck3 = 3198 } # Voreynica -> GRAUDENZ, KULM + link = { imp = 4863 ck3 = 3197 ck3 = 3198 } # Vistulia -> GRAUDENZ, KULM link = { imp = 4862 ck3 = 2831 ck3 = 2834 ck3 = 2830 } # Vistuliana -> WISLANA, MALBORK, GDANSK link = { imp = 4864 ck3 = 3217 ck3 = 2835 } # Venedica -> BRAUNSBERG, ELBLAG link = { imp = 6285 ck3 = 3218 ck3 = 3219 ck3 = 3220 } # Nullica -> LAUKITTEN, OSTLANDSBERG, Wormditt @@ -1481,15 +1480,15 @@ imperator_invictus = { link = { imp = 6291 imp = 6294 ck3 = 5059 } # Vorytta, Felita -> Blotkowo link = { imp = 7825 imp = 7821 ck3 = 549 } # Sentia, Ossioia Orientalis -> Berestye link = { imp = 8484 ck3 = 5045 } # Lysobyki -> Slonim - link = { imp = 7822 ck3 = 5055 } # Sudionoia Australis -> Kamyanyets - link = { imp = 8488 imp = 7823 ck3 = 5044 } # Biebrzankski, Sudionoia Orientalis -> Volkovysk + link = { imp = 7822 ck3 = 5055 } # Sudinoia Australis -> Kamyanyets + link = { imp = 8488 imp = 7823 ck3 = 5044 } # Narodowy, Sudinoia Orientalis -> Volkovysk link = { imp = 8491 imp = 8489 ck3 = 5136 } # Monki, Kulesze -> Novogrudok link = { imp = 8492 imp = 8490 ck3 = 5118 } # Grodno, Bialystok -> Baranovichi link = { imp = 8440 ck3 = 5117 } # Gorodische -> Kletsk link = { imp = 8502 ck3 = 130 ck3 = 153 } # Timofeevo -> KAUNAS, TRAKAI link = { imp = 6288 ck3 = 4934 } # Gurina -> Zawkrze link = { imp = 6284 ck3 = 3214 } # Anavenedica -> EYLAU - link = { imp = 7298 ck3 = 4949 ck3 = 3211 ck3 = 4935 } # Venedia Australis -> Rozan, ORTELSBURG, Ciechanow + link = { imp = 7298 ck3 = 4949 ck3 = 3211 ck3 = 4935 } # Venedia -> Rozan, ORTELSBURG, Ciechanow link = { imp = 7836 ck3 = 4945 ck3 = 4944 } # Chrononia Australis -> Kolno, Wizna link = { imp = 7832 ck3 = 3205 ck3 = 3206 ck3 = 3203 } # Venedia Borealis -> BARTENSTEIN, INSTERBURG, PATERSWALDE link = { imp = 6287 ck3 = 3212 ck3 = 3215 } # Anavella -> ALLENSTEIN, NIEDENBURG @@ -1504,7 +1503,7 @@ imperator_invictus = { link = { imp = 7831 ck3 = 120 } # Galindia Orientalis -> RAGNIT link = { imp = 4865 ck3 = 3216 } # Venedicana -> KONIGSBERG link = { imp = 7830 ck3 = 119 ck3 = 122 } # Galindia Occidentalis -> TILSIT, LABIAU - link = { imp = 7809 ck3 = 118 ck3 = 125 } # Rubonia Occidentalis -> MEMEL, TAURAGE + link = { imp = 7809 ck3 = 118 ck3 = 125 } # Rubonia Orientalis -> MEMEL, TAURAGE link = { imp = 7813 ck3 = 115 } # Veltaea Australis -> PALANGA link = { imp = 7814 ck3 = 116 } # Veltaea -> DUVZARE link = { imp = 7812 ck3 = 113 } # Turuntia Borealis -> BANDAVA @@ -1544,59 +1543,59 @@ imperator_invictus = { link = { comment = "# MESOPOTIAMIA AND MEDIA BY IHT" } link = { imp = 894 ck3 = 4832 } # Maskin -> AIWANA link = { imp = 899 imp = 900 ck3 = 4828 } # Bagdata, Dur-Kurigalzu -> BAGHDAD - link = { imp = 1598 ck3 = 4784 } # Bagistana -> BISUTUN + link = { imp = 1598 ck3 = 4784 } # Bisutun -> BISUTUN link = { imp = 1523 imp = 1521 imp = 1522 ck3 = 4545 } # Phraaspa, Akra-rudh, Godjer -> MARAGHA - link = { imp = 3386 imp = 1515 imp = 1552 ck3 = 4546 } # Batina, Gazaka, Adjalu -> LEYLAN + link = { imp = 3386 imp = 1515 imp = 1552 ck3 = 4546 } # Bilqa, Ganzak, Adjalu -> LEYLAN link = { imp = 866 ck3 = 4776 } # Bavian -> BAMARDANI link = { imp = 5230 ck3 = 4768 } # IMPASSIBLE TERRAIN 230 -> DARBAND QARABULI - link = { imp = 985 ck3 = 4775 } # Ishkewt -> SHAQLABADH - link = { imp = 1574 ck3 = 4773 } # Pylai Kelishinias -> KHUFTIYAN + link = { imp = 985 ck3 = 4775 } # Qizqapan -> SHAQLABADH + link = { imp = 1574 ck3 = 4773 } # Kelishin Pass -> KHUFTIYAN link = { imp = 1578 imp = 865 ck3 = 4774 } # Orontes, Gaugamela -> TALL HAFTUN - link = { imp = 1511 imp = 1518 ck3 = 4770 } # Vovea, Araskh -> USHNUYA - link = { imp = 1512 ck3 = 4769 } # Sagapeni -> BASAWA - link = { imp = 1553 imp = 1514 imp = 1516 imp = 1517 ck3 = 4767 } # Dashband, Fakhrikah, Gomarga, Matiania -> BAILAQAN + link = { imp = 1511 imp = 1518 ck3 = 4770 } # Qalatgah, Kuh-i Chorblach -> USHNUYA + link = { imp = 1512 ck3 = 4769 } # Sheytanabad -> BASAWA + link = { imp = 1553 imp = 1514 imp = 1516 imp = 1517 ck3 = 4767 } # Dashband, Fakhrikah, Shah tepe, Zir tepe -> BAILAQAN link = { imp = 1557 ck3 = 4548 } # Chahar Taq -> AR-RAN link = { imp = 1558 ck3 = 4763 } # Karaftu -> ANDARAB - link = { imp = 1555 imp = 1556 imp = 3384 ck3 = 4549 } # Shiz, Giaur, Kul -> SHIZ + link = { imp = 1555 imp = 1556 imp = 3384 ck3 = 4549 } # Adur Gushnasp, Giaur, Kul -> SHIZ link = { imp = 3388 ck3 = 4547 } # Ekkana -> KHUNAJ link = { imp = 1520 imp = 1565 ck3 = 4538 } # Bonab Qal'eh, Shahi Island -> DIHNAKHIRJAN link = { imp = 3387 imp = 1524 ck3 = 4003 } # Mediana, Qara Sheshen -> Kursara link = { imp = 1554 ck3 = 4766 } # Ziwiye -> BARZA link = { imp = 1525 imp = 1624 ck3 = 4539 } # Gurqal'eh, Chaharla -> UJAN - link = { imp = 1526 imp = 1527 ck3 = 4537 } # Tauris, Parsk -> TABRIZ + link = { imp = 1526 imp = 1527 ck3 = 4537 } # T'awrēš, Yanik tepe -> TABRIZ link = { imp = 1528 imp = 1502 ck3 = 4536 } # Morounda, Tasuk -> MARAND - link = { imp = 1503 imp = 1504 imp = 1505 imp = 1507 ck3 = 4772 } # Salamas, Gazrik, Karenis, Surenapati -> SALMAS - link = { imp = 1513 ck3 = 1429 } # Barozha -> AZERBAIJAN MOUNTAINS - link = { imp = 1560 ck3 = 4817 ck3 = 4815 } # Andzevatsik -> JUZA, HAKKARI + link = { imp = 1503 imp = 1504 imp = 1505 imp = 1507 ck3 = 4772 } # Salamas, Gazrik, Arziyayad tepe, Sormanabad tepe -> SALMAS + link = { imp = 1513 ck3 = 1429 } # Rasuh tepe -> AZERBAIJAN MOUNTAINS + link = { imp = 1560 ck3 = 4817 ck3 = 4815 } # Andzevatsik (Kangovar) -> JUZA, HAKKARI link = { imp = 1510 ck3 = 1428 } # Shno -> AZERBAIJAN MOUNTAINS - link = { imp = 1506 imp = 1508 imp = 1519 imp = 1509 ck3 = 4771 } # Ormi, Balajuk, Mari, Siraganon -> URMIYA - link = { imp = 1603 ck3 = 4783 } # Zagrou Pylai -> TAZAR + link = { imp = 1506 imp = 1508 imp = 1519 imp = 1509 ck3 = 4771 } # Ormi, Balajuk tepe, Qalat, Siraganon -> URMIYA + link = { imp = 1603 ck3 = 4783 } # Zagrou Pilai -> TAZAR link = { imp = 982 ck3 = 4782 } # Yazdigird -> KEREND-KERMANSHAH - link = { imp = 958 ck3 = 4778 ck3 = 4779 } # Kurh u Kich -> KHUFTIDKAN, TIRANSHAH - link = { imp = 1601 ck3 = 4765 } # Nikaia Nialia -> SANDA + link = { imp = 958 ck3 = 4778 ck3 = 4779 } # Kurh u kich -> KHUFTIDKAN, TIRANSHAH + link = { imp = 1601 ck3 = 4765 } # Nicea Nialia/Barsa -> SANDA link = { imp = 6964 imp = 6958 imp = 4965 ck3 = 4764 } # Golan, Bijar, Makash -> SAD KHANIYA link = { imp = 1599 imp = 1594 imp = 3393 imp = 6963 ck3 = 4332 } # Denabaran, Kangavar, Vindirni, Sigria -> Dinawar - link = { imp = 1602 ck3 = 4781 } # Korine -> KERMANSHAH + link = { imp = 1602 ck3 = 4781 } # Kermanshah -> KERMANSHAH link = { imp = 1620 imp = 1621 ck3 = 4540 } # Aharawan, Arvandj -> AHAR - link = { imp = 981 ck3 = 4800 } # Kelonai -> HULWAN + link = { imp = 981 ck3 = 4800 } # Hulwan -> HULWAN link = { imp = 889 ck3 = 4792 } # Me-Turnat -> JALULA-HULWAN link = { imp = 880 imp = 881 imp = 984 ck3 = 4777 } # Arbela, Kilizu, Hazza -> IRBIL link = { imp = 882 ck3 = 4838 ck3 = 4808 ck3 = 4810 } # Kalhu -> JUHAINA, AL-HADITHA, BARTULLA - link = { imp = 7566 ck3 = 5998 ck3 = 5999 } # Arabia Deserta -> AL-QARA, AS-SUBIA - link = { imp = 5303 ck3 = 6023 } # Mesopotamian Desert -> AIN_SAID + link = { imp = 7566 ck3 = 5998 ck3 = 5999 } # UNINHABITABLE -> AL-QARA, AS-SUBIA + link = { imp = 5303 ck3 = 6023 } # IP 304 -> AIN_SAID link = { imp = 7649 ck3 = 5996 } # (Unknown) -> KHAFFAN - link = { imp = 7567 ck3 = 5995 ck3 = 5994 } # Arabia Deserta -> AL-UDHAIB, AL-QADISIYA + link = { imp = 7567 ck3 = 5995 ck3 = 5994 } # UNINHABITABLE -> AL-UDHAIB, AL-QADISIYA link = { imp = 968 ck3 = 6001 } # Eridu -> AS-SALMAN link = { imp = 7723 ck3 = 6002 } # Durum -> AL-AKHADID link = { imp = 965 imp = 963 ck3 = 6019 } # Apphana, Failaka -> BALJAN link = { imp = 942 ck3 = 6020 ck3 = 6022 ck3 = 6021 } # Apologos -> AL-UBULLA, AL-BASRA, MATARA-IRAQ - link = { imp = 957 ck3 = 4809 } # Turshan -> AS-SINN + link = { imp = 957 ck3 = 4809 } # Tell Mahuz -> AS-SINN link = { imp = 883 ck3 = 4836 } # Ashur -> AIN AL-QAYYARA link = { imp = 892 ck3 = 4804 ck3 = 4806 } # Dura -> BALAD, JABALTA link = { imp = 895 imp = 977 ck3 = 4795 } # Awana, Shahraban -> UKBARA link = { imp = 896 ck3 = 4794 } # Artemita -> BA'QUBA link = { imp = 897 ck3 = 4793 } # Daskara -> DASKARA - link = { imp = 979 ck3 = 4790 ck3 = 4791 } # Mandali -> TARSUKH, BANDANIJAN + link = { imp = 979 ck3 = 4790 ck3 = 4791 } # Mandali* -> TARSUKH, BANDANIJAN link = { imp = 925 imp = 926 ck3 = 4797 } # Shemali, Sumaka -> ISKAF link = { imp = 898 imp = 924 imp = 914 imp = 912 ck3 = 4796 } # Nahrawan, Aberta, Opis, Ctesiphon -> AN-NAHRAWAN link = { imp = 954 imp = 953 ck3 = 4886 } # Haditha, Bijan -> AL-HADITHA-FURAT @@ -1608,26 +1607,26 @@ imperator_invictus = { link = { imp = 829 ck3 = 4888 } # Doura -> AL-DALIYA link = { imp = 906 imp = 905 ck3 = 4885 } # Anatho, Bechchouphrein -> HADITHAT-ANA link = { imp = 886 imp = 884 imp = 887 ck3 = 4803 } # Nuzi, Arrapha, Arzuhin -> KIRKUK - link = { imp = 956 ck3 = 4835 } # Ajri -> TAKRIT - link = { imp = 891 ck3 = 4834 } # Birtha -> HISN AL-MASHUQ - link = { imp = 955 ck3 = 4807 } # Kar Tukulti Ninurta -> BARIMMA + link = { imp = 956 ck3 = 4835 } # Tell Ajri -> TAKRIT + link = { imp = 891 ck3 = 4834 } # Takrit -> HISN AL-MASHUQ + link = { imp = 955 ck3 = 4807 } # Sinn -> BARIMMA link = { imp = 885 ck3 = 4802 } # Lashom -> DAQUQA - link = { imp = 888 imp = 890 ck3 = 4799 } # Lahir, Gubba -> KHANIJAR + link = { imp = 888 imp = 890 ck3 = 4799 } # Lahir, Tell Gubba -> KHANIJAR link = { imp = 983 ck3 = 4801 } # Paikuli -> RAUSHANQUBAD link = { imp = 959 ck3 = 4780 } # Syarazur -> SHAHRAZUR link = { imp = 874 ck3 = 4851 ck3 = 4852 } # Thannuris -> TUNAMIR, MIJDAL link = { imp = 893 ck3 = 4805 } # Samarra -> SAMARRA link = { imp = 902 ck3 = 4829 ck3 = 4833 } # Misiche -> AL-ANBAR, HIT link = { imp = 923 imp = 919 imp = 920 imp = 921 ck3 = 4826 } # Qadissiyya, Borsippa, Dilbat, Marad -> AL-HILA - link = { imp = 932 imp = 931 imp = 936 ck3 = 6003 } # Dabrum, Isin, Fara -> NIFFAR + link = { imp = 932 imp = 931 imp = 936 ck3 = 6003 } # Dabrum, Isin, Medain -> NIFFAR link = { imp = 937 imp = 939 ck3 = 6004 } # Uruk, Larsa -> AS-SALIQ link = { imp = 917 imp = 916 imp = 915 ck3 = 4825 } # Kish, Girumu, Cutha -> AL-FARASA - link = { imp = 960 imp = 961 imp = 927 ck3 = 4824 } # Zibliyat, Adab, Skaphe -> HUMANIYA - link = { imp = 962 imp = 930 imp = 929 ck3 = 4823 } # Khay, Kuara, Nippur -> AN-NU'MANIYA + link = { imp = 960 imp = 961 imp = 927 ck3 = 4824 } # Tell Arsan, Tell Bismaya, Skaphe -> HUMANIYA + link = { imp = 962 imp = 930 imp = 929 ck3 = 4823 } # Tell Khay, Tell Laham, Nippur -> AN-NU'MANIYA link = { imp = 904 ck3 = 4831 } # Idu -> AR-RABB link = { imp = 935 ck3 = 6005 ck3 = 4821 } # Girsu -> AR-RUSAFA-IRAQ, WASIT link = { imp = 908 imp = 907 ck3 = 4887 } # Hindanu, Haradu -> ANA - link = { imp = 934 imp = 973 imp = 933 ck3 = 4822 } # Kashkar, Bakusaya, Apamea ad Tigridem -> KASKAR + link = { imp = 934 imp = 973 imp = 933 ck3 = 4822 } # Kashkar, Bakusaya, Apamea -> KASKAR link = { imp = 1627 imp = 1628 ck3 = 4543 } # Ardabil, Piri -> ARDABIL link = { imp = 938 ck3 = 6008 ck3 = 6007 ck3 = 6006 } # Nina -> NAHR_SIMMARA, AL-QATR, AL-FARUT link = { imp = 823 ck3 = 4850 ck3 = 4879 } # Shadikanni -> AL-JIBAL, ARABAN @@ -1635,19 +1634,19 @@ imperator_invictus = { link = { imp = 824 ck3 = 4883 } # Qatnu -> MAKISIN link = { imp = 922 ck3 = 5992 ck3 = 5993 ck3 = 5991 } # Aqola -> AL-KUFA, AN-NAJAF, SAFATA link = { imp = 1626 imp = 1625 ck3 = 4544 } # Mishkinshahr, Kuh-i Bolagh -> SARAT - link = { imp = 913 imp = 911 imp = 901 ck3 = 4827 } # Vologesias, Seleucia Magna, Aswad -> SARSAR + link = { imp = 913 imp = 911 imp = 901 ck3 = 4827 } # Vologesias, Seleucia Magna, Tell Aswad -> SARSAR link = { imp = 918 imp = 909 imp = 910 ck3 = 4830 } # Babylon, Naarda, Sippar -> KARBALA - link = { imp = 903 ck3 = 5990 } # Kerbala -> AIN AT-TAMR + link = { imp = 903 ck3 = 5990 } # Tulul al-Ukhaidhir -> AIN AT-TAMR link = { comment = "# SOUTH CAUCASUS BY IHT" } link = { imp = 1705 imp = 1746 imp = 1748 ck3 = 5753 } # Skandis, Itkhvissi, Modinakhe -> Kvara link = { imp = 1749 ck3 = 5752 ck3 = 5751 } # Brili -> Kasriskari, Ambrolauri link = { imp = 1750 ck3 = 5748 } # Klukhor Pass -> Seti - link = { imp = 1741 imp = 1740 ck3 = 5746 } # Dioscurias, Tzibile -> Tskhumi - link = { imp = 1742 ck3 = 5745 } # Anakopia -> Anacopia + link = { imp = 1741 imp = 1740 ck3 = 5746 } # Dioscurias / Sebastopolis, Tzibile -> Tskhumi + link = { imp = 1742 ck3 = 5745 } # Tracheia -> Anacopia link = { imp = 1704 imp = 1703 ck3 = 5757 } # Sarapanis, Bori -> Shorapann - link = { imp = 1725 imp = 1724 imp = 1701 ck3 = 677 } # Bathys Limen, Apasidam, Goderdzi Pass -> Batumi - link = { imp = 1563 imp = 1736 ck3 = 5714 } # Acachia, Vagharshakert -> Khinisi - link = { imp = 1687 imp = 1681 imp = 1680 imp = 1673 ck3 = 5763 } # Jhinvali, Aragvispiri, Zalissa, Iberian Gates -> Nektesi + link = { imp = 1725 imp = 1724 imp = 1701 ck3 = 677 } # Portus Altus, Apasidam, Goderdzi pass -> Batumi + link = { imp = 1563 imp = 1736 ck3 = 5714 } # Acachia, Chadas -> Khinisi + link = { imp = 1687 imp = 1681 imp = 1680 imp = 1673 ck3 = 5763 } # Jhinvali, Aragvispiri, Zalissa, Iberian Gates / Porta Caucasica -> Nektesi link = { imp = 1692 imp = 1691 imp = 1694 ck3 = 5742 } # Tskhinvali, Dedoplis, Surium -> Tskhinvali link = { imp = 1676 imp = 1678 ck3 = 5764 } # Meschistha-Harmozike, Seusamora -> Mtskheta link = { imp = 1690 imp = 1685 imp = 1679 ck3 = 679 } # Zghuderi, Uplistsikhe, Kavtiskhevi -> Gori @@ -1662,10 +1661,10 @@ imperator_invictus = { link = { imp = 1631 ck3 = 5793 ck3 = 4535 } # Spandaran -> Barzand, APARSHAHR link = { imp = 1618 ck3 = 5792 } # Mish -> Nakorzan link = { imp = 1619 imp = 1622 ck3 = 4541 } # Dish, Seqindel -> DIZMAR - link = { imp = 1623 imp = 1538 imp = 1540 ck3 = 5787 } # Arevik, Goltan, Parakan -> Jugha - link = { imp = 999 imp = 997 imp = 1561 imp = 996 ck3 = 5724 } # Hayk, Kotorox, Mardastan, Alouaka -> Hadamakert - link = { imp = 1500 imp = 1529 imp = 1530 imp = 1532 imp = 1531 imp = 1539 ck3 = 5794 } # Chauon, Darman, Bakurakerta, Zarawand, Malejin, Jula -> Gher - link = { imp = 1536 imp = 1535 imp = 1559 imp = 1534 imp = 1547 ck3 = 5722 } # Maku, Qiz Chakhlu, Aladagh Qal'eh, Rusakhinili, Keshmesh -> Maku + link = { imp = 1623 imp = 1538 imp = 1540 ck3 = 5787 } # Arevik, Sanora, Parakan -> Jugha + link = { imp = 999 imp = 997 imp = 1561 imp = 996 ck3 = 5724 } # Hayk, Kotorodz, Mardastan, Alouaka -> Hadamakert + link = { imp = 1500 imp = 1529 imp = 1530 imp = 1532 imp = 1531 imp = 1539 ck3 = 5794 } # Chauon, Darman, Halaqu Qal'eh, Zarawand, Malejin, Gavur Qal'eh -> Gher + link = { imp = 1536 imp = 1535 imp = 1559 imp = 1534 imp = 1547 ck3 = 5722 } # Khezerlu Qal'eh, Qiz Chakhlu, Aladagh Qal'eh, Bastam, Keshmesh -> Maku link = { imp = 1658 ck3 = 5765 } # Shilda -> Gavazi link = { imp = 1587 imp = 1586 imp = 1585 ck3 = 5725 } # Vardbach, Hokhmik, Shirakavan -> Dlim link = { imp = 1656 imp = 1659 ck3 = 5768 } # Zakatala, Lagodekhi -> Zaqatala @@ -1678,27 +1677,27 @@ imperator_invictus = { link = { imp = 1590 imp = 1606 ck3 = 5727 } # Dzhrarat, Berdatekh -> Kumayri link = { imp = 1592 ck3 = 5782 } # Akunk -> Gardman link = { imp = 1646 ck3 = 5781 } # Gardman -> Shamkur - link = { imp = 1577 imp = 1576 imp = 1570 imp = 1579 imp = 1580 ck3 = 5726 } # Motene, Kainepolis Syracene, Armaouira, Ashnak, Katnakhpyur -> Bagaran + link = { imp = 1577 imp = 1576 imp = 1570 imp = 1579 imp = 1580 ck3 = 5726 } # Motene, Kainepolis, Armaouira, Ashnak, Katnakhpyur -> Bagaran link = { imp = 1575 imp = 1589 ck3 = 5728 } # Erebuni, Atarbegian -> Yerevan link = { imp = 1647 ck3 = 5773 } # Salyan -> Salyan - link = { imp = 990 ck3 = 5719 } # Arsissa -> Arjesh - link = { imp = 1567 imp = 1568 imp = 1549 imp = 1548 imp = 1551 ck3 = 5720 } # Bagauna, Hariza, Teroua, Tambat, Ardeank' -> Bagavan - link = { imp = 1569 imp = 1572 imp = 1571 ck3 = 5730 } # Paracata, Tibion, Artaxata -> Tsalakert + link = { imp = 990 ck3 = 5719 } # Elegoana -> Arjesh + link = { imp = 1567 imp = 1568 imp = 1549 imp = 1548 imp = 1551 ck3 = 5720 } # Bagauna, Hariza, Teroua, Sangar Qal'eh, Hajestan Qal'eh -> Bagavan + link = { imp = 1569 imp = 1572 imp = 1571 ck3 = 5730 } # Paracata, Doubios, Artaxata -> Tsalakert link = { imp = 1747 ck3 = 5713 } # Gymnias -> Mardali link = { imp = 1652 ck3 = 5788 } # Talish -> Gabarawan link = { imp = 1648 ck3 = 5790 } # Ghizil-Agaj -> Paytakaran - link = { imp = 1564 ck3 = 5731 } # Kolchion -> Valashkert - link = { imp = 1550 imp = 1668 ck3 = 672 } # Maravan, Vayots Dzor -> Dvin - link = { imp = 1533 imp = 1541 imp = 1543 imp = 1546 imp = 1537 imp = 1544 imp = 1545 ck3 = 5755 } # Shamiram, Sangibut, Avarayr, Shawarshan, Nuarsak, Catispi, Barun Qal'eh -> Marakan + link = { imp = 1564 ck3 = 5731 } # Colchion -> Valashkert + link = { imp = 1550 imp = 1668 ck3 = 672 } # Verahram Qal'eh, Vayots Dzor -> Dvin + link = { imp = 1533 imp = 1541 imp = 1543 imp = 1546 imp = 1537 imp = 1544 imp = 1545 ck3 = 5755 } # Qara Zia Eddin tepe, Oghlu Qal'eh, Siah Qal'eh, Shawarshan, Nuarsak, Catispi, Barun Qal'eh -> Marakan link = { imp = 1566 ck3 = 5732 } # Didima -> Patnos link = { imp = 1629 ck3 = 4542 } # Shorbulaq -> UNAR link = { imp = 5220 ck3 = 4534 } # IMPASSIBLE TERRAIN 220 -> TALISH link = { imp = 1630 imp = 1649 ck3 = 5791 } # Langarkanan, Masalas -> Langarkanan link = { imp = 1638 imp = 1654 imp = 1632 ck3 = 5789 } # Warthan, Mochi, Balanrot -> Varsan link = { imp = 1573 imp = 1588 imp = 1591 ck3 = 5729 } # Gorneae, Kamo, Karchakhpyur -> Garni - link = { imp = 5212 ck3 = 5795 } # Ararat Volcano -> Mount Ararat + link = { imp = 5212 ck3 = 5795 } # IMPASSIBLE TERRAIN 212 -> Mount Ararat link = { imp = 1610 imp = 1609 ck3 = 5761 } # Sary-tepe, Kariglukh -> Bolnisi - link = { imp = 5207 imp = 5208 ck3 = 1013 } # IMPASSIBLE TERRAIN 207, Aragats Volcano -> Lori + link = { imp = 5207 imp = 5208 ck3 = 1013 } # IMPASSIBLE TERRAIN 207, IMPASSIBLE TERRAIN 208 -> Lori link = { imp = 1607 ck3 = 5762 } # Idzhevan -> Kayan link = { imp = 1605 imp = 1608 ck3 = 5780 } # Gezlu, Berd -> Tovuz link = { imp = 1640 imp = 1639 imp = 1663 imp = 1666 ck3 = 670 } # Tigranakert, Amaras, Vaykunik, Koght -> Gandzasar @@ -1718,11 +1717,11 @@ imperator_invictus = { link = { imp = 1697 ck3 = 5739 } # Akhaltsikhe -> Akhaltsikhe link = { imp = 1617 imp = 1650 ck3 = 5784 } # Nakorzan, Sisakan Inferior -> Ktis link = { imp = 1616 imp = 1615 imp = 1614 ck3 = 671 } # Kapan, Balaberd, Sigan -> Kapan - link = { imp = 1751 imp = 5198 imp = 1581 ck3 = 5735 } # Barantea, IMPASSIBLE TERRAIN 198, Eruandashat -> Sevuki + link = { imp = 1751 imp = 5198 imp = 1581 ck3 = 5735 } # Barantea, IMPASSIBLE TERRAIN 198, Eruandakert -> Sevuki link = { imp = 1667 imp = 1665 imp = 1664 ck3 = 5786 } # Aghahechk, Parsakank, Arank -> Goris link = { imp = 1501 imp = 1669 imp = 1542 imp = 1613 ck3 = 5785 } # Naxouana, Chahuk, Arxata, Shalat -> Naxcivan link = { comment = "# ARABIA BY IHT" } - link = { imp = 4631 imp = 4630 imp = 4632 ck3 = 6222 } # Thebai Arabikai, Baruka, Zaibram -> JIDDA + link = { imp = 4631 imp = 4630 imp = 4632 ck3 = 6222 } # Qudana, Baruka, Zaibram -> JIDDA link = { imp = 8877 imp = 8876 ck3 = 6258 } # Labkhah, Tibrak -> JIBAL-AL-URD link = { imp = 8878 ck3 = 6259 } # Nakhlah -> JIBALA link = { imp = 6048 ck3 = 6228 ck3 = 6233 } # Hejaz -> MARRAN, TURABA @@ -1739,34 +1738,34 @@ imperator_invictus = { link = { imp = 5401 imp = 5400 ck3 = 6162 } # Hamatiyat, Mahzul -> AR-RUQAII link = { imp = 5399 ck3 = 6024 } # Hawmah -> AR-RUKHAIL link = { imp = 964 ck3 = 6025 } # Teredon -> HIFAIR - link = { imp = 7565 ck3 = 6000 } # Arabia Deserta -> WAQISA + link = { imp = 7565 ck3 = 6000 } # UNINHABITABLE -> WAQISA link = { imp = 736 ck3 = 5957 } # Mothana -> AS-SUWAIDA-HAURAN - link = { imp = 7554 ck3 = 5956 } # Arabia Deserta -> SARKHAD - link = { imp = 7555 ck3 = 6180 } # Arabia Deserta -> SIRHAN - link = { imp = 7557 imp = 7556 ck3 = 5989 } # Arabia Deserta, Arabia Deserta -> QURAQIR - link = { imp = 4721 imp = 7558 imp = 7560 ck3 = 6178 } # Durnatha, Arabia Deserta, Afarun -> AL-JAWF + link = { imp = 7554 ck3 = 5956 } # UNINHABITABLE -> SARKHAD + link = { imp = 7555 ck3 = 6180 } # UNINHABITABLE -> SIRHAN + link = { imp = 7557 imp = 7556 ck3 = 5989 } # UNINHABITABLE, UNINHABITABLE -> QURAQIR + link = { imp = 4721 imp = 7558 imp = 7560 ck3 = 6178 } # Durnatha, UNINHABITABLE, Afarun* -> AL-JAWF link = { imp = 7561 ck3 = 6176 ck3 = 6177 } # Sakaka -> SAKAKA, AL-QARA - link = { imp = 7562 imp = 7564 imp = 7563 ck3 = 6169 } # Arabia Deserta, Arabia Deserta, Arabia Deserta -> ZUBALA + link = { imp = 7562 imp = 7564 imp = 7563 ck3 = 6169 } # UNINHABITABLE, UNINHABITABLE, UNINHABITABLE -> ZUBALA link = { imp = 5940 ck3 = 6170 ck3 = 6175 ck3 = 6168 ck3 = 6164 ck3 = 6165 ck3 = 6174 } # Arabian Impassable -> LINA, BITAN, ATH-THALABIYA, HAFAR, AL-MAWIYA, AS-SUMAINA link = { imp = 944 imp = 7196 ck3 = 6161 } # Akkaz, Adros -> KAZIMA link = { imp = 8845 imp = 8844 ck3 = 6203 } # Dharghat, Qamra -> FADAK - link = { imp = 4623 imp = 4624 ck3 = 6212 } # Iathrippa, Aloure -> AL-MADINA + link = { imp = 4623 imp = 4624 ck3 = 6212 } # Aloure, Iathrippa -> AL-MADINA link = { imp = 5939 ck3 = 6230 ck3 = 6231 ck3 = 6229 ck3 = 6267 ck3 = 6266 ck3 = 6257 ck3 = 6265 ck3 = 6215 ck3 = 6214 ck3 = 6232 } # Arabian Impassable -> SUBAY, RANYA, AD-DATHINA, FALJA, JADILA, NUFUD-AS-SURRAH, DARIYA, MADIN-AN-NAQIRA, RABADHA, WADI_GHAMID link = { imp = 8889 ck3 = 6205 ck3 = 6206 ck3 = 6263 } # Arabian Desert -> TUZ, HAJIR, RAMA link = { imp = 8890 ck3 = 6216 ck3 = 6217 } # Mahd al Thahab -> AS-SALILA, MADINAT_SULAYM link = { imp = 8892 imp = 8891 ck3 = 6218 } # Badhan, Hegrieah -> AS-SAWARIQIYA - link = { imp = 4617 imp = 4619 imp = 4622 ck3 = 6199 } # Mochoura, Apudia Vallis, Iuthra -> AS-SUQYA + link = { imp = 4617 imp = 4619 imp = 4622 ck3 = 6199 } # Mochoura, ApudiaVallis, Iuthra -> AS-SUQYA link = { imp = 6046 ck3 = 6213 } # Arabian Desert -> BATN_NAKHL link = { imp = 4616 imp = 4716 ck3 = 6200 } # Ausara, Tiamat -> AL-ULA - link = { imp = 4719 imp = 4720 ck3 = 6207 } # Coloera, Eroe -> KHAYBAR + link = { imp = 4719 imp = 4720 ck3 = 6207 } # Eroe, Yathrib -> KHAYBAR link = { imp = 4618 ck3 = 6208 } # Thumna -> DHUL-MARWA link = { imp = 4653 ck3 = 6211 } # Vaduma -> AS-SAYAA - link = { imp = 7574 ck3 = 6219 } # Kariya -> AS-SAFRA + link = { imp = 7574 ck3 = 6219 } # Kariya* -> AS-SAFRA link = { imp = 4627 imp = 4628 ck3 = 6210 } # Rayyis, Harbia -> AL-JAR - link = { imp = 4625 imp = 4626 ck3 = 6209 } # Charamithas, Arga -> YANBU + link = { imp = 4625 imp = 4626 ck3 = 6209 } # Charmuthas, Yanbu -> YANBU link = { imp = 4621 imp = 4620 ck3 = 6198 } # Harenae, Alaura -> AL-HAWRA link = { imp = 4608 imp = 4610 ck3 = 6197 } # Phoinikon Kome, Raunathou Kome -> AL-WAJH - link = { imp = 4606 ck3 = 6195 } # Hippou Kome -> AL-AWNID + link = { imp = 4606 ck3 = 6195 } # Hippos Kome -> AL-AWNID link = { imp = 4604 imp = 4605 ck3 = 6194 } # Laba, Soaka -> AN-NABAK link = { imp = 4603 ck3 = 6193 } # Modiana -> ZIBA link = { imp = 728 ck3 = 5976 } # Auara -> MAAN @@ -1774,11 +1773,11 @@ imperator_invictus = { link = { imp = 724 ck3 = 5974 } # Ankale -> AQABA link = { imp = 4600 ck3 = 6185 } # Ostama -> SHARAF AL-BAL link = { imp = 4602 imp = 4613 ck3 = 6184 } # Leuke Kome, Aybara -> AINUN - link = { imp = 4601 imp = 4611 ck3 = 6188 } # Baclanaza, Madiama Felix -> TABUK + link = { imp = 4601 imp = 4611 ck3 = 6188 } # Baclanaza, Madiama -> TABUK link = { imp = 4612 ck3 = 6186 } # Relicta -> SARJ link = { imp = 4715 imp = 6496 ck3 = 6191 } # Demne, South Nabatean Desert -> AL-MUHDATHA link = { imp = 4713 ck3 = 6190 } # Achroua -> AL-AQRA - link = { imp = 4717 imp = 4718 imp = 7559 ck3 = 6192 } # Gaiapolis, Thapaua, Godala -> TAYMA + link = { imp = 4717 imp = 4718 imp = 7559 ck3 = 6192 } # Gaiapolis, Thapaua, Godala* -> TAYMA link = { imp = 5935 ck3 = 6189 } # Arabian Impassable -> FAJR link = { imp = 4607 imp = 4609 ck3 = 6196 } # Badais, Egra -> BADA link = { imp = 734 ck3 = 5955 } # Bostra -> BUSRA @@ -1791,23 +1790,23 @@ imperator_invictus = { link = { imp = 725 ck3 = 6183 } # Makna -> MAQNA link = { imp = 7575 ck3 = 6223 ck3 = 6226 ck3 = 6221 ck3 = 6227 } # Makarabah -> MAKKA, USFAN, KHULAYS, SUFAINA link = { imp = 4648 imp = 4684 ck3 = 6284 } # Saraka, Himiara -> TAIZZ - link = { imp = 4645 imp = 4649 ck3 = 6281 } # Mouza Emporion, Meda -> MAWZA + link = { imp = 4645 imp = 4649 ck3 = 6281 } # Emporion, Meda -> MAWZA link = { imp = 4662 imp = 4661 imp = 4663 ck3 = 6297 } # Tamna, Marimatha, Caripeta -> BAYHAN link = { imp = 4676 imp = 4677 imp = 4659 ck3 = 6296 } # Shabwa, Harai, Sarouon -> SHABWA link = { imp = 4668 ck3 = 6299 } # Caminacum -> MAIN - link = { imp = 5300 ck3 = 6301 } # Arabia Felix -> HISN_AL-ABR + link = { imp = 5300 ck3 = 6301 } # IP 301 -> HISN_AL-ABR link = { imp = 4673 imp = 4674 ck3 = 6300 } # Cardava, Karna -> WABAR - link = { imp = 4671 ck3 = 6243 } # Anagrana -> NAJRAN + link = { imp = 4671 ck3 = 6243 } # Negram -> NAJRAN link = { imp = 4670 ck3 = 6242 } # Phoda -> SADA link = { imp = 4701 imp = 4702 ck3 = 6272 } # Haud, Affa -> ASH-SHARAF - link = { imp = 4700 imp = 4672 ck3 = 6273 } # Yathill, Labaeta -> HUTH + link = { imp = 4700 imp = 4672 ck3 = 6273 } # Naira, Labaeta -> HUTH link = { imp = 4654 imp = 4656 ck3 = 6291 } # Mesala, Dela -> SAQRA link = { imp = 4660 imp = 4712 ck3 = 6295 } # Maccua, Hadrama -> NISAB link = { imp = 4657 imp = 4655 ck3 = 6292 } # Firai, Abisama -> AHWAN link = { imp = 4658 ck3 = 6294 } # Maipha -> AZZAN - link = { imp = 4707 imp = 8853 imp = 8852 ck3 = 6315 } # Samharam, Thumrait, Iram -> DHUFAR + link = { imp = 4707 imp = 8853 imp = 8852 ck3 = 6315 } # Abyssa, Thumrait, Ubar -> DHUFAR link = { imp = 4708 imp = 8863 imp = 8862 ck3 = 6314 } # Saliah, Thinqayr, Dakharaib -> RAYSUT - link = { imp = 4705 imp = 4706 imp = 8859 imp = 8860 imp = 8861 ck3 = 6313 } # Ausara Hadhramut, Neogilla, Muqarqar, Ariqim, Qasawa -> AL-ASA + link = { imp = 4705 imp = 4706 imp = 8859 imp = 8860 imp = 8861 ck3 = 6313 } # Ausara, Neogilla, Muqarqar, Ariqim, Qasawa -> AL-ASA link = { imp = 8855 imp = 8856 imp = 8858 ck3 = 6304 } # Tena, Marakhai, Alsowm -> BARHUT link = { imp = 8893 ck3 = 6303 } # Arabian Desert -> THAMUD link = { imp = 8854 imp = 4710 ck3 = 6305 } # Seiyun, Rabun -> INAT @@ -1819,22 +1818,22 @@ imperator_invictus = { link = { imp = 4711 ck3 = 6310 } # Mhrta -> KHURAYBA link = { imp = 4685 ck3 = 6293 } # Qana -> BALHAF link = { imp = 4680 imp = 4681 imp = 4697 ck3 = 6286 } # Zafar, Raida, Damar -> ZAFAR - link = { imp = 4651 imp = 4652 imp = 4647 ck3 = 6283 } # Caiwa, Confluentia Qataba, Save -> AL-MAAFIR + link = { imp = 4651 imp = 4652 imp = 4647 ck3 = 6283 } # Caiwa, Confluenta, Save -> AL-MAAFIR link = { imp = 4646 ck3 = 6282 } # Okelis -> AL-MANDAB link = { imp = 4666 imp = 4665 ck3 = 6298 } # Mariaba, Nagia -> BARAQISH link = { imp = 4683 imp = 4667 imp = 4690 ck3 = 6274 } # Sirwa, Athroula, Nashaq -> AR-RAYDA link = { imp = 4688 ck3 = 6275 } # Amran -> SHIBAM-SANAA link = { imp = 4686 imp = 4689 ck3 = 6278 } # Sabiyah, Haraz -> FASHAL - link = { imp = 4644 imp = 4643 imp = 4691 ck3 = 6280 } # Aliou Kome, Laupas, Harazia Vallis -> ZABID + link = { imp = 4644 imp = 4643 imp = 4691 ck3 = 6280 } # Allou Kome, Laupus, Harazia Vallis -> ZABID link = { imp = 4642 ck3 = 6279 } # Adedou Kome -> GHALAFIQA link = { imp = 4637 ck3 = 6271 } # Devada -> KAMARAN link = { imp = 4641 ck3 = 6270 } # Badeo -> AL-MAHJAM link = { imp = 4699 imp = 4640 ck3 = 6241 } # Aksumia, Akme -> HARAD link = { imp = 4639 imp = 4638 imp = 4669 ck3 = 6240 } # Baitus, Marma, Marna Vallis -> ATTAR - link = { imp = 4636 imp = 3479 imp = 3480 ck3 = 6239 } # Cama, Abha, Migayah -> ASH-SHUQAYQ - link = { imp = 4634 imp = 4635 imp = 7578 imp = 7601 ck3 = 6238 } # Ambe, Raqeta, Nemerah, Barek -> HALI - link = { imp = 4633 imp = 7577 ck3 = 6224 } # Litha, Attaba -> AS-SIRAYN - link = { imp = 4695 ck3 = 6288 } # Homeira -> LAWDAR + link = { imp = 4636 imp = 3479 imp = 3480 ck3 = 6239 } # Cama, Abha*****, Migayah* -> ASH-SHUQAYQ + link = { imp = 4634 imp = 4635 imp = 7578 imp = 7601 ck3 = 6238 } # Confunda, Raqeta, Nemerah, Barek*** -> HALI + link = { imp = 4633 imp = 7577 ck3 = 6224 } # Litha, Attaba* -> AS-SIRAYN + link = { imp = 4695 ck3 = 6288 } # Homeria -> LAWDAR link = { imp = 4698 imp = 4693 ck3 = 6287 } # Felicita, Sabatia -> RADA link = { imp = 4687 imp = 4692 ck3 = 6289 } # Qatabia, Makeda -> MUSAYMIR link = { imp = 4694 ck3 = 6285 } # Ocelia -> AL-JANAD @@ -1859,21 +1858,21 @@ imperator_invictus = { link = { imp = 8823 ck3 = 6254 } # Huraymila -> AL-ARID link = { imp = 8875 ck3 = 6251 } # Muzahmiya -> AL-KHADARIM link = { imp = 8824 imp = 8825 ck3 = 6252 } # Hajir, Rufaya -> AL-KHARJ - link = { imp = 7206 imp = 5412 imp = 7205 imp = 5411 ck3 = 6148 } # Attiaca, Suwaytiyah, Labrys Omana, Ghirban -> AZ-DHAFRA + link = { imp = 7206 imp = 5412 imp = 7205 imp = 5411 ck3 = 6148 } # Attiaca, Suwaytiyah, Labrys, Ghirban -> AZ-DHAFRA link = { imp = 4709 imp = 8864 ck3 = 6316 } # Sidh, Andhur -> MIRBA link = { imp = 8867 ck3 = 6131 } # Dur -> JULFAR link = { imp = 5413 ck3 = 6149 } # Liwa -> AL-JIWA link = { imp = 7207 imp = 7211 imp = 5415 imp = 5414 ck3 = 6130 } # Kanepsa, Kalas, Saruq, Murkhan -> TAWWAM-WEST - link = { imp = 7210 ck3 = 6132 } # Heliou Limen -> MUSANDAM + link = { imp = 7210 ck3 = 6132 } # Helios Limen -> MUSANDAM link = { imp = 7208 imp = 5429 ck3 = 6133 } # Regna, Iepana -> DABBA link = { imp = 7209 ck3 = 6134 } # Omana -> SUHAR link = { imp = 8871 ck3 = 6135 } # Suwayq -> BATINA-EAST - link = { imp = 7213 ck3 = 6143 } # Dirma Omana -> MATRAH + link = { imp = 7213 ck3 = 6143 } # Dirma -> MATRAH link = { imp = 5417 ck3 = 6136 } # Ialla -> RUSTAQ-OMAN link = { imp = 8869 imp = 8870 ck3 = 6138 } # Dhank, Ibri -> DHANK link = { imp = 8851 imp = 8865 ck3 = 6140 } # Sharqiyah, Adam -> NIZWA link = { imp = 8866 ck3 = 6139 } # Bahla -> BAHLA - link = { imp = 5419 imp = 5420 ck3 = 6141 } # Samad, Zirne -> SAMAD + link = { imp = 5419 imp = 5420 ck3 = 6141 } # Mazir, Zirne -> SAMAD link = { imp = 7212 ck3 = 6144 } # Kryptos Limen -> MASQAT link = { imp = 7214 ck3 = 6147 ck3 = 6146 } # Artemidos -> JAALAN, SUR link = { imp = 8879 imp = 7216 imp = 7217 imp = 5421 ck3 = 6268 } # Juba, Sarapis, Ganta, Acte -> WAHIBA @@ -1888,12 +1887,12 @@ imperator_invictus = { link = { imp = 8874 ck3 = 6234 } # Gaabah -> TABALA-HIJAZ link = { imp = 8873 ck3 = 6235 ck3 = 6236 } # Bishah -> BISHA, JURASH link = { imp = 8841 imp = 8839 imp = 8838 ck3 = 6237 } # Hubuna, Kutnah, Jurash -> KUTHBA - link = { imp = 4650 ck3 = 6290 } # 'Adan -> ADEN + link = { imp = 4650 ck3 = 6290 } # Adene -> ADEN link = { comment = "# FINLAND BY IHT" } link = { imp = 5973 ck3 = 173 ck3 = 171 ck3 = 168 ck3 = 169 ck3 = 170 ck3 = 5138 ck3 = 167 } # Northern Baltic Coast Impassable -> KOIVISTO, RAUTU, KOPORYE, NYEN, NOTEBORG, Ladoga, YAMA link = { imp = 5976 ck3 = 216 ck3 = 217 ck3 = 180 ck3 = 179 ck3 = 178 ck3 = 177 ck3 = 175 ck3 = 176 ck3 = 197 ck3 = 182 } # Finland Impassable -> SUND, JOMALA, RAUMA, TURKU, RIKALA, RASEBORG, PORVOO, ESPOO, VEHKALAHTI, VIIPURI link = { comment = "# SOUTH INDIA BY IHT: PRESERVED ONLY NAME-BASED MAPPINGS, REST CAN BE AUTOGENERATED" } - link = { imp = 6927 imp = 6926 ck3 = 7807 } # Urayur, Bata Pandiya -> Uraiyur + link = { imp = 6927 imp = 6926 ck3 = 7807 } # Kaliour, Bata -> Uraiyur link = { imp = 7027 ck3 = 7818 } # Rapur -> Vallurapura link = { imp = 7002 ck3 = 1204 } # Nellore -> Nellore link = { imp = 7010 ck3 = 7864 ck3 = 7862 } # Paravipura -> Parivi, Hemavati @@ -1907,47 +1906,47 @@ imperator_invictus = { link = { imp = 6989 ck3 = 1120 } # Tagadur -> Tagadur link = { imp = 6996 imp = 6983 ck3 = 7830 } # Tiruvannamalai, Arkatapura -> Tiruvannamalai link = { imp = 7009 ck3 = 1216 } # Talavanapura -> Talakad - link = { imp = 6949 imp = 6939 imp = 6945 imp = 6946 ck3 = 1201 } # Kongu, Chavadi, Kilandha, Kavera -> Kongu + link = { imp = 6949 imp = 6939 imp = 6945 imp = 6946 ck3 = 1201 } # Kongu, Chavadi, Kilandha, Syurila -> Kongu link = { imp = 6912 imp = 6913 ck3 = 7812 } # Kolkoi, Tamraparni -> Korkai - link = { imp = 6917 ck3 = 1112 } # Madurai -> Madurai + link = { imp = 6917 ck3 = 1112 } # Modoura -> Madurai link = { comment = "=== NEW MAPPINGS BY RADU ===" } link = { comment = "MOROCCO BY RADU" } link = { imp = 3061 ck3 = 4683 ck3 = 4682 } # Tingis -> TANGER, SABTA link = { imp = 3064 ck3 = 4684 } # Arzeila -> ASILA - link = { imp = 3062 imp = 3065 ck3 = 4685 } # Lixus, Frigidae -> KASR AL-KABIR + link = { imp = 3062 imp = 3065 ck3 = 4685 } # Lixus, Tabernae -> KASR AL-KABIR link = { imp = 8260 ck3 = 4728 ck3 = 4729 } # Iligh -> NUL LAMTA, TAGHMUT link = { imp = 8261 ck3 = 4727 } # Aglou -> IFNI link = { imp = 8273 imp = 8270 ck3 = 4718 } # Marrakech, Guerir -> MARRAKESH link = { imp = 8271 ck3 = 4713 ck3 = 4712 } # Laattaouia -> AIT IYAT, AIT ITAB link = { imp = 8314 imp = 8313 imp = 8312 imp = 8311 ck3 = 4743 } # Orjane, Missour, Ksabi, Izdeg -> TIKOUTAMINE link = { imp = 8393 imp = 8392 ck3 = 4676 } # Magoura, Iberia Impassable -> DEBDOU - link = { imp = 8318 imp = 8319 imp = 3081 ck3 = 4748 } # Taddart, Maghessel, Visum Montis -> NADOR + link = { imp = 8318 imp = 8319 imp = 3081 ck3 = 4748 } # Taddart, Maghessel, VisumMontis -> NADOR link = { imp = 8321 imp = 8398 imp = 8317 imp = 8320 imp = 8316 ck3 = 4675 } # Ouidane, Gafait, Guercif, Lamrija, Oufriden -> SAA link = { imp = 8396 imp = 8397 ck3 = 4697 } # Kandar, Guigou -> SEFROU - link = { imp = 6470 imp = 8324 imp = 8325 imp = 8307 ck3 = 4711 } # Rob'a, Atlas Pass, Atlas Pass, Aghbala -> AFZA - link = { imp = 6302 ck3 = 4708 } # Zemour -> WAWMANA + link = { imp = 6470 imp = 8324 imp = 8325 imp = 8307 ck3 = 4711 } # Ait Rob'a, Atlas Pass, Atlas Pass, Aghbala -> AFZA + link = { imp = 6302 ck3 = 4708 } # Zemmour -> WAWMANA link = { imp = 6473 imp = 6487 ck3 = 4706 } # Ouardigha, Mdakra -> MRIRA - link = { imp = 6472 ck3 = 4709 } # Amer -> TADLA - link = { imp = 6471 ck3 = 4710 } # Mousa -> DAI + link = { imp = 6472 ck3 = 4709 } # Beni Amer -> TADLA + link = { imp = 6471 ck3 = 4710 } # Beni Mousa -> DAI link = { imp = 6480 imp = 6474 imp = 6489 ck3 = 4746 } # Amrane, Meskine, Mzamza -> EL-BOROUJ link = { imp = 6486 imp = 6481 imp = 6477 imp = 7221 imp = 6479 ck3 = 4747 } # Ziaida, Haouzia, Frej, Mizab, Bouzerrara -> TIT-AN-WAGURRAMT link = { imp = 6476 imp = 6485 ck3 = 4693 } # Khedis, Tiflet -> BAHT link = { imp = 8395 ck3 = 4699 } # Agourai -> MEKNES - link = { imp = 3071 ck3 = 4691 } # Thamusida Australis -> WALILA + link = { imp = 3071 ck3 = 4691 } # ThamusidaMeridionalis -> WALILA link = { imp = 3070 imp = 3069 ck3 = 4692 } # Banasa, Tocolosida -> WARZIGH link = { imp = 3074 ck3 = 4689 } # Aelia -> IZERHAN - link = { imp = 3078 imp = 3077 imp = 3076 ck3 = 4686 } # Ad Mercuri, Oppidum Novum, Tremulae -> TAHLIT + link = { imp = 3078 imp = 3077 imp = 3076 ck3 = 4686 } # AdNovas, OppidumNovum, Tremulae -> TAHLIT link = { imp = 3075 ck3 = 4688 } # Viposcianae -> WARGHA - link = { imp = 3067 imp = 3073 imp = 3072 ck3 = 4695 } # Volubilis, Gilda, Aquae Dacicae -> AL-ALIYA - link = { imp = 3079 ck3 = 4696 ck3 = 4694 } # Mons Semita -> SUBU, FES + link = { imp = 3067 imp = 3073 imp = 3072 ck3 = 4695 } # Volubilis, Gilda, AquaeDacicae -> AL-ALIYA + link = { imp = 3079 ck3 = 4696 ck3 = 4694 } # MonsSemita -> SUBU, FES link = { imp = 8315 ck3 = 4745 } # Tindite -> MISSOUR - link = { imp = 3082 ck3 = 4674 } # Mons Ambulatis -> WAJDA - link = { imp = 5321 ck3 = 4673 ck3 = 4662 ck3 = 4751 } # Western Gaetulia -> TAFRAOUA-SEBDOU, HISN LAWATA, MECHERIA + link = { imp = 3082 ck3 = 4674 } # MonsAmbulatis -> WAJDA + link = { imp = 5321 ck3 = 4673 ck3 = 4662 ck3 = 4751 } # IP 322 -> TAFRAOUA-SEBDOU, HISN LAWATA, MECHERIA link = { imp = 3084 ck3 = 4672 } # Syrorum -> TLEMCEN link = { imp = 8322 imp = 8323 ck3 = 4670 } # Zaio, Laatamna -> NADRUMA link = { imp = 3083 ck3 = 4669 } # Lemnis -> HUNAYN link = { imp = 8350 imp = 8351 ck3 = 4677 } # Tiztoutine, Midar -> TAZA - link = { imp = 3080 ck3 = 4678 } # Rusaddir -> MELILLA + link = { imp = 3080 ck3 = 4678 } # OppidumEtPortus -> MELILLA link = { imp = 8348 imp = 8355 imp = 8354 imp = 8353 imp = 8352 imp = 8349 ck3 = 4679 } # Hoceima, Senada, Ziam, Mnoud Nekkour, Ajdir, Sidi Driss -> NAKUR link = { imp = 8346 imp = 8347 ck3 = 4680 } # Kach Kouch, Jebha -> GHUMIRA link = { imp = 3085 ck3 = 4681 } # Tamuda -> TITTAWAN @@ -1984,46 +1983,46 @@ imperator_invictus = { link = { imp = 6475 ck3 = 4703 ck3 = 4702 ck3 = 4701 } # Anfa -> ANFA, FADALA, RIBAT-AL-FATH link = { imp = 3068 ck3 = 4700 } # Sala -> SALA link = { imp = 3063 ck3 = 4690 } # Thamusida -> WATIT - link = { imp = 3066 ck3 = 4687 } # Occasum -> AL-BASRA + link = { imp = 3066 ck3 = 4687 } # Frigidae -> AL-BASRA link = { comment = "GERMANY, AUSTRIA, BOHEMIA BY RADU" } link = { imp = 3667 ck3 = 3137 } # Aguntum -> OBERVELLACH link = { imp = 3664 ck3 = 2952 ck3 = 3134 ck3 = 2951 } # Sebatum -> BRUNECK, LIENZ, MATREI link = { imp = 3752 ck3 = 2943 } # Ambrae -> FREISING link = { imp = 3751 ck3 = 2945 } # Abodiacum -> MUNCHEN - link = { imp = 3641 ck3 = 2947 } # Arces Covelicae -> WOLFRATSHAUSEN + link = { imp = 3641 ck3 = 2947 } # Covelicae -> WOLFRATSHAUSEN link = { imp = 3642 ck3 = 2984 } # Isinisca -> MARQUARDSTEIN link = { imp = 3753 ck3 = 2958 } # Bratananium -> ERDING link = { imp = 3764 ck3 = 2973 ck3 = 2961 } # Innaba -> BRAUNAU, DORNBERG - link = { imp = 3754 ck3 = 2981 } # Ad Pontes Tessenios -> BURGHAUSEN + link = { imp = 3754 ck3 = 2981 } # Tessenios -> BURGHAUSEN link = { imp = 3643 ck3 = 2982 } # Artobriga -> LAUFEN link = { imp = 3644 ck3 = 2975 ck3 = 2983 } # Iuvavum -> SALZBURG, TRAUNSTEIN link = { imp = 3670 ck3 = 2978 ck3 = 2977 ck3 = 2985 } # Anisus -> HALLEIN, BERCHTESGADEN, LAUKENTAL - link = { imp = 3669 ck3 = 3115 ck3 = 3114 ck3 = 3129 ck3 = 3128 ck3 = 3135 } # In Murio -> TAMSWEG, MURAU, IRDNING, KAMMERSBERG, HALLSTATT + link = { imp = 3669 ck3 = 3115 ck3 = 3114 ck3 = 3129 ck3 = 3128 ck3 = 3135 } # InMurio -> TAMSWEG, MURAU, IRDNING, KAMMERSBERG, HALLSTATT link = { imp = 3645 ck3 = 2979 } # Laciacum -> STRASSWALCHEN link = { imp = 3646 ck3 = 3133 } # Tergolape -> WELS link = { imp = 3763 ck3 = 2971 } # Ioviacum -> SCHAUMBERG link = { imp = 3647 ck3 = 3131 ck3 = 3132 } # Ovilava -> LINZ, STEYR link = { imp = 3648 ck3 = 3093 } # Lauriacum -> AMSTETTEN - link = { imp = 3649 ck3 = 3094 } # Loacus Felicis -> WIESELBURG + link = { imp = 3649 ck3 = 3094 } # LoacusFelices -> WIESELBURG link = { imp = 3674 ck3 = 3124 ck3 = 3126 ck3 = 3130 } # Gabramagus -> WAIDHOFEN, ADMONT, LIEZEN link = { imp = 3673 ck3 = 3112 ck3 = 3125 } # Sabatinca -> JUDENBURG, KNITTELFELD - link = { imp = 3672 ck3 = 3113 } # Noreia -> SANKT VEIT - link = { imp = 4047 ck3 = 3108 } # Luena -> WOLFSBERG + link = { imp = 3672 ck3 = 3113 } # Candalicae -> SANKT VEIT + link = { imp = 4047 ck3 = 3108 } # Luenna -> WOLFSBERG link = { imp = 3671 ck3 = 3105 } # Virunum -> KLAGENFURT link = { imp = 3668 ck3 = 3083 ck3 = 3127 } # Teurnia -> SPITTAL, FELDKIRCHEN link = { imp = 3666 ck3 = 2948 ck3 = 2956 ck3 = 2976 } # Mastiacum -> TOLZ, FALKENSTEIN, KITZBUHEL - link = { imp = 3665 ck3 = 2953 } # Vipitenum -> KUFSTEIN + link = { imp = 3665 ck3 = 2953 } # Vipenitum -> KUFSTEIN link = { imp = 3663 ck3 = 2955 } # Sublavione -> BRIXEN link = { imp = 3775 ck3 = 2777 } # Summuntorium -> BURGAU link = { imp = 3750 ck3 = 2778 } # Rapis -> AUGSBURG link = { imp = 3822 ck3 = 2874 ck3 = 2873 ck3 = 2927 } # Devona -> BAMBERG, CASEL, WILTBERG link = { imp = 3938 ck3 = 4162 ck3 = 4156 } # Boioa -> Jihlava, Chynov link = { imp = 3932 ck3 = 4167 ck3 = 4163 } # Hercyniana -> Ivancice, Zdar - link = { imp = 3928 ck3 = 4168 } # Felicia Boioa -> Brno + link = { imp = 3928 ck3 = 4168 } # Felicia -> Brno link = { imp = 3929 ck3 = 4148 ck3 = 4170 ck3 = 4165 } # Auchia -> Rakovnik, Hodonin, Olomouc - link = { imp = 3926 ck3 = 4169 } # Eburodunum Carnuntii -> Breclav + link = { imp = 3926 ck3 = 4169 } # Eburodunum -> Breclav link = { imp = 3930 ck3 = 4166 } # Phargisatus -> Znojmo - link = { imp = 3980 ck3 = 4134 ck3 = 4133 } # Ad Fines Boiohaemi -> Bezdez, Decin + link = { imp = 3980 ck3 = 4134 ck3 = 4133 } # AdFines -> Bezdez, Decin link = { imp = 3941 ck3 = 4136 } # Vandalicia -> Boleslav link = { imp = 3915 ck3 = 4139 } # Meliodunum -> Jaromer link = { imp = 4009 ck3 = 4138 ck3 = 4137 } # Galaegia -> Hradec(Kralove), Dvur-Chvojno @@ -2032,27 +2031,27 @@ imperator_invictus = { link = { imp = 3914 imp = 3939 ck3 = 4161 } # Coridorgis, Budorgis -> Caslav link = { imp = 3937 ck3 = 4158 } # Baemia -> Milevsko link = { imp = 3816 ck3 = 4145 } # Marcomannia -> Plzen - link = { imp = 3936 ck3 = 4157 ck3 = 4151 } # Sylvaria Prima -> Bechyne, Pisek + link = { imp = 3936 ck3 = 4157 ck3 = 4151 } # SylvariaPrima -> Bechyne, Pisek link = { imp = 3931 ck3 = 4164 ck3 = 4155 } # Tavia -> Bitov, Telcz link = { imp = 3933 ck3 = 3074 } # Quadia -> GMUND - link = { imp = 3935 ck3 = 4154 } # Ad Limen -> Doudleby - link = { imp = 3934 ck3 = 4153 } # Ad Periam -> Rozmberk + link = { imp = 3935 ck3 = 4154 } # AdLimen -> Doudleby + link = { imp = 3934 ck3 = 4153 } # AdPeria -> Rozmberk link = { imp = 3812 ck3 = 4149 ck3 = 4146 } # Strevinta -> Prachen, Primda link = { imp = 3818 ck3 = 4152 ck3 = 4150 } # Setuacatum -> Krumlov, Netolice link = { imp = 3952 ck3 = 3000 } # Sudetia -> HOF - link = { imp = 3953 ck3 = 3004 } # Dandutia -> PLAUEN + link = { imp = 3953 ck3 = 3004 } # Gambrivia -> PLAUEN link = { imp = 3813 ck3 = 4144 } # Reganus -> Tachov link = { imp = 3814 ck3 = 2989 } # Parmacampia -> HOHENBURG link = { imp = 3811 ck3 = 2988 ck3 = 2990 } # Brodentia -> SULZBACH, LEUCHTENBURG link = { imp = 3820 ck3 = 2992 ck3 = 2993 } # Cantiabis -> GREIFFENST, BAYREUTH link = { imp = 3821 ck3 = 2995 } # Moenosgadia -> LICHTENFELS link = { imp = 3948 ck3 = 2998 } # Turoniana -> COBURG - link = { imp = 3799 ck3 = 2870 ck3 = 2871 ck3 = 2926 } # Salinae Chattuariorum -> WURZBURG, HAMMELBURG, SCHWEINFURT + link = { imp = 3799 ck3 = 2870 ck3 = 2871 ck3 = 2926 } # Salinae -> WURZBURG, HAMMELBURG, SCHWEINFURT link = { imp = 3805 ck3 = 2890 } # Bergium -> IPHOFEN - link = { imp = 3801 ck3 = 2889 } # Segodunum Chattuariorum -> MERGENTHEIM + link = { imp = 3801 ck3 = 2889 } # Segodunum -> MERGENTHEIM link = { imp = 3803 ck3 = 2891 } # Armalausia -> UFFENHEIM - link = { imp = 3772 ck3 = 2888 } # Ad Fines Germaniae -> CRAILSHEIM - link = { imp = 3768 ck3 = 2880 } # Mediana Vendelicia -> TRUBENDING + link = { imp = 3772 ck3 = 2888 } # AdFines -> CRAILSHEIM + link = { imp = 3768 ck3 = 2880 } # Mediana -> TRUBENDING link = { imp = 3807 ck3 = 2877 ck3 = 2892 } # Nariscia -> NUREMBERG, RIEDFELD link = { imp = 3806 ck3 = 2876 ck3 = 2875 } # Varistia -> ABENBERG, ANSBACH link = { imp = 3767 ck3 = 2878 } # Biriciana -> LICHTSTAD @@ -2064,47 +2063,47 @@ imperator_invictus = { link = { imp = 3917 ck3 = 3076 ck3 = 3073 } # Adrabae -> ZWETTL, FREISTADT link = { imp = 3916 ck3 = 3088 ck3 = 3090 } # Abilunum -> KREMS, SPITZ link = { imp = 3923 ck3 = 3078 ck3 = 3077 ck3 = 3075 } # Teracatriae -> HAUGSDORF, HORN, WILD - link = { imp = 3921 ck3 = 3085 } # Regnia Secunda -> ERNSTBRUNN + link = { imp = 3921 ck3 = 3085 } # RegniaSecunda -> ERNSTBRUNN link = { imp = 3922 ck3 = 3081 ck3 = 3080 ck3 = 3079 ck3 = 3082 } # Medioslanium -> HOHENAU, MIKULOV, LAA, MISTELBACH - link = { imp = 3920 ck3 = 3084 } # Regnia Prima -> FLORIDSDORF - link = { imp = 3762 ck3 = 2972 ck3 = 2970 } # Stanacum -> RIED, SCHARDING - link = { imp = 3761 ck3 = 2960 } # Batavis -> PASSAU - link = { imp = 3760 ck3 = 2962 } # Petrensibus -> ORTENBURG + link = { imp = 3920 ck3 = 3084 } # RegniaPrima -> FLORIDSDORF + link = { imp = 3762 ck3 = 2972 ck3 = 2970 } # Batavis -> RIED, SCHARDING + link = { imp = 3761 ck3 = 2960 } # Petrensibus -> PASSAU + link = { imp = 3760 ck3 = 2962 } # Augusta -> ORTENBURG link = { imp = 3759 ck3 = 2963 } # Sorviodurum -> LEONSBERG - link = { imp = 3758 ck3 = 2964 } # Castra Regina -> REGENSBURG - link = { imp = 3755 imp = 3756 ck3 = 2959 } # Turum Breunorum, Iovisura -> FRONTENHAUSEN + link = { imp = 3758 ck3 = 2964 } # CastraRegina -> REGENSBURG + link = { imp = 3755 imp = 3756 ck3 = 2959 } # Turum, Iovisura -> FRONTENHAUSEN link = { imp = 3765 ck3 = 2941 } # Abusina -> ABENSBERG - link = { imp = 3757 ck3 = 2942 ck3 = 2957 } # Celeusum -> ROTHENBURG, GEISENHAUSEN + link = { imp = 3757 ck3 = 2942 ck3 = 2957 } # Valiatum -> ROTHENBURG, GEISENHAUSEN link = { imp = 3773 ck3 = 2940 } # Venaxamodurum -> MUNCHSMUNSTER - link = { imp = 3749 ck3 = 2938 ck3 = 2939 } # Vindelicia -> NIEDERSCHONENFELD, ILMUNSTER - link = { imp = 3747 imp = 3748 ck3 = 2779 } # Navoa, Rostrum Nemaviae -> FRIEDBERG + link = { imp = 3749 ck3 = 2938 ck3 = 2939 } # AugustaVindelicum -> NIEDERSCHONENFELD, ILMUNSTER + link = { imp = 3747 imp = 3748 ck3 = 2779 } # Navoa, RostrumNemaviae -> FRIEDBERG link = { imp = 3640 ck3 = 2946 } # Damasia -> AHEIM link = { imp = 3638 ck3 = 2784 ck3 = 2780 } # Cambodunum -> KAUFBEUREN, LECHRAIN link = { imp = 3654 ck3 = 2949 } # Foetes -> ESCHENLOHE link = { imp = 3655 ck3 = 2781 ck3 = 2790 } # Tiralia -> PEITING, HOHENSCHWANGAU - link = { imp = 3656 ck3 = 2950 } # Alpis Superior -> INNSBRUCK - link = { imp = 3658 ck3 = 2954 } # Statio Maiensis -> BOZEN + link = { imp = 3656 ck3 = 2950 } # AlpinusMons -> INNSBRUCK + link = { imp = 3658 ck3 = 2954 } # MaiensisStatio -> BOZEN link = { imp = 3659 ck3 = 2498 } # Vadena -> BOLZANO link = { imp = 3660 ck3 = 2495 } # Salurnis -> VAL CAMONICA link = { imp = 3766 ck3 = 2883 } # Germanicum -> INGOLSTADT link = { imp = 3774 ck3 = 2882 } # Parrodunum -> WEISSENBURG link = { imp = 3769 ck3 = 2886 } # Losodica -> NORDLINGEN - link = { imp = 3771 ck3 = 2769 ck3 = 2885 } # Aquileia Germanica -> HELLENENSTEIN, DILLINGEN - link = { imp = 3770 ck3 = 2770 ck3 = 2771 } # Ad Lunam -> HELFENSTEIN, TECK + link = { imp = 3771 ck3 = 2769 ck3 = 2885 } # Aquileia -> HELLENENSTEIN, DILLINGEN + link = { imp = 3770 ck3 = 2770 ck3 = 2771 } # AdLunam -> HELFENSTEIN, TECK link = { imp = 3742 ck3 = 2768 } # Viana -> ULM - link = { imp = 3741 ck3 = 2774 ck3 = 2775 } # Caelius Mons -> BERGE, KIRCHBERG + link = { imp = 3741 ck3 = 2774 ck3 = 2775 } # CaeliusMons -> BERGE, KIRCHBERG link = { imp = 3740 ck3 = 2776 } # Cassiliacum -> MARSTETTEN link = { imp = 3739 ck3 = 2785 } # Vemania -> MEMMINGEN link = { imp = 3637 ck3 = 2783 ck3 = 2782 ck3 = 2786 } # Vernania -> KEMPTEN, SCHONGAU, RAVENSBURG link = { imp = 3636 ck3 = 2787 ck3 = 2053 } # Brigantium -> BREGENZ, SANKT GALLEN - link = { imp = 3639 ck3 = 2761 } # Arbor Felix -> HEILIGENBERG - link = { imp = 3746 ck3 = 2773 } # Raetia Orientalis -> GRUNINGEN + link = { imp = 3639 ck3 = 2761 } # ArborFelix -> HEILIGENBERG + link = { imp = 3746 ck3 = 2773 } # RaetiaOrientalis -> GRUNINGEN link = { imp = 3634 imp = 3635 ck3 = 2054 } # Vitudurum, Constantia -> KONSTANZ - link = { imp = 3732 ck3 = 2762 } # Tasgetium -> NELLENBURG - link = { imp = 3745 ck3 = 2767 ck3 = 2758 } # Raetia Occidentalis -> SIGMARINGEN, LUPFEN + link = { imp = 3732 ck3 = 2762 } # AquaeHelveticae -> NELLENBURG + link = { imp = 3745 ck3 = 2767 ck3 = 2758 } # RaetiaOccidentalis -> SIGMARINGEN, LUPFEN link = { imp = 3743 ck3 = 2765 ck3 = 2766 } # Riusiava -> BEUTLINGEN, SCHELKLINGEN link = { imp = 3744 ck3 = 2759 ck3 = 2764 } # Bragodurum -> HOHENBERG, VEHRINGEN - link = { imp = 3733 ck3 = 2763 ck3 = 2755 ck3 = 2756 } # Arae Flaviae -> ZOLLERN, SULZ, ROTTWEIL + link = { imp = 3733 ck3 = 2763 ck3 = 2755 ck3 = 2756 } # AraeFlaviae -> ZOLLERN, SULZ, ROTTWEIL link = { imp = 3734 ck3 = 2749 } # Sumelocenna -> TUBINGEN link = { imp = 3736 ck3 = 2748 } # Grinario -> WIRTEMBERG link = { imp = 3800 ck3 = 2872 ck3 = 2772 ck3 = 2887 } # Sedusia -> WEINSBERG, LOWENSTEIN, HALL @@ -2112,9 +2111,9 @@ imperator_invictus = { link = { imp = 3802 ck3 = 2868 ck3 = 2869 } # Locoritum -> WERTHEIM, HOCHBERG link = { imp = 3798 ck3 = 2864 ck3 = 2862 } # Vangionia -> GELNHAUSEN, KLINGENBERG link = { imp = 3797 ck3 = 2866 ck3 = 2865 } # Mattiacia -> RIENECK, BUDINGEN - link = { imp = 3737 ck3 = 2737 } # Vicus Nediensis -> ERBACH + link = { imp = 3737 ck3 = 2737 } # VicusNediensis -> ERBACH link = { imp = 3055 ck3 = 2736 ck3 = 2735 } # Lopodunum -> BESENSHEIM, WEINHEIM - link = { imp = 3702 ck3 = 2742 } # Civitas Auderiensium -> SELIGENSTADT + link = { imp = 3702 ck3 = 2742 } # Auderiensium -> SELIGENSTADT link = { imp = 7732 ck3 = 2741 } # Vicus Augustanus -> RUSSELSHEIM link = { imp = 3947 ck3 = 2925 ck3 = 3010 } # Turonia -> HENNEBERG, SCHMALKALDEN link = { imp = 3823 ck3 = 2923 ck3 = 2924 } # Melocavus -> HERSFELD, FULDA @@ -2122,13 +2121,13 @@ imperator_invictus = { link = { imp = 3700 ck3 = 2855 ck3 = 2863 } # Taunensium -> FRANKFURT, HANAU link = { imp = 3789 ck3 = 2851 ck3 = 2856 } # Usipetia -> DIEZ, HOMBURG link = { imp = 3889 ck3 = 2798 } # Treva -> ITZEHOE - link = { imp = 3699 ck3 = 2693 ck3 = 2692 ck3 = 2854 } # Aquae Mattiacorum -> WIESBADEN, KATZENELNBOGEN, LIMBURG + link = { imp = 3699 ck3 = 2693 ck3 = 2692 ck3 = 2854 } # AquaeMattiacorum -> WIESBADEN, KATZENELNBOGEN, LIMBURG link = { imp = 3892 ck3 = 2808 } # Alisus -> SCHWERIN link = { imp = 3895 ck3 = 2805 } # Suardonia -> AHRENSBURG link = { imp = 3858 ck3 = 2804 } # Marionis -> LUBECK link = { imp = 3795 ck3 = 2860 } # Gravionarium -> KASSEL - link = { imp = 3794 ck3 = 2859 ck3 = 2858 } # Marsiana -> MARBURG, ZIEGENHAIN - link = { imp = 3791 ck3 = 2681 } # Chattuaria -> BILSTEIN + link = { imp = 3794 ck3 = 2859 ck3 = 2858 } # Marsingia -> MARBURG, ZIEGENHAIN + link = { imp = 3791 ck3 = 2681 } # Chattaia -> BILSTEIN link = { imp = 3793 ck3 = 2857 ck3 = 2853 ck3 = 2852 } # Landia -> WETZLAR, SOLMS, SIEGEN link = { imp = 3788 ck3 = 2689 ck3 = 2691 ck3 = 2690 } # Lacobardia -> SAYN, ISENBURG, WIED link = { imp = 3787 ck3 = 2433 ck3 = 2676 ck3 = 2678 ck3 = 2688 } # Tenctheria -> BERGH, HUKESWAG, HAGEN, SIEGBURG @@ -2144,21 +2143,21 @@ imperator_invictus = { link = { imp = 3996 ck3 = 3173 ck3 = 3175 } # Graetana -> WITTENBERG, BRENE link = { imp = 3988 ck3 = 3024 } # Caluconia -> DUBEN link = { imp = 3956 ck3 = 3038 ck3 = 3003 } # Melocabus -> GERA, LOBDABURG - link = { imp = 3958 ck3 = 2928 ck3 = 2921 ck3 = 3009 } # Salia Chamavia -> EBELEBEN, MUHLHAUSEN, EISENACH + link = { imp = 3958 ck3 = 2928 ck3 = 2921 ck3 = 3009 } # Salia -> EBELEBEN, MUHLHAUSEN, EISENACH link = { imp = 3957 ck3 = 3006 ck3 = 3008 ck3 = 2999 } # Bicurdium -> GLEICHEN, KAFERNBURG, SCHWARZBURG link = { imp = 3955 ck3 = 3007 ck3 = 3005 } # Candulum -> BEICHTINEN, ORLAMUNDE link = { imp = 3959 ck3 = 2935 ck3 = 2936 ck3 = 2934 } # Argelia -> MERSENBURG, MANSFELD, SANGERHAUSEN link = { imp = 3950 ck3 = 3023 ck3 = 3021 ck3 = 3018 } # Calaegia -> DESSAU, EILENBURG, HALLE link = { imp = 3966 ck3 = 2933 } # Aregelliana -> ARNSTEIN link = { imp = 3967 ck3 = 2906 ck3 = 2916 } # Aregellia -> MAGDEBURG, HALBERSTADT - link = { imp = 3989 ck3 = 3174 ck3 = 3172 } # Albiana -> BELIZI, ZERBST + link = { imp = 3989 ck3 = 3174 ck3 = 3172 } # Albia -> BELIZI, ZERBST link = { imp = 3909 ck3 = 3171 ck3 = 3176 } # Mesuium -> MOCKERN, GOMMERN link = { imp = 3994 ck3 = 3158 ck3 = 3180 ck3 = 3177 } # Silingia -> BERLIN, JUTERBOG, LEHNIN link = { imp = 3951 ck3 = 3019 ck3 = 3014 ck3 = 3020 } # Luphurdum -> LEIPZIG, ALTENBURG, NAUMBURG link = { imp = 3954 ck3 = 3013 ck3 = 3039 } # Camulia -> WALDENBURG, REICHENBACH link = { imp = 3990 ck3 = 3027 ck3 = 3016 ck3 = 3025 ck3 = 3017 ck3 = 3015 } # Hercynia -> MEISSEN, LEISNING, TORGAU, DEVIN, COLDITZ link = { imp = 3981 ck3 = 3012 ck3 = 3028 ck3 = 3030 } # Thuringiana -> WOLKENSTEIN, FREIBERG, DRESDEN - link = { imp = 3946 ck3 = 2997 ck3 = 2994 } # Sudetica Planus -> CHEB, KULMBACH + link = { imp = 3946 ck3 = 2997 ck3 = 2994 } # SudetiaPlanus -> CHEB, KULMBACH link = { imp = 3944 imp = 3945 ck3 = 4143 } # Extremadura, Sudetiana -> Stribro link = { imp = 3913 ck3 = 4147 ck3 = 4132 ck3 = 4141 ck3 = 3001 ck3 = 4142 } # Marobudum -> Zatec, Kadan, Sedlec, REHAU, Loket link = { imp = 3912 ck3 = 4130 ck3 = 4131 } # Redintuinum -> Slany, Bilina @@ -2167,12 +2166,12 @@ imperator_invictus = { link = { imp = 3911 ck3 = 4128 ck3 = 4129 } # Nomisterium -> Melnik, Litomerice link = { imp = 3910 ck3 = 3032 ck3 = 3033 ck3 = 4135 } # Susidaea -> BAUTZEN, BISCHOFSWERDA, Zitava link = { imp = 3979 ck3 = 2980 ck3 = 3136 } # Colancorum -> GORLITZ, SPREMBERG - link = { imp = 3991 ck3 = 3034 ck3 = 3035 } # Buriana -> GROSSENHAIN, RADEBEUL - link = { imp = 3993 ck3 = 3141 } # Stragona Buria -> KAMENZ - link = { imp = 3992 ck3 = 3066 ck3 = 3070 } # Buria -> ZAGAN, NOWOGRODZIEC + link = { imp = 3991 ck3 = 3034 ck3 = 3035 } # BuriaMinores -> GROSSENHAIN, RADEBEUL + link = { imp = 3993 ck3 = 3141 } # Stragona -> KAMENZ + link = { imp = 3992 ck3 = 3066 ck3 = 3070 } # BuriaMaiores -> ZAGAN, NOWOGRODZIEC link = { imp = 4001 ck3 = 3139 ck3 = 3143 } # Diduniana -> SORGE, NAUMBERG - link = { imp = 3998 ck3 = 3181 ck3 = 3138 ck3 = 3140 } # Suevia Maior -> COTTBUS, FORST, SPREEWALD - link = { imp = 3997 ck3 = 3182 } # Suevia Minor -> LUBBEN + link = { imp = 3998 ck3 = 3181 ck3 = 3138 ck3 = 3140 } # Suevia Minores -> COTTBUS, FORST, SPREEWALD + link = { imp = 3997 ck3 = 3182 } # Suevia Maiores -> LUBBEN link = { imp = 3995 ck3 = 3178 } # Viaduna -> DAHME link = { imp = 4000 ck3 = 3142 ck3 = 3159 } # Omania -> ODERFRANKFURT, STORKOW link = { imp = 3888 ck3 = 2802 } # Leuphana -> HAMBURG @@ -2183,17 +2182,17 @@ imperator_invictus = { link = { imp = 3962 ck3 = 2794 ck3 = 2903 } # Idistavisus -> VERDEN, WALSRODE link = { imp = 3829 ck3 = 2839 } # Ascalingium -> HOYA link = { imp = 3828 ck3 = 2840 } # Tuliphurdum -> MINDEN - link = { imp = 3840 ck3 = 2837 } # Ad Pontem -> BRUCHHAUSEN + link = { imp = 3840 ck3 = 2837 } # AdPontem -> BRUCHHAUSEN link = { imp = 3841 ck3 = 2441 ck3 = 2445 ck3 = 2442 } # Chasuaria -> PAPENBURG, CLOPPENBURG, TWISTRINGEN link = { imp = 3780 ck3 = 2439 ck3 = 2446 } # Teuderium -> MEPPEN, TECKLENBURG - link = { imp = 3778 ck3 = 2431 ck3 = 2432 } # Mediolanum Belgicum -> ALMELO, BORCULO + link = { imp = 3778 ck3 = 2431 ck3 = 2432 } # Mediolanium -> ALMELO, BORCULO link = { imp = 3987 ck3 = 3166 ck3 = 3170 } # Caluconiana -> BRANDENBURG, TANGERMUNDE link = { imp = 3986 ck3 = 3157 ck3 = 3164 } # Uarinia -> POTSDAM, BOTZOW link = { imp = 3999 ck3 = 3165 ck3 = 3149 } # Susidata -> ROSENFELDE, LEBUS link = { imp = 3984 ck3 = 3161 } # Burgia -> EBERSWALDE link = { imp = 3985 ck3 = 3163 ck3 = 3162 } # Vistulia -> TEMPLIN, SCHWEDT link = { imp = 3983 ck3 = 3167 } # Astuia -> LINDOW - link = { imp = 3982 ck3 = 3169 } # Coenonia -> NOWEN + link = { imp = 3982 ck3 = 3169 } # Coenonum -> NOWEN link = { imp = 3974 imp = 3968 ck3 = 2900 } # Alaria, Mersovium -> STENDAL link = { imp = 3976 ck3 = 2901 ck3 = 2902 } # Maroia -> BRUNSWICK, WOLFENBUTTEL link = { imp = 3977 ck3 = 2914 } # Luppia -> WOLDENBERG @@ -2203,24 +2202,24 @@ imperator_invictus = { link = { imp = 3786 ck3 = 2673 ck3 = 2674 } # Arbalo -> DORTMUND, SOEST link = { imp = 3785 ck3 = 2677 } # Alisutum -> ESSEN link = { imp = 3830 ck3 = 2440 ck3 = 2443 ck3 = 2841 } # Marsia -> OSNABRUCK, RAVENSBERG, WIEDENBRUCK - link = { imp = 3782 ck3 = 2670 } # Amsivaria Bructeriorum -> MUNSTER - link = { imp = 3779 ck3 = 2422 ck3 = 2430 } # Salia Chasuaria -> COEVORDEN, BENTHEIM + link = { imp = 3782 ck3 = 2670 } # Amsivaria -> MUNSTER + link = { imp = 3779 ck3 = 2422 ck3 = 2430 } # Salia -> COEVORDEN, BENTHEIM link = { imp = 3781 ck3 = 2423 } # Vidrosia -> OMMEN - link = { imp = 3776 ck3 = 2429 } # Carvium -> ZUTPHEN + link = { imp = 3776 ck3 = 2429 } # Asciburgium -> ZUTPHEN link = { imp = 3851 ck3 = 2426 ck3 = 2421 ck3 = 2428 } # Isala -> HARDERWIJK, ZWOLLE, ARNHEM link = { imp = 3842 ck3 = 2436 } # Unsingia -> LEER link = { imp = 3834 ck3 = 2417 ck3 = 2419 } # Noviliacum -> GRONINGEN, EMMEN link = { imp = 3854 ck3 = 2410 ck3 = 2452 ck3 = 2416 } # Tubantia -> STAVEREN, STEENWIJK, KAMPEN link = { imp = 3852 ck3 = 2413 ck3 = 2411 } # Flevum -> LEEUWARDEN, HARLINGEN link = { imp = 3832 ck3 = 2415 ck3 = 2414 } # Manarmanis -> APPPINGEDAM, DOKKUM - link = { imp = 3833 ck3 = 2453 } # Amastica -> DELFZIJL + link = { imp = 3833 ck3 = 2453 } # Amisia -> DELFZIJL link = { imp = 3836 ck3 = 2437 ck3 = 2418 } # Amsivaria -> WILHELMSHAVEN, EMDEN link = { imp = 3838 ck3 = 2796 } # Angrivaria -> ZEVEN link = { imp = 3839 ck3 = 2793 ck3 = 2454 ck3 = 2438 } # Visurgis -> BREMEN, VAREL, OLDENBURG link = { imp = 3969 ck3 = 2899 } # Cistula -> WERBEN - link = { imp = 3784 ck3 = 2671 } # Alesia Germanica -> WARENDORF + link = { imp = 3784 ck3 = 2671 } # Alesia -> WARENDORF link = { imp = 3783 ck3 = 2434 ck3 = 2672 } # Caesia -> BREDEVOORT, AHLEN - link = { imp = 3777 ck3 = 2435 ck3 = 2675 } # Dorsten -> WEZEL, RECKLINGHAUSEN + link = { imp = 3777 ck3 = 2435 ck3 = 2675 } # Chattuaria -> WEZEL, RECKLINGHAUSEN link = { imp = 3831 ck3 = 2444 } # Dulgia -> VECHTA link = { imp = 3835 ck3 = 2838 } # Ansibaria -> DIEPHOLZ link = { imp = 3971 ck3 = 2895 ck3 = 2907 } # Arminia -> LUCHOW, GARDELEGEN @@ -2229,39 +2228,39 @@ imperator_invictus = { link = { imp = 3890 ck3 = 2795 ck3 = 2803 } # Chaucia -> STADE, BUXTEHUDE link = { imp = 3837 ck3 = 2792 ck3 = 2791 } # Saxonnia -> CUXHAVEN, BEDERKESA link = { imp = 3906 ck3 = 2823 ck3 = 3160 } # Galindia -> SZCZECIN, PRENZLAU - link = { imp = 3905 ck3 = 2820 ck3 = 2821 } # Helveconia Pharodeniorum -> NEUBRANDENBURG, NEUSTRELITZ - link = { imp = 3894 ck3 = 3168 } # Virunum Germanicum -> RUPPIN - link = { imp = 3907 ck3 = 2814 } # Nuithonia -> HAVELBERG + link = { imp = 3905 ck3 = 2820 ck3 = 2821 } # Helveconia -> NEUBRANDENBURG, NEUSTRELITZ + link = { imp = 3894 ck3 = 3168 } # Virunum -> RUPPIN + link = { imp = 3907 ck3 = 2814 } # NuithoniaMagna -> HAVELBERG link = { imp = 3902 ck3 = 2816 } # Avioniana -> GREIFSWALD - link = { imp = 3901 ck3 = 2812 ck3 = 2819 } # Maryanus -> WERLE, GUSTROW + link = { imp = 3901 ck3 = 2812 ck3 = 2819 } # Marionis -> WERLE, GUSTROW link = { imp = 3900 ck3 = 2813 } # Bunitium -> PARCHIM link = { imp = 3904 ck3 = 2822 ck3 = 2818 } # Sidenia -> UCRAMUND, SWINOUJSCIE link = { imp = 3903 ck3 = 2817 } # Sciria -> WOLGAST link = { imp = 3899 ck3 = 2811 } # Lemovia -> RUGEN link = { imp = 3898 ck3 = 2810 } # Pharodenia -> STRALSUND - link = { imp = 3896 imp = 3897 ck3 = 2809 } # Ruticlia, Virunia -> ROSTOCK + link = { imp = 3896 imp = 3897 ck3 = 2809 } # Rhuticlia, Virunia -> ROSTOCK link = { imp = 3891 ck3 = 2806 ck3 = 2807 } # Laciburaium -> RATZEBURG, MECKLENBURG link = { comment = "CARPATHIA BY RADU" } link = { imp = 4843 ck3 = 518 } # Onagrinum -> Bacs link = { imp = 4844 imp = 4845 ck3 = 3863 } # Florentia, Agria -> Bodrog link = { imp = 4842 ck3 = 3830 } # Acumincum -> Titel - link = { imp = 4872 ck3 = 3856 ck3 = 3852 ck3 = 3851 ck3 = 3853 } # Amatria -> Zolyom, Losonc, Korporna, Selmecbanya - link = { imp = 4873 ck3 = 3858 ck3 = 3857 ck3 = 3859 } # Collata -> Murany, Breznobanya, Rimaszombat + link = { imp = 4872 ck3 = 3856 ck3 = 3852 ck3 = 3851 ck3 = 3853 } # Amatria* -> Zolyom, Losonc, Korporna, Selmecbanya + link = { imp = 4873 ck3 = 3858 ck3 = 3857 ck3 = 3859 } # Collata* -> Murany, Breznobanya, Rimaszombat link = { imp = 4016 ck3 = 4159 } # Oreinia -> Spytihnev link = { imp = 4017 ck3 = 3812 ck3 = 8999 } # Asanca -> Puho, Veseli - link = { imp = 4297 ck3 = 3935 } # Salinae Porolissenses -> Kukullovar + link = { imp = 4297 ck3 = 3935 } # Salinae -> Kukullovar link = { imp = 4906 ck3 = 3920 ck3 = 3915 } # Petrodava -> Radna, Borsa - link = { imp = 4299 imp = 4298 ck3 = 3939 } # Deva Apulensis, Media -> Szaszkezd - link = { imp = 4836 ck3 = 3903 } # Ziridava Iazygia -> Zarand + link = { imp = 4299 imp = 4298 ck3 = 3939 } # Deva, Media -> Szaszkezd + link = { imp = 4836 ck3 = 3903 } # Ziridava -> Zarand link = { imp = 4841 ck3 = 3905 } # Marisia -> Arad link = { imp = 4840 ck3 = 3974 } # Zurobara -> Nagylak link = { imp = 4856 ck3 = 3875 } # Crisiana -> Oroshaza link = { imp = 4851 ck3 = 3873 } # Crisia -> Bekes - link = { imp = 4881 ck3 = 3899 } # Iconeia -> Gyozeg + link = { imp = 4881 ck3 = 3899 } # Iconeia* -> Gyozeg link = { imp = 4859 ck3 = 3947 } # Metanastiana -> Elesd - link = { imp = 4860 ck3 = 3901 ck3 = 520 } # Aurariae Dacicae -> Belenyes, Bihar - link = { imp = 4861 ck3 = 3902 } # Ad Statuam -> Zolonta - link = { imp = 4290 ck3 = 3904 } # Ziridava -> Nagyhalmagy + link = { imp = 4860 ck3 = 3901 ck3 = 520 } # Quare -> Belenyes, Bihar + link = { imp = 4861 ck3 = 3902 } # Statuam -> Zolonta + link = { imp = 4290 ck3 = 3904 } # Gerasus -> Nagyhalmagy link = { imp = 4289 ck3 = 3936 } # Ampelum -> Abrudbanya link = { imp = 4291 ck3 = 519 } # Apulum -> Feher link = { imp = 4295 imp = 4287 ck3 = 3937 } # Cedonia, Decidava -> Nagyszeben @@ -2269,51 +2268,51 @@ imperator_invictus = { link = { imp = 4296 imp = 4286 ck3 = 3938 } # Zidava, Blandiana -> Alvinc link = { imp = 4503 ck3 = 3929 } # Marcodava -> Marosvasarhely link = { imp = 4502 ck3 = 3927 } # Sandava -> Szaszregen - link = { imp = 4501 ck3 = 540 } # Caput Stenarum -> Szekelyfold - link = { imp = 4292 imp = 4281 ck3 = 3940 } # Comidava, Caput Stenarum -> Fogaras + link = { imp = 4501 ck3 = 540 } # Stenarum -> Szekelyfold + link = { imp = 4292 imp = 4281 ck3 = 3940 } # Comidava, Stenarum -> Fogaras link = { imp = 4500 ck3 = 3944 } # Hargita -> Sepsiszentgyorgy link = { imp = 4858 ck3 = 3874 ck3 = 3900 } # Metanastia -> Svarvas, Debrecen link = { imp = 4857 ck3 = 3867 } # Tisia -> Tur - link = { imp = 4883 ck3 = 3913 ck3 = 3907 } # Voconis -> Nagyszolos, Szatmar + link = { imp = 4883 ck3 = 3913 ck3 = 3907 } # Voconis* -> Nagyszolos, Szatmar link = { imp = 4905 ck3 = 3914 ck3 = 3917 } # Patridava -> Tecso, Huszt - link = { imp = 4908 ck3 = 539 ck3 = 3908 } # Mallites -> Marmaros, Nagybanya - link = { imp = 4907 ck3 = 3923 } # Vidava -> Laposbanya - link = { imp = 4882 ck3 = 3910 ck3 = 3909 ck3 = 3911 } # Olate -> Kraszna, Szilagy, Tasnad + link = { imp = 4908 ck3 = 539 ck3 = 3908 } # Mallites* -> Marmaros, Nagybanya + link = { imp = 4907 ck3 = 3923 } # Vidava* -> Laposbanya + link = { imp = 4882 ck3 = 3910 ck3 = 3909 ck3 = 3911 } # Olate* -> Kraszna, Szilagy, Tasnad link = { imp = 4508 imp = 4509 ck3 = 3921 } # Samum, Porolissum -> Des link = { imp = 4511 imp = 4510 ck3 = 3925 } # Optatiana, Resculum -> Banffyhunyad link = { imp = 4506 ck3 = 3926 ck3 = 3928 } # Napoca -> Koloszvar, Aranyosbanya link = { imp = 4505 ck3 = 3924 } # Potaissa -> Torda link = { imp = 4504 imp = 4507 ck3 = 3922 } # Brancona, Arcobara -> Szek - link = { imp = 4910 ck3 = 3946 ck3 = 5035 ck3 = 3919 } # Attidava -> Gyergyoszentmiklos, Vatra Dornei, Beszterce + link = { imp = 4910 ck3 = 3946 ck3 = 5035 ck3 = 3919 } # Attidava* -> Gyergyoszentmiklos, Vatra Dornei, Beszterce link = { imp = 4909 ck3 = 3930 } # Utidava -> Csikszereda link = { imp = 4911 ck3 = 5029 } # Tamasidava -> Stoenesti link = { imp = 4294 ck3 = 3943 ck3 = 3945 } # Angustia -> Balvanyos, Kovaszna link = { imp = 4293 ck3 = 3942 ck3 = 3941 } # Ramidava -> Brasso, Torcsvar - link = { imp = 4892 ck3 = 3810 } # Ibadura -> Twardosczino - link = { imp = 4870 ck3 = 3855 ck3 = 3861 ck3 = 525 } # Maronis -> Nemetlipcse, Kesmark, Orava - link = { imp = 4871 ck3 = 3854 } # Bekum -> Liptoujvar + link = { imp = 4892 ck3 = 3810 } # Ibadura* -> Twardosczino + link = { imp = 4870 ck3 = 3855 ck3 = 3861 ck3 = 525 } # Maronis* -> Nemetlipcse, Kesmark, Orava + link = { imp = 4871 ck3 = 3854 } # Bekum* -> Liptoujvar link = { imp = 4866 ck3 = 3811 ck3 = 3833 ck3 = 3814 ck3 = 3813 } # Laugaricio -> Trenscen, Bajmoc, Turoc, Zsolna - link = { imp = 4869 ck3 = 3831 ck3 = 3847 } # Marrica -> Nyitra, Kormocbanya + link = { imp = 4869 ck3 = 3831 ck3 = 3847 } # Marrica* -> Nyitra, Kormocbanya link = { imp = 3925 ck3 = 3832 } # Felicia -> Pecsen link = { imp = 3924 ck3 = 3816 ck3 = 3834 } # Rhacatia -> Szomolany, Sasvar link = { imp = 3919 ck3 = 3815 } # Anduetium -> Poszony link = { imp = 3927 ck3 = 3934 } # Celamantia -> Somorja - link = { imp = 4868 ck3 = 3846 ck3 = 3976 ck3 = 3916 } # Brocasta -> Bars, Beny, Batorkeszi - link = { imp = 4867 ck3 = 3848 ck3 = 3849 } # Navata -> Hont, Nograd - link = { imp = 4852 ck3 = 3869 } # Burgus Quadorum -> Gyongyospata - link = { imp = 4874 ck3 = 3850 } # Astrum -> Balassagyarmat - link = { imp = 4875 ck3 = 524 ck3 = 3870 } # Antia -> Gemer, Borsod - link = { imp = 4878 ck3 = 3979 ck3 = 538 ck3 = 3876 } # Aborisia -> Szendro, Abauj, Kassa - link = { imp = 4888 ck3 = 3978 ck3 = 533 ck3 = 3862 } # Dolum -> Torna, Saris, Locse - link = { imp = 4876 ck3 = 3871 ck3 = 3886 } # Obatis -> Miskolc, Szerencs - link = { imp = 4879 ck3 = 3885 } # Mabatorum -> Zemplen - link = { imp = 4886 ck3 = 3897 ck3 = 3896 } # Obutora -> Ungvar, Varanno - link = { imp = 4926 ck3 = 3895 ck3 = 3887 ck3 = 3888 } # Dure -> Nagyberezna, Zynna, Toporo - link = { imp = 4927 ck3 = 3918 ck3 = 3894 } # Mittarium -> Okormezo, Alsoverecke - link = { imp = 4885 ck3 = 3898 ck3 = 537 ck3 = 3893 } # Tolitum -> Borsova, Bereg, Munkacz - link = { imp = 4884 ck3 = 3912 } # Acronodumia -> Nagykaroly - link = { imp = 4880 ck3 = 3890 ck3 = 3889 } # Bilatis -> Nyir, Szabolcs - link = { imp = 4877 ck3 = 3891 ck3 = 3892 } # Mebatunum -> Nagyboszormeny, Szoboszlo + link = { imp = 4868 ck3 = 3846 ck3 = 3976 ck3 = 3916 } # Brocasta* -> Bars, Beny, Batorkeszi + link = { imp = 4867 ck3 = 3848 ck3 = 3849 } # Navata* -> Hont, Nograd + link = { imp = 4852 ck3 = 3869 } # Burgus -> Gyongyospata + link = { imp = 4874 ck3 = 3850 } # Astrum* -> Balassagyarmat + link = { imp = 4875 ck3 = 524 ck3 = 3870 } # Antia* -> Gemer, Borsod + link = { imp = 4878 ck3 = 3979 ck3 = 538 ck3 = 3876 } # Aborisia* -> Szendro, Abauj, Kassa + link = { imp = 4888 ck3 = 3978 ck3 = 533 ck3 = 3862 } # Dolum* -> Torna, Saris, Locse + link = { imp = 4876 ck3 = 3871 ck3 = 3886 } # Obatis* -> Miskolc, Szerencs + link = { imp = 4879 ck3 = 3885 } # Mabatorum* -> Zemplen + link = { imp = 4886 ck3 = 3897 ck3 = 3896 } # Obutora* -> Ungvar, Varanno + link = { imp = 4926 ck3 = 3895 ck3 = 3887 ck3 = 3888 } # Dure* -> Nagyberezna, Zynna, Toporo + link = { imp = 4927 ck3 = 3918 ck3 = 3894 } # Mittarium* -> Okormezo, Alsoverecke + link = { imp = 4885 ck3 = 3898 ck3 = 537 ck3 = 3893 } # Tolitum* -> Borsova, Bereg, Munkacz + link = { imp = 4884 ck3 = 3912 } # Acronodumia* -> Nagykaroly + link = { imp = 4880 ck3 = 3890 ck3 = 3889 } # Bilatis* -> Nyir, Szabolcs + link = { imp = 4877 ck3 = 3891 ck3 = 3892 } # Mebatunum* -> Nagyboszormeny, Szoboszlo link = { imp = 4853 ck3 = 523 ck3 = 3948 } # Anartia -> Hewes, Eger link = { imp = 4854 ck3 = 3802 ck3 = 3804 ck3 = 3868 } # Anartiana -> Cegled, Kecskemet, Szolnok link = { imp = 4855 ck3 = 522 } # Ocara -> Pest @@ -2323,11 +2322,11 @@ imperator_invictus = { link = { imp = 4846 ck3 = 3864 } # Tibiscua -> Zenta link = { comment = "NORTH SERBIA BY RADU" } link = { imp = 4264 ck3 = 3881 } # Tibiscum -> Karansebes - link = { imp = 4262 ck3 = 4976 } # Ad Pannonios -> Mehadia + link = { imp = 4262 ck3 = 4976 } # AdPannonios -> Mehadia link = { imp = 4261 ck3 = 3882 } # Putea -> Kraso - link = { imp = 4833 imp = 4828 imp = 4829 imp = 4265 ck3 = 3973 } # Bersovia, Vallum Romanum, Centum Putea, Caput Bubali -> Boksanbanya - link = { imp = 4263 ck3 = 4975 } # Ad Scorfulas -> Orsova - link = { imp = 4260 ck3 = 3884 } # Castra Arcidava -> Fehertemplom + link = { imp = 4833 imp = 4828 imp = 4829 imp = 4265 ck3 = 3973 } # Bersovia, Vallum Romanum, Centeum Putea, Bubali -> Boksanbanya + link = { imp = 4263 ck3 = 4975 } # AdScorfulas -> Orsova + link = { imp = 4260 ck3 = 3884 } # Arcidava -> Fehertemplom link = { imp = 4827 ck3 = 3883 } # Lederata -> Ersomlyo link = { imp = 4826 ck3 = 3877 } # Tricomium -> Kevevar link = { imp = 4831 ck3 = 3878 } # Ad Sextum -> Pancsova @@ -2346,7 +2345,7 @@ imperator_invictus = { link = { imp = 4809 ck3 = 4998 } # Piephigia -> Radovanu link = { imp = 4811 ck3 = 4997 } # Sornus -> Calarasi link = { imp = 4271 ck3 = 5007 } # Confluentiana -> Filiasi - link = { imp = 4275 imp = 4274 ck3 = 4978 } # Ad Mutriam, Confluentia Malvensis -> Targu Jiu + link = { imp = 4275 imp = 4274 ck3 = 4978 } # AdMutrium, Confluenta -> Targu Jiu link = { imp = 4282 imp = 4283 ck3 = 3932 } # Sarmizegetusa, Iscronia -> Harszoc link = { imp = 4279 ck3 = 4983 } # Dumbrava -> Strehaia link = { imp = 4211 ck3 = 4979 } # Drobeta -> Baia de Arama @@ -2355,7 +2354,7 @@ imperator_invictus = { link = { imp = 4812 ck3 = 5002 } # Sensia -> Ploiesti link = { imp = 4805 ck3 = 5000 } # Cotesia -> Buzau link = { imp = 4814 ck3 = 4989 } # Netindava -> Tabla Butii - link = { imp = 4824 ck3 = 4980 } # Confluentia Roxolania -> Zoresti + link = { imp = 4824 ck3 = 4980 } # Confluentiana -> Zoresti link = { imp = 4803 ck3 = 4977 } # Rhamidava -> Dumbraveni link = { imp = 4804 ck3 = 5004 } # Britolagia -> Ramnicu Sarat link = { imp = 4808 ck3 = 5001 } # Isteriana -> Slobozia @@ -2364,12 +2363,12 @@ imperator_invictus = { link = { imp = 4822 ck3 = 4993 } # Ciagisiana -> Pitesti link = { imp = 4820 ck3 = 4988 } # Ciagisia -> Rusii de Vede link = { imp = 4273 imp = 4280 ck3 = 5005 } # Buridava, Arutela -> Polovragi - link = { imp = 4269 imp = 4272 ck3 = 5006 } # Rusidava, Pons Aluti -> Govora + link = { imp = 4269 imp = 4272 ck3 = 5006 } # Rusidava, PonsAluti -> Govora link = { imp = 4268 ck3 = 4985 } # Acidava -> Craiova link = { imp = 4270 ck3 = 4987 } # Pelendava -> Dragasani link = { imp = 4278 ck3 = 4984 } # Amutria -> Segarcea - link = { imp = 4276 ck3 = 4981 } # Castra Bistrita -> Calafat - link = { imp = 4266 imp = 4267 ck3 = 4986 } # Romula Saldensica, Castris Novis -> Corabia + link = { imp = 4276 ck3 = 4981 } # CastraBistria -> Calafat + link = { imp = 4266 imp = 4267 ck3 = 4986 } # Romula, CastrisNovis -> Corabia link = { imp = 4819 ck3 = 4994 } # Ordessia -> Costesti link = { imp = 4818 ck3 = 514 ck3 = 4992 } # Pinion -> Turnu, Glavacioc link = { imp = 4817 ck3 = 4990 } # Tiasum -> Giurgiu @@ -2380,48 +2379,48 @@ imperator_invictus = { link = { imp = 3631 ck3 = 2049 ck3 = 2460 ck3 = 2074 ck3 = 2075 } # Petinesca -> BIEL, NEUCHATEL, PONTARLIER, MORTEAU link = { imp = 3630 ck3 = 2047 } # Aventicum -> THUN link = { imp = 3614 ck3 = 2046 } # Brenodunum -> BERN - link = { imp = 3612 imp = 3610 imp = 3620 imp = 3609 ck3 = 2039 } # Eudracinum, Darantasia, Obilonna, Ad Publicanos -> AOSTA + link = { imp = 3612 imp = 3610 imp = 3620 imp = 3609 ck3 = 2039 } # Eudracinum, Darantasia, Obilonna, AdPublicanos -> AOSTA link = { imp = 3629 ck3 = 2037 ck3 = 2038 } # Lausonna -> LAUSANNE, MARTIGNY link = { imp = 3624 ck3 = 2035 ck3 = 2036 } # Genava -> GENEVA, THONON-LES-BAINS link = { comment = "BENELUX BY RADU" } link = { imp = 3675 ck3 = 2128 ck3 = 2125 ck3 = 2123 } # Cortoriacum -> VEURNE, YPRES, COURTRAI link = { imp = 3727 ck3 = 2093 } # Marcomagus -> DUREN - link = { imp = 3728 ck3 = 2685 ck3 = 2684 } # Icorigium -> NAUENAHR, PRUM - link = { imp = 3730 ck3 = 2697 } # Vicus Voclannionum -> COCHEM + link = { imp = 3728 ck3 = 2685 ck3 = 2684 } # Icorigum -> NAUENAHR, PRUM + link = { imp = 3730 ck3 = 2697 } # Ausava -> COCHEM link = { imp = 3726 ck3 = 2085 } # Beda -> BEDA link = { imp = 3689 ck3 = 2699 } # Andethanna -> VIANDEN link = { imp = 3687 imp = 3688 ck3 = 2082 } # Caranusca, Ricciacum -> LUXEMBOURG link = { imp = 3686 ck3 = 2095 } # Eposium -> VIRTON - link = { imp = 3703 ck3 = 2091 } # Remia -> BOUILLON - link = { imp = 3704 ck3 = 2122 } # Nervia Prima -> COUVIN - link = { imp = 3705 ck3 = 2116 } # Nervia Secunda -> DINANT + link = { imp = 3703 ck3 = 2091 } # BataviaMeridionalis -> BOUILLON + link = { imp = 3704 ck3 = 2122 } # BataviaCentralis -> COUVIN + link = { imp = 3705 ck3 = 2116 } # BataviaSeptentrionalis -> DINANT link = { imp = 3680 ck3 = 2098 } # Geminiacum -> NAMUR - link = { imp = 3681 ck3 = 2097 } # Momalle -> [liege|E] + link = { imp = 3681 ck3 = 2097 } # Tungrorum -> LIEGE link = { imp = 3685 ck3 = 2449 } # Orolaunum -> CLERVAUX - link = { imp = 3729 ck3 = 2089 } # Epternacus -> DIEKIRCH + link = { imp = 3729 ck3 = 2089 } # Minerica -> DIEKIRCH link = { imp = 3684 ck3 = 2686 ck3 = 2090 } # Nasagus -> CHINY, BASTOGNE link = { imp = 3683 ck3 = 2687 } # Vervigium -> SAINT-HUBERT - link = { imp = 3682 ck3 = 2096 } # Amanium -> HUY + link = { imp = 3682 ck3 = 2096 } # Armianum -> HUY link = { imp = 3719 ck3 = 2094 ck3 = 2448 } # Belsonancum -> LA ROCHE, LIMBOURG - link = { imp = 3718 ck3 = 2092 } # Aquae Granni -> AACHEN - link = { imp = 3716 ck3 = 2683 } # Iuliacum -> ESCHWEILER + link = { imp = 3718 ck3 = 2092 } # AquaeGranni -> AACHEN + link = { imp = 3716 ck3 = 2683 } # Iullacum -> ESCHWEILER link = { imp = 3710 imp = 3709 ck3 = 2099 } # Catualium, Traiectus -> MAASTRICHT link = { imp = 3708 ck3 = 2111 } # Teudurum -> TURNHOUT - link = { imp = 3706 ck3 = 2105 } # Tienen -> LEUVEN + link = { imp = 3706 ck3 = 2105 } # Condacum -> LEUVEN link = { imp = 3707 ck3 = 2107 } # Andellium -> BRUSSELS link = { imp = 3679 ck3 = 2117 } # Vodgoriacum -> MONS link = { imp = 3676 imp = 3041 ck3 = 2120 } # Feliciacum, Turnacum -> ATH link = { imp = 3678 ck3 = 2114 } # Condacum -> GHENT - link = { imp = 3677 ck3 = 2124 } # Asse -> ROESELARE + link = { imp = 3677 ck3 = 2124 } # Bruggas -> ROESELARE link = { imp = 3721 ck3 = 2084 } # Confluentes -> KOBLENZ - link = { imp = 7738 ck3 = 2086 } # Rigomagus -> ADENAU + link = { imp = 7738 ck3 = 2086 } # Remagus -> ADENAU link = { imp = 3720 ck3 = 2087 } # Bonna -> BONN link = { imp = 3717 ck3 = 2088 } # Novaesium -> COLOGNE - link = { imp = 3715 ck3 = 2102 ck3 = 2682 } # Asciburgium -> GLADBACH, NEUSS - link = { imp = 3714 ck3 = 2104 ck3 = 2101 } # Castra Vetera -> KLEVE, MOERS + link = { imp = 3715 ck3 = 2102 ck3 = 2682 } # Sablones -> GLADBACH, NEUSS + link = { imp = 3714 ck3 = 2104 ck3 = 2101 } # CastraVetera -> KLEVE, MOERS link = { imp = 3711 ck3 = 2100 } # Blariacum -> EINDHOVEN - link = { imp = 3712 ck3 = 2103 ck3 = 2450 } # Harenatium -> NIJMEGEN, GELDERN - link = { imp = 3713 ck3 = 2109 ck3 = 2110 } # Ad Duodecimum -> BREDA, TILBURG + link = { imp = 3712 ck3 = 2103 ck3 = 2450 } # Batavodurum -> NIJMEGEN, GELDERN + link = { imp = 3713 ck3 = 2109 ck3 = 2110 } # AdDuodecimum -> BREDA, TILBURG link = { imp = 3850 ck3 = 2427 ck3 = 2425 } # Chamoria -> APELDOORN, TIEL link = { imp = 3848 ck3 = 2406 ck3 = 2424 ck3 = 2451 } # Traiectum -> AMSTERDAM, UTRECHT, AMERSFOORT link = { imp = 3847 ck3 = 2407 ck3 = 2405 ck3 = 2412 ck3 = 2409 ck3 = 2408 } # Baduhenna -> AALKMAR, HAARLEM, WAADEILANNEN, MEDEMBLIK, EDAM @@ -2431,158 +2430,158 @@ imperator_invictus = { link = { imp = 3844 ck3 = 2113 ck3 = 2108 ck3 = 2106 ck3 = 2112 } # Fletio -> BERGEN OP ZOOM, ROSENDAAL, ANTWERP, MIDDELBURG link = { imp = 3843 ck3 = 2115 } # Ganuenta -> BRUGES link = { comment = "SOUTHERN IBERIAN PENINSULA BY RADU" } - link = { imp = 1415 ck3 = 1838 ck3 = 1991 } # Tharsis -> SERPA, NIEBLA - link = { imp = 1416 ck3 = 1992 } # Fons Siccus -> ZAFRA - link = { imp = 1277 imp = 1280 ck3 = 1972 } # Ad Morum, Tagili -> LORCA + link = { imp = 1415 ck3 = 1838 ck3 = 1991 } # TurduliaMeridionalis -> SERPA, NIEBLA + link = { imp = 1416 ck3 = 1992 } # TurduliaCentralis -> ZAFRA + link = { imp = 1277 imp = 1280 ck3 = 1972 } # AdMorum, Tagili -> LORCA link = { imp = 1397 imp = 1398 imp = 1392 imp = 1385 ck3 = 1978 } # Ebura, Calecula, Antecaria, Elvira -> GRANADA link = { imp = 1287 imp = 1396 ck3 = 1976 } # Salaria, Vergilia -> QUESADA link = { imp = 1281 imp = 1285 ck3 = 1975 } # Basti, Accis -> GUADIZ link = { imp = 1279 ck3 = 1974 } # Tutugi -> BAZA link = { imp = 1275 imp = 1039 ck3 = 1971 } # Elioucroca, Asso -> CARAVACA DE LA CRUZ link = { imp = 1251 imp = 1040 ck3 = 1970 } # Segisa, Begastrum -> CIEZA - link = { imp = 1372 imp = 1371 imp = 1376 imp = 1386 ck3 = 1979 } # Segida, Astigi, Sabetanum, Claritas Iulia -> CABRA + link = { imp = 1372 imp = 1371 imp = 1376 imp = 1386 ck3 = 1979 } # Segida, Astigi, Sabetanum, ClaritasIulia -> CABRA link = { imp = 1374 imp = 1370 imp = 1355 ck3 = 1980 } # Carmo, Basilippo, Hispalis -> CARMONA - link = { imp = 1353 imp = 1357 imp = 1360 ck3 = 1981 } # Orippo, Osset, Lucurgentum -> SEVILLA + link = { imp = 1353 imp = 1357 imp = 1360 ck3 = 1981 } # Urgia, Osset, Lucurgentum -> SEVILLA link = { imp = 1346 imp = 1349 imp = 1352 imp = 1351 ck3 = 1982 } # Asido, Onoba, Ocuri, Turirecina -> ARCOS - link = { imp = 1379 imp = 1447 imp = 1443 imp = 1384 imp = 1380 ck3 = 1986 } # Sucia, Marianus Mons, Edeba, Baecula, Isiturgis -> ANDUJAR + link = { imp = 1379 imp = 1447 imp = 1443 imp = 1384 imp = 1380 ck3 = 1986 } # Sucia, MarianusMons, Edeba, Baecula, Isiturgis -> ANDUJAR link = { imp = 1383 imp = 1394 imp = 1395 imp = 1393 imp = 1387 ck3 = 1977 } # Iliturgis, Iliturgicola, Tucci, Ipolcobulcola, Ituci -> JAEN - link = { imp = 1388 imp = 1369 imp = 1375 imp = 1390 imp = 1391 imp = 1389 ck3 = 1984 } # Anticaria, Urso, Lauro, Igabrum, Cisimbrium, Ad Gemellas -> ANTEQUERA + link = { imp = 1388 imp = 1369 imp = 1375 imp = 1390 imp = 1391 imp = 1389 ck3 = 1984 } # IlipulaMinor, Urso, Lauro, Igabrum, Cisimbrium, AdGemellas -> ANTEQUERA link = { imp = 1354 imp = 1364 imp = 1368 imp = 1365 ck3 = 1983 } # Carissa, Arunda, Irni, Nescania -> MORON - link = { imp = 1377 imp = 1442 imp = 1378 imp = 1446 imp = 1441 ck3 = 1995 } # Corduba, Mariana Baetica, Epora, Ad Decimum, Mellaria -> CORDOBA + link = { imp = 1377 imp = 1442 imp = 1378 imp = 1446 imp = 1441 ck3 = 1995 } # Corduba, Mariana, Epora, AdDecemum, Mellaria -> CORDOBA link = { imp = 1440 imp = 1444 ck3 = 1988 } # Baedro, Solia -> PEDROCHE - link = { imp = 1411 imp = 1404 ck3 = 1999 } # Iporca, Flavium Velares -> GUADIATO + link = { imp = 1411 imp = 1404 ck3 = 1999 } # Iporca, FlaviumVelares -> GUADIATO link = { imp = 1412 imp = 1405 imp = 1409 imp = 1373 ck3 = 1994 } # Lacunis, Regina, Munigua, Naeva -> CANTILLANA - link = { imp = 1414 imp = 1417 imp = 1359 imp = 1410 imp = 1356 ck3 = 1993 } # Luxia, Arucci, Ilipla, Ilipa, Italica -> TRIANA + link = { imp = 1414 imp = 1417 imp = 1359 imp = 1410 imp = 1356 ck3 = 1993 } # Fodinae, Arucci, Ilpulla, Curiga, Italica -> TRIANA link = { imp = 1408 imp = 1407 ck3 = 1997 } # Phornakis, Iulipa -> HORNACHOS link = { imp = 1418 imp = 1402 imp = 1401 imp = 1420 ck3 = 1990 } # Seria, Perceiana, Ugultunia, Varna -> ILERENA - link = { imp = 1421 imp = 1419 ck3 = 1836 } # Luserium, Turdulia Inferioris -> OLIVENZA - link = { imp = 1424 imp = 1429 ck3 = 1835 } # Dipo, Vicus Battalius -> BADAJOZ + link = { imp = 1421 imp = 1419 ck3 = 1836 } # Luserium, TurduliaSeptentrionalis -> OLIVENZA + link = { imp = 1424 imp = 1429 ck3 = 1835 } # Dipo, CelticaInferioris -> BADAJOZ link = { imp = 1436 imp = 1403 ck3 = 1996 } # Metellinum, Caspiana -> MEDELLIN link = { imp = 1406 ck3 = 1998 } # Artigi -> DON LLORENTE - link = { imp = 1460 imp = 1459 imp = 1439 ck3 = 1989 } # Sattalicia, Messicia, Mirobriga -> ALMADER + link = { imp = 1460 imp = 1459 imp = 1439 ck3 = 1989 } # Metturicia, Messicia, Mirobriga -> ALMADER link = { imp = 1449 imp = 1448 ck3 = 1987 } # Oretum, Carcuvium -> ALARCOS - link = { imp = 1451 ck3 = 1963 } # Ad Murum -> CALATRAVA - link = { imp = 1271 ck3 = 1965 } # Caput -> TOMELLOSO - link = { imp = 1257 imp = 1026 imp = 1450 ck3 = 1966 } # Mentesa, Laminium, Ad Turres -> MENTESA + link = { imp = 1451 ck3 = 1963 } # AdMurum -> CALATRAVA + link = { imp = 1271 ck3 = 1965 } # LobetaniaMeridionalis -> TOMELLOSO + link = { imp = 1257 imp = 1026 imp = 1450 ck3 = 1966 } # Mentesa, Laminium, AdTurres -> MENTESA link = { imp = 1286 imp = 1382 imp = 1399 imp = 1381 ck3 = 1985 } # Ilugo, Vivatia, Baesucci, Castulo -> UBEDA - link = { imp = 1258 ck3 = 2004 } # Mariana Lobetania -> REOLID + link = { imp = 1258 ck3 = 2004 } # Mariana -> REOLID link = { imp = 1254 imp = 1027 ck3 = 1967 } # Salika, Libisosa -> ALCARAZ link = { imp = 1252 ck3 = 1973 } # Ilounon -> HUESCAR - link = { imp = 1262 ck3 = 1968 } # Ad Palem -> SEGURA + link = { imp = 1262 ck3 = 1968 } # ContestaniaMeridionalis -> SEGURA link = { imp = 1256 ck3 = 1949 } # Parietinae -> ALARCON - link = { imp = 1268 ck3 = 1964 } # Egelesta -> ALCAZAR - link = { imp = 1261 ck3 = 1948 } # Ad Putea -> VALERIA - link = { imp = 1265 imp = 1255 ck3 = 1950 } # Contestania Minor, Saltigi -> VENTA DEL MORO - link = { imp = 1263 ck3 = 1939 } # Incusum -> REQUENA - link = { imp = 1250 imp = 1264 ck3 = 1940 } # Sucro, Contestania Maior -> ALBACETE + link = { imp = 1268 ck3 = 1964 } # LobetaniaOrientalis -> ALCAZAR + link = { imp = 1261 ck3 = 1948 } # AdPutea -> VALERIA + link = { imp = 1265 imp = 1255 ck3 = 1950 } # ContestaniaCentralis, Saltigi -> VENTA DEL MORO + link = { imp = 1263 ck3 = 1939 } # ContestaniaSeptentrionalis -> REQUENA + link = { imp = 1250 imp = 1264 ck3 = 1940 } # Sucro, ContestaniaOrientalis -> ALBACETE link = { imp = 1248 ck3 = 1969 } # Setabis -> ALMANSA - link = { imp = 1031 ck3 = 1854 } # Hemeroskopeion -> DENIA - link = { imp = 1034 imp = 1033 imp = 1037 imp = 1260 imp = 1259 imp = 1249 imp = 1253 ck3 = 1853 } # Ilici, Akra Leuke, Alonis, Iaspis, Fortuna, Ad Aras, Elotana -> ALICANTE + link = { imp = 1031 ck3 = 1854 } # Dianium -> DENIA + link = { imp = 1034 imp = 1033 imp = 1037 imp = 1260 imp = 1259 imp = 1249 imp = 1253 ck3 = 1853 } # Ilici, Lucentum, Alonis, Iaspis, Fortuna, AdAras, Elotana -> ALICANTE link = { imp = 1035 imp = 1038 ck3 = 1852 } # Thiar, Ilorci -> MURCIA - link = { imp = 1036 ck3 = 1851 } # Mastia -> CARTAGENA - link = { imp = 1276 imp = 1274 imp = 1273 ck3 = 1850 } # Baria, Longuntica, Ficariensis Locus -> AGUILAS - link = { imp = 1282 imp = 1278 imp = 1284 ck3 = 1849 } # Murgi, Urci, Aboula -> ALMERIA - link = { imp = 1283 ck3 = 1848 } # Abdarat -> MOTRIL + link = { imp = 1036 ck3 = 1851 } # CarthagoNova -> CARTAGENA + link = { imp = 1276 imp = 1274 imp = 1273 ck3 = 1850 } # Baria, Longuntica, FicariensisLocus -> AGUILAS + link = { imp = 1282 imp = 1278 imp = 1284 ck3 = 1849 } # Murgi, PortosMagnos, Aboula -> ALMERIA + link = { imp = 1283 ck3 = 1848 } # Abdera -> MOTRIL link = { imp = 1366 imp = 1367 ck3 = 1847 } # Menova, Saxetanum -> NERJA link = { imp = 1362 imp = 1361 imp = 1363 ck3 = 1846 } # Malaca, Suel, Cartima -> MALAGA link = { imp = 1348 imp = 1350 ck3 = 1845 } # Carteia, Lacippo -> ALGECIRAS - link = { imp = 1347 imp = 1345 ck3 = 1844 } # Baelo, Mergablum -> TARIFA - link = { imp = 1344 ck3 = 1843 } # Gadir -> CADIZ + link = { imp = 1347 imp = 1345 ck3 = 1844 } # Baelo, Mercabium -> TARIFA + link = { imp = 1344 ck3 = 1843 } # Gades -> CADIZ link = { imp = 1342 imp = 1343 ck3 = 1842 } # Hasta, Nabrissa -> JEREZ - link = { imp = 1340 imp = 1341 imp = 7665 imp = 1358 ck3 = 1841 } # Ad Rubras, Tartessos, Lacus Ligustinus, Olontigi -> ALMONTE + link = { imp = 1340 imp = 1341 imp = 7665 imp = 1358 ck3 = 1841 } # AdRubras, Tartessos, SEA, Olontigi -> ALMONTE link = { imp = 1339 ck3 = 1839 ck3 = 1840 } # Praesidium -> AYAMONTE, HUELVA - link = { imp = 1338 imp = 1335 ck3 = 1748 } # Tartessia, Baal Saphon -> FARO + link = { imp = 1338 imp = 1335 ck3 = 1748 } # Tartessia, Balsa -> FARO link = { imp = 1334 ck3 = 1747 } # Ossonoba -> SILVES link = { imp = 1337 ck3 = 1750 } # Couneia -> MERTOLA - link = { imp = 1413 ck3 = 1837 } # Serpentum -> MOURA - link = { imp = 1326 imp = 1331 imp = 1325 imp = 1332 ck3 = 1751 } # Metallum Vipescense, Arandis, Pax Iulia, Myrtilis -> BEJA - link = { imp = 1336 imp = 1330 ck3 = 1749 } # Mirobigensia, Patulus Portus -> OURIQUE - link = { imp = 1333 ck3 = 1746 } # Portus Cibilis -> LAGOS - link = { imp = 1322 imp = 1324 ck3 = 1752 } # Salacia, Mirobriga Couneia -> ALCACER DO SAL + link = { imp = 1413 ck3 = 1837 } # TurduliaOccidentalis -> MOURA + link = { imp = 1326 imp = 1331 imp = 1325 imp = 1332 ck3 = 1751 } # MetallumVipescense, Arandis, PaxIulia, Myrtilis -> BEJA + link = { imp = 1336 imp = 1330 ck3 = 1749 } # Mirobigensia, PatulusPortus -> OURIQUE + link = { imp = 1333 ck3 = 1746 } # PortusCibilis -> LAGOS + link = { imp = 1322 imp = 1324 ck3 = 1752 } # Salacia, Mirobriga -> ALCACER DO SAL link = { comment = "CENTRAL IBERIAN PENINSULA BY RADU" } - link = { imp = 1319 ck3 = 1754 } # Olisipo -> LISBOA - link = { imp = 1046 imp = 1180 ck3 = 1914 } # Salmantica, Vettonia Deserta -> MEDINA DEL CAMPO - link = { imp = 1437 imp = 1304 imp = 1201 ck3 = 1917 } # Augustobriga Vettonia, Caellonico, Vettonia Inferioris -> ALMARAZ + link = { imp = 1319 ck3 = 1754 } # Ierabriga -> LISBOA + link = { imp = 1046 imp = 1180 ck3 = 1914 } # Salmantica, VettoniaDeserta -> MEDINA DEL CAMPO + link = { imp = 1437 imp = 1304 imp = 1201 ck3 = 1917 } # Augustobriga, Caellonico, CarpetaniaInferioris -> ALMARAZ link = { imp = 1227 ck3 = 1931 } # Lagni -> MEDINACELI link = { imp = 1226 ck3 = 1930 } # Mallia -> SIGUENZA - link = { imp = 1219 ck3 = 1926 } # Uxama Argaela -> UCEDA + link = { imp = 1219 ck3 = 1926 } # UxamaArgaela -> UCEDA link = { imp = 1225 imp = 1223 ck3 = 1927 } # Tucris, Segontia -> GUDALAJARA link = { imp = 1211 imp = 1210 imp = 1224 ck3 = 1944 } # Ocules, Opta, Loutia -> ZURITA link = { imp = 1207 ck3 = 1929 } # Caracca -> VILLAREJO DE SALVANES link = { imp = 1203 ck3 = 1928 } # Titulcia -> ARGANDA - link = { imp = 1400 imp = 1423 imp = 1431 ck3 = 1834 } # Augusta Emerita, Evandriana, Ad Sorores -> MERIDA - link = { imp = 1425 imp = 1427 ck3 = 1775 } # Ad Atrum Flumen, Matsuarum -> CRATO + link = { imp = 1400 imp = 1423 imp = 1431 ck3 = 1834 } # AugustaEmerita, Evandriana, AdSorores -> MERIDA + link = { imp = 1425 imp = 1427 ck3 = 1775 } # AdAtrumFlumen, Matsuarum -> CRATO link = { imp = 1469 ck3 = 2002 } # Mago -> MINORCA link = { imp = 1467 imp = 1468 ck3 = 2001 } # Pollentia, Tuci -> MALLORCA link = { imp = 1465 imp = 1466 ck3 = 8735 } # Palma, Guium -> Palma link = { imp = 1464 ck3 = 2000 } # Ebusus -> IVIZA - link = { imp = 1323 imp = 1422 ck3 = 1777 } # Ebora, Ad Muratum -> EVORA + link = { imp = 1323 imp = 1422 ck3 = 1777 } # Ebora, AdMuratum -> EVORA link = { imp = 1327 ck3 = 1780 } # Calanta -> VIANA DO ALENTEJO - link = { imp = 1428 ck3 = 1776 } # Celtica Superioris -> ELVAS - link = { imp = 1315 imp = 1320 imp = 1328 ck3 = 1779 } # Aritium Praetorium, Malateca, Sefiana -> MONTEMOR - link = { imp = 1318 imp = 1321 ck3 = 1753 } # Barbarion, Caetobriga -> SETUBAL - link = { imp = 1309 imp = 1329 ck3 = 1778 } # Vicus Carnalocensis, Taporia -> AVIS + link = { imp = 1428 ck3 = 1776 } # CelticaSuperioris -> ELVAS + link = { imp = 1315 imp = 1320 imp = 1328 ck3 = 1779 } # AritiumPraetorium, Malateca, Elbocoria -> MONTEMOR + link = { imp = 1318 imp = 1321 ck3 = 1753 } # Olisipo, Caetobriga -> SETUBAL + link = { imp = 1309 imp = 1329 ck3 = 1778 } # VicusCarnalocensis, Taporia -> AVIS link = { imp = 1310 ck3 = 1774 } # Ammaia -> NISA - link = { imp = 1430 ck3 = 1832 } # Ad Fines Hiberiae -> ALCANTARA + link = { imp = 1430 ck3 = 1832 } # AdFines -> ALCANTARA link = { imp = 1426 ck3 = 1833 } # Budua -> ZALACA - link = { imp = 1434 imp = 1432 ck3 = 1954 } # Tamusia, Norba -> CACERES - link = { imp = 1454 imp = 1435 ck3 = 1956 } # Brutobriga, Lacipea -> CASTILBLANCO - link = { imp = 340 ck3 = 1955 } # Turgalium -> TRUJILLO - link = { imp = 1462 imp = 1461 ck3 = 1957 } # Catonita, Bocouriqua -> LA JARA - link = { imp = 1463 ck3 = 1961 } # Solorbes -> CABANEROS - link = { imp = 1456 imp = 1455 ck3 = 1962 } # Pilonicoria, Satella -> LA PUEBLA DE MONTALBAN - link = { imp = 1458 ck3 = 1960 } # Dunites -> MALAGON - link = { imp = 1452 imp = 1457 ck3 = 1959 } # Alaba, Solicia Carpetania -> QUINTANAR + link = { imp = 1434 imp = 1432 ck3 = 1954 } # Turgalium, Norba -> CACERES + link = { imp = 1454 imp = 1435 ck3 = 1956 } # CalvriaMeridionalis, Lacipea -> CASTILBLANCO + link = { imp = 340 ck3 = 1955 } # CalvriaSeptentrionalis -> TRUJILLO + link = { imp = 1462 imp = 1461 ck3 = 1957 } # Aelariquia, Bocouriqua -> LA JARA + link = { imp = 1463 ck3 = 1961 } # Aeturiquia -> CABANEROS + link = { imp = 1456 imp = 1455 ck3 = 1962 } # Pilonicoria, Uloquia -> LA PUEBLA DE MONTALBAN + link = { imp = 1458 ck3 = 1960 } # Duniquia -> MALAGON + link = { imp = 1452 imp = 1457 ck3 = 1959 } # Alaba, Solicia -> QUINTANAR link = { imp = 1025 ck3 = 1958 } # Consabura -> OCANA - link = { imp = 1024 imp = 1204 ck3 = 1919 } # Toletum, Ioppe Iberia -> TOLEDO - link = { imp = 1023 imp = 1206 ck3 = 1923 } # Mantua Carpetania, Complutum -> MADRID + link = { imp = 1024 imp = 1204 ck3 = 1919 } # Toletum, CarpetaniaSeptentrionalis -> TOLEDO + link = { imp = 1023 imp = 1206 ck3 = 1923 } # Mantua, Complutum -> MADRID link = { imp = 1202 ck3 = 1920 } # Vaddua -> MAQUEDA - link = { imp = 1438 imp = 1200 ck3 = 1918 } # Caesarobriga, Vettonia Superioris -> TALAVERA - link = { imp = 1022 imp = 1177 imp = 1193 imp = 1205 imp = 1195 ck3 = 1924 } # Segovia, Cauca, Confluentia, Carpetana Luga, Miaccum -> SEGOVIA + link = { imp = 1438 imp = 1200 ck3 = 1918 } # Caesarobriga, CarpetaniaSuperioris -> TALAVERA + link = { imp = 1022 imp = 1177 imp = 1193 imp = 1205 imp = 1195 ck3 = 1924 } # Segovia, Cauca, Confluentia, CarpetanaLuga, Miaccum -> SEGOVIA link = { imp = 1176 ck3 = 1922 } # Nivaria -> CORACERA - link = { imp = 1196 imp = 1194 imp = 1199 ck3 = 1921 } # Tullium, Avila, Platanus -> LA ADRADA - link = { imp = 1198 imp = 1197 ck3 = 1916 } # Coloricum, Ad Lippos -> SIERRA DE GREDOS - link = { imp = 1159 imp = 1049 imp = 1160 ck3 = 1913 } # Polibedenses, Mirobriga Lusitania, Sentice -> BEJAR + link = { imp = 1196 imp = 1194 imp = 1199 ck3 = 1921 } # VaccaeiaCentralis, Avila, Platanus -> LA ADRADA + link = { imp = 1198 imp = 1197 ck3 = 1916 } # Coloricum, AdLippos -> SIERRA DE GREDOS + link = { imp = 1159 imp = 1049 imp = 1160 ck3 = 1913 } # Polibedenses, Mirobriga, Sentice -> BEJAR link = { imp = 1306 imp = 1433 imp = 1305 ck3 = 1831 } # Lama, Tourmogon, Capera -> PLASENCIA link = { imp = 1307 imp = 1311 ck3 = 1830 } # Caurium, Tongorigum -> CORIA - link = { imp = 1312 imp = 1301 ck3 = 1771 } # Castra Cecilia, Igaeditania -> IDANHA + link = { imp = 1312 imp = 1301 ck3 = 1771 } # CastraCecilia, Igaeditania -> IDANHA link = { imp = 1303 imp = 1308 ck3 = 1773 } # Herminium, Aritium -> CASTELO BRANCO - link = { imp = 1300 imp = 1302 ck3 = 1770 } # Vicus Veniensis, Ocelum -> TRANCOSO - link = { imp = 1295 imp = 1299 ck3 = 1769 } # Areocelum, Centum Cellas -> VISEU + link = { imp = 1300 imp = 1302 ck3 = 1770 } # VicusVeniensis, Ocelum -> TRANCOSO + link = { imp = 1295 imp = 1299 ck3 = 1769 } # Areocelum, CentumCelas -> VISEU link = { imp = 1313 imp = 1298 ck3 = 1772 } # Tubucci, Sellium -> ABRANTES link = { imp = 1316 imp = 1317 imp = 1314 ck3 = 1755 } # Eburobrittium, Arabriga, Scallabis -> SANTAREM link = { imp = 1297 ck3 = 1756 } # Collippo -> OBIDOS link = { imp = 1294 ck3 = 1757 } # Conimbriga -> LEIRIA link = { imp = 1293 imp = 1296 ck3 = 1758 } # Aeminium, Elboconis -> COIMBRA link = { imp = 1175 ck3 = 1915 } # Septimanca -> OLMEDO - link = { imp = 1173 imp = 1179 ck3 = 1912 } # Arboukale, Vettonia Relicta -> AVILA - link = { imp = 1043 imp = 1161 ck3 = 1828 } # Ocelum Duri, Sibaris -> SALAMANCA + link = { imp = 1173 imp = 1179 ck3 = 1912 } # Arboukale, VettoniaRelicta -> AVILA + link = { imp = 1043 imp = 1161 ck3 = 1828 } # OcelumDuri, Sibaris -> SALAMANCA link = { imp = 1158 imp = 1162 ck3 = 1829 } # Cobelcorum, Bletsima -> CIDUAD RODRIGO link = { imp = 1290 ck3 = 1768 } # Aravorum -> LAMEGO link = { imp = 1292 ck3 = 2003 } # Visseria -> GRALHEIRA link = { imp = 1291 ck3 = 1759 } # Langobriga -> AVEIRO link = { comment = "NORTHERN IBERIAN PENINSULA BY RADU" } - link = { imp = 1150 ck3 = 1781 ck3 = 1761 } # Vicus Spacorum -> TUI, BRAGA - link = { imp = 1149 ck3 = 1782 } # Ad Duos Pontes -> VIGO + link = { imp = 1150 ck3 = 1781 ck3 = 1761 } # VicusSpacorum -> TUI, BRAGA + link = { imp = 1149 ck3 = 1782 } # AdDuosPontes -> VIGO link = { imp = 1008 ck3 = 1867 } # Sebendounon -> OLOT link = { imp = 1000 imp = 1002 ck3 = 1864 } # Emporiae, Iuncaria -> GIRONA link = { imp = 1003 imp = 1054 ck3 = 1863 } # Blandae, Gerunda -> LOREDO link = { imp = 1168 imp = 1169 ck3 = 1826 } # Pettavonium, Argentiolum -> BENAVENTE - link = { imp = 1172 imp = 1171 imp = 1042 ck3 = 1827 } # Vicus Aquarius, Praterion, Brigaecium -> ALBA + link = { imp = 1172 imp = 1171 imp = 1042 ck3 = 1827 } # VicusAquarius, Praterion, Brigaecium -> ALBA link = { imp = 1163 imp = 1164 ck3 = 1764 } # Zoelarum, Veniatia -> MIRANDA DO DUORO - link = { imp = 1156 imp = 1157 ck3 = 1767 } # Vicus Vagornicensis, Baniensium -> MOGADOURO - link = { imp = 1050 imp = 1166 imp = 1167 ck3 = 1763 } # Aquae Flaviae, Gigurria, Zoelia -> BRAGANCA + link = { imp = 1156 imp = 1157 ck3 = 1767 } # VicusVagornicensis, Baniensium -> MOGADOURO + link = { imp = 1050 imp = 1166 imp = 1167 ck3 = 1763 } # AquaeFlaviae, AebocosiaSeptentrionalis, AebocosiaMeridionalis -> BRAGANCA link = { imp = 1288 ck3 = 1765 } # Lamecum -> VILLA REAL - link = { imp = 1153 ck3 = 1766 } # Salacia Aebocosia -> GUIMARAES - link = { imp = 1154 imp = 1155 ck3 = 1762 } # Aquae Originae, Germinae -> CHAVEZ - link = { imp = 1151 imp = 1051 imp = 1289 ck3 = 1760 } # Limia, Bracara Augusta, Tongobriga -> PORTO - link = { imp = 1098 imp = 1095 imp = 1101 ck3 = 1808 } # Veleia, Atiliana, Belegia -> ALAVA + link = { imp = 1153 ck3 = 1766 } # Salacia -> GUIMARAES + link = { imp = 1154 imp = 1155 ck3 = 1762 } # AquaeOriginae, Germinae -> CHAVEZ + link = { imp = 1151 imp = 1051 imp = 1289 ck3 = 1760 } # Limia, BracaraAugusta, Tongobriga -> PORTO + link = { imp = 1098 imp = 1095 imp = 1101 ck3 = 1808 } # Veleia, Atiliana, Vindeleia -> ALAVA link = { imp = 1084 imp = 1087 ck3 = 1809 } # Beturri, Vareia -> LIZARRA link = { imp = 1078 imp = 1077 ck3 = 1806 } # Pompelo, Iluberis -> PAMPLONA link = { imp = 1081 imp = 1082 ck3 = 1889 } # Carta, Andelos -> TAFALLA link = { imp = 1076 ck3 = 1807 } # Iacca -> JACA link = { imp = 1080 ck3 = 8793 } # Segia -> Uncastillo - link = { imp = 1074 ck3 = 3221 } # Forum Gallorum -> ALTO ARAGON + link = { imp = 1074 ck3 = 3221 } # ForumGallorum -> ALTO ARAGON link = { imp = 1088 ck3 = 1888 } # Ilurcis -> EJEA link = { imp = 1073 imp = 1071 imp = 1072 ck3 = 1886 } # Bortina, Presuina, Gallicum -> ZUERA link = { imp = 1014 ck3 = 1873 } # Osca -> HUESCA @@ -2590,38 +2589,38 @@ imperator_invictus = { link = { imp = 1075 ck3 = 8794 } # Fibularia -> Biescas link = { imp = 1066 ck3 = 8795 } # Mendiculeia -> Monzon link = { imp = 1065 ck3 = 1874 } # Caum -> BARBASTRO - link = { imp = 1070 ck3 = 1885 } # Gallika Phlaouia -> SARINENA - link = { imp = 1064 ck3 = 1882 } # Keresos -> FRAGA - link = { imp = 1069 ck3 = 8799 ck3 = 1871 } # Ager -> Pallars Jussa, RIBAGORZA + link = { imp = 1070 ck3 = 1885 } # GallikaPhlaouia -> SARINENA + link = { imp = 1064 ck3 = 1882 } # Etobesa -> FRAGA + link = { imp = 1069 ck3 = 8799 ck3 = 1871 } # AdFines -> Pallars Jussa, RIBAGORZA link = { imp = 1010 ck3 = 1881 } # Ilerda -> LLEIDA link = { imp = 5053 ck3 = 1870 } # IMPASSIBLE TERRAIN 053 -> VIELHA link = { imp = 5132 ck3 = 1869 ck3 = 2210 } # IMPASSIBLE TERRAIN 132 -> ANDORRA, TARASCON link = { imp = 1068 ck3 = 1884 ck3 = 8800 } # Aeso -> BALAGUER, Pallars Sobira - link = { imp = 1241 ck3 = 1880 } # Otobesa -> MAIALS + link = { imp = 1241 ck3 = 1880 } # Olobesa -> MAIALS link = { imp = 1057 ck3 = 8796 } # Lesos -> Agramunt - link = { imp = 1061 ck3 = 1879 } # Ad Septimum -> PRADES + link = { imp = 1061 ck3 = 1879 } # AdSeptimum -> PRADES link = { imp = 1055 imp = 1052 ck3 = 1877 } # Sigarra, Subur -> MANRESA link = { imp = 1056 ck3 = 1878 ck3 = 8801 } # Setelsis -> URGELL, Seu d'Urgell link = { imp = 1058 ck3 = 1876 } # Orgia -> BERGA link = { imp = 1059 ck3 = 1868 } # Urgellum -> PUIGCERDA link = { imp = 1005 ck3 = 1875 } # Auso -> VIC - link = { imp = 1004 imp = 1007 ck3 = 1862 } # Lauro Iberias, Rubricatum -> BARCELONA - link = { imp = 1006 ck3 = 1861 } # Kallipolis Iberias -> SITGES + link = { imp = 1004 imp = 1007 ck3 = 1862 } # Lauro, Rubricatum -> BARCELONA + link = { imp = 1006 ck3 = 1861 } # Baetulo -> SITGES link = { imp = 1009 imp = 1053 imp = 1063 ck3 = 1860 } # Tarraco, Antistiana, Oleastrum -> TARRAGONA link = { imp = 1012 ck3 = 1859 } # Dertosa -> TORTOSA - link = { imp = 1104 imp = 1105 ck3 = 1812 } # Segontia Paramika, Ouxama Barka -> MEDINA DE POMAR - link = { imp = 1112 imp = 1020 ck3 = 1815 } # Caiellum, Aracillum -> REINOSA + link = { imp = 1104 imp = 1105 ck3 = 1812 } # SegontiaParamika, OuxamaBarka -> MEDINA DE POMAR + link = { imp = 1112 imp = 1020 ck3 = 1815 } # Caiellum, Iuliobriga -> REINOSA link = { imp = 1113 ck3 = 1817 } # Pallontion -> RIANO link = { imp = 1017 ck3 = 1805 } # Oiasso -> IRUN link = { imp = 1083 ck3 = 1804 } # Aracaeli -> IZURUM link = { imp = 1106 imp = 1099 ck3 = 1803 } # Flaviobriga, Gebala -> BILIBIO - link = { imp = 1107 ck3 = 1802 } # Brigensium -> SANTANDER + link = { imp = 1107 ck3 = 1802 } # Iuliobrigensium -> SANTANDER link = { imp = 1108 ck3 = 1801 } # Veseiasueca -> SANTIALLANA - link = { imp = 1048 imp = 1152 ck3 = 1800 } # Forum Limicorum, Aquis Querquennis -> LIMIA + link = { imp = 1048 imp = 1152 ck3 = 1800 } # ForumLimicorum, AquisQuerquennis -> LIMIA link = { imp = 1145 ck3 = 1819 } # Gemestarum -> MONFORTE DE LEMOS link = { imp = 1165 ck3 = 1818 } # Nemetobriga -> MONTERREI - link = { imp = 1127 imp = 1170 ck3 = 1820 } # Bergidum Flavium, Relicta Asturia -> PONFERRADA - link = { imp = 1093 ck3 = 1909 } # Nova Augusta -> SAN LEONARDO DE YAGUE + link = { imp = 1127 imp = 1170 ck3 = 1820 } # BergidumFlavium, Relicta -> PONFERRADA + link = { imp = 1093 ck3 = 1909 } # NovaAugusta -> SAN LEONARDO DE YAGUE link = { imp = 1019 ck3 = 1899 } # Clunia -> SAN ESTEBAN link = { imp = 1092 ck3 = 1901 } # Ouisontion -> SORIA link = { imp = 1018 imp = 1218 ck3 = 1900 } # Numantia, Voluca -> OSMA @@ -2629,70 +2628,70 @@ imperator_invictus = { link = { imp = 5182 ck3 = 3303 } # IMPASSIBLE TERRAIN 182 -> IBERIAN IMPASSIBLE TERRAIN 4 link = { imp = 1091 ck3 = 1902 } # Augustobriga -> TARAZONA link = { imp = 1011 imp = 1212 ck3 = 1891 } # Celsa, Sermonae -> BELCHITE - link = { imp = 1242 imp = 1244 ck3 = 1893 } # Lassira, Roburum -> CALACEITE - link = { imp = 1208 ck3 = 1953 } # Vicus Cuminarius -> MORA - link = { imp = 1270 imp = 1272 imp = 1269 ck3 = 1952 } # Alces, Domum, Pons Rugio -> UCLES + link = { imp = 1242 imp = 1244 ck3 = 1893 } # Lassira, IlercavoniaOrientalis -> CALACEITE + link = { imp = 1208 ck3 = 1953 } # VicusCuminarius -> MORA + link = { imp = 1270 imp = 1272 imp = 1269 ck3 = 1952 } # LobetaniaSeptentrionalis, LobetaniaOccidentalis, LobetaniaCentralis -> UCLES link = { imp = 1209 ck3 = 1951 } # Segobriga -> HUETE - link = { imp = 1233 imp = 1028 ck3 = 1947 } # Bellia Superioris, Valeria -> CUENCA - link = { imp = 1266 ck3 = 1946 } # Edetania Inferioris -> ADEMUZ - link = { imp = 1238 imp = 1217 ck3 = 1937 } # Lautumiae, Lobeton -> TERUEL - link = { imp = 1246 imp = 1215 ck3 = 1942 } # Dentum, Agiria -> MAESTRAZGO - link = { imp = 1240 imp = 1245 ck3 = 1857 } # Etobesa, Rubium -> CASTELLON DE LA PLANA + link = { imp = 1233 imp = 1028 ck3 = 1947 } # ArevaciaSuperioris, Valeria -> CUENCA + link = { imp = 1266 ck3 = 1946 } # EdetaniaInferioris -> ADEMUZ + link = { imp = 1238 imp = 1217 ck3 = 1937 } # EdetaniaSeptentrionalis, Lobeton -> TERUEL + link = { imp = 1246 imp = 1215 ck3 = 1942 } # IlercavoniaCentralis, Agiria -> MAESTRAZGO + link = { imp = 1240 imp = 1245 ck3 = 1857 } # Etobesa, IlercavoniaMeridionalis -> CASTELLON DE LA PLANA link = { imp = 1029 imp = 1235 ck3 = 1856 } # Saguntum, Sebelaci -> MURVIEDRO - link = { imp = 1236 imp = 1216 ck3 = 1941 } # Arcus, Urbiaca -> SEGORBE - link = { imp = 1234 imp = 1237 imp = 1267 ck3 = 1938 } # Edeta, Edetania Centralis, Edetania Superioris -> MONTANEJOS - link = { imp = 1214 imp = 1247 ck3 = 1943 } # Carae, Columbarium -> SIERRA DE SAN JUST + link = { imp = 1236 imp = 1216 ck3 = 1941 } # EdetaniaOrientalis, Urbiaca -> SEGORBE + link = { imp = 1234 imp = 1237 imp = 1267 ck3 = 1938 } # Edeta, EdetaniaCentralis, EdetaniaSuperioris -> MONTANEJOS + link = { imp = 1214 imp = 1247 ck3 = 1943 } # Carae, IlercavoniaSeptentrionalis -> SIERRA DE SAN JUST link = { imp = 1243 ck3 = 1892 } # Sedetania -> ALCANIZ - link = { imp = 1030 imp = 1032 ck3 = 1855 } # Valentia, Portus Sucronis -> VALENCIA + link = { imp = 1030 imp = 1032 ck3 = 1855 } # Valentia, PortusSucronis -> VALENCIA link = { imp = 1239 ck3 = 1858 } # Indibilis -> AMPOSTA - link = { imp = 1062 ck3 = 1883 } # Ad Novas Iberia -> CASPE + link = { imp = 1062 ck3 = 1883 } # AdNovas -> CASPE link = { imp = 1213 ck3 = 1934 } # Segeda -> DAROCA - link = { imp = 1230 ck3 = 1936 } # Bellia Desolata -> ALBARRACIN + link = { imp = 1230 ck3 = 1936 } # ArevaciaDesolata -> ALBARRACIN link = { imp = 1228 ck3 = 1935 } # Colenda -> MOLINA - link = { imp = 1229 imp = 1232 imp = 1231 ck3 = 1945 } # Confluenta Celtiberia, Bellia Inferioris, Bellia Relicta -> ALTO TAJO + link = { imp = 1229 imp = 1232 imp = 1231 ck3 = 1945 } # Comfluenta, ArevaciaInferioris, ArevaciaRelicta -> ALTO TAJO link = { imp = 1222 imp = 1221 ck3 = 1933 } # Okilis, Arcobriga -> ABLANQUE - link = { imp = 1220 imp = 1015 ck3 = 1932 } # Aquae Bilbitonorum, Bilbilis -> CALATAYUD - link = { imp = 1013 imp = 1090 imp = 1089 ck3 = 1887 } # Salduba, Tertakom, Cascantum -> ZARAGOZA - link = { imp = 1085 imp = 1016 ck3 = 1890 } # Barbariana, Calagurris Iulia -> TUDELA - link = { imp = 1086 ck3 = 1810 } # Tritium Magallum -> LOGRONO - link = { imp = 1184 ck3 = 1925 } # Vaccaeia Relicta -> CUELLAR + link = { imp = 1220 imp = 1015 ck3 = 1932 } # AquaeBilbitonorum, Bilbilis -> CALATAYUD + link = { imp = 1013 imp = 1090 imp = 1089 ck3 = 1887 } # Augusta, Tertakom, Cascantum -> ZARAGOZA + link = { imp = 1085 imp = 1016 ck3 = 1890 } # Barbariana, CalagurrisIulia -> TUDELA + link = { imp = 1086 ck3 = 1810 } # TritiumMagallum -> LOGRONO + link = { imp = 1184 ck3 = 1925 } # VaccaeiaRelicta -> CUELLAR link = { imp = 1182 ck3 = 1897 } # Balneos -> VALLADOLID link = { imp = 1190 imp = 1191 imp = 1192 ck3 = 1898 } # Pampligua, Rauda, Pintia -> ARANDA DE DUERO link = { imp = 1187 ck3 = 1908 } # Lacobriga -> LERMA link = { imp = 1188 ck3 = 1907 } # Autraca -> ATAPUERCA - link = { imp = 1096 imp = 1094 ck3 = 1811 } # Vindeleia, Auca -> NAJERA - link = { imp = 1103 imp = 1102 imp = 1097 imp = 1100 ck3 = 1813 } # Segisama Iulia, Bravum, Salionka, Tritium -> MIRANDA DE EBRO + link = { imp = 1096 imp = 1094 ck3 = 1811 } # Virovesca, Auca -> NAJERA + link = { imp = 1103 imp = 1102 imp = 1097 imp = 1100 ck3 = 1813 } # SegisamaIulia, Bravum, Salionka, Tritium -> MIRANDA DE EBRO link = { imp = 1109 ck3 = 1904 } # Maggiaviensium -> SEDANO link = { imp = 1110 ck3 = 1814 } # Camarica -> AMAYA link = { imp = 1185 imp = 1186 ck3 = 1906 } # Camala, Viminacium -> BURGOS - link = { imp = 1021 imp = 1189 ck3 = 1905 } # Palantia, Lateremum -> PALENCIA - link = { imp = 1183 imp = 1181 ck3 = 1896 } # Vaccaeia Deserta, Gella -> SIMANCAS + link = { imp = 1021 imp = 1189 ck3 = 1905 } # Palantia, VaccaeiaSeptentrionalis -> PALENCIA + link = { imp = 1183 imp = 1181 ck3 = 1896 } # VaccaeiaDeserta, Gella -> SIMANCAS link = { imp = 1174 ck3 = 1894 ck3 = 1895 } # Amallobriga -> ZAMORA, TORO link = { imp = 1041 ck3 = 1910 } # Intercatia -> VILLAFAFILA link = { imp = 1178 ck3 = 1911 } # Comeniaca -> VALENCIA DE CAMPOS link = { imp = 1044 ck3 = 1825 } # Lancia -> GUARDO - link = { imp = 1119 imp = 1120 imp = 1111 ck3 = 1816 } # Legio Gemina, Vallata, Equosera -> LEON - link = { imp = 1045 imp = 1121 ck3 = 1824 } # Asturicia, Interamnium -> VILLABLINO - link = { imp = 1122 imp = 1117 ck3 = 1822 } # Spadonium, Memoriana -> SARRIA - link = { imp = 1123 imp = 1126 ck3 = 1823 } # Mons Rubeum, Luggonia -> CANGAS DEL NARCEA - link = { imp = 1125 imp = 1128 ck3 = 1821 } # Villadonga, Uttaris -> ASTORGA - link = { imp = 1147 imp = 1146 ck3 = 1799 } # Lougia, Interamicia -> OURENSE - link = { imp = 1143 imp = 1142 ck3 = 1784 } # Baedia, Castellum Meidunium -> MONTE FARO - link = { imp = 1141 ck3 = 1791 } # Aquae Quintinae -> MELIDE - link = { imp = 1047 ck3 = 1792 } # Lucus -> LUGO + link = { imp = 1119 imp = 1120 imp = 1111 ck3 = 1816 } # LegioGemina, Vallata, Equosera -> LEON + link = { imp = 1045 imp = 1121 ck3 = 1824 } # AsturicaAugusta, InteramniumFlavium -> VILLABLINO + link = { imp = 1122 imp = 1117 ck3 = 1822 } # AsturiaMeridionalis, Memoriana -> SARRIA + link = { imp = 1123 imp = 1126 ck3 = 1823 } # AsturiaCentralis, AsturiaOrientalis -> CANGAS DEL NARCEA + link = { imp = 1125 imp = 1128 ck3 = 1821 } # AsturiaOccidentalis, Uttaris -> ASTORGA + link = { imp = 1147 imp = 1146 ck3 = 1799 } # Equasia, ForumGiguorrum -> OURENSE + link = { imp = 1143 imp = 1142 ck3 = 1784 } # Tamagania, CastellumMeidunium -> MONTE FARO + link = { imp = 1141 ck3 = 1791 } # AquaeQuintinae -> MELIDE + link = { imp = 1047 ck3 = 1792 } # LucusAugusti -> LUGO link = { imp = 1135 ck3 = 1793 } # Cibarcia -> CARBALLIDO link = { imp = 1129 ck3 = 1790 } # Caranicum -> VILALBA link = { imp = 1139 imp = 1140 ck3 = 1785 } # Assegonia, Brevis -> SANTIAGO DE COMPOSTELA - link = { imp = 1138 imp = 1148 ck3 = 1783 } # Noouion, Aquae Gallaecia -> PADRON - link = { imp = 1115 ck3 = 1798 } # Ad Mare -> VILLAVICIOSA - link = { imp = 1116 ck3 = 1797 } # Lucus Asturum -> OVIEDO + link = { imp = 1138 imp = 1148 ck3 = 1783 } # Noouion, AquaeCalidae -> PADRON + link = { imp = 1115 ck3 = 1798 } # AdMare -> VILLAVICIOSA + link = { imp = 1116 ck3 = 1797 } # LucusAsturum -> OVIEDO link = { imp = 1114 ck3 = 1796 } # Gigia -> GIJON link = { imp = 1118 ck3 = 1795 } # Flavionavia -> PRAVIA - link = { imp = 1124 ck3 = 1794 } # Paesicia -> LUARCA - link = { imp = 1133 imp = 1134 ck3 = 1789 } # Varrinia, Varina Marinia -> MONDONEDO - link = { imp = 1131 imp = 1132 ck3 = 1788 } # Phlaouia Lambris, Arronia -> FERROL - link = { imp = 1136 imp = 1130 ck3 = 1787 } # Aviliobris, Flavium Brigantium -> LA CORUNA - link = { imp = 1137 ck3 = 1786 } # Artabron Limen -> BETANZOS + link = { imp = 1124 ck3 = 1794 } # AsturiaSeptentrionalis -> LUARCA + link = { imp = 1133 imp = 1134 ck3 = 1789 } # Addovia, VarinaMarinia -> MONDONEDO + link = { imp = 1131 imp = 1132 ck3 = 1788 } # PhlaouiaLambris, Arronia -> FERROL + link = { imp = 1136 imp = 1130 ck3 = 1787 } # Aviliobris, FlaviumBrigantium -> LA CORUNA + link = { imp = 1137 ck3 = 1786 } # ArtabronLimen -> BETANZOS link = { comment = "SOUTHERN FRANCE BY RADU" } link = { imp = 3517 imp = 3540 ck3 = 2019 } # Tauroention, Pergantion -> TOULON link = { imp = 2288 imp = 2272 ck3 = 2198 } # Praemiacum, Cossium -> BAZADAIS @@ -2700,17 +2699,17 @@ imperator_invictus = { link = { imp = 2263 ck3 = 2215 } # Albiga -> ALBI link = { imp = 2267 ck3 = 2212 } # Elusio -> CASTELNAUDARY link = { imp = 2265 ck3 = 2214 } # Tolosa -> TOULOUSE - link = { imp = 2266 ck3 = 2207 } # Aquae Siccae -> MURET + link = { imp = 2266 ck3 = 2207 } # AquaeSiccae -> MURET link = { imp = 2277 ck3 = 2206 } # Belsinum -> ASTARAC link = { imp = 2285 ck3 = 2221 } # Gabalum -> MENDE - link = { imp = 2295 ck3 = 2222 } # Ad Silanum -> MILAU + link = { imp = 2295 ck3 = 2222 } # AdSilanum -> MILAU link = { imp = 3309 ck3 = 2226 } # Canniaco -> RODEZ link = { imp = 2262 ck3 = 2229 } # Segodunum -> LA PEYRADE link = { imp = 2268 ck3 = 2228 } # Carantomagus -> LA SALLE link = { imp = 2280 ck3 = 2230 } # Marinavas -> MONTAUBAN link = { imp = 2269 ck3 = 2231 } # Divona -> QUERCY link = { imp = 2270 imp = 2293 ck3 = 2232 } # Aginnum, Excisum -> AGEN - link = { imp = 2279 ck3 = 2213 } # Sarnali -> CASTELSARRASIN + link = { imp = 2279 ck3 = 2213 } # Fines -> CASTELSARRASIN link = { imp = 2278 ck3 = 2208 } # Casinomagus -> BEAUMONT link = { imp = 2275 ck3 = 2205 } # Elimberrum -> LOMAGNE link = { imp = 2271 ck3 = 2204 } # Lactora -> LECTOURE @@ -2719,73 +2718,73 @@ imperator_invictus = { link = { imp = 2250 ck3 = 2201 } # Atura -> ARMAGNAC link = { imp = 2274 ck3 = 2199 } # Saviniago -> MARSAN link = { imp = 2249 ck3 = 2202 } # Tarba -> PARDIAC - link = { imp = 2247 ck3 = 2193 } # Bene Harnum -> PAU - link = { imp = 2243 ck3 = 2194 } # Aquae Tarbellicae -> TURSAN + link = { imp = 2247 ck3 = 2193 } # Beneharnum -> PAU + link = { imp = 2243 ck3 = 2194 } # AquaeTarbellicae -> TURSAN link = { imp = 2242 ck3 = 2195 } # Coequosa -> TARTAS link = { imp = 2241 ck3 = 2196 } # Telonnum -> ALBRET link = { imp = 2245 ck3 = 2197 } # Stomatas -> LANGON - link = { imp = 2235 ck3 = 2140 } # Akroterion -> LA-TESTE-DE-BUCH + link = { imp = 2235 ck3 = 2140 } # KouriannonAkroterion -> LA-TESTE-DE-BUCH link = { imp = 2238 imp = 2237 ck3 = 2139 } # Segosa, Losa -> MIMIZAN link = { imp = 2239 ck3 = 2138 } # Mosconnum -> DAX link = { imp = 2240 ck3 = 2012 } # Lapurdum -> BAYONNE link = { imp = 2246 imp = 2244 ck3 = 2011 } # Iluro, Carasa -> OLORON - link = { imp = 2248 imp = 2251 ck3 = 2010 } # Novum Oppidum, Aquae Convenarum -> TARBES - link = { imp = 2252 ck3 = 2009 } # Lugdunum Convenarum -> BERTRAND-DE-COMMINGES + link = { imp = 2248 imp = 2251 ck3 = 2010 } # NovumOppidum, AquaeConvenarum -> TARBES + link = { imp = 2252 ck3 = 2009 } # LugdunumConvenarum -> BERTRAND-DE-COMMINGES link = { imp = 2276 ck3 = 2008 } # Calagorris -> SAINT-LIZIER link = { imp = 2253 ck3 = 2209 } # Consoranni -> FOIX link = { imp = 2254 ck3 = 2211 ck3 = 2007 } # Tarusco -> PAMIERS, MONTBEL link = { imp = 2258 imp = 2255 ck3 = 2006 } # Usuerva, Carcasso -> CARCASSONE - link = { imp = 1079 ck3 = 2447 } # Ad Vicensi -> LIMOUX - link = { imp = 1060 ck3 = 8797 ck3 = 8798 } # Ioulia Libika -> Llivia, Prades in Rossello + link = { imp = 1079 ck3 = 2447 } # AdVicensi -> LIMOUX + link = { imp = 1060 ck3 = 8797 ck3 = 8798 } # IouliaLibika -> Llivia, Prades in Rossello link = { imp = 1001 ck3 = 1865 } # Rhoda -> ROSES link = { imp = 2257 ck3 = 1866 } # Ruscino -> PERPIGNAN - link = { imp = 2256 ck3 = 2005 } # Narbo -> NARBONNE + link = { imp = 2256 ck3 = 2005 } # NarboMartius -> NARBONNE link = { imp = 2259 ck3 = 2013 } # Baeterrae -> BEZIERS link = { imp = 2260 ck3 = 2014 } # Agatha -> AGDE link = { imp = 2315 imp = 2313 imp = 2312 ck3 = 2015 } # Briginnum, Sextantio, Andusia -> MONTPELLIER link = { imp = 2297 ck3 = 2218 } # Cebennia -> CEVENNES link = { imp = 2317 imp = 2316 ck3 = 2216 } # Ucetia, Staturnae -> USES link = { imp = 2314 imp = 2318 ck3 = 2016 } # Nemausus, Rhodanousia -> NIMES - link = { imp = 2319 imp = 2323 ck3 = 2017 } # Arelatis, Pisavi -> ARLES + link = { imp = 2319 imp = 2323 ck3 = 2017 } # Arelate, AquaeSextiae -> ARLES link = { imp = 2325 ck3 = 2018 } # Massalia -> MARSEILLE link = { imp = 3523 ck3 = 2023 } # Verunia -> AIX - link = { imp = 2324 ck3 = 2060 } # Apta Iulia -> APT + link = { imp = 2324 ck3 = 2060 } # AptaIula -> APT link = { imp = 2321 imp = 2322 ck3 = 2059 } # Avennio, Carpentorate -> AVIGNON link = { imp = 2320 ck3 = 2062 } # Arausio -> ORANGE link = { imp = 3519 ck3 = 2067 } # Vasio -> VAISON - link = { imp = 3528 ck3 = 2061 } # Mons Seleucus -> FORCALQUIER + link = { imp = 3528 ck3 = 2061 } # MonsSeleucus -> FORCALQUIER link = { imp = 3622 ck3 = 2069 } # Isarnodurum -> BELLEY - link = { imp = 3621 imp = 3623 ck3 = 2034 } # Venetonimagus, Boutae -> ANNECY + link = { imp = 3621 imp = 3623 ck3 = 2034 } # Augusta, Venetonimagus -> ANNECY link = { imp = 3608 ck3 = 2031 ck3 = 8719 } # Mantala -> MOUTIERS, Faucigny - link = { imp = 3560 imp = 3611 ck3 = 2040 } # Bodincomagos, Salassia -> IVREA + link = { imp = 3560 imp = 3611 ck3 = 2040 } # Industria, AugustaPraetoria -> IVREA link = { imp = 3537 imp = 3534 ck3 = 2029 } # Maurienna, Scingomagus -> SAINT-MICHEL-DE-MAURIENNE - link = { imp = 3532 ck3 = 8718 } # Catorissium -> Briancon - link = { imp = 5022 ck3 = 8721 } # Alpes Maritimae -> Puget - link = { imp = 3545 imp = 3546 ck3 = 2022 } # Album Intimilium, Albom Ingaunom -> MONACO - link = { imp = 3543 imp = 3544 ck3 = 2021 } # Antipolis, Navelis -> NICE - link = { imp = 3541 ck3 = 2020 } # Agathom -> GRASSE + link = { imp = 3532 ck3 = 8718 } # Durotincum -> Briancon + link = { imp = 5022 ck3 = 8721 } # IMPASSIBLE TERRAIN 022 -> Puget + link = { imp = 3545 imp = 3546 ck3 = 2022 } # AlbumIntimilium, AlbumIngaunum -> MONACO + link = { imp = 3543 imp = 3544 ck3 = 2021 } # Antipolis, Cemenellum -> NICE + link = { imp = 3541 ck3 = 2020 } # ForumIulii -> GRASSE link = { imp = 3529 imp = 3522 ck3 = 8720 } # Rigomagus, Sanitium -> Barcelonnette - link = { imp = 3521 imp = 3542 ck3 = 2024 } # Tegulata, Matavo -> DRAGUGNIAN - link = { imp = 3518 ck3 = 2025 } # Griselica -> Castellane + link = { imp = 3521 imp = 3542 ck3 = 2024 } # Tegulata, ForumVoconii -> DRAGUGNIAN + link = { imp = 3518 ck3 = 2025 } # ApollinarisReiorum -> Castellane link = { imp = 3520 ck3 = 2026 } # Segustero -> SISTERON link = { imp = 3524 imp = 3536 ck3 = 2027 } # Vappincum, Eburodunum -> EMBRUN link = { imp = 3533 ck3 = 2028 } # Murissa -> GAP link = { imp = 3531 ck3 = 2030 } # Cularo -> GRENOBLE - link = { imp = 3526 imp = 3527 imp = 3525 ck3 = 2066 } # Darentiaca, Vologatae, Vocontiorum -> DIE + link = { imp = 3526 imp = 3527 imp = 3525 ck3 = 2066 } # Darentiaca, LucusAugusti, Vocontiorum -> DIE link = { imp = 2308 imp = 2309 imp = 2310 ck3 = 8717 } # Valentia, Batiana, Cerebelliaca -> Monteil - link = { imp = 2311 ck3 = 2063 } # Alba Helviorum -> VIVIERS - link = { imp = 2296 ck3 = 2217 } # Condate Arvernorum -> ALES + link = { imp = 2311 ck3 = 2063 } # AlbaHelviorum -> VIVIERS + link = { imp = 2296 ck3 = 2217 } # Condate -> ALES link = { imp = 2338 imp = 2339 ck3 = 2234 } # Eustriacum, Uxellodunum -> FIGEAC link = { imp = 2327 imp = 2326 imp = 2335 ck3 = 2233 } # Acuciago, Decaniacum, Marcelliago -> CAHORS link = { imp = 2292 ck3 = 2236 } # Pompegiaco -> BERGERAC link = { imp = 2294 ck3 = 2235 } # Travectus -> AGENAIS link = { imp = 2289 ck3 = 2143 } # Lucaniacum -> FRONSAC - link = { imp = 2236 ck3 = 2142 } # Burdigala -> BORDEAUX - link = { imp = 2233 ck3 = 2141 } # Noviomagus Aquitanum -> MEDOC + link = { imp = 2236 ck3 = 2142 } # Bituriga -> BORDEAUX + link = { imp = 2233 ck3 = 2141 } # Blacciacum -> MEDOC link = { comment = "CENTRAL FRANCE BY RADU" } link = { imp = 2427 ck3 = 2076 } # Segobodium -> BESANCON - link = { imp = 2363 ck3 = 2191 } # Pons Ariola -> QUINGEY - link = { imp = 2414 imp = 2411 ck3 = 2314 } # Condate Avaricum, Segivomicus -> SANCERRE + link = { imp = 2363 ck3 = 2191 } # PonsAriola -> QUINGEY + link = { imp = 2414 imp = 2411 ck3 = 2314 } # CondateAvaricum, Segivomicus -> SANCERRE link = { imp = 2407 ck3 = 2315 } # Gabris -> VIERZON link = { imp = 2406 ck3 = 2316 } # Leprosum -> ROMORANTIN link = { imp = 2405 ck3 = 2277 } # Pontiniacum -> VALENCAY @@ -2796,54 +2795,54 @@ imperator_invictus = { link = { imp = 2393 ck3 = 2255 } # Voglada -> PARTHENAY link = { imp = 2396 ck3 = 2256 } # Clinno -> LOUDUN link = { imp = 2397 ck3 = 2257 } # Vultaconum -> THOUARS - link = { imp = 2228 ck3 = 2258 } # Pictonia -> BRESSUIRE + link = { imp = 2228 ck3 = 2258 } # Santones -> BRESSUIRE link = { imp = 2227 ck3 = 2259 } # Vertavia -> MAULEVRIER - link = { imp = 2224 ck3 = 2150 } # Pictavia Borealis -> MONTAIGU - link = { imp = 2225 ck3 = 2148 ck3 = 2149 } # Pictavia Australis -> FONTENAY, TALMONT + link = { imp = 2224 ck3 = 2150 } # PictaviaSeptentrionalis -> MONTAIGU + link = { imp = 2225 ck3 = 2148 ck3 = 2149 } # PictaviaMeridionalis -> FONTENAY, TALMONT link = { imp = 2226 ck3 = 2147 } # Becciacum -> LA ROCHELLE - link = { imp = 2229 ck3 = 2146 } # Novioregum Santonum -> ROYAN + link = { imp = 2229 ck3 = 2146 } # NovioregumSantonum -> ROYAN link = { imp = 2389 ck3 = 2249 } # Cassinomagum -> LUSIGNAN link = { imp = 2392 ck3 = 2250 } # Aunnedonacum -> MELLE - link = { imp = 2230 ck3 = 2242 ck3 = 2243 } # Mediolanum Santonum -> SAINTES, TAILLEBOURG + link = { imp = 2230 ck3 = 2242 ck3 = 2243 } # MediolanumSantonum -> SAINTES, TAILLEBOURG link = { imp = 2369 ck3 = 2303 ck3 = 2304 } # Berberensis -> SEMUR-EN-BRIONNAIS, CLUNY link = { imp = 2346 ck3 = 2279 } # Argentomagus -> CHATEAUROUX link = { imp = 2383 ck3 = 2464 } # Ferruciacum -> LA TREMOUILLE - link = { imp = 2378 imp = 2379 ck3 = 2286 } # Finis Secundus, Accitodunum -> GUERET + link = { imp = 2378 imp = 2379 ck3 = 2286 } # FinesSecundum, Accitodunum -> GUERET link = { imp = 2343 ck3 = 2285 } # Salviacum -> GRANDMONT link = { imp = 2283 imp = 2386 ck3 = 2284 } # Augustoritum, Ambiacum -> BELLAC - link = { imp = 2334 imp = 2388 ck3 = 2251 } # Campaniacum, Comodoliacus -> RUFFEC - link = { imp = 2333 ck3 = 2245 } # Canaviacum -> SAINT-JUNIEN + link = { imp = 2334 imp = 2388 ck3 = 2251 } # Comodoliacus, Comodoliacus -> RUFFEC + link = { imp = 2333 ck3 = 2245 } # Canviacum -> SAINT-JUNIEN link = { imp = 3000 ck3 = 2462 } # Sermanicomago -> COGNAC link = { imp = 2231 ck3 = 2145 } # Lamnum -> JONZAC link = { imp = 2232 ck3 = 2241 } # Tannum -> SAINTOGNE - link = { imp = 2234 ck3 = 2144 } # Burgus -> BLAYE + link = { imp = 2234 ck3 = 2144 } # Burdigala -> BLAYE link = { imp = 2282 imp = 2287 ck3 = 2237 } # Vesunna, Corterate -> PERIGUEUX link = { imp = 2329 ck3 = 2238 } # Nonniacus -> MONTIGNAC link = { imp = 2340 imp = 3307 imp = 1721 ck3 = 2247 } # Tiniacum, Confluenta, Fines -> VENTADOUR link = { imp = 2328 ck3 = 2240 } # Briva -> TURENNE link = { imp = 2337 ck3 = 2294 } # Argenta -> AURILLAC - link = { imp = 5047 ck3 = 2295 ck3 = 2290 ck3 = 2291 ck3 = 2223 ck3 = 2227 ck3 = 2224 ck3 = 2292 ck3 = 2293 } # Arverni Highland -> LA TOUR, MERCAEUR, LANGEAC, GEVAUDAN, MARVEJOLS, SAINT-FLOUR, MURAT, CARLAT + link = { imp = 5047 ck3 = 2295 ck3 = 2290 ck3 = 2291 ck3 = 2223 ck3 = 2227 ck3 = 2224 ck3 = 2292 ck3 = 2293 } # IMPASSIBLE TERRAIN 047 -> LA TOUR, MERCAEUR, LANGEAC, GEVAUDAN, MARVEJOLS, SAINT-FLOUR, MURAT, CARLAT link = { imp = 5046 ck3 = 2298 ck3 = 2297 ck3 = 3258 ck3 = 2296 } # IMPASSIBLE TERRAIN 046 -> MONTBRISON, FEURS, Annonay, VELAY link = { imp = 2298 ck3 = 2300 } # Brivas -> AMBERT link = { imp = 2286 ck3 = 2225 } # Vellavorum -> LE PUY link = { imp = 2307 ck3 = 2068 } # Morginnum -> ROMANS link = { imp = 3539 imp = 3538 ck3 = 2455 } # Labisco, Voludnia -> CHAMBERY - link = { imp = 2305 ck3 = 2032 } # Allobrogia -> CHARTREUSE + link = { imp = 2305 ck3 = 2032 } # Augusta -> CHARTREUSE link = { imp = 3627 imp = 3626 ck3 = 2457 } # Bodgalio, Antro -> CHAMPAGNOLE - link = { imp = 3628 imp = 3625 ck3 = 2072 } # Filomusiacum, Equestris -> SALINS + link = { imp = 3628 imp = 3625 ck3 = 2072 } # Filomusiacum, IuliaEquestris -> SALINS link = { imp = 2306 ck3 = 2064 } # Figlinae -> VALENCE link = { imp = 2304 imp = 2303 ck3 = 2033 } # Vienna, Octavus -> VIENNE link = { imp = 2301 ck3 = 2065 ck3 = 2070 } # Lugdunum -> LYON, Villars - link = { imp = 2358 imp = 2357 imp = 2356 ck3 = 2071 } # Lunna, Brioratis, Ludna -> BOURG + link = { imp = 2358 imp = 2357 imp = 2356 ck3 = 2071 } # Isarnodurum, Brioratis, Ludna -> BOURG link = { imp = 2355 ck3 = 2459 } # Vesontio -> ORNANS link = { imp = 2361 ck3 = 2073 } # Crucinae -> LONS-LE-SAUNIER link = { imp = 2359 ck3 = 2458 } # Matisco -> DOLE link = { imp = 2360 ck3 = 2348 } # Cabillonum -> CHALON link = { imp = 2381 ck3 = 2281 } # Mediolanicum -> BOUSSAC link = { imp = 2375 imp = 2380 ck3 = 2308 } # Manatum, Cambonum -> MONTLUCON - link = { imp = 2376 ck3 = 2310 } # Aquae Neri -> BOURBON-LARCHEMBAULT + link = { imp = 2376 ck3 = 2310 } # AquaeNeri -> BOURBON-LARCHEMBAULT link = { imp = 2373 ck3 = 2309 } # Ricomagus -> SAINT-POURCAIN - link = { imp = 2372 imp = 2371 ck3 = 2306 } # Sitilia, Aquae Calidae -> JILAGNY + link = { imp = 2372 imp = 2371 ck3 = 2306 } # Sitilia, AquaeCalidae -> JILAGNY link = { imp = 2374 ck3 = 2307 } # Arthona -> MOULINS link = { imp = 2439 ck3 = 2349 } # Aballo -> VEZELAY link = { imp = 2368 imp = 2412 ck3 = 2313 } # Tincontium, Nogeomagus -> HERRY @@ -2855,7 +2854,7 @@ imperator_invictus = { link = { imp = 2367 ck3 = 2343 } # Decetia -> NEVERS link = { imp = 2348 imp = 2366 ck3 = 2347 } # Augustodunum, Allsincum -> AUTUN link = { imp = 2437 imp = 2435 ck3 = 2376 } # Sidoloucum, Vidubia -> BEAUNE - link = { imp = 2362 ck3 = 2377 } # Castrum Divionense -> CITEAUX + link = { imp = 2362 ck3 = 2377 } # CastrumDivio -> CITEAUX link = { imp = 2436 imp = 2429 ck3 = 2380 } # Divionense, Tilena -> DIJON link = { imp = 2440 ck3 = 2379 } # Alesia -> MONTBARD link = { imp = 2291 imp = 2290 ck3 = 2244 } # Sarrum, Iculisma -> ANGOULEME @@ -2864,84 +2863,84 @@ imperator_invictus = { link = { imp = 2404 imp = 2341 ck3 = 2248 } # Sisciacum, Curisiacum -> LIMOGES link = { imp = 2344 ck3 = 2287 } # Durotincum -> AUBUSSON link = { imp = 1719 imp = 2342 ck3 = 2289 } # Avitacum, Ubiquum -> CLERMONT-SUR-ALLIER - link = { imp = 2284 ck3 = 2288 } # Gergovia -> MONTEPENSIER + link = { imp = 2284 ck3 = 2288 } # Augustonemetum -> MONTEPENSIER link = { imp = 2299 ck3 = 2299 } # Biliomagus -> THIERS - link = { imp = 2300 imp = 2370 ck3 = 2305 } # Aquae Segetae, Transalium -> ROANNE + link = { imp = 2300 imp = 2370 ck3 = 2305 } # AquaeSegetae, Transalium -> ROANNE link = { imp = 2364 imp = 2302 ck3 = 2301 } # Rodumna, Seguslavorum -> BEAUJEU link = { imp = 2365 ck3 = 2302 } # Pocrinnium -> MACON link = { imp = 2438 ck3 = 2378 } # Bibracte -> MORVAN link = { imp = 2416 ck3 = 2463 } # Brivodurum -> SULLY-SUR-LOIRE - link = { imp = 2408 ck3 = 2317 } # Biturigum -> OLIVET + link = { imp = 2408 ck3 = 2317 } # NoviodunumBiturigum -> OLIVET link = { imp = 2421 imp = 2422 ck3 = 2275 } # Cisomagus, Onia -> LOCHES link = { imp = 2395 ck3 = 2274 } # Briggogalus -> TOURS link = { imp = 2399 ck3 = 2261 } # Toarcius -> SAUMUR link = { imp = 2398 ck3 = 2260 } # Segora -> MELAY - link = { imp = 2210 imp = 2211 ck3 = 2151 } # Piktonion Akron, Ratiatum -> RAIS + link = { imp = 2210 imp = 2211 ck3 = 2151 } # PiktonionAkron, Namnetum -> RAIS link = { comment = "NORTHERN FRANCE BY RADU" } link = { imp = 2492 ck3 = 2361 ck3 = 2362 } # Odomagus -> CHATEAU-THIERRY, CHATILLON link = { imp = 2447 ck3 = 2358 ck3 = 2360 } # Iatinon -> SENLIS, CREPY - link = { imp = 2452 ck3 = 2398 ck3 = 2399 ck3 = 2400 } # Seussonia -> COUCY, LAON, ROUCY - link = { imp = 3043 ck3 = 2397 } # Viromanduorum -> MARLE + link = { imp = 2452 ck3 = 2398 ck3 = 2399 ck3 = 2400 } # AugustaSuessionum -> COUCY, LAON, ROUCY + link = { imp = 3043 ck3 = 2397 } # AugustaViromanduorum -> MARLE link = { imp = 3047 ck3 = 2121 } # Duronum -> MALBODEN link = { imp = 3045 ck3 = 2118 } # Camaracum -> CAMBRAI link = { imp = 3046 imp = 3042 ck3 = 2119 } # Hermoniacum, Bagacum -> VALENCIENNES link = { imp = 3044 ck3 = 2187 } # Sefulae -> SAINT-QUENTIN link = { imp = 2493 ck3 = 2188 } # Isara -> NOYON link = { imp = 3032 imp = 2445 ck3 = 2189 } # Curmiliaca, Augustomagus -> CLERMONT - link = { imp = 3031 ck3 = 2185 } # Teucera -> CORBIE + link = { imp = 3031 ck3 = 2185 } # SamarobrivaAmbianorum -> CORBIE link = { imp = 3037 ck3 = 2135 } # Durocoregum -> HESDIN - link = { imp = 3039 ck3 = 2134 } # Estia -> AIRE - link = { imp = 3038 ck3 = 2127 ck3 = 2186 } # Nemetocenna -> TOURNAI, PERONNE + link = { imp = 3039 ck3 = 2134 } # Teucera -> AIRE + link = { imp = 3038 ck3 = 2127 ck3 = 2186 } # Nemetacum -> TOURNAI, PERONNE link = { imp = 3040 ck3 = 2126 } # Minariacum -> LILLE link = { imp = 3027 ck3 = 2133 } # Tarvenna -> SAINT-OMER - link = { imp = 3028 ck3 = 2131 } # Castellum -> DUNKIRK - link = { imp = 3029 imp = 3030 ck3 = 2129 } # Portus Itius, Ardellum -> GRAVELINES + link = { imp = 3028 ck3 = 2131 } # CastellumMenapiorum -> DUNKIRK + link = { imp = 3029 imp = 3030 ck3 = 2129 } # PortusItius, Ardellum -> GRAVELINES link = { imp = 2155 ck3 = 2156 } # Agritore -> QUIMPER - link = { imp = 2135 imp = 2134 imp = 5431 ck3 = 2169 } # Aluna, Coriallum, Andion -> CHERBOURG + link = { imp = 2135 imp = 2134 imp = 5431 ck3 = 2169 } # Aluna, Coriallum, Caesarea -> CHERBOURG link = { imp = 2137 imp = 2139 ck3 = 2168 } # Cosedia, Cerisiacum -> COUTANCES link = { imp = 2140 ck3 = 2167 } # Ingena -> AVRANCHES - link = { imp = 2212 ck3 = 2152 } # Namnetum -> NANTES + link = { imp = 2212 ck3 = 2152 } # Ratiatum -> NANTES link = { imp = 2153 ck3 = 2153 } # Grannona -> GUERANDE - link = { imp = 2351 ck3 = 2264 } # Brucironno -> SABLE + link = { imp = 2351 ck3 = 2264 } # Vindinum -> SABLE link = { imp = 2456 ck3 = 2270 ck3 = 2272 } # Labrinum -> LE MANS, COURCILLON link = { imp = 2426 ck3 = 2283 } # Navicellis -> VENDOME - link = { imp = 2463 imp = 2461 ck3 = 2324 } # Condate, Carnutia Occidentalis -> MORTAGNE + link = { imp = 2463 imp = 2461 ck3 = 2324 } # CondateDurocassicum, CarnutiaOccidentalis -> MORTAGNE link = { imp = 2465 imp = 2464 ck3 = 2328 } # Breviodurum, Ebrovicia -> VERNEUIL link = { imp = 2484 ck3 = 2356 ck3 = 2359 } # Calagum -> MONTREUIL, MEAUX link = { imp = 2444 ck3 = 2190 ck3 = 2357 } # Catalacus -> BEAUMONT, SAINT-DENIS - link = { imp = 2473 imp = 2472 imp = 2474 ck3 = 2181 } # Avalocum, Briva Isarae, Nemetodurum -> MANTES + link = { imp = 2473 imp = 2472 imp = 2474 ck3 = 2181 } # Avalocum, BrivaIsarae, Nemetodurum -> MANTES link = { imp = 2443 ck3 = 2179 } # Rotomagus -> ROUEN link = { imp = 2469 ck3 = 2180 } # Ritumagus -> GISORS - link = { imp = 2460 ck3 = 2323 } # Carnutia Orientalis -> NOGENT-LE-ROTROU + link = { imp = 2460 ck3 = 2323 } # CarnutiaOrientalis -> NOGENT-LE-ROTROU link = { imp = 2462 imp = 2441 ck3 = 2322 } # Dorocas, Autricum -> CHARTRES link = { imp = 2446 ck3 = 2183 } # Caesaromagus -> BEAUVAIS - link = { imp = 3035 ck3 = 2184 } # Samarobriva -> AMIENS - link = { imp = 3034 ck3 = 2182 } # Caletia Minor -> AUMALE + link = { imp = 3035 ck3 = 2184 } # CaletiaMajoris -> AMIENS + link = { imp = 3034 ck3 = 2182 } # CaletiaMinoris -> AUMALE link = { imp = 2478 ck3 = 2336 } # Salioclita -> ETAMPES - link = { imp = 2479 ck3 = 2337 } # Ad Fines Galliarum -> NEMOURS + link = { imp = 2479 ck3 = 2337 } # AdFines -> NEMOURS link = { imp = 2481 ck3 = 2335 } # Mellodunum -> MONTLHERY - link = { imp = 3051 ck3 = 2394 } # Porricum -> MEZIERES + link = { imp = 3051 ck3 = 2394 } # NoviomagusPorricum -> MEZIERES link = { imp = 3049 ck3 = 2393 } # Vungovicus -> GRANPRE link = { imp = 3048 ck3 = 2396 } # Verbinum -> ROMIGNY link = { imp = 2451 ck3 = 2391 } # Durocortorum -> RETHEL link = { imp = 3050 imp = 2494 ck3 = 2395 } # Mosomagus, Basillia -> VERDUN - link = { imp = 2415 imp = 2413 ck3 = 2345 } # Intaranum, Vicus Massava -> DONZY - link = { imp = 2432 ck3 = 2346 } # Cora Vicus -> AUXERRE + link = { imp = 2415 imp = 2413 ck3 = 2345 } # Intaranum, VicusMassava -> DONZY + link = { imp = 2432 ck3 = 2346 } # CoraVicus -> AUXERRE link = { imp = 2433 imp = 2354 ck3 = 2381 } # Benevellum, Andematunnum -> CHAUMONT link = { imp = 2428 ck3 = 2383 ck3 = 2382 } # Varcia -> GY, GRAY - link = { imp = 3014 imp = 3010 ck3 = 2077 } # Portus Albucinus, Valtudurum -> VESOUL + link = { imp = 3014 imp = 3010 ck3 = 2077 } # PortusAlbucinus, Valtudurum -> VESOUL link = { imp = 3004 ck3 = 2385 } # Mosa -> Champs link = { imp = 3013 ck3 = 2192 ck3 = 2057 } # Magetobria -> LURE, MONTPELLIARD link = { imp = 3003 ck3 = 2384 } # Solicia -> NEUFCHATEAU - link = { imp = 3015 ck3 = 2715 } # Aquae Borbonis -> VAUDEMONT - link = { imp = 3692 ck3 = 2704 } # Mediomatricia -> SAARBRUCKEN - link = { imp = 3017 ck3 = 2710 ck3 = 2712 } # Decem Pagi -> PUTTLINGEN, FINSTINGEN - link = { imp = 3016 ck3 = 2078 ck3 = 2713 } # Vicus Bodatius -> EPINAL, BLANKENBERG + link = { imp = 3015 ck3 = 2715 } # AquaeBorbonis -> VAUDEMONT + link = { imp = 3692 ck3 = 2704 } # VangionaOccidentalis -> SAARBRUCKEN + link = { imp = 3017 ck3 = 2710 ck3 = 2712 } # DecemPagi -> PUTTLINGEN, FINSTINGEN + link = { imp = 3016 ck3 = 2078 ck3 = 2713 } # VicusBodatius -> EPINAL, BLANKENBERG link = { imp = 2453 ck3 = 2079 } # Tullum -> TOUL link = { imp = 2499 ck3 = 2709 } # Scarponna -> NANCY link = { imp = 3020 ck3 = 2753 } # Helvetum -> GEROLDSECK link = { imp = 3022 ck3 = 2751 ck3 = 2752 } # Tarodunon -> FREIBURG, OFFENBURG - link = { imp = 3012 ck3 = 2750 } # Rauracia -> SANKT BLASIEN + link = { imp = 3012 ck3 = 2750 } # AugustaRarica -> SANKT BLASIEN link = { imp = 3011 ck3 = 2720 } # Epamanduodurum -> FERRETTE link = { imp = 3009 ck3 = 2056 } # Larga -> PORRENTRUY link = { imp = 3018 ck3 = 2058 } # Rubiacum -> MULHOUSE @@ -2951,22 +2950,22 @@ imperator_invictus = { link = { imp = 3023 ck3 = 2723 ck3 = 2722 } # Brocomagus -> LICHTBERG, HAGUENAU link = { imp = 3053 ck3 = 2724 } # Concordia -> WEISSENBURG link = { imp = 3054 ck3 = 2732 } # Tabernae -> SPEYER - link = { imp = 3693 ck3 = 2730 } # Mosellia -> PIRMASENS - link = { imp = 3695 ck3 = 2725 } # Mosellia Minor -> BITSCH - link = { imp = 3694 ck3 = 2726 } # Leucia -> ZWEIBRUCKEN + link = { imp = 3693 ck3 = 2730 } # VangionaOrientalis -> PIRMASENS + link = { imp = 3695 ck3 = 2725 } # VangionaMeridionalis -> BITSCH + link = { imp = 3694 ck3 = 2726 } # VangionaCentralis -> ZWEIBRUCKEN link = { imp = 3697 ck3 = 2727 ck3 = 2728 ck3 = 2729 } # Rouphiniana -> ROCKHAUSEN, LETNINGEN, KAISERSLAUTERN link = { imp = 3056 ck3 = 2731 } # Borbetomagus -> WORMS link = { imp = 3725 ck3 = 2701 } # Dumnissus -> VELDENZ - link = { imp = 3696 ck3 = 2703 ck3 = 2083 } # Cruciniacum -> WADERN, TRIER + link = { imp = 3696 ck3 = 2703 ck3 = 2083 } # VangionaSeptentrionalis -> WADERN, TRIER link = { imp = 3724 ck3 = 2696 } # Belginum -> SPONHEIM link = { imp = 3722 ck3 = 2695 } # Vosolvia -> BOPPARD - link = { imp = 3691 ck3 = 2705 } # Vicus Contiomagus -> FORBACH + link = { imp = 3691 ck3 = 2705 } # VicusContiomagus -> FORBACH link = { imp = 3698 ck3 = 2707 } # Altaia -> KREUSNACH link = { imp = 3723 imp = 3701 ck3 = 2694 } # Bingium, Mogontiacum -> MAINZ - link = { imp = 3690 ck3 = 2698 ck3 = 2700 } # Treveria -> SAARBURG, KONZ + link = { imp = 3690 ck3 = 2698 ck3 = 2700 } # AugustaTreverorum -> SAARBURG, KONZ link = { imp = 2454 ck3 = 2708 ck3 = 2711 } # Divodurum -> METZ, FAULQUEMONT link = { imp = 3002 ck3 = 2080 } # Pannorum -> HAYANGE - link = { imp = 3001 ck3 = 2706 } # Castrum Vabrense -> BRIEY + link = { imp = 3001 ck3 = 2706 } # CastrumVabrense -> BRIEY link = { imp = 3007 ck3 = 2386 } # Grannum -> GRAND link = { imp = 2497 imp = 2496 ck3 = 2387 } # Nasium, Caturicis -> VAUCOULEURS link = { imp = 2455 ck3 = 2081 } # Viriodunum -> SAINT-MIHIEL @@ -2980,12 +2979,12 @@ imperator_invictus = { link = { imp = 2430 ck3 = 2350 } # Tornodurum -> CHABLIS link = { imp = 2431 ck3 = 2351 } # Vertillium -> TONNERRE link = { imp = 3005 ck3 = 2375 } # Segeserra -> CLAIRVAUX - link = { imp = 3008 ck3 = 2373 ck3 = 2374 } # Tricassia -> JOINVILLE, LANGRES + link = { imp = 3008 ck3 = 2373 ck3 = 2374 } # Haeduia -> JOINVILLE, LANGRES link = { imp = 3006 ck3 = 2372 } # Corobillium -> BAR-SUR-AUBE link = { imp = 2449 ck3 = 2371 } # Augustobona -> TROYES link = { imp = 2489 ck3 = 2367 } # Artiaca -> VITRY-EN-PERTHOIS link = { imp = 2486 ck3 = 2365 } # Lucia -> ROMILLY - link = { imp = 2482 ck3 = 2363 ck3 = 2353 } # Agedincum -> PROVINS, BRAY + link = { imp = 2482 ck3 = 2363 ck3 = 2353 } # CondateAgedincum -> PROVINS, BRAY link = { imp = 2480 ck3 = 2342 } # Montargia -> MONTEREAU link = { imp = 2417 ck3 = 2339 ck3 = 2340 } # Belca -> MONTARGIS, COURTENAY link = { imp = 2487 ck3 = 2364 } # Senonia -> COULOMMIERS @@ -2996,41 +2995,41 @@ imperator_invictus = { link = { imp = 2475 ck3 = 2333 } # Lutetia -> PARIS link = { imp = 2477 ck3 = 2332 } # Diodurum -> MONTFORT link = { imp = 2476 ck3 = 2334 } # Dortenco -> VERSAILLES - link = { imp = 2442 ck3 = 2331 } # Aulercorum -> DREUX + link = { imp = 2442 ck3 = 2331 } # MediolanumAulercorum -> DREUX link = { imp = 2466 ck3 = 2329 ck3 = 2330 } # Uggate -> EVREUX, VERNON link = { imp = 2467 ck3 = 2175 } # Pentale -> HARCOURT - link = { imp = 2220 ck3 = 2173 } # Esuvia Borealis -> FALAISE - link = { imp = 2222 ck3 = 2327 } # Lexoviorum -> SEES + link = { imp = 2220 ck3 = 2173 } # EsuviaSeptentrionalis -> FALAISE + link = { imp = 2222 ck3 = 2327 } # NoviomagusLexoviorum -> SEES link = { imp = 2219 ck3 = 2325 } # Noviodunum -> ALENCON - link = { imp = 2459 ck3 = 2271 } # Vindinum -> SARTHE - link = { imp = 2457 imp = 2458 ck3 = 2321 } # Dunense Castrum, Vindocinium -> CHATEAUDUN + link = { imp = 2459 ck3 = 2271 } # Cennomannia -> SARTHE + link = { imp = 2457 imp = 2458 ck3 = 2321 } # DunenseCastrum, Vindocinium -> CHATEAUDUN link = { imp = 2350 ck3 = 2320 ck3 = 2338 } # Cenabum -> BEAUGENCY, ORLEANS link = { imp = 2425 ck3 = 2319 } # Blesum -> BLOIS link = { imp = 2424 ck3 = 2318 } # Tasciaca -> CONTRES link = { imp = 2423 ck3 = 2273 } # Severiacus -> TOURAINE link = { imp = 2401 ck3 = 2268 } # Noviliacus -> LA FLECHE - link = { imp = 2349 ck3 = 2269 } # Vivicum -> LE LUDE - link = { imp = 2400 imp = 2394 ck3 = 2267 } # Robrica, Caesarodunum -> ANGERS + link = { imp = 2349 ck3 = 2269 } # Caesarodunum -> LE LUDE + link = { imp = 2400 imp = 2394 ck3 = 2267 } # Robrica, Rotomagus -> ANGERS link = { imp = 2352 imp = 2402 ck3 = 2263 } # Iuliomagus, Bricca -> LUIGNE link = { imp = 2403 ck3 = 2262 } # Salica -> CRAON - link = { imp = 2214 ck3 = 2266 } # Diablintum -> MAYENNE - link = { imp = 2217 ck3 = 2265 } # Modulus -> LAVAL - link = { imp = 2221 ck3 = 2326 } # Esuvia Australis -> ARGENTAN + link = { imp = 2214 ck3 = 2266 } # NoviodunumDiablintum -> MAYENNE + link = { imp = 2217 ck3 = 2265 } # Diablintum -> LAVAL + link = { imp = 2221 ck3 = 2326 } # EsuviaMeridionalis -> ARGENTAN link = { imp = 2216 ck3 = 2171 } # Abricates -> MORTAIN link = { imp = 3026 ck3 = 2132 ck3 = 2130 } # Gesoriacum -> BOULOGNE, CALAIS link = { imp = 3036 ck3 = 2136 } # Lintomagus -> MONTREUIL-SUR-MER link = { imp = 3033 ck3 = 2137 } # Briga -> ABBEVILLE - link = { imp = 2471 ck3 = 2178 } # Galetia Orientalis -> EU - link = { imp = 2470 ck3 = 2177 } # Galetia Occidentalis -> DIEPPE - link = { imp = 2468 ck3 = 2176 } # Caracotinum -> FECAMP - link = { imp = 2223 ck3 = 2174 } # Esta -> LISIEUX + link = { imp = 2471 ck3 = 2178 } # GaletiaOrientalis -> EU + link = { imp = 2470 ck3 = 2177 } # GaletiaOccidentalis -> DIEPPE + link = { imp = 2468 ck3 = 2176 } # Iuliobona -> FECAMP + link = { imp = 2223 ck3 = 2174 } # Caracotinum -> LISIEUX link = { imp = 2218 ck3 = 2172 } # Aregenua -> CAEN link = { imp = 2136 imp = 2138 ck3 = 2170 } # Crouciaconnum, Augustodurum -> BAYEUX link = { imp = 2150 imp = 2159 ck3 = 2159 } # Vorgium, Goelloria -> CORNOUAILLES link = { imp = 2156 imp = 2149 ck3 = 2160 } # Coriosolitum, Sulis -> ROHAN - link = { imp = 2146 imp = 2142 ck3 = 2163 } # Matriniaca, Fanum Martis -> PORHOET - link = { imp = 2144 imp = 2143 ck3 = 2165 } # Sipia, Condate Redonum -> RENNES - link = { imp = 2209 imp = 3308 ck3 = 2166 } # Sipia Occidentalis, Conbaristum -> CHATEAUBRIANT + link = { imp = 2146 imp = 2142 ck3 = 2163 } # Matriniaca, FanumMartis -> PORHOET + link = { imp = 2144 imp = 2143 ck3 = 2165 } # Sipia, CondateRedonum -> RENNES + link = { imp = 2209 imp = 3308 ck3 = 2166 } # SipiaOccidentalis, Conbaristum -> CHATEAUBRIANT link = { imp = 2148 imp = 2147 ck3 = 2154 } # Dariorigum, Duretie -> VANNES link = { imp = 2154 ck3 = 2155 } # Pollicum -> LORIENT link = { imp = 2145 imp = 2215 ck3 = 2282 } # Dolus, Foricum -> COMBOURG @@ -3040,135 +3039,135 @@ imperator_invictus = { link = { imp = 2158 ck3 = 2161 } # Tregoritum -> TREGUIER link = { imp = 2141 ck3 = 2164 } # Reginca -> SAINT-MALO link = { comment = "DENMARK BY RADU" } - link = { imp = 3856 imp = 3855 ck3 = 2797 } # Charudia, Mariones -> DITHMARSCHEN - link = { imp = 3873 ck3 = 57 } # Eudosia Borealis -> AARHUS - link = { imp = 3871 ck3 = 226 } # Eudosia Cimbrica -> DJURSLAND - link = { imp = 3877 ck3 = 224 } # Cimbria Australis -> RANDROS - link = { imp = 3878 ck3 = 81 } # Cimbria Centralis -> AALBORG - link = { imp = 3887 ck3 = 433 ck3 = 85 } # Herulia Orientalis -> HELSINGORA, HAFN - link = { imp = 3886 ck3 = 69 ck3 = 63 } # Herulia Borealis -> SLAGELSE, ROSKILDE - link = { imp = 3885 ck3 = 64 } # Herulia Centralis -> NAESTVED - link = { imp = 3884 ck3 = 68 ck3 = 67 } # Herulia Australis -> NAKSKOV, NYKOBING - link = { imp = 3881 ck3 = 66 } # Insula Anglorum -> SVENDBORG - link = { imp = 3883 ck3 = 65 } # Reudingia Minor -> ODENSE - link = { imp = 3882 ck3 = 228 } # Reudingia Maior -> MIDDELFART - link = { imp = 3872 ck3 = 222 } # Eudosia Centralis -> ORMSTRUP - link = { imp = 3876 ck3 = 56 } # Teutonia Centralis -> VIBORG - link = { imp = 3874 ck3 = 221 } # Teutonia Minor -> HOLSTEBRO - link = { imp = 3867 ck3 = 82 ck3 = 225 ck3 = 223 } # Sigulonia Borealis -> RINGKOBING, TARM, YCOST - link = { imp = 3866 ck3 = 59 ck3 = 83 } # Sigulonia Australis -> VORBASSE, VARDE - link = { imp = 3864 ck3 = 60 ck3 = 220 } # Avionia Maior -> RIBE, STRAND - link = { imp = 3863 ck3 = 84 } # Avionia Minor -> HUSUMBRO + link = { imp = 3856 imp = 3855 ck3 = 2797 } # CharudiaMinores, Mariones -> DITHMARSCHEN + link = { imp = 3873 ck3 = 57 } # EudosiaSeptentrionalis -> AARHUS + link = { imp = 3871 ck3 = 226 } # EudosiaCimbricaris -> DJURSLAND + link = { imp = 3877 ck3 = 224 } # CimbriaMeridionalis -> RANDROS + link = { imp = 3878 ck3 = 81 } # CimbriaCentralis -> AALBORG + link = { imp = 3887 ck3 = 433 ck3 = 85 } # HeruliaOrientalis -> HELSINGORA, HAFN + link = { imp = 3886 ck3 = 69 ck3 = 63 } # HeruliaSeptentrionalis -> SLAGELSE, ROSKILDE + link = { imp = 3885 ck3 = 64 } # HeruliaCentralis -> NAESTVED + link = { imp = 3884 ck3 = 68 ck3 = 67 } # HeruliaMeridionalis -> NAKSKOV, NYKOBING + link = { imp = 3881 ck3 = 66 } # AngliaInsula -> SVENDBORG + link = { imp = 3883 ck3 = 65 } # ReudingiaMinores -> ODENSE + link = { imp = 3882 ck3 = 228 } # ReudingiaMaiores -> MIDDELFART + link = { imp = 3872 ck3 = 222 } # EudosiaCentralis -> ORMSTRUP + link = { imp = 3876 ck3 = 56 } # TeutoniaCentralis -> VIBORG + link = { imp = 3874 ck3 = 221 } # TeutoniaMinores -> HOLSTEBRO + link = { imp = 3867 ck3 = 82 ck3 = 225 ck3 = 223 } # SiguloniaSeptentrionalis -> RINGKOBING, TARM, YCOST + link = { imp = 3866 ck3 = 59 ck3 = 83 } # SiguloniaMeridionalis -> VORBASSE, VARDE + link = { imp = 3864 ck3 = 60 ck3 = 220 } # AvioniaMaiores -> RIBE, STRAND + link = { imp = 3863 ck3 = 84 } # AvioniaMinores -> HUSUMBRO link = { imp = 3859 ck3 = 2800 } # Sardonia -> FEMERA - link = { imp = 3860 ck3 = 2801 } # Anglia Meridionalis -> KIEL - link = { imp = 3857 ck3 = 2799 } # Charudiana -> NEUMUNSTER - link = { imp = 3862 imp = 3861 ck3 = 62 } # Anglia Borealis, Anglia Centralis -> HEDEBY - link = { imp = 3865 ck3 = 61 } # Cimbrica Minor -> AABENRAA - link = { imp = 3868 ck3 = 434 } # Cobandia Minor -> KOLDING - link = { imp = 3869 ck3 = 227 } # Cobandia Maior -> TAULOV - link = { imp = 3870 ck3 = 58 } # Eudosia Australis -> JELLING - link = { imp = 3879 imp = 3880 imp = 3875 ck3 = 55 } # Cimbria Borealis, Cimbria Maior, Teutonia Maior -> LINDHOLM + link = { imp = 3860 ck3 = 2801 } # AngliaMeridionalis -> KIEL + link = { imp = 3857 ck3 = 2799 } # CharudiaMaiores -> NEUMUNSTER + link = { imp = 3862 imp = 3861 ck3 = 62 } # AngliaSeptentrionalis, AngliaCentralis -> HEDEBY + link = { imp = 3865 ck3 = 61 } # CimbricaMinores -> AABENRAA + link = { imp = 3868 ck3 = 434 } # CobandiaMinores -> KOLDING + link = { imp = 3869 ck3 = 227 } # CobandiaMaiores -> TAULOV + link = { imp = 3870 ck3 = 58 } # EudosiaMeridionalis -> JELLING + link = { imp = 3879 imp = 3880 imp = 3875 ck3 = 55 } # CimbriaPeninsularis, CimbriaMaiores, TeutoniaMaiores -> LINDHOLM link = { comment = "SCANDINAVIAN PENINSULA BY RADU" } - link = { imp = 6042 ck3 = 252 } # Eunixia -> JATHARR - link = { imp = 6021 ck3 = 333 ck3 = 332 ck3 = 335 } # Aska -> SKAENNINGE, LIUNGA, WISINGHNO - link = { imp = 6020 ck3 = 310 } # Kinda -> VIMMERBY - link = { imp = 6018 ck3 = 313 } # Vist -> EKSJO - link = { imp = 6016 ck3 = 311 ck3 = 312 } # Thwetum -> HULTABY, JONKOPING - link = { imp = 6017 ck3 = 306 ck3 = 305 } # Vitala -> UPPVIDINGE, NORRVIDINGE - link = { imp = 6015 ck3 = 303 ck3 = 304 ck3 = 302 } # Warinia -> ALLBO, KINNEVALD, VAXJO - link = { imp = 6014 ck3 = 300 } # Finnaithae -> LIONGBY - link = { imp = 6013 ck3 = 8725 ck3 = 301 } # Gautigothia -> Kindaholm, WANNAMO - link = { imp = 6023 ck3 = 317 ck3 = 8723 } # Gothalia -> LODOSE, Lacko - link = { imp = 6022 ck3 = 319 ck3 = 8724 } # Hio -> FALKÖPING, Opensten - link = { imp = 6024 ck3 = 316 ck3 = 320 } # Rane -> SKARA, VARNHEM - link = { imp = 6027 ck3 = 328 } # Tivedia -> RISEBERGA - link = { imp = 6028 ck3 = 334 ck3 = 327 } # Arbugae -> VRETA, ORABRO - link = { imp = 6031 ck3 = 343 } # Arosia -> ENESCOPINGE - link = { imp = 6032 ck3 = 341 ck3 = 344 } # Broborg -> SIGTUNA, OSTHAMMAR + link = { imp = 6042 ck3 = 252 } # Scandia -> JATHARR + link = { imp = 6021 ck3 = 333 ck3 = 332 ck3 = 335 } # Scandia -> SKAENNINGE, LIUNGA, WISINGHNO + link = { imp = 6020 ck3 = 310 } # Scandia -> VIMMERBY + link = { imp = 6018 ck3 = 313 } # Scandia -> EKSJO + link = { imp = 6016 ck3 = 311 ck3 = 312 } # Scandia -> HULTABY, JONKOPING + link = { imp = 6017 ck3 = 306 ck3 = 305 } # Scandia -> UPPVIDINGE, NORRVIDINGE + link = { imp = 6015 ck3 = 303 ck3 = 304 ck3 = 302 } # Scandia -> ALLBO, KINNEVALD, VAXJO + link = { imp = 6014 ck3 = 300 } # Scandia -> LIONGBY + link = { imp = 6013 ck3 = 8725 ck3 = 301 } # Scandia -> Kindaholm, WANNAMO + link = { imp = 6023 ck3 = 317 ck3 = 8723 } # Scandia -> LODOSE, Lacko + link = { imp = 6022 ck3 = 319 ck3 = 8724 } # Scandia -> FALKÖPING, Opensten + link = { imp = 6024 ck3 = 316 ck3 = 320 } # Scandia -> SKARA, VARNHEM + link = { imp = 6027 ck3 = 328 } # Scandia -> RISEBERGA + link = { imp = 6028 ck3 = 334 ck3 = 327 } # Scandia -> VRETA, ORABRO + link = { imp = 6031 ck3 = 343 } # Scandia -> ENESCOPINGE + link = { imp = 6032 ck3 = 341 ck3 = 344 } # Scandia -> SIGTUNA, OSTHAMMAR link = { imp = 6030 ck3 = 336 } # Birka -> TALJE - link = { imp = 6029 ck3 = 337 ck3 = 339 ck3 = 338 } # Rekarne -> NYKOPUNG, STRIGINES, SUNDBY - link = { imp = 6026 ck3 = 8733 ck3 = 340 } # Miriquidui -> Norrkoping, BIRKEVIK - link = { imp = 6019 ck3 = 331 ck3 = 330 ck3 = 8734 } # Vikbo -> HAMARKINDA, SUDHERKOPUNG, Grebo - link = { imp = 6008 ck3 = 8727 ck3 = 309 } # Theustia -> Stegeholm, HULINGSRYD - link = { imp = 6007 ck3 = 307 ck3 = 308 } # Meore -> KALMAR, HOGSBY - link = { imp = 6006 ck3 = 79 ck3 = 80 ck3 = 8726 } # Borgamo -> RONNEBY, AVASKAR, Torsas - link = { imp = 6005 ck3 = 87 ck3 = 78 } # Vang -> LISTER, BREGNE - link = { imp = 6002 ck3 = 86 } # Guthisbo -> GOINGE - link = { imp = 6001 ck3 = 72 } # Svimraros -> TOMMERUP + link = { imp = 6029 ck3 = 337 ck3 = 339 ck3 = 338 } # Scandia -> NYKOPUNG, STRIGINES, SUNDBY + link = { imp = 6026 ck3 = 8733 ck3 = 340 } # Scandia -> Norrkoping, BIRKEVIK + link = { imp = 6019 ck3 = 331 ck3 = 330 ck3 = 8734 } # Scandia -> HAMARKINDA, SUDHERKOPUNG, Grebo + link = { imp = 6008 ck3 = 8727 ck3 = 309 } # Scandia -> Stegeholm, HULINGSRYD + link = { imp = 6007 ck3 = 307 ck3 = 308 } # Scandia -> KALMAR, HOGSBY + link = { imp = 6006 ck3 = 79 ck3 = 80 ck3 = 8726 } # Scandia -> RONNEBY, AVASKAR, Torsas + link = { imp = 6005 ck3 = 87 ck3 = 78 } # Scandia -> LISTER, BREGNE + link = { imp = 6002 ck3 = 86 } # Scandia -> GOINGE + link = { imp = 6001 ck3 = 72 } # Scandia -> TOMMERUP link = { imp = 6010 ck3 = 371 ck3 = 370 ck3 = 369 ck3 = 372 } # Vineta -> BURSS, GARNAE, WYSBU, FAROO - link = { imp = 6009 ck3 = 315 ck3 = 314 } # Eowia -> EKETORP, BORGHOLM - link = { imp = 6004 ck3 = 77 } # Burgundarholm -> RONNE + link = { imp = 6009 ck3 = 315 ck3 = 314 } # Scandia -> EKETORP, BORGHOLM + link = { imp = 6004 ck3 = 77 } # Scandia -> RONNE link = { imp = 6000 ck3 = 70 ck3 = 71 } # Uppakra -> LUND, TRELLEBORG - link = { imp = 6003 ck3 = 73 ck3 = 76 } # Bergio -> HELSINGBORG, LAHOLM - link = { imp = 6011 ck3 = 74 } # Feruiria -> HALMSTAD - link = { imp = 6012 ck3 = 229 ck3 = 318 ck3 = 75 } # Konghelle -> BAGAHUS, KUNGAHALLA, ONSALA - link = { imp = 6025 ck3 = 8770 ck3 = 321 } # Ragnaricia -> Uddevalla, DALABORG - link = { imp = 6034 ck3 = 230 } # Tanum -> RANIRIKI - link = { imp = 6036 imp = 6033 ck3 = 322 } # Rania, Vrine -> TISSELSKOG - link = { imp = 6035 ck3 = 231 ck3 = 285 } # Vinovilothia -> AUSTFOLD, BORGARSYSLAR - link = { imp = 6037 ck3 = 246 ck3 = 234 ck3 = 8768 } # Raumariki -> DRAFN, OSLOSYSLAR, Ski - link = { imp = 6038 ck3 = 287 ck3 = 286 } # Lingum -> SKIRINGSSAL, TUNSBERG - link = { imp = 6039 ck3 = 248 } # Grannia -> TELEMARK - link = { imp = 6040 ck3 = 249 } # Augandzia -> ARENDALL - link = { imp = 5381 ck3 = 290 ck3 = 250 ck3 = 292 } # Thule -> HEIANE, RAABOIGDE, ARAK - link = { imp = 6041 ck3 = 251 ck3 = 289 } # Aetelrugia -> LISTER, OTTRUNES - link = { imp = 6043 ck3 = 254 ck3 = 253 } # Arothia -> HAUGELAND, RYFYLKI + link = { imp = 6003 ck3 = 73 ck3 = 76 } # Scandia -> HELSINGBORG, LAHOLM + link = { imp = 6011 ck3 = 74 } # Scandia -> HALMSTAD + link = { imp = 6012 ck3 = 229 ck3 = 318 ck3 = 75 } # Scandia -> BAGAHUS, KUNGAHALLA, ONSALA + link = { imp = 6025 ck3 = 8770 ck3 = 321 } # Scandia -> Uddevalla, DALABORG + link = { imp = 6034 ck3 = 230 } # Scandia -> RANIRIKI + link = { imp = 6036 imp = 6033 ck3 = 322 } # Scandia, Scandia -> TISSELSKOG + link = { imp = 6035 ck3 = 231 ck3 = 285 } # Scandia -> AUSTFOLD, BORGARSYSLAR + link = { imp = 6037 ck3 = 246 ck3 = 234 ck3 = 8768 } # Scandia -> DRAFN, OSLOSYSLAR, Ski + link = { imp = 6038 ck3 = 287 ck3 = 286 } # Scandia -> SKIRINGSSAL, TUNSBERG + link = { imp = 6039 ck3 = 248 } # Scandia -> TELEMARK + link = { imp = 6040 ck3 = 249 } # Scandia -> ARENDALL + link = { imp = 5381 ck3 = 290 ck3 = 250 ck3 = 292 } # IP 382 -> HEIANE, RAABOIGDE, ARAK + link = { imp = 6041 ck3 = 251 ck3 = 289 } # Scandia -> LISTER, OTTRUNES + link = { imp = 6043 ck3 = 254 ck3 = 253 } # Scandia -> HAUGELAND, RYFYLKI link = { comment = "IRELAND BY RADU" } - link = { imp = 2196 ck3 = 26 } # Eblania Occidentalis -> LONGFORD + link = { imp = 2196 ck3 = 26 } # EblaniaOccidentalis -> LONGFORD link = { imp = 2168 ck3 = 27 } # Caucia -> CAVAN - link = { imp = 2170 ck3 = 8742 } # Voluntia Australis -> Clogher - link = { imp = 2172 imp = 2205 ck3 = 17 } # Voluntia Orientalis, Voluntia Occidentalis -> ARMAGH - link = { imp = 2206 ck3 = 8743 } # Voluntia Borealis -> Dungannon - link = { imp = 2202 ck3 = 25 } # Nagnatia Orientalis -> BELCOO - link = { imp = 2181 ck3 = 47 ck3 = 50 } # Velaboria Orientalis -> NENAGH, EMLY + link = { imp = 2170 ck3 = 8742 } # Eblania -> Clogher + link = { imp = 2172 imp = 2205 ck3 = 17 } # VoluntiaOrientalis, VoluntiaOccidentalis -> ARMAGH + link = { imp = 2206 ck3 = 8743 } # VoluntiaSeptentrionalis -> Dungannon + link = { imp = 2202 ck3 = 25 } # NagnatiaOrientalis -> BELCOO + link = { imp = 2181 ck3 = 47 ck3 = 50 } # VelaboriaOrientalis -> NENAGH, EMLY link = { imp = 2187 ck3 = 51 ck3 = 44 } # Brigantia -> CLONMEL, CARRICK - link = { imp = 2164 ck3 = 42 ck3 = 43 ck3 = 41 } # Brigantia Borealis -> ATHY, GOWRAN, KILKENNY - link = { imp = 2185 ck3 = 34 ck3 = 48 } # Gangania Orientalis -> ATHLONE, ROSCREA - link = { imp = 2191 ck3 = 33 } # Manapia Occidentalis -> BIRR - link = { imp = 2192 ck3 = 30 } # Manapia Australis -> KILDARE - link = { imp = 2167 ck3 = 36 ck3 = 31 } # Manapia Borealis -> UISNEACH, TRIM - link = { imp = 2194 ck3 = 8744 } # Caucia Occidentalis -> Adragh - link = { imp = 2201 ck3 = 8745 } # Nagnatia Australis -> Cruachu - link = { imp = 2204 imp = 2203 ck3 = 10 } # Venicnia Borealis, Venicnia Orientalis -> RAPHOE - link = { imp = 2175 ck3 = 9 } # Venicnia Australis -> DONEGAL - link = { imp = 2171 ck3 = 24 } # Nagnatia Occidentalis -> DROMAHAIR - link = { imp = 2197 ck3 = 8748 } # Autenia Borealis -> Killala - link = { imp = 2198 ck3 = 22 } # Autenia Orientalis -> SLIGO + link = { imp = 2164 ck3 = 42 ck3 = 43 ck3 = 41 } # BrigantiaSeptentrionalis -> ATHY, GOWRAN, KILKENNY + link = { imp = 2185 ck3 = 34 ck3 = 48 } # GanganiaOrientalis -> ATHLONE, ROSCREA + link = { imp = 2191 ck3 = 33 } # ManapiaOccidentalis -> BIRR + link = { imp = 2192 ck3 = 30 } # ManapiaMeridionalis -> KILDARE + link = { imp = 2167 ck3 = 36 ck3 = 31 } # ManapiaSeptentrionalis -> UISNEACH, TRIM + link = { imp = 2194 ck3 = 8744 } # CauciaOccidentalis -> Adragh + link = { imp = 2201 ck3 = 8745 } # NagnatiaMeridionalis -> Cruachu + link = { imp = 2204 imp = 2203 ck3 = 10 } # VenicniaSeptentrionalis, VenicniaOrientalis -> RAPHOE + link = { imp = 2175 ck3 = 9 } # VenicniaMeridionalis -> DONEGAL + link = { imp = 2171 ck3 = 24 } # NagnatiaOccidentalis -> DROMAHAIR + link = { imp = 2197 ck3 = 8748 } # AuteniaSeptentrionalis -> Killala + link = { imp = 2198 ck3 = 22 } # AuteniaOrientalis -> SLIGO link = { imp = 2199 ck3 = 21 } # Autenia -> CASTLEBAR - link = { imp = 2200 ck3 = 20 } # Autenia Occidentalis -> GALWAY - link = { imp = 2169 ck3 = 8746 } # Autenia Australis -> Tuam - link = { imp = 2184 ck3 = 8747 } # Gangania Borealis -> Da_Chainoc - link = { imp = 2166 ck3 = 23 } # Gangania -> ATHENRY - link = { imp = 2183 ck3 = 46 ck3 = 8749 } # Gangania Australis -> ENNIS, Kincora - link = { imp = 2163 imp = 2182 ck3 = 8750 } # Velaboria Australis, Velaboria -> Kilmallock - link = { imp = 2180 ck3 = 45 } # Velaboria Borealis -> LIMERICK - link = { imp = 2161 imp = 2176 imp = 2179 ck3 = 52 } # Ivernia, Ivernia Borealis, Velaboria Occidentalis -> TRALEE - link = { imp = 2177 ck3 = 16 ck3 = 54 } # Ivernia Australis -> BALTIMORE, KINSALE - link = { imp = 2162 ck3 = 53 } # Usdia Occidentalis -> CORK - link = { imp = 2186 imp = 2178 ck3 = 49 } # Brigantia Australis, Usdia Orientalis -> WATERFORD - link = { imp = 2188 ck3 = 37 } # Coriondia Australis -> WEXFORD - link = { imp = 2189 ck3 = 38 } # Coriondia -> ENNISCORTHY - link = { imp = 2165 ck3 = 39 ck3 = 40 } # Coriondia Borealis -> FERNS, CARLOW - link = { imp = 2190 ck3 = 32 ck3 = 28 ck3 = 29 } # Eblana -> DROGHEDA, DUBLIN, WICKLOW - link = { imp = 2193 ck3 = 19 } # Caucia Orientalis -> ARDEE - link = { imp = 2195 ck3 = 18 } # Isamnion -> DUNDALK - link = { imp = 2208 ck3 = 8741 ck3 = 15 } # Darinia Australis -> Bangor, DOWNPATRICK - link = { imp = 2173 ck3 = 14 } # Darinia Borealis -> CARRICKFERGUS - link = { imp = 2207 ck3 = 13 } # Robogdia Orientalis -> SLEMISH - link = { imp = 2174 ck3 = 11 ck3 = 12 } # Robogdia Occidentalis -> FAHAN, DERRY + link = { imp = 2200 ck3 = 20 } # AuteniaOccidentalis -> GALWAY + link = { imp = 2169 ck3 = 8746 } # AuteniaMeridionalis -> Tuam + link = { imp = 2184 ck3 = 8747 } # GanganiaSeptentrionalis -> Da_Chainoc + link = { imp = 2166 ck3 = 23 } # Gangani -> ATHENRY + link = { imp = 2183 ck3 = 46 ck3 = 8749 } # GanganiaOccidentalis -> ENNIS, Kincora + link = { imp = 2163 imp = 2182 ck3 = 8750 } # VelaboriaMeridionalis, Velaboria -> Kilmallock + link = { imp = 2180 ck3 = 45 } # VelaboriaSeptentrionalis -> LIMERICK + link = { imp = 2161 imp = 2176 imp = 2179 ck3 = 52 } # Ivernia, IverniaSeptentrionalis, VelaboriaOccidentalis -> TRALEE + link = { imp = 2177 ck3 = 16 ck3 = 54 } # IverniaMeridionalis -> BALTIMORE, KINSALE + link = { imp = 2162 ck3 = 53 } # UsdiaOccidentalis -> CORK + link = { imp = 2186 imp = 2178 ck3 = 49 } # BrigantiaMeridionalis, UsdiaOrientalis -> WATERFORD + link = { imp = 2188 ck3 = 37 } # CoriondiaMeridionalis -> WEXFORD + link = { imp = 2189 ck3 = 38 } # CoriondiaSeptentrionalis -> ENNISCORTHY + link = { imp = 2165 ck3 = 39 ck3 = 40 } # Coriondia -> FERNS, CARLOW + link = { imp = 2190 ck3 = 32 ck3 = 28 ck3 = 29 } # ManapiaOrientalis -> DROGHEDA, DUBLIN, WICKLOW + link = { imp = 2193 ck3 = 19 } # CauciaOrientalis -> ARDEE + link = { imp = 2195 ck3 = 18 } # EblaniaOrientalis -> DUNDALK + link = { imp = 2208 ck3 = 8741 ck3 = 15 } # DariniaMeridionalis -> Bangor, DOWNPATRICK + link = { imp = 2173 ck3 = 14 } # DariniaSeptentrionalis -> CARRICKFERGUS + link = { imp = 2207 ck3 = 13 } # RobogdiaOrientalis -> SLEMISH + link = { imp = 2174 ck3 = 11 ck3 = 12 } # RobogdiaOccidentalis -> FAHAN, DERRY link = { comment = "GREAT BRITAIN BY RADU" } link = { imp = 2115 ck3 = 1726 ck3 = 1725 ck3 = 1724 ck3 = 1736 ck3 = 1734 ck3 = 1733 ck3 = 1735 ck3 = 1695 ck3 = 1697 ck3 = 1696 } # Venicones -> ST ANDREWS, KIRCALDY, DUNFERMLINE, CLACKMANNAN, STIRLING, FALKIRK, CALLANDER, DUMBARTON, MENEITH, GLASGOW - link = { imp = 2133 ck3 = 1720 ck3 = 1721 ck3 = 1742 ck3 = 1741 ck3 = 1745 ck3 = 1744 } # Pinnata Castra -> DUNDEE, KIRRIEMUIR, COUPAR ANGUS, PERTH, CRIEFF, ABERFELDY + link = { imp = 2133 ck3 = 1720 ck3 = 1721 ck3 = 1742 ck3 = 1741 ck3 = 1745 ck3 = 1744 } # PinnataCastra -> DUNDEE, KIRRIEMUIR, COUPAR ANGUS, PERTH, CRIEFF, ABERFELDY link = { imp = 7740 ck3 = 1718 ck3 = 1719 ck3 = 1722 ck3 = 1723 ck3 = 1743 } # Taexalia Australis -> ABERDEEN, KINCARDINE, BALLATER, MAR, DUNKELD link = { imp = 2116 ck3 = 1714 ck3 = 1713 ck3 = 1717 } # Taexali -> PETERHEAD, MORTLACH, GARIOCH - link = { imp = 2125 ck3 = 1716 ck3 = 1712 } # Taixalon Akron -> KEITH, BANFF + link = { imp = 2125 ck3 = 1716 ck3 = 1712 } # TaixalonAkron -> KEITH, BANFF link = { imp = 2123 ck3 = 1709 ck3 = 1715 } # Vacomagi -> INVERNESS, ELGIN link = { imp = 2120 ck3 = 8775 ck3 = 1703 } # Caledonii -> Urquhart, DINGWALL - link = { imp = 7739 ck3 = 1705 ck3 = 8777 } # Lugii -> DORNOCH, Tain + link = { imp = 7739 ck3 = 1705 ck3 = 8777 } # Lugi -> DORNOCH, Tain link = { imp = 2117 ck3 = 1700 ck3 = 1702 } # Epidii -> KILMARTEN, LOMOND - link = { imp = 6311 ck3 = 1701 ck3 = 1710 } # Creones Australes -> GLENCOE, BADENOCH - link = { imp = 2126 ck3 = 1690 } # Epidion Akron -> ARRAN - link = { imp = 2086 ck3 = 1612 ck3 = 1611 } # Fanum Cocidi -> ROTHBURY, HEXHAM + link = { imp = 6311 ck3 = 1701 ck3 = 1710 } # Creones Australis -> GLENCOE, BADENOCH + link = { imp = 2126 ck3 = 1690 } # EpidionAkron -> ARRAN + link = { imp = 2086 ck3 = 1612 ck3 = 1611 } # Vindolanda -> ROTHBURY, HEXHAM link = { imp = 2082 ck3 = 1636 } # Gabrosentum -> WHITEHAVEN link = { imp = 2083 ck3 = 8780 } # Luguvalium -> Wigton link = { imp = 2091 ck3 = 1681 ck3 = 1679 ck3 = 1635 } # Blatobulgium -> DUMFRIES, ANNAN, CARLISLE @@ -3177,19 +3176,19 @@ imperator_invictus = { link = { imp = 2090 ck3 = 1610 } # Bremenium -> BAMBURGH link = { imp = 2110 ck3 = 1682 } # Selgovae -> KILCUDBRITE link = { imp = 2108 ck3 = 1698 ck3 = 1699 } # Manavia -> CASTLETOWN, RAMSEY - link = { imp = 2073 imp = 2080 ck3 = 1639 } # Portus Setantiorum, Calunium -> LANCASTER + link = { imp = 2073 imp = 2080 ck3 = 1639 } # PortusSetantiorum, Calunium -> LANCASTER link = { imp = 2084 ck3 = 1638 } # Brocavum -> APPLEBY link = { imp = 2081 ck3 = 1642 ck3 = 1637 } # Galava -> FURNESS, KENDAL - link = { imp = 2072 ck3 = 1640 } # Bremetennacum -> SALFORD + link = { imp = 2072 ck3 = 1640 } # BremetennacumVeteranorum -> SALFORD link = { imp = 2071 ck3 = 1641 } # Coccium -> WEST DERBY link = { imp = 3058 ck3 = 1591 } # Calcaria -> LEEDS - link = { imp = 2074 imp = 5978 ck3 = 1593 } # Verbeia, Central British Impassable -> HALIFAX + link = { imp = 2074 imp = 5978 ck3 = 1593 } # Olenacum, Central British Impassable -> HALIFAX link = { imp = 2088 ck3 = 1499 } # Virosidum -> BOLTON link = { imp = 2077 ck3 = 1599 } # Isurium -> RIPON link = { imp = 2078 ck3 = 1500 ck3 = 1595 } # Cataractonium -> YARLESTRE, YORK link = { imp = 2075 ck3 = 1588 } # Eboracum -> POCKLINGTON link = { imp = 2035 ck3 = 1521 ck3 = 1535 } # Bramulovium -> BEODERICSWORTH, RADFIELD - link = { imp = 2032 ck3 = 1523 } # Venta Icenorum -> THETFORD + link = { imp = 2032 ck3 = 1523 } # Venta -> THETFORD link = { imp = 2028 ck3 = 1515 } # Camulodunum -> MALDON link = { imp = 2029 ck3 = 1514 } # Combretovium -> COLCHESTER link = { imp = 2020 ck3 = 1509 } # Anderitum -> HASTINGS @@ -3197,47 +3196,47 @@ imperator_invictus = { link = { imp = 2008 ck3 = 1578 } # Lindinis -> ILCHESTER link = { imp = 2005 ck3 = 1572 ck3 = 1579 } # Iscalis -> BARNSTAPLE, TAUNTON link = { imp = 2004 ck3 = 1571 } # Nemetia -> OKEHAMPTON - link = { imp = 2002 ck3 = 1574 } # Herakleous Akron -> TINTAGEL + link = { imp = 2002 ck3 = 1574 } # DeventiaSeptentrionalis -> TINTAGEL link = { imp = 2000 ck3 = 1575 } # Deventiasteno -> HELSTON - link = { imp = 2001 ck3 = 1573 } # Fortis Vallum -> LAUNCESTON - link = { imp = 2003 ck3 = 1570 } # Isca Dumnoniorum -> TOTNES + link = { imp = 2001 ck3 = 1573 } # DeventiaMeridionalis -> LAUNCESTON + link = { imp = 2003 ck3 = 1570 } # IscaDumnoniorum -> TOTNES link = { imp = 2006 ck3 = 1569 } # Olconum -> EXETER link = { imp = 2007 ck3 = 1548 ck3 = 1566 ck3 = 1565 ck3 = 1568 } # Durnovaria -> CHRISTCHURCH, POOLE, WAREHAM, LYME link = { imp = 2011 ck3 = 1562 } # Sorviodunum -> WILTON - link = { imp = 2009 ck3 = 1577 ck3 = 1576 } # Aquae Sulis -> WINTERSTOKE, BATH + link = { imp = 2009 ck3 = 1577 ck3 = 1576 } # AquaeSulis -> WINTERSTOKE, BATH link = { imp = 2010 ck3 = 1545 ck3 = 1567 } # Vindocladia -> SOUTHAMPTON, SHAFTESBURY link = { imp = 2061 ck3 = 1559 } # Dorn -> BANBURY link = { imp = 2101 ck3 = 1633 ck3 = 1661 } # Bravonium -> WIGMORE, LLANDRINDOD link = { imp = 2103 ck3 = 1658 ck3 = 1662 } # Carona -> ABERYSTWYTH, RHAYADER link = { imp = 2060 ck3 = 1647 ck3 = 1648 } # Savicum -> LUDLOW, BISHOP'S CASTLE - link = { imp = 2050 ck3 = 1626 } # Condate Ordovicia -> KIDDERMINSTER + link = { imp = 2050 ck3 = 1626 } # Salinae -> KIDDERMINSTER link = { imp = 2053 ck3 = 1542 } # Durobrivae -> NORMAN CROSS link = { imp = 2062 ck3 = 1616 ck3 = 1613 } # Vernemetum -> MELTON, OAKHAM link = { imp = 2054 ck3 = 1615 } # Ratae -> LEICESTER - link = { imp = 2055 ck3 = 1604 } # Manduessedum -> COVENTRY + link = { imp = 2055 ck3 = 1604 } # Manduessedom -> COVENTRY link = { imp = 2056 ck3 = 1605 } # Letocetum -> BIRMINGHAM link = { imp = 2049 ck3 = 1624 ck3 = 1625 } # Vertis -> WORCESTER, EVESHAM - link = { imp = 2098 ck3 = 1634 ck3 = 1632 } # Gobannium -> CLIFFORD, Hereford + link = { imp = 2098 ck3 = 1634 ck3 = 1632 } # Gobannium -> CLIFFORD, HEREFORD link = { imp = 2100 ck3 = 1660 } # Magnis -> TALGARTH - link = { imp = 2096 ck3 = 1653 ck3 = 1657 } # Dolaucothi -> LLANDOVERY, CARDIGAN + link = { imp = 2096 ck3 = 1653 ck3 = 1657 } # Bremia -> LLANDOVERY, CARDIGAN link = { imp = 2097 ck3 = 1659 } # Cicucium -> BRECON - link = { imp = 2099 ck3 = 1654 ck3 = 1655 } # Oktapitaron Akron -> PEMBROKE, ST DAVIDS + link = { imp = 2099 ck3 = 1654 ck3 = 1655 } # OktapitaronAkron -> PEMBROKE, ST DAVIDS link = { imp = 2095 ck3 = 1652 ck3 = 1656 } # Moridunum -> CARMARTHEN, FISHGUARD link = { imp = 2094 ck3 = 1650 } # Nidum -> SWANSEA link = { imp = 2093 ck3 = 1649 ck3 = 1651 } # Bornium -> CARDIFF, CAERPHILLY link = { imp = 2092 ck3 = 1630 ck3 = 1631 } # Burrium -> NEWPORT, MONMOUTH - link = { imp = 2040 ck3 = 1580 } # Glevum -> Gloucester - link = { imp = 2039 ck3 = 1582 ck3 = 1560 } # Corinium -> WINCHCOMBE, WITNEY - link = { imp = 2038 ck3 = 1526 ck3 = 1512 ck3 = 1513 } # Noviomagus -> SOUTHWARK, KINGSTON, TANDBRIDGE - link = { imp = 2042 ck3 = 1511 ck3 = 1510 } # Vindomis -> GUILDFORD, CHERTSEY + link = { imp = 2040 ck3 = 1580 } # Glevum -> GLOUCESTER + link = { imp = 2039 ck3 = 1582 ck3 = 1560 } # Korinion -> WINCHCOMBE, WITNEY + link = { imp = 2038 ck3 = 1526 ck3 = 1512 ck3 = 1513 } # AdAnsam -> SOUTHWARK, KINGSTON, TANDBRIDGE + link = { imp = 2042 ck3 = 1511 ck3 = 1510 } # Durocobrivis -> GUILDFORD, CHERTSEY link = { imp = 2016 ck3 = 1547 ck3 = 1555 } # Calleva -> BASINGSTOKE, READING link = { imp = 2025 ck3 = 1563 ck3 = 1556 } # Verluccio -> RAMSBURY, NEWBURY link = { imp = 2024 ck3 = 1581 ck3 = 1564 } # Abona -> BRISTOL, MALMESBURY link = { imp = 2012 ck3 = 1561 } # Cunetio -> SALISBURY link = { imp = 2015 ck3 = 1544 } # Leucomagus -> WINCHESTER link = { imp = 2013 ck3 = 1546 } # Venta -> PORTSMOUTH - link = { imp = 2017 ck3 = 1507 } # Noviomagus Durotrigiorum -> CHICHESTER - link = { imp = 2019 ck3 = 1506 ck3 = 1508 } # Novus Portus -> LEWES, ARUN + link = { imp = 2017 ck3 = 1507 } # NoviomagusReginorum -> CHICHESTER + link = { imp = 2019 ck3 = 1506 ck3 = 1508 } # NovusPortus -> LEWES, ARUN link = { imp = 2014 ck3 = 1549 } # Vectis -> CARISBROOKE link = { imp = 2023 ck3 = 1504 ck3 = 1505 } # Vagniacis -> ROCHESTER, TONBRIDGE link = { imp = 2036 ck3 = 1518 ck3 = 1519 } # Aspallitorum -> IPSWICH, SUDBURY @@ -3245,24 +3244,24 @@ imperator_invictus = { link = { imp = 2031 ck3 = 1524 } # Branodunum -> WALSINGHAM link = { imp = 2037 ck3 = 1537 ck3 = 1525 } # Denevia -> ELY, LYNN link = { imp = 2065 ck3 = 1617 } # Derbentio -> BOSWORTH - link = { imp = 2066 ck3 = 1627 ck3 = 1621 } # Aquae Arnemetiae -> STAFFORD, DERBY + link = { imp = 2066 ck3 = 1627 ck3 = 1621 } # AquaeArnemetiae -> STAFFORD, DERBY link = { imp = 2059 ck3 = 1646 } # Viroconium -> SHREWSBURY link = { imp = 2046 ck3 = 1628 } # Mediolanum -> WOLVERHAMPTON - link = { imp = 2064 ck3 = 1629 } # Salinae Cornoviorum -> STOKE-ON-TRENT + link = { imp = 2064 ck3 = 1629 } # Salinae -> STOKE-ON-TRENT link = { imp = 2107 ck3 = 1663 } # Plaenium -> WELSHPOOL link = { imp = 2048 ck3 = 1603 } # Alauna -> WARWICK link = { imp = 2102 ck3 = 1664 } # Levobrinta -> NEWTOWN - link = { imp = 2104 ck3 = 1668 ck3 = 1667 ck3 = 1665 ck3 = 1666 } # Ganganon Akron -> LLYN, CAERNARFON, DOLGELLAU, CORWEN - link = { imp = 2106 ck3 = 1671 ck3 = 1672 ck3 = 1670 } # Canovium -> WREXHAM, RUTHIN, DENBIGH + link = { imp = 2104 ck3 = 1668 ck3 = 1667 ck3 = 1665 ck3 = 1666 } # GanganonAkron -> LLYN, CAERNARFON, DOLGELLAU, CORWEN + link = { imp = 2106 ck3 = 1671 ck3 = 1672 ck3 = 1670 } # Varis -> WREXHAM, RUTHIN, DENBIGH link = { imp = 2047 ck3 = 1643 ck3 = 1644 } # Deva -> CHESTER, NORTHWICH link = { imp = 5977 ck3 = 1623 } # Central British Impassable -> CASTLETON link = { imp = 2070 ck3 = 1645 } # Mamucium -> MACCLESFIELD - link = { imp = 5433 ck3 = 1622 } # Lutudarum -> CHESTERFIELD + link = { imp = 5433 ck3 = 1622 } # Lutudarium -> CHESTERFIELD link = { imp = 5434 ck3 = 1594 } # Rigodounon -> SHEFFIELD link = { imp = 2043 ck3 = 1553 } # Magiovinium -> NEWPORT - link = { imp = 2051 ck3 = 1539 ck3 = 1532 ck3 = 1540 } # Durocobrivae -> AMPTHILL, SAINT ALBANS, LUTON + link = { imp = 2051 ck3 = 1539 ck3 = 1532 ck3 = 1540 } # Duroliponte -> AMPTHILL, SAINT ALBANS, LUTON link = { imp = 2030 ck3 = 1517 } # Sinomagus -> DUNMOW - link = { imp = 2034 ck3 = 1534 ck3 = 1533 } # Duroliponte -> CAMBRIDGE, HERTFORD + link = { imp = 2034 ck3 = 1534 ck3 = 1533 } # Camboritum -> CAMBRIDGE, HERTFORD link = { imp = 2052 ck3 = 1541 ck3 = 1543 ck3 = 1536 } # Durovigutum -> HURSTINGSTONE, LEIGHTONSTONE, PAPWORTH link = { imp = 2026 ck3 = 1557 } # Durocornovium -> ABINGDON link = { imp = 2018 ck3 = 1529 ck3 = 1530 ck3 = 1528 } # Pontes -> GORE, BRENTFORD, WOXBRIGGE @@ -3278,29 +3277,29 @@ imperator_invictus = { link = { imp = 2068 ck3 = 1583 } # Petuaria -> LINCOLN link = { imp = 2057 ck3 = 1586 ck3 = 1585 } # Bannovallum -> BOLINGBROKE, BOSTON link = { imp = 3057 ck3 = 1587 } # Hessulum -> GRIMSBY - link = { imp = 9468 ck3 = 1673 ck3 = 1674 } # Mona -> YNS MON, HOLYHEAD + link = { imp = 9468 ck3 = 1673 ck3 = 1674 } # Mon/Anglesey -> YNS MON, HOLYHEAD link = { imp = 2105 ck3 = 1669 } # Seguntium -> LLANDUDNO link = { imp = 2076 ck3 = 1589 ck3 = 1590 } # Derventio -> COTTINGHAM, BRIDLINGTON link = { imp = 2079 ck3 = 1597 ck3 = 1596 } # Dictium -> WHITBY, SCARBOROUGH - link = { imp = 3059 imp = 5432 ck3 = 1598 } # Bravoniacum, Lavatrae -> RICHMOND + link = { imp = 3059 imp = 5432 ck3 = 1598 } # Bravoniacum, Lavatris -> RICHMOND link = { imp = 2085 ck3 = 1608 } # Vinovia -> DARLINGTON link = { imp = 2087 ck3 = 1606 } # Vindolava -> DURHAM - link = { imp = 3060 ck3 = 1607 } # Vindolanda -> HARTLEPOOL + link = { imp = 3060 ck3 = 1607 } # FanumCocidi -> HARTLEPOOL link = { imp = 2109 ck3 = 1680 ck3 = 1685 ck3 = 1684 } # Novantae -> MAYBOLE, GIRVAN, WIGTOWN link = { imp = 2112 ck3 = 1686 ck3 = 1737 ck3 = 1683 } # Damnonii -> KYLE, LANARK, SANQUHAR link = { imp = 2111 ck3 = 1728 ck3 = 1676 ck3 = 1675 ck3 = 1729 } # Otadini -> HADDINGTON, DUNBAR, BERWICK, GALASHIELS link = { imp = 2114 ck3 = 1731 ck3 = 1732 ck3 = 1730 ck3 = 1739 ck3 = 1727 } # Veluniate -> LINLITHGOW, QUEENSFERRY, PENICUICK, BIGGAR, EDINBURGH link = { imp = 2124 ck3 = 1687 ck3 = 1688 ck3 = 1738 } # Lindon -> STRATHGRYTE, CUNNINGHAM, CADYOU link = { imp = 2127 ck3 = 1691 ck3 = 1689 } # Malaios -> MULL, ISLAY - link = { imp = 2118 ck3 = 1711 ck3 = 35 } # Creones Boreales -> GLENFINNAN, ARDNAMURCHON + link = { imp = 2118 ck3 = 1711 ck3 = 35 } # Creones -> GLENFINNAN, ARDNAMURCHON link = { imp = 2119 ck3 = 8778 ck3 = 8776 } # Carnonacae -> Applecross, Glenelg link = { imp = 2121 ck3 = 8779 ck3 = 1704 } # Caereni -> Assynt, GAIRLOCH - link = { imp = 2131 ck3 = 1708 } # Ouirouedroum Akron -> WICK + link = { imp = 2131 ck3 = 1708 } # OuirouedroumAkron -> WICK link = { imp = 2122 ck3 = 1706 ck3 = 1707 } # Cornavii -> DURNESS, THURSO link = { imp = 2128 ck3 = 1692 } # Scitis -> SKYE - link = { imp = 2130 ck3 = 1694 } # Dumna Australis -> THE UISTS + link = { imp = 2130 ck3 = 1694 } # DumnaMeridionalis -> THE UISTS link = { imp = 2132 ck3 = 8 } # Orcades -> KIRKWALL - link = { imp = 2129 ck3 = 1693 } # Dumna Borealis -> LEWIS + link = { imp = 2129 ck3 = 1693 } # DumnaSeptentrionalis -> LEWIS link = { comment = "OLD MAPPINGS" } link = { comment = "# Pannonia" } link = { imp = 4145 ck3 = 3092 } # Muteno -> PITTEN @@ -3311,19 +3310,19 @@ imperator_invictus = { link = { imp = 3651 ck3 = 3089 } # Faviana -> SANKT POLTEN link = { imp = 3653 ck3 = 3086 } # Quadriburgium -> VIENNA link = { imp = 3918 ck3 = 3087 } # Carnuntum -> BRUCK - link = { imp = 4142 ck3 = 3819 } # Bassena -> Koszeg - link = { imp = 4141 ck3 = 3821 } # Sabaria -> Kormend - link = { imp = 4143 ck3 = 3119 ck3 = 3121 } # Confluentia Latobicorum -> FURSTENFELD, MURZZUSCHLAG + link = { imp = 4142 ck3 = 3819 } # Bassiana -> Koszeg + link = { imp = 4141 ck3 = 3821 } # Savaria -> Kormend + link = { imp = 4143 ck3 = 3119 ck3 = 3121 } # Confluenta -> FURSTENFELD, MURZZUSCHLAG link = { imp = 4135 ck3 = 3117 ck3 = 3111 } # Arraboa -> GRAZ, KOFLACH - link = { imp = 4146 ck3 = 3818 } # Mursella Prima -> Kapuvar + link = { imp = 4146 ck3 = 3818 } # Mursella -> Kapuvar link = { imp = 4147 ck3 = 3822 } # Quadrata -> Moson link = { imp = 4151 ck3 = 3825 } # Murselliana -> Vasarhely - link = { imp = 4148 ck3 = 3826 } # Pelsodis -> Veszprem + link = { imp = 4148 ck3 = 3826 } # Caesariana -> Veszprem link = { imp = 4138 ck3 = 3827 } # Mogentiana -> Kolon link = { imp = 4132 ck3 = 3828 } # Volgum -> Egerszeg link = { imp = 4140 ck3 = 3829 } # Salia -> Letenye link = { imp = 4133 ck3 = 3977 } # Salla -> Szentgotthard - link = { imp = 4134 ck3 = 3116 } # Ad Vicessimum -> FELDBACH + link = { imp = 4134 ck3 = 3116 } # AdVicessimum -> FELDBACH link = { imp = 4149 ck3 = 3824 } # Crispiana -> Zirc link = { imp = 4139 ck3 = 3820 } # Mestrianis -> Vasvar link = { imp = 4150 ck3 = 3823 } # Arrabona -> Gyor @@ -3332,13 +3331,13 @@ imperator_invictus = { link = { imp = 4161 imp = 4160 ck3 = 3805 } # Intercisa, Gorsium -> Szekesfehervar link = { imp = 4158 imp = 4159 ck3 = 3806 } # Campona, Floriana -> Csakvar link = { imp = 4157 ck3 = 3803 } # Aquincum -> Buda - link = { imp = 4162 ck3 = 3839 } # Alta Ripa -> Tolna - link = { imp = 4031 ck3 = 3109 } # Flavia Solva -> LEIBNITZ + link = { imp = 4162 ck3 = 3839 } # AltaRipa -> Tolna + link = { imp = 4031 ck3 = 3109 } # FlaviaSolva -> LEIBNITZ link = { imp = 4136 ck3 = 3106 } # Halicanum -> WINDISCHE BUHEL link = { imp = 4030 ck3 = 3103 } # Poetovio -> MARIBOR link = { imp = 4029 ck3 = 3102 ck3 = 3101 } # Celeia -> KRSKO, KAMNIK link = { imp = 4176 imp = 4039 ck3 = 458 } # Pyrri, Romula -> Istria - link = { imp = 4137 imp = 4175 ck3 = 460 } # Populi, Aquae Iasae -> Varadzin + link = { imp = 4137 imp = 4175 ck3 = 460 } # Populi, AquaeIasae -> Varadzin link = { imp = 4168 ck3 = 3844 } # Sopianae -> Pecs link = { imp = 4048 imp = 5033 imp = 5034 ck3 = 3314 } # Colatio, IMPASSIBLE TERRAIN 033, IMPASSIBLE TERRAIN 034 -> ALPS 8 link = { imp = 4181 ck3 = 461 ck3 = 462 } # Savia -> Zagreb, Krizevci @@ -3355,7 +3354,7 @@ imperator_invictus = { link = { imp = 4171 ck3 = 3843 } # Serena -> Siklos link = { imp = 4170 ck3 = 3842 } # Mursa -> Baranyavar link = { comment = "# Northern Illyria" } - link = { imp = 3605 ck3 = 2510 } # Forum Iulii -> UDINE + link = { imp = 3605 ck3 = 2510 } # ForumIulii -> UDINE link = { imp = 4046 ck3 = 3538 } # Valdasus -> Topusko link = { imp = 4026 ck3 = 2516 } # Longaticum -> GORIZIA link = { imp = 4025 ck3 = 3100 ck3 = 3099 } # Carnium -> KRANJ, VILLACH @@ -3365,14 +3364,14 @@ imperator_invictus = { link = { imp = 4044 ck3 = 3098 ck3 = 3534 } # Crucium -> RUDOLFSWERDE, Samobor link = { imp = 4065 ck3 = 3500 } # Salvium -> Glamoc link = { imp = 4061 ck3 = 3523 ck3 = 3504 } # Splonum -> Pset, Kljuc na Sani - link = { imp = 4057 ck3 = 3548 } # Bournion -> Knin + link = { imp = 4057 ck3 = 3548 } # Burnum -> Knin link = { imp = 4050 ck3 = 3543 } # Arupium -> Kaseg link = { imp = 4051 ck3 = 3544 } # Ancus -> Udbina link = { imp = 4042 ck3 = 3522 ck3 = 3541 } # Raetinium -> Bihac, Dreznik link = { imp = 4043 ck3 = 3521 } # Clandate -> Krupa - link = { imp = 4073 ck3 = 3519 } # Ad Praetorium -> Vodicevo + link = { imp = 4073 ck3 = 3519 } # AdPraetorium -> Vodicevo link = { imp = 4041 ck3 = 3518 } # Segestica -> Dubica - link = { imp = 4040 ck3 = 3537 } # Ad Fines Catariae -> Okic + link = { imp = 4040 ck3 = 3537 } # AdFines -> Okic link = { imp = 4036 imp = 5118 ck3 = 3539 } # Metulum, IMPASSIBLE TERRAIN 118 -> Modrus link = { imp = 4045 ck3 = 3536 } # Colapia -> Dubovac link = { imp = 4055 ck3 = 3546 } # Argyruntum -> Obrovac @@ -3380,12 +3379,12 @@ imperator_invictus = { link = { imp = 4033 ck3 = 464 ck3 = 3540 } # Senia -> Senj, Brinje link = { imp = 4023 ck3 = 2523 ck3 = 3095 } # Tarsatica -> RIJEKA, RIBNICA link = { imp = 4032 ck3 = 459 } # Curicum -> Veglia - link = { imp = 4034 ck3 = 2521 } # Apsaros -> CHERSO - link = { imp = 4059 ck3 = 3551 } # Synodion -> Sinj - link = { imp = 4058 ck3 = 3549 ck3 = 3550 } # Skardon -> Bribir, sibenik + link = { imp = 4034 ck3 = 2521 } # Apsarus -> CHERSO + link = { imp = 4059 ck3 = 3551 } # Magnum -> Sinj + link = { imp = 4058 ck3 = 3549 ck3 = 3550 } # Scardona -> Bribir, sibenik link = { imp = 4056 ck3 = 3547 } # Asseria -> Biograd - link = { imp = 4052 imp = 4053 ck3 = 3545 } # Kissa, Ainona -> Nin - link = { imp = 4054 ck3 = 465 } # Idassa -> Zadar + link = { imp = 4052 imp = 4053 ck3 = 3545 } # Cissa, Aenona -> Nin + link = { imp = 4054 ck3 = 465 } # Iader -> Zadar link = { imp = 4079 ck3 = 3527 ck3 = 3525 } # Stanecli -> Visoki, Bobovac link = { imp = 4075 imp = 4071 ck3 = 3506 } # Castra, Leusaba -> Kotor Varos link = { imp = 4077 ck3 = 463 } # Marsonia -> Usora @@ -3408,44 +3407,44 @@ imperator_invictus = { link = { imp = 4192 ck3 = 3611 } # Spaneta -> Ilok link = { imp = 4193 ck3 = 3613 } # Altina -> Zemun link = { imp = 4190 imp = 4189 ck3 = 3739 } # Bassiana, Sirmium -> Szerem - link = { imp = 4060 ck3 = 467 } # Tragourion -> Split + link = { imp = 4060 ck3 = 467 } # Tragurium -> Split link = { imp = 4062 ck3 = 3552 } # Salona -> Solin link = { comment = "# Southern Illyria" } link = { imp = 4094 imp = 4095 imp = 4093 ck3 = 3595 } # Gabuleum, Theranda, Siparantum -> Pec - link = { imp = 4100 imp = 4099 ck3 = 3594 } # Municipium Dardanorum, Vicianum -> Zvecan + link = { imp = 4100 imp = 4099 ck3 = 3594 } # Dardanorum, Vicianum -> Zvecan link = { imp = 4098 ck3 = 3596 ck3 = 3597 ck3 = 3660 } # Ulpiana -> Pristina, Prizren, Morava - link = { imp = 4087 ck3 = 3572 ck3 = 3571 } # Anderba -> Trebinje, Onogost + link = { imp = 4087 ck3 = 3572 ck3 = 3571 } # Salthua -> Trebinje, Onogost link = { imp = 4107 ck3 = 3568 ck3 = 3567 } # Haedum -> Rogatica, Vhrbosna link = { imp = 4103 ck3 = 3591 ck3 = 3592 } # Sevastum -> Sjenica, Budlimlje link = { imp = 5067 ck3 = 3299 } # IMPASSIBLE TERRAIN 067 -> BALKAN IMPASSABLE TERRAIN 5 - link = { imp = 4102 ck3 = 3586 ck3 = 503 } # Grabaion -> Brskovo, Hum + link = { imp = 4102 ck3 = 3586 ck3 = 503 } # Anderva -> Brskovo, Hum link = { imp = 4106 ck3 = 3590 } # Risetia -> Rujno link = { imp = 4105 ck3 = 3582 ck3 = 3583 ck3 = 3559 ck3 = 3584 ck3 = 3585 } # Pecina -> Gorazde, Hotca, Obalj, Prijepolje, Breznica link = { imp = 4104 ck3 = 3560 ck3 = 3561 } # Leusinium -> Gacko, Nevesinje link = { imp = 4207 imp = 4208 ck3 = 3665 } # Cuppae, Taliata -> Kucevo - link = { imp = 4200 imp = 4201 ck3 = 3664 } # Viminacium Moesiacum, Municipium -> Branicevo - link = { imp = 4199 imp = 4205 ck3 = 3601 } # Margum, Aureus Mons -> Smederevo - link = { imp = 4203 ck3 = 3603 } # Horreum Margi -> Kragujevac - link = { imp = 4218 imp = 4213 ck3 = 3669 } # Castra Martis, Romuliana -> Petrus + link = { imp = 4200 imp = 4201 ck3 = 3664 } # Viminacium, Municipium -> Branicevo + link = { imp = 4199 imp = 4205 ck3 = 3601 } # Margum, AureusMons -> Smederevo + link = { imp = 4203 ck3 = 3603 } # HorreumMargi -> Kragujevac + link = { imp = 4218 imp = 4213 ck3 = 3669 } # Martis, Romuliana -> Petrus link = { imp = 4212 ck3 = 3668 } # Bao -> Zajecar link = { imp = 4204 ck3 = 3666 } # Idimum -> Ravno link = { imp = 4121 ck3 = 3589 } # Gradus -> Arilje - link = { imp = 4206 ck3 = 3602 } # Bannea -> Rudnik + link = { imp = 4206 ck3 = 3602 } # Banneia -> Rudnik link = { imp = 4197 imp = 4122 ck3 = 3607 } # Moesiana, Parthinia -> Uzice link = { imp = 4196 ck3 = 3605 } # Siluvia -> Debrc link = { imp = 4194 ck3 = 3604 } # Gensis -> Macva - link = { imp = 4124 ck3 = 3606 } # Ad Drinum -> Krupanj + link = { imp = 4124 ck3 = 3606 } # AdDrinum -> Krupanj link = { imp = 4125 ck3 = 3565 ck3 = 3566 ck3 = 3564 } # Domavia -> Kuclat, Srebrenica, Olovo link = { imp = 4127 ck3 = 3581 } # Malvesia -> Visegrad - link = { imp = 4120 ck3 = 3588 ck3 = 3598 } # Praesidium Illyricum -> Zica, Krusevac + link = { imp = 4120 ck3 = 3588 ck3 = 3598 } # PraesidiumPompei -> Zica, Krusevac link = { imp = 4119 ck3 = 3587 ck3 = 3599 } # Celegerorum -> Gradac, Koznik - link = { imp = 4101 ck3 = 502 } # Arsia -> Rashka - link = { imp = 4195 imp = 4198 ck3 = 505 } # Singidunum, Ad Sextum Miliarem -> Belgrade + link = { imp = 4101 ck3 = 502 } # Arsa -> Rashka + link = { imp = 4195 imp = 4198 ck3 = 505 } # Singidunum, AdSextum -> Belgrade link = { imp = 4214 imp = 4209 ck3 = 3667 } # Clevora, Egeta -> Kladovo - link = { imp = 4216 imp = 4215 ck3 = 506 } # Bononia Moesiaca, Dortium -> Vidin - link = { imp = 4081 ck3 = 3555 ck3 = 3553 } # Angeliai -> Mokro, Omis - link = { imp = 4084 imp = 8026 imp = 8027 ck3 = 3556 } # Pharos, Issa, Korkyra Melaina -> Hvar - link = { imp = 499 ck3 = 3672 } # Spinopara -> Pernik + link = { imp = 4216 imp = 4215 ck3 = 506 } # Bononia, Dortium -> Vidin + link = { imp = 4081 ck3 = 3555 ck3 = 3553 } # Novae -> Mokro, Omis + link = { imp = 4084 imp = 8026 imp = 8027 ck3 = 3556 } # Pharus, Issa, Korkyra Melaina -> Hvar + link = { imp = 499 ck3 = 3672 } # Pautalia -> Pernik link = { imp = 4117 ck3 = 3656 } # Pautalia -> Velbazhd link = { imp = 4152 imp = 5097 ck3 = 3655 } # Tranupara, IMPASSIBLE TERRAIN 097 -> Kratovo link = { imp = 4108 ck3 = 3642 } # Vizinia -> Zegligovo @@ -3456,56 +3455,56 @@ imperator_invictus = { link = { imp = 4110 ck3 = 3658 } # Tauresium -> Vranje link = { imp = 4109 imp = 5096 ck3 = 3654 } # Anausaro, IMPASSIBLE TERRAIN 096 -> Bosilegrad link = { imp = 4202 imp = 4118 ck3 = 3600 } # Dasminium, Gramrianae -> Prokuplje - link = { imp = 4114 imp = 5092 ck3 = 3593 } # Ad Fines Dardaniae, IMPASSIBLE TERRAIN 092 -> Podujevo - link = { imp = 4113 imp = 5093 ck3 = 3659 } # Vindenis, Upper Dardania -> Novo Brdo + link = { imp = 4114 imp = 5092 ck3 = 3593 } # AdFines, IMPASSIBLE TERRAIN 092 -> Podujevo + link = { imp = 4113 imp = 5093 ck3 = 3659 } # Vindenis, IMPASSIBLE TERRAIN 093 -> Novo Brdo link = { imp = 4111 ck3 = 3657 } # Hammeum -> Glubocica - link = { imp = 4112 ck3 = 501 } # Navissos -> Naissus - link = { imp = 4080 ck3 = 3557 } # Aquae Sulphurae -> Konjic - link = { imp = 4063 ck3 = 3502 } # Osinion -> Duvno - link = { imp = 4069 imp = 4064 ck3 = 3501 } # Ad Matricem, Pelva -> Hlivno - link = { imp = 4068 ck3 = 504 } # Bistua Nova -> Rama + link = { imp = 4112 ck3 = 501 } # Naissus -> Naissus + link = { imp = 4080 ck3 = 3557 } # AquaeSulphurae -> Konjic + link = { imp = 4063 ck3 = 3502 } # Aequum -> Duvno + link = { imp = 4069 imp = 4064 ck3 = 3501 } # AdMatricem, Pelva -> Hlivno + link = { imp = 4068 ck3 = 504 } # BistuaNova -> Rama link = { imp = 4067 ck3 = 3558 } # Bariduum -> Mostar - link = { imp = 4066 ck3 = 3503 } # Delminion -> Imotski - link = { imp = 4083 ck3 = 466 ck3 = 3562 } # Dilenton -> Zachlumia, Drijeva - link = { imp = 4086 ck3 = 3563 } # Salthua -> Kljuc - link = { imp = 4089 ck3 = 3578 ck3 = 469 ck3 = 3577 } # Meteon -> Drivast, Zeta, Moraca - link = { imp = 4092 ck3 = 3579 } # Ad Picarias -> Danj - link = { imp = 1144 ck3 = 3580 } # Skodra -> Skadar - link = { imp = 4091 ck3 = 3574 } # Askrebion -> Kotor + link = { imp = 4066 ck3 = 3503 } # Delminium -> Imotski + link = { imp = 4083 ck3 = 466 ck3 = 3562 } # Diluntum -> Zachlumia, Drijeva + link = { imp = 4086 ck3 = 3563 } # Pardua -> Kljuc + link = { imp = 4089 ck3 = 3578 ck3 = 469 ck3 = 3577 } # Diocleia -> Drivast, Zeta, Moraca + link = { imp = 4092 ck3 = 3579 } # AdPicarias -> Danj + link = { imp = 1144 ck3 = 3580 } # Scodra -> Skadar + link = { imp = 4091 ck3 = 3574 } # Acruvium -> Kotor link = { imp = 4090 ck3 = 3575 } # Bouthoe -> Antivari link = { imp = 2213 ck3 = 3718 ck3 = 3720 ck3 = 3723 ck3 = 3724 ck3 = 3722 } # Albanopolis -> Mat, Kruje, Peshkopi, Debar, Kukes - link = { imp = 2336 ck3 = 3719 ck3 = 3576 } # Lissos -> Lezhe, Ulcinj - link = { imp = 4088 ck3 = 3573 } # Rhizon -> Risan - link = { imp = 4085 ck3 = 468 } # Epidauros Illyrikos -> Ragusa + link = { imp = 2336 ck3 = 3719 ck3 = 3576 } # Lissus -> Lezhe, Ulcinj + link = { imp = 4088 ck3 = 3573 } # Risinum -> Risan + link = { imp = 4085 ck3 = 468 } # Epidaurum -> Ragusa link = { imp = 4082 ck3 = 3569 } # Narona -> Ston link = { comment = "# Moesia" } - link = { imp = 4258 imp = 5108 ck3 = 3689 } # Panisus, IMPASSIBLE TERRAIN 108 -> Preslav + link = { imp = 4258 imp = 5108 ck3 = 3689 } # Panissus, IMPASSIBLE TERRAIN 108 -> Preslav link = { imp = 4243 ck3 = 3686 } # Abritus -> Shumen - link = { imp = 4259 ck3 = 3688 ck3 = 3683 } # Zikideba -> Sborishte, Elena + link = { imp = 4259 ck3 = 3688 ck3 = 3683 } # Zikideva -> Sborishte, Elena link = { imp = 4245 ck3 = 499 } # Haemiana -> Tyrnovo - link = { imp = 4237 imp = 4236 ck3 = 3680 } # Nikopolis, Emporium Discoduraterae -> Lovech + link = { imp = 4237 imp = 4236 ck3 = 3680 } # NicopolisAdIstrum, Discoduraterae -> Lovech link = { imp = 4244 ck3 = 3684 } # Tylis -> Gabrovo link = { imp = 4234 ck3 = 3681 } # Melta -> Samundzhievo link = { imp = 4228 imp = 4229 ck3 = 3678 } # Trullensium, Longinopara -> Vratsa - link = { imp = 4227 imp = 4232 ck3 = 3676 } # Oescus, Ad Putea -> Orehovo + link = { imp = 4227 imp = 4232 ck3 = 3676 } # Oescus, AdPutea -> Orehovo link = { imp = 4238 ck3 = 507 } # Novae -> Nikopolis link = { imp = 4240 imp = 4239 ck3 = 3682 } # Prista, Trimammium -> Cherven link = { imp = 4241 ck3 = 3687 } # Appiara -> Hrazgrad link = { imp = 4242 ck3 = 3685 } # Transmarisca -> Tutrakan link = { imp = 4231 imp = 4233 ck3 = 3679 } # Asamus, Storgosia -> Pliven - link = { imp = 4251 ck3 = 3690 } # Parthenopolis -> Provadiya + link = { imp = 4251 ck3 = 3690 } # Marcianopolis -> Provadiya link = { imp = 4219 ck3 = 3661 } # Timacum -> Svrljig link = { imp = 4217 imp = 4220 ck3 = 3670 } # Ratiaria, Combustica -> Belogradchik link = { imp = 4230 imp = 4116 ck3 = 3671 } # Scretisca, Ballanstra -> Meldi link = { imp = 4221 imp = 4225 ck3 = 3677 } # Montana, Tautiomosis -> Kutlovitsa - link = { imp = 4223 imp = 4224 imp = 4226 ck3 = 3675 } # Almus, Cebrus, Vicus Siamus -> Lom - link = { imp = 4246 imp = 4252 imp = 4253 ck3 = 508 } # Silistra, Helis, Palmatis -> Dorostotum + link = { imp = 4223 imp = 4224 imp = 4226 ck3 = 3675 } # Almus, Cebrus, VicusSiamus -> Lom + link = { imp = 4246 imp = 4252 imp = 4253 ck3 = 508 } # Durostorum, Helis, Palmatis -> Dorostotum link = { imp = 4255 imp = 4254 imp = 4257 ck3 = 3695 } # Tomis, Callatis, Sacidava -> Mangalia - link = { imp = 4250 imp = 4249 imp = 4256 ck3 = 509 } # Tirizis, Krounoi, Tropaeum -> Karvuna + link = { imp = 4250 imp = 4249 imp = 4256 ck3 = 509 } # Tirizis, Krounoi, Traiani -> Karvuna link = { imp = 4248 imp = 4247 ck3 = 3693 } # Odessus, Erite -> Varna - link = { imp = 4515 imp = 4512 imp = 4513 ck3 = 510 } # Capidava, Axiopolis, Histria -> Constantia - link = { imp = 4519 ck3 = 5010 } # Halmyris -> Sulina - link = { imp = 4520 imp = 4518 imp = 4514 imp = 4517 imp = 4516 ck3 = 3694 } # Troesmis, Troismis, Carsium, Libida, Argamum -> Tulcha + link = { imp = 4515 imp = 4512 imp = 4513 ck3 = 510 } # Ulmetensium, Clementia, Histria -> Constantia + link = { imp = 4519 ck3 = 5010 } # Gratiana -> Sulina + link = { imp = 4520 imp = 4518 imp = 4514 imp = 4517 imp = 4516 ck3 = 3694 } # Troesmis, Beroe, Ramidava, Libida, Argamum -> Tulcha link = { comment = "# Northern Greece" } link = { imp = 392 ck3 = 489 } # Kasthaneia -> Thessalia link = { imp = 395 ck3 = 3796 ck3 = 3797 ck3 = 3703 } # Pialeia -> Stagoi, Trikala, Gardiki @@ -3513,52 +3512,52 @@ imperator_invictus = { link = { imp = 469 ck3 = 3791 } # Thaumakoi -> Domokos link = { imp = 399 ck3 = 3792 ck3 = 3794 } # Lamia -> Gardikia, Zetouni link = { imp = 398 ck3 = 3790 } # Nea Halos -> Halmyros - link = { imp = 7896 imp = 5064 ck3 = 3727 } # Nikaia Lokron, IMPASSIBLE TERRAIN 064 -> Boudounitsa - link = { imp = 466 ck3 = 3705 } # Oichalia Aitolias -> Agrafa + link = { imp = 7896 imp = 5064 ck3 = 3727 } # Nicaea Locris, IMPASSIBLE TERRAIN 064 -> Boudounitsa + link = { imp = 466 ck3 = 3705 } # Oichalia -> Agrafa link = { imp = 465 ck3 = 3699 ck3 = 3704 } # Ambrakia -> Sivista, Vrestenitsa link = { imp = 3192 imp = 5070 ck3 = 3715 } # Byllis, IMPASSIBLE TERRAIN 070 -> Argyrokastron - link = { imp = 476 ck3 = 3707 ck3 = 3706 } # Passaron -> Vella, Konitsa - link = { imp = 425 imp = 5068 ck3 = 3708 } # Dodona, Upper Epirus -> Ioannina + link = { imp = 476 ck3 = 3707 ck3 = 3706 } # Helikranon -> Vella, Konitsa + link = { imp = 425 imp = 5068 ck3 = 3708 } # Dodona, IMPASSIBLE TERRAIN 068 -> Ioannina link = { imp = 421 ck3 = 472 } # Phoinike -> Epeiros link = { imp = 467 ck3 = 3711 ck3 = 3712 } # Orikos -> Avlonas, Himara link = { imp = 470 ck3 = 3710 } # Korkyra -> Corfu - link = { imp = 419 ck3 = 3709 } # Gitana -> Grava - link = { imp = 464 ck3 = 473 } # Kassope -> Arta + link = { imp = 419 ck3 = 3709 } # Torone -> Grava + link = { imp = 464 ck3 = 473 } # Nikopolis -> Arta link = { imp = 380 imp = 6399 imp = 5071 ck3 = 3786 } # Dion, Pydna, IMPASSIBLE TERRAIN 071 -> Platamon link = { imp = 5107 imp = 5106 ck3 = 3297 } # IMPASSIBLE TERRAIN 107, IMPASSIBLE TERRAIN 106 -> BALKAN IMPASSABLE TERRAIN 3 link = { imp = 5074 ck3 = 3298 } # IMPASSIBLE TERRAIN 074 -> BALKAN IMPASSABLE TERRAIN 4 link = { imp = 474 ck3 = 3716 ck3 = 1042 ck3 = 1041 } # Omphalion -> Klisura, BALKAN MOUNTAINS, BALKAN MOUNTAINS link = { imp = 5077 ck3 = 1039 } # IMPASSIBLE TERRAIN 077 -> BALKAN MOUNTAINS - link = { imp = 5076 ck3 = 1040 } # Upper Macedonia -> BALKAN MOUNTAINS + link = { imp = 5076 ck3 = 1040 } # IMPASSIBLE TERRAIN 076 -> BALKAN MOUNTAINS link = { imp = 4153 imp = 5099 ck3 = 3653 } # Paroikopolis, IMPASSIBLE TERRAIN 099 -> Melnik - link = { imp = 497 imp = 5098 ck3 = 3649 } # Herakleia Sintike, IMPASSIBLE TERRAIN 098 -> Maleshevo - link = { imp = 4302 imp = 4303 imp = 4304 ck3 = 3650 } # Doberos, Astraia, Astibos -> Strumica + link = { imp = 497 imp = 5098 ck3 = 3649 } # Sintia, IMPASSIBLE TERRAIN 098 -> Maleshevo + link = { imp = 4302 imp = 4303 imp = 4304 ck3 = 3650 } # Doberos, Astraia, Bargala -> Strumica link = { imp = 371 ck3 = 3770 } # Euporia -> Siderokastron link = { imp = 386 ck3 = 3779 ck3 = 3780 } # Asseros -> Langades, Mavrouda link = { imp = 385 ck3 = 3778 } # Tauriana -> Gynaikokastron link = { imp = 405 ck3 = 3647 ck3 = 3645 ck3 = 3646 ck3 = 3644 } # Stuberra -> Prilep, Veles, Kicevo, Tetovo link = { imp = 397 imp = 393 ck3 = 3651 } # Stobi, Pelagonia -> Prosek link = { imp = 369 imp = 5100 ck3 = 3771 } # Sirra, IMPASSIBLE TERRAIN 100 -> Serres - link = { imp = 411 ck3 = 3638 } # Herakleia Lynkestis -> Bitola + link = { imp = 411 ck3 = 3638 } # Herakleia -> Bitola link = { imp = 382 ck3 = 3783 } # Edessa -> Voden link = { imp = 379 ck3 = 3782 } # Pella -> Sthlanitza link = { imp = 383 imp = 384 ck3 = 3781 } # Europos, Gortynia -> Maglen link = { imp = 408 imp = 5072 ck3 = 3640 } # Arnisa, IMPASSIBLE TERRAIN 072 -> Kastoria link = { imp = 400 ck3 = 3795 ck3 = 3785 } # Elimia -> Grevena, Kalyvia link = { imp = 3175 imp = 5069 ck3 = 3702 } # Eratyra, IMPASSIBLE TERRAIN 069 -> Metzovo - link = { imp = 3356 ck3 = 3641 } # Beoue -> Goritsa + link = { imp = 3356 ck3 = 3641 } # Beue -> Goritsa link = { imp = 3125 ck3 = 3639 } # Keletron -> Devol link = { imp = 455 imp = 5075 ck3 = 3520 } # Dimalion, IMPASSIBLE TERRAIN 075 -> Valamara - link = { imp = 2264 ck3 = 3721 } # Parthos -> Hiskampis - link = { imp = 412 imp = 5073 ck3 = 471 } # Lychidnos, IMPASSIBLE TERRAIN 073 -> Ochrid - link = { imp = 1445 ck3 = 3713 ck3 = 3714 } # Kodrion -> Antipatreia, Skrapar - link = { imp = 415 ck3 = 470 } # Epidamnos -> Dyrrachion + link = { imp = 2264 ck3 = 3721 } # Clodiana -> Hiskampis + link = { imp = 412 imp = 5073 ck3 = 471 } # Lychnidos, IMPASSIBLE TERRAIN 073 -> Ochrid + link = { imp = 1445 ck3 = 3713 ck3 = 3714 } # Antipatreia -> Antipatreia, Skrapar + link = { imp = 415 ck3 = 470 } # Dyrrachion -> Dyrrachion link = { imp = 422 ck3 = 3717 } # Apollonia -> Savra link = { imp = 428 imp = 381 ck3 = 3784 } # Methone, Beroia -> Veria - link = { imp = 404 imp = 8024 imp = 8025 ck3 = 3787 } # Olooson, Boloustana Pass, Petra Pass -> Servia + link = { imp = 404 imp = 8024 imp = 8025 ck3 = 3787 } # Olooson, Volustana Pass, Petra Pass -> Servia link = { imp = 389 imp = 388 imp = 396 imp = 8023 ck3 = 3788 } # Larissa, Gonnoi, Pelinna, Tempe Pass -> Elasson link = { imp = 390 ck3 = 3789 } # Pherai -> Velestino - link = { imp = 391 ck3 = 488 } # Pagasai -> Demetrias + link = { imp = 391 ck3 = 488 } # Demetrias -> Demetrias link = { imp = 366 ck3 = 3774 } # Tragilos -> Chrysopolis link = { imp = 374 ck3 = 3775 ck3 = 491 } # Kalindoia -> Rendina, Chalkidike link = { imp = 373 ck3 = 490 } # Thessalonica -> Thessalonike @@ -3566,43 +3565,43 @@ imperator_invictus = { link = { imp = 377 imp = 378 ck3 = 3776 } # Akanthos, Torone -> Ierrisos link = { comment = "# Thrace" } link = { imp = 479 ck3 = 3635 } # Kabyle -> Sliven - link = { imp = 4313 ck3 = 3636 } # Selymnos -> Kran - link = { imp = 486 imp = 478 ck3 = 3637 } # Viamata, Seuthopolis -> Kopsis - link = { imp = 496 ck3 = 3631 } # Kabakle -> Dbilin + link = { imp = 4313 ck3 = 3636 } # Kaspapauras -> Kran + link = { imp = 486 imp = 478 ck3 = 3637 } # Diocletianopolis, Seuthopolis -> Kopsis + link = { imp = 496 ck3 = 3631 } # Paleokastro -> Dbilin link = { imp = 491 ck3 = 3633 } # Bourdepa -> Janitsa link = { imp = 487 ck3 = 3625 ck3 = 3616 } # Bessapara -> Krichim, Kavurskoto Kale link = { imp = 3853 imp = 488 ck3 = 3623 } # Sparata, Pistiros -> Tsepina - link = { imp = 4097 imp = 5102 ck3 = 3674 } # Helice, IMPASSIBLE TERRAIN 102 -> Rila + link = { imp = 4097 imp = 5102 ck3 = 3674 } # Bylazora, IMPASSIBLE TERRAIN 102 -> Rila link = { imp = 498 ck3 = 3652 } # Scaptopara -> Scaptopara link = { imp = 5104 ck3 = 1043 } # IMPASSIBLE TERRAIN 104 -> BALKAN MOUNTAINS - link = { imp = 4306 ck3 = 3614 } # Keirpara -> Kalyatta + link = { imp = 4306 ck3 = 3614 } # Bansko -> Kalyatta link = { imp = 4235 imp = 5105 ck3 = 3673 } # Sostra, IMPASSIBLE TERRAIN 105 -> Stipon link = { imp = 477 ck3 = 500 } # Serdica -> Serdica link = { imp = 4311 ck3 = 3624 ck3 = 3620 } # Parambole -> Stanimaka, Smolyan - link = { imp = 4310 ck3 = 3618 } # Gelbous -> Zherkovo + link = { imp = 4310 ck3 = 3618 } # Kardzhali -> Zherkovo link = { imp = 494 ck3 = 3621 } # Oraion -> Ustra - link = { imp = 4309 ck3 = 3634 } # Pizos -> Haskovo - link = { imp = 492 ck3 = 3619 } # Rhodope -> Lyutitsa - link = { imp = 493 ck3 = 3626 } # Hyperperakion -> Mezeshka - link = { imp = 490 ck3 = 3627 } # Zerbai -> Didymoteichon + link = { imp = 4309 ck3 = 3634 } # Pizus -> Haskovo + link = { imp = 492 ck3 = 3619 } # Fotinovo -> Lyutitsa + link = { imp = 493 ck3 = 3626 } # Perperakion -> Mezeshka + link = { imp = 490 ck3 = 3627 } # Plotinoupolis -> Didymoteichon link = { imp = 485 ck3 = 493 } # Philippopolis -> Philippopolis - link = { imp = 360 ck3 = 3622 } # Porsula -> Byalgrad + link = { imp = 360 ck3 = 3622 } # Porsulae -> Byalgrad link = { imp = 352 ck3 = 3763 } # Ornoi -> Chariopolis - link = { imp = 495 imp = 489 imp = 4154 ck3 = 494 } # Tarpodizo, Uskodama, Burtudizon -> Adrianopolis - link = { imp = 4312 ck3 = 3630 } # Debelton -> Potamukastel - link = { imp = 4307 ck3 = 3692 } # Eidos -> Ktenia + link = { imp = 495 imp = 489 imp = 4154 ck3 = 494 } # Tarpodizo, Nike, Burtudizon -> Adrianopolis + link = { imp = 4312 ck3 = 3630 } # Goliamoto -> Potamukastel + link = { imp = 4307 ck3 = 3692 } # Marcellae -> Ktenia link = { imp = 348 ck3 = 3760 } # Bergoule -> Arkadiopolis - link = { imp = 4314 ck3 = 497 } # Bizye -> Thrake - link = { imp = 357 ck3 = 3768 } # Maroneia -> Traianopolis - link = { imp = 5101 imp = 5103 ck3 = 1044 } # IMPASSIBLE TERRAIN 101, Upper Thrace -> BALKAN MOUNTAINS - link = { imp = 414 ck3 = 3617 ck3 = 3615 } # Keirpara -> Nevrokop, Dospat - link = { imp = 364 ck3 = 3772 ck3 = 3554 } # Philippoi -> Drama, Rodopi - link = { imp = 365 ck3 = 3773 } # Amphipolis -> Kavala + link = { imp = 4314 ck3 = 497 } # Urasa -> Thrake + link = { imp = 357 ck3 = 3768 } # Sale -> Traianopolis + link = { imp = 5101 imp = 5103 ck3 = 1044 } # IMPASSIBLE TERRAIN 101, IMPASSIBLE TERRAIN 103 -> BALKAN MOUNTAINS + link = { imp = 414 ck3 = 3617 ck3 = 3615 } # Nicopolis ad Nestum -> Nevrokop, Dospat + link = { imp = 364 ck3 = 3772 ck3 = 3554 } # Philippi -> Drama, Rodopi + link = { imp = 365 ck3 = 3773 } # Amfipolis -> Kavala link = { imp = 362 ck3 = 492 } # Abdera -> Strymon - link = { imp = 363 ck3 = 3767 } # Neapolis Thrake -> Xanthia + link = { imp = 363 ck3 = 3767 } # Neapolis -> Xanthia link = { imp = 484 ck3 = 3632 } # Beroe -> Beroe link = { imp = 480 ck3 = 498 ck3 = 3691 } # Mesembria -> Mesembria, Aytos - link = { imp = 482 imp = 481 ck3 = 3628 } # Apollonia Pontike, Anchialos -> Burgas + link = { imp = 482 imp = 481 ck3 = 3628 } # Apollonia Pontica, Anchialus -> Burgas link = { imp = 343 ck3 = 3629 } # Aulaiouteichos -> Sozopol link = { imp = 342 ck3 = 3758 ck3 = 3759 } # Salmydessos -> Salmydessus, Bizye link = { imp = 353 ck3 = 3765 } # Kypsela -> Kypsela @@ -3612,17 +3611,17 @@ imperator_invictus = { link = { imp = 345 imp = 341 ck3 = 3761 } # Selymbria, Philia -> Selymbria link = { imp = 1453 ck3 = 496 } # Byzantion -> Byzantion link = { comment = "# Crete" } - link = { imp = 344 imp = 355 imp = 8018 ck3 = 3745 } # Praesos, Hierapytna, Arkades -> Agios Nikolaos - link = { imp = 359 ck3 = 3746 } # Lyctus -> Ierapetra - link = { imp = 358 imp = 361 ck3 = 480 } # Knossos, Gortyna -> Chandax - link = { imp = 351 imp = 372 imp = 8016 imp = 8014 ck3 = 3743 } # Rhithymna, Korion, Lappa, Idaion Mons -> Rethymno + link = { imp = 344 imp = 355 imp = 8018 ck3 = 3745 } # Itanos, Hierapytna, Arkades -> Agios Nikolaos + link = { imp = 359 ck3 = 3746 } # Olous -> Ierapetra + link = { imp = 358 imp = 361 ck3 = 480 } # Knosos, Gortyna -> Chandax + link = { imp = 351 imp = 372 imp = 8016 imp = 8014 ck3 = 3743 } # Rhithymna, Korion, Lappa, Mount Ida -> Rethymno link = { imp = 367 imp = 368 imp = 8017 ck3 = 479 } # Kydonia, Polyrrenia, Leuka Mons -> Kaneia - link = { imp = 370 ck3 = 3744 } # Tarrha -> Paleohora + link = { imp = 370 ck3 = 3744 } # Tarra -> Paleohora link = { comment = "# Aegean Islands" } link = { imp = 1970 imp = 1653 ck3 = 3740 } # Kos, Kalymnos -> Kos - link = { imp = 280 ck3 = 3742 } # Poseidion -> Karpathos + link = { imp = 280 ck3 = 3742 } # Karpathos -> Karpathos link = { imp = 454 imp = 1996 ck3 = 3757 } # Thera, Astypalaia -> Thera - link = { imp = 1830 imp = 8015 imp = 7937 imp = 7936 ck3 = 3741 } # Lindos, Kameiros, Telos, Nisyros -> Lindos + link = { imp = 1830 imp = 8015 imp = 7937 imp = 7936 ck3 = 3741 } # Kalekapi, Kamiros, Telos, Nisyros -> Lindos link = { imp = 266 ck3 = 483 } # Rhodos -> Rhodos link = { imp = 1974 imp = 310 ck3 = 3754 } # Samos, Leros -> Samos link = { imp = 263 imp = 1915 imp = 7905 imp = 1964 imp = 387 imp = 375 ck3 = 484 } # Naxos, Paros, Siphnos, Milos, Ios, Amorgos -> Naxos @@ -3634,32 +3633,32 @@ imperator_invictus = { link = { imp = 356 ck3 = 3769 } # Thasos -> Thasos link = { imp = 270 imp = 297 imp = 1774 ck3 = 3752 } # Lemnos, Imbros, Samothrake -> Lemnos link = { comment = "# Southern Greece" } - link = { imp = 7903 imp = 451 imp = 441 imp = 7734 ck3 = 3799 } # Hermione, Troizen, Epidauros, Methana Volcano -> Damala + link = { imp = 7903 imp = 451 imp = 441 imp = 7734 ck3 = 3799 } # Hermione, Troizen, Epidauros, Methana -> Damala link = { imp = 456 imp = 5065 ck3 = 3697 } # Thermon, IMPASSIBLE TERRAIN 065 -> Prousos - link = { imp = 7803 imp = 462 ck3 = 3700 } # Oiniadai, Stratos -> Angelokastron + link = { imp = 7803 imp = 462 ck3 = 3700 } # Calydon, Stratos -> Angelokastron link = { imp = 457 ck3 = 475 } # Naupaktos -> Hellas link = { imp = 401 ck3 = 3793 } # Hypate -> Neopatras - link = { imp = 458 imp = 475 imp = 7801 ck3 = 3698 } # Chaleion, Herakleia Trachinia, Kallipolis -> Lidoriki + link = { imp = 458 imp = 475 imp = 7801 ck3 = 3698 } # Chaleion, Kallipolis, Kallion -> Lidoriki link = { imp = 424 imp = 7798 ck3 = 3729 } # Delphi, Elateia -> Amfissa link = { imp = 468 imp = 423 imp = 402 ck3 = 3728 } # Thespiai, Orchomenos, Opous -> Levadia - link = { imp = 7800 imp = 426 imp = 406 imp = 7802 ck3 = 3730 } # Geraneia Ore, Thebes, Anthedon, Tanagra -> Thebes - link = { imp = 403 imp = 7899 ck3 = 3726 } # Oreus, Kerinthos -> Oreoi - link = { imp = 409 imp = 7904 imp = 410 imp = 7900 imp = 7901 imp = 407 ck3 = 485 } # Karystos, Styra, Oichalia Euboias, Dirphys Mons, Eretria, Chalcis -> Euboia - link = { imp = 442 imp = 7799 imp = 416 imp = 7898 imp = 413 imp = 5062 ck3 = 482 } # Aigina, Thorikos, Athens, Rhamnous, Oropos, Parnes Mons -> Atheniai + link = { imp = 7800 imp = 426 imp = 406 imp = 7802 ck3 = 3730 } # Cithaeron Mons, Thebes, Anthedon, Tanagra -> Thebes + link = { imp = 403 imp = 7899 ck3 = 3726 } # Histiaia, Kerinthos -> Oreoi + link = { imp = 409 imp = 7904 imp = 410 imp = 7900 imp = 7901 imp = 407 ck3 = 485 } # Karystos, Styra, Oichalia, Dirphys Mons, Eretria, Chalcis -> Euboia + link = { imp = 442 imp = 7799 imp = 416 imp = 7898 imp = 413 imp = 5062 ck3 = 482 } # Aigina, Thorikos, Athens, Rhamnous, Oropos, IMPASSIBLE TERRAIN 062 -> Atheniai link = { imp = 417 imp = 7902 imp = 7897 ck3 = 3731 } # Megara, Salamis, Eleusis -> Megara - link = { imp = 459 imp = 463 ck3 = 3701 } # Leukas, Thyrrheion -> Vonitsa + link = { imp = 459 imp = 463 ck3 = 3701 } # Leucas, Thyrrheion -> Vonitsa link = { imp = 461 ck3 = 474 } # Kefalonia -> Cephalonia link = { imp = 460 ck3 = 3696 } # Zakynthos -> Zakynthos link = { imp = 444 ck3 = 3801 } # Aigion -> Vostitsa link = { imp = 449 ck3 = 3738 } # Kleitor -> Kalavryta link = { imp = 435 imp = 436 imp = 5058 ck3 = 3733 } # Heraia, Megalopolis, IMPASSIBLE TERRAIN 058 -> Karytaina - link = { imp = 7892 imp = 7891 imp = 438 imp = 5060 ck3 = 3732 } # Thyrea, Tegea, Mantinea, IMPASSIBLE TERRAIN 060 -> Nikli + link = { imp = 7892 imp = 7891 imp = 438 imp = 5060 ck3 = 3732 } # Anthana, Tegea, Mantinea, IMPASSIBLE TERRAIN 060 -> Nikli link = { imp = 440 ck3 = 3798 } # Argos -> Argos link = { imp = 418 imp = 7893 imp = 7894 imp = 448 imp = 7895 imp = 8003 imp = 5061 ck3 = 481 } # Korinthos, Pellene, Kleonai, Stymphalia, Arachnaion Mons, Sikyon, IMPASSIBLE TERRAIN 061 -> Korinthos link = { imp = 7890 imp = 434 ck3 = 476 } # Dyme, Patrai -> Achaia link = { imp = 431 imp = 5057 ck3 = 3800 } # Messene, IMPASSIBLE TERRAIN 057 -> Kalamata link = { imp = 446 imp = 439 imp = 5059 ck3 = 3737 } # Elis, Olympia, IMPASSIBLE TERRAIN 059 -> Andravida - link = { imp = 450 imp = 427 imp = 5056 ck3 = 3735 } # Kyphanta, Sparta, IMPASSIBLE TERRAIN 056 -> Lacedaemonia + link = { imp = 450 imp = 427 imp = 5056 ck3 = 3735 } # Prasiai, Sparta, IMPASSIBLE TERRAIN 056 -> Lacedaemonia link = { imp = 429 imp = 471 ck3 = 478 } # Epidauros Limera, Kythera -> Monemvasia link = { imp = 7889 imp = 473 imp = 430 ck3 = 3736 } # Tainaron, Leuktron, Gytheion -> Mistra link = { imp = 433 ck3 = 3734 } # Lepreon -> Arcadia @@ -3667,43 +3666,43 @@ imperator_invictus = { link = { comment = "# North Italy" } link = { imp = 3561 ck3 = 8764 } # Eporedia -> Santhia link = { imp = 3568 ck3 = 2473 } # Victimulae -> BIELLA - link = { imp = 3563 ck3 = 2042 ck3 = 2044 } # Forum Vibii -> PINEROLO, SALUZZO + link = { imp = 3563 ck3 = 2042 ck3 = 2044 } # ForumVibii -> PINEROLO, SALUZZO link = { imp = 3535 ck3 = 2456 } # Segusio -> CANAVESE link = { imp = 3566 ck3 = 2471 ck3 = 2480 } # Novaria -> NOVARA, GALLARATE - link = { imp = 3591 ck3 = 2541 } # Vicus Varianus -> CENTO + link = { imp = 3591 ck3 = 2541 } # VicusVarianus -> CENTO link = { imp = 150 ck3 = 2529 } # Vicus Aventia -> CONA - link = { imp = 140 ck3 = 2553 ck3 = 2551 } # Faesulae -> CASENTINO, CAMALDOLI - link = { imp = 148 ck3 = 2548 } # Forum Popilii -> FORLI + link = { imp = 140 ck3 = 2553 ck3 = 2551 } # Festulae -> CASENTINO, CAMALDOLI + link = { imp = 148 ck3 = 2548 } # Mevaniola -> FORLI link = { imp = 132 ck3 = 2584 ck3 = 2552 } # Sarsina -> CIVITAS CASTELLI, MONTEFELTRO link = { imp = 147 ck3 = 2549 } # Faventia -> IMOLA link = { imp = 146 ck3 = 2542 ck3 = 2550 } # Bononia -> BOLOGNA, MONTE SOLE link = { imp = 151 ck3 = 2535 ck3 = 2534 } # Regium Lepidum -> CANOSSA, REGGIO - link = { imp = 3567 imp = 3569 ck3 = 2472 } # Plumbia, Sebuinus Vicus -> POMBIA - link = { imp = 3577 ck3 = 2481 } # Forum Licinii -> MONZA - link = { imp = 3025 ck3 = 2746 } # Aurelia Aquensis -> BADEN + link = { imp = 3567 imp = 3569 ck3 = 2472 } # Plumbia, SebuinusVicus -> POMBIA + link = { imp = 3577 ck3 = 2481 } # ForumLicinii -> MONZA + link = { imp = 3025 ck3 = 2746 } # AureliaAquensis -> BADEN link = { imp = 3735 ck3 = 2745 ck3 = 2747 } # Portus -> VAIHINGEN, CALW link = { imp = 3052 ck3 = 2733 ck3 = 2744 } # Saletio -> HEIDELBERG, HOCKENHEIM - link = { imp = 3738 ck3 = 2743 } # Vicus Alsinensium -> HEILBRONN - link = { imp = 3731 ck3 = 2757 ck3 = 2760 } # Brigobannis -> FURSTENBERG, CLETTGAU - link = { imp = 3619 ck3 = 2052 ck3 = 2788 } # Clunia Raetia -> FARDUZES, WERDENBURG - link = { imp = 3617 imp = 3657 ck3 = 2055 } # Clavenna, Alpis Inferior -> CHUR - link = { imp = 3616 imp = 3615 imp = 3613 ck3 = 2789 } # Curia, Mons Alpinus, Octodurus -> VARES - link = { imp = 3618 ck3 = 2478 } # Summus Lacus -> BELLINZONA + link = { imp = 3738 ck3 = 2743 } # VicusAlsinensium -> HEILBRONN + link = { imp = 3731 ck3 = 2757 ck3 = 2760 } # Tenedo -> FURSTENBERG, CLETTGAU + link = { imp = 3619 ck3 = 2052 ck3 = 2788 } # Curia -> FARDUZES, WERDENBURG + link = { imp = 3617 imp = 3657 ck3 = 2055 } # Clavenna, AlpinusMons -> CHUR + link = { imp = 3616 imp = 3615 imp = 3613 ck3 = 2789 } # Lapidaria, MonsAlpinus, Octodurus -> VARES + link = { imp = 3618 ck3 = 2478 } # SumusLacus -> BELLINZONA link = { imp = 3570 ck3 = 2477 ck3 = 2479 } # Comum -> COMO, VARESE - link = { imp = 3580 ck3 = 2492 } # Laus Insubrum -> CREMA + link = { imp = 3580 ck3 = 2492 } # LausPompeia -> CREMA link = { imp = 3573 ck3 = 2476 } # Lambrum -> LODI link = { imp = 3572 ck3 = 2475 } # Ticinum -> PAVIA link = { imp = 3565 ck3 = 2474 } # Laumellum -> VIGEVANO - link = { imp = 3551 ck3 = 2041 } # Taurasia -> TURIN + link = { imp = 3551 ck3 = 2041 } # AugustaTaurinorum -> TURIN link = { imp = 3550 ck3 = 2467 } # Coeba -> ALBA - link = { imp = 3564 ck3 = 2045 } # Pollentia -> CHIERI - link = { imp = 3548 imp = 3530 ck3 = 2043 } # Bagiennia, Mustiae Calmes -> CUNEO + link = { imp = 3564 ck3 = 2045 } # Polentia -> CHIERI + link = { imp = 3548 imp = 3530 ck3 = 2043 } # AugustaBagiennorum, MustiaeCalmes -> CUNEO link = { imp = 23 imp = 104 ck3 = 2586 } # Narnia, Amiternum -> TERNI link = { imp = 16 ck3 = 2579 } # Veii -> FARFA link = { imp = 18 ck3 = 2574 } # Nepete -> PATERNO - link = { imp = 14 ck3 = 2573 } # Pyrgi -> SUTRI + link = { imp = 14 ck3 = 2573 } # Caere -> SUTRI link = { imp = 17 ck3 = 2571 ck3 = 2572 } # Tarquini -> CIVITAVECCHIA, VITERBO - link = { imp = 116 imp = 125 ck3 = 2565 } # Clusium, Ad Novas -> CHIUSI + link = { imp = 116 imp = 125 ck3 = 2565 } # Clusium, Ad -> CHIUSI link = { imp = 115 ck3 = 2567 } # Rusellae -> MONTALCINO link = { imp = 114 ck3 = 2562 } # Vetulonia -> GROSSETO link = { imp = 22 imp = 112 ck3 = 2569 } # Volci, Telamon -> ORBETELLO @@ -3712,152 +3711,152 @@ imperator_invictus = { link = { imp = 120 ck3 = 2566 } # Perusia -> PERUGIA link = { imp = 124 ck3 = 2564 ck3 = 8760 } # Cortona -> CORTONA, Asciano link = { imp = 129 ck3 = 2558 ck3 = 2563 ck3 = 2559 } # Volaterrae -> VOLTERRA, EMPOLI, IMPRUNETA - link = { imp = 128 ck3 = 2557 } # Vada Volaterrana -> LIVORNO - link = { imp = 127 imp = 126 ck3 = 2561 } # Ilva, Populonia -> PIOMBINO + link = { imp = 128 ck3 = 2557 } # Vada -> LIVORNO + link = { imp = 127 imp = 126 ck3 = 2561 } # Ilva, Populonium -> PIOMBINO link = { imp = 3589 imp = 3588 ck3 = 2530 } # Hostilia, Colicaria -> GUASTALLA link = { imp = 3593 ck3 = 2525 } # Hatria -> ROVIGO link = { imp = 131 ck3 = 2554 } # Arretium -> AREZZO link = { imp = 3562 ck3 = 2470 } # Vercellae -> VERCELLI - link = { imp = 3559 imp = 3555 imp = 3558 ck3 = 2469 } # Hasta, Forum Fulvii, Vardagate -> ASTI - link = { imp = 3553 imp = 3557 imp = 3556 ck3 = 2468 } # Libarna, Crixia, Aquae Statiellae -> ACQUI + link = { imp = 3559 imp = 3555 imp = 3558 ck3 = 2469 } # Hasta, FulviiValentinum, Vardagate -> ASTI + link = { imp = 3553 imp = 3557 imp = 3556 ck3 = 2468 } # Libarna, Crixia, Statiellae -> ACQUI link = { imp = 3574 ck3 = 2487 } # Clastidium -> VOGHERA link = { imp = 3554 ck3 = 2483 } # Dertona -> TORTONA link = { imp = 3575 ck3 = 2488 } # Placentia -> PIACENZA link = { imp = 3582 ck3 = 2491 ck3 = 8762 } # Cremona -> CREMONA, Chiari link = { imp = 3662 ck3 = 2502 ck3 = 2496 } # Bretina -> LESSINIA, GARDA - link = { imp = 3595 ck3 = 2666 } # Ateste -> MONTAGNANA + link = { imp = 3595 ck3 = 2666 } # Aponus -> MONTAGNANA link = { imp = 3603 ck3 = 2511 } # Opitergium -> CENETA link = { imp = 3604 ck3 = 2513 } # Reunia -> PORDENONE link = { imp = 143 ck3 = 2504 ck3 = 8765 } # Brundulum -> CHIOGGIA, Este - link = { imp = 3601 ck3 = 2512 } # Portus Liquentiae -> CAORLE - link = { imp = 3602 ck3 = 8766 } # Iulia Concordia -> Portogruaro - link = { imp = 3607 ck3 = 2514 } # Timavos -> TRIESTE - link = { imp = 4018 ck3 = 2519 } # Tergeste -> PIRAN - link = { imp = 4022 imp = 5031 ck3 = 2520 } # Piquentum, Histria Mons -> PAZIN + link = { imp = 3601 ck3 = 2512 } # PortusLiquentiae -> CAORLE + link = { imp = 3602 ck3 = 8766 } # IuliaConcordia -> Portogruaro + link = { imp = 3607 ck3 = 2514 } # FonsTimavi -> TRIESTE + link = { imp = 4018 ck3 = 2519 } # Aegida -> PIRAN + link = { imp = 4022 imp = 5031 ck3 = 2520 } # Piquentum, IMPASSIBLE TERRAIN 031 -> PAZIN link = { imp = 4021 ck3 = 2522 } # Flanona -> VIKLA link = { imp = 4020 imp = 4019 ck3 = 2518 } # Pola, Parentium -> PULA link = { imp = 3606 ck3 = 2508 ck3 = 2507 } # Aquileia -> AQUILEIA, GRADO link = { imp = 3596 ck3 = 2500 ck3 = 2509 } # Vicetia -> VICENZA, LONIGO link = { imp = 3661 ck3 = 2499 } # Tridentium -> TRENTO link = { imp = 3579 ck3 = 2493 } # Bergomum -> BERGAMO - link = { imp = 3571 imp = 3578 ck3 = 2482 } # Mediolanum, Argentea -> MILAN + link = { imp = 3571 imp = 3578 ck3 = 2482 } # Mediolanium, Argentea -> MILAN link = { imp = 3547 ck3 = 2465 ck3 = 8763 } # Savo -> SAVONA, Mondovi link = { imp = 3576 ck3 = 2490 ck3 = 2489 } # Florentiola -> FLORENTIOLA, RONCAGLIA link = { imp = 3549 ck3 = 2466 } # Genua -> GENOA link = { imp = 3552 ck3 = 2485 } # Segesta -> CHIAVARI - link = { imp = 137 imp = 141 ck3 = 2531 } # Luna, Portus Veneris -> LUNA + link = { imp = 137 imp = 141 ck3 = 2531 } # Luna, Portus -> LUNA link = { imp = 152 imp = 153 imp = 154 ck3 = 2532 } # Parma, Forum Novum, Rubra -> PARMA link = { imp = 3587 ck3 = 2533 } # Brixellum -> BRESCELLO link = { imp = 149 ck3 = 2540 } # Mutina -> MODENA - link = { imp = 3592 ck3 = 2527 } # Forum Alieni -> FERRARA + link = { imp = 3592 ck3 = 2527 } # Feraria -> FERRARA link = { imp = 3598 ck3 = 2506 } # Altinum -> MESTRE link = { imp = 3599 imp = 3600 ck3 = 2505 } # Tarvisium, Acelum -> TREVISO link = { imp = 3594 ck3 = 2503 ck3 = 8767 } # Patavium -> PADUA, Malamacco - link = { imp = 3597 ck3 = 2517 } # Anneianum -> VENEZIA - link = { imp = 145 ck3 = 2524 ck3 = 2526 } # Corniculani -> ADRIA, POMPOSA + link = { imp = 3597 ck3 = 2517 } # AdPortum -> VENEZIA + link = { imp = 145 ck3 = 2524 ck3 = 2526 } # Hadriani -> ADRIA, POMPOSA link = { imp = 144 ck3 = 2528 } # Spina -> COMACCHIO link = { imp = 3584 imp = 3590 ck3 = 2501 } # Verona, Auraei -> VERONA link = { imp = 3581 ck3 = 2494 ck3 = 8761 } # Brixia -> BRESCIA, Tirano link = { imp = 3586 imp = 3583 imp = 3585 ck3 = 2497 } # Mantua, Ariolica, Bedriacum -> MANTUA link = { imp = 5019 ck3 = 3259 } # IMPASSIBLE TERRAIN 019 -> Northern Apennine Mountains 2 link = { imp = 139 imp = 135 ck3 = 2538 } # Pistoriae, Valvata -> PISTORJA - link = { imp = 138 ck3 = 2537 ck3 = 2545 } # Luca -> LUCCA, PRATO + link = { imp = 138 ck3 = 2537 ck3 = 2545 } # Lucca -> LUCCA, PRATO link = { imp = 136 ck3 = 2536 } # Pisae -> PISA link = { imp = 134 ck3 = 2543 ck3 = 2544 } # Florentia -> FIRENZE, VALLOMBROSA - link = { imp = 130 ck3 = 2560 } # Sena Iulia -> SIENA - link = { imp = 103 imp = 5015 ck3 = 2585 } # Plestia, IMPASSIBLE TERRAIN 015 -> SPOLETO - link = { imp = 21 imp = 102 ck3 = 2568 } # Visentium, Tuder -> ORIVETO - link = { imp = 113 ck3 = 2570 } # Aurinia -> SOANA + link = { imp = 130 ck3 = 2560 } # Sena -> SIENA + link = { imp = 103 imp = 5015 ck3 = 2585 } # Spoletium, IMPASSIBLE TERRAIN 015 -> SPOLETO + link = { imp = 21 imp = 102 ck3 = 2568 } # Volsini, Tuder -> ORIVETO + link = { imp = 113 ck3 = 2570 } # Suana -> SOANA link = { imp = 118 ck3 = 2583 ck3 = 2587 } # Cingulum -> CAGLI, CAMERINO link = { imp = 122 ck3 = 2555 } # Urbinum -> URBINO - link = { imp = 121 ck3 = 2556 } # Sena Gallica -> PESARO + link = { imp = 121 ck3 = 2556 } # Sena -> PESARO link = { imp = 133 ck3 = 2547 } # Ariminum -> RIMINI link = { imp = 142 ck3 = 2546 } # Ravenna -> RAVENNA link = { imp = 117 ck3 = 2594 ck3 = 2599 } # Ancona -> ANCONA, MACERATA - link = { imp = 109 imp = 110 ck3 = 2597 } # Asculum, Septempeda -> ASCOLI PICENO - link = { imp = 111 ck3 = 2598 } # Picenum -> FERMO + link = { imp = 109 imp = 110 ck3 = 2597 } # Asculum, Urbs -> ASCOLI PICENO + link = { imp = 111 ck3 = 2598 } # Firmum -> FERMO link = { comment = "# South Italy" } - link = { imp = 34 ck3 = 2604 ck3 = 8759 } # Iuvanum -> LANCIANO, Agnone - link = { imp = 2 imp = 19 ck3 = 2589 } # Tibur, Carsioli -> TIVOLI - link = { imp = 1712 imp = 30 imp = 27 imp = 24 ck3 = 2600 } # Antinum, Aufidena, Fucens, Peltuinum -> AVEZZANO + link = { imp = 34 ck3 = 2604 ck3 = 8759 } # Carrini -> LANCIANO, Agnone + link = { imp = 2 imp = 19 ck3 = 2589 } # Tiber, Carsioli -> TIVOLI + link = { imp = 1712 imp = 30 imp = 27 imp = 24 ck3 = 2600 } # Antinum, Muruvium, Sora, Alba -> AVEZZANO link = { imp = 5009 imp = 5008 ck3 = 788 } # IMPASSIBLE TERRAIN 009, IMPASSIBLE TERRAIN 008 -> Central Apennine Mountains 2 link = { imp = 5011 imp = 5012 imp = 5014 imp = 5013 ck3 = 787 } # IMPASSIBLE TERRAIN 011, IMPASSIBLE TERRAIN 012, IMPASSIBLE TERRAIN 014, IMPASSIBLE TERRAIN 013 -> Central Apennine Mountains 1 - link = { imp = 20 imp = 105 ck3 = 2588 } # Cures, Trebula -> RIETI + link = { imp = 20 imp = 105 ck3 = 2588 } # Reate, Trebula -> RIETI link = { imp = 107 ck3 = 2596 } # Interamnia -> TERAMO - link = { imp = 106 imp = 5010 imp = 108 imp = 28 ck3 = 2595 } # Aternum, IMPASSIBLE TERRAIN 010, Matrinum, Corfinium -> ATRI + link = { imp = 106 imp = 5010 imp = 108 imp = 28 ck3 = 2595 } # Hadria, IMPASSIBLE TERRAIN 010, Castrum, Corfinium -> ATRI link = { imp = 1 ck3 = 2575 ck3 = 2577 } # Roma -> ROMA, VATICAN link = { imp = 15 ck3 = 2576 ck3 = 2578 } # Ostia -> OSTIA, PALO - link = { imp = 29 ck3 = 2603 } # Histonium -> CLUIELI - link = { imp = 31 imp = 5006 ck3 = 2602 } # Venafrum, IMPASSIBLE TERRAIN 006 -> CASSINO - link = { imp = 25 imp = 26 imp = 5007 ck3 = 2591 } # Norba, Fregellae, IMPASSIBLE TERRAIN 007 -> SEGNI - link = { imp = 4 imp = 3 ck3 = 2590 } # Circeii, Lavinium -> VELLETRI - link = { imp = 5 ck3 = 2593 ck3 = 2592 } # Fundi -> GAETA, TERRACINA - link = { imp = 6 imp = 8 ck3 = 2606 } # Capua, Saticula -> CAPUA - link = { imp = 32 ck3 = 2607 } # Bovianum -> ISERNIA - link = { imp = 33 imp = 41 ck3 = 2669 } # Corneliani, Beneventum -> ALIFE - link = { imp = 35 imp = 48 imp = 49 ck3 = 2605 } # Buca, Terventum, Gerumum -> LARINO + link = { imp = 29 ck3 = 2603 } # Aternum -> CLUIELI + link = { imp = 31 imp = 5006 ck3 = 2602 } # Sora, IMPASSIBLE TERRAIN 006 -> CASSINO + link = { imp = 25 imp = 26 imp = 5007 ck3 = 2591 } # Signia, Fregellae, IMPASSIBLE TERRAIN 007 -> SEGNI + link = { imp = 4 imp = 3 ck3 = 2590 } # Antium, Satricum -> VELLETRI + link = { imp = 5 ck3 = 2593 ck3 = 2592 } # Priverneum -> GAETA, TERRACINA + link = { imp = 6 imp = 8 ck3 = 2606 } # Cumae, Capua -> CAPUA + link = { imp = 32 ck3 = 2607 } # Aecernia -> ISERNIA + link = { imp = 33 imp = 41 ck3 = 2669 } # Bovinium, Saticula -> ALIFE + link = { imp = 35 imp = 48 imp = 49 ck3 = 2605 } # Larinum, Terventum, Gerumum -> LARINO link = { imp = 50 ck3 = 8758 } # Urium -> Vieste - link = { imp = 36 ck3 = 2610 } # Teanum Apulum -> LUCERA - link = { imp = 44 ck3 = 8757 } # Tuticum -> Ariano + link = { imp = 36 ck3 = 2610 } # Teanum -> LUCERA + link = { imp = 44 ck3 = 8757 } # Saepinum -> Ariano link = { imp = 45 imp = 5005 ck3 = 2615 } # Ausculum, IMPASSIBLE TERRAIN 005 -> MELFI link = { imp = 38 imp = 39 imp = 37 ck3 = 2614 } # Sipontum, Canusium, Luceria -> SIPONTO link = { imp = 40 ck3 = 8756 } # Nola -> Aversa - link = { imp = 7 imp = 7733 ck3 = 2608 } # Neapolis, Vesuvius Volcano -> NAPOLI - link = { imp = 43 imp = 1718 ck3 = 2609 } # Compsa, Aeclanum -> BENEVENTO + link = { imp = 7 imp = 7733 ck3 = 2608 } # Neapolis, Vesuvius -> NAPOLI + link = { imp = 43 imp = 1718 ck3 = 2609 } # Beneventum, Aeclanum -> BENEVENTO link = { imp = 9 imp = 1713 imp = 1716 ck3 = 2611 } # Pompeii, Nuceria, Abellinum -> AMALFI - link = { imp = 47 ck3 = 2616 } # Acerronia -> POTENZA - link = { imp = 12 ck3 = 8754 } # Velia -> Policastro - link = { imp = 13 ck3 = 2613 } # Blanda -> MARATEA - link = { imp = 11 imp = 10 ck3 = 2612 } # Paestum, Salerna -> SALERNO - link = { imp = 53 imp = 59 ck3 = 2632 } # Grumentum, Consilinum -> STIGLIANO - link = { imp = 71 imp = 46 ck3 = 2617 } # Hostiliusanus, Potentia -> ACERENZA - link = { imp = 70 imp = 60 imp = 42 ck3 = 2618 } # Silvium, Bantia, Venusia -> VENOSA - link = { imp = 69 imp = 58 ck3 = 2619 } # Natiolum, Barduli -> TRANI - link = { imp = 67 imp = 66 imp = 68 ck3 = 2623 } # Gnatia, Barium, Turum -> BARI - link = { imp = 65 imp = 57 ck3 = 2622 } # Lupiae, Brundisium -> BRINDISI + link = { imp = 47 ck3 = 2616 } # Numistro -> POTENZA + link = { imp = 12 ck3 = 8754 } # Elea -> Policastro + link = { imp = 13 ck3 = 2613 } # Pyxus -> MARATEA + link = { imp = 11 imp = 10 ck3 = 2612 } # Paestum, Salemum -> SALERNO + link = { imp = 53 imp = 59 ck3 = 2632 } # Grumentum, Cosillium -> STIGLIANO + link = { imp = 71 imp = 46 ck3 = 2617 } # Stiglianum, Potentia -> ACERENZA + link = { imp = 70 imp = 60 imp = 42 ck3 = 2618 } # Alitala, Bantia, Venusia -> VENOSA + link = { imp = 69 imp = 58 ck3 = 2619 } # Bitontinon, Cannae -> TRANI + link = { imp = 67 imp = 66 imp = 68 ck3 = 2623 } # Gnatia, Barium, Silvium -> BARI + link = { imp = 65 imp = 57 ck3 = 2622 } # Valetium, Brundisium -> BRINDISI link = { imp = 63 imp = 64 ck3 = 2620 } # Callipolis, Hydruntum -> OLRANTO link = { imp = 62 ck3 = 8755 } # Menturia -> Lecce link = { imp = 56 ck3 = 2621 } # Tarentum -> TARANTO link = { imp = 55 ck3 = 2624 } # Metapontum -> MATERA link = { imp = 61 imp = 54 ck3 = 2631 } # Siris, Heraclea -> CAMARDA link = { imp = 79 imp = 52 ck3 = 2629 } # Petelia, Thurii -> ROSSANO - link = { imp = 51 imp = 5004 ck3 = 2630 } # Laus, Mons Pullinus -> CASTROVILLARI + link = { imp = 51 imp = 5004 ck3 = 2630 } # Laus, IMPASSIBLE TERRAIN 004 -> CASTROVILLARI link = { imp = 77 ck3 = 2628 ck3 = 8752 } # Consentia -> COSENZA, Belvedere link = { imp = 78 ck3 = 2625 ck3 = 8753 } # Croton -> COTRONE, Catanzaro - link = { imp = 75 imp = 5002 ck3 = 8751 } # Hipponium, Serrae -> Tropea - link = { imp = 74 imp = 76 ck3 = 2626 } # Stylacium, Temesa -> SQUILLUCE - link = { imp = 72 imp = 73 imp = 5001 ck3 = 2627 } # Rhegium, Locri, Aspromons -> REGGIO + link = { imp = 75 imp = 5002 ck3 = 8751 } # Hipponium, IMPASSIBLE TERRAIN 002 -> Tropea + link = { imp = 74 imp = 76 ck3 = 2626 } # Stylacium, Tempsa -> SQUILLUCE + link = { imp = 72 imp = 73 imp = 5001 ck3 = 2627 } # Rhegium, Locri, IMPASSIBLE TERRAIN 001 -> REGGIO link = { comment = "# Sardinia et Corsica" } - link = { imp = 3513 imp = 3514 imp = 3516 imp = 3512 ck3 = 2647 } # Kanelate, Ouagon, Sermigion, Rhopikon -> BASTIA - link = { imp = 3510 imp = 3511 ck3 = 2649 } # Saone, Alouka -> CALVI + link = { imp = 3513 imp = 3514 imp = 3516 imp = 3512 ck3 = 2647 } # Kentourinon, Mariana, Sermigion, Rhopikon -> BASTIA + link = { imp = 3510 imp = 3511 ck3 = 2649 } # Ourkinion, Alouka -> CALVI link = { imp = 3509 imp = 5054 ck3 = 2650 } # Pauka, IMPASSIBLE TERRAIN 054 -> AJACCIO link = { imp = 3515 ck3 = 2648 } # Aleria -> CORTE link = { imp = 3507 ck3 = 2651 } # Rhoubra -> VECCHIO link = { imp = 3508 ck3 = 2652 } # Phikaria -> BONIFACIO - link = { imp = 3501 imp = 3496 ck3 = 2662 } # Luguido, Gurulis -> SASSARI - link = { imp = 3498 imp = 3502 imp = 5055 ck3 = 2663 } # Makopsis, Lesa, IMPASSIBLE TERRAIN 055 -> ARDARA - link = { imp = 3491 imp = 3495 ck3 = 2661 } # Lacon, Hydata -> ISILI - link = { imp = 3504 imp = 3506 imp = 3505 ck3 = 2658 } # Phausiane, Longones, Tibula -> OLBIA - link = { imp = 3489 imp = 3503 ck3 = 2657 } # Kares, Thorp -> GALTELLI - link = { imp = 3488 ck3 = 2656 } # Sulki Tyrsen -> TORTOLI - link = { imp = 3499 imp = 3500 ck3 = 2664 } # Nure, Libisonis -> PORTO TORRES - link = { imp = 3494 imp = 3497 ck3 = 2665 } # Sanaphar, Carbia -> ALGHERO - link = { imp = 3490 ck3 = 2660 } # Serdan -> SAMASSI - link = { imp = 3485 imp = 3493 imp = 3492 imp = 3482 ck3 = 2659 } # Gurgua, Tharros, Othoca, Samas -> ORISTANO - link = { imp = 3486 imp = 3487 ck3 = 2655 } # Sarcapos, Tyrsenia -> CARBONARA - link = { imp = 3483 imp = 3484 ck3 = 2653 } # Nura, Karali -> CAGLIARI + link = { imp = 3501 imp = 3496 ck3 = 2662 } # HydataLesitana, Gouroulis -> SASSARI + link = { imp = 3498 imp = 3502 imp = 5055 ck3 = 2663 } # Makopsis, Sorabile, IMPASSIBLE TERRAIN 055 -> ARDARA + link = { imp = 3491 imp = 3495 ck3 = 2661 } # Oualentia, ForumTraiani -> ISILI + link = { imp = 3504 imp = 3506 imp = 3505 ck3 = 2658 } # Olbia, Viniolae, PortusTibulae -> OLBIA + link = { imp = 3489 imp = 3503 ck3 = 2657 } # FanumCarisi, Coclearia -> GALTELLI + link = { imp = 3488 ck3 = 2656 } # Sulcis -> TORTOLI + link = { imp = 3499 imp = 3500 ck3 = 2664 } # NymphaiosLimen, TurrisLibisonis -> PORTO TORRES + link = { imp = 3494 imp = 3497 ck3 = 2665 } # Cornus, HermaionAkron -> ALGHERO + link = { imp = 3490 ck3 = 2660 } # Sestis -> SAMASSI + link = { imp = 3485 imp = 3493 imp = 3492 imp = 3482 ck3 = 2659 } # SardusPater, Tharros, Neapolis, HydataNeapolitana -> ORISTANO + link = { imp = 3486 imp = 3487 ck3 = 2655 } # Ferraria, Porticenses -> CARBONARA + link = { imp = 3483 imp = 3484 ck3 = 2653 } # Nora, Caralis -> CAGLIARI link = { imp = 3481 ck3 = 2654 } # Sulcis -> IGLESIAS link = { comment = "# Northern Anatolia" } - link = { imp = 1790 imp = 1791 imp = 1833 imp = 7993 imp = 7998 ck3 = 5598 } # Komana Pontike, Ibora, Dazimon, Amaseia Mountains, Gazioura -> Comana Pontica - link = { imp = 1781 imp = 1783 ck3 = 706 } # Basgoedariza, Anniaka -> Colonea + link = { imp = 1790 imp = 1791 imp = 1833 imp = 7993 imp = 7998 ck3 = 5598 } # Comana Pontica, Ibora, Dazimon, Amaseia Mountains, Gazioura -> Comana Pontica + link = { imp = 1781 imp = 1783 ck3 = 706 } # Koloneia, Anniaca -> Colonea link = { imp = 1761 ck3 = 5693 } # Charton -> Hyspiratis - link = { imp = 1760 imp = 1771 imp = 1772 imp = 1776 imp = 1763 ck3 = 5699 } # Sinoria, Analibna, Sediska, Arauraka, Tareina -> Sinoria - link = { imp = 217 imp = 214 ck3 = 5574 } # Tobata, Timonion -> Hadrionopolis + link = { imp = 1760 imp = 1771 imp = 1772 imp = 1776 imp = 1763 ck3 = 5699 } # Sinoria, Domana, Longini Fossatum, Arauraka, Darucinte -> Sinoria + link = { imp = 217 imp = 214 ck3 = 5574 } # Tobata, Kaisareia -> Hadrionopolis link = { imp = 210 ck3 = 5573 } # Dadybra -> Cratea - link = { imp = 207 imp = 209 ck3 = 740 } # Herakleia Pontike, Tieion -> Herakleia + link = { imp = 207 imp = 209 ck3 = 740 } # Herakleia, Tieion -> Herakleia link = { imp = 224 ck3 = 5561 ck3 = 5576 } # Gordioukome -> Gordium, Iuliopolis link = { imp = 322 imp = 7912 ck3 = 5560 } # Lamounia, Gordioukome Mountains -> Saegud - link = { imp = 327 imp = 7765 ck3 = 5564 } # Oka, Tattaios -> Oka + link = { imp = 327 imp = 7765 ck3 = 5564 } # Oka, Transmonte -> Oka link = { imp = 1758 ck3 = 5736 } # Pharangion -> Taoskari link = { imp = 1757 ck3 = 5737 } # Kaballa -> Tortomi link = { imp = 1759 ck3 = 5709 } # Sper -> Speri @@ -3867,14 +3866,14 @@ imperator_invictus = { link = { imp = 1752 ck3 = 5734 } # Chorzene -> Kars link = { imp = 1779 imp = 1778 imp = 8004 ck3 = 5702 } # Olotoedariza, Chorsabia, Analibna Mountains -> Kheranion link = { imp = 1842 imp = 8005 ck3 = 5704 } # Zara, Pisingara Mountains -> Kamisa - link = { imp = 1782 imp = 7980 ck3 = 5701 } # Dasteira, Pedachthoe Mountains -> Nicopolis_ARM + link = { imp = 1782 imp = 7980 ck3 = 5701 } # Nicopolis, Pedachthoe Mountains -> Nicopolis_ARM link = { imp = 860 ck3 = 4862 } # Anzitene -> HISN DI-L-QARNAIN link = { imp = 993 ck3 = 5718 } # Calata -> Khlat - link = { imp = 1562 ck3 = 701 } # Zombis -> Manzikert + link = { imp = 1562 ck3 = 701 } # Isumbo -> Manzikert link = { imp = 991 ck3 = 5721 } # Arest -> Berkri link = { imp = 988 imp = 995 ck3 = 682 } # Thospia, Molchia -> Van - link = { imp = 987 imp = 998 imp = 989 ck3 = 5723 } # Zoaranda, Artemita Vaspurakan, Nymphaeum -> Akhtamar - link = { imp = 978 imp = 846 ck3 = 5717 } # Tatyene, Cymiza -> Tatvan + link = { imp = 987 imp = 998 imp = 989 ck3 = 5723 } # Zoaranda, Artemita, Nymphaeum -> Akhtamar + link = { imp = 978 imp = 846 ck3 = 5717 } # Dauduana, Cymiza -> Tatvan link = { imp = 994 ck3 = 5716 ck3 = 5715 } # Ashtishat -> Musch, Varto link = { imp = 4037 imp = 5193 ck3 = 4864 } # Kitharizon, IMPASSIBLE TERRAIN 193 -> QULB link = { imp = 845 ck3 = 703 } # Martyropolis -> Martyropolis @@ -3883,30 +3882,30 @@ imperator_invictus = { link = { imp = 1819 imp = 7994 ck3 = 5590 } # Amaseia, Kizari -> Amaseia link = { imp = 1755 ck3 = 5733 } # Colit -> Zariskat link = { imp = 1754 ck3 = 5741 } # Artahan -> Artaani - link = { imp = 1821 imp = 1823 imp = 7992 ck3 = 5591 } # Phazemon, Diakopa, Pteria Mountains -> Magnopolis - link = { imp = 1824 imp = 1826 imp = 1828 ck3 = 5592 } # Andrapa, Pteria Pontias, Domanion -> Andrapa + link = { imp = 1821 imp = 1823 imp = 7992 ck3 = 5591 } # Thermai Phazemoniton, Diakopa, Pteria Mountains -> Magnopolis + link = { imp = 1824 imp = 1826 imp = 1828 ck3 = 5592 } # Andrapa, Pteria, Germanikopolis -> Andrapa link = { imp = 199 imp = 200 imp = 7922 ck3 = 5586 } # Kandara, Kimiata, Klaneios Mountains -> Kandara - link = { imp = 215 imp = 220 imp = 221 imp = 223 imp = 222 imp = 7916 ck3 = 5575 } # Krateia, Oinoe Ikarias, Peion, Legna, Bloukion, Krateia Mountains -> Krateia - link = { imp = 198 imp = 218 imp = 196 ck3 = 5580 } # Gangra, Kallydion, Klossama -> Gangra - link = { imp = 175 ck3 = 5633 } # Germa -> Aspona + link = { imp = 215 imp = 220 imp = 221 imp = 223 imp = 222 imp = 7916 ck3 = 5575 } # Krateia, Irakia, Artiknos, Legna, Bloukion, Krateia Mountains -> Krateia + link = { imp = 198 imp = 218 imp = 196 ck3 = 5580 } # Gangra, Anadynata, Klossama -> Gangra + link = { imp = 175 ck3 = 5633 } # Germax -> Aspona link = { imp = 229 imp = 228 ck3 = 5579 } # Orbana, Androna -> Papira - link = { imp = 194 imp = 193 imp = 231 ck3 = 753 } # Ankyra, Gorbeous, Arinna -> Ankyra - link = { imp = 1832 ck3 = 5618 } # Saralos -> Therma - link = { imp = 204 imp = 195 imp = 197 imp = 202 ck3 = 5684 } # Aspona, Malos, Sarmalios, Doudousa -> Ecobrogis + link = { imp = 194 imp = 193 imp = 231 ck3 = 753 } # Ancyra, Gorbeus, Ikotarion -> Ankyra + link = { imp = 1832 ck3 = 5618 } # Therma -> Therma + link = { imp = 204 imp = 195 imp = 197 imp = 202 ck3 = 5684 } # Ecobrogis, Malos, Sarmalius, Ciscissus -> Ecobrogis link = { imp = 5177 ck3 = 734 } # IMPASSIBLE TERRAIN 177 -> SOUTHEASTERN TAURUS - link = { imp = 1851 imp = 1766 ck3 = 5605 } # Euspena, Altintepe -> Euspena + link = { imp = 1851 imp = 1766 ck3 = 5605 } # Euspena, Arane -> Euspena link = { imp = 1907 ck3 = 5600 } # Agranai -> Agranai link = { imp = 1836 imp = 1909 ck3 = 5596 } # Pteria, Sibora -> Pteria link = { imp = 1888 ck3 = 5626 } # Podandus -> Faustinopolis link = { imp = 5169 imp = 5168 ck3 = 5687 } # IMPASSIBLE TERRAIN 169, IMPASSIBLE TERRAIN 168 -> Mount Demirkazik link = { imp = 1834 imp = 7999 imp = 7997 ck3 = 5597 } # Zela, Sermousa, Sermousa Mountains -> Zela - link = { imp = 1839 imp = 1840 imp = 1845 ck3 = 5599 } # Karana, Ouerisa, Phiara -> Sebastopolis + link = { imp = 1839 imp = 1840 imp = 1845 ck3 = 5599 } # Sebastopolis, Verisa, Phiara -> Sebastopolis link = { imp = 1846 imp = 1843 ck3 = 5601 } # Pedachthoe, Kamisa -> Pedachtoe link = { imp = 1806 imp = 1792 imp = 7995 ck3 = 5689 } # Themiskyra, Kabeira, Kabeira Mountains -> Oinaion - link = { imp = 1793 imp = 1795 imp = 1786 ck3 = 5690 } # Side Pontike, Kotyora, Sauronisena -> Polemonium + link = { imp = 1793 imp = 1795 imp = 1786 ck3 = 5690 } # Polemonion, Kotyora, Sauronisena -> Polemonium link = { imp = 1798 imp = 5174 ck3 = 705 } # Kerasous, IMPASSIBLE TERRAIN 174 -> Cerasus link = { imp = 1797 imp = 1775 imp = 1773 ck3 = 5691 } # Koralla, Magnana, Tzantzakon -> Koralla - link = { imp = 1729 ck3 = 5696 } # Athenai Pontikai -> Archabis + link = { imp = 1729 ck3 = 5696 } # Athenon Akron -> Archabis link = { imp = 1726 imp = 1728 imp = 1727 ck3 = 5697 } # Apsaros, Morthoula, Kissa -> Petra link = { imp = 1756 ck3 = 5740 } # Artanuji -> Arthanuji link = { imp = 1733 imp = 1732 imp = 1730 imp = 1731 ck3 = 5692 } # Pisingara, Hyssos, Rhizaion, Ophis -> Rhizus @@ -3914,179 +3913,179 @@ imperator_invictus = { link = { imp = 1807 imp = 1804 ck3 = 738 } # Amisos, Boinasa -> Amisos link = { imp = 1810 ck3 = 5588 } # Zaliches -> Zagora link = { imp = 1814 imp = 7921 ck3 = 751 } # Stephane, Sinope Mountains -> Paphlagonia - link = { imp = 232 imp = 216 imp = 211 imp = 7920 ck3 = 5587 } # Bonita, Zeita, Ziporeia, Kandara Mountains -> Ziporea - link = { imp = 1829 ck3 = 5585 } # Blaine -> Castamon - link = { imp = 1816 imp = 1815 ck3 = 5583 } # Karambis, Abonouteichos -> Ionopolis - link = { imp = 1809 imp = 1808 ck3 = 5589 } # Gadilon, Metropolis -> Gadilon + link = { imp = 232 imp = 216 imp = 211 imp = 7920 ck3 = 5587 } # Bonita, Zeita, Ziporea, Kandara Mountains -> Ziporea + link = { imp = 1829 ck3 = 5585 } # Timonion -> Castamon + link = { imp = 1816 imp = 1815 ck3 = 5583 } # Karambis, Koloussa -> Ionopolis + link = { imp = 1809 imp = 1808 ck3 = 5589 } # Gadilon, Eupatoria -> Gadilon link = { imp = 1812 ck3 = 739 } # Sinope -> Sinope - link = { imp = 206 imp = 7918 ck3 = 5582 } # Kytoros, Sesamos Mountains -> Aigialos - link = { imp = 208 imp = 212 imp = 213 imp = 7917 ck3 = 5581 } # Sesamos, Parthenia, Kimista, Parthenia Mountains -> Amastris - link = { imp = 326 imp = 329 ck3 = 5568 } # Modra, Dableis -> Modra - link = { imp = 236 imp = 7763 imp = 325 imp = 7762 imp = 7914 ck3 = 5569 } # Tarsos Bithynias, Sophon Pass, Kabia, (Unknown), Modra Pass -> Tarsos - link = { imp = 234 ck3 = 5566 } # Kalpe -> Chelai + link = { imp = 206 imp = 7918 ck3 = 5582 } # Aigialos, Sesamos Mountains -> Aigialos + link = { imp = 208 imp = 212 imp = 213 imp = 7917 ck3 = 5581 } # Amastris, Parthenia, Sora, Parthenia Mountains -> Amastris + link = { imp = 326 imp = 329 ck3 = 5568 } # Modra, Milia -> Modra + link = { imp = 236 imp = 7763 imp = 325 imp = 7762 imp = 7914 ck3 = 5569 } # Tarsos, Sophon Pass, Kabia, (Unknown), Modra Pass -> Tarsos + link = { imp = 234 ck3 = 5566 } # Chelai -> Chelai link = { imp = 246 imp = 245 ck3 = 5570 } # Strobilos, Kios -> Crius link = { imp = 235 imp = 243 imp = 7761 ck3 = 741 } # Tomisa, Astakos, Sophon Mons -> Nikomedia - link = { imp = 241 imp = 240 imp = 242 imp = 239 ck3 = 5565 } # Rhebas, Chalcedon, Libyssa, Artanes -> Chalcedon + link = { imp = 241 imp = 240 imp = 242 imp = 239 ck3 = 5565 } # Rhebas, Chalcedon, Libyssa, Psillion -> Chalcedon link = { imp = 1789 imp = 1788 ck3 = 5700 } # Syderos, Nora -> Hypseie - link = { imp = 1801 imp = 1787 imp = 7996 ck3 = 5698 } # Matouasko, Danai, Danae Mountains -> Neocaesara + link = { imp = 1801 imp = 1787 imp = 7996 ck3 = 5698 } # Matuasco, Danae, Danae Mountains -> Neocaesara link = { imp = 227 ck3 = 5653 } # Trokna -> Midaeum link = { imp = 328 ck3 = 5654 } # Orkistos -> Polybotus - link = { imp = 192 imp = 191 ck3 = 5655 } # Kyballon, Ouetissos -> Germa + link = { imp = 192 imp = 191 ck3 = 5655 } # Kyballion, Ouetissos -> Germa link = { imp = 189 ck3 = 5578 } # Gordion -> Vindia link = { imp = 188 ck3 = 5563 } # Pessinous -> Pessinus - link = { imp = 1825 imp = 201 ck3 = 5683 } # Taouion, Zoaka -> Tabia + link = { imp = 1825 imp = 201 ck3 = 5683 } # Taouion, Claneus -> Tabia link = { imp = 203 ck3 = 5594 } # Asklepios -> Euchaita - link = { imp = 1837 imp = 1841 imp = 1838 imp = 1822 ck3 = 5595 } # Euchaita, Posdala, Pleuramis, Etonia -> Carissa - link = { imp = 172 imp = 7967 ck3 = 5610 } # Komana Hierapolis, Baka Mons -> Comana_LYK - link = { imp = 225 imp = 226 ck3 = 5577 } # Lagania, Mnezos -> Lagania - link = { imp = 314 imp = 313 imp = 318 ck3 = 5652 } # Nakoleia, Metropolis Phrygias, Meiros -> Nakoleia - link = { imp = 1932 imp = 1912 ck3 = 5621 } # Seiousa, Kamoulianai -> Euaissa - link = { imp = 1844 imp = 1850 imp = 1848 ck3 = 5602 } # Talaura, Goundousa, Zoana -> Sebasteia - link = { imp = 1827 ck3 = 5584 } # Sakorsa -> Pampeiopolis + link = { imp = 1837 imp = 1841 imp = 1838 imp = 1822 ck3 = 5595 } # Carissa, Corniaspa, Pleuramis, Cromen -> Carissa + link = { imp = 172 imp = 7967 ck3 = 5610 } # Comana, Baka Mons -> Comana_LYK + link = { imp = 225 imp = 226 ck3 = 5577 } # Lagania, Mnizos -> Lagania + link = { imp = 314 imp = 313 imp = 318 ck3 = 5652 } # Nakoleia, Metropolis, Meiros -> Nakoleia + link = { imp = 1932 imp = 1912 ck3 = 5621 } # Euaissa, Archalla -> Euaissa + link = { imp = 1844 imp = 1850 imp = 1848 ck3 = 5602 } # Sebasteia, Gundusa, Zoana -> Sebasteia + link = { imp = 1827 ck3 = 5584 } # Pompeiopolis -> Pampeiopolis link = { imp = 1831 ck3 = 5593 } # Pimolisa -> Pimolisa - link = { imp = 1913 imp = 7981 ck3 = 752 } # Sakoena, Androna -> Galatia - link = { imp = 1820 ck3 = 5620 } # Odogra -> Aspona_CHA + link = { imp = 1913 imp = 7981 ck3 = 752 } # Sacoena, Androna -> Galatia + link = { imp = 1820 ck3 = 5620 } # Saravene -> Aspona_CHA link = { imp = 1923 ck3 = 5619 } # Soanda -> Soanda link = { imp = 244 imp = 247 imp = 7919 ck3 = 750 } # Nicaea, Pythopolis, Pythopolis Mountains -> Nikaea link = { imp = 323 imp = 324 ck3 = 5559 } # Sarkotyle, Otroia -> Dabla - link = { imp = 249 imp = 7755 ck3 = 742 } # Apollonia Rhyndakos, Olympus Mons -> Prusa + link = { imp = 249 imp = 7755 ck3 = 742 } # Prusa, Olympus Mons -> Prusa link = { imp = 271 imp = 8056 ck3 = 5553 } # Attea, Miletopolis Mons -> Appollonia - link = { imp = 269 imp = 272 imp = 337 ck3 = 5552 } # Pericharaxis, Hiera Germe, Pioniai -> Miletopolis - link = { imp = 250 ck3 = 5554 ck3 = 5555 } # Helge -> Apemea, Helge + link = { imp = 269 imp = 272 imp = 337 ck3 = 5552 } # Pericharaxis, Hiera, Hadrianoutherai -> Miletopolis + link = { imp = 250 ck3 = 5554 ck3 = 5555 } # Germanikopolis -> Apemea, Helge link = { imp = 248 ck3 = 3747 } # Myrleia -> Lopadion link = { imp = 303 ck3 = 5538 ck3 = 5537 } # Synaos -> Synaos, Cybele link = { imp = 317 ck3 = 5558 } # Kotiaeion -> Katyaion - link = { imp = 309 ck3 = 5542 } # Akmoneia -> Akrainos + link = { imp = 309 ck3 = 5542 } # Akmonia -> Akrainos link = { imp = 319 imp = 312 imp = 8013 ck3 = 5651 } # Aizanoi, Appia, Akmoneia Mountains -> Aezani link = { imp = 302 ck3 = 5541 } # Kadoi -> Cadi - link = { imp = 321 ck3 = 5556 ck3 = 5557 } # Kybellion -> Hadrianoi, Catyaeum - link = { imp = 320 imp = 304 imp = 306 imp = 7923 ck3 = 5536 } # Ariste, Hyssa, Ankyra Sidera, Synaios Mountains -> Hadrianeia - link = { imp = 252 imp = 253 imp = 251 imp = 7908 ck3 = 743 } # Kyzikos, Daskyleion, Miletopolis, Antigoneia Kyzikene -> Kyzikos - link = { imp = 1899 imp = 1849 ck3 = 5603 } # Malandara, Tonosa -> Malandra + link = { imp = 321 ck3 = 5556 ck3 = 5557 } # Hadrianoi -> Hadrianoi, Catyaeum + link = { imp = 320 imp = 304 imp = 306 imp = 7923 ck3 = 5536 } # Hadrianeia, Hyssa, Ariandos, Synaios Mountains -> Hadrianeia + link = { imp = 252 imp = 253 imp = 251 imp = 7908 ck3 = 743 } # Kyzikos, Daskyleion, Miletopolis, Prokonnesos/Antigoneia Kyzikena -> Kyzikos + link = { imp = 1899 imp = 1849 ck3 = 5603 } # Armaxa, Tonosa -> Malandra link = { imp = 238 imp = 7764 ck3 = 5567 } # Diospolis, (Unknown) -> Prusias ad Hypium link = { imp = 237 imp = 233 imp = 7913 ck3 = 5571 } # Embolos, Kieros, Bithynion Mountains -> Claudiopolis - link = { imp = 219 imp = 7915 ck3 = 5572 } # Salon, Artiknous Mountains -> Boli - link = { imp = 273 imp = 8058 ck3 = 5535 } # Inde, Apollonia Mons -> Attalia + link = { imp = 219 imp = 7915 ck3 = 5572 } # Bithynion, Artiknous Mountains -> Boli + link = { imp = 273 imp = 8058 ck3 = 5535 } # Stratonikeia, Apollonia Mons -> Attalia link = { imp = 265 ck3 = 5551 } # Argiza -> Poimanenon - link = { imp = 255 imp = 254 imp = 264 imp = 262 ck3 = 3748 } # Parium, Zeleia, Baris Mysias, Kolonai -> Pagaea + link = { imp = 255 imp = 254 imp = 264 imp = 262 ck3 = 3748 } # Parium, Zeleia, Baris, Kolonai -> Pagaea link = { imp = 256 ck3 = 3749 } # Lampsakos -> Lampsakos link = { imp = 261 imp = 268 imp = 267 ck3 = 744 } # Abydos, Skepsis, Kale Peuke -> Abydos - link = { imp = 257 imp = 260 imp = 7909 ck3 = 3750 } # Ilion, Kebren, Ida Mons -> Ilion - link = { imp = 259 imp = 258 ck3 = 3751 } # Assos, Polymedion -> Alexandria Troas - link = { imp = 281 imp = 282 ck3 = 5529 } # Adramyttion, Atarna -> Adramytium + link = { imp = 257 imp = 260 imp = 7909 ck3 = 3750 } # Ilium, Kebren, Ida Mons -> Ilion + link = { imp = 259 imp = 258 ck3 = 3751 } # Assos, Antigoneia -> Alexandria Troas + link = { imp = 281 imp = 282 ck3 = 5529 } # Adramyttion, Herakleia -> Adramytium link = { comment = "# Southern Anatolia" } - link = { imp = 1882 imp = 1884 ck3 = 762 } # Adana, Syme -> Adana - link = { imp = 1796 imp = 1799 ck3 = 737 } # Arasaxa, Mazaka -> Kaisereia + link = { imp = 1882 imp = 1884 ck3 = 762 } # Adana, Augusta -> Adana + link = { imp = 1796 imp = 1799 ck3 = 737 } # Eusebeia, Mazaka -> Kaisereia link = { imp = 6420 imp = 7972 ck3 = 5617 } # Eulepa, Synnada Mountains -> Charsianon link = { imp = 1805 imp = 7970 ck3 = 5614 } # Anisa, Eulepa Mountains -> Armaxa link = { imp = 1803 imp = 1802 imp = 7979 ck3 = 5615 } # Herpha, Euagina, Arasaxa Mountains -> Herpha link = { imp = 1931 imp = 1927 imp = 1921 ck3 = 5663 } # Adada, Tityassos, Amblada -> Adada - link = { imp = 1948 imp = 1946 imp = 1947 imp = 7756 ck3 = 748 } # Diospolis Lykou, Hierapolis, Apollonia Maiandrou, Kadmons Mons -> Laodikeia - link = { imp = 1959 imp = 1945 imp = 7971 imp = 8062 ck3 = 5667 } # Takina, Colossae, Eriza Karias, Eriza Mons -> Salda - link = { imp = 1961 imp = 1960 imp = 1991 imp = 171 imp = 7947 imp = 5161 ck3 = 5646 } # Olbasa, Lagbe, Podalia, Isinda, Balboura, IMPASSIBLE TERRAIN 161 -> Olbasa - link = { imp = 1958 imp = 1997 imp = 1990 imp = 7944 ck3 = 5648 } # Kibyra, Boubon, Oinoanda, Telmessos Mountains -> Cibyra + link = { imp = 1948 imp = 1946 imp = 1947 imp = 7756 ck3 = 748 } # Laodicea ad Lycum, Hierapolis, Tripolis ad Maeandrum, Kadmons Mons -> Laodikeia + link = { imp = 1959 imp = 1945 imp = 7971 imp = 8062 ck3 = 5667 } # Salda, Colossae, Eriza, Eriza Mons -> Salda + link = { imp = 1961 imp = 1960 imp = 1991 imp = 171 imp = 7947 imp = 5161 ck3 = 5646 } # Olbasa, Sinda, Podalia, Isinda, Balboura, IMPASSIBLE TERRAIN 161 -> Olbasa + link = { imp = 1958 imp = 1997 imp = 1990 imp = 7944 ck3 = 5648 } # Cibyra, Lyrna, Oenoanda, Telmessos Mountains -> Cibyra link = { imp = 1992 imp = 7948 imp = 1995 imp = 7946 ck3 = 5647 } # Telmessos, Kadyanda, Xanthos, Xanthos Mountains -> Telmessos link = { imp = 156 imp = 1998 imp = 1993 imp = 7943 imp = 7949 imp = 159 imp = 7945 imp = 7950 ck3 = 5645 } # Myra, Patara, Tlos, Tlos Mountains, Kandyba, Choma, Oenodanda Mountains, Kadyanda Mountains -> Myra - link = { imp = 162 imp = 161 imp = 160 ck3 = 5644 } # Olympos, Limyra, Arykanda -> Limyra + link = { imp = 162 imp = 161 imp = 160 ck3 = 5644 } # Olympus, Limyra, Arykanda -> Limyra link = { imp = 164 imp = 170 imp = 7951 imp = 5162 ck3 = 5643 } # Phaselis, Termessos, Kitanaura, IMPASSIBLE TERRAIN 162 -> Phaselis - link = { imp = 165 imp = 166 imp = 167 imp = 7952 imp = 7956 ck3 = 755 } # Olbia Pamphylias, Perge, Pednelissos, Kretopolis Mountains, Ariassos -> Attaleia + link = { imp = 165 imp = 166 imp = 167 imp = 7952 imp = 7956 ck3 = 755 } # Attaleia, Perge, Pednelissos, Kretopolis Mountains, Ariassos -> Attaleia link = { imp = 1885 imp = 7957 ck3 = 5664 } # Selge, Aspendos Mountains -> Selge link = { imp = 1910 imp = 168 imp = 1911 ck3 = 5641 } # Side, Aspendos, Sillyon -> Side - link = { imp = 307 imp = 308 ck3 = 5543 } # Bageis, Blaoundos -> Bagis + link = { imp = 307 imp = 308 ck3 = 5543 } # Bagis, Blaundos -> Bagis link = { imp = 301 imp = 300 imp = 7928 ck3 = 5544 } # Silandos, Maionia, Sardis Mountains -> Silandos - link = { imp = 1944 imp = 311 imp = 7925 ck3 = 5548 } # Lounda, Pepouza, Pergamon Mountains 2 -> Chonae - link = { imp = 293 imp = 1962 imp = 7941 imp = 7984 ck3 = 5546 } # Myloukome, Athymbra, Kranaos, Kranaos Mountains -> Philadelphia - link = { imp = 1784 imp = 7962 ck3 = 5637 } # Klibanos, Ano Kotradis -> Adrasos - link = { imp = 1904 imp = 1906 ck3 = 5639 } # Selinous Kilikias, Lairtes -> Selinus + link = { imp = 1944 imp = 311 imp = 7925 ck3 = 5548 } # Lounda, Dionysoupolis, Pergamon Mountains 2 -> Chonae + link = { imp = 293 imp = 1962 imp = 7941 imp = 7984 ck3 = 5546 } # Philadelpheia, Nysa, Kranaos, Kranaos Mountains -> Philadelphia + link = { imp = 1784 imp = 7962 ck3 = 5637 } # Germanicopolis, Ano Kotradis -> Adrasos + link = { imp = 1904 imp = 1906 ck3 = 5639 } # Syedra, Laertes -> Selinus link = { imp = 7958 imp = 7959 imp = 7758 ck3 = 5668 } # Kotenna, Etenna Mountains, (Unknown) -> Kaklauma link = { imp = 1905 imp = 1908 ck3 = 5640 } # Korakesion, Kolybrassos -> Korakesion - link = { imp = 1892 imp = 1894 imp = 1896 imp = 7960 ck3 = 5635 } # Elaioussa, Olbe, Ninika, Adrasos Mountains -> Corycus + link = { imp = 1892 imp = 1894 imp = 1896 imp = 7960 ck3 = 5635 } # Elaioussa, Diocaesarea, Ninica, Adrasos Mountains -> Corycus link = { imp = 5167 imp = 5166 ck3 = 5686 } # IMPASSIBLE TERRAIN 167, IMPASSIBLE TERRAIN 166 -> Eastern Taurus Mountains link = { imp = 1872 imp = 8022 ck3 = 5627 } # Cilician Gates, Cilician Gates -> Podandus link = { imp = 1980 ck3 = 5534 } # Stratonikeia -> Iassus - link = { imp = 1933 imp = 7760 imp = 1930 imp = 7759 ck3 = 754 } # Konane, Prostanna, Mordiaion, (Unknown) -> Sozopolis + link = { imp = 1933 imp = 7760 imp = 1930 imp = 7759 ck3 = 754 } # Seleucia Sidera, Prostanna, Apollonia, (Unknown) -> Sozopolis link = { imp = 185 imp = 187 ck3 = 5659 } # Ipsos, Kidyessos -> Docimium - link = { imp = 183 imp = 184 imp = 182 imp = 7911 ck3 = 5658 } # Abbasion, Dokimeion, Aurokra, Sultan Mountains -> Amorion - link = { imp = 178 imp = 180 imp = 1777 imp = 181 imp = 230 ck3 = 5656 } # Tyriaion, Keissia, Klaneos, Tolastochora, Thymbrion -> Tyraion - link = { imp = 1914 imp = 177 ck3 = 5678 } # Perta, Kindyria -> Katakekaumene + link = { imp = 183 imp = 184 imp = 182 imp = 7911 ck3 = 5658 } # Amorion, Dokimeion, Aurokra, Sultan Mountains -> Amorion + link = { imp = 178 imp = 180 imp = 1777 imp = 181 imp = 230 ck3 = 5656 } # Tyriaion, Keissia, Azareis, Klaneos, Selmena -> Tyraion + link = { imp = 1914 imp = 177 ck3 = 5678 } # Salarama, Laodikeia -> Katakekaumene link = { imp = 1971 imp = 1916 imp = 1938 ck3 = 5629 } # Soatra, Kanna, Ardistama -> Comitanassus - link = { imp = 174 imp = 190 imp = 176 ck3 = 5634 } # Kongoustos, Kinna, Ekdaoumaoua -> Kinna - link = { imp = 1973 imp = 1968 imp = 7929 ck3 = 5533 } # Miletos, Alexandreia pros to Latmo, Tralleis Mountains -> Miletus + link = { imp = 174 imp = 190 imp = 176 ck3 = 5634 } # Kongoustos, Kinna, Ekdaumaua -> Kinna + link = { imp = 1973 imp = 1968 imp = 7929 ck3 = 5533 } # Miletos, Alinda, Tralleis Mountains -> Miletus link = { imp = 173 imp = 1954 ck3 = 5630 } # Koropassos, Garsaura -> Garsaura link = { imp = 1811 imp = 1813 ck3 = 5632 } # Parnassos, Nyssa -> Parnassos link = { imp = 1965 imp = 7965 ck3 = 5671 } # Lystra, Lystra Mountains -> Lystra - link = { imp = 1922 ck3 = 5670 } # Misteia -> Mistea + link = { imp = 1922 ck3 = 5670 } # Mistea -> Mistea link = { imp = 274 imp = 7926 ck3 = 5539 } # Thyateira, Hyssa Mountains -> Thyatira link = { imp = 292 imp = 7752 imp = 295 ck3 = 5545 } # Sardis, Tmolus Mons, Hypaipa -> Sardes - link = { imp = 1988 imp = 1986 imp = 5163 ck3 = 5642 } # Kremna, Pogla, IMPASSIBLE TERRAIN 163 -> Cremna + link = { imp = 1988 imp = 1986 imp = 5163 ck3 = 5642 } # Cremna, Pogla, IMPASSIBLE TERRAIN 163 -> Cremna link = { imp = 1949 imp = 1935 ck3 = 5665 } # Sagalassos, Baris -> Sagalassus - link = { imp = 1943 imp = 7954 imp = 7953 ck3 = 5666 } # Sanaos, Kormasa, Lysinoe Mountains -> Parlais - link = { imp = 1936 imp = 1942 ck3 = 5549 } # Apamea Cibotus, Peltai -> Apamea - link = { imp = 339 imp = 8059 ck3 = 5550 } # Elouza, Eukarpia Mons -> Sebaste - link = { imp = 1941 imp = 1937 imp = 186 imp = 8012 ck3 = 5660 } # Synnada, Euphorbion, Eukarpia, Synnada Mountains -> Synnada - link = { imp = 1928 imp = 1939 ck3 = 5661 } # Tyita, Prymnessos -> Antiochia - link = { imp = 179 imp = 7969 ck3 = 5657 } # Okenoi, Men Mountains -> Philomelium + link = { imp = 1943 imp = 7954 imp = 7953 ck3 = 5666 } # Anaua, Kormasa, Lysinoe Mountains -> Parlais + link = { imp = 1936 imp = 1942 ck3 = 5549 } # Apamea, Fulvia -> Apamea + link = { imp = 339 imp = 8059 ck3 = 5550 } # Sebaste, Eukarpia Mons -> Sebaste + link = { imp = 1941 imp = 1937 imp = 186 imp = 8012 ck3 = 5660 } # Synnada, Metropolis, Eukarpia, Synnada Mountains -> Synnada + link = { imp = 1928 imp = 1939 ck3 = 5661 } # Antiochia, Tekmoreioi -> Antiochia + link = { imp = 179 imp = 7969 ck3 = 5657 } # Philomelion, Men Mountains -> Philomelium link = { imp = 1925 imp = 1926 imp = 7955 ck3 = 5662 } # Tymbriada, Anaboura, Adada Mountains -> Neapolis link = { imp = 1951 ck3 = 760 } # Tyana -> Tyana link = { imp = 205 imp = 1818 imp = 1817 ck3 = 5622 } # Zeila, Ouenasa, Zoropassos -> Zeila_CHA - link = { imp = 5170 ck3 = 5688 } # Argaeus Mons Volcano -> Mount Argaeus - link = { imp = 1794 imp = 1900 imp = 1800 ck3 = 5623 } # Korama, Sasima, Soandos -> Kyzistra - link = { imp = 278 imp = 279 imp = 276 ck3 = 5530 } # Pergamon, Elaea, Apollonia Mysias -> Pergamon - link = { imp = 299 imp = 305 ck3 = 5540 } # Maiboza, Hyrkanis -> Tabala + link = { imp = 5170 ck3 = 5688 } # IMPASSIBLE TERRAIN 170 -> Mount Argaeus + link = { imp = 1794 imp = 1900 imp = 1800 ck3 = 5623 } # KyzistraTRUE, Dasmenda, Korama -> Kyzistra + link = { imp = 278 imp = 279 imp = 276 ck3 = 5530 } # Pergamon, Elaea, Apollonia -> Pergamon + link = { imp = 299 imp = 305 ck3 = 5540 } # Maiboza, Porotta -> Tabala link = { imp = 285 imp = 298 imp = 275 imp = 7924 ck3 = 5531 } # Kyme, Aigai, Iasos, Pergamon Mountains -> Phocaea - link = { imp = 287 imp = 296 imp = 7754 imp = 7753 ck3 = 745 } # Smyrna, Temnos, Sipylos Mons, Tempsis Mons -> Smyrna - link = { imp = 288 imp = 291 imp = 7933 ck3 = 5532 } # Tecybeleneos, Colophon, Smyrna Mountains -> Lebedos + link = { imp = 287 imp = 296 imp = 7754 imp = 7753 ck3 = 745 } # Smyrna, Magnesia, Sipylos Mons, Tempsis Mons -> Smyrna + link = { imp = 288 imp = 291 imp = 7933 ck3 = 5532 } # Teos, Colophon, Smyrna Mountains -> Lebedos link = { imp = 286 imp = 289 ck3 = 486 } # Chios, Erythrai -> Chios - link = { imp = 290 imp = 1972 imp = 1969 imp = 1966 imp = 7751 imp = 294 ck3 = 746 } # Ephesos, Priene, Magnesia pros Maiandro, Tralles, Mesogis Mons, Larisa Ionias -> Ephesos - link = { imp = 1952 imp = 1953 imp = 1956 imp = 1957 imp = 1984 imp = 5159 ck3 = 5650 } # Aphrodisias, Saleia Salbakes, Tabai, Kidrama, Thera Karias, IMPASSIBLE TERRAIN 159 -> Aphrodisias - link = { imp = 1977 imp = 1963 imp = 1967 imp = 7940 imp = 7939 imp = 7938 ck3 = 5547 } # Mylasa, Harpasa, Alabanda, Hyllarima Mountains, Hyllarima, Bargasa -> Mylasa + link = { imp = 290 imp = 1972 imp = 1969 imp = 1966 imp = 7751 imp = 294 ck3 = 746 } # Ephesos, Priene, Leukophrys, Tralles, Mesogis Mons, Larisa -> Ephesos + link = { imp = 1952 imp = 1953 imp = 1956 imp = 1957 imp = 1984 imp = 5159 ck3 = 5650 } # Aphrodisias, Herakleia Salbake, Tabai, Kidrama, Mobolla, IMPASSIBLE TERRAIN 159 -> Aphrodisias + link = { imp = 1977 imp = 1963 imp = 1967 imp = 7940 imp = 7939 imp = 7938 ck3 = 5547 } # Mylasa, Neapolis, Alabanda, Hyllarima Mountains, Hyllarima, Bargasa -> Mylasa link = { imp = 1981 imp = 7935 imp = 7934 imp = 7930 ck3 = 747 } # Halikarnassos, Bargylia, Keramos, Halikarnassos Mountains -> Halikarnassos - link = { imp = 1987 imp = 1989 imp = 1985 imp = 7942 ck3 = 5649 } # Knidos, Kaunos, Idyma, Daidala -> Cridus + link = { imp = 1987 imp = 1989 imp = 1985 imp = 7942 ck3 = 5649 } # Knidos, Kaunos, Kallipolis, Daidala -> Cridus link = { imp = 169 imp = 1955 imp = 7964 ck3 = 5673 } # Laranda, Thebasa, Koropissos -> Laranalia link = { imp = 1950 ck3 = 5675 } # Derbe -> Derbe link = { imp = 1940 ck3 = 5628 } # Cybistra -> Cybistra link = { imp = 1975 ck3 = 5676 } # Barata -> Barata link = { imp = 1982 imp = 155 ck3 = 5616 } # Ariaramneia, Kiskisos -> Arasaxa - link = { imp = 1780 imp = 7963 ck3 = 5636 } # Artanada, Adrasos -> Claudiopolis_SELEUCIA - link = { imp = 1917 imp = 1919 imp = 1785 ck3 = 5672 } # Lakaine, Isaura, Ilistra -> Isaura + link = { imp = 1780 imp = 7963 ck3 = 5636 } # Lamatorma, Adrasos -> Claudiopolis_SELEUCIA + link = { imp = 1917 imp = 1919 imp = 1785 ck3 = 5672 } # Lakaine, Isaura Nova, Ilistra -> Isaura link = { imp = 1934 ck3 = 759 } # Iconium -> Ikonion link = { imp = 1924 ck3 = 5677 } # Pappa -> Pappa link = { imp = 7961 imp = 5164 ck3 = 5685 } # Kagrai, IMPASSIBLE TERRAIN 164 -> Western Taurus Mountains - link = { imp = 1920 imp = 1918 ck3 = 5669 } # Ouasada, Homonadeis -> Ouasada - link = { imp = 1978 imp = 7735 ck3 = 5631 } # Salambriai, Argaios Mons Volcano -> Nazianzus + link = { imp = 1920 imp = 1918 ck3 = 5669 } # Ouasada, Isauropolis -> Ouasada + link = { imp = 1978 imp = 7735 ck3 = 5631 } # Salambriai, Argaios Mons -> Nazianzus link = { imp = 1901 ck3 = 5638 } # Anemourion -> Anemurium - link = { imp = 1890 imp = 1897 imp = 5165 ck3 = 758 } # Holmoi, Kelenderis, IMPASSIBLE TERRAIN 165 -> Seleukia + link = { imp = 1890 imp = 1897 imp = 5165 ck3 = 758 } # Seleucia ad Calycadnum, Celenderis, IMPASSIBLE TERRAIN 165 -> Seleukia link = { imp = 1887 imp = 7968 ck3 = 5674 } # Soloi, Kyinda -> Soloi link = { imp = 1883 ck3 = 761 } # Tarsus -> Tarsus link = { imp = 1889 ck3 = 5624 } # Magarsa -> Mallus - link = { imp = 1874 imp = 1875 ck3 = 4896 } # Oiniandos, Kastabala -> TALL HAMID - link = { imp = 1879 imp = 1881 imp = 1880 ck3 = 4897 } # Aigaiai, Mallos, Mopsouestia -> AYAS + link = { imp = 1874 imp = 1875 ck3 = 4896 } # Epiphaneia, Hierapolis -> TALL HAMID + link = { imp = 1879 imp = 1881 imp = 1880 ck3 = 4897 } # Aigaiai, Mallos, Mopsouhestia -> AYAS link = { comment = "# Syria" } link = { imp = 797 imp = 7985 ck3 = 5933 } # Chalcis ad Belum, Telmenissos -> QINNASRIN link = { imp = 1994 ck3 = 5611 } # Arabissos -> Arabissus link = { imp = 1898 ck3 = 5606 } # Gauraina -> Gauraina link = { imp = 1891 imp = 7974 imp = 7973 ck3 = 5604 } # Karnalis, Gauraina Mountains, Karnalis Mountains -> Karnalis link = { imp = 5222 ck3 = 1417 } # IMPASSIBLE TERRAIN 222 -> AZERBAIJAN MOUNTAINS - link = { imp = 1893 imp = 7977 imp = 7976 imp = 1902 ck3 = 5613 } # Dasmenda, Kiskikos Mountains, Euagina Mountains, Kodouzalaba -> Ariaratheia + link = { imp = 1893 imp = 7977 imp = 7976 imp = 1902 ck3 = 5613 } # Ariaratheia, Kiskikos Mountains, Euagina Mountains, Coduzalaba -> Ariaratheia link = { imp = 1886 imp = 5179 imp = 5178 imp = 1859 ck3 = 5607 } # Dalanda, IMPASSIBLE TERRAIN 179, IMPASSIBLE TERRAIN 178, Arca -> Dalanda - link = { imp = 1999 imp = 7975 imp = 7978 ck3 = 5609 } # Tanadaris, Ouarsapa Mountains, Kokousos Mountains -> Tanadaris + link = { imp = 1999 imp = 7975 imp = 7978 ck3 = 5609 } # Maroga, Ouarsapa Mountains, Kokousos Mountains -> Tanadaris link = { imp = 163 imp = 157 imp = 1861 ck3 = 5608 } # Osdara, Ouarsapa, Zizoatra -> Osdara - link = { imp = 158 imp = 1895 ck3 = 735 } # Ablastha, Oulnia -> Ablastha + link = { imp = 158 imp = 1895 ck3 = 735 } # Ablastha, Ulnia -> Ablastha link = { imp = 1869 imp = 1868 ck3 = 4890 } # Rhabaine, Tyba -> QALAT_AR-RUM link = { imp = 811 ck3 = 4899 } # Doliche -> DULUK-TELUCH link = { imp = 777 imp = 799 ck3 = 5930 } # Amathe, Occaraba -> HAMA link = { imp = 851 imp = 850 ck3 = 5942 } # Ammattha, Amsareddi -> SURIYA - link = { imp = 808 ck3 = 5934 } # Beselatha -> HALAB + link = { imp = 808 ck3 = 5934 } # Batnai -> HALAB link = { imp = 813 ck3 = 5941 } # Anasartha -> KHUNASIRA link = { imp = 827 ck3 = 5944 } # Circesium -> DAIR_AR-RUMAN - link = { imp = 806 ck3 = 4880 } # Birtha -> AL-KHANUQA + link = { imp = 806 ck3 = 4880 } # Zenobia/Birtha -> AL-KHANUQA link = { imp = 815 ck3 = 5946 } # Seriane -> URD link = { imp = 803 ck3 = 5939 ck3 = 5943 ck3 = 5940 } # Resafa -> SIFFIN, RATLA, AR-RUSAFA link = { imp = 814 ck3 = 5938 } # Barbalissus -> BUZAA link = { imp = 852 ck3 = 5907 } # Chaonia -> AZAZ - link = { imp = 807 ck3 = 5901 } # Bambyce -> TALL_BASHIR - link = { imp = 798 ck3 = 5906 } # Hadad -> TALL_AFRIN - link = { imp = 805 ck3 = 5908 } # Amphipolis Syrias -> MANBIJ + link = { imp = 807 ck3 = 5901 } # Hierapolis -> TALL_BASHIR + link = { imp = 798 ck3 = 5906 } # Beroia -> TALL_AFRIN + link = { imp = 805 ck3 = 5908 } # Amphipolis -> MANBIJ link = { imp = 848 ck3 = 4873 } # Alagma -> TALL_AMMAR link = { imp = 847 ck3 = 4875 } # Dausara -> DAUSAR link = { imp = 809 ck3 = 5902 } # Europos -> JARABULUS @@ -4095,367 +4094,367 @@ imperator_invictus = { link = { comment = "NOTE: Palmyra = Tadmur" } link = { imp = 754 imp = 755 ck3 = 5948 } # Palmyra, Veriaraca -> TADMUR link = { imp = 785 imp = 780 ck3 = 5911 } # Tell Soukas, Carne -> JABALA - link = { imp = 778 ck3 = 5915 } # Raphaneia -> SHAIZAR + link = { imp = 778 ck3 = 5915 } # Mariamme -> SHAIZAR link = { imp = 781 ck3 = 5932 } # Larissa -> KAFARTAB - link = { imp = 782 ck3 = 5936 } # Pharnake -> AR-RIKHA - link = { imp = 786 imp = 784 imp = 788 ck3 = 5912 } # Leuke Akte, Sigon, Posideion -> LATAKIA + link = { imp = 782 ck3 = 5936 } # Apamea -> AR-RIKHA + link = { imp = 786 imp = 784 imp = 788 ck3 = 5912 } # Laodicea, Sigon, Posideion -> LATAKIA link = { imp = 816 ck3 = 5931 } # Theleda -> SALAMIYA link = { imp = 775 imp = 776 ck3 = 5949 } # Heliaramia, Otthara -> JUDR link = { imp = 757 imp = 756 ck3 = 5950 } # Oneuatha, Cunna -> AL-QARYATAN link = { imp = 762 imp = 761 imp = 770 ck3 = 5928 } # Conna, Triparadeisos, Cara -> JUSIYA link = { imp = 774 ck3 = 5929 } # Hemesa -> HIMS - link = { imp = 878 ck3 = 4865 } # Arsinia -> ERKNE + link = { imp = 878 ck3 = 4865 } # Arsinia (Ergani) -> ERKNE link = { imp = 877 ck3 = 4866 } # Barsalium -> ZERMION - link = { imp = 859 ck3 = 4863 } # Dadima -> SHIMSHAT - link = { imp = 841 ck3 = 4861 } # Karkathiokerta -> HANI - link = { imp = 1744 imp = 1698 imp = 1764 imp = 483 ck3 = 704 } # Karana, Sinara, Bizana, Artales -> Theodosiopolis - link = { imp = 1765 imp = 8002 ck3 = 5695 } # Koubina, Eriza Mountains -> Keltzine - link = { imp = 1762 ck3 = 5694 } # Bagariza -> Baeberdon - link = { imp = 7844 imp = 7845 imp = 1768 ck3 = 5710 } # Zimara, Ani, Til -> Camacha - link = { imp = 1856 imp = 1857 imp = 1858 ck3 = 702 } # Anzita, Hierapolis Sophenias, Daskousa -> Tzimisca + link = { imp = 859 ck3 = 4863 } # Colchis -> SHIMSHAT + link = { imp = 841 ck3 = 4861 } # Arkathiokerta -> HANI + link = { imp = 1744 imp = 1698 imp = 1764 imp = 483 ck3 = 704 } # Karin, Sinara, Bizana/Leontopolis, Artales -> Theodosiopolis + link = { imp = 1765 imp = 8002 ck3 = 5695 } # Ioustiniane, Eriza Mountains -> Keltzine + link = { imp = 1762 ck3 = 5694 } # Elegeia -> Baeberdon + link = { imp = 7844 imp = 7845 imp = 1768 ck3 = 5710 } # Zimara, Tordan, Til -> Camacha + link = { imp = 1856 imp = 1857 imp = 1858 ck3 = 702 } # Anzita, Chosomachon, Dascusa -> Tzimisca link = { imp = 8009 imp = 8007 ck3 = 5712 } # Balisbiga, Halouras -> Balu link = { imp = 8010 imp = 8008 ck3 = 5711 } # Koloua, Palios -> Koloberd - link = { imp = 858 imp = 1855 ck3 = 5707 } # Rhandeia, Gareina -> Arsamosata + link = { imp = 858 imp = 1855 ck3 = 5707 } # Arsamosata, Elegeia -> Arsamosata link = { imp = 857 ck3 = 4860 ck3 = 4859 } # Sitai -> NASRIYE, MAYYAFARIQIN link = { imp = 863 ck3 = 4841 } # Balad -> BALAD-MOSUL link = { imp = 868 imp = 873 ck3 = 4842 } # Dhahir, Hassu -> BARQAID link = { imp = 867 ck3 = 4812 } # Shapur -> FISHABUR link = { imp = 834 ck3 = 4813 } # Satalka -> BAQIRDA - link = { imp = 842 imp = 992 ck3 = 4858 } # Tigranocerta, Balaleisa -> ARZAN + link = { imp = 842 imp = 992 ck3 = 4858 } # Tigranocerta, Balales Pass (Baghesh) -> ARZAN link = { imp = 843 ck3 = 4857 } # Chlomaron -> TALL_FAFAN link = { imp = 833 ck3 = 4844 ck3 = 4816 } # Pinaka -> GAZIRAT_IBN_UMAR, SA'IRD link = { imp = 869 imp = 870 ck3 = 4847 } # Riskephas, Izala Mons -> HISN_KAIFA link = { imp = 856 imp = 855 ck3 = 4855 } # Sardeoua, Siphrios -> TALL_BASMA link = { imp = 826 ck3 = 4882 } # Appadana -> QARQISIYA link = { imp = 825 ck3 = 4881 } # Magdalu -> ASH-SHAMSANIYA - link = { imp = 861 imp = 5440 ck3 = 4839 } # Apqu, Syria Desert -> TALL_AFAR + link = { imp = 861 imp = 5440 ck3 = 4839 } # Apqu, UNINHABITABLE -> TALL_AFAR link = { imp = 875 imp = 773 ck3 = 4843 } # Zagurae, Vicat -> BASHAZZA link = { imp = 822 ck3 = 4846 } # Nabada -> DARA link = { imp = 821 ck3 = 4856 } # Resaina -> KAFARTUTHA link = { imp = 871 imp = 872 ck3 = 4854 } # Marde, Ammodios -> MARDIN link = { imp = 830 imp = 832 imp = 876 ck3 = 4845 } # Nisibis, Ta'idu, Qarassas -> NASIBIN link = { imp = 1929 ck3 = 5705 } # Phouphagena -> Tephrice - link = { imp = 1852 imp = 1769 imp = 5189 imp = 1853 ck3 = 5706 } # Sinispora, Sabos, IMPASSIBLE TERRAIN 189, Kiakis -> Arguvan + link = { imp = 1852 imp = 1769 imp = 5189 imp = 1853 ck3 = 5706 } # Siniskolon, Sabos, IMPASSIBLE TERRAIN 189, Sartona -> Arguvan link = { imp = 7982 ck3 = 5708 } # Perrhe Mountains -> Arca - link = { imp = 1854 imp = 1865 imp = 1866 imp = 7983 ck3 = 707 } # Melitia, Miasena, Korne, Nymphaios Mountains -> Melitene + link = { imp = 1854 imp = 1865 imp = 1866 imp = 7983 ck3 = 707 } # Melitene, Miasena, Korne, Nymphaios Mountains -> Melitene link = { imp = 853 ck3 = 4877 } # Ichnae -> BAJARWAN - link = { imp = 804 ck3 = 4876 } # Soura -> RAQQA - link = { imp = 790 imp = 791 imp = 787 ck3 = 5910 } # Antigoneia, Darkus, Beloi -> ANTIOCH - link = { imp = 789 imp = 5181 ck3 = 5909 } # Palaeopolis, IMPASSIBLE TERRAIN 181 -> AS-SUWAYDIYA + link = { imp = 804 ck3 = 4876 } # Nicephorium -> RAQQA + link = { imp = 790 imp = 791 imp = 787 ck3 = 5910 } # Antiochia, Darkus, Seleukobelos -> ANTIOCH + link = { imp = 789 imp = 5181 ck3 = 5909 } # leukeia Pieria, IMPASSIBLE TERRAIN 181 -> AS-SUWAYDIYA link = { imp = 738 imp = 735 ck3 = 5953 } # Maked, Canatha -> DARAYYA link = { imp = 740 ck3 = 5923 } # Dan -> NAWA link = { imp = 742 ck3 = 5922 } # Kadasa -> BANIYAS - link = { imp = 752 imp = 753 imp = 7988 ck3 = 5937 } # Gerra, Zenopolis, Hermon Mons -> ANJAR + link = { imp = 752 imp = 753 imp = 7988 ck3 = 5937 } # Gerra, Segeira, Hermon Mons -> ANJAR link = { imp = 758 imp = 759 imp = 760 ck3 = 5927 } # Vallis Alba, Thelseai, Iabrouda -> AL-QASTAL - link = { imp = 751 ck3 = 5925 } # Abila Syrias -> AZ-ZABADANI - link = { imp = 763 imp = 765 imp = 764 ck3 = 5926 } # Heliopolis, Berothe, Chamon -> BAALBAK - link = { imp = 844 ck3 = 4871 ck3 = 4867 } # Orontessos -> TALL_MAUZAN, AMID + link = { imp = 751 ck3 = 5925 } # Chalybon -> AZ-ZABADANI + link = { imp = 763 imp = 765 imp = 764 ck3 = 5926 } # Heliopolis, Berothe, Chalcis sub Libano -> BAALBAK + link = { imp = 844 ck3 = 4871 ck3 = 4867 } # Antiochia Arabis -> TALL_MAUZAN, AMID link = { imp = 879 imp = 840 ck3 = 4868 } # Barbare, Arsameia -> AS-SUWAIDA - link = { imp = 836 imp = 839 imp = 838 imp = 6397 ck3 = 4894 } # Samosata, Nymphaios, Charmodara, Barzala -> SAMOSATA + link = { imp = 836 imp = 839 imp = 838 imp = 6397 ck3 = 4894 } # Samosata, Arsameia pros Nymphaio, Tille, Tenedos -> SAMOSATA link = { imp = 854 ck3 = 4853 } # Ganaba -> RAS_AL-AIN link = { imp = 819 ck3 = 4870 } # Carrhae -> HARRAN - link = { imp = 810 ck3 = 5900 } # Zeugma -> AINTAB + link = { imp = 810 ck3 = 5900 } # Zeugma/Seleukeia pros to Euphrate -> AINTAB link = { imp = 820 ck3 = 4878 } # Sahlala -> TALL_MAHRA link = { imp = 849 ck3 = 4874 } # Ballatha -> SARUJ - link = { imp = 1864 imp = 1863 ck3 = 4891 } # Singa, Nastae -> KAISUM - link = { imp = 837 imp = 1860 ck3 = 4892 } # Tharsa, Perrhe -> BAHASNA - link = { imp = 1847 imp = 817 ck3 = 4872 } # Bithias, Batnai -> AL-BIRA - link = { imp = 818 ck3 = 4869 } # Adma -> EDESSA - link = { imp = 812 ck3 = 5903 } # Aliareia -> QURUS + link = { imp = 1864 imp = 1863 ck3 = 4891 } # Nisus, Nastae -> KAISUM + link = { imp = 837 imp = 1860 ck3 = 4892 } # Tharsa, Leugaisa -> BAHASNA + link = { imp = 1847 imp = 817 ck3 = 4872 } # Bithias, Batnae -> AL-BIRA + link = { imp = 818 ck3 = 4869 } # Edessa/Antiochia ad Callirhoem -> EDESSA + link = { imp = 812 ck3 = 5903 } # Nicopolis -> QURUS link = { imp = 1979 imp = 1983 imp = 1976 ck3 = 736 } # Baka, Kabassos, Kokousos -> Lykandos - link = { imp = 1878 imp = 1876 imp = 7986 imp = 5176 ck3 = 5612 } # Sipha, Physkos, Commagenian Gates, IMPASSIBLE TERRAIN 176 -> Cocussus + link = { imp = 1878 imp = 1876 imp = 7986 imp = 5176 ck3 = 5612 } # Sipha, Phlaouiopolis, Commagean Gates, IMPASSIBLE TERRAIN 176 -> Cocussus link = { imp = 1877 ck3 = 5625 } # Anazarbos -> Anazaribus - link = { imp = 1867 imp = 1862 ck3 = 4893 } # Markash, Adatha -> MARASH - link = { imp = 1873 imp = 7987 imp = 1870 ck3 = 4895 } # Erana, Markash Mountains, Amanian Gates -> AL-HARUNIYA - link = { imp = 8011 ck3 = 5914 } # Baetocaece -> Masyaf + link = { imp = 1867 imp = 1862 ck3 = 4893 } # Germanikeia, Adatha -> MARASH + link = { imp = 1873 imp = 7987 imp = 1870 ck3 = 4895 } # Eirenopolis, Markash Mountains, Amanian Gates -> AL-HARUNIYA + link = { imp = 8011 ck3 = 5914 } # Karlon -> MASYAF link = { imp = 793 imp = 1871 ck3 = 5935 } # Gindaros, Syrian Gates -> ARTAH - link = { imp = 794 imp = 792 ck3 = 5904 } # Cyrrhus, Trapezon -> BAGHRAS - link = { imp = 796 imp = 795 imp = 8021 imp = 5180 ck3 = 5905 } # Issus, Myriandros, Syrian Gates, IMPASSIBLE TERRAIN 180 -> ALEXANDRETTA - link = { imp = 772 ck3 = 5917 } # Kabiosa -> RAFANIYA-KRAK + link = { imp = 794 imp = 792 ck3 = 5904 } # Cyrrus, Trapezon -> BAGHRAS + link = { imp = 796 imp = 795 imp = 8021 imp = 5180 ck3 = 5905 } # Issus/Nikopolis, Myriandros, Syrian Gates, IMPASSIBLE TERRAIN 180 -> ALEXANDRETTA + link = { imp = 772 ck3 = 5917 } # Laodicea ad Libanum -> RAFANIYA-KRAK link = { imp = 779 imp = 771 ck3 = 5916 } # Arados, Arca -> ANTARTUS link = { imp = 748 imp = 749 ck3 = 5919 } # Berytus, Brochoi -> BEIRUT link = { imp = 769 imp = 767 imp = 766 ck3 = 5918 } # Tripolis, Botrys, Byblos -> TRIPOLIS - link = { imp = 5934 ck3 = 5952 ck3 = 5951 } # Agraeia -> MARJ-RAHIT, JUWAIR + link = { imp = 5934 ck3 = 5952 ck3 = 5951 } # Arabian Impassable -> MARJ-RAHIT, JUWAIR link = { imp = 750 ck3 = 5924 } # Damascus -> DAMASCUS - link = { imp = 747 imp = 746 imp = 741 ck3 = 5920 } # Sidon, Sarepta, Abila -> SAIDA + link = { imp = 747 imp = 746 imp = 741 ck3 = 5920 } # Sidon, Sarepta, Iyyon -> SAIDA link = { comment = "# Cyprus" } - link = { imp = 333 imp = 335 imp = 336 ck3 = 5680 } # Soloi, Kyrenia, Tamassos -> Soli_CYP - link = { imp = 334 imp = 6431 ck3 = 5682 } # Nea Paphos, Marion -> Paphos + link = { imp = 333 imp = 335 imp = 336 ck3 = 5680 } # Soloi, Lapethos, Tamassos -> Soli_CYP + link = { imp = 334 imp = 6431 ck3 = 5682 } # Paphos, Palaipaphos -> Paphos link = { imp = 7990 imp = 338 imp = 7989 ck3 = 756 } # Kourion, Amathous, Trogodos Mons -> Limisol link = { imp = 6433 ck3 = 5679 } # Chythroi -> Cerynia - link = { imp = 331 imp = 332 imp = 7991 ck3 = 5681 } # Salamis Kyprias, Kition, Idalion -> Nicosia + link = { imp = 331 imp = 332 imp = 7991 ck3 = 5681 } # Salamis, Kition, Keryneai -> Nicosia link = { imp = 330 ck3 = 757 } # Karpasia -> Famagusta link = { comment = "# Mesopotamia" } link = { imp = 972 ck3 = 6015 } # Arac -> JUBBA - link = { imp = 975 ck3 = 6010 } # Cissia -> BASINNA - link = { imp = 4969 ck3 = 4786 } # Andamaska -> AS-SAIMARA - link = { imp = 4966 ck3 = 4261 } # Khaydalu -> Saburkhawasht - link = { imp = 4968 imp = 5233 imp = 4971 ck3 = 4262 } # Thebarga, Kossioia, Sabatika -> Alishtar - link = { imp = 4963 imp = 1597 ck3 = 4116 } # Nithavanta, Konkobar -> Nihawand - link = { imp = 4967 ck3 = 4260 } # Sabandan -> Andamish - link = { imp = 4970 ck3 = 4787 } # Zaranis -> SIRAVAN - link = { imp = 947 ck3 = 4819 } # Choaspes -> KARKHA + link = { imp = 975 ck3 = 6010 } # Cissia* -> BASINNA + link = { imp = 4969 ck3 = 4786 } # Maimah -> AS-SAIMARA + link = { imp = 4966 ck3 = 4261 } # Shapur Khwast -> Saburkhawasht + link = { imp = 4968 imp = 5233 imp = 4971 ck3 = 4262 } # Tepe, IMPASSIBLE TERRAIN 233, Pusht -> Alishtar + link = { imp = 4963 imp = 1597 ck3 = 4116 } # Nihavand, Harsin -> Nihawand + link = { imp = 4967 ck3 = 4260 } # Kard -> Andamish + link = { imp = 4970 ck3 = 4787 } # Cheshme -> SIRAVAN + link = { imp = 947 ck3 = 4819 } # Shapur -> KARKHA link = { imp = 976 ck3 = 4798 } # Lawami -> JABBUL link = { imp = 928 ck3 = 4788 ck3 = 4785 } # Deru -> BADARAYA, ARIVAJAN - link = { imp = 974 ck3 = 4789 } # Cossaea -> BAKUSAYA - link = { imp = 980 ck3 = 4820 } # Dorista -> AT-TIB + link = { imp = 974 ck3 = 4789 } # Cossaea (Tribe) -> BAKUSAYA + link = { imp = 980 ck3 = 4820 } # Dashti -> AT-TIB link = { imp = 971 ck3 = 6017 } # Ampe -> ABBADAN link = { imp = 943 ck3 = 6014 } # Soloke -> DAWRAQ - link = { imp = 948 imp = 946 ck3 = 4818 } # Dizpul, Shushan -> AS-SUS - link = { imp = 945 ck3 = 6011 ck3 = 6012 } # Taryana -> AHWAZ, HUWAIZA + link = { imp = 948 imp = 946 ck3 = 4818 } # Dezful, Shushan -> AS-SUS + link = { imp = 945 ck3 = 6011 ck3 = 6012 } # Taryana/Ardashir -> AHWAZ, HUWAIZA link = { imp = 969 ck3 = 6018 } # Darak -> BASIYAN - link = { imp = 940 imp = 941 ck3 = 6016 } # Alexandria Susiana, Forat -> BAYAN - link = { imp = 970 ck3 = 6009 } # Abara -> AL-MADHAR + link = { imp = 940 imp = 941 ck3 = 6016 } # Alexandria/Spasinou Charax, Forat -> BAYAN + link = { imp = 970 ck3 = 6009 } # Madhar -> AL-MADHAR link = { comment = "# Bessarabia" } - link = { imp = 4944 ck3 = 5060 } # Dolarum -> Sambir - link = { imp = 4943 imp = 4942 ck3 = 536 } # Castrana, Acrium -> Halych - link = { imp = 4941 ck3 = 5061 } # Salumnis -> Kolomyia - link = { imp = 4940 ck3 = 5062 } # Limnorum -> Spas - link = { imp = 4939 ck3 = 5042 } # Octavum -> Cernauti - link = { imp = 4935 ck3 = 545 ck3 = 5036 ck3 = 5034 } # Montanium -> Suceava, Campulung Moldovenesc, Baia - link = { imp = 4930 ck3 = 5031 ck3 = 5032 } # Oridava -> Piatra Neamnt, Targu Neamnt + link = { imp = 4944 ck3 = 5060 } # Dolarum* -> Sambir + link = { imp = 4943 imp = 4942 ck3 = 536 } # Castrana*, Acrium* -> Halych + link = { imp = 4941 ck3 = 5061 } # Salumnis* -> Kolomyia + link = { imp = 4940 ck3 = 5062 } # Limnorum* -> Spas + link = { imp = 4939 ck3 = 5042 } # Octavum* -> Cernauti + link = { imp = 4935 ck3 = 545 ck3 = 5036 ck3 = 5034 } # Montanium* -> Suceava, Campulung Moldovenesc, Baia + link = { imp = 4930 ck3 = 5031 ck3 = 5032 } # Oridava* -> Piatra Neamnt, Targu Neamnt link = { imp = 4912 ck3 = 5033 ck3 = 5030 } # Zargidava -> Roman, Bacau - link = { imp = 4938 ck3 = 5041 ck3 = 5037 } # Tannis -> Tetina, Siret - link = { imp = 4913 imp = 4825 ck3 = 5028 } # Piroboridava, Montibus -> Focsani - link = { imp = 4801 ck3 = 5027 } # Polondava -> Tecuci - link = { imp = 4923 ck3 = 513 } # Acritones -> Barlad + link = { imp = 4938 ck3 = 5041 ck3 = 5037 } # Tannis* -> Tetina, Siret + link = { imp = 4913 imp = 4825 ck3 = 5028 } # Conidava*, Montibus -> Focsani + link = { imp = 4801 ck3 = 5027 } # Comidava -> Tecuci + link = { imp = 4923 ck3 = 513 } # Acritones* -> Barlad link = { imp = 4802 ck3 = 511 } # Agarusia -> Galati - link = { imp = 4932 ck3 = 541 } # Millianum -> Iasi - link = { imp = 4933 ck3 = 5039 } # Cruciatum -> Harlau - link = { imp = 4931 ck3 = 5025 } # Loricata -> Vaslui + link = { imp = 4932 ck3 = 541 } # Millianum* -> Iasi + link = { imp = 4933 ck3 = 5039 } # Cruciatum* -> Harlau + link = { imp = 4931 ck3 = 5025 } # Loricata* -> Vaslui link = { imp = 4914 ck3 = 5038 } # Carsidava -> Dorohoi - link = { imp = 4929 ck3 = 5022 } # Siculo -> Balti - link = { imp = 4928 imp = 4934 ck3 = 5023 } # Leptidava, Muradava -> Ungheni - link = { imp = 4936 ck3 = 5021 ck3 = 5024 } # Ad Verticem -> Soroca, Falesti - link = { imp = 4937 ck3 = 5040 } # Confluentia Subcarpathica -> Hotin - link = { imp = 4521 ck3 = 5013 } # Nobiodounos -> Oblucita - link = { imp = 4800 ck3 = 5016 } # Dinogetia -> Cahul - link = { imp = 4922 ck3 = 5015 } # Aikronon -> Tigheci - link = { imp = 4919 imp = 4920 ck3 = 5014 } # Olitis, Agrana -> Artsyz - link = { imp = 4522 ck3 = 5012 } # Ta Antiphilou -> Chilia + link = { imp = 4929 ck3 = 5022 } # Siculo* -> Balti + link = { imp = 4928 imp = 4934 ck3 = 5023 } # Leptidava*, Muradava* -> Ungheni + link = { imp = 4936 ck3 = 5021 ck3 = 5024 } # Verticem* -> Soroca, Falesti + link = { imp = 4937 ck3 = 5040 } # Confluentia* -> Hotin + link = { imp = 4521 ck3 = 5013 } # Noviodunum -> Oblucita + link = { imp = 4800 ck3 = 5016 } # Piroboridava -> Cahul + link = { imp = 4922 ck3 = 5015 } # Iecronum* -> Tigheci + link = { imp = 4919 imp = 4920 ck3 = 5014 } # Olitis*, Agrana* -> Artsyz + link = { imp = 4522 ck3 = 5012 } # Antiphili -> Chilia link = { imp = 4915 ck3 = 5019 } # Clepidava -> Orhei - link = { imp = 4916 ck3 = 5020 } # Mirum -> Tuzara - link = { imp = 4921 ck3 = 5018 } # Bridava -> Chisinau - link = { imp = 4925 ck3 = 5017 } # Volumis -> Lapusna - link = { imp = 4924 ck3 = 5026 } # Inatius -> Husi - link = { imp = 4917 imp = 4918 ck3 = 5011 } # Alitora, Lepton -> Tighina - link = { imp = 4524 imp = 4525 imp = 4523 ck3 = 512 } # Aipolion, Tyras, Kremniskoi -> Cetatea Alba + link = { imp = 4916 ck3 = 5020 } # Mirum* -> Tuzara + link = { imp = 4921 ck3 = 5018 } # Bridava* -> Chisinau + link = { imp = 4925 ck3 = 5017 } # Volumis* -> Lapusna + link = { imp = 4924 ck3 = 5026 } # Inatius* -> Husi + link = { imp = 4917 imp = 4918 ck3 = 5011 } # Alitora*, Leptum* -> Tighina + link = { imp = 4524 imp = 4525 imp = 4523 ck3 = 512 } # Aepolium, Tyras, Kremniskoi -> Cetatea Alba link = { comment = "# Central Asia" } link = { comment = "# Crimea" } - link = { imp = 4546 ck3 = 5331 } # Urgat -> Dzhankoi - link = { imp = 4534 ck3 = 559 } # Kalos Limen -> Kalos Limen - link = { imp = 4536 imp = 4547 imp = 4542 ck3 = 5276 } # Kerkinitis, Taurica, Neapolis Taurike -> Kerkinitis + link = { imp = 4546 ck3 = 5331 } # Maeotinia -> Dzhankoi + link = { imp = 4534 ck3 = 559 } # KalosLimen -> Kalos Limen + link = { imp = 4536 imp = 4547 imp = 4542 ck3 = 5276 } # Kerkinitis, Taurica, Neapolis -> Kerkinitis link = { imp = 4538 imp = 4539 imp = 4540 imp = 4537 ck3 = 560 } # Chersonesos, Charax, Lampas, Parthenion -> Chersonesus - link = { imp = 4535 imp = 4545 imp = 4533 ck3 = 5277 } # Masella, Cimus, Taphros -> Perekop + link = { imp = 4535 imp = 4545 imp = 4533 ck3 = 5277 } # Masella, Maeotia, Taphros -> Perekop link = { imp = 4548 ck3 = 5330 } # Kimmeria -> Aqmescit - link = { imp = 4544 imp = 4543 imp = 4541 ck3 = 561 } # Theodosia, Athenaion, Aloustou Phrourion -> Theodosia - link = { imp = 4550 imp = 4549 ck3 = 562 } # Kimmerikon, Pantikapaion -> Kerch + link = { imp = 4544 imp = 4543 imp = 4541 ck3 = 561 } # Theodosia, Athenaion, AloustouPhrourion -> Theodosia + link = { imp = 4550 imp = 4549 ck3 = 562 } # Kimmerikon, Bosporus -> Kerch link = { comment = "# Persia" } - link = { imp = 966 ck3 = 4308 } # Samangan -> Ramhurmuz - link = { imp = 951 ck3 = 4258 } # Elymais -> Bazoh + link = { imp = 966 ck3 = 4308 } # Ram Hurmizd -> Ramhurmuz + link = { imp = 951 ck3 = 4258 } # Shami -> Bazoh link = { imp = 952 ck3 = 4309 ck3 = 4124 ck3 = 4112 } # Tisiyan -> Idhaj, Samshiborid, Asbid-Dasht link = { imp = 949 ck3 = 4257 } # Bendosaboron -> Gondishapur link = { imp = 950 ck3 = 4256 } # Sostrate -> Tustar - link = { imp = 967 ck3 = 6013 } # Urzan -> AZAM + link = { imp = 967 ck3 = 6013 } # Rostag Kavag -> AZAM link = { imp = 4782 ck3 = 4180 } # Suravan -> Sabur - link = { imp = 4781 ck3 = 4179 } # Tragonica -> Kazarun - link = { imp = 4786 ck3 = 4303 } # Temukan -> Tawwaj - link = { imp = 4798 imp = 4948 ck3 = 4177 } # Corra, Pylai Sousianes -> Shiraz-Farsi - link = { imp = 4797 ck3 = 4178 } # Shirajish -> Kubanjan - link = { imp = 4796 imp = 4792 imp = 4794 ck3 = 4199 } # Ardea, Gur, Mammica -> Firuzabad - link = { imp = 4793 ck3 = 4200 ck3 = 4196 ck3 = 4094 ck3 = 4095 ck3 = 4093 } # Cyropolis Persica -> Karzin, Kariyan, Kariyan, Jahrum, Lar + link = { imp = 4781 ck3 = 4179 } # Vehshapur -> Kazarun + link = { imp = 4786 ck3 = 4303 } # Borazjan -> Tawwaj + link = { imp = 4798 imp = 4948 ck3 = 4177 } # Tukrash, Guyum -> Shiraz-Farsi + link = { imp = 4797 ck3 = 4178 } # Seraz -> Kubanjan + link = { imp = 4796 imp = 4792 imp = 4794 ck3 = 4199 } # Saifa, Gur, Fariyah -> Firuzabad + link = { imp = 4793 ck3 = 4200 ck3 = 4196 ck3 = 4094 ck3 = 4095 ck3 = 4093 } # Abdun -> Karzin, Kariyan, Kariyan, Jahrum, Lar link = { imp = 4795 ck3 = 4198 } # Kanat -> Gundijan link = { imp = 6593 ck3 = 4271 } # Gedrosiana -> Bih - link = { imp = 6520 imp = 6521 ck3 = 4286 } # Mephas, Barna -> Jiwani + link = { imp = 6520 imp = 6521 ck3 = 4286 } # Mephas, Badara -> Jiwani link = { imp = 6517 ck3 = 4270 } # Canasida -> Tiz link = { imp = 6513 ck3 = 4273 } # Pura -> Fahraj link = { imp = 6530 ck3 = 4272 } # Paesi -> Bampur - link = { imp = 3400 ck3 = 4173 } # Narecha -> Nariz - link = { imp = 3403 imp = 3404 ck3 = 4175 } # Batthinia, Tashk -> Abade-Darabjerd - link = { imp = 3405 ck3 = 4176 } # Niserne -> Sarwistan-Shirazi-Runiz + link = { imp = 3400 ck3 = 4173 } # Niriz -> Nariz + link = { imp = 3403 imp = 3404 ck3 = 4175 } # Baktehgan, Tashk -> Abade-Darabjerd + link = { imp = 3405 ck3 = 4176 } # Qadamgah -> Sarwistan-Shirazi-Runiz link = { imp = 3401 ck3 = 4174 } # Pasa -> Istakhbanat link = { imp = 4799 ck3 = 4118 } # Persepolis -> Istakhr link = { imp = 3402 ck3 = 4171 } # Darabgird -> Darabjerd link = { imp = 3409 ck3 = 4172 } # Qatre -> Fustujan - link = { imp = 6574 ck3 = 4279 } # Sedrasyra -> Ladhir - link = { imp = 6588 imp = 6585 ck3 = 4278 } # Euergetae, Taftan -> Qantarat Kirman - link = { imp = 6591 imp = 6590 ck3 = 4277 } # Cuni, Sacasteniana -> Sanij + link = { imp = 6574 ck3 = 4279 } # Khash -> Ladhir + link = { imp = 6588 imp = 6585 ck3 = 4278 } # Zaidan, Taftan -> Qantarat Kirman + link = { imp = 6591 imp = 6590 ck3 = 4277 } # Shuru, Sacasteniana -> Sanij link = { imp = 6518 ck3 = 4300 ck3 = 4299 } # Phrada -> Zirjan, Farah - link = { imp = 6647 ck3 = 4204 ck3 = 4206 } # Nisibis -> Asfuzar, Khin + link = { imp = 6647 ck3 = 4204 ck3 = 4206 } # Guleh -> Asfuzar, Khin link = { imp = 7224 imp = 7225 ck3 = 4298 } # Bitaxa, Bogadia -> Masau link = { imp = 6598 ck3 = 4203 ck3 = 4062 } # Darium -> Abiz, Qain - link = { imp = 6597 imp = 6603 imp = 6600 ck3 = 4065 } # Zamouchana, Mila, Ambrodax -> Barandud + link = { imp = 6597 imp = 6603 imp = 6600 ck3 = 4065 } # Mazar, Mila, Shahr -> Barandud link = { imp = 6599 ck3 = 4063 } # Biriand -> Birjand - link = { imp = 6642 imp = 6628 ck3 = 4232 } # Paropamisia, Nysa Paropamisadarum -> Ribat-e-Karyan - link = { imp = 6674 imp = 6675 imp = 6676 ck3 = 4249 } # Menapila, Ankui, Ihnum -> Andkhud - link = { imp = 6634 ck3 = 4254 } # Aspioneia -> Anbar-Guzgani + link = { imp = 6642 imp = 6628 ck3 = 4232 } # Paropamisia, Nysa -> Ribat-e-Karyan + link = { imp = 6674 imp = 6675 imp = 6676 ck3 = 4249 } # Emshi, Ankui, Ihnum -> Andkhud + link = { imp = 6634 ck3 = 4254 } # Aspionia -> Anbar-Guzgani link = { imp = 6673 imp = 6672 ck3 = 4251 } # Zeshoi, Garuli -> Yahudan - link = { imp = 6629 imp = 6635 ck3 = 4253 } # Kourianda, Tambyzeia -> Gurzivan + link = { imp = 6629 imp = 6635 ck3 = 4253 } # Curianda, Tambyzia -> Gurzivan link = { imp = 6636 ck3 = 4224 ck3 = 4229 ck3 = 4230 } # Tambyziana -> Khasht, Bashin, Shurmin - link = { imp = 6631 ck3 = 4231 } # Daroideia -> Dih-e-Khalaf - link = { imp = 6644 ck3 = 4226 } # Artousia -> Ahanjaran - link = { imp = 6643 ck3 = 4227 } # Barzaura -> Ghur - link = { imp = 6565 ck3 = 4216 } # Phoraua -> Karukh - link = { imp = 6559 ck3 = 4225 } # Artacabane -> Firuzkuh - link = { imp = 6558 imp = 6557 ck3 = 4217 } # Alexandreia Areia, Artacoana -> Malin + link = { imp = 6631 ck3 = 4231 } # Daroidia -> Dih-e-Khalaf + link = { imp = 6644 ck3 = 4226 } # Artusia -> Ahanjaran + link = { imp = 6643 ck3 = 4227 } # Sherak -> Ghur + link = { imp = 6565 ck3 = 4216 } # Qadis -> Karukh + link = { imp = 6559 ck3 = 4225 } # Artaconna -> Firuzkuh + link = { imp = 6558 imp = 6557 ck3 = 4217 } # Aria, Sariphiana -> Malin link = { imp = 6567 imp = 6568 ck3 = 4202 } # Astasana, Parsia -> Shahrakht - link = { imp = 6646 imp = 6596 ck3 = 4205 } # Soteira, Thubrasine -> Adraskan - link = { imp = 6563 imp = 6604 ck3 = 4297 } # Zimyra, Masina -> Khoshk-Rud + link = { imp = 6646 imp = 6596 ck3 = 4205 } # Azav, Anar -> Adraskan + link = { imp = 6563 imp = 6604 ck3 = 4297 } # Phraada, Masina -> Khoshk-Rud link = { imp = 6566 ck3 = 4294 } # Phorana -> Uq - link = { imp = 6562 imp = 6605 ck3 = 4296 } # Aris, Barda -> Doroh - link = { imp = 6560 ck3 = 4295 } # Zranka -> Bandan - link = { imp = 6606 imp = 6607 ck3 = 4283 } # Tribazina, Xarxiare -> Nih + link = { imp = 6562 imp = 6605 ck3 = 4296 } # Karkuya, Barda -> Doroh + link = { imp = 6560 ck3 = 4295 } # Ghulaman -> Bandan + link = { imp = 6606 imp = 6607 ck3 = 4283 } # Hesida, Sethur -> Nih link = { imp = 6645 ck3 = 4228 } # Tamazan -> Darmashan - link = { imp = 6621 imp = 6639 ck3 = 4233 } # Sangar, Rana -> Till - link = { imp = 6622 imp = 6633 ck3 = 4492 } # Phoklis, Kora -> DURGAS + link = { imp = 6621 imp = 6639 ck3 = 4233 } # Sangar, Myah -> Till + link = { imp = 6622 imp = 6633 ck3 = 4492 } # Aqagah, Kora -> DURGAS link = { imp = 6553 ck3 = 4493 } # Carura -> BAGNIN link = { imp = 6554 ck3 = 4490 } # Bagasse -> SARWAN - link = { imp = 6572 ck3 = 4497 } # Cotrica -> PUL - link = { imp = 6573 ck3 = 4495 ck3 = 4496 } # Banagara -> PANJWAY, BAKRAWATH - link = { imp = 6609 ck3 = 4501 } # Ortespane -> GARDIZ - link = { imp = 6641 ck3 = 4503 } # Naulibis -> SUKAWAND - link = { imp = 6640 ck3 = 4502 } # Alkon -> ISTAKH - link = { imp = 6615 ck3 = 4500 } # Gauzaka -> GHAZNA + link = { imp = 6572 ck3 = 4497 } # Chaman -> PUL + link = { imp = 6573 ck3 = 4495 ck3 = 4496 } # Karz -> PANJWAY, BAKRAWATH + link = { imp = 6609 ck3 = 4501 } # Ortespana -> GARDIZ + link = { imp = 6641 ck3 = 4503 } # Behsad -> SUKAWAND + link = { imp = 6640 ck3 = 4502 } # Barigah -> ISTAKH + link = { imp = 6615 ck3 = 4500 } # Gauzaca -> GHAZNA link = { imp = 6624 ck3 = 4506 ck3 = 4505 } # Liman -> MOQOR, SHARAN link = { imp = 6623 ck3 = 4507 ck3 = 4509 } # Tazora -> JALDAK, MAPAN link = { imp = 6632 ck3 = 4499 } # Kopan -> RUKHAJ - link = { imp = 6547 imp = 6548 ck3 = 4498 } # Artoarta, Itua -> QANDAHAR + link = { imp = 6547 imp = 6548 ck3 = 4498 } # Jaldak, Itua -> QANDAHAR link = { imp = 6541 ck3 = 4494 } # Alexandropolis -> RUDAN link = { imp = 6610 ck3 = 4491 } # Musai -> BISHANG - link = { imp = 6555 ck3 = 4485 ck3 = 4483 ck3 = 4489 } # Demetrias Arachosias -> AL-MUASKAR, GALIKAN, ZAMINDAWAR + link = { imp = 6555 ck3 = 4485 ck3 = 4483 ck3 = 4489 } # Demetrias -> AL-MUASKAR, GALIKAN, ZAMINDAWAR link = { imp = 6546 ck3 = 4486 ck3 = 4484 ck3 = 4467 } # Arachotus -> RIBAT-I-KISH, BOST, LANDAY link = { imp = 6551 ck3 = 1485 } # Etymandria -> PERSIAN IMPASSABLE TERRAIN link = { imp = 6570 ck3 = 4289 } # Bigis -> Zaranj - link = { imp = 6595 ck3 = 4201 } # Pharazana -> Azadawan - link = { imp = 6594 ck3 = 4482 ck3 = 4291 ck3 = 4293 } # Taharene -> DELARAM, Khawaj, Juwain + link = { imp = 6595 ck3 = 4201 } # Delaram -> Azadawan + link = { imp = 6594 ck3 = 4482 ck3 = 4291 ck3 = 4293 } # Bost -> DELARAM, Khawaj, Juwain link = { imp = 6569 ck3 = 4290 ck3 = 4292 } # Gari -> Qarnin, Karkuya link = { imp = 6549 imp = 6550 ck3 = 4466 } # Parabeste, Ariaspe -> KHANNESIN - link = { imp = 6561 imp = 6552 ck3 = 4288 } # Nostana, Alexandreia Sakastenes -> Ram Shahristan + link = { imp = 6561 imp = 6552 ck3 = 4288 } # Shahristan, Alexandria Sacastene -> Ram Shahristan link = { imp = 6584 ck3 = 4280 } # Kano -> Khwash link = { imp = 6062 ck3 = 4469 ck3 = 4470 ck3 = 4468 } # Parecania -> CHAGAI, JALK, SAINDAK link = { imp = 6063 ck3 = 4284 ck3 = 4287 } # Parecaniana -> Rasak, Dizak Makrani - link = { imp = 4362 imp = 4365 ck3 = 1370 } # Azaika, Nereai -> Mohenjo_Daro + link = { imp = 4362 imp = 4365 ck3 = 1370 } # Sambos, Nereai -> Mohenjo_Daro link = { imp = 4361 ck3 = 3405 } # Megaroi -> Khudabad - link = { imp = 4355 ck3 = 3404 } # Sindhumana -> Sharusan + link = { imp = 4355 ck3 = 3404 } # Sindhimana(Sehwan) -> Sharusan link = { imp = 6534 ck3 = 4478 ck3 = 4479 } # Zetis -> WAD, QUSDAR link = { imp = 6618 ck3 = 4481 } # Oltus -> GAJOR link = { imp = 6537 imp = 6535 ck3 = 4480 } # Soxetra, Oscana -> BUDIN link = { imp = 6538 imp = 6617 imp = 6616 imp = 6539 ck3 = 4488 } # Badara, Pardiae, Choarene, Musarna -> QIQAN link = { imp = 6536 ck3 = 4476 } # Arbiti -> ARMABIL - link = { imp = 7660 ck3 = 1303 } # Abad Sauvira -> Ranikot + link = { imp = 7660 ck3 = 1303 } # Abad -> Ranikot link = { imp = 6815 ck3 = 3401 } # Patala -> Nirun - link = { imp = 6821 ck3 = 3402 } # Alexandrou Limen -> Thatta + link = { imp = 6821 ck3 = 3402 } # Alexandrou -> Thatta link = { imp = 6849 ck3 = 1297 } # Bibakta -> Debul - link = { imp = 6527 ck3 = 3403 } # Morontobara -> Kolachi + link = { imp = 6527 ck3 = 3403 } # Suacala -> Kolachi link = { imp = 6526 imp = 6532 ck3 = 4475 } # Pagala, Arbis -> QANBALI link = { imp = 6620 ck3 = 4473 } # Bambacia -> RODKHAN link = { imp = 6533 imp = 6619 ck3 = 4477 } # Rhamna, Arbia -> KHAWR link = { imp = 6524 imp = 6525 imp = 6531 ck3 = 4474 } # Malana, Cabana, Cocala -> KOKAHDAN - link = { imp = 6522 imp = 6523 imp = 6061 ck3 = 4285 } # Mosarna, Bagisara, Gedrosia -> Kiz - link = { imp = 6579 imp = 6592 ck3 = 4268 } # Samydae, Hydriacus -> Bint + link = { imp = 6522 imp = 6523 imp = 6061 ck3 = 4285 } # Mosarna, Colame, Gedrosia -> Kiz + link = { imp = 6579 imp = 6592 ck3 = 4268 } # Abshi, Hydriacus -> Bint link = { imp = 6516 ck3 = 4269 } # Troesus -> Ruhna - link = { imp = 6515 ck3 = 4266 } # Bagaseira -> Houn + link = { imp = 6515 ck3 = 4266 } # Ettuar -> Houn link = { imp = 6578 imp = 6583 ck3 = 4267 } # Parsicia, Cabulia -> South Jaz Murian link = { imp = 6580 imp = 6581 ck3 = 4264 } # Salarus, Canate -> Darhafan - link = { imp = 6514 ck3 = 4265 } # Badis -> Jask + link = { imp = 6514 ck3 = 4265 } # Madis -> Jask link = { imp = 6512 ck3 = 4185 } # Harmozeia -> Hormuz - link = { imp = 4791 ck3 = 4186 } # Hormirzad -> Shahru + link = { imp = 4791 ck3 = 4186 } # Harmozeia -> Shahru link = { imp = 4960 imp = 4958 ck3 = 4090 } # Sabzevaran, Valashgerd -> Maghun link = { imp = 6582 ck3 = 4263 } # Tarucano -> Manujan link = { imp = 3411 ck3 = 4091 } # Farsir -> Ruyan Jirufti link = { imp = 9469 ck3 = 4188 } # Khamir -> Kaurastan link = { imp = 4955 ck3 = 4187 } # Oarakta -> Laft - link = { imp = 4957 ck3 = 4190 } # Sisidona -> Dun - link = { imp = 4962 ck3 = 4192 ck3 = 4189 } # Ostana -> Dazuk, Beiram - link = { imp = 4956 ck3 = 4191 } # Portospana -> Huzu - link = { imp = 4790 ck3 = 4194 ck3 = 4193 } # Apostana -> Siraf, Naband - link = { imp = 4789 ck3 = 4195 } # Gogana -> Mandestan - link = { imp = 4787 imp = 4788 ck3 = 4197 } # Bushahr, Hieratis -> Bushkanat + link = { imp = 4957 ck3 = 4190 } # Lengeh -> Dun + link = { imp = 4962 ck3 = 4192 ck3 = 4189 } # Gabandi -> Dazuk, Beiram + link = { imp = 4956 ck3 = 4191 } # Kish -> Huzu + link = { imp = 4790 ck3 = 4194 ck3 = 4193 } # Siraf -> Siraf, Naband + link = { imp = 4789 ck3 = 4195 } # Dayya -> Mandestan + link = { imp = 4787 imp = 4788 ck3 = 4197 } # Bushahr, Parsha -> Bushkanat link = { imp = 4784 ck3 = 4301 } # Arrakia -> Jannaba link = { imp = 1595 imp = 1596 ck3 = 4331 } # Ecbatana, Deh Bozan -> Rudhrawar link = { imp = 4964 ck3 = 4115 } # Malaver -> Karaj Abu Dulaf link = { imp = 6962 imp = 6961 ck3 = 4333 } # Choromia, Vera -> Hamadan - link = { imp = 4980 imp = 3391 imp = 4983 ck3 = 4110 } # Ashtian, Anarus, Ushke -> Aba-Qomi - link = { imp = 3382 imp = 3396 ck3 = 4321 } # Baaka, Choana Medias -> Mashkuya - link = { imp = 4999 imp = 3394 ck3 = 4319 } # Tishtriana, Tarkhan -> Rayy - link = { imp = 6956 imp = 6959 imp = 6955 ck3 = 4329 } # Siva, Vesaspe, Saavakineh -> Mazdaqan + link = { imp = 4980 imp = 3391 imp = 4983 ck3 = 4110 } # Ashtian, Navish, Ushke -> Aba-Qomi + link = { imp = 3382 imp = 3396 ck3 = 4321 } # Baaka, Yattesh* -> Mashkuya + link = { imp = 4999 imp = 3394 ck3 = 4319 } # Tehran, Tarkhan -> Rayy + link = { imp = 6956 imp = 6959 imp = 6955 ck3 = 4329 } # Danak, Vesaspe, Saavakineh -> Mazdaqan link = { imp = 6954 ck3 = 4111 } # Qom -> Sawa - link = { imp = 4981 imp = 4982 ck3 = 4330 } # Rhapsa, Tabarte -> Sharuq + link = { imp = 4981 imp = 4982 ck3 = 4330 } # Meyghan, Tabarte -> Sharuq link = { imp = 7639 ck3 = 4314 } # Salus -> Shalush - link = { imp = 4996 ck3 = 4312 ck3 = 4316 ck3 = 4315 } # Amarda -> Amul, Firrim, Larijan - link = { imp = 7638 ck3 = 4313 ck3 = 4005 } # Mura -> Natil, Ruyan - link = { imp = 4984 ck3 = 4323 } # Kaspin -> Qazvin + link = { imp = 4996 ck3 = 4312 ck3 = 4316 ck3 = 4315 } # Amol -> Amul, Firrim, Larijan + link = { imp = 7638 ck3 = 4313 ck3 = 4005 } # Amol -> Natil, Ruyan + link = { imp = 4984 ck3 = 4323 } # Shad Shapur -> Qazvin link = { imp = 4987 ck3 = 4006 } # Shiman -> Alamut - link = { imp = 4986 ck3 = 4004 } # Parachoatras -> Lahij + link = { imp = 4986 ck3 = 4004 } # Parachatroas -> Lahij link = { imp = 4985 ck3 = 4000 } # Kyropolis -> Gilan link = { imp = 3389 ck3 = 4001 } # Shiram -> Daylam link = { imp = 3390 imp = 1593 ck3 = 4002 } # Farrab, Miyana -> Khalkhal - link = { imp = 4989 imp = 6957 ck3 = 4324 } # Ekur, Pirra -> Abhar + link = { imp = 4989 imp = 6957 ck3 = 4324 } # Bolagh, Pirra -> Abhar link = { imp = 3385 imp = 6960 ck3 = 4328 } # Aba, Iasonia -> Aba link = { imp = 4988 ck3 = 4325 } # Aganzana -> Zanjan link = { imp = 3383 ck3 = 4326 } # Shaapa -> Afshar link = { imp = 4990 ck3 = 4327 } # Molla -> Suhravard - link = { imp = 3381 ck3 = 4322 } # Sigriane -> Qasran - link = { imp = 3443 imp = 6509 ck3 = 4047 } # Siacus, Badroud -> Qashan - link = { imp = 6508 ck3 = 4051 } # Pyctis -> Nain - link = { imp = 6510 imp = 6507 imp = 5441 ck3 = 4050 } # Orubicaria, Naein, Kavir Desert -> Uzwara + link = { imp = 3381 ck3 = 4322 } # Alam -> Qasran + link = { imp = 3443 imp = 6509 ck3 = 4047 } # Namak, Badroud -> Qashan + link = { imp = 6508 ck3 = 4051 } # Aqda -> Nain + link = { imp = 6510 imp = 6507 imp = 5441 ck3 = 4050 } # Mahabad, Naein, UNINHABITABLE -> Uzwara link = { imp = 3433 ck3 = 4049 ck3 = 4048 } # Ardesh -> Ardistan, Natanz link = { imp = 6505 ck3 = 4057 } # Bazyab -> Jarmaq - link = { imp = 6501 imp = 5439 ck3 = 4058 } # Palitas, Kavir Desert -> Wandah - link = { imp = 3453 imp = 3442 ck3 = 4046 } # Khuvara, Canatha -> Khuwar + link = { imp = 6501 imp = 5439 ck3 = 4058 } # Chupanan, UNINHABITABLE -> Wandah + link = { imp = 3453 imp = 3442 ck3 = 4046 } # Qaleh Gureh*, Kavir -> Khuwar link = { imp = 4993 imp = 4992 imp = 4991 ck3 = 4318 } # Apameia, Portae, Rhagai -> Dumbawand - link = { imp = 4994 imp = 3459 ck3 = 4045 } # Semina, Pasacartia -> Simnan - link = { imp = 3395 imp = 3452 ck3 = 4320 } # Nizamabad, Goziris -> Waramin + link = { imp = 4994 imp = 3459 ck3 = 4045 } # Semnon, Motta* -> Simnan + link = { imp = 3395 imp = 3452 ck3 = 4320 } # Nizamabad, Goziris* -> Waramin link = { imp = 4975 ck3 = 4109 } # Goyman -> Qom - link = { imp = 3392 ck3 = 4108 } # Sevavicina -> Wazwan - link = { imp = 4973 imp = 3398 ck3 = 4106 } # Aspadana, Themantica -> Isfahan - link = { imp = 4974 ck3 = 4107 } # Gadamarta -> Gulpaygan - link = { imp = 4976 imp = 4979 ck3 = 4114 } # Paraetecene, Sidices -> Abta'a - link = { imp = 4977 ck3 = 4101 ck3 = 4121 } # Axiana -> Sarwistan, Abada - link = { imp = 3399 ck3 = 4104 ck3 = 4100 } # Sycta -> Firuzan, Jarquh - link = { imp = 3397 ck3 = 4105 } # Gindes -> Julfa - link = { imp = 4972 ck3 = 4103 ck3 = 4122 } # Gabiene -> Qumisha, Lurijan - link = { imp = 6589 ck3 = 4276 } # Arcrotis -> Kurk - link = { imp = 6575 imp = 6577 imp = 6576 imp = 6586 ck3 = 4275 } # Basma, Parira, Abis, Bulya -> North Jaz Murian - link = { imp = 6529 imp = 6528 imp = 6587 ck3 = 4274 } # Chodda, Apameia Raphane, Cabadene -> Riqan + link = { imp = 3392 ck3 = 4108 } # Nassar -> Wazwan + link = { imp = 4973 imp = 3398 ck3 = 4106 } # Aspadana, Neshar -> Isfahan + link = { imp = 4974 ck3 = 4107 } # Gurbayigan -> Gulpaygan + link = { imp = 4976 imp = 4979 ck3 = 4114 } # Khureh, Rahjerd -> Abta'a + link = { imp = 4977 ck3 = 4101 ck3 = 4121 } # Abadeh -> Sarwistan, Abada + link = { imp = 3399 ck3 = 4104 ck3 = 4100 } # Bagh -> Firuzan, Jarquh + link = { imp = 3397 ck3 = 4105 } # Anjir -> Julfa + link = { imp = 4972 ck3 = 4103 ck3 = 4122 } # Kasht -> Qumisha, Lurijan + link = { imp = 6589 ck3 = 4276 } # Tavakkal -> Kurk + link = { imp = 6575 imp = 6577 imp = 6576 imp = 6586 ck3 = 4275 } # Basma, Bampur, Abad, Bulya -> North Jaz Murian + link = { imp = 6529 imp = 6528 imp = 6587 ck3 = 4274 } # Chodda, Raphane, Zendan -> Riqan link = { imp = 4998 ck3 = 4317 } # Shirga -> Uram - link = { imp = 4997 ck3 = 4311 } # Saringiy -> Sariya - link = { imp = 3434 ck3 = 4310 } # Charinda -> Tamisha + link = { imp = 4997 ck3 = 4311 } # Sedracarta -> Sariya + link = { imp = 3434 ck3 = 4310 } # Kharabshahr -> Tamisha link = { imp = 5422 imp = 5390 ck3 = 4035 } # Tenetis, Acasta -> Oboy - link = { imp = 6601 ck3 = 4066 } # Saripha -> Junabid - link = { imp = 6602 ck3 = 4067 } # Choana -> Bejestan - link = { imp = 3467 imp = 3463 ck3 = 4019 } # Oscanidati, Doruneh -> Keshmar + link = { imp = 6601 ck3 = 4066 } # Gonabad -> Junabid + link = { imp = 6602 ck3 = 4067 } # Dageh -> Bejestan + link = { imp = 3467 imp = 3463 ck3 = 4019 } # Kalaveh, Doruneh -> Keshmar link = { imp = 3469 imp = 3468 ck3 = 4021 } # Parvand, Deraza -> Mazinan - link = { imp = 7226 ck3 = 4007 } # Sirake -> Sarakhs - link = { imp = 6671 ck3 = 4008 ck3 = 4009 } # Antentia -> Dandanqan, Shiraz-Sarakhsi - link = { imp = 6683 ck3 = 4239 } # Erbend -> Kushmaihan - link = { imp = 6668 ck3 = 4238 } # Alexandria Margiana -> Merv + link = { imp = 7226 ck3 = 4007 } # Kaahka -> Sarakhs + link = { imp = 6671 ck3 = 4008 ck3 = 4009 } # Parnia -> Dandanqan, Shiraz-Sarakhsi + link = { imp = 6683 ck3 = 4239 } # Kushmekhan -> Kushmaihan + link = { imp = 6668 ck3 = 4238 } # Antiocheia -> Merv link = { imp = 6724 ck3 = 4237 ck3 = 4236 } # Teyen -> Shawashkan, Kharad link = { imp = 6658 ck3 = 4042 } # Gathar -> Nasa link = { imp = 6657 ck3 = 4041 } # Nisaia -> Shahrastan link = { imp = 6811 ck3 = 4415 } # Hazar -> CHELEKEN link = { imp = 6812 ck3 = 4532 } # Kumdah -> YASHKAN - link = { imp = 5479 imp = 5480 imp = 5477 imp = 5481 imp = 5486 imp = 5476 ck3 = 7089 } # Alicodra, Dyruzh, Kilich, Zantem, Sechoria, Sthura -> Vezir + link = { imp = 5479 imp = 5480 imp = 5477 imp = 5481 imp = 5486 imp = 5476 ck3 = 7089 } # Moinak, Dyruzh, Kilich, Zantem, Sechoria, Sthura -> Vezir link = { imp = 8999 imp = 8996 imp = 8995 imp = 8979 ck3 = 7117 } # Axsini, Kassi, Tulya, Toghayy -> Azez-kul link = { imp = 9001 imp = 8994 imp = 8993 imp = 8981 imp = 9002 ck3 = 7113 } # Tigdi, Lokyldak, Suyktobe, Berdaly, Kafkasos -> Uzun-kul - link = { imp = 7246 imp = 7252 imp = 7279 imp = 7255 ck3 = 900 } # Yangikent, Lek, Masht, Palisha -> Yangikent - link = { imp = 7253 imp = 7254 ck3 = 7110 } # Ziram, Boot -> Kazalinsk - link = { imp = 7275 ck3 = 4413 } # Shahr Jaxartha -> ZAMIN - link = { imp = 6702 imp = 6705 ck3 = 4409 } # Shakria, Matuaspa -> PANJIKAND + link = { imp = 7246 imp = 7252 imp = 7279 imp = 7255 ck3 = 900 } # Yangikent, Lek*, Masht*, Palisha* -> Yangikent + link = { imp = 7253 imp = 7254 ck3 = 7110 } # Ziram*, Boot* -> Kazalinsk + link = { imp = 7275 ck3 = 4413 } # Shahr* -> ZAMIN + link = { imp = 6702 imp = 6705 ck3 = 4409 } # Shakria, Sogdiana -> PANJIKAND link = { imp = 6733 ck3 = 4411 } # Istarava -> BOTTAMAN - link = { imp = 6703 imp = 6721 ck3 = 4414 } # Kyropolis Baktriane, Drepsiana -> BUNJIKET + link = { imp = 6703 imp = 6721 ck3 = 4414 } # Cyropolis, Drepsiana -> BUNJIKET link = { imp = 6732 ck3 = 4419 ck3 = 4423 ck3 = 4425 } # Makhram -> KEND-I-BADAM, ISFARA, HOSHYAR link = { imp = 6722 ck3 = 4422 } # Imarash -> VARUKH - link = { imp = 6704 ck3 = 4416 ck3 = 4418 } # Alexandreia Eschate -> KURKATH, KHOJAND + link = { imp = 6704 ck3 = 4416 ck3 = 4418 } # Alexandria Eschate -> KURKATH, KHOJAND link = { imp = 6755 ck3 = 7970 } # Kumo -> Barchuk - link = { imp = 6753 imp = 6754 ck3 = 7968 } # Toksa, Kagra -> Atus + link = { imp = 6753 imp = 6754 ck3 = 7968 } # Toksa***, Kagra* -> Atus link = { imp = 6771 ck3 = 7958 } # Kezhen -> Yengisar link = { imp = 6757 ck3 = 7963 } # Shachi -> Akto link = { imp = 6761 ck3 = 7959 } # Kasia -> Makit - link = { imp = 6744 ck3 = 1439 ck3 = 7961 ck3 = 7960 } # Kashgar -> Kashgar, Yengi_Xahar, Yopurga + link = { imp = 6744 ck3 = 1439 ck3 = 7961 ck3 = 7960 } # Shule -> Kashgar, Yengi_Xahar, Yopurga link = { imp = 6758 ck3 = 7962 } # Surkhab -> Kona_Xahar link = { imp = 6772 ck3 = 7966 } # Irkeshtam -> Ulugqat - link = { imp = 6773 imp = 6775 ck3 = 7967 } # Gulka, Kabyk -> Terek + link = { imp = 6773 imp = 6775 ck3 = 7967 } # Gulka, Kabryk -> Terek link = { imp = 6735 ck3 = 4427 ck3 = 4431 ck3 = 4426 } # Dawan -> QUBA, NAQAD, AVAL link = { imp = 6740 imp = 6736 ck3 = 4430 } # Shakrikhan, Osh -> OSH link = { imp = 6788 imp = 6737 ck3 = 4432 } # Shura, Andijan -> UZGEND @@ -4469,10 +4468,10 @@ imperator_invictus = { link = { imp = 6782 ck3 = 7145 ck3 = 7146 } # Ashpara -> Ashpara, Merke link = { imp = 6793 ck3 = 1431 } # Otrar -> Otrar link = { imp = 6794 ck3 = 7128 } # Kuyruk -> Yasi - link = { imp = 7261 imp = 6795 ck3 = 7129 } # Maidankoga, Shavgar -> Shavgar + link = { imp = 7261 imp = 6795 ck3 = 7129 } # Maidankoga*, Shavgar -> Shavgar link = { imp = 5483 ck3 = 4457 } # Tubek -> JITH link = { imp = 5482 ck3 = 1378 } # Gyesch -> Gurganj - link = { imp = 6800 ck3 = 4450 ck3 = 4451 } # Aratha -> HAZARASP, KARDURAN-KHAS + link = { imp = 6800 ck3 = 4450 ck3 = 4451 } # Hazarasp -> HAZARASP, KARDURAN-KHAS link = { imp = 6799 imp = 6798 ck3 = 4455 } # Zamakshahr, Shahsenem -> ZAMAKHSHAR link = { imp = 6804 ck3 = 4454 ck3 = 4453 } # Mizdaqahn -> NAZVAR, RUZVAND link = { imp = 5395 ck3 = 4449 } # Dharakh -> RAKHUSHMITHAN @@ -4483,197 +4482,197 @@ imperator_invictus = { link = { imp = 5472 imp = 5474 imp = 5473 imp = 5454 imp = 5475 imp = 5455 ck3 = 4525 } # Kraz, Khrischatach, Dyram, Yatsha, Bela, Palimek -> ORTAKUYU link = { imp = 6809 ck3 = 4526 } # Sariq -> KUGUNEK link = { imp = 5453 imp = 5456 ck3 = 4527 } # Zatra, Murna -> BALA ISKEM - link = { imp = 6807 ck3 = 4529 } # Dauaba -> IGDY + link = { imp = 6807 ck3 = 4529 } # Talaykhan -> IGDY link = { imp = 5392 ck3 = 4528 } # Kurah -> KURTYSH - link = { imp = 6806 ck3 = 4530 } # Balkan -> BURGUN + link = { imp = 6806 ck3 = 4530 } # Igdiqalah -> BURGUN link = { imp = 6810 ck3 = 4036 } # Sild -> Farava link = { imp = 6726 imp = 5391 ck3 = 4037 } # Mansur, Kalana -> Hesare Taq - link = { imp = 6723 imp = 6666 ck3 = 4044 } # Apauarktike, Abarbina -> Abivard + link = { imp = 6723 imp = 6666 ck3 = 4044 } # Dushak, Abarbina -> Abivard link = { imp = 6662 ck3 = 4010 } # Abivard -> Mazduran - link = { imp = 6663 ck3 = 4211 ck3 = 4210 } # Ragau -> Zurabad, Buzjan - link = { imp = 6664 ck3 = 4214 } # Serakhis -> Jabal-al-Fidda + link = { imp = 6663 ck3 = 4211 ck3 = 4210 } # Serakhis -> Zurabad, Buzjan + link = { imp = 6664 ck3 = 4214 } # Alexandria -> Jabal-al-Fidda link = { imp = 6684 ck3 = 4235 } # Haroba -> Jiranj link = { imp = 6685 ck3 = 4218 ck3 = 4234 } # Alan -> Qarinayn, Sinj - link = { imp = 6687 ck3 = 4370 } # Gazaba -> Rigar - link = { imp = 6700 ck3 = 4381 } # Petra Arimazou -> Shuman + link = { imp = 6687 ck3 = 4370 } # Sina -> Rigar + link = { imp = 6700 ck3 = 4381 } # Khona -> Shuman link = { imp = 6698 ck3 = 4377 } # Ikroni -> Livkand - link = { imp = 6701 ck3 = 4382 } # Petra Chorienou -> Vashjird - link = { imp = 6720 imp = 6774 ck3 = 4383 } # Baskata, Karamyk -> Rasht - link = { imp = 6699 ck3 = 4380 } # Marouka -> Munk - link = { imp = 6695 ck3 = 4379 } # Cholbisina -> Hulbuk - link = { imp = 6696 ck3 = 4376 } # Boubakene -> Halavand + link = { imp = 6701 ck3 = 4382 } # Dushan -> Vashjird + link = { imp = 6720 imp = 6774 ck3 = 4383 } # Bascata, Karamyk -> Rasht + link = { imp = 6699 ck3 = 4380 } # Terkul -> Munk + link = { imp = 6695 ck3 = 4379 } # Samti -> Hulbuk + link = { imp = 6696 ck3 = 4376 } # Kokul -> Halavand link = { imp = 6706 ck3 = 4388 ck3 = 4387 } # Kis -> Kishsh, Al-Musala - link = { imp = 6719 ck3 = 4385 } # Petra Sisimithrou -> Kandak - link = { imp = 6688 ck3 = 4369 ck3 = 4371 } # Alexandria Oxiana -> Chaghaniyan, Darzanji - link = { imp = 6697 ck3 = 4375 } # Margineia -> Qobadiyan - link = { imp = 6691 ck3 = 4374 } # Oxeiana -> Awzaj - link = { imp = 6694 ck3 = 4353 ck3 = 4378 } # Oskobara -> Rustaq, Pargar - link = { imp = 6627 ck3 = 4349 } # Astakana -> Valvalij - link = { imp = 6693 ck3 = 4350 } # Aornos -> Talekan - link = { imp = 6681 ck3 = 4352 } # Tahora -> Mila - link = { imp = 6692 ck3 = 4351 } # Khulm -> Khulm - link = { imp = 6653 ck3 = 4252 } # Komiana -> Taleqan - link = { imp = 6652 ck3 = 4250 } # Komeia -> Faryab + link = { imp = 6719 ck3 = 4385 } # Baisun -> Kandak + link = { imp = 6688 ck3 = 4369 ck3 = 4371 } # Mazar -> Chaghaniyan, Darzanji + link = { imp = 6697 ck3 = 4375 } # Kafir -> Qobadiyan + link = { imp = 6691 ck3 = 4374 } # Aruktau -> Awzaj + link = { imp = 6694 ck3 = 4353 ck3 = 4378 } # Shur -> Rustaq, Pargar + link = { imp = 6627 ck3 = 4349 } # Aornos -> Valvalij + link = { imp = 6693 ck3 = 4350 } # Tamali -> Talekan + link = { imp = 6681 ck3 = 4352 } # Qurgan -> Mila + link = { imp = 6692 ck3 = 4351 } # Kum -> Khulm + link = { imp = 6653 ck3 = 4252 } # Comiana -> Taleqan + link = { imp = 6652 ck3 = 4250 } # Comia -> Faryab link = { imp = 6669 ck3 = 4221 ck3 = 4220 ck3 = 4219 } # Tapuria -> Marv-ar-Rud, Panjdih, Barkdiz - link = { imp = 6670 ck3 = 4222 } # Kushke -> Baghshur + link = { imp = 6670 ck3 = 4222 } # Margi -> Baghshur link = { imp = 6665 ck3 = 4213 } # Iasonion -> Bama'in - link = { imp = 6667 ck3 = 4223 } # Confluentia Margiana -> Dizah + link = { imp = 6667 ck3 = 4223 } # Confluenta -> Dizah link = { imp = 7223 ck3 = 4215 } # Badghis -> Herat - link = { imp = 6545 imp = 6542 ck3 = 4209 } # Guriana, Aktene -> Khawaf - link = { imp = 6556 imp = 6564 ck3 = 4207 } # Godana, Chaurina -> Pushang + link = { imp = 6545 imp = 6542 ck3 = 4209 } # Guriana, Actena -> Khawaf + link = { imp = 6556 imp = 6564 ck3 = 4207 } # Alexandria Ariorum, Surkh -> Pushang link = { imp = 6543 ck3 = 4015 } # Suphtha -> Zawa - link = { imp = 7222 ck3 = 4212 ck3 = 4208 } # Kotake -> Kusuy, Tayabad - link = { imp = 3462 imp = 3465 ck3 = 4016 } # Sarmagana, Siphare -> Shamat - link = { imp = 3451 imp = 3466 imp = 3450 ck3 = 4017 } # Sathis, Rivash, Patigrabana -> Nishapur - link = { imp = 6544 imp = 3464 ck3 = 4014 } # Dirma, Taua -> Farhadjird + link = { imp = 7222 ck3 = 4212 ck3 = 4208 } # Cotacê -> Kusuy, Tayabad + link = { imp = 3462 imp = 3465 ck3 = 4016 } # Shalakeh, Kashmar -> Shamat + link = { imp = 3451 imp = 3466 imp = 3450 ck3 = 4017 } # Sathis*, Rivash, Nev Shapur -> Nishapur + link = { imp = 6544 imp = 3464 ck3 = 4014 } # Dirma, Haidari -> Farhadjird link = { imp = 3454 ck3 = 4013 } # Tusa -> Nuqaq link = { imp = 3444 ck3 = 4020 } # Vishpauzatis -> Sabzavar - link = { imp = 3441 imp = 3445 imp = 3449 imp = 3448 ck3 = 4023 } # Argiyan, Sangast, Sapham, Dakhtar -> Isfarain - link = { imp = 3455 ck3 = 4024 } # Deshrae -> Biyar - link = { imp = 3457 imp = 3458 ck3 = 4026 } # Choatras, Calliope -> Damghan - link = { imp = 3456 ck3 = 4025 } # Tiras -> Bistum - link = { imp = 4995 imp = 3439 ck3 = 4027 } # Thara, Komish -> Gerdkuh - link = { imp = 3440 ck3 = 4022 } # Taga -> Jajarm + link = { imp = 3441 imp = 3445 imp = 3449 imp = 3448 ck3 = 4023 } # Argiyan, Sangast, Shafia, Dakhtar* -> Isfarain + link = { imp = 3455 ck3 = 4024 } # Deshrae* -> Biyar + link = { imp = 3457 imp = 3458 ck3 = 4026 } # Qehva*, Veh Ushtir* -> Damghan + link = { imp = 3456 ck3 = 4025 } # Tiras* -> Bistum + link = { imp = 4995 imp = 3439 ck3 = 4027 } # Komish, Qumis -> Gerdkuh + link = { imp = 3440 ck3 = 4022 } # Bistam -> Jajarm link = { imp = 3447 ck3 = 4018 } # Salak -> Rivand link = { imp = 3446 ck3 = 4012 } # Yetaan -> Tus link = { imp = 6660 imp = 6661 ck3 = 4011 } # Bandiyan, Dara -> Maihana - link = { imp = 5437 ck3 = 4043 ck3 = 4038 ck3 = 4032 } # Pylai Parthias -> Khabushan, Jarmaqan, Kerend + link = { imp = 5437 ck3 = 4043 ck3 = 4038 ck3 = 4032 } # UNINHABITABLE -> Khabushan, Jarmaqan, Kerend link = { imp = 6656 ck3 = 4040 } # Asaak -> Dawin link = { imp = 6728 imp = 6729 ck3 = 4039 } # Kilaleh, Dasht -> Samaiqan link = { imp = 6727 ck3 = 4030 } # Shikh -> Bakrabad link = { imp = 6776 imp = 6725 ck3 = 4033 } # Dihistan, Akhur -> Dihistan - link = { imp = 3436 ck3 = 4031 } # Asbana -> Abaskun + link = { imp = 3436 ck3 = 4031 } # Abaskun -> Abaskun link = { imp = 3438 ck3 = 4029 } # Gurgan -> Gurgan - link = { imp = 3435 imp = 3437 ck3 = 4028 } # Zadrakarta, Sirynx -> Astarabad - link = { imp = 3430 ck3 = 4055 } # Arbua -> Fahraj - link = { imp = 6504 imp = 6503 ck3 = 4061 } # Parhe, Pagros -> Biyadaq - link = { imp = 3428 ck3 = 4056 } # Artacana -> Khazana - link = { imp = 3474 imp = 3475 ck3 = 4073 } # Ecbatana Magorum, Chadormalu -> Behabad + link = { imp = 3435 imp = 3437 ck3 = 4028 } # Zadrakarta, Kabudan -> Astarabad + link = { imp = 3430 ck3 = 4055 } # Taram -> Fahraj + link = { imp = 6504 imp = 6503 ck3 = 4061 } # Rabat, Bayazeh -> Biyadaq + link = { imp = 3428 ck3 = 4056 } # Kharanaq -> Khazana + link = { imp = 3474 imp = 3475 ck3 = 4073 } # Gazman, Chadormalu -> Behabad link = { imp = 3473 ck3 = 4075 } # Ravar -> Rawar - link = { imp = 5444 ck3 = 4064 } # Lut Desert -> Khusf - link = { imp = 5446 ck3 = 4070 ck3 = 4068 } # Lut Desert -> Khur, Tun - link = { imp = 5438 imp = 5436 imp = 6502 imp = 6500 ck3 = 4060 } # Great Kavir, Great Kavir, Khur, Ange -> Mihrijan - link = { imp = 3470 imp = 3460 imp = 3461 ck3 = 4069 } # Simpsimidi, Tabai Persikai, Eshgabad -> Tabas + link = { imp = 5444 ck3 = 4064 } # UNINHABITABLE -> Khusf + link = { imp = 5446 ck3 = 4070 ck3 = 4068 } # UNINHABITABLE -> Khur, Tun + link = { imp = 5438 imp = 5436 imp = 6502 imp = 6500 ck3 = 4060 } # UNINHABITABLE, UNINHABITABLE, Khur, Malek -> Mihrijan + link = { imp = 3470 imp = 3460 imp = 3461 ck3 = 4069 } # Parvadeh, Tabas, Eshgabad -> Tabas link = { imp = 3471 imp = 3472 ck3 = 4072 } # Nayband, Denband -> Naband - link = { imp = 3429 ck3 = 4074 } # Paradana -> Kuhbayan - link = { imp = 3423 ck3 = 4080 } # Caumata -> Rudhan - link = { imp = 3421 ck3 = 4079 } # Rhapses -> Anar + link = { imp = 3429 ck3 = 4074 } # Perash -> Kuhbayan + link = { imp = 3423 ck3 = 4080 } # Javad -> Rudhan + link = { imp = 3421 ck3 = 4079 } # Hekah -> Anar link = { imp = 3416 ck3 = 4077 } # Zarand -> Zarand link = { imp = 4959 ck3 = 4085 } # Karmana -> Nurmashiir link = { imp = 4961 ck3 = 4083 ck3 = 4082 } # Bam -> Bamm, Kashid - link = { imp = 3410 ck3 = 4089 } # Thospis -> Jiruft - link = { imp = 3415 ck3 = 4084 } # Throasca -> Dardjiin - link = { imp = 3413 ck3 = 4076 } # Madomastice -> Khabis - link = { imp = 3414 imp = 3412 ck3 = 4078 } # Stabaei, Ardashir -> Kirman - link = { imp = 3422 ck3 = 4096 } # Nepista -> Shahr-e-Babak - link = { imp = 3425 imp = 3407 ck3 = 4087 } # Tarouana, Shiragan -> Bimand - link = { imp = 3424 ck3 = 4081 } # Pantyene -> Mashiz - link = { imp = 3427 imp = 3426 ck3 = 4086 } # Micadae, Cophanta -> Dafaarid + link = { imp = 3410 ck3 = 4089 } # Baqat -> Jiruft + link = { imp = 3415 ck3 = 4084 } # Gulbah -> Dardjiin + link = { imp = 3413 ck3 = 4076 } # Palvar -> Khabis + link = { imp = 3414 imp = 3412 ck3 = 4078 } # Jupar, Ardashir -> Kirman + link = { imp = 3422 ck3 = 4096 } # Kabr -> Shahr-e-Babak + link = { imp = 3425 imp = 3407 ck3 = 4087 } # Cheshme, Shiragan -> Bimand + link = { imp = 3424 ck3 = 4081 } # Mashiz -> Mashiz + link = { imp = 3427 imp = 3426 ck3 = 4086 } # Micadae, Hazaran -> Dafaarid link = { imp = 3408 ck3 = 4088 ck3 = 4092 } # Yahye -> Sirjan, Baaft - link = { imp = 3431 imp = 3432 ck3 = 4102 } # Ashet, Kular -> Wardana - link = { imp = 3419 ck3 = 4052 } # Portippa -> Uqda - link = { imp = 3418 ck3 = 4054 } # Nincildae -> Maibud - link = { imp = 3417 ck3 = 4053 } # Issatis -> Yazd + link = { imp = 3431 imp = 3432 ck3 = 4102 } # Ashet*, Kular* -> Wardana + link = { imp = 3419 ck3 = 4052 } # Deysir -> Uqda + link = { imp = 3418 ck3 = 4054 } # Maibad -> Maibud + link = { imp = 3417 ck3 = 4053 } # Yazd -> Yazd link = { imp = 3420 ck3 = 4099 } # Kalmand -> Qaryat al-Asad - link = { imp = 6511 ck3 = 4098 } # Naserge -> Abarquh - link = { imp = 3406 ck3 = 4097 } # Nisacus -> Muralzijan - link = { imp = 4978 ck3 = 4117 } # Azargarta -> Iqlid - link = { imp = 4951 ck3 = 4119 } # Pasargadai -> Mayin + link = { imp = 6511 ck3 = 4098 } # Harat -> Abarquh + link = { imp = 3406 ck3 = 4097 } # Matahr -> Muralzijan + link = { imp = 4978 ck3 = 4117 } # Kuh-e-Bul -> Iqlid + link = { imp = 4951 ck3 = 4119 } # Pasargadae -> Mayin link = { imp = 4950 imp = 4949 ck3 = 4120 } # Persides, Kaupirrish -> Abraj link = { imp = 4785 imp = 4953 ck3 = 4304 } # Millonia, Croatis -> Khubadan link = { imp = 4780 ck3 = 4305 ck3 = 4302 } # Arragan -> Arrajan, Siniz - link = { imp = 4779 ck3 = 4307 ck3 = 4306 } # Agines -> Asak, Dariyan + link = { imp = 4779 ck3 = 4307 ck3 = 4306 } # Hendaian -> Asak, Dariyan link = { comment = "# Palestine" } - link = { imp = 666 imp = 670 imp = 669 imp = 671 imp = 668 ck3 = 5960 } # Skyamina, Ake-Ptolemais, Jellemeh, Kefar Shuni, Boukolonpolis -> ACRE + link = { imp = 666 imp = 670 imp = 669 imp = 671 imp = 668 ck3 = 5960 } # Sykamina, Ake-Ptolemais, Jellemeh, Kefar Shuni, Boukolonpolis -> ACRE link = { imp = 7646 ck3 = 5986 ck3 = 5987 ck3 = 5988 ck3 = 6179 } # Syrian Desert -> AZ-ZARQA, AL-AZRAQ, AL-JILAT, QASR_AT-TUBA - link = { imp = 721 imp = 720 imp = 715 imp = 714 ck3 = 5985 } # Gerasa, Asophon, Gadara Judea, Tyros -> JARASH - link = { imp = 718 imp = 716 ck3 = 5984 } # Rabbat Ammon, Esbous -> AMMAN + link = { imp = 721 imp = 720 imp = 715 imp = 714 ck3 = 5985 } # Gerasa, Asophon, Gadara, Tyrus -> JARASH + link = { imp = 718 imp = 716 ck3 = 5984 } # Philadelpheia, Esbous -> AMMAN link = { imp = 709 imp = 699 ck3 = 5969 } # Toloha, Eboda -> ZUGHAR - link = { imp = 722 imp = 675 imp = 733 ck3 = 5958 } # Gadara, Pella, Abila Dekapoleos -> IRBID + link = { imp = 722 imp = 675 imp = 733 ck3 = 5958 } # Gadara2, Pella, Abila Dekapoleos/Seleukia -> IRBID link = { imp = 723 imp = 732 imp = 739 imp = 737 ck3 = 5954 } # Hippos, Adraha, Karnaia, Raphon -> ZURRA link = { imp = 731 ck3 = 5979 } # Mhai -> AT-TAFILA link = { imp = 681 ck3 = 5980 } # Characmoba -> KERAK link = { imp = 712 ck3 = 5981 } # Aroes -> MAAB link = { imp = 717 ck3 = 5982 } # Madaba -> ZAIZA link = { imp = 713 ck3 = 5983 } # Livias -> MUJIB - link = { imp = 687 imp = 684 imp = 688 imp = 686 ck3 = 5965 } # Jerusalem, Jericho, Thekoa, Emmaous -> JERUSALEM + link = { imp = 687 imp = 684 imp = 688 imp = 686 ck3 = 5965 } # Ierusalem, Iericho, Thekoa, Emmaus -> JERUSALEM link = { imp = 692 imp = 693 imp = 690 imp = 689 ck3 = 5963 } # Adora, Thala, Marisa, Bethar -> AR-RAMLA - link = { imp = 664 imp = 663 imp = 682 imp = 685 imp = 662 imp = 661 ck3 = 5962 } # Apollonia Palaistinias, Ioppe, Antipatris, Lydda, Iamneia, Ashdod -> YAFFA + link = { imp = 664 imp = 663 imp = 682 imp = 685 imp = 662 imp = 661 ck3 = 5962 } # Apollonia, Ioppe, Antipatris, Lydda, Iamneia, Ashdod -> YAFFA link = { imp = 743 imp = 744 imp = 745 ck3 = 5921 } # Tyrus, Hammon, Gelil -> TYRE - link = { imp = 680 imp = 719 imp = 683 imp = 676 ck3 = 5964 } # Shekhem, Akraba, Ephraim, Salem -> NABLUS + link = { imp = 680 imp = 719 imp = 683 imp = 676 ck3 = 5964 } # Neapolis, Akraba, Ephraim, Salem -> NABLUS link = { imp = 648 imp = 677 imp = 674 imp = 673 imp = 672 ck3 = 5959 } # Gennesar, Asochis, Philoteria, Scythopolis, Iezreel -> TIBERIAS - link = { imp = 665 imp = 667 imp = 678 imp = 679 ck3 = 5961 } # Stratonos Pyrgos, Dora, Narbata, Samaria -> CESAREA + link = { imp = 665 imp = 667 imp = 678 imp = 679 ck3 = 5961 } # Caesarea, Dora, Narbata, Samaria -> CESAREA link = { imp = 691 imp = 711 imp = 700 imp = 710 ck3 = 5966 } # Hebron, Masada, Mampsis, Zoara -> HEBRON - link = { imp = 660 ck3 = 5967 } # Ascalon -> ASCALON + link = { imp = 660 ck3 = 5967 } # Ashqelon/Ascalon -> ASCALON link = { comment = "# Sinai" } - link = { imp = 5158 imp = 5157 imp = 5156 imp = 698 ck3 = 6123 } # IMPASSIBLE TERRAIN 158, Sinai, IMPASSIBLE TERRAIN 156, Sobata -> SINAI DESERT + link = { imp = 5158 imp = 5157 imp = 5156 imp = 698 ck3 = 6123 } # IMPASSIBLE TERRAIN 158, IMPASSIBLE TERRAIN 157, IMPASSIBLE TERRAIN 156, Sobata -> SINAI DESERT link = { imp = 1709 imp = 1710 ck3 = 6037 } # Naqb Jedid, Sina Meridionalis -> TIH link = { imp = 657 imp = 697 imp = 656 imp = 702 ck3 = 5970 } # Bitylion, Nessana, Rinokoloura, Quseima -> AL-ARISH - link = { imp = 659 imp = 658 imp = 694 imp = 696 imp = 695 ck3 = 5968 } # Gaza, Raphia, Maon, Betomolachon, Elousa -> GHAZZA + link = { imp = 659 imp = 658 imp = 694 imp = 696 imp = 695 ck3 = 5968 } # Kadytis/Gaza, Raphia, Maon, Betomolachon, Elousa -> GHAZZA link = { imp = 535 imp = 701 ck3 = 6036 } # Ostrakine, Maghara -> WARRADA - link = { imp = 704 imp = 705 imp = 703 ck3 = 5973 } # Aelana, Sabkah, Gypsaria -> AILA + link = { imp = 704 imp = 705 imp = 703 ck3 = 5973 } # Aelana, Timnah, Gypsaria -> AILA link = { imp = 1688 ck3 = 6030 } # Nuweiba -> FIRAUN link = { imp = 1684 ck3 = 6031 } # Ain Hudera -> DAHAB link = { imp = 1708 ck3 = 1320 } # Tell el-Mashraba -> SINAI DESERT - link = { imp = 5155 ck3 = 1322 ck3 = 947 } # IMPASSIBLE TERRAIN 155 -> SINAI DESERT, Sea of Marmara + link = { imp = 5155 ck3 = 1322 ck3 = 947 } # IMPASSIBLE TERRAIN 155 -> SINAI DESERT, sea_marmara link = { imp = 1693 ck3 = 6032 } # Horeb Mons -> STCATHERINE link = { imp = 1682 imp = 5288 ck3 = 6033 } # Rhaithou, IMPASSIBLE TERRAIN 288 -> AT-TUR link = { imp = 1600 imp = 1675 imp = 5287 ck3 = 6034 } # Marah, Pharan, IMPASSIBLE TERRAIN 287 -> FARAN - link = { imp = 506 imp = 1604 ck3 = 6035 } # Cleopatris, Phoinikon -> QALAT_JUNDI + link = { imp = 506 imp = 1604 ck3 = 6035 } # Arsinoe, Phoinikon -> QALAT_JUNDI link = { imp = 707 imp = 706 imp = 708 ck3 = 5972 } # Arieldela, Bossia, Kalgouia -> ARANDAL link = { imp = 509 imp = 525 ck3 = 6038 } # Pelusium, Sile -> FARAMA link = { comment = "# North India" } - link = { imp = 4471 imp = 5443 ck3 = 1165 } # Tigowa, Chattisgarh Jungle -> Bandhugadha - link = { imp = 7459 ck3 = 926 } # Sihora -> Soubhagyapura - link = { imp = 7132 ck3 = 7933 ck3 = 924 } # Rapsakpur -> Mungeli, Moti_Mahal - link = { imp = 7331 ck3 = 828 ck3 = 8722 } # Chittagong -> Chatigama, Karnaphuli + link = { imp = 4471 imp = 5443 ck3 = 1165 } # Tigowa, UNINHABITABLE -> Bandhugadha + link = { imp = 7459 ck3 = 926 } # Sihora* -> Soubhagyapura + link = { imp = 7132 ck3 = 7933 ck3 = 924 } # Rapsakpur* -> Mungeli, Moti_Mahal + link = { imp = 7331 ck3 = 828 ck3 = 8722 } # Chittagong* -> Chatigama, Karnaphuli link = { imp = 7401 ck3 = 829 ck3 = 830 ck3 = 854 } # Ramgati -> Candranatha, Pattikera, Tlawng - link = { imp = 7343 ck3 = 816 } # Dhuburi -> Dhubri + link = { imp = 7343 ck3 = 816 } # Dhuburi*** -> Dhubri link = { imp = 4402 ck3 = 7944 } # Thuna -> Sadhaura - link = { imp = 7402 ck3 = 9088 ck3 = 9050 ck3 = 9049 ck3 = 9048 } # Kalesar -> Uttarkashi, Kamru, Kalpa, Poo + link = { imp = 7402 ck3 = 9088 ck3 = 9050 ck3 = 9049 ck3 = 9048 } # Kalesar* -> Uttarkashi, Kamru, Kalpa, Poo link = { imp = 4403 ck3 = 3473 } # Usinaragiri -> Gangadvara link = { imp = 4408 ck3 = 3456 } # Madrakara -> Narabhata - link = { imp = 4410 ck3 = 1352 } # Indabara -> Sarasvati - link = { imp = 4415 ck3 = 3477 } # Sirsa -> Dadrewa - link = { imp = 4409 ck3 = 1366 } # Arispara -> Asigarh + link = { imp = 4410 ck3 = 1352 } # Tabarhindh -> Sarasvati + link = { imp = 4415 ck3 = 3477 } # Sodal -> Dadrewa + link = { imp = 4409 ck3 = 1366 } # Karanpura -> Asigarh link = { imp = 4387 ck3 = 3454 } # Agrodakha -> Samana - link = { imp = 4414 imp = 4417 ck3 = 3457 } # Salagishsha, Tohana -> Sunam - link = { imp = 4411 imp = 4416 ck3 = 3452 } # Sthanishvara, Sunam -> Sirhind + link = { imp = 4414 imp = 4417 ck3 = 3457 } # Mansa*, Tohana* -> Sunam + link = { imp = 4411 imp = 4416 ck3 = 3452 } # Sthanishvara, Sunam* -> Sirhind link = { imp = 4412 ck3 = 1367 } # Karnal -> Saharanpur - link = { imp = 7442 imp = 4481 ck3 = 3348 } # Vyaghrapataka, Barli -> Dhanop - link = { imp = 7388 ck3 = 3482 ck3 = 1346 } # Empelathra -> Sanganer, Shakambhari - link = { imp = 7443 imp = 7309 ck3 = 3347 } # Narayana, Mritti Kavati -> Ajayameru + link = { imp = 7442 imp = 4481 ck3 = 3348 } # Vyaghrapataka*, Barli -> Dhanop + link = { imp = 7388 ck3 = 3482 ck3 = 1346 } # Govindgarh* -> Sanganer, Shakambhari + link = { imp = 7443 imp = 7309 ck3 = 3347 } # Narayana*, Mritti Kavati -> Ajayameru link = { imp = 4484 ck3 = 3349 ck3 = 3487 ck3 = 1176 } # Pushkara -> Pushkar, Purnatallakapura, Medantaka - link = { imp = 7389 ck3 = 1353 ck3 = 3479 ck3 = 3480 ck3 = 3478 ck3 = 1354 ck3 = 1349 ck3 = 1350 ck3 = 3969 } # Nehrawati -> Harshnath, Kuchaman, Makrana, Ladnu, Nagauda, Vikramapura, Reni, Khaluvana + link = { imp = 7389 ck3 = 1353 ck3 = 3479 ck3 = 3480 ck3 = 3478 ck3 = 1354 ck3 = 1349 ck3 = 1350 ck3 = 3969 } # Sikar* -> Harshnath, Kuchaman, Makrana, Ladnu, Nagauda, Vikramapura, Reni, Khaluvana link = { imp = 4439 ck3 = 3483 } # Ambara -> Amer link = { imp = 4438 imp = 7387 ck3 = 3481 } # Vairata, Dausa -> Vairata link = { imp = 7306 ck3 = 3466 } # Ranasthambapura -> Bayana link = { imp = 4472 ck3 = 3346 ck3 = 3344 } # Barnala -> Mandrael, Gangapur - link = { imp = 7446 ck3 = 3340 } # Sabalgarh -> Sabalgarh + link = { imp = 7446 ck3 = 3340 } # Sabalgarh* -> Sabalgarh link = { imp = 7307 ck3 = 1357 } # Sripatha -> Sripatha - link = { imp = 7447 ck3 = 3462 } # Rajyapura -> Agra + link = { imp = 7447 ck3 = 3462 } # Rajyapura* -> Agra link = { imp = 4423 imp = 4422 ck3 = 1141 } # Soreyya, Antaranjiya -> Kol link = { imp = 7218 ck3 = 3464 } # Yamaprastha -> Etah link = { imp = 4426 ck3 = 3463 } # Kampili -> Soron - link = { imp = 4436 ck3 = 3468 } # Alavi Pancala -> Tilokpur - link = { imp = 7471 ck3 = 3972 } # Orai -> Jalaun - link = { imp = 7469 ck3 = 3319 } # Gujjar -> Jarai_ka_Math - link = { imp = 7461 ck3 = 3316 } # Tehri -> Luacchagiri + link = { imp = 4436 ck3 = 3468 } # Alavi -> Tilokpur + link = { imp = 7471 ck3 = 3972 } # Orai* -> Jalaun + link = { imp = 7469 ck3 = 3319 } # Gujjar* -> Jarai_ka_Math + link = { imp = 7461 ck3 = 3316 } # Tehri* -> Luacchagiri link = { imp = 4435 ck3 = 3318 } # Erakaccha -> Garh_Kundar - link = { imp = 7470 imp = 4485 ck3 = 1301 } # Mahoba, Khajuraha -> Mahoba + link = { imp = 7470 imp = 4485 ck3 = 1301 } # Mahoba*, Khajuraha -> Mahoba link = { imp = 7219 ck3 = 1169 } # Suktivati -> Kalpi link = { imp = 7409 ck3 = 3961 } # Kalapriya -> Rath - link = { imp = 4427 imp = 7410 ck3 = 1215 } # Bhitargaon, Kora Pancala -> Etawah + link = { imp = 4427 imp = 7410 ck3 = 1215 } # Bhitargaon, Kora* -> Etawah link = { imp = 4425 ck3 = 1356 } # Kanyakubja -> Kanyakubja link = { imp = 7373 ck3 = 1284 } # Sringivera -> Manikpur link = { imp = 7476 ck3 = 885 } # Bhadohi -> Bhadohi - link = { imp = 7483 ck3 = 3953 } # Mehdawal -> Faizabad - link = { imp = 4455 ck3 = 1250 } # Jaisingpura -> Ayodhya + link = { imp = 7483 ck3 = 3953 } # Mehdawal* -> Faizabad + link = { imp = 4455 ck3 = 1250 } # Jaisingpur -> Ayodhya link = { imp = 4437 ck3 = 3954 } # Ayodhya -> Gonda - link = { imp = 7372 imp = 7484 ck3 = 3958 } # Kusavati, Bhawaniganj -> Gorakhpur - link = { imp = 7374 imp = 4433 ck3 = 1166 } # Kusapura, Kitagiri -> Jaunpur - link = { imp = 7478 ck3 = 882 ck3 = 884 } # Rivilganj -> Chapra, Haldi2 - link = { imp = 7477 ck3 = 881 } # Saran -> Pava + link = { imp = 7372 imp = 7484 ck3 = 3958 } # Kusavati, Bhawaniganj* -> Gorakhpur + link = { imp = 7374 imp = 4433 ck3 = 1166 } # Kusapura*, Kitagiri -> Jaunpur + link = { imp = 7478 ck3 = 882 ck3 = 884 } # Rivilganj* -> Chapra, Haldi2 + link = { imp = 7477 ck3 = 881 } # Saran* -> Pava link = { imp = 7370 imp = 7371 ck3 = 883 } # Garzapur, Jamadaganipura -> Gadhipuri link = { imp = 4429 ck3 = 1163 } # Varanasi -> Varanasi link = { imp = 4468 ck3 = 3963 } # Nachna-Kuthara -> Bhatta @@ -4683,21 +4682,22 @@ imperator_invictus = { link = { imp = 4466 ck3 = 3960 } # Khoh -> Chitrakuta link = { imp = 4434 ck3 = 3959 } # Sotthavati -> Ajaigarh link = { imp = 7376 ck3 = 1283 } # Asani -> Asni - link = { imp = 4430 ck3 = 1113 } # Kaushambi -> Kara + link = { imp = 4430 ck3 = 1113 } # Kosambi -> Kara link = { imp = 4428 ck3 = 1328 } # Prayaga -> Prayaga link = { imp = 7375 ck3 = 1414 ck3 = 1275 ck3 = 1139 } # Kahnpuria -> Kora, Jajmau, Musanagar - link = { imp = 7472 imp = 7305 ck3 = 1172 } # Bhind, Gopadri -> Gwalior - link = { imp = 7444 imp = 7408 ck3 = 3465 } # Dhawalpur, Batesar -> Dhavalapuri - link = { imp = 5450 imp = 4406 imp = 4407 ck3 = 3968 } # Maru Desert, Rohtak, Isukara -> Sakarai - link = { imp = 5449 ck3 = 3461 } # Maru Desert -> Govardhan + link = { imp = 7472 imp = 7305 ck3 = 1172 } # Bhind*, Gopadri -> Gwalior + link = { imp = 7444 imp = 7408 ck3 = 3465 } # Dhawalpur*, Batesar -> Dhavalapuri + link = { imp = 5450 imp = 4406 imp = 4407 ck3 = 3968 } # UNINHABITABLE, Rohtak, Isukara -> Sakarai + link = { imp = 5449 ck3 = 3461 } # UNINHABITABLE -> Govardhan link = { imp = 4420 ck3 = 1359 } # Mathura -> Mathura - link = { imp = 4413 ck3 = 3453 ck3 = 3475 ck3 = 3455 } # Sonprastha -> Sthanisvara, Rohtak, Asika + link = { imp = 4413 ck3 = 3453 ck3 = 3475 ck3 = 3455 } # Sonipat -> Sthanisvara, Rohtak, Asika link = { imp = 4405 ck3 = 1365 ck3 = 3447 ck3 = 3460 } # Indraprastha -> Indraprastha, Dhilika, Krishnajanmabhoomi link = { imp = 4421 ck3 = 3448 ck3 = 3450 } # Varana -> Jahanpanah, Indrasthana - link = { imp = 4404 ck3 = 1368 ck3 = 3449 ck3 = 3451 } # Hastinapura -> Hastinapura, Mirath, Hapur + link = { imp = 4404 ck3 = 1368 ck3 = 3449 ck3 = 3451 } # Hastinapur -> Hastinapura, Mirath, Hapur link = { imp = 5569 ck3 = 9052 } # Tsaparang -> Tsaparang link = { imp = 5562 ck3 = 9038 } # Rutok -> Risum - link = { imp = 5567 ck3 = 9005 ck3 = 9030 } # Tiret -> Tangtse, Khurnak + link = { imp = 5561 ck3 = 9005 } # Ladakh -> Tangtse + link = { imp = 5567 ck3 = 9030 } # Tiret -> Khurnak link = { imp = 5564 ck3 = 9003 ck3 = 9017 ck3 = 9046 ck3 = 9045 } # Echen Khar -> Shey, Karzok, Dhankar, Tabo link = { imp = 5560 ck3 = 9002 ck3 = 9004 ck3 = 9014 ck3 = 9016 ck3 = 9015 } # Sindhu -> Leh, Khalatse, Zangla, Darcha, Lingshet link = { imp = 5563 ck3 = 9037 } # Rabzhi Senge Dzong -> Rutog @@ -4711,18 +4711,18 @@ imperator_invictus = { link = { imp = 5571 ck3 = 9067 } # Nghulmo Khar -> Simbiling link = { imp = 5557 ck3 = 9053 ck3 = 9055 ck3 = 8544 } # Khyunglung -> Tholing, Kyunglung, HIMALAYA link = { imp = 7385 ck3 = 9089 } # Devaprayaga -> Srinagar - link = { imp = 7386 ck3 = 9090 ck3 = 9091 ck3 = 9093 ck3 = 9097 } # Badari -> Devalgarh, Kartikeyapura, Almora, Askot - link = { imp = 7411 imp = 7382 ck3 = 1282 } # Unnao, Raebareli -> Lalganj - link = { imp = 7380 ck3 = 1167 } # Lakhanpur -> Lakhnau + link = { imp = 7386 ck3 = 9090 ck3 = 9091 ck3 = 9093 ck3 = 9097 } # Badari (Badrinath) -> Devalgarh, Kartikeyapura, Almora, Askot + link = { imp = 7411 imp = 7382 ck3 = 1282 } # Unnao*, Raebareli*** -> Lalganj + link = { imp = 7380 ck3 = 1167 } # Lakhanpur* -> Lakhnau link = { imp = 4452 ck3 = 1173 } # Sambalhagrama -> Sambhal link = { imp = 4454 ck3 = 3474 ck3 = 3472 } # Matipura -> Bijnor, Bachhraon link = { imp = 4419 ck3 = 1168 ck3 = 9087 } # Haridwar -> Mandawar, Dehradun - link = { imp = 7407 ck3 = 3469 } # Katheria -> Ahichatra + link = { imp = 7407 ck3 = 3469 } # Katheria* -> Ahichatra link = { imp = 7403 ck3 = 3471 } # Govishana -> Amroha - link = { imp = 4453 ck3 = 9094 } # Dhampur -> Bhimtal - link = { imp = 7405 imp = 7377 ck3 = 9092 } # Pilibhit, Savatthi -> Champawat - link = { imp = 5573 ck3 = 9096 ck3 = 9107 } # Terai -> Godawari, Gulariya - link = { imp = 5572 ck3 = 9099 ck3 = 9095 ck3 = 9103 ck3 = 9102 ck3 = 9098 ck3 = 9104 ck3 = 9105 ck3 = 9085 } # Upper Terai -> Bajura, Doti, Dullu, Jumla, Baitadi, Jagatipur, Gautamkot, Dolpo + link = { imp = 4453 ck3 = 9094 } # Dhampur* -> Bhimtal + link = { imp = 7405 imp = 7377 ck3 = 9092 } # Pilibhit*, Pilibhit -> Champawat + link = { imp = 5573 ck3 = 9096 ck3 = 9107 } # Terai******* -> Godawari, Gulariya + link = { imp = 5572 ck3 = 9099 ck3 = 9095 ck3 = 9103 ck3 = 9102 ck3 = 9098 ck3 = 9104 ck3 = 9105 ck3 = 9085 } # Samti -> Bajura, Doti, Dullu, Jumla, Baitadi, Jagatipur, Gautamkot, Dolpo link = { imp = 5612 ck3 = 9074 } # Supima -> Lunggar link = { imp = 5608 ck3 = 9217 } # Dangra -> Ladoi link = { imp = 5607 ck3 = 9222 ck3 = 9214 } # Kyungchen Dzong -> Gyagog, Sinya @@ -4738,37 +4738,37 @@ imperator_invictus = { link = { imp = 5580 ck3 = 9077 } # Mapam -> Penchi link = { imp = 5575 ck3 = 9069 ck3 = 9068 } # Gyangri -> Hor, Teglakar link = { imp = 5574 ck3 = 9100 ck3 = 9101 } # Pumaring -> Simikot, Sinja - link = { imp = 7378 ck3 = 3956 } # Lakhimpur -> Lakhimpur - link = { imp = 7404 ck3 = 3470 } # Anupshahr -> Ujhani + link = { imp = 7378 ck3 = 3956 } # Lakhimpur* -> Lakhimpur + link = { imp = 7404 ck3 = 3470 } # Anupshahr* -> Ujhani link = { imp = 4424 ck3 = 1358 } # Ahicchatra -> Vodamayutja - link = { imp = 7381 ck3 = 1279 } # Badaun -> Hardoi - link = { imp = 7406 ck3 = 3467 } # Sitapur -> Bareily - link = { imp = 4456 ck3 = 1422 } # Nimisa -> Naimisa - link = { imp = 7482 ck3 = 1377 } # Itwa -> Jasnaul + link = { imp = 7381 ck3 = 1279 } # Badaun* -> Hardoi + link = { imp = 7406 ck3 = 3467 } # Sitapur* -> Bareily + link = { imp = 4456 ck3 = 1422 } # Nimisa (forest?) -> Naimisa + link = { imp = 7482 ck3 = 1377 } # Itwa* -> Jasnaul link = { imp = 4451 imp = 4450 ck3 = 1421 } # Sravasti, Kapilavastu -> Sravasti - link = { imp = 7379 ck3 = 3955 } # Brahmarchi -> Bahraich + link = { imp = 7379 ck3 = 3955 } # Brahmarchi* -> Bahraich link = { imp = 5585 ck3 = 9079 ck3 = 9080 ck3 = 8546 ck3 = 9180 ck3 = 9113 } # Pakpa -> Manthang, Muktinath, HIMALAYA, Kungtang, Gorkha - link = { imp = 7489 ck3 = 9115 } # Birganj -> Hetauda - link = { imp = 4448 ck3 = 880 } # Vaishali -> Kesaria + link = { imp = 7489 ck3 = 9115 } # Birganj* -> Hetauda + link = { imp = 4448 ck3 = 880 } # Vaisali -> Kesaria link = { imp = 7488 ck3 = 3957 ck3 = 1420 } # Bethadipa -> Barohiya, Simaramapura link = { imp = 4458 imp = 7384 ck3 = 9123 } # Ramagrama, Rampurwa -> Bharatpur link = { imp = 5584 ck3 = 9109 ck3 = 9110 ck3 = 9111 ck3 = 9112 ck3 = 9108 ck3 = 9106 } # Tshongdu -> Lumbini, Gulmi, Kaski, Tanahun, Dang, Rukum link = { imp = 4457 ck3 = 904 } # Lumbini -> Amorha link = { imp = 4449 imp = 7369 ck3 = 1162 } # Kusinagara, Pipphalivana -> Kusinagara - link = { imp = 7357 imp = 7358 ck3 = 836 } # Kotta, Khulna -> Ishwaripur - link = { imp = 7336 imp = 7397 ck3 = 856 } # Selampoura, Jessore -> Santipura - link = { imp = 7337 imp = 7398 ck3 = 1243 } # Aganagara, Kushtia -> Karnasubarna - link = { imp = 7653 ck3 = 9144 ck3 = 9143 } # Manasa Kamata -> Zhemgang, Trongsa + link = { imp = 7357 imp = 7358 ck3 = 836 } # Kotta, Khulna* -> Ishwaripur + link = { imp = 7336 imp = 7397 ck3 = 856 } # Selampoura, Jessore* -> Santipura + link = { imp = 7337 imp = 7398 ck3 = 1243 } # Aganagara, Kushtia* -> Karnasubarna + link = { imp = 7653 ck3 = 9144 ck3 = 9143 } # Manasa* -> Zhemgang, Trongsa link = { imp = 5636 ck3 = 9152 ck3 = 9229 ck3 = 9151 } # Chongye -> Lhunze, Yumbu_Lakhang, Nariyong link = { imp = 5642 imp = 5653 ck3 = 9153 } # Ritang, Soso -> Yumai link = { imp = 5633 ck3 = 9150 ck3 = 8551 ck3 = 9154 } # Tsoho -> Cona, HIMALAYA, Tawang link = { imp = 5634 ck3 = 9146 ck3 = 9179 } # Mon Shampo -> Lhuentse, Kurtoed link = { imp = 7347 ck3 = 9147 ck3 = 9149 ck3 = 9148 } # Bhallaka -> Mongar, Kurmaed, Pemagatsel - link = { imp = 7350 ck3 = 1418 ck3 = 9156 } # Gosira -> Haruppeswara, Sepla + link = { imp = 7350 ck3 = 1418 ck3 = 9156 } # Gosira* -> Haruppeswara, Sepla link = { imp = 8791 imp = 8792 ck3 = 9168 } # Tibetan Pass, Burma Mountains -> Hawai - link = { imp = 7354 ck3 = 1177 ck3 = 9165 ck3 = 9166 ck3 = 9164 ck3 = 9167 ck3 = 9173 ck3 = 8556 ck3 = 9175 ck3 = 9174 } # Sadiya -> Kundina, Roing, Tezu, Anini, Kibithu, Dzayul, HIMALAYA, Rima, Zayu - link = { imp = 7353 ck3 = 808 } # Bengmara -> Tinsukia - link = { imp = 7355 ck3 = 809 } # Donga -> Ghuguha_Dol + link = { imp = 7354 ck3 = 1177 ck3 = 9165 ck3 = 9166 ck3 = 9164 ck3 = 9167 ck3 = 9173 ck3 = 8556 ck3 = 9175 ck3 = 9174 } # Sadiya* -> Kundina, Roing, Tezu, Anini, Kibithu, Dzayul, HIMALAYA, Rima, Zayu + link = { imp = 7353 ck3 = 808 } # Bengmara* -> Tinsukia + link = { imp = 7355 ck3 = 809 } # Donga* -> Ghuguha_Dol link = { imp = 5654 ck3 = 9163 ck3 = 9162 } # Kongyul -> Yingkiong, Tuting link = { imp = 5965 ck3 = 9420 ck3 = 9419 } # China Impassable -> Yadzi, Kuozhou link = { imp = 5652 ck3 = 9277 } # Pulong -> Zhamog @@ -4790,7 +4790,7 @@ imperator_invictus = { link = { imp = 5619 ck3 = 9248 } # Tanglha -> Damquka link = { imp = 5618 ck3 = 9237 ck3 = 9238 ck3 = 9242 } # Lhasa -> Lhasa, Potala, Lhunzhub link = { imp = 5641 ck3 = 9245 } # Yokang -> Quxu - link = { imp = 5622 ck3 = 9232 ck3 = 9227 } # Qoide -> Gonggar, Tradruk + link = { imp = 5622 ck3 = 9232 ck3 = 9227 } # Tandruk -> Gonggar, Tradruk link = { imp = 5621 ck3 = 9230 ck3 = 9228 ck3 = 9236 ck3 = 9239 } # Samye -> Zetang, Samye, Sangri, Gyama link = { imp = 5648 ck3 = 9233 ck3 = 9231 } # Tandruk -> Gyaca, Qusum link = { imp = 5649 ck3 = 9235 } # Tsangpo -> Nang @@ -4798,23 +4798,23 @@ imperator_invictus = { link = { imp = 5651 ck3 = 9170 } # Shyri -> Mainling link = { imp = 5644 ck3 = 9171 } # Kongpo -> Bokthang link = { imp = 6051 ck3 = 9161 ck3 = 9160 ck3 = 9159 } # Arunachal -> Mechuka, Along, Daporijo - link = { imp = 7351 ck3 = 812 ck3 = 9158 } # Japa -> Narayanpur, Ziro + link = { imp = 7351 ck3 = 812 ck3 = 9158 } # Japa* -> Narayanpur, Ziro link = { imp = 7341 ck3 = 1321 ck3 = 9155 } # Sonitapur -> Kamarupanagara, Morshing link = { imp = 7342 ck3 = 814 } # Hajo -> Manikuta - link = { imp = 7352 ck3 = 811 ck3 = 810 ck3 = 821 } # Turupa -> Carguya, Charaideo, Herombial - link = { imp = 7349 ck3 = 813 ck3 = 1296 } # Gramera -> Numaligarh, Dimapur + link = { imp = 7352 ck3 = 811 ck3 = 810 ck3 = 821 } # Turupa* -> Carguya, Charaideo, Herombial + link = { imp = 7349 ck3 = 813 ck3 = 1296 } # Gramera* -> Numaligarh, Dimapur link = { imp = 7348 ck3 = 815 ck3 = 823 } # Davaka -> Pragyotisapura, Oddiyana2 link = { imp = 7339 ck3 = 820 } # Pragjyotishpura -> Kamakhya link = { imp = 6050 ck3 = 819 } # Meghalaya -> Sri_Surya_Pahar link = { imp = 7332 ck3 = 832 ck3 = 831 ck3 = 825 ck3 = 853 } # Salariga -> Mainamati, Tripura, Habiganj, Unakoti - link = { imp = 7491 ck3 = 1324 } # Sripur -> Suvarnagram + link = { imp = 7491 ck3 = 1324 } # Sripur* -> Suvarnagram link = { imp = 7495 ck3 = 824 } # Egarosindur -> Jangalbari - link = { imp = 7494 ck3 = 852 } # Durgapur -> Nasirabad + link = { imp = 7494 ck3 = 852 } # Durgapur* -> Nasirabad link = { imp = 7340 ck3 = 1325 } # Suhma -> Madhupur - link = { imp = 7490 ck3 = 851 } # Nagarpur -> Dhakeshwari_Jatiya_Mandir + link = { imp = 7490 ck3 = 851 } # Nagarpur* -> Dhakeshwari_Jatiya_Mandir link = { imp = 7496 ck3 = 850 } # Bhaluka -> Bokainagar link = { imp = 7333 ck3 = 1245 ck3 = 822 ck3 = 827 } # Srihatta -> Srihatta, Maibong, Khoupum - link = { imp = 7656 ck3 = 9127 ck3 = 9128 ck3 = 9129 } # Damak -> Panchthar, Darjeeling, Daramdin + link = { imp = 7656 ck3 = 9127 ck3 = 9128 ck3 = 9129 } # Damak* -> Panchthar, Darjeeling, Daramdin link = { imp = 5590 ck3 = 9083 } # Tsanghla -> Kyakyaru link = { imp = 5579 ck3 = 9075 } # Tsina -> Labrang link = { imp = 5583 ck3 = 9081 ck3 = 9078 } # Serip Drukmo Dzong -> Changgo, Yagra @@ -4827,55 +4827,55 @@ imperator_invictus = { link = { imp = 5624 ck3 = 9186 } # Nyentse -> Shelkar link = { imp = 5629 ck3 = 9187 ck3 = 9185 ck3 = 8547 ck3 = 9183 ck3 = 9188 ck3 = 8548 } # Koryi -> Dinggye, Tingri, HIMALAYA, Tsongdu, Kamba, HIMALAYA link = { imp = 4443 ck3 = 879 } # Nadikagama -> Hajipur - link = { imp = 7479 ck3 = 877 } # Samastipur -> Sugauna - link = { imp = 7367 imp = 4462 ck3 = 9656 } # Bhagdatpuram, Modgagiri -> Burhi_Gandak - link = { imp = 4461 ck3 = 1419 } # Dwarbanga -> Mithila + link = { imp = 7479 ck3 = 877 } # Samastipur* -> Sugauna + link = { imp = 7367 imp = 4462 ck3 = 9656 } # Mudgagiri, Modgagiri -> Burhi_Gandak + link = { imp = 4461 ck3 = 1419 } # Dwarbanga* -> Mithila link = { imp = 4460 ck3 = 9122 } # Sugauna -> Rajbiraj link = { imp = 7360 ck3 = 878 } # Sita -> Darbhanga link = { imp = 7486 ck3 = 9118 } # Mithila -> Janakpur - link = { imp = 7487 ck3 = 9132 } # Bijalpura -> Dhulikhel - link = { imp = 4459 ck3 = 9131 ck3 = 9130 } # Selanpura -> Lalitpur, Kirtipur + link = { imp = 7487 ck3 = 9132 } # Bijalpura* -> Dhulikhel + link = { imp = 4459 ck3 = 9131 ck3 = 9130 } # Pattana -> Lalitpur, Kirtipur link = { imp = 5586 ck3 = 9181 ck3 = 9184 } # Mangyul Takmo Dzong -> Gyirong, Mainpu link = { imp = 5587 ck3 = 9114 ck3 = 9117 ck3 = 9116 } # Chomolangma -> Dolakha, Bhaktapur, Kathmandu link = { imp = 5628 ck3 = 9136 ck3 = 9120 ck3 = 9121 ck3 = 9119 } # Paro Kerchu -> Yangwarok, Khotang, Bhojpur, Okhaldhunga link = { imp = 4464 ck3 = 9124 ck3 = 9126 } # Devaprastha -> Gograha, Dhankuta link = { imp = 7481 imp = 7480 ck3 = 9654 } # Supaul, Saharsa -> Bangaon - link = { imp = 7383 ck3 = 9125 } # Kishan -> Ilam - link = { imp = 7322 ck3 = 9655 } # Purnia -> Jalalghar - link = { imp = 7650 ck3 = 1153 } # Itahar -> Kotivarsa - link = { imp = 7499 imp = 7335 ck3 = 840 } # Porsha, Souannagoura -> Ramavati + link = { imp = 7383 ck3 = 9125 } # Kishan* -> Ilam + link = { imp = 7322 ck3 = 9655 } # Purnia*** -> Jalalghar + link = { imp = 7650 ck3 = 1153 } # Itahar* -> Kotivarsa + link = { imp = 7499 imp = 7335 ck3 = 840 } # Porsha*, Souannagoura -> Ramavati link = { imp = 7346 ck3 = 9142 ck3 = 9138 } # Bhargava -> Sarpang, Thimpu - link = { imp = 7652 ck3 = 9139 ck3 = 817 ck3 = 9134 ck3 = 9137 ck3 = 9133 } # Gosanimari -> Daga, Nalrajar_Garh, Kalimpong, Paro, Chungthang - link = { imp = 7323 ck3 = 1244 } # Kirrhadia -> Kamatapur - link = { imp = 7655 imp = 7654 ck3 = 818 } # Siliguri, Thakurgaon -> Bhitagarh + link = { imp = 7652 ck3 = 9139 ck3 = 817 ck3 = 9134 ck3 = 9137 ck3 = 9133 } # Gosanimari* -> Daga, Nalrajar_Garh, Kalimpong, Paro, Chungthang + link = { imp = 7323 ck3 = 1244 } # Kirrhadia* -> Kamatapur + link = { imp = 7655 imp = 7654 ck3 = 818 } # Siliguri*, Thakurgaon* -> Bhitagarh link = { imp = 7324 ck3 = 847 ck3 = 841 } # Balipura -> Ghoraghat, Devkot - link = { imp = 7651 ck3 = 1381 } # Balurghat -> Pundravardhana + link = { imp = 7651 ck3 = 1381 } # Balurghat* -> Pundravardhana link = { imp = 7326 ck3 = 838 ck3 = 837 } # Kotivarsa -> Hazrat_Pandua, Gaur - link = { imp = 7498 ck3 = 1151 } # Malda -> Laksmanavati - link = { imp = 7497 ck3 = 839 } # Puthia -> Rampur_Boalia + link = { imp = 7498 ck3 = 1151 } # Malda* -> Laksmanavati + link = { imp = 7497 ck3 = 839 } # Puthia* -> Rampur_Boalia link = { imp = 7325 ck3 = 846 } # Pundra -> Mahasthangarh link = { imp = 7493 ck3 = 861 ck3 = 848 } # Varendra -> Pabna, Somapur link = { imp = 7334 ck3 = 1319 ck3 = 833 } # Bikrampur -> Bikrampur, Ekdala link = { imp = 7356 ck3 = 1131 ck3 = 834 ck3 = 1318 ck3 = 9657 } # Karmanta -> Karmanta, Chandpur, Devaparvata, Udaipur - link = { imp = 7344 ck3 = 1246 } # Goalpara -> Goalpara - link = { imp = 7394 imp = 7359 ck3 = 1240 } # Fathabad, Mukund -> Fathabad - link = { imp = 7395 imp = 7330 ck3 = 1236 } # Barisal, Bargysi -> Candradvipa + link = { imp = 7344 ck3 = 1246 } # Goalpara**** -> Goalpara + link = { imp = 7394 imp = 7359 ck3 = 1240 } # Fathabad*, Mukund* -> Fathabad + link = { imp = 7395 imp = 7330 ck3 = 1236 } # Barisal*, Bargysi -> Candradvipa link = { imp = 7396 ck3 = 835 } # Bagerhat -> Bagerhat - link = { imp = 7094 ck3 = 7928 } # Fanindrapura -> Kundina - link = { imp = 7318 ck3 = 920 } # Pandhurna -> Gawilgarh - link = { imp = 7317 imp = 7456 ck3 = 1286 } # Deogarh, Kherla -> Kherla - link = { imp = 7457 imp = 7313 imp = 7422 ck3 = 919 } # Handia, Kalumukha, Betul -> Handia - link = { imp = 7458 ck3 = 1164 ck3 = 918 } # Chauragarh -> Chauragarh, Hoshangabad + link = { imp = 7094 ck3 = 7928 } # Fanindrapura/Kundina -> Kundina + link = { imp = 7318 ck3 = 920 } # Pandhurna* -> Gawilgarh + link = { imp = 7317 imp = 7456 ck3 = 1286 } # Deogarh, Kherla* -> Kherla + link = { imp = 7457 imp = 7313 imp = 7422 ck3 = 919 } # Handia, Kalumukha, Betul* -> Handia + link = { imp = 7458 ck3 = 1164 ck3 = 918 } # Chauragarh* -> Chauragarh, Hoshangabad link = { imp = 4470 ck3 = 3322 ck3 = 1170 } # Vidisha -> Sironj, Vidisa - link = { imp = 7303 ck3 = 3323 } # Airakina -> Sanchi + link = { imp = 7303 ck3 = 3323 } # Airakina/Eran -> Sanchi link = { imp = 4483 ck3 = 3321 } # Kakanada -> Raisin link = { imp = 4477 ck3 = 1271 ck3 = 3966 } # Tripura -> Tripuri, Nohta - link = { imp = 7454 ck3 = 914 ck3 = 915 ck3 = 916 } # Mandla -> Mandla, Banjar, Bohani + link = { imp = 7454 ck3 = 914 ck3 = 915 ck3 = 916 } # Mandla* -> Mandla, Banjar, Bohani link = { imp = 6056 ck3 = 1270 ck3 = 7932 } # Gondwana -> Kiranapura, Lanjika link = { imp = 7151 imp = 7129 ck3 = 7935 } # Vairagara, Gondia -> Gondia - link = { imp = 7316 ck3 = 1184 } # Khargone -> Khargone - link = { imp = 7126 ck3 = 1263 ck3 = 1187 } # Burhanpur -> Burhanpur, Changdev - link = { imp = 7423 ck3 = 1287 } # Melghat -> Asirgarh + link = { imp = 7316 ck3 = 1184 } # Khargone* -> Khargone + link = { imp = 7126 ck3 = 1263 ck3 = 1187 } # Burhanpur****** -> Burhanpur, Changdev + link = { imp = 7423 ck3 = 1287 } # Melghat* -> Asirgarh link = { imp = 7311 imp = 7424 ck3 = 1185 } # Khandav, Omkareshwar -> Khandwa link = { imp = 7093 ck3 = 7898 } # Tiyagoura -> Ankai link = { imp = 6866 ck3 = 3384 } # Nanaghat -> Sanjan @@ -4884,22 +4884,22 @@ imperator_invictus = { link = { imp = 6876 ck3 = 7792 } # Palaipatmai -> Chiplun link = { imp = 6877 ck3 = 7794 ck3 = 7793 } # Milzigeris -> Panaji, Kollapura link = { imp = 7092 ck3 = 1265 } # Katriyal -> Sagar - link = { imp = 7106 ck3 = 7881 ck3 = 7890 } # Buravhala -> Pundarika, Sholapur + link = { imp = 7106 ck3 = 7881 ck3 = 7890 } # Buravhala* -> Pundarika, Sholapur link = { imp = 7111 ck3 = 7887 } # Sonnolagi -> Kembavi - link = { imp = 7113 ck3 = 7885 } # Mehdnapura -> Vijayapura_bis - link = { imp = 7112 ck3 = 1206 } # Pandaprata -> Taradavadi + link = { imp = 7113 ck3 = 7885 } # Mehdnapura* -> Vijayapura_bis + link = { imp = 7112 ck3 = 1206 } # Pandaprata* -> Taradavadi link = { imp = 7107 ck3 = 7884 } # Jayatnagar -> Hastikundi link = { imp = 7060 ck3 = 7880 } # Kondane -> Bhimashankara link = { imp = 6870 ck3 = 7789 } # Kalliena -> Ambaranatha link = { imp = 7103 ck3 = 7888 } # Godavara -> Jirnanagara - link = { imp = 7163 ck3 = 7920 } # Aggathana -> Nirmal + link = { imp = 7163 ck3 = 7920 } # Aggathana* -> Nirmal link = { imp = 7158 imp = 7155 ck3 = 7906 } # Indur, Kaulas -> Indur link = { imp = 7098 ck3 = 7901 } # Askapala -> Gulbarga link = { imp = 7127 ck3 = 1146 ck3 = 7891 } # Trinagua -> Naldurg, Purnagiri link = { imp = 7078 ck3 = 7892 } # Tagara -> Ausa - link = { imp = 7143 ck3 = 1143 } # Kalyani Asika -> Kalyani + link = { imp = 7143 ck3 = 1143 } # Kalyani -> Kalyani link = { imp = 7142 imp = 7053 ck3 = 1210 } # Manyakheta, Sannathi -> Manyakheta - link = { imp = 7153 imp = 7156 ck3 = 1158 } # Bidar, Sripratava -> Bidar + link = { imp = 7153 imp = 7156 ck3 = 1158 } # Bidar, Sripratava* -> Bidar link = { imp = 7144 ck3 = 1212 } # Lattalura -> Lattalura link = { imp = 7061 ck3 = 1213 } # Valuraka -> Kondana link = { imp = 7104 ck3 = 7882 } # Siaprava -> Karhada @@ -4913,35 +4913,35 @@ imperator_invictus = { link = { imp = 6860 ck3 = 3381 } # Kammonai -> Tadkeshwar link = { imp = 6863 ck3 = 1264 } # Nagara -> Nandurbar link = { imp = 6862 imp = 6861 ck3 = 3383 } # Nousaripa, Surat -> Navasarika - link = { imp = 6859 ck3 = 1127 } # Barygaza -> Akruresvara + link = { imp = 6859 ck3 = 1127 } # Bharukaccha -> Akruresvara link = { imp = 7159 imp = 7062 ck3 = 1145 } # Devagiri, Nevasa -> Devagiri link = { imp = 7160 ck3 = 7896 } # Qandar -> Qandhar link = { imp = 4353 imp = 4360 imp = 6827 ck3 = 1333 } # Brahmanaka, Sarophages, Khadro -> Siwistan link = { imp = 4363 ck3 = 3392 } # Sembrakenoi -> Siraj_ji_Takri - link = { imp = 4354 ck3 = 3394 } # Min -> Mir_Rukan + link = { imp = 4354 ck3 = 3394 } # Minnagara -> Mir_Rukan link = { imp = 4373 ck3 = 3408 } # Siberai -> Chachran link = { imp = 6767 ck3 = 4361 } # Urang -> Dar-i-Tubbat link = { imp = 6763 imp = 6764 ck3 = 4365 } # Bulaq, Miena -> Murghab link = { imp = 6770 ck3 = 7965 ck3 = 7964 } # Toquzbolaq -> Badakhshan_TARIM, Muji link = { imp = 6769 ck3 = 4364 } # Pamir -> Alichur - link = { imp = 6765 ck3 = 4363 } # Kafir Kala -> Shughnan + link = { imp = 6765 ck3 = 4363 } # Kafirqala -> Shughnan link = { imp = 6768 ck3 = 4356 } # Kokcha -> Jerm - link = { imp = 6762 ck3 = 4360 ck3 = 4359 } # Kaahka Pamir -> Ishkamish, Zaybak + link = { imp = 6762 ck3 = 4360 ck3 = 4359 } # Kaahka -> Ishkamish, Zaybak link = { imp = 5601 ck3 = 1438 } # Kusta -> Yarkand link = { imp = 6760 ck3 = 7957 } # Tashqurgan -> Tashkurgan link = { imp = 5595 ck3 = 7956 ck3 = 7955 ck3 = 7954 } # Hunza -> Baltit, Naltar, Yasin link = { imp = 5594 imp = 5596 ck3 = 1351 } # Gilgit, Druzhiya -> Gilgit link = { imp = 5597 ck3 = 3071 ck3 = 7952 } # Kargah -> KUNLUNSHAN, Shandur - link = { imp = 4322 imp = 4327 ck3 = 3439 } # Alexandreia Nikaia, Kaspira -> Mankiala + link = { imp = 4322 imp = 4327 ck3 = 3439 } # Manikyal, Ganjipur -> Mankiala link = { imp = 4329 ck3 = 3442 } # Nara -> Lund_Nandana link = { imp = 7319 imp = 7314 ck3 = 3437 } # Ataka, Taxila -> Attak link = { imp = 7361 imp = 3810 ck3 = 7947 } # Salutara, Embadina -> Waihind - link = { imp = 5600 imp = 6751 ck3 = 7951 } # Parsni, Varana Gandhara -> Kalam_TARIM + link = { imp = 5600 imp = 6751 ck3 = 7951 } # Parsni, Aornos/Varana -> Kalam_TARIM link = { imp = 5599 ck3 = 7950 } # Teclas -> Chilas link = { imp = 5592 ck3 = 9020 ck3 = 9021 } # Skardo -> Skardu, Roundu link = { imp = 5593 ck3 = 9024 } # Darada -> Astore - link = { imp = 4334 imp = 4332 ck3 = 9025 } # Harvan, Puranadisthana -> Minimarg - link = { imp = 5603 imp = 5602 ck3 = 9012 } # Gondogoro Pass, Gondogoro Pass -> Dipsang + link = { imp = 4334 imp = 4332 ck3 = 9025 } # Harvan, Puranadisthana/Srinagar -> Minimarg + link = { imp = 5603 imp = 5602 ck3 = 9012 } # PASS, PASS -> Dipsang link = { imp = 5591 ck3 = 9011 ck3 = 9029 } # Leh -> Turtuk, Haldi link = { imp = 5565 ck3 = 9010 ck3 = 9009 } # Aparing -> Panamik, Diskit link = { imp = 5566 ck3 = 9028 ck3 = 9026 ck3 = 9027 } # Lashang -> Khaplu, Shigar, Askole @@ -4949,124 +4949,128 @@ imperator_invictus = { link = { imp = 5598 ck3 = 9023 } # Mulbek -> Gultari link = { imp = 5558 ck3 = 9018 ck3 = 9019 ck3 = 9013 ck3 = 3179 } # Achuk -> Purig, Dras, Padum, KUNLUNSHAN link = { imp = 4346 ck3 = 3429 } # Madra -> Bhuttar - link = { imp = 4343 imp = 4338 ck3 = 3445 } # Budia, Anantanaga -> Amaresvara + link = { imp = 4343 imp = 4338 ck3 = 3445 } # Banihal Pass, Anantanaga -> Amaresvara link = { imp = 4345 imp = 4341 ck3 = 1190 } # Jhelum, Akhnur -> Gurjaratra - link = { imp = 4315 ck3 = 3436 } # Jobnathnagar -> Kunjah + link = { imp = 4315 ck3 = 3436 } # Nikaia -> Kunjah link = { imp = 4340 ck3 = 1179 } # Sakala -> Sakala - link = { imp = 4342 imp = 4347 ck3 = 3430 } # Parvata, Magaris -> Jammu + link = { imp = 4342 imp = 4347 ck3 = 3430 } # Parvata, Uttara Madra -> Jammu link = { imp = 4339 ck3 = 7949 } # Nandi -> Kaghan link = { imp = 4333 ck3 = 1161 } # Huskapura -> Srinagara - link = { imp = 4337 imp = 4336 ck3 = 7948 } # Embolima, Varahasaila Pass -> Allai + link = { imp = 4337 imp = 4336 ck3 = 7948 } # Urasa, Varahasaila Pass -> Allai link = { imp = 4335 ck3 = 3446 } # Labaka -> Parihasapura link = { imp = 4316 imp = 4326 ck3 = 3435 } # Boukephalia, Manikyala -> Jhelum - link = { imp = 4399 ck3 = 3425 } # Jayapura -> Phalia - link = { imp = 4398 imp = 4331 ck3 = 1192 } # Bhatiai, Khushab -> Bhera - link = { imp = 6679 imp = 6630 ck3 = 4340 } # Phratroua, Zaviaspa -> Ruy - link = { imp = 6690 imp = 6686 ck3 = 4368 } # Termez, Tarmita -> Termez - link = { imp = 7232 imp = 7227 imp = 7233 ck3 = 4384 } # Tarmantis, Zamm, Bazaria -> Kalif - link = { imp = 6689 ck3 = 4373 ck3 = 4372 } # Pandokheion -> Charmanjan, Basand - link = { imp = 6654 ck3 = 4337 } # Indikomordana -> Navida - link = { imp = 6802 ck3 = 4440 } # Varakhsha -> TAHIRIYA + link = { imp = 4399 ck3 = 3425 } # Jaipura -> Phalia + link = { imp = 4398 imp = 4331 ck3 = 1192 } # Bhatiah*, Khushab -> Bhera + link = { imp = 6679 imp = 6630 ck3 = 4340 } # Rustam, Zaviaspa -> Ruy + link = { imp = 6690 imp = 6686 ck3 = 4368 } # Sangin, Termaio -> Termez + link = { imp = 7232 imp = 7227 imp = 7233 ck3 = 4384 } # Tillya, Kerki, Challa -> Kalif + link = { imp = 6689 ck3 = 4373 ck3 = 4372 } # Khatta -> Charmanjan, Basand + link = { imp = 6654 ck3 = 4337 } # Tarmita -> Navida + link = { imp = 6802 ck3 = 4440 } # Tahiriya -> TAHIRIYA link = { imp = 6801 ck3 = 4442 ck3 = 4441 ck3 = 4443 } # Jirbend -> JIGIRBEND, DARGHAN, SADVAR - link = { imp = 6708 ck3 = 4242 ck3 = 4241 } # Amul -> Firabr, Shagal - link = { imp = 7242 imp = 7241 ck3 = 4245 } # Lebap, Artamis -> Sayat - link = { imp = 7238 ck3 = 4386 } # Nikhshapaya -> Subakh - link = { imp = 7235 imp = 7234 imp = 7243 ck3 = 4248 } # Deshikli, Bazistris, Bezda -> Akhsisak + link = { imp = 6708 ck3 = 4242 ck3 = 4241 } # Chadracarta -> Firabr, Shagal + link = { imp = 7242 imp = 7241 ck3 = 4245 } # Depe, Shor -> Sayat + link = { imp = 7238 ck3 = 4386 } # Maidan -> Subakh + link = { imp = 7235 imp = 7234 imp = 7243 ck3 = 4248 } # Deshikli, Dabil, Bezda -> Akhsisak link = { imp = 7239 imp = 7230 ck3 = 4244 } # Farab, Kerkichi -> Nevida - link = { imp = 7240 imp = 6709 ck3 = 4240 } # Zariaspa, Rapete -> Amol-e-shatt + link = { imp = 7240 imp = 6709 ck3 = 4240 } # Khazarekdepe, Rapete -> Amol-e-shatt link = { imp = 7231 ck3 = 4246 } # Burguchi -> Niyaz - link = { imp = 7228 imp = 7237 imp = 7236 ck3 = 4247 } # Ebousmou Anassa, Aqcha, Dilyar -> Zamm - link = { imp = 7229 ck3 = 4334 } # Kharispa -> Rib?-i-l-K? + link = { imp = 7228 imp = 7237 imp = 7236 ck3 = 4247 } # Dilbarjin, Aq, Dilyar -> Zamm + link = { imp = 7229 ck3 = 4334 } # Shordepe -> Rib?-i-l-K? link = { imp = 6655 ck3 = 4336 } # Kumsar -> Shapurqan - link = { imp = 6678 ck3 = 4338 ck3 = 4335 } # Bactra -> Siyahjird, Balkh - link = { imp = 6637 ck3 = 4339 } # Alexandreia Bactriane -> Saan - link = { imp = 6648 ck3 = 4348 } # Drapsake -> Baghlan - link = { imp = 6680 imp = 6677 ck3 = 4341 } # Tochara, Denai -> Samanjan + link = { imp = 6678 ck3 = 4338 ck3 = 4335 } # Shakh -> Siyahjird, Balkh + link = { imp = 6637 ck3 = 4339 } # Bactra Zariaspa -> Saan + link = { imp = 6648 ck3 = 4348 } # Tocharia -> Baghlan + link = { imp = 6680 imp = 6677 ck3 = 4341 } # Qush, Denai -> Samanjan link = { } # NOTHING -> DROPPED link = { autogenerated = yes imp = 8795 imp = 8783 ck3 = 9567 } # Burma Mountains, Aung Myay -> Naga Hills - link = { autogenerated = yes imp = 5110 imp = 5109 ck3 = 894 } # Carpathia, IMPASSIBLE TERRAIN 109 -> SOUTH CARPATHIANS + link = { autogenerated = yes imp = 5110 imp = 5109 ck3 = 894 } # IMPASSIBLE TERRAIN 110, IMPASSIBLE TERRAIN 109 -> SOUTH CARPATHIANS link = { autogenerated = yes imp = 9302 imp = 9305 ck3 = 8710 } # Vasnam, Vamva -> Western Kazakh Steppe - link = { autogenerated = yes imp = 7851 ck3 = 8687 ck3 = 8688 ck3 = 8689 } # SEAZONE IMPASSABLE WASTELAND -> Andaman Sea, Bay of Bengal, Bay of Bengal - link = { autogenerated = yes imp = 7847 ck3 = 8677 } # SEAZONE IMPASSABLE WASTELAND -> Somali Sea - link = { autogenerated = yes imp = 7852 ck3 = 8606 ck3 = 8607 ck3 = 8608 ck3 = 8686 ck3 = 8691 } # SEAZONE IMPASSABLE WASTELAND -> Irrawaddy Delta, Irrawaddy Delta, Irrawaddy, Gulf of Martaban, ANDAMAN SEA - link = { autogenerated = yes imp = 5323 imp = 5322 ck3 = 8557 } # Caucasus Mons Volcano, IP 323 -> CAUCASUS MOUNTAINS + link = { autogenerated = yes imp = 7851 ck3 = 8687 ck3 = 8688 ck3 = 8689 } # SEAZONE IMPASSABLE WASTELAND -> sea_andaman, sea_bay_of_bengal, sea_bay_of_bengal + link = { autogenerated = yes imp = 7847 ck3 = 8677 } # SEAZONE IMPASSABLE WASTELAND -> sea_somali_sea + link = { autogenerated = yes imp = 7852 ck3 = 8606 ck3 = 8607 ck3 = 8608 ck3 = 8686 ck3 = 8691 } # SEAZONE IMPASSABLE WASTELAND -> river_irrawaddy_delta, river_irrawaddy_delta, river_irrawaddy, sea_gulf_martaban, ANDAMAN SEA + link = { autogenerated = yes imp = 5323 imp = 5322 ck3 = 8557 } # IP 324, IP 323 -> CAUCASUS MOUNTAINS link = { autogenerated = yes imp = 5960 ck3 = 8552 ck3 = 9157 } # Arunachal Impassable -> HIMALAYA, Itanagar link = { autogenerated = yes imp = 5956 imp = 5955 ck3 = 8545 } # Nepalese Impassable, Nepalese Impassable -> HIMALAYA link = { autogenerated = yes imp = 5335 ck3 = 8449 } # IP 336 -> SEMIEN_MOUNTAINS link = { autogenerated = yes imp = 5355 imp = 8733 ck3 = 8443 } # Koha, Logiya -> DANAKIL_DESERT - link = { autogenerated = yes imp = 5337 ck3 = 8442 } # Puntic Highlands -> DANAKIL_HILLS + link = { autogenerated = yes imp = 5337 ck3 = 8442 } # IP 338 -> DANAKIL_HILLS link = { autogenerated = yes imp = 9135 ck3 = 8402 } # Somali Impassable -> AW_BARRE - link = { autogenerated = yes imp = 5942 ck3 = 8325 ck3 = 8327 ck3 = 8328 ck3 = 8329 ck3 = 8346 ck3 = 8347 ck3 = 8348 ck3 = 8349 ck3 = 8350 ck3 = 8351 ck3 = 8352 ck3 = 8353 ck3 = 8354 ck3 = 8355 ck3 = 8356 ck3 = 8357 ck3 = 8358 ck3 = 8359 ck3 = 8360 ck3 = 8364 ck3 = 8368 ck3 = 8378 ck3 = 8379 ck3 = 8380 ck3 = 8381 ck3 = 8382 ck3 = 8383 ck3 = 8384 ck3 = 8385 ck3 = 8392 ck3 = 8393 ck3 = 8394 ck3 = 8395 ck3 = 8396 ck3 = 8397 ck3 = 8406 ck3 = 8407 ck3 = 8408 ck3 = 8409 ck3 = 8410 ck3 = 8411 ck3 = 8412 ck3 = 8413 ck3 = 8414 ck3 = 8415 ck3 = 8416 ck3 = 8417 ck3 = 8418 ck3 = 8419 ck3 = 8420 ck3 = 8421 ck3 = 8422 ck3 = 8423 ck3 = 8440 ck3 = 8441 ck3 = 8444 ck3 = 8445 ck3 = 8446 ck3 = 8448 ck3 = 8450 ck3 = 8451 ck3 = 8452 ck3 = 8453 ck3 = 8454 ck3 = 8455 ck3 = 8456 ck3 = 8457 ck3 = 8458 ck3 = 8459 ck3 = 8460 ck3 = 8462 ck3 = 8463 ck3 = 8464 ck3 = 8465 ck3 = 8467 ck3 = 8468 ck3 = 8469 ck3 = 8470 ck3 = 8471 ck3 = 8472 ck3 = 8473 ck3 = 8474 ck3 = 8475 ck3 = 8476 ck3 = 8477 ck3 = 8478 ck3 = 8479 ck3 = 8480 ck3 = 8481 ck3 = 8482 ck3 = 8483 ck3 = 8484 ck3 = 8485 ck3 = 8486 ck3 = 8487 ck3 = 8488 ck3 = 8489 ck3 = 8490 ck3 = 8491 ck3 = 8492 ck3 = 8493 ck3 = 8494 ck3 = 8495 ck3 = 8496 ck3 = 8497 ck3 = 8498 ck3 = 8499 ck3 = 8500 ck3 = 8501 ck3 = 8517 ck3 = 8518 ck3 = 8711 } # Somalian Impassable -> EAST_AMHARA, GIDIM, WAGDA, WALAQA, MIDDLE_AWASH, IFAT, WARJIH, SILALISH, WARAB, SARMAT, KATATA, DEBRE_LIBANOS, KARAYU, SHARKA, HADYA, MUNESA, WALAMO, ABAYA, GAMO, WAJ, KAMBATA, FATAGAR, BURJI, BORAMA, JAM-JAM, BALI-WEST, DUMALI, BOKE, GEBERGE, SITTI, ADAL, WEST_ADAL, BATE, GENDEBELO, GABAL, DAKKAR, HARAR, HARGAYA, GABAL_SOUTH, JEBEL_AHMAR, HARGAYA-WEST, ARUSI-NORTH, ARUSI-SOUTH, DAWARO, DAWARO-WEST, HARGAYA-SOUTH, SHABELLE, BALI-EAST, BALI, FAFAN, GIDAYA, GIDAYA-NORTH, GIDAYA-EAST, CHALBI_DESERT, OGADEN_DESERT, AHMAR_MOUNTAINS, MENDEBO, SHOA_HIGHLANDS, WOLLO_HIGHLANDS, YABELO, FUDALHI, WEST_SIDAMO, EAST_SIDAMO, LOWER_DAWA, LUUQ, SIDAMO-SOUTH, JUBBA-AJURAAN, BAYDHABO, BARDHERE, BARAAWE, AFGOOYE, MOGADISHU, WARSHEIKH, EL_DERE, BELETWEYNE, QALAAFE, HIRAAB, MAREEG, EL_BUUR, DHUSAMAREB, JILIB, HUDUR, JOWHAAR, BUUR_HEYBE, BUG, MAREHAN-NORTH, MAREHAN-SOUTH, EL_WAAK, LAG_DERA, LOWER_JUBBA, DAWA-SOUTH, UPPER_KUTULO, KUTULO, LOWER_KUTULO, LAK_BOR, LAGH_BOGAL, MARSABIT, GESTRO, JUBBA-NORTH, GANALE, AUDO, MIDDLE-SHEBELLE, REEWIN, WAJID, SHABELLE-HIRAN, MUSTAHIL, GODE, FAFAN-SOUTH, HANAN, DARA-SHARKA, LOWER_OMO, East African Southern Impassable + link = { autogenerated = yes imp = 5942 ck3 = 8325 ck3 = 8327 ck3 = 8328 ck3 = 8329 ck3 = 8346 ck3 = 8347 ck3 = 8348 ck3 = 8349 ck3 = 8350 ck3 = 8351 ck3 = 8352 ck3 = 8353 ck3 = 8354 ck3 = 8364 ck3 = 8378 ck3 = 8384 ck3 = 8385 ck3 = 8392 ck3 = 8393 ck3 = 8394 ck3 = 8395 ck3 = 8396 ck3 = 8397 ck3 = 8406 ck3 = 8407 ck3 = 8408 ck3 = 8409 ck3 = 8410 ck3 = 8411 ck3 = 8412 ck3 = 8413 ck3 = 8414 ck3 = 8415 ck3 = 8416 ck3 = 8417 ck3 = 8420 ck3 = 8421 ck3 = 8422 ck3 = 8423 ck3 = 8441 ck3 = 8444 ck3 = 8446 ck3 = 8448 ck3 = 8465 ck3 = 8468 ck3 = 8470 ck3 = 8471 ck3 = 8472 ck3 = 8474 ck3 = 8493 ck3 = 8494 ck3 = 8498 ck3 = 8499 ck3 = 8500 ck3 = 8501 } # Somalian Impassable -> EAST_AMHARA, GIDIM, WAGDA, WALAQA, MIDDLE_AWASH, IFAT, WARJIH, SILALISH, WARAB, SARMAT, KATATA, DEBRE_LIBANOS, KARAYU, WAJ, FATAGAR, BOKE, GEBERGE, SITTI, ADAL, WEST_ADAL, BATE, GENDEBELO, GABAL, DAKKAR, HARAR, HARGAYA, GABAL_SOUTH, JEBEL_AHMAR, HARGAYA-WEST, ARUSI-NORTH, ARUSI-SOUTH, DAWARO, DAWARO-WEST, HARGAYA-SOUTH, SHABELLE, FAFAN, GIDAYA, GIDAYA-NORTH, GIDAYA-EAST, OGADEN_DESERT, AHMAR_MOUNTAINS, SHOA_HIGHLANDS, WOLLO_HIGHLANDS, EL_DERE, QALAAFE, MAREEG, EL_BUUR, DHUSAMAREB, HUDUR, AUDO, MIDDLE-SHEBELLE, MUSTAHIL, GODE, FAFAN-SOUTH, HANAN link = { autogenerated = yes imp = 9143 imp = 9144 ck3 = 807 } # Aures Mountains, Aures Mountains -> Tell Atlas Mountains 8 link = { autogenerated = yes imp = 5153 imp = 5154 ck3 = 803 } # IMPASSIBLE TERRAIN 153, IMPASSIBLE TERRAIN 154 -> Tell Atlas Mountains 4 link = { autogenerated = yes imp = 5152 ck3 = 802 } # IMPASSIBLE TERRAIN 152 -> Tell Atlas Mountains 3 link = { autogenerated = yes imp = 3138 ck3 = 801 } # BessemiumSeptentrionalis -> Tell Atlas Mountains 2 - link = { autogenerated = yes imp = 5985 ck3 = 795 ck3 = 798 } # Inner Mauritania -> Atlas Mountains 6, Atlas Mountains 9 + link = { autogenerated = yes imp = 5985 ck3 = 795 ck3 = 798 } # West Mauretania -> Atlas Mountains 6, Atlas Mountains 9 link = { autogenerated = yes imp = 5317 imp = 5318 ck3 = 7943 } # IP 318, IP 319 -> Eastern Ghats (W) - link = { autogenerated = yes imp = 6865 imp = 5315 imp = 6869 ck3 = 7942 } # Paunar, Baglana, Govardhana -> Western Ghats (NN) - link = { autogenerated = yes imp = 6875 imp = 6872 imp = 6878 ck3 = 7940 } # Etuca, Lonavli, Yakaris -> Western Ghats (NS) - link = { autogenerated = yes imp = 6300 imp = 5984 ck3 = 794 } # Talzemt, High Atlas -> Atlas Mountains 5 - link = { autogenerated = yes imp = 5308 ck3 = 7937 } # North Nilgiri -> Palakkad Pass - link = { autogenerated = yes imp = 5304 imp = 5305 imp = 5306 ck3 = 7936 } # IP 305, South Nilgiri, IP 307 -> Southwestern Ghats + link = { autogenerated = yes imp = 6865 imp = 5315 imp = 6869 ck3 = 7942 } # Paunar, IP 316, Govardhana -> Western Ghats (NN) + link = { autogenerated = yes imp = 6875 imp = 6872 imp = 6878 ck3 = 7940 } # Etuca, Valuraka, Yakaris -> Western Ghats (NS) + link = { autogenerated = yes imp = 6300 imp = 5984 ck3 = 794 } # Talzemt, East Mauretania -> Atlas Mountains 5 + link = { autogenerated = yes imp = 5308 ck3 = 7937 } # IP 309 -> Palakkad Pass + link = { autogenerated = yes imp = 5304 imp = 5305 imp = 5306 ck3 = 7936 } # IP 305, IP 306, IP 307 -> Southwestern Ghats link = { autogenerated = yes imp = 6482 imp = 5950 imp = 5986 ck3 = 793 } # More Middle Atlas, Gaetuli Impassable, Middle Atlas -> Atlas Mountains 4 link = { autogenerated = yes imp = 6483 imp = 6488 ck3 = 792 } # More Middle Atlas, Middle Atlas -> Atlas Mountains 3 link = { autogenerated = yes imp = 6493 ck3 = 790 ck3 = 791 } # Riff -> Atlas Mountains 1, Atlas Mountains 2 link = { autogenerated = yes imp = 5048 ck3 = 786 } # IMPASSIBLE TERRAIN 048 -> French Mountains 2 link = { autogenerated = yes imp = 5135 ck3 = 785 } # IMPASSIBLE TERRAIN 135 -> German Mountains 12 link = { autogenerated = yes imp = 5134 ck3 = 784 } # IMPASSIBLE TERRAIN 134 -> German Mountains 11 - link = { autogenerated = yes imp = 5136 ck3 = 783 } # Abnoba Mons -> German Mountains 10 + link = { autogenerated = yes imp = 5136 ck3 = 783 } # IMPASSIBLE TERRAIN 136 -> German Mountains 10 link = { autogenerated = yes imp = 5137 ck3 = 782 } # IMPASSIBLE TERRAIN 137 -> German Mountains 9 link = { autogenerated = yes imp = 5138 ck3 = 781 } # IMPASSIBLE TERRAIN 138 -> German Mountains 8 link = { autogenerated = yes imp = 5139 ck3 = 780 } # IMPASSIBLE TERRAIN 139 -> German Mountains 7 link = { autogenerated = yes imp = 5316 ck3 = 7796 } # IP 317 -> Eastern Ghats (E) - link = { autogenerated = yes imp = 5141 ck3 = 774 } # Germanic Upland -> German Mountains 1 + link = { autogenerated = yes imp = 5141 ck3 = 774 } # IMPASSIBLE TERRAIN 141 -> German Mountains 1 link = { autogenerated = yes imp = 5142 ck3 = 767 } # IMPASSIBLE TERRAIN 142 -> Czech Mountains 5 link = { autogenerated = yes imp = 5143 ck3 = 766 } # IMPASSIBLE TERRAIN 143 -> Czech Mountains 4 - link = { autogenerated = yes imp = 5145 ck3 = 765 } # Bohaemeian Forest -> Czech Mountains 3 + link = { autogenerated = yes imp = 5145 ck3 = 765 } # IMPASSIBLE TERRAIN 145 -> Czech Mountains 3 link = { autogenerated = yes imp = 5146 imp = 5144 ck3 = 764 } # IMPASSIBLE TERRAIN 146, IMPASSIBLE TERRAIN 144 -> Czech Mountains 2 link = { autogenerated = yes imp = 5113 ck3 = 733 } # IMPASSIBLE TERRAIN 113 -> CARPATHIANS - link = { autogenerated = yes imp = 9005 imp = 7269 imp = 9119 ck3 = 7212 } # Val, Jaxartia, Impassable -> Chimmkent mountains + link = { autogenerated = yes imp = 9005 imp = 7269 imp = 9119 ck3 = 7212 } # Val, Jaxartia*, Impassable -> Chimmkent mountains link = { autogenerated = yes imp = 7280 imp = 5968 ck3 = 7210 } # Wasteland, Karakum Dessert Impassable -> Kyzylkum link = { autogenerated = yes imp = 5999 ck3 = 718 } # Carpathian Impassable -> HUNGARIAN-MORAVIAN MOUNTAINS - link = { autogenerated = yes imp = 5298 ck3 = 717 } # Carpathia -> HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 5298 ck3 = 717 } # IMPASSIBLE TERRAIN 298 -> HUNGARIAN-MORAVIAN MOUNTAINS link = { autogenerated = yes imp = 8758 ck3 = 7162 } # Talgar -> Kaskelen link = { autogenerated = yes imp = 5966 ck3 = 7155 ck3 = 7156 ck3 = 7157 ck3 = 7159 ck3 = 7160 ck3 = 7211 ck3 = 7213 ck3 = 7214 ck3 = 7283 ck3 = 7308 ck3 = 7310 ck3 = 7313 ck3 = 7315 ck3 = 7316 } # Steppe Impassable -> Shyganak, Mirnyy, Aksuyek, Akzhar, Tamgaly, Betpak-Dala, Saryesik-Atyrau Desert, Southern Balkash wasteland, Kara Sor, Bos-Tau, Betpa, Asaybay, Baykara, Targyl link = { autogenerated = yes imp = 7281 ck3 = 7134 } # Wasteland -> Akkum - link = { autogenerated = yes imp = 9138 imp = 5992 imp = 8175 imp = 8178 imp = 8179 imp = 8185 imp = 9139 ck3 = 6596 } # Sahara Impassable, Desert, Dujal, Sharraba, Baghira, Garamantic Desert, Sahara Impassable -> IDEHAN_MURZUQ + link = { imp = 9138 ck3 = 6463 ck3 = 6461 ck3 = 6462 ck3 = 6464 ck3 = 6668 ck3 = 6452 ck3 = 6454 ck3 = 6455 ck3 = 6456 ck3 = 6662 } # Sahara Impassable -> DJANET, AL-FEWET, AL-BARKAT, EFERI, DJADO_ROUTE, DJADO, SAKADAME, GISSEBI, DIRKU, EAST_AHAGGAR + link = { imp = 8184 ck3 = 6661 ck3 = 6460 } # Tisit -> GHAT_ROUTE, GHAT + link = { imp = 8175 imp = 8178 imp = 8179 ck3 = 6450 } # Dujal, Sharraba, Baghira -> TASSAWA link = { autogenerated = yes imp = 8183 ck3 = 6594 ck3 = 6595 } # Desert -> HAMADAT_HAMRA, JEBEL_NAFUSA link = { autogenerated = yes imp = 9141 imp = 5285 imp = 8361 ck3 = 6593 } # Sahara Impassable, IMPASSIBLE TERRAIN 285, Abadla -> ERG_TOUATI link = { autogenerated = yes imp = 9466 ck3 = 6592 } # Sahara Desert -> ERG_ATLASI link = { autogenerated = yes imp = 5187 imp = 5186 ck3 = 659 } # IMPASSIBLE TERRAIN 187, IMPASSIBLE TERRAIN 186 -> IBERIAN IMPASSABLE TERRAIN 8 - link = { autogenerated = yes imp = 5990 ck3 = 6453 ck3 = 6607 } # Garamantian Sahara -> TUMMO, JUFRA - link = { autogenerated = yes imp = 5943 ck3 = 6433 ck3 = 6434 ck3 = 6435 ck3 = 8310 ck3 = 8314 ck3 = 8315 ck3 = 8316 ck3 = 8317 ck3 = 8318 ck3 = 8319 ck3 = 8320 ck3 = 8321 ck3 = 8322 ck3 = 8323 ck3 = 8324 ck3 = 8361 ck3 = 8362 ck3 = 8363 ck3 = 8365 ck3 = 8366 ck3 = 8367 ck3 = 8369 ck3 = 8370 ck3 = 8371 ck3 = 8372 ck3 = 8373 ck3 = 8374 ck3 = 8375 ck3 = 8376 ck3 = 8377 ck3 = 8386 ck3 = 8387 ck3 = 8388 ck3 = 8389 ck3 = 8390 ck3 = 8433 ck3 = 8434 ck3 = 8435 ck3 = 8436 ck3 = 8437 ck3 = 8438 ck3 = 8439 ck3 = 8447 ck3 = 8514 ck3 = 8515 ck3 = 8516 } # Sudanese Impassable -> FAZUGHLI, AL-RUSAYRISI, FAZUGHLI-EAST, SANA, UPPER_DINDER, DINDER, BAD, KIBRAN, BASHILA, GISHE, BAHIR _GIYORGIS, GOJJAM, WARQ, DIMA, AMHARA, GOJEB, INNARYA, GURAGE, BIZAMO, GAFAT, MUGAR, JIBAT, DAMOT-WEST, AGAW_MEDER, WEST_GOJJAM, JANJERO, GANZ, ABBAY-AGAW, BERTA, DIDESA, INDEGABTAN, GAMBO, BOSHA, GIBE_INNARYA, OMO, GOMMA, WELAMO-WEST, BONGA, KAFFA, WELLEGA-SOUTH, WELLEGA-NORTH, METEKEL_DESERT, GOJJAM_HIGHLANDS, GUMUZ-NORTH, GUMUZ-WEST, GUMUZ-SOUTH - link = { autogenerated = yes imp = 5333 imp = 5334 imp = 5341 imp = 5342 ck3 = 6425 } # Desert of Aswan, Desert of Luxor, Desert of Kharga, IP 343 -> WAHAT-DESERT-SOUTH - link = { autogenerated = yes imp = 5945 ck3 = 6424 ck3 = 6428 } # Nubian Impassable -> WESTERN_NUB_DESERT, BIR_EL-KAI + link = { imp = 8192 imp = 8191 imp = 8194 ck3 = 6667 } # Qatrun, Izam, Mastutah -> FEZZAN_ROUTE + link = { imp = 8193 ck3 = 6453 ck3 = 6666 } # Tajhiri -> TUMMO, TIBESTI_ROUTE + link = { autogenerated = yes imp = 5943 ck3 = 6433 ck3 = 6434 ck3 = 6435 ck3 = 8310 ck3 = 8314 ck3 = 8315 ck3 = 8316 ck3 = 8317 ck3 = 8318 ck3 = 8319 ck3 = 8320 ck3 = 8321 ck3 = 8322 ck3 = 8323 ck3 = 8324 ck3 = 8365 ck3 = 8366 ck3 = 8367 ck3 = 8371 ck3 = 8372 ck3 = 8375 ck3 = 8376 ck3 = 8386 ck3 = 8387 ck3 = 8439 ck3 = 8447 ck3 = 8514 ck3 = 8515 ck3 = 8516 } # Sudanese Impassable -> FAZUGHLI, AL-RUSAYRISI, FAZUGHLI-EAST, SANA, UPPER_DINDER, DINDER, BAD, KIBRAN, BASHILA, GISHE, BAHIR _GIYORGIS, GOJJAM, WARQ, DIMA, AMHARA, BIZAMO, GAFAT, MUGAR, AGAW_MEDER, WEST_GOJJAM, ABBAY-AGAW, BERTA, INDEGABTAN, GAMBO, METEKEL_DESERT, GOJJAM_HIGHLANDS, GUMUZ-NORTH, GUMUZ-WEST, GUMUZ-SOUTH + link = { autogenerated = yes imp = 5333 imp = 5334 imp = 5341 imp = 5342 ck3 = 6425 } # IP 334, IP 335, IP 342, IP 343 -> WAHAT-DESERT-SOUTH + link = { autogenerated = yes imp = 5945 ck3 = 6428 ck3 = 6896 ck3 = 6904 ck3 = 6887 ck3 = 6888 ck3 = 6889 ck3 = 6886 ck3 = 6885 ck3 = 6876 ck3 = 6427 } # Nubian Impassable -> BIR_EL-KAI, UPPER_MILK, DARFUR_DESERT, UMM_KEDADA, TAGABO, TEIGA, KERKER, MALHA, MAO_DARFUR, JEBEL_ABU_NEGILA link = { autogenerated = yes imp = 5331 ck3 = 6422 } # IP 332 -> NUBIAN_DESERT_WEST link = { autogenerated = yes imp = 8120 ck3 = 6421 } # Kerman Desert -> NUBIAN_DESERT_EAST - link = { autogenerated = yes imp = 5944 ck3 = 6416 ck3 = 6426 ck3 = 6427 ck3 = 6430 ck3 = 6431 ck3 = 6432 ck3 = 6882 ck3 = 6883 ck3 = 6884 ck3 = 6897 ck3 = 6898 ck3 = 6899 ck3 = 6900 ck3 = 6901 } # Nubian Impassable -> BAYUDA_WEST, DAR_HAMID, JEBEL_ABU_NEGILA, TAGALI, TAGALI_SOUTH, RENK, WEST_KORDOFAN, EL-OBEID, EAST_KORDOFAN, LAGOWA, SHATT, LIGURI, CENTRAL_KORDOFAN, SIDRAH - link = { autogenerated = yes imp = 6498 imp = 5340 imp = 5994 imp = 5995 ck3 = 6328 } # More Libyan Desert, IP 341, Desert of Philoteris, Oasis Parva -> WESTERN_DESERT - link = { autogenerated = yes imp = 6497 imp = 5338 ck3 = 6327 } # More Egyptian Desert, Farafra -> WAHAT-DESERT - link = { autogenerated = yes imp = 5320 ck3 = 6325 } # Eastern Gaetulia -> ATLAS-AS-SAHRI - link = { autogenerated = yes imp = 9465 imp = 5366 imp = 9432 imp = 9433 imp = 9434 imp = 9435 imp = 9436 imp = 9437 imp = 9444 imp = 9446 imp = 9452 imp = 9459 ck3 = 6324 } # Sahara Desert, Western Musalamia, Haouch, Still, Mghair, Djamaa, Mrara, Touggourt, Alia, Guerrara, Zelfana, Brhel -> ERG-MZABI + link = { autogenerated = yes imp = 5944 ck3 = 6430 ck3 = 6431 ck3 = 6432 ck3 = 6882 ck3 = 6883 ck3 = 6884 ck3 = 6897 ck3 = 6898 ck3 = 6899 ck3 = 6900 ck3 = 6901 ck3 = 6881 ck3 = 6879 ck3 = 6880 ck3 = 6895 } # Nubian Impassable -> TAGALI, TAGALI_SOUTH, RENK, WEST_KORDOFAN, EL-OBEID, EAST_KORDOFAN, LAGOWA, SHATT, LIGURI, CENTRAL_KORDOFAN, SIDRAH, EN_NAHUD, UMM_GAFALA, GHUBAYSH, EAST_DARFUR + link = { autogenerated = yes imp = 6498 imp = 5340 imp = 5994 imp = 5995 ck3 = 6328 } # More Libyan Desert, IP 341, Egyptian Desert, Egyptian Desert -> WESTERN_DESERT + link = { autogenerated = yes imp = 6497 imp = 5338 ck3 = 6327 } # More Egyptian Desert, IP 339 -> WAHAT-DESERT + link = { autogenerated = yes imp = 5320 ck3 = 6325 } # IP 321 -> ATLAS-AS-SAHRI + link = { autogenerated = yes imp = 9465 imp = 5366 imp = 9432 imp = 9433 imp = 9434 imp = 9435 imp = 9436 imp = 9437 imp = 9444 imp = 9446 imp = 9452 imp = 9459 ck3 = 6324 } # Sahara Desert, IP 367, Haouch, Still, Mghair, Djamaa, Mrara, Touggourt, Alia, Guerrara, Zelfana, Brhel -> ERG-MZABI link = { autogenerated = yes imp = 9467 imp = 5988 ck3 = 6323 } # Sahara Desert, Sahara -> ERG-SHARQI - link = { autogenerated = yes imp = 5937 imp = 5301 imp = 5302 imp = 5936 imp = 8884 imp = 8887 imp = 8888 imp = 8894 ck3 = 6318 } # Arabian Impassable, Omani Desert, IP 303, Arabian Impassable, Arabian Desert, Arabian Desert, Arabian Desert, Arabian Desert -> RUB-AL-KHALI + link = { autogenerated = yes imp = 5937 imp = 5301 imp = 5302 imp = 5936 imp = 8884 imp = 8887 imp = 8888 imp = 8894 ck3 = 6318 } # Arabian Impassable, IP 302, IP 303, Arabian Impassable, Arabian Desert, Arabian Desert, Arabian Desert, Arabian Desert -> RUB-AL-KHALI link = { autogenerated = yes imp = 8885 ck3 = 6256 } # Arabian Desert -> NUFUD-AD-DIHI - link = { autogenerated = yes imp = 5883 ck3 = 625 ck3 = 7082 ck3 = 7084 ck3 = 7209 } # Fors -> Bailjar, Busaga, Sai-Kule, Ustyurt Plateau + link = { autogenerated = yes imp = 5883 ck3 = 625 ck3 = 7082 ck3 = 7084 ck3 = 7209 } # UNINHABITABLE -> Bailjar, Busaga, Sai-Kule, Ustyurt Plateau link = { autogenerated = yes imp = 5941 imp = 7647 ck3 = 6202 } # Arabian Impassable, Impassable -> AN-NAFUD link = { autogenerated = yes imp = 8882 ck3 = 6173 } # Arabian Desert -> NUFUD-AS-SIRR link = { autogenerated = yes imp = 6049 ck3 = 6167 } # Arabia Deserta Ulterior -> AD-DAHNA DESERT link = { autogenerated = yes imp = 6044 imp = 7648 ck3 = 6124 } # Syrian Desert, Impassable -> SYRIAN DESERT link = { autogenerated = yes imp = 5351 imp = 5350 imp = 5946 imp = 6499 imp = 8123 imp = 8124 imp = 8153 imp = 8158 ck3 = 6115 } # IP 352, IP 351, West Nile Impassable, More Libyan Desert, Tarfawi, Qabr, Hait, Shaqiq -> LIBYAN DESERT - link = { autogenerated = yes imp = 5210 ck3 = 5797 } # Bamni Volcano -> Dvin range - link = { autogenerated = yes imp = 5327 imp = 5324 imp = 5325 imp = 5326 ck3 = 5515 } # IP 328, Iberia Mons Volcano, IP 326, IP 327 -> Caucasus Mountains + link = { autogenerated = yes imp = 5210 ck3 = 5797 } # IMPASSIBLE TERRAIN 210 -> Dvin range + link = { autogenerated = yes imp = 5327 imp = 5324 imp = 5325 imp = 5326 ck3 = 5515 } # IP 328, IP 325, IP 326, IP 327 -> Caucasus Mountains link = { autogenerated = yes imp = 5981 ck3 = 5405 ck3 = 5406 ck3 = 5407 ck3 = 5408 ck3 = 5409 ck3 = 5412 ck3 = 5413 ck3 = 5414 ck3 = 5415 ck3 = 5416 ck3 = 5417 ck3 = 5418 ck3 = 5419 ck3 = 5420 ck3 = 5421 ck3 = 5422 ck3 = 5423 ck3 = 5424 ck3 = 5425 ck3 = 5426 ck3 = 5427 ck3 = 5503 ck3 = 5506 ck3 = 609 ck3 = 610 ck3 = 613 } # Russian Impassable -> Cukataw, Suvar, Tukhchi, Yar Calli, Agidel, Karabolam, Aqsubay, Elmet, Buzuluk, Pokhnishne, Neftegorsk, Belebey, Menzelinsk, Siun, Achaly, Jalmat, Pascherty, Bugulma, Almetyvesk, Bugurslan, Bol Uran, Kamelik, Maza, Samar, Bolghar, Bilyar link = { autogenerated = yes imp = 7643 ck3 = 5359 ck3 = 5361 ck3 = 5362 ck3 = 5363 ck3 = 5364 ck3 = 5365 ck3 = 5385 ck3 = 5393 ck3 = 5394 ck3 = 5396 ck3 = 5397 ck3 = 5398 ck3 = 5399 ck3 = 5400 ck3 = 5402 ck3 = 5403 ck3 = 5470 ck3 = 579 ck3 = 588 ck3 = 590 ck3 = 591 ck3 = 611 ck3 = 614 } # Fennia -> Lachyk-Uba, Chatzk, Rakcha, Urmary, Tzyvil, Alatyr, Kachma, Volzhsk, Arda, Mari-Turek, Kashan, Arsk, Mamadych, Otarka, Voloz, Elabuga, Cykma, Saransk, Yoshkar-Ola, Cheboksary, Simbirsk, Kazan, Ashli - link = { autogenerated = yes imp = 7641 ck3 = 5235 ck3 = 5241 ck3 = 5242 ck3 = 5246 ck3 = 5247 ck3 = 5248 ck3 = 5249 ck3 = 5250 ck3 = 5251 ck3 = 5256 ck3 = 5471 ck3 = 5472 ck3 = 571 ck3 = 572 ck3 = 574 ck3 = 581 ck3 = 5828 ck3 = 583 ck3 = 584 ck3 = 585 ck3 = 589 } # Alania -> Pavlovo, Ivanovo, Gavrilovskoye, Kineshma, Plyos, Shuya, Sol Vilikaya, Manturovo, Kostroma, Makariev, Semenov, Luch, Uglich, Yaroslavl, Rostov, Murom, Vyatskoye, Starodub-on-the-klyazma, Nizhny Novgorod, Gorodets, Urzen - link = { autogenerated = yes imp = 7640 ck3 = 5153 ck3 = 5154 ck3 = 5155 ck3 = 5158 ck3 = 5169 ck3 = 5175 ck3 = 5176 ck3 = 5254 ck3 = 5255 ck3 = 5512 ck3 = 5825 ck3 = 5827 ck3 = 972 } # Caspica -> Tikhvin, Kirishi, Borovichi, Ves Yogonska, Zhelezny Ustyug, Kashin, Mologa, Svolensk, Pikalyovo, Vepsian Wasteland, Sheksna, Danilov, VEPSIAN WASTELAND - link = { autogenerated = yes imp = 5297 ck3 = 4898 ck3 = 716 } # Carpathia -> HUNGARIAN-MORAVIAN MOUNTAINS, HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 7641 ck3 = 5235 ck3 = 5241 ck3 = 5242 ck3 = 5246 ck3 = 5247 ck3 = 5248 ck3 = 5249 ck3 = 5250 ck3 = 5251 ck3 = 5256 ck3 = 5471 ck3 = 5472 ck3 = 571 ck3 = 572 ck3 = 574 ck3 = 581 ck3 = 5828 ck3 = 583 ck3 = 584 ck3 = 585 ck3 = 589 } # Alanian Steppe -> Pavlovo, Ivanovo, Gavrilovskoye, Kineshma, Plyos, Shuya, Sol Vilikaya, Manturovo, Kostroma, Makariev, Semenov, Luch, Uglich, Yaroslavl, Rostov, Murom, Vyatskoye, Starodub-on-the-klyazma, Nizhny Novgorod, Gorodets, Urzen + link = { autogenerated = yes imp = 7640 ck3 = 5153 ck3 = 5154 ck3 = 5155 ck3 = 5158 ck3 = 5169 ck3 = 5175 ck3 = 5176 ck3 = 5254 ck3 = 5255 ck3 = 5512 ck3 = 5825 ck3 = 5827 ck3 = 972 } # Caspian Steppe -> Tikhvin, Kirishi, Borovichi, Ves Yogonska, Zhelezny Ustyug, Kashin, Mologa, Svolensk, Pikalyovo, Vepsian Wasteland, Sheksna, Danilov, VEPSIAN WASTELAND + link = { autogenerated = yes imp = 5297 ck3 = 4898 ck3 = 716 } # IMPASSIBLE TERRAIN 297 -> HUNGARIAN-MORAVIAN MOUNTAINS, HUNGARIAN-MORAVIAN MOUNTAINS link = { autogenerated = yes imp = 9142 ck3 = 4755 ck3 = 4756 ck3 = 797 ck3 = 799 } # Sahara Impassable -> TAGMADART, TIDRI, Atlas Mountains 8, Atlas Mountains 10 - link = { autogenerated = yes imp = 5951 ck3 = 4730 ck3 = 4740 ck3 = 4741 ck3 = 4757 ck3 = 4758 ck3 = 6470 ck3 = 6471 ck3 = 6472 ck3 = 6585 ck3 = 6587 ck3 = 6588 ck3 = 6651 ck3 = 796 } # Mauri Impassable -> ASSA, AL-TALHA, AQQA, TAGAWST, ILIGH, TINDOUF, SEQIUET_EL-HAMRA, ZAMMOUR, TIRIS_DESERT, ERG_IGUIDI, HAMADAT_DRAA, IGUIDI_WEST, Atlas Mountains 7 - link = { autogenerated = yes imp = 3316 ck3 = 4518 } # Sindhian Mountains -> KOHLU + link = { imp = 5971 ck3 = 6655 ck3 = 6654 ck3 = 4760 ck3 = 6468 ck3 = 6467 ck3 = 6466 ck3 = 6465 ck3 = 6591 ck3 = 6322 } # Even More Steppes Impassable -> SAOURA, TAGHAZA_ROAD, TAGHAZA, BOUDA, ADRAR_TIMMI, TAMENTIT, REGGANE, HAMADAT_TINGHERT, TEDMAIT + link = { autogenerated = yes imp = 5951 ck3 = 4730 ck3 = 4740 ck3 = 4741 ck3 = 4757 ck3 = 4758 ck3 = 6470 ck3 = 6471 ck3 = 6472 ck3 = 6651 ck3 = 796 ck3 = 6652 ck3 = 6653 ck3 = 6474 ck3 = 6473 } # Mauri Impassable -> ASSA, AL-TALHA, AQQA, TAGAWST, ILIGH, TINDOUF, SEQIUET_EL-HAMRA, ZAMMOUR, IGUIDI_WEST, Atlas Mountains 7, TINDOUF_ROAD, IGUIDI_EAST, TIRIS, BIR_UM-GHREIN + link = { autogenerated = yes imp = 3316 ck3 = 4518 } # Impassable -> KOHLU link = { autogenerated = yes imp = 5260 ck3 = 4471 ck3 = 4472 } # IMPASSIBLE TERRAIN 260 -> BANNAJBUR, MASHKI link = { autogenerated = yes imp = 5368 ck3 = 4465 } # IP 369 -> RUDBAR link = { autogenerated = yes imp = 7284 ck3 = 4463 ck3 = 4464 } # Impassable -> KISH-RUDBAR, MOFD AFDZALKHAN @@ -5078,13 +5082,13 @@ imperator_invictus = { link = { autogenerated = yes imp = 5319 ck3 = 3994 } # IP 320 -> Yajatinagara link = { autogenerated = yes imp = 5361 ck3 = 3962 } # IP 362 -> Khajuraho link = { autogenerated = yes imp = 5299 ck3 = 3950 ck3 = 3951 ck3 = 719 ck3 = 720 ck3 = 732 } # IMPASSIBLE TERRAIN 299 -> BALKAN IMPASSABLE TERRAIN 7, EASTERN EUROPE IMPASSABLE TERRAIN 1, CARPATHIANS, CARPATHIANS, CARPATHIANS - link = { autogenerated = yes imp = 5115 imp = 5114 ck3 = 3949 } # IMPASSIBLE TERRAIN 115, Caucoenia -> BALKAN IMPASSABLE TERRAIN 6 - link = { autogenerated = yes imp = 5038 ck3 = 3313 } # Alpes Noricae -> ALPS 7 + link = { autogenerated = yes imp = 5115 imp = 5114 ck3 = 3949 } # IMPASSIBLE TERRAIN 115, IMPASSIBLE TERRAIN 114 -> BALKAN IMPASSABLE TERRAIN 6 + link = { autogenerated = yes imp = 5038 ck3 = 3313 } # IMPASSIBLE TERRAIN 038 -> ALPS 7 link = { autogenerated = yes imp = 5125 ck3 = 3312 } # IMPASSIBLE TERRAIN 125 -> ALPS 6 - link = { autogenerated = yes imp = 5120 imp = 5030 imp = 5116 imp = 5119 ck3 = 3311 } # IMPASSIBLE TERRAIN 120, Alpes Carnicae, Alpes Iuliae, IMPASSIBLE TERRAIN 119 -> ALPS 5 - link = { autogenerated = yes imp = 5121 imp = 5029 imp = 5040 imp = 5124 ck3 = 3310 } # IMPASSIBLE TERRAIN 121, Alpes Rhaeticae, IMPASSIBLE TERRAIN 040, IMPASSIBLE TERRAIN 124 -> ALPS 4 - link = { autogenerated = yes imp = 5028 imp = 5027 imp = 5042 imp = 5122 imp = 5123 ck3 = 3309 } # Alpes Lepontinae, IMPASSIBLE TERRAIN 027, IMPASSIBLE TERRAIN 042, IMPASSIBLE TERRAIN 122, IMPASSIBLE TERRAIN 123 -> ALPS 3 - link = { autogenerated = yes imp = 5026 imp = 5043 ck3 = 3308 } # Alpes Graiae, IMPASSIBLE TERRAIN 043 -> ALPS 2 + link = { autogenerated = yes imp = 5120 imp = 5030 imp = 5116 imp = 5119 ck3 = 3311 } # IMPASSIBLE TERRAIN 120, IMPASSIBLE TERRAIN 030, IMPASSIBLE TERRAIN 116, IMPASSIBLE TERRAIN 119 -> ALPS 5 + link = { autogenerated = yes imp = 5121 imp = 5029 imp = 5040 imp = 5124 ck3 = 3310 } # IMPASSIBLE TERRAIN 121, IMPASSIBLE TERRAIN 029, IMPASSIBLE TERRAIN 040, IMPASSIBLE TERRAIN 124 -> ALPS 4 + link = { autogenerated = yes imp = 5028 imp = 5027 imp = 5042 imp = 5122 imp = 5123 ck3 = 3309 } # IMPASSIBLE TERRAIN 028, IMPASSIBLE TERRAIN 027, IMPASSIBLE TERRAIN 042, IMPASSIBLE TERRAIN 122, IMPASSIBLE TERRAIN 123 -> ALPS 3 + link = { autogenerated = yes imp = 5026 imp = 5043 ck3 = 3308 } # IMPASSIBLE TERRAIN 026, IMPASSIBLE TERRAIN 043 -> ALPS 2 link = { autogenerated = yes imp = 5133 imp = 5051 imp = 5052 ck3 = 3305 } # IMPASSIBLE TERRAIN 133, IMPASSIBLE TERRAIN 051, IMPASSIBLE TERRAIN 052 -> IBERIAN IMPASSIBLE TERRAIN 6 link = { autogenerated = yes imp = 9288 ck3 = 3304 } # Iberian Impassable -> IBERIAN IMPASSIBLE TERRAIN 5 link = { autogenerated = yes imp = 9290 imp = 9291 ck3 = 3302 } # Iberian Impassable, Iberian Impassable -> IBERIAN IMPASSIBLE TERRAIN 3 @@ -5094,13 +5098,13 @@ imperator_invictus = { link = { autogenerated = yes imp = 5987 ck3 = 3294 } # Maurian Plateau -> Tell Atlas Mountains 9 link = { autogenerated = yes imp = 5266 imp = 5267 imp = 5269 imp = 5393 imp = 5396 imp = 5397 imp = 5398 imp = 6659 ck3 = 3292 } # IMPASSIBLE TERRAIN 266, IMPASSIBLE TERRAIN 267, IMPASSIBLE TERRAIN 269, Artessia, Ghore, Shenia, Salos, Kala -> PERSIAN IMPASSABLE TERRAIN 4 link = { autogenerated = yes imp = 5259 imp = 7283 ck3 = 3290 } # IMPASSIBLE TERRAIN 259, Impassable -> PERSIAN IMPASSABLE TERRAIN 2 - link = { autogenerated = yes imp = 5245 imp = 5236 imp = 5237 imp = 5238 imp = 5239 imp = 5244 imp = 5246 imp = 5247 imp = 5264 imp = 5386 ck3 = 3289 } # IMPASSIBLE TERRAIN 245, IMPASSIBLE TERRAIN 236, Qumis Highland, IMPASSIBLE TERRAIN 238, IMPASSIBLE TERRAIN 239, IMPASSIBLE TERRAIN 244, IMPASSIBLE TERRAIN 246, Utian Plain, IMPASSIBLE TERRAIN 264, IP 387 -> PERSIAN IMPASSABLE TERRAIN 1 + link = { autogenerated = yes imp = 5245 imp = 5236 imp = 5237 imp = 5238 imp = 5239 imp = 5244 imp = 5246 imp = 5247 imp = 5264 imp = 5386 ck3 = 3289 } # IMPASSIBLE TERRAIN 245, IMPASSIBLE TERRAIN 236, IMPASSIBLE TERRAIN 237, IMPASSIBLE TERRAIN 238, IMPASSIBLE TERRAIN 239, IMPASSIBLE TERRAIN 244, IMPASSIBLE TERRAIN 246, IMPASSIBLE TERRAIN 247, IMPASSIBLE TERRAIN 264, IP 387 -> PERSIAN IMPASSABLE TERRAIN 1 link = { autogenerated = yes imp = 5036 ck3 = 3257 } # IMPASSIBLE TERRAIN 036 -> German Mountains 13 - link = { autogenerated = yes imp = 5023 imp = 5131 ck3 = 3256 } # Alpes Cottiae, Alpes Maritimae -> ALPS 1 + link = { autogenerated = yes imp = 5023 imp = 5131 ck3 = 3256 } # IMPASSIBLE TERRAIN 023, IMPASSIBLE TERRAIN 131 -> ALPS 1 link = { autogenerated = yes imp = 5385 ck3 = 3255 } # IP 386 -> KUNLUNSHAN link = { autogenerated = yes imp = 5961 ck3 = 3150 ck3 = 3612 ck3 = 4059 ck3 = 4281 ck3 = 4282 ck3 = 5913 ck3 = 5997 ck3 = 7787 ck3 = 7941 ck3 = 8526 ck3 = 8527 ck3 = 8528 ck3 = 8529 ck3 = 8554 ck3 = 9031 ck3 = 9032 ck3 = 9033 ck3 = 9034 ck3 = 9035 ck3 = 9036 ck3 = 9040 ck3 = 9041 ck3 = 9042 ck3 = 9043 ck3 = 9060 ck3 = 9062 ck3 = 9063 ck3 = 9064 ck3 = 9065 ck3 = 9212 ck3 = 9213 ck3 = 9215 ck3 = 9216 ck3 = 9218 ck3 = 9219 ck3 = 9220 ck3 = 9221 ck3 = 9252 ck3 = 9253 ck3 = 9254 ck3 = 9258 ck3 = 9259 ck3 = 9260 ck3 = 9261 ck3 = 9262 ck3 = 9263 ck3 = 9264 ck3 = 9278 ck3 = 9279 ck3 = 9280 ck3 = 9284 ck3 = 9285 ck3 = 9286 ck3 = 9287 ck3 = 9288 ck3 = 9289 ck3 = 9290 ck3 = 9291 ck3 = 9292 ck3 = 9293 ck3 = 9294 ck3 = 9295 ck3 = 9296 ck3 = 9297 ck3 = 9298 ck3 = 9299 ck3 = 9300 ck3 = 9301 ck3 = 9302 ck3 = 9303 ck3 = 9304 ck3 = 9305 ck3 = 9306 ck3 = 9354 ck3 = 9355 ck3 = 9356 ck3 = 9357 ck3 = 9358 ck3 = 9359 ck3 = 9360 ck3 = 9361 ck3 = 9362 ck3 = 9363 ck3 = 9364 ck3 = 9365 ck3 = 9366 ck3 = 9367 ck3 = 9368 ck3 = 9370 ck3 = 9371 ck3 = 9372 ck3 = 9373 ck3 = 9374 ck3 = 9375 ck3 = 9376 ck3 = 9377 ck3 = 9378 ck3 = 9379 ck3 = 9380 ck3 = 9389 ck3 = 9390 ck3 = 9391 ck3 = 9392 ck3 = 9393 ck3 = 9600 ck3 = 9609 ck3 = 9611 ck3 = 9612 ck3 = 971 } # Tibetan Plateau Impassable -> KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, HIMALAYA, Nischu, Sumna, Thaldat, Sumnal, Sumdo, Chungtash, Changmar, Memar, Bangdag, Bairab, Chaka, Dongco, Gomoco, Chagboco, Burogco, Xainza, Shyungme, Nyima, Aso, Ngoqu, Garkung, Margai, Yurba, Xenkyer, Pukpa, Balla, Qangma, Parling, Xibde, Cozhelhoma, Garco, Dorsoidong, Cozhedangma, Rawu, Bome, Yiong, Yiqen, Kangyu, Qundo, Banbar, Jaggang, Lhorong, Qizhu, Damdoi, Xamqu, Biru, Sog, Riwar, Arxog, Baqen, Lhaxi, Dengqen, Riwoqe, Karub, Qamdo, Lhatok, Nangqen, Nyangla, Gyegumdo, Nyainrong, Amdo, Gangnyi, Sibnak_Chenchungo, Marrong, Changco, Yenshipin, Quemoco, Marchu, Sewa, Ulenulaco, Dokecoring, Dokecoring_Qangco, Yuyico, Aqenganggyai, Dangla, Nengyi, Drakbuk, Chumarho, Toma, Trandam, Damzhung, Ato, Qapugtang, Mukzhung, Zokya, Ayakkum, Aqqikkol, Kytkol, Bokalik, Mangnai, Bashkoyumal, Bugaiwilik, Mahas, Domoko, TIBET IMPASSABLE link = { autogenerated = yes imp = 5375 ck3 = 3123 } # IP 376 -> KUNLUNSHAN - link = { autogenerated = yes imp = 5962 ck3 = 3104 ck3 = 9615 ck3 = 9616 } # Karakoram -> KUNLUNSHAN, Kehan, Karghalik + link = { autogenerated = yes imp = 5962 ck3 = 3104 ck3 = 9615 ck3 = 9616 } # Pamir Impassable -> KUNLUNSHAN, Kehan, Karghalik link = { autogenerated = yes imp = 5347 ck3 = 3029 ck3 = 3031 } # IP 348 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE link = { autogenerated = yes imp = 7297 ck3 = 3026 ck3 = 4520 } # Impassable -> PERSIAN IMPASSABLE, ZHOB link = { autogenerated = yes imp = 5345 ck3 = 3022 } # IP 346 -> PERSIAN IMPASSABLE @@ -5110,42 +5114,41 @@ imperator_invictus = { link = { autogenerated = yes imp = 5261 ck3 = 2929 ck3 = 2930 ck3 = 2944 ck3 = 2974 } # IMPASSIBLE TERRAIN 261 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5262 ck3 = 2908 } # IMPASSIBLE TERRAIN 262 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5268 ck3 = 2884 } # IMPASSIBLE TERRAIN 268 -> PERSIAN IMPASSABLE - link = { autogenerated = yes imp = 5274 ck3 = 2881 } # Bactrian Highland -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5274 ck3 = 2881 } # IMPASSIBLE TERRAIN 274 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5273 ck3 = 2754 } # IMPASSIBLE TERRAIN 273 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5380 ck3 = 2734 } # IP 381 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5963 ck3 = 2718 ck3 = 2740 ck3 = 3037 ck3 = 4358 ck3 = 4515 ck3 = 7953 } # Badakshan Impassable -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, KUNLUNSHAN, Sanglich, CHITRAL, Golaghmuli link = { autogenerated = yes imp = 5279 ck3 = 2716 } # IMPASSIBLE TERRAIN 279 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5278 ck3 = 2667 ck3 = 2668 ck3 = 3291 ck3 = 4366 ck3 = 4367 } # IMPASSIBLE TERRAIN 278 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE TERRAIN 3, Upper Karran, Lower Karran - link = { autogenerated = yes imp = 5270 imp = 5271 imp = 5272 imp = 5276 imp = 5277 ck3 = 2601 } # Sogdian Mountains, IMPASSIBLE TERRAIN 271, IMPASSIBLE TERRAIN 272, IMPASSIBLE TERRAIN 276, Ferghanan Mountains -> PERSIAN IMPASSABLE - link = { autogenerated = yes imp = 5281 imp = 5280 ck3 = 2580 } # IMPASSIBLE TERRAIN 281, Talas Highland -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5270 imp = 5271 imp = 5272 imp = 5276 imp = 5277 ck3 = 2601 } # IMPASSIBLE TERRAIN 270, IMPASSIBLE TERRAIN 271, IMPASSIBLE TERRAIN 272, IMPASSIBLE TERRAIN 276, IMPASSIBLE TERRAIN 277 -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5281 imp = 5280 ck3 = 2580 } # IMPASSIBLE TERRAIN 281, IMPASSIBLE TERRAIN 280 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5282 ck3 = 2539 ck3 = 7148 ck3 = 7149 ck3 = 7150 ck3 = 7151 } # IMPASSIBLE TERRAIN 282 -> TIANSHAN, Sayaq, Tinimseyit, Bagish, Cherik link = { autogenerated = yes imp = 5967 ck3 = 2486 ck3 = 7163 ck3 = 7168 } # More Steppe Impassable -> TIANSHAN, Kopathal, Qayaliq link = { autogenerated = yes imp = 5130 imp = 5021 ck3 = 2484 } # IMPASSIBLE TERRAIN 130, IMPASSIBLE TERRAIN 021 -> Northern Apennine Mountains 1 link = { autogenerated = yes imp = 5953 ck3 = 233 ck3 = 235 ck3 = 238 ck3 = 247 ck3 = 255 ck3 = 256 ck3 = 257 ck3 = 258 ck3 = 259 ck3 = 260 ck3 = 261 ck3 = 262 ck3 = 264 ck3 = 288 ck3 = 299 ck3 = 3260 ck3 = 7 } # Norwegian Impassable -> RINGARIKI, VALDRES, SUTHRI GUDBRANDSDALI, NUMEDAL, HARDANGER, SUNNHORDALAND, MITHRHORDALAND, NORTHRIHORDALAND, VOSS, SOGNFYLKI, BREMANGER, STOLSHEIMEN, DALE, HEDDALI, NORWEGIAN IMPASSABLE 9, NORWEGIAN MOUNTAINS, SCALLOWAY link = { autogenerated = yes imp = 5952 ck3 = 232 ck3 = 236 ck3 = 240 ck3 = 323 ck3 = 324 ck3 = 325 ck3 = 326 ck3 = 329 ck3 = 342 ck3 = 345 ck3 = 346 ck3 = 347 ck3 = 348 ck3 = 349 ck3 = 350 ck3 = 351 ck3 = 352 ck3 = 353 ck3 = 354 ck3 = 355 ck3 = 356 ck3 = 8728 ck3 = 8729 ck3 = 8731 ck3 = 8732 ck3 = 8739 ck3 = 8769 } # Swedish Impassable -> ROMERIKI, HEDMARK, SUTHRI EYSTRIDALI, TINGVALLA, FRISKDAL, GILLBERG, VASE, NORASKOG, UPPSALA, HENAMORUM, VAESTRAAROS, ARBUGAE, SKYNZEKKEBERGE, FERNABO, FALENE, MOR, MOLUNGR, NORRBARKE, GAVLE, OKLABO, ODMARDEN, Leksand, Lima, Nordmark, Josse, Farnebo, Stange - link = { autogenerated = yes imp = 5882 ck3 = 1489 ck3 = 7080 } # Multen -> Ustyurt Plateau, Karasye + link = { autogenerated = yes imp = 5882 ck3 = 1489 ck3 = 7080 } # UNINHABITABLE -> Ustyurt Plateau, Karasye link = { autogenerated = yes imp = 5256 imp = 5255 ck3 = 1471 } # IMPASSIBLE TERRAIN 256, IMPASSIBLE TERRAIN 255 -> PERSIAN IMPASSABLE TERRAIN link = { autogenerated = yes imp = 8813 imp = 8782 imp = 8784 imp = 8790 imp = 8793 imp = 8808 imp = 8809 ck3 = 1468 } # Myitkyina, Kettha, Pu, Danai, Burma Mountains, Thanlyin, Lashio -> Eastern Wasteland 3 - link = { autogenerated = yes imp = 5020 ck3 = 1465 ck3 = 8615 ck3 = 8616 ck3 = 8625 ck3 = 958 ck3 = 960 ck3 = 986 ck3 = 990 } # IMPASSIBLE SEA -> ATLANTIC TI, Sea of Faereyar, Sea of Shetland, The Atlantic, Ladoga, Sea of Faereyar, Coast of Norway, North Sea - link = { autogenerated = yes imp = 5253 imp = 5250 imp = 5251 imp = 5252 ck3 = 1437 } # IMPASSIBLE TERRAIN 254, IMPASSIBLE TERRAIN 250, IMPASSIBLE TERRAIN 251, Lut -> PERSIAN IMPASSABLE TERRAIN - link = { autogenerated = yes imp = 5231 imp = 5232 ck3 = 1436 } # IMPASSIBLE TERRAIN 231, Zagros -> AZERBAIJAN MOUNTAINS + link = { autogenerated = yes imp = 5020 ck3 = 1465 ck3 = 8615 ck3 = 8616 ck3 = 8625 ck3 = 958 ck3 = 960 ck3 = 986 ck3 = 990 } # IMPASSIBLE SEA -> ATLANTIC TI, sea_faereyar, sea_shetland, sea_atlantic, lake_ladoga, sea_faereyar, sea_coast_norway, sea_north_sea + link = { autogenerated = yes imp = 5253 imp = 5250 imp = 5251 imp = 5252 ck3 = 1437 } # IMPASSIBLE TERRAIN 254, IMPASSIBLE TERRAIN 250, IMPASSIBLE TERRAIN 251, IMPASSIBLE TERRAIN 252 -> PERSIAN IMPASSABLE TERRAIN + link = { autogenerated = yes imp = 5231 imp = 5232 ck3 = 1436 } # IMPASSIBLE TERRAIN 231, IMPASSIBLE TERRAIN 232 -> AZERBAIJAN MOUNTAINS link = { autogenerated = yes imp = 5969 ck3 = 1433 ck3 = 5429 ck3 = 5430 ck3 = 5431 ck3 = 5432 ck3 = 5433 ck3 = 5478 ck3 = 5479 ck3 = 5480 ck3 = 5481 ck3 = 5482 ck3 = 5483 ck3 = 5484 ck3 = 5485 ck3 = 5486 ck3 = 5517 ck3 = 615 ck3 = 7246 ck3 = 7247 ck3 = 7248 ck3 = 7250 ck3 = 7252 ck3 = 7265 ck3 = 7269 ck3 = 7270 ck3 = 7271 ck3 = 7272 ck3 = 7273 ck3 = 7275 ck3 = 7276 ck3 = 7353 } # European Steppe Impassable -> Terekti, Sterlitamak, Teterpush, Salavat, Kumertau, Prechistenskaya, Inzer, Prigorod Tabynsk, Bielaya, Yanokul, Kaginskoi, Sakmara, Yuldybayevo, Verkouralsk, Yumanova, Southern Urals, Ufa, Suvunduk, Atamansku, Kbumak, Jarli Butak, Kosh Kurbay, Sor Kuduk, Tuzdyn, Jilanjik, Tamdins, Ulytau, Ajutasty, Kaptadyr, Jaman Arganaty, Central Kazakh Steppe link = { autogenerated = yes imp = 5997 ck3 = 1380 } # Antilibanus Mons -> SYRIAN IMPASSABLE - link = { autogenerated = yes imp = 768 ck3 = 1379 } # Libanus Mons -> SYRIAN IMPASSABLE - link = { autogenerated = yes imp = 5228 imp = 5227 imp = 5229 ck3 = 1373 } # Syrian Desert, Syrian Desert, Syrian Desert -> SYRIAN DESERT - link = { autogenerated = yes imp = 5379 imp = 5376 imp = 5377 imp = 5378 imp = 5666 imp = 5668 imp = 6742 imp = 6745 imp = 6746 imp = 6756 imp = 8759 imp = 8765 ck3 = 1347 } # IP 380, IP 377, IP 378, Tarim, Taklamakan, Taklamakan, Pishan, Keriya, Shaju, Khata, Makit, Cadota -> TAKLAMAKAN DESERT - link = { autogenerated = yes imp = 5295 ck3 = 1344 } # Syrian Desert -> SYRIAN DESERT + link = { autogenerated = yes imp = 768 ck3 = 1379 } # Libanus Mons - Yammune -> SYRIAN IMPASSABLE + link = { autogenerated = yes imp = 5228 imp = 5227 imp = 5229 ck3 = 1373 } # IMPASSIBLE TERRAIN 228, IMPASSIBLE TERRAIN 227, IMPASSIBLE TERRAIN 229 -> SYRIAN DESERT + link = { autogenerated = yes imp = 5379 imp = 5376 imp = 5377 imp = 5378 imp = 5666 imp = 5668 imp = 6742 imp = 6745 imp = 6746 imp = 6756 imp = 8759 imp = 8765 ck3 = 1347 } # IP 380, IP 377, IP 378, IP 379, PASS, PASS, Pishan, Keriya, Shaju, Khata, Makit, Cadota -> TAKLAMAKAN DESERT + link = { autogenerated = yes imp = 5295 ck3 = 1344 } # IMPASSIBLE TERRAIN 295 -> SYRIAN DESERT link = { autogenerated = yes imp = 8883 ck3 = 1335 } # Arabian Desert -> AD-DAHNA DESERT link = { autogenerated = yes imp = 5336 ck3 = 1334 ck3 = 8333 ck3 = 8334 ck3 = 8335 } # IP 337 -> DANAKIL_HILLS, RAGALI, AMARTA, AFERA - link = { autogenerated = yes imp = 5290 ck3 = 1326 } # Qal'eh -> JIBAL-AL-HIJAZI + link = { autogenerated = yes imp = 5290 ck3 = 1326 } # IMPASSIBLE TERRAIN 290 -> JIBAL-AL-HIJAZI link = { autogenerated = yes imp = 8118 ck3 = 1280 } # Upper Egyptian Desert -> EASTERN DESERT - link = { autogenerated = yes imp = 5353 ck3 = 1089 } # Pendactylos Mons -> WOLLO_HIGHLANDS + link = { autogenerated = yes imp = 5353 ck3 = 1089 } # IP 354 -> WOLLO_HIGHLANDS link = { autogenerated = yes imp = 8719 ck3 = 1051 } # Somali Desert -> JEBEL_BEJA link = { autogenerated = yes imp = 8716 ck3 = 1049 } # Somali Desert -> OGADEN_DESERT - link = { autogenerated = yes imp = 3222 ck3 = 1048 ck3 = 4760 ck3 = 4761 ck3 = 6322 ck3 = 6326 ck3 = 6452 ck3 = 6454 ck3 = 6455 ck3 = 6456 ck3 = 6457 ck3 = 6458 ck3 = 6460 ck3 = 6461 ck3 = 6463 ck3 = 6465 ck3 = 6466 ck3 = 6467 ck3 = 6468 ck3 = 6473 ck3 = 6474 ck3 = 6475 ck3 = 6476 ck3 = 6477 ck3 = 6478 ck3 = 6479 ck3 = 6482 ck3 = 6483 ck3 = 6484 ck3 = 6485 ck3 = 6486 ck3 = 6487 ck3 = 6488 ck3 = 6489 ck3 = 6490 ck3 = 6491 ck3 = 6492 ck3 = 6493 ck3 = 6494 ck3 = 6495 ck3 = 6496 ck3 = 6497 ck3 = 6498 ck3 = 6499 ck3 = 6500 ck3 = 6501 ck3 = 6502 ck3 = 6503 ck3 = 6504 ck3 = 6505 ck3 = 6506 ck3 = 6507 ck3 = 6508 ck3 = 6509 ck3 = 6510 ck3 = 6511 ck3 = 6512 ck3 = 6513 ck3 = 6514 ck3 = 6515 ck3 = 6516 ck3 = 6517 ck3 = 6518 ck3 = 6519 ck3 = 6520 ck3 = 6521 ck3 = 6522 ck3 = 6523 ck3 = 6524 ck3 = 6525 ck3 = 6526 ck3 = 6527 ck3 = 6528 ck3 = 6529 ck3 = 6530 ck3 = 6531 ck3 = 6532 ck3 = 6533 ck3 = 6534 ck3 = 6535 ck3 = 6536 ck3 = 6537 ck3 = 6538 ck3 = 6539 ck3 = 6540 ck3 = 6541 ck3 = 6542 ck3 = 6543 ck3 = 6544 ck3 = 6545 ck3 = 6546 ck3 = 6547 ck3 = 6548 ck3 = 6549 ck3 = 6550 ck3 = 6551 ck3 = 6552 ck3 = 6553 ck3 = 6554 ck3 = 6555 ck3 = 6556 ck3 = 6557 ck3 = 6558 ck3 = 6559 ck3 = 6560 ck3 = 6561 ck3 = 6562 ck3 = 6563 ck3 = 6564 ck3 = 6565 ck3 = 6566 ck3 = 6567 ck3 = 6568 ck3 = 6569 ck3 = 6570 ck3 = 6571 ck3 = 6572 ck3 = 6573 ck3 = 6574 ck3 = 6575 ck3 = 6576 ck3 = 6577 ck3 = 6578 ck3 = 6579 ck3 = 6580 ck3 = 6581 ck3 = 6582 ck3 = 6583 ck3 = 6584 ck3 = 6586 ck3 = 6589 ck3 = 6590 ck3 = 6591 ck3 = 6597 ck3 = 6598 ck3 = 6599 ck3 = 6600 ck3 = 6603 ck3 = 6604 ck3 = 6605 ck3 = 6606 ck3 = 6608 ck3 = 6609 ck3 = 6610 ck3 = 6611 ck3 = 6612 ck3 = 6613 ck3 = 6614 ck3 = 6615 ck3 = 6616 ck3 = 6617 ck3 = 6618 ck3 = 6619 ck3 = 6620 ck3 = 6621 ck3 = 6622 ck3 = 6623 ck3 = 6624 ck3 = 6625 ck3 = 6626 ck3 = 6627 ck3 = 6628 ck3 = 6629 ck3 = 6630 ck3 = 6631 ck3 = 6632 ck3 = 6633 ck3 = 6634 ck3 = 6635 ck3 = 6636 ck3 = 6637 ck3 = 6638 ck3 = 6639 ck3 = 6640 ck3 = 6641 ck3 = 6642 ck3 = 6643 ck3 = 6644 ck3 = 6645 ck3 = 6646 ck3 = 6647 ck3 = 6648 ck3 = 6649 ck3 = 6650 ck3 = 6652 ck3 = 6653 ck3 = 6654 ck3 = 6655 ck3 = 6656 ck3 = 6657 ck3 = 6658 ck3 = 6659 ck3 = 6660 ck3 = 6662 ck3 = 6663 ck3 = 6664 ck3 = 6665 ck3 = 6666 ck3 = 6670 ck3 = 6671 ck3 = 6672 ck3 = 6673 ck3 = 6674 ck3 = 6675 ck3 = 6676 ck3 = 6677 ck3 = 6678 ck3 = 6679 ck3 = 6680 ck3 = 6681 ck3 = 6682 ck3 = 6683 ck3 = 6684 ck3 = 6685 ck3 = 6686 ck3 = 6687 ck3 = 6688 ck3 = 6689 ck3 = 6690 ck3 = 6691 ck3 = 6692 ck3 = 6693 ck3 = 6694 ck3 = 6695 ck3 = 6696 ck3 = 6697 ck3 = 6698 ck3 = 6699 ck3 = 6700 ck3 = 6701 ck3 = 6702 ck3 = 6703 ck3 = 6704 ck3 = 6705 ck3 = 6706 ck3 = 6707 ck3 = 6708 ck3 = 6709 ck3 = 6710 ck3 = 6711 ck3 = 6712 ck3 = 6713 ck3 = 6714 ck3 = 6715 ck3 = 6716 ck3 = 6717 ck3 = 6718 ck3 = 6719 ck3 = 6720 ck3 = 6721 ck3 = 6722 ck3 = 6723 ck3 = 6724 ck3 = 6725 ck3 = 6726 ck3 = 6727 ck3 = 6728 ck3 = 6729 ck3 = 6730 ck3 = 6731 ck3 = 6732 ck3 = 6733 ck3 = 6734 ck3 = 6735 ck3 = 6736 ck3 = 6737 ck3 = 6738 ck3 = 6739 ck3 = 6740 ck3 = 6741 ck3 = 6742 ck3 = 6743 ck3 = 6744 ck3 = 6747 ck3 = 6748 ck3 = 6749 ck3 = 6750 ck3 = 6751 ck3 = 6752 ck3 = 6753 ck3 = 6754 ck3 = 6755 ck3 = 6756 ck3 = 6757 ck3 = 6758 ck3 = 6759 ck3 = 6760 ck3 = 6761 ck3 = 6762 ck3 = 6763 ck3 = 6764 ck3 = 6765 ck3 = 6766 ck3 = 6767 ck3 = 6768 ck3 = 6769 ck3 = 6770 ck3 = 6771 ck3 = 6772 ck3 = 6773 ck3 = 6774 ck3 = 6788 ck3 = 6789 ck3 = 6790 ck3 = 6799 ck3 = 6801 ck3 = 6802 ck3 = 6803 ck3 = 6804 ck3 = 6805 ck3 = 6806 ck3 = 6807 ck3 = 6808 ck3 = 6809 ck3 = 6810 ck3 = 6811 ck3 = 6812 ck3 = 6813 ck3 = 6814 ck3 = 6815 ck3 = 6816 ck3 = 6817 ck3 = 6818 ck3 = 6819 ck3 = 6820 ck3 = 6821 ck3 = 6822 ck3 = 6823 ck3 = 6824 ck3 = 6825 ck3 = 6826 ck3 = 6827 ck3 = 6828 ck3 = 6829 ck3 = 6830 ck3 = 6831 ck3 = 6832 ck3 = 6833 ck3 = 6835 ck3 = 6836 ck3 = 6837 ck3 = 6838 ck3 = 6839 ck3 = 6840 ck3 = 6841 ck3 = 6842 ck3 = 6843 ck3 = 6844 ck3 = 6845 ck3 = 6846 ck3 = 6847 ck3 = 6848 ck3 = 6849 ck3 = 6850 ck3 = 6851 ck3 = 6852 ck3 = 6853 ck3 = 6854 ck3 = 6855 ck3 = 6856 ck3 = 6857 ck3 = 6858 ck3 = 6859 ck3 = 6860 ck3 = 6861 ck3 = 6862 ck3 = 6863 ck3 = 6864 ck3 = 6865 ck3 = 6866 ck3 = 6867 ck3 = 6868 ck3 = 6869 ck3 = 6870 ck3 = 6871 ck3 = 6872 ck3 = 6873 ck3 = 6874 ck3 = 6875 ck3 = 6876 ck3 = 6877 ck3 = 6878 ck3 = 6879 ck3 = 6880 ck3 = 6881 ck3 = 6885 ck3 = 6886 ck3 = 6887 ck3 = 6888 ck3 = 6889 ck3 = 6890 ck3 = 6891 ck3 = 6892 ck3 = 6893 ck3 = 6894 ck3 = 6895 ck3 = 6896 ck3 = 6902 ck3 = 6903 ck3 = 6904 ck3 = 6905 ck3 = 6906 ck3 = 6907 ck3 = 6908 ck3 = 6909 ck3 = 6910 ck3 = 6911 ck3 = 6912 ck3 = 6913 ck3 = 6914 ck3 = 6915 ck3 = 6916 ck3 = 6917 ck3 = 6918 ck3 = 6919 ck3 = 6920 ck3 = 6921 ck3 = 6922 ck3 = 6923 ck3 = 6924 ck3 = 6925 ck3 = 6926 ck3 = 6927 ck3 = 6928 ck3 = 6929 ck3 = 6930 ck3 = 6931 ck3 = 6932 ck3 = 6933 ck3 = 6934 ck3 = 6935 ck3 = 6936 ck3 = 6937 ck3 = 6938 ck3 = 6939 ck3 = 6940 ck3 = 6941 ck3 = 6942 ck3 = 6943 ck3 = 6944 ck3 = 6945 ck3 = 6946 ck3 = 6947 ck3 = 6948 ck3 = 6949 ck3 = 6950 ck3 = 6951 ck3 = 6952 ck3 = 6953 ck3 = 6954 ck3 = 6955 ck3 = 6956 ck3 = 6957 ck3 = 6958 ck3 = 6959 ck3 = 6960 ck3 = 6961 ck3 = 6962 ck3 = 6963 ck3 = 6964 ck3 = 6965 ck3 = 6966 ck3 = 6967 ck3 = 6968 ck3 = 6969 ck3 = 6970 ck3 = 6971 ck3 = 6972 ck3 = 6973 ck3 = 6974 ck3 = 6975 ck3 = 6976 ck3 = 6977 ck3 = 6978 ck3 = 6979 ck3 = 6980 ck3 = 6981 ck3 = 6982 ck3 = 6983 ck3 = 6984 ck3 = 6985 ck3 = 6986 ck3 = 6987 ck3 = 6988 ck3 = 6989 ck3 = 6990 ck3 = 6991 ck3 = 6992 ck3 = 6993 ck3 = 6994 ck3 = 6995 ck3 = 6996 ck3 = 6997 ck3 = 6998 ck3 = 6999 ck3 = 730 ck3 = 731 ck3 = 8000 ck3 = 8001 ck3 = 8002 ck3 = 8003 ck3 = 8004 ck3 = 8005 ck3 = 8006 ck3 = 8007 ck3 = 8008 ck3 = 8009 ck3 = 8011 ck3 = 8012 ck3 = 8013 ck3 = 8014 ck3 = 8015 ck3 = 8016 ck3 = 8017 ck3 = 8018 ck3 = 8019 ck3 = 8021 ck3 = 8022 ck3 = 8024 ck3 = 8025 ck3 = 8026 ck3 = 8027 ck3 = 8028 ck3 = 8029 ck3 = 8030 ck3 = 8031 ck3 = 8032 ck3 = 8033 ck3 = 8034 ck3 = 8035 ck3 = 8036 ck3 = 8037 ck3 = 8038 ck3 = 8039 ck3 = 8040 ck3 = 8041 ck3 = 8042 ck3 = 8043 ck3 = 8044 ck3 = 8045 ck3 = 8046 ck3 = 8047 ck3 = 8048 ck3 = 8049 ck3 = 8050 ck3 = 8051 ck3 = 8052 ck3 = 8053 ck3 = 8054 ck3 = 8055 ck3 = 8056 ck3 = 8057 ck3 = 8058 ck3 = 8059 ck3 = 8060 ck3 = 8061 ck3 = 8062 ck3 = 8063 ck3 = 8064 ck3 = 8065 ck3 = 8066 ck3 = 8067 ck3 = 8068 ck3 = 8069 ck3 = 8070 ck3 = 8071 ck3 = 8072 ck3 = 8073 ck3 = 8074 ck3 = 8075 ck3 = 8076 ck3 = 8077 ck3 = 8078 ck3 = 8079 ck3 = 8080 ck3 = 8081 ck3 = 8083 ck3 = 8084 ck3 = 8086 ck3 = 8087 ck3 = 8088 ck3 = 8089 ck3 = 8090 ck3 = 8091 ck3 = 8097 ck3 = 8098 ck3 = 8100 ck3 = 8101 ck3 = 8102 ck3 = 8103 ck3 = 8104 ck3 = 8105 ck3 = 8106 ck3 = 8107 ck3 = 8108 ck3 = 8109 ck3 = 8110 ck3 = 8111 ck3 = 8112 ck3 = 8113 ck3 = 8114 ck3 = 8115 ck3 = 8116 ck3 = 8117 ck3 = 8118 ck3 = 8119 ck3 = 8120 ck3 = 8121 ck3 = 8122 ck3 = 8123 ck3 = 8124 ck3 = 8125 ck3 = 8126 ck3 = 8127 ck3 = 8128 ck3 = 8129 ck3 = 8130 ck3 = 8131 ck3 = 8132 ck3 = 8133 ck3 = 8134 ck3 = 8135 ck3 = 8136 ck3 = 8137 ck3 = 8138 ck3 = 8139 ck3 = 8140 ck3 = 8141 ck3 = 8142 ck3 = 8143 ck3 = 8144 ck3 = 8145 ck3 = 8146 ck3 = 8147 ck3 = 8148 ck3 = 8149 ck3 = 8150 ck3 = 8151 ck3 = 8152 ck3 = 8153 ck3 = 8154 ck3 = 8155 ck3 = 8156 ck3 = 8157 ck3 = 8158 ck3 = 8159 ck3 = 8160 ck3 = 8161 ck3 = 8162 ck3 = 8163 ck3 = 8164 ck3 = 8165 ck3 = 8166 ck3 = 8167 ck3 = 8168 ck3 = 8169 ck3 = 8170 ck3 = 8171 ck3 = 8172 ck3 = 8173 ck3 = 8174 ck3 = 8175 ck3 = 8176 ck3 = 8182 ck3 = 8183 ck3 = 8203 ck3 = 8204 ck3 = 8206 ck3 = 8207 ck3 = 8208 ck3 = 8209 ck3 = 8210 ck3 = 8211 ck3 = 8212 ck3 = 8213 ck3 = 8214 ck3 = 8215 ck3 = 8216 ck3 = 8217 ck3 = 8218 ck3 = 8219 ck3 = 8222 ck3 = 8224 ck3 = 8227 ck3 = 8228 ck3 = 8230 ck3 = 8231 ck3 = 8993 ck3 = 8994 ck3 = 8995 ck3 = 8996 ck3 = 8997 ck3 = 8998 } # (Unknown) -> ASANTE_HILLS, TAGHAZA, TAOUDENI, TEDMAIT, ERG-GHARBI, DJADO, SAKADAME, GISSEBI, DIRKU, BILMA, DIBELA, GHAT, AL-FEWET, DJANET, REGGANE, TAMENTIT, ADRAR_TIMMI, BOUDA, BIR_UM-GHREIN, TIRIS, IJIL, WADAN, TINIGI, SHINQITI, AZUKKI, TIRIS-SOUTH, GARUMELE, NGUIGMI, MANAN, KANEM, JIMI, TIE, TARAZKI, KAGUSTI, MADAN, AUNO, KORO_TORO, BORKOU, FAYA, AIN_GALAKKA, TIBESTI-SOUTH, TIBESTI-CENTRAL, BARDAI, AJERE, BALBELEC, GASKERU, DIFFA, YAU, KUKAWA, GARU_KIME, DIKWA, MEGE, YERWA, GALAGA, GAZARGAMO, GAMBARU, DIAKAM, ZAMTAM, MUNIO, NGURU, HADEJIA, KUFAN_KANAWA, KANO, KURA, BAUCHI, GOMBE, WUKARI, WASE, MURI, AZARE, KATAGUM, KUDU, RANO, DURUM, JOS, GONGOLA, KWARARAFA, FIKA, GABAS, DAURA, KATSINA, MARANDI, GOBIR, DUTSI, SOKOTO, ANKA, GUSAU, ZAZZAU, TURUNKU, NOK, TARUGA, BIDA, MINNA, KADUNA, ZURU, KONTOKORO, YAURI, GUMMI, KEBBI, SOKOTO-NORTH, TAHOUA, GOBIR-EAST, ZINDER, MARANDET, AGADEZ, TAKKEDA, AIR, TESSALIT, ADRAR_IFOGHAS, TADMEKKA, KIDAL, DOSSO, GAYA2, ROZI, TILLABERI, KUKIYA, TANDO_HUSUBIYA, KAMGALA, ANSONGO, GADEI, GAO, SARNAH, KOIMA, BOUREM, TIRAKKA, GURMA-RHAROUS, DAHAR_WALATA, AGHARAF, ERG_CHECH, TANZEROUFT, TIDIKELT, HAMADAT_TINGHERT, SAHARAT_HAGGAR, SAHARAT_AIR, TALAK, TENERE_GHARBI, TENERE_SHARQI, TIBESTI-DESERT, BODELE-DESERT, BAHR_EL-GHAZAL, KABARA, TIMBUKTU, ARAWAN, RAS_EL-MA, KILLI, KOUGA, TONDIARU, AKUMBU, KOLIMA, TOLADIE, BOULEL, DIA, MARA, SHOMA, WEST_MEMA, NIARA, BOU_KHZAMA, WALATA, TIMBEDRA, KUMBI, AL-GHABA, GUMBU, BIRU2, AWGHAM, KRI, BANAMBA, NIAMINA, KOULIKORO, KOLOKANI, SIBI2, KIRINA, KANGABA, TABON, BANGASI, LANBA, TAMANI, SANADO, SEGOU, SOUM, KANIANA, TABA, SAN, AGHARAF_ROAD, TINDOUF_ROAD, IGUIDI_EAST, TAGHAZA_ROAD, SAOURA, ARAWAN_ROAD, KAWAR_ROAD, AIR_ROUTE, FACHI, FACHI_ROUTE, EAST_AHAGGAR, AHAGGAR, TADMEKKA_ROUTE, BAHR_EL-GHAZAL_ROUTE, TIBESTI_ROUTE, BANGU, SAFARE, NGUMA, KORIENZA, ZAMPIA, DOUENTZA, SAMYERE, HOMBORI, DINDE, OURSI, KISSI, SAOUGA, DORI, GABOU, BURA, ARIBINDA, SIRBA, TONDIKWAREY, SAY, BILANGA, GURMA-WEST, NUNGU, TENKUDUGO, BURZANGA, GITI, MERGAO, WALGUYO, ZONDOMA, GURSI, GUILONGU, WAGADUGU, DOUNA, RIM, SANGA, OUNJOUGOU, BANDIAGARA, BANKASS, SENO-SOUTH, BENA, DOUROLA, MOPTI, JENNE-JENO, KIRI-BARA, BURUNFONGO, PEKINGA, BIRNIN_LAFIYA, SOTA, MADEKALI, BUSA, GOBNANGOU, PENTENGA, BIUN, SIKASSO, KUMYA, BANINKO, MANI, MORIBUGU, DAKAJALAN, FIGUIRA, NIANI, WASULU, YANFOLILA, KAMARO, KANKAN, JELIBAKORO, FADAMA, AMANA, KOUROUSSA, BALATO, SIGUIRI, TINKISSO, KONFARA, DIAKHA, NYENINGO, GOUNDAFA, YARESNA, GHIYARU, BAFULABE, KUNJAN, BADUMBE, KITA, BIRGO, GEMUKURA, FARABUGU, SORMA, BAKUNU, DIARA, NIORO, KEDAMA, MASIN, AKRIJIT, TICHITT, AWDAGHOST, HODH-SOUTH, HODH-WEST, TAGANT, TAGANT-WEST, KANIAGA, YELIMANE, SERO, GUIDIMAKA, DIAFUNU, KARAKORO, HODH_DESERT, INLAND_NIGER_DELTA, SIKASSO_HILLS, KINGUI, KONKO, SANGALAN, UPPER_GAMBIA, BAGUIRMI-WEST, BAGUIRMI, MASSENYA, BIDDIRI, DAM, BARMA2, MIGRI, BANRE, LOGONE-BIRNI, MAKARI, NGALA, BAMA, KOUSSERI, DUOLO, BOGO, MINDIF, KALFOU, DAGWAMBA, BIU, GAROUA, BIBEMI, BINDIR, MARGI, BABUR, KERA, GIZEY, MARBA, NGAMBAY, KIM, MILTOU, MASA, MBARA, LAFANA, BOUSSO, TUMAK, SUMRAY, NIELLIM, BOA, SARWA, MELFI_SAO, NGAMA, FELLATA, LAIRI, KOUKI, WAGNA, GHAZZAL, MANGA, YAO_FITRI, GASGA, KADAM, KADAM-WEST, KADAM-SOUTH, DAR_RASHID, IRO, SALAMAT, GOZ_BEIDA, DAR_SILA, ABECHE, WARA, WADAI, MASALIT, WADI_AZWA, KABKABIYA, KUBAYH, EL-FASHER, TURRA, DAR_WONA, KUNDI, MASA, URI, AIN_FARAH, MAO_DARFUR, HILEILA, HURAYZ, UMM_GAFALA, GHUBAYSH, EN_NAHUD, MALHA, KERKER, UMM_KEDADA, TAGABO, TEIGA, SIMIAT, TUREIQ, QIMR, TAMA, EAST_SILA, EAST_DARFUR, UPPER_MILK, MUERA_MTS, MANDARA_MTS, DARFUR_DESERT, ULAIRA, KULFO, KUTIGI, RABA, GBAJIGBO, TADA, ILORIN, OYO-ILE, JEBBA, KAIAMA, KAOJE, ILO, KANDI, SEGBANA, NIKKI, OKUTA, KENU, ILESA, IGBOHO, PARAKOU, ODO-AKABA, BORGU, MOSHI, NIKKI_WEST, ALIBORI, MEKROU, KOUANDE, YOHONGOU, SANSANE_MANGO, PUSUGA, BAWKU, DIKUTATENI, KUISUGU, PERMA, DJUGU, JIMBALE, SAKOGU, YENDI, SALAGA, MOLE_SOUTH, MAWLI, DABOYA, NAKANBE, PO, GURUNSI, LEO, LOWER_LOBI, UPPER_LOBI, KIRIKONGO, BOROMO, MOUHOUN, WA, UPPER_MOLE, BOLE2, BOUNA, LOROPENI, BANDA, BONDUKU, SAMPA, BEGHO, WENCHI, BUIPE, AHWENE_KOKO, UPPER_TANO, TEKYIMAN, BONO_MANSO, KINTAMPO, BUGURIBA, BOBO_DYULASSO, IRINGU, KOMOE, LERABA, KONG-NORTH, UPPER_NZI, KORHOGO, FOLONA, BANDAMA_SPRINGS, UPPER_NYENE, LOWER_NYENE, BANIFING, BAOULE, DEGOU, TUDUGU, ODIENNE, TYEME, SAMATIGILA, SANAFULA, BISANDUGU, BASANDO, KULIYA, NYADA, FWALA-KONYAN, KAYAO, VOLTA_HIGHLAND, GAMBAGA_ESCARPMENT, Eastern Sahara, Central Africa, GANEBOAFO, ATEBUBU, DONKORO_NKWANTA, MAMPON, BASSA-AFRAM, AFRAM, KWAHU-SOUTH, PRANG, ASANTE_MANSO, KUMASI, MANSO_NKWANTA, ADABOYE, ADANSE_MANSO, BUKURUWA, SHAI, ACCRA, MANKESSIM, ELMINA, SHAMA, WASSA, TARKWA, SANWI, AOWIN, SEHWI, NDENYE, MIDDLE_TANO, DIABE, AKPAFU, WUSUTA, AMEZDOFE, NOTSE, TODO: $WHAT$, LOME, KETA, NANUMBA, KETE_KARACHI, ATAKPAME, ABOMEY, WHYIDAH, SOKODE, KOTOKOL, UPPER_MONO, KPESSI, SAVALU, WEME, SHABE, Save, KETU, IFONYIN, BADAGRY, ILARO, IBARAPA, IGANA, ISEYIN, IGBODO-SAKI, OTEFAN, OGBOMOSO, OYO, IJAYE, IBADAN, ABEOKUTA, IKORODU, IJEBU, OWU, OSHUN, ILE-IFE, IJESHA, SILUKO, BENIN, BENIN-CITY, EDO, OWO, ONDO, OSSE, LOKOJA, KAKANDA, IKARE, EKITI, AJASE_IPO, GIRAGI, YAGBA, ODE_ITSERIKI, NEMBE, BENIN_MARSHES, NIGER_MARSHES, ASANTE_HILLS, TOGO_UPLANDS, JOS_PLATEAU, NIMBA_MOUNTS, LOWER_GUARA, UMAISHA, OPANDA, GUWARI, MODA, KEFFI, GBAGYE, IGALA, IBAH, ABAKALIKI, IGBO-UKWU, ONITSHA, NSUKKA, EAST_IGALA, SOUTH_IGBO, BONNY, OKRIKA, CALABAR, CHUKWU, UBURU, OTUKPO, IDOMA, BENDE, BOHI, ZANZAN, NASSIAN, KULANGO, KONG, DABAKALA, GYIMINI, SENUFO, BOUAKE, MIDDLE_NZI, SATAMA-SOKORO, EASTERN_NZI, EAST_ATTIE, NORTH_ATTIE, ATTIE, WEST_ATTIE, BORON, BORON-NORTH, BANDAMA, KWENI-EAST, BOU, DABOU, TIAGBA, KWENI, WORODUGU, SEGUELA, KORO, BARALA, MAU, BAFINKO, TURA, TOUBA, WORODUGU_EAST, KARAGWA, BEYTA, MUSADUGU, MACENTA, TOMA2, BUZYE, GUERZE, FALANKO, KISSI, MARA, LELE, DA, MAN, SERADU, MAFINDI-KABAYA, FIRIYA, MUSALA, SOLIMANA, LIMBA, KURANKA, KUNIKI, UPPER_BAFING, TIMBO, KOKASU, KONO, BANDAMA-WEST, BOUBO, GAGNOA, DAVO, UPPER_LOBO, LOWER_LOBO, KONDO, FOLGUE_KARU, KPELLE, GBANSHAY, GEBBA, BASSA, NUON, MANON, WENYON, TABU, SASSANDRA, NZO, NEYO, DIBRI, Zarmatarey, Zarmaganda, Sargan, Konni, Ader, Matankari - link = { autogenerated = yes imp = 5604 ck3 = 9613 ck3 = 9614 } # Gondogoro Pass -> Yuetgan, Guma - link = { autogenerated = yes imp = 6748 ck3 = 9604 ck3 = 9605 } # Ronglu -> Andir, Niya - link = { autogenerated = yes imp = 7543 imp = 7542 ck3 = 8337 } # Kebranitia, Rhammanitai -> SOUTH_DANAKIL + link = { autogenerated = yes imp = 5604 ck3 = 9613 ck3 = 9614 } # PASS -> Yuetgan, Guma + link = { autogenerated = yes imp = 6748 ck3 = 9604 ck3 = 9605 } # Niya -> Andir, Niya + link = { autogenerated = yes imp = 7543 imp = 7542 ck3 = 8337 } # Dire Dawa***, Harar*** -> SOUTH_DANAKIL link = { autogenerated = yes imp = 9327 ck3 = 5368 ck3 = 5383 } # Moncen -> Chechkeiev, Saran link = { autogenerated = yes imp = 9334 ck3 = 5234 } # Sedej -> Vyksa link = { autogenerated = yes imp = 9362 ck3 = 5168 } # Hiici -> Bezichi @@ -5153,112 +5156,109 @@ imperator_invictus = { link = { autogenerated = yes imp = 9447 imp = 9443 imp = 9445 imp = 9450 ck3 = 4611 } # Sahane, Goug, Hajira, Ngoussa -> TAGHYART link = { autogenerated = yes imp = 9242 imp = 9244 ck3 = 4460 } # Kukcha, Desert -> KURDAR link = { autogenerated = yes imp = 6766 ck3 = 4362 } # Yamchun -> Wakhan - link = { autogenerated = yes imp = 6626 ck3 = 4357 } # Kham -> Munjan + link = { autogenerated = yes imp = 6626 ck3 = 4357 } # Drapsaca -> Munjan link = { autogenerated = yes imp = 6743 ck3 = 1440 } # Shiyan -> Khotan link = { autogenerated = yes imp = 9439 imp = 9438 ck3 = 4610 } # Ouensa, Khobna -> TUGGURT - link = { autogenerated = yes imp = 9431 ck3 = 1005 } # $PROV5854$ -> Gulf of Bothnia - link = { autogenerated = yes imp = 9422 imp = 9423 imp = 9424 imp = 9425 imp = 9426 ck3 = 1006 } # $PROV5854$, $PROV5854$, $PROV5854$, $PROV5854$, $PROV5854$ -> Gulf of Finland + link = { autogenerated = yes imp = 9431 ck3 = 1005 } # Baltic_Sea -> sea_gulf_bothnia + link = { autogenerated = yes imp = 9422 imp = 9423 imp = 9424 imp = 9425 imp = 9426 ck3 = 1006 } # Baltic_Sea, Baltic_Sea, Baltic_Sea, Baltic_Sea, Baltic_Sea -> sea_gulf_finland link = { autogenerated = yes imp = 9357 ck3 = 5170 } # Jarvi -> Toropets link = { autogenerated = yes imp = 9354 ck3 = 5222 } # Mukka -> Velizh link = { autogenerated = yes imp = 9331 ck3 = 5386 ck3 = 5360 } # Udoma -> Vorona, Morchansk link = { autogenerated = yes imp = 9300 ck3 = 5499 } # Ipasyam -> Orskaya - link = { autogenerated = yes imp = 9259 imp = 9260 imp = 9262 imp = 9263 imp = 9264 imp = 9266 imp = 6058 imp = 7286 ck3 = 1178 } # Yazman, Marot, Patan Minara, Inayati, Chishtian, Anupgarh, Abhiria Secunda, Impassable -> Karur + link = { autogenerated = yes imp = 9259 imp = 9260 imp = 9262 imp = 9263 imp = 9264 imp = 9266 imp = 6058 imp = 7286 ck3 = 1178 } # Yazman, Marot, Patan Minara, Inayati, Chishtian, Anupgarh, Marudesa, Impassable -> Karur link = { autogenerated = yes imp = 9256 imp = 7289 ck3 = 911 } # Rajgangpur, Impassable -> Ratu link = { autogenerated = yes imp = 9255 imp = 9276 imp = 5365 ck3 = 1248 } # Rourkela, Baragaon, IP 366 -> Chutia link = { autogenerated = yes imp = 9254 ck3 = 3997 ck3 = 3988 } # Deogarh -> Rajgangpur, Deogarh link = { autogenerated = yes imp = 9253 ck3 = 3986 ck3 = 3984 } # Lahunipara -> Malayagiri, Bahalda - link = { autogenerated = yes imp = 9166 ck3 = 3228 } # $PROV7864$ -> Loire + link = { autogenerated = yes imp = 9166 ck3 = 3228 } # Liger_5 -> river_loire link = { autogenerated = yes imp = 9018 ck3 = 7142 } # Lanyar -> Shelji - link = { autogenerated = yes imp = 8799 imp = 8800 imp = 8801 imp = 8802 ck3 = 8685 } # Indian Ocean, Indian Ocean, Indian Ocean, Indian Ocean -> Bay of Bengal + link = { autogenerated = yes imp = 8799 imp = 8800 imp = 8801 imp = 8802 ck3 = 8685 } # Indian Ocean, Indian Ocean, Indian Ocean, Indian Ocean -> sea_bay_of_bengal link = { autogenerated = yes imp = 8763 ck3 = 7976 ck3 = 7977 } # Yancheng -> Toksu, Shayar link = { autogenerated = yes imp = 8755 ck3 = 7154 } # Bosteri -> Balasaghun link = { autogenerated = yes imp = 8751 imp = 8752 ck3 = 7164 } # Issyk, Yilihe -> Almaty link = { autogenerated = yes imp = 8735 imp = 8736 imp = 8734 ck3 = 8326 } # Weki, Weama, Mille -> HAYQ link = { autogenerated = yes imp = 8732 ck3 = 8344 ck3 = 8345 } # Gehar -> AWSSA, AWASH - link = { autogenerated = yes imp = 8184 ck3 = 6462 ck3 = 6464 ck3 = 6668 } # Tisit -> AL-BARKAT, EFERI, DJADO_ROUTE - link = { autogenerated = yes imp = 8180 imp = 8172 imp = 9140 ck3 = 6602 } # Harakat, Daydaban, Sahara Impassable -> ERG_GHATI - link = { autogenerated = yes imp = 8160 imp = 8154 ck3 = 6601 } # Adwesa, Wanin -> WADI_IRAWAN - link = { autogenerated = yes imp = 8157 imp = 8159 imp = 8187 ck3 = 6661 } # Dedris, Adri, Western Black Mountains -> GHAT_ROUTE - link = { autogenerated = yes imp = 8155 imp = 8156 ck3 = 6450 } # Mahruqah, Bergin -> TASSAWA - link = { autogenerated = yes imp = 7544 ck3 = 8336 } # Karmille -> DABAHU + link = { autogenerated = yes imp = 8180 imp = 8172 ck3 = 6602 } # Harakat, Daydaban -> ERG_GHATI + link = { autogenerated = yes imp = 8160 imp = 8154 imp = 8159 imp = 8157 imp = 8156 imp = 8155 ck3 = 6601 } # Adwesa, Wanin, Adri, Dedris, Birgin, Mahruqah -> WADI_IRAWAN + link = { autogenerated = yes imp = 7544 ck3 = 8336 } # Karmille*** -> DABAHU link = { autogenerated = yes imp = 7320 imp = 5364 ck3 = 907 } # Bandhavgarh, IP 365 -> Beohari - link = { autogenerated = yes imp = 7262 ck3 = 1181 ck3 = 7130 } # Maidankuyryk -> Sutkend, Sary-Ozek - link = { autogenerated = yes imp = 7256 ck3 = 7115 } # Zantak -> Koskul + link = { autogenerated = yes imp = 7262 ck3 = 1181 ck3 = 7130 } # Maidankuyryk* -> Sutkend, Sary-Ozek + link = { autogenerated = yes imp = 7256 ck3 = 7115 } # Zantak* -> Koskul link = { autogenerated = yes imp = 7247 ck3 = 901 } # Altinasar -> Jend link = { autogenerated = yes imp = 8757 ck3 = 7972 } # Chigu -> Uch_TARIM - link = { autogenerated = yes imp = 7183 ck3 = 1445 } # Rucya -> Aksu - link = { autogenerated = yes imp = 7110 ck3 = 7886 } # Vayapata -> Bagavadi + link = { autogenerated = yes imp = 7183 ck3 = 1445 } # Rucya* -> Aksu + link = { autogenerated = yes imp = 7110 ck3 = 7886 } # Vayapata* -> Bagavadi link = { autogenerated = yes imp = 7087 ck3 = 7874 } # Goulla -> Koppam link = { autogenerated = yes imp = 6941 imp = 6943 ck3 = 1116 } # Selour, Kathan -> Tenkasi link = { autogenerated = yes imp = 6747 ck3 = 9610 ck3 = 9606 } # Wumi -> Laodamogou, Keriya - link = { autogenerated = yes imp = 5837 imp = 5839 ck3 = 999 } # Oceanus Sarmaticus, Oceanus Sarmaticus -> The Sound - link = { autogenerated = yes imp = 5806 imp = 5828 ck3 = 694 } # Mare Septentrionale, Mare Septentrionale -> North Sea - link = { autogenerated = yes imp = 5799 imp = 5811 imp = 5812 imp = 5813 imp = 5821 imp = 5822 ck3 = 989 } # Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale -> North Sea - link = { autogenerated = yes imp = 5783 ck3 = 685 } # Mare Germanicum -> Coast of Zeeland - link = { autogenerated = yes imp = 5774 ck3 = 995 } # Mare Septentrionale -> East English Coast - link = { autogenerated = yes imp = 5767 ck3 = 693 } # Mare Orcadum -> Sea of Orkney - link = { autogenerated = yes imp = 5766 ck3 = 698 } # Oceanus Atlanticus -> The Minch - link = { autogenerated = yes imp = 5762 imp = 5763 imp = 5764 ck3 = 695 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> The Atlantic - link = { autogenerated = yes imp = 5750 imp = 5752 imp = 5753 ck3 = 978 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Atlantic - link = { autogenerated = yes imp = 5694 imp = 5704 ck3 = 726 } # Mare Britannicum, Mare Britannicum -> English Channel - link = { autogenerated = yes imp = 5690 imp = 5692 imp = 5695 imp = 5702 imp = 5746 ck3 = 991 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Mare Verginium, Oceanus Atlanticus -> Celtic Sea + link = { autogenerated = yes imp = 5837 imp = 5839 ck3 = 999 } # sea, sea -> sea_the_sound + link = { autogenerated = yes imp = 5806 imp = 5828 ck3 = 694 } # sea, sea -> sea_north_sea + link = { autogenerated = yes imp = 5799 imp = 5811 imp = 5812 imp = 5813 imp = 5821 imp = 5822 ck3 = 989 } # sea, sea, sea, sea, sea, sea -> sea_north_sea + link = { autogenerated = yes imp = 5783 ck3 = 685 } # sea -> sea_zeeland + link = { autogenerated = yes imp = 5774 ck3 = 995 } # sea -> sea_east_english_coast + link = { autogenerated = yes imp = 5767 ck3 = 693 } # sea -> sea_orkney + link = { autogenerated = yes imp = 5766 ck3 = 698 } # sea -> sea_the_minch + link = { autogenerated = yes imp = 5762 imp = 5763 imp = 5764 ck3 = 695 } # sea, sea, sea -> sea_atlantic + link = { autogenerated = yes imp = 5750 imp = 5752 imp = 5753 ck3 = 978 } # sea, sea, sea -> Atlantic + link = { autogenerated = yes imp = 5694 imp = 5704 ck3 = 726 } # sea, sea -> sea_english_channel + link = { autogenerated = yes imp = 5690 imp = 5692 imp = 5695 imp = 5702 imp = 5746 ck3 = 991 } # sea, sea, sea, sea, sea -> sea_celtic link = { autogenerated = yes imp = 5466 imp = 5470 ck3 = 7083 } # Shakthara, Vyenim -> Porsu-Burun - link = { autogenerated = yes imp = 4746 imp = 4747 imp = 5683 imp = 5685 imp = 5688 imp = 5689 ck3 = 8623 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> The Atlantic - link = { autogenerated = yes imp = 4730 imp = 4735 imp = 4736 imp = 4737 imp = 4739 imp = 4744 ck3 = 8624 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> The Atlantic - link = { autogenerated = yes imp = 4590 imp = 4614 imp = 6506 ck3 = 953 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Morocco - link = { autogenerated = yes imp = 4386 imp = 9258 ck3 = 3417 } # Jadamapura, Nuktani -> Dera_Ghazi_Khan - link = { autogenerated = yes imp = 2986 ck3 = 8690 } # Sinus Gangeticus -> Bay of Bengal - link = { autogenerated = yes imp = 2949 imp = 2950 imp = 7850 ck3 = 1293 } # Mare Erythraeum, Mare Erythraeum, SEAZONE IMPASSABLE WASTELAND -> EAST INDIAN OCEAN TI - link = { autogenerated = yes imp = 2824 imp = 2828 imp = 2831 imp = 2833 imp = 2834 imp = 2835 imp = 2837 imp = 2838 imp = 2840 imp = 2841 imp = 2843 imp = 2869 imp = 2871 imp = 2872 imp = 2873 imp = 2874 imp = 2875 imp = 2876 imp = 2877 imp = 2878 imp = 2879 imp = 2880 imp = 2881 imp = 2882 imp = 2883 imp = 2884 imp = 2885 imp = 2886 imp = 2887 imp = 2888 imp = 2889 imp = 2890 imp = 2891 imp = 2894 imp = 2903 imp = 2904 imp = 2905 imp = 2906 imp = 2907 imp = 2908 imp = 2909 imp = 2910 imp = 2911 imp = 2913 imp = 2914 imp = 2915 imp = 2917 imp = 2918 imp = 2920 imp = 2921 imp = 2922 imp = 2923 imp = 2925 imp = 2929 imp = 2930 imp = 2931 imp = 2932 imp = 8344 imp = 8345 imp = 7848 imp = 7849 ck3 = 1467 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND -> INDIAN OCEAN TI - link = { autogenerated = yes imp = 2790 imp = 2791 imp = 2792 imp = 2825 imp = 8748 imp = 8749 ck3 = 8676 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Oceanus, Oceanus -> Somali Sea - link = { autogenerated = yes imp = 2615 imp = 2622 imp = 6418 imp = 6436 ck3 = 8666 } # Sinus Thermaeus, Mare Aegaeum, Sinus Thermaeus, Mare Aegaeum -> Aegean Sea - link = { autogenerated = yes imp = 2587 ck3 = 946 } # Mare Lycium -> Gulf of Antalya - link = { autogenerated = yes imp = 5789 imp = 5790 imp = 5791 imp = 5794 ck3 = 996 } # Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Germanicum -> Dogger Bank - link = { autogenerated = yes imp = 5772 ck3 = 994 } # Mare Septentrionale -> Firth of Forth - link = { autogenerated = yes imp = 5768 imp = 5769 imp = 5770 imp = 6309 ck3 = 993 } # Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, LAKE -> Moray Firth - link = { autogenerated = yes imp = 5765 imp = 6308 ck3 = 992 } # Oceanus Atlanticus, LAKE -> The Minch - link = { autogenerated = yes imp = 5818 imp = 5798 imp = 5803 imp = 5804 imp = 5805 imp = 5807 imp = 5810 imp = 5814 imp = 5816 imp = 5817 imp = 5825 imp = 5826 ck3 = 988 } # Mare Septentrionale, Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Septentrionale, Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale -> North Sea - link = { autogenerated = yes imp = 6413 ck3 = 983 } # Asphaltites -> Dead Sea - link = { autogenerated = yes imp = 4599 imp = 2780 imp = 4591 imp = 4593 imp = 4598 ck3 = 981 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Gulf of Cadiz - link = { autogenerated = yes imp = 4734 imp = 4731 imp = 4732 ck3 = 980 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Portugal - link = { autogenerated = yes imp = 6414 ck3 = 979 } # Gennesar -> Tiveriade Lake - link = { autogenerated = yes imp = 5701 imp = 5686 imp = 5687 imp = 5696 imp = 6313 ck3 = 977 } # Mare Verginium, Mare Verginium, Mare Verginium, Mare Verginium, LAKE -> Bretagne Coast - link = { autogenerated = yes imp = 5754 imp = 5741 imp = 5742 imp = 5755 ck3 = 975 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Donegal Bay - link = { autogenerated = yes imp = 4743 imp = 4742 imp = 4952 imp = 4954 imp = 6316 ck3 = 974 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, LAKE -> Bay of Biscay - link = { autogenerated = yes imp = 5781 imp = 5784 ck3 = 973 } # Mare Germanicum, Mare Germanicum -> Wadden Sea - link = { autogenerated = yes imp = 4738 imp = 4733 imp = 4745 ck3 = 970 } # Oceanus Atlanticus, Oceanus Atlanticus, Mare Cantabrum -> Cape Finisterre - link = { autogenerated = yes imp = 2750 imp = 2749 imp = 2751 imp = 2753 ck3 = 969 } # Palus Maeotica, Palus Maeotica, Palus Maeotica, Palus Maeotica -> Sea of Azov - link = { autogenerated = yes imp = 5720 imp = 5719 imp = 5724 ck3 = 968 } # Mare Verginium, Mare Verginium, Mare Verginium -> Saint George's Channel - link = { autogenerated = yes imp = 5699 imp = 5712 ck3 = 967 } # Mare Britannicum, Mare Verginium -> English Channel - link = { autogenerated = yes imp = 5705 imp = 5706 ck3 = 966 } # Mare Britannicum, Mare Britannicum -> English Channel - link = { autogenerated = yes imp = 5710 ck3 = 965 } # Fretum Gallicum -> Strait of Dover - link = { autogenerated = yes imp = 6351 ck3 = 963 } # LAKE -> Vnern - link = { autogenerated = yes imp = 6349 ck3 = 962 } # LAKE -> Vttern + link = { autogenerated = yes imp = 4746 imp = 4747 imp = 5683 imp = 5685 imp = 5688 imp = 5689 ck3 = 8623 } # sea, sea, sea, sea, sea, sea -> sea_atlantic + link = { autogenerated = yes imp = 4730 imp = 4735 imp = 4736 imp = 4737 imp = 4739 imp = 4744 ck3 = 8624 } # sea, sea, sea, sea, sea, sea -> sea_atlantic + link = { autogenerated = yes imp = 4590 imp = 4614 imp = 6506 ck3 = 953 } # sea, sea, SEA -> sea_morocco + link = { autogenerated = yes imp = 4386 imp = 9258 ck3 = 3417 } # Jampur, Nuktani -> Dera_Ghazi_Khan + link = { autogenerated = yes imp = 2986 ck3 = 8690 } # sea -> sea_bay_of_bengal + link = { autogenerated = yes imp = 2949 imp = 2950 imp = 7850 ck3 = 1293 } # sea, sea, SEAZONE IMPASSABLE WASTELAND -> EAST INDIAN OCEAN TI + link = { autogenerated = yes imp = 2824 imp = 2828 imp = 2831 imp = 2833 imp = 2834 imp = 2835 imp = 2837 imp = 2838 imp = 2840 imp = 2841 imp = 2843 imp = 2869 imp = 2871 imp = 2872 imp = 2873 imp = 2874 imp = 2875 imp = 2876 imp = 2877 imp = 2878 imp = 2879 imp = 2880 imp = 2881 imp = 2882 imp = 2883 imp = 2884 imp = 2885 imp = 2886 imp = 2887 imp = 2888 imp = 2889 imp = 2890 imp = 2891 imp = 2894 imp = 2903 imp = 2904 imp = 2905 imp = 2906 imp = 2907 imp = 2908 imp = 2909 imp = 2910 imp = 2911 imp = 2913 imp = 2914 imp = 2915 imp = 2917 imp = 2918 imp = 2920 imp = 2921 imp = 2922 imp = 2923 imp = 2925 imp = 2929 imp = 2930 imp = 2931 imp = 2932 imp = 8344 imp = 8345 imp = 7848 imp = 7849 ck3 = 1467 } # sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND -> INDIAN OCEAN TI + link = { autogenerated = yes imp = 2790 imp = 2791 imp = 2792 imp = 2825 imp = 8748 imp = 8749 ck3 = 8676 } # sea, sea, sea, sea, sea, sea -> sea_somali_sea + link = { autogenerated = yes imp = 2615 imp = 2622 imp = 6418 imp = 6436 ck3 = 8666 } # sea, sea, LAKE, LAKE -> sea_aegean + link = { autogenerated = yes imp = 2587 ck3 = 946 } # sea -> sea_gulf_antalya + link = { autogenerated = yes imp = 5789 imp = 5790 imp = 5791 imp = 5794 ck3 = 996 } # sea, sea, sea, sea -> sea_dogger_bank + link = { autogenerated = yes imp = 5772 ck3 = 994 } # sea -> sea_firth_of_forth + link = { autogenerated = yes imp = 5768 imp = 5769 imp = 5770 imp = 6309 ck3 = 993 } # sea, sea, sea, LAKE -> sea_moray_firth + link = { autogenerated = yes imp = 5765 imp = 6308 ck3 = 992 } # sea, LAKE -> sea_the_minch + link = { autogenerated = yes imp = 5818 imp = 5798 imp = 5803 imp = 5804 imp = 5805 imp = 5807 imp = 5810 imp = 5814 imp = 5816 imp = 5817 imp = 5825 imp = 5826 ck3 = 988 } # sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea -> sea_north_sea + link = { autogenerated = yes imp = 6413 ck3 = 983 } # LAKE -> Dead Sea + link = { autogenerated = yes imp = 4599 imp = 2780 imp = 4591 imp = 4593 imp = 4598 ck3 = 981 } # sea, sea, sea, sea, sea -> sea_gulf_cadiz + link = { autogenerated = yes imp = 4734 imp = 4731 imp = 4732 ck3 = 980 } # sea, sea, sea -> sea_portugal + link = { autogenerated = yes imp = 6414 ck3 = 979 } # LAKE -> Tiveriade Lake + link = { autogenerated = yes imp = 5701 imp = 5686 imp = 5687 imp = 5696 imp = 6313 ck3 = 977 } # sea, sea, sea, sea, LAKE -> sea_bretagne + link = { autogenerated = yes imp = 5754 imp = 5741 imp = 5742 imp = 5755 ck3 = 975 } # sea, sea, sea, sea -> sea_donegal_bay + link = { autogenerated = yes imp = 4743 imp = 4742 imp = 4952 imp = 4954 imp = 6316 ck3 = 974 } # sea, sea, sea, sea, LAKE -> sea_bay_biscay + link = { autogenerated = yes imp = 5781 imp = 5784 ck3 = 973 } # sea, sea -> sea_waddenzee + link = { autogenerated = yes imp = 4738 imp = 4733 imp = 4745 ck3 = 970 } # sea, sea, sea -> sea_finisterre + link = { autogenerated = yes imp = 2750 imp = 2749 imp = 2751 imp = 2753 ck3 = 969 } # sea, sea, sea, sea -> sea_azov + link = { autogenerated = yes imp = 5720 imp = 5719 imp = 5724 ck3 = 968 } # sea, sea, sea -> sea_st_georges_channel + link = { autogenerated = yes imp = 5699 imp = 5712 ck3 = 967 } # sea, sea -> sea_english_channel + link = { autogenerated = yes imp = 5705 imp = 5706 ck3 = 966 } # sea, sea -> sea_english_channel + link = { autogenerated = yes imp = 5710 ck3 = 965 } # sea -> sea_dover + link = { autogenerated = yes imp = 6351 ck3 = 963 } # LAKE -> lake_vanern + link = { autogenerated = yes imp = 6349 ck3 = 962 } # LAKE -> lake_vattern link = { autogenerated = yes imp = 6741 ck3 = 9608 ck3 = 9607 } # Yutian -> Dondan_Oilik, Lafak link = { autogenerated = yes imp = 6750 ck3 = 9603 } # Iuwo -> Endere - link = { autogenerated = yes imp = 6752 imp = 8764 ck3 = 9602 } # Endere, Xiaowan -> Saca - link = { autogenerated = yes imp = 6347 ck3 = 959 } # LAKE -> Mlaren - link = { autogenerated = yes imp = 2730 ck3 = 954 } # Fretum Gaditanum -> Strait of Gibraltar - link = { autogenerated = yes imp = 4588 imp = 2993 imp = 2994 imp = 2997 imp = 4572 imp = 4573 imp = 4574 imp = 4575 imp = 4576 imp = 4577 imp = 4584 ck3 = 952 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum -> Caspian Sea - link = { autogenerated = yes imp = 2733 imp = 2755 imp = 2757 imp = 2758 imp = 2762 imp = 2763 ck3 = 951 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea - link = { autogenerated = yes imp = 2732 imp = 2767 imp = 2769 ck3 = 950 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea - link = { autogenerated = yes imp = 2779 imp = 2740 imp = 2741 imp = 6390 imp = 9191 ck3 = 949 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, LAKE, Hypanis -> Black Sea - link = { autogenerated = yes imp = 2737 imp = 2736 imp = 2738 imp = 2771 ck3 = 948 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Gulf of Varna - link = { autogenerated = yes imp = 2680 imp = 2584 imp = 2585 imp = 2586 imp = 8028 imp = 8051 ck3 = 945 } # Mare Cilicium, Mare Phoenicium, Mare Cilicium, Mare Cilicium, Pyramus, Cydnus -> Gulf of Alexandretta - link = { autogenerated = yes imp = 6444 ck3 = 944 } # Mare Aralense -> Aral Sea - link = { autogenerated = yes imp = 2609 imp = 2605 imp = 2614 imp = 2620 imp = 6437 imp = 7906 imp = 7907 ck3 = 942 } # Mare Aegaeum, Fretum Carysteum, Fretum Artemisium, Mare Aegaeum, Mare Aegaeum, Pagasaeus Sinus, Sinus Malianus -> Aegean Sea - link = { autogenerated = yes imp = 2679 imp = 2677 ck3 = 941 } # Mare Phoenicium, Mare Phoenicium -> Coast of Cyprus - link = { autogenerated = yes imp = 2669 imp = 2580 imp = 2581 imp = 2582 ck3 = 940 } # Mare Phoenicium, Mare Phoenicium, Mare Phoenicium, Mare Phoenicium -> Coast of Jerusalem + link = { autogenerated = yes imp = 6752 imp = 8764 ck3 = 9602 } # Sherchan*, Xiaowan -> Saca + link = { autogenerated = yes imp = 6347 ck3 = 959 } # LAKE -> sea_malaren + link = { autogenerated = yes imp = 2730 ck3 = 954 } # sea -> sea_gibraltar + link = { autogenerated = yes imp = 4588 imp = 2993 imp = 2994 imp = 2997 imp = 4572 imp = 4573 imp = 4574 imp = 4575 imp = 4576 imp = 4577 imp = 4584 ck3 = 952 } # sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea -> sea_caspian + link = { autogenerated = yes imp = 2733 imp = 2755 imp = 2757 imp = 2758 imp = 2762 imp = 2763 ck3 = 951 } # sea, sea, sea, sea, sea, sea -> sea_black + link = { autogenerated = yes imp = 2732 imp = 2767 imp = 2769 ck3 = 950 } # sea, sea, sea -> sea_black + link = { autogenerated = yes imp = 2779 imp = 2740 imp = 2741 imp = 6390 imp = 9191 ck3 = 949 } # sea, sea, sea, LAKE, Hypanis_1 -> sea_black + link = { autogenerated = yes imp = 2737 imp = 2736 imp = 2738 imp = 2771 ck3 = 948 } # sea, sea, sea, sea -> sea_gulf_varna + link = { autogenerated = yes imp = 2680 imp = 2584 imp = 2585 imp = 2586 imp = 8028 imp = 8051 ck3 = 945 } # sea, sea, sea, sea, Pyramos, Cydnus -> sea_gulf_alexandretta + link = { autogenerated = yes imp = 6444 ck3 = 944 } # LAKE -> sea_aral + link = { autogenerated = yes imp = 2609 imp = 2605 imp = 2614 imp = 2620 imp = 6437 imp = 7906 imp = 7907 ck3 = 942 } # sea, sea, sea, sea, LAKE, Pagasaeus Sinus, Sinus Malianus -> sea_aegean + link = { autogenerated = yes imp = 2679 imp = 2677 ck3 = 941 } # sea, sea -> sea_cyprus + link = { autogenerated = yes imp = 2669 imp = 2580 imp = 2581 imp = 2582 ck3 = 940 } # sea, sea, sea, sea -> sea_jerusalem link = { autogenerated = yes imp = 9377 ck3 = 94 ck3 = 96 ck3 = 97 ck3 = 98 } # Ohut -> REVAL, JARVA, WESENBURG, NARVA - link = { autogenerated = yes imp = 2667 imp = 2578 ck3 = 939 } # Mare Aegyptium, Delta Nili -> Nile Delta - link = { autogenerated = yes imp = 2662 imp = 2576 ck3 = 938 } # Mare Aegyptium, Mare Aegyptium -> Libyan Sea - link = { autogenerated = yes imp = 2663 imp = 2597 imp = 2601 imp = 2660 ck3 = 937 } # Mare Aegyptium, Mare Aegyptium, Mare Aegyptium, Mare Aegyptium -> Sea of Crete - link = { autogenerated = yes imp = 2594 imp = 2590 imp = 2592 imp = 2593 ck3 = 936 } # Mare Icarium, Mare Icarium, Mare Carpathium, Mare Icarium -> Aegean Sea - link = { autogenerated = yes imp = 7170 imp = 7173 ck3 = 932 } # Magaris Kalinga, Caritra -> Ratnagiri + link = { autogenerated = yes imp = 2667 imp = 2578 ck3 = 939 } # sea, sea -> sea_nile_delta + link = { autogenerated = yes imp = 2662 imp = 2576 ck3 = 938 } # sea, sea -> sea_libya + link = { autogenerated = yes imp = 2663 imp = 2597 imp = 2601 imp = 2660 ck3 = 937 } # sea, sea, sea, sea -> sea_crete + link = { autogenerated = yes imp = 2594 imp = 2590 imp = 2592 imp = 2593 ck3 = 936 } # sea, sea, sea, sea -> sea_aegean + link = { autogenerated = yes imp = 7170 imp = 7173 ck3 = 932 } # Magaris, Caritra -> Ratnagiri link = { autogenerated = yes imp = 9249 imp = 7100 ck3 = 931 } # Dhenka, Mahdnada -> Athgarh link = { autogenerated = yes imp = 9373 ck3 = 93 ck3 = 99 } # Anoppi -> LEAL, PARNU link = { autogenerated = yes imp = 9245 ck3 = 927 } # Sisupalgarh -> Bhubaneswar - link = { autogenerated = yes imp = 5442 imp = 7455 imp = 5991 ck3 = 923 } # Tummana, Amrakuta, Jungle -> Amarkantak + link = { autogenerated = yes imp = 5442 imp = 7455 imp = 5991 ck3 = 923 } # UNINHABITABLE, Amrakuta, Jungle -> Amarkantak link = { autogenerated = yes imp = 7068 ck3 = 922 } # Bhurhikara -> Pali link = { autogenerated = yes imp = 7169 ck3 = 921 } # Pali -> Savarinarayana link = { autogenerated = yes imp = 9372 ck3 = 92 ck3 = 95 } # Kosk -> HAPSAL, HARJUMAA @@ -5270,114 +5270,114 @@ imperator_invictus = { link = { autogenerated = yes imp = 9308 ck3 = 897 } # Zamri -> Iletsk link = { autogenerated = yes imp = 9304 imp = 9301 ck3 = 896 } # Dahyuupati, Arzatam -> Aqtobe link = { autogenerated = yes imp = 9371 ck3 = 88 ck3 = 89 ck3 = 90 ck3 = 91 } # Soodak -> ARENSBURG, SONEBURG, MUHU, DAGO - link = { autogenerated = yes imp = 4441 ck3 = 876 } # Asthagora -> Arrah - link = { autogenerated = yes imp = 4465 imp = 7473 ck3 = 875 } # Bhabua, Sasaram -> Jaund - link = { autogenerated = yes imp = 7748 ck3 = 8740 } # Sinus Corinthius -> Gulf of Lepanto + link = { autogenerated = yes imp = 4441 ck3 = 876 } # Alavi -> Arrah + link = { autogenerated = yes imp = 4465 imp = 7473 ck3 = 875 } # Bhabua, Sasaram* -> Jaund + link = { autogenerated = yes imp = 7748 ck3 = 8740 } # Sinus Corinthus -> sea_gulf_lepanto link = { autogenerated = yes imp = 9270 ck3 = 874 } # Barakar -> Kukkutapada - link = { autogenerated = yes imp = 6443 ck3 = 8738 } # Sarygamysh -> Sarygamysh Lake + link = { autogenerated = yes imp = 6443 ck3 = 8738 } # LAKE -> Sarygamysh Lake link = { autogenerated = yes imp = 4446 ck3 = 871 ck3 = 872 } # Campa -> Campa, Vikramasila link = { autogenerated = yes imp = 4440 ck3 = 869 } # Pataliputra -> Maner - link = { autogenerated = yes imp = 2976 imp = 2975 imp = 2979 imp = 6457 imp = 6458 imp = 8798 ck3 = 8684 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, LAKE, LAKE, Indian Ocean -> Bay of Bengal - link = { autogenerated = yes imp = 8341 imp = 2895 imp = 2899 imp = 2900 imp = 2901 imp = 2933 imp = 2935 imp = 8336 imp = 8337 imp = 8339 imp = 8340 ck3 = 8683 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Laccadive Sea - link = { autogenerated = yes imp = 2926 imp = 2860 imp = 2861 imp = 2862 ck3 = 8682 } # Mare Erythraeum, Gulf of Minnagara, Mare Erythraeum, Mare Erythraeum -> Arabian Sea - link = { autogenerated = yes imp = 2857 imp = 2854 ck3 = 8681 } # Mare Erythraeum, Rann of Kutch -> Arabian Sea - link = { autogenerated = yes imp = 2845 imp = 2842 imp = 2844 imp = 2847 ck3 = 8680 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea - link = { autogenerated = yes imp = 4445 ck3 = 868 } # Rajagagriha -> Rajagrha - link = { autogenerated = yes imp = 2811 imp = 2810 ck3 = 8679 } # Sinus Persicus, Sinus Persicus -> Persian Gulf - link = { autogenerated = yes imp = 2822 imp = 2812 imp = 2820 ck3 = 8678 } # Sinus Persicus, Sinus Persicus, Sinus Persicus -> Persian Gulf - link = { autogenerated = yes imp = 2788 imp = 2786 ck3 = 8675 } # Mare Erythraeum, Sinus Adenensis -> Gulf of Aden - link = { autogenerated = yes imp = 2784 imp = 2785 ck3 = 8674 } # Sinus Adenensis, Sinus Adenensis -> Gulf of Aden - link = { autogenerated = yes imp = 1498 imp = 1484 imp = 1485 imp = 1486 imp = 1487 imp = 1497 imp = 1499 ck3 = 8673 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus -> Red Sea - link = { autogenerated = yes imp = 2754 imp = 2734 imp = 2735 imp = 2744 ck3 = 8672 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea - link = { autogenerated = yes imp = 2759 imp = 2745 imp = 2746 imp = 2756 imp = 2760 imp = 2761 ck3 = 8671 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea - link = { autogenerated = yes imp = 2752 imp = 2748 ck3 = 8670 } # Palus Maeotica, Bosporus Cimmerius -> Kerch Strait + link = { autogenerated = yes imp = 2976 imp = 2975 imp = 2979 imp = 6457 imp = 6458 imp = 8798 ck3 = 8684 } # sea, sea, sea, LAKE, LAKE, Indian Ocean -> sea_bay_of_bengal + link = { autogenerated = yes imp = 8341 imp = 2895 imp = 2899 imp = 2900 imp = 2901 imp = 2933 imp = 2935 imp = 8336 imp = 8337 imp = 8339 imp = 8340 ck3 = 8683 } # sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea -> sea_laccadive_sea + link = { autogenerated = yes imp = 2926 imp = 2860 imp = 2861 imp = 2862 ck3 = 8682 } # sea, sea, sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2857 imp = 2854 ck3 = 8681 } # sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2845 imp = 2842 imp = 2844 imp = 2847 ck3 = 8680 } # sea, sea, sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 4445 ck3 = 868 } # Rajagagrha -> Rajagrha + link = { autogenerated = yes imp = 2811 imp = 2810 ck3 = 8679 } # sea, sea -> sea_persian_gulf + link = { autogenerated = yes imp = 2822 imp = 2812 imp = 2820 ck3 = 8678 } # sea, sea, sea -> sea_persian_gulf + link = { autogenerated = yes imp = 2788 imp = 2786 ck3 = 8675 } # sea, sea -> sea_gulf_aden + link = { autogenerated = yes imp = 2784 imp = 2785 ck3 = 8674 } # sea, sea -> sea_gulf_aden + link = { autogenerated = yes imp = 1498 imp = 1484 imp = 1485 imp = 1486 imp = 1487 imp = 1497 imp = 1499 ck3 = 8673 } # S, S, S, S, S, S, S -> sea_red_sea + link = { autogenerated = yes imp = 2754 imp = 2734 imp = 2735 imp = 2744 ck3 = 8672 } # sea, sea, sea, sea -> sea_black + link = { autogenerated = yes imp = 2759 imp = 2745 imp = 2746 imp = 2756 imp = 2760 imp = 2761 ck3 = 8671 } # sea, sea, sea, sea, sea, sea -> sea_black + link = { autogenerated = yes imp = 2752 imp = 2748 ck3 = 8670 } # sea, sea -> sea_kerch link = { autogenerated = yes imp = 4463 ck3 = 867 ck3 = 870 } # Malini -> Odantapuri, Bihar_Sharif - link = { autogenerated = yes imp = 2768 imp = 2742 imp = 2743 imp = 2747 imp = 2764 imp = 2765 imp = 2766 ck3 = 8669 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea - link = { autogenerated = yes imp = 2731 imp = 2623 imp = 2770 imp = 8019 ck3 = 8668 } # Pontus Euxinus, Propontis, Pontus Euxinus, Pontus Euxinus -> Bosporus - link = { autogenerated = yes imp = 2772 imp = 2773 imp = 2774 imp = 2775 imp = 2776 imp = 2777 imp = 2778 ck3 = 8667 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea - link = { autogenerated = yes imp = 2616 imp = 2618 imp = 2621 imp = 8020 ck3 = 8665 } # Mare Thracum, Hellespontus, Mare Aegaeum, Mare Thracum -> Dardanelles - link = { autogenerated = yes imp = 2672 imp = 2668 imp = 2671 imp = 2673 ck3 = 8664 } # Mare Phoenicium, Mare Aegyptium, Mare Phoenicium, Mare Aegyptium -> Levantine Sea - link = { autogenerated = yes imp = 2670 imp = 2664 imp = 2665 imp = 2666 ck3 = 8663 } # Mare Aegyptium, Mare Aegyptium, Mare Aegyptium, Mare Aegyptium -> Levantine Sea - link = { autogenerated = yes imp = 2678 imp = 2674 imp = 2675 imp = 2676 ck3 = 8662 } # Mare Lycium, Mare Internum, Mare Aegyptium, Mare Aegyptium -> Levantine Sea - link = { autogenerated = yes imp = 2596 imp = 2588 imp = 2589 imp = 2591 ck3 = 8661 } # Mare Aegyptium, Mare Lycium, Mare Lycium, Mare Lycium -> Levantine Sea - link = { autogenerated = yes imp = 2583 ck3 = 8660 } # Mare Phoenicium -> Coast of Syria + link = { autogenerated = yes imp = 2768 imp = 2742 imp = 2743 imp = 2747 imp = 2764 imp = 2765 imp = 2766 ck3 = 8669 } # sea, sea, sea, sea, sea, sea, sea -> sea_black + link = { autogenerated = yes imp = 2731 imp = 2623 imp = 2770 imp = 8019 ck3 = 8668 } # sea, sea, sea, Pontus Euxinus -> sea_bosporus + link = { autogenerated = yes imp = 2772 imp = 2773 imp = 2774 imp = 2775 imp = 2776 imp = 2777 imp = 2778 ck3 = 8667 } # sea, sea, sea, sea, sea, sea, sea -> sea_black + link = { autogenerated = yes imp = 2616 imp = 2618 imp = 2621 imp = 8020 ck3 = 8665 } # sea, sea, sea, Sinus Nigrum -> sea_dardanelles + link = { autogenerated = yes imp = 2672 imp = 2668 imp = 2671 imp = 2673 ck3 = 8664 } # sea, sea, sea, sea -> sea_levantine + link = { autogenerated = yes imp = 2670 imp = 2664 imp = 2665 imp = 2666 ck3 = 8663 } # sea, sea, sea, sea -> sea_levantine + link = { autogenerated = yes imp = 2678 imp = 2674 imp = 2675 imp = 2676 ck3 = 8662 } # sea, sea, sea, sea -> sea_levantine + link = { autogenerated = yes imp = 2596 imp = 2588 imp = 2589 imp = 2591 ck3 = 8661 } # sea, sea, sea, sea -> sea_levantine + link = { autogenerated = yes imp = 2583 ck3 = 8660 } # sea -> sea_syria link = { autogenerated = yes imp = 7363 imp = 9274 ck3 = 866 } # Purulia, Ajodhya -> Baghmundi - link = { autogenerated = yes imp = 2577 ck3 = 8659 } # Mare Aegyptium -> Levantine Sea - link = { autogenerated = yes imp = 2611 imp = 2600 imp = 2610 imp = 4723 ck3 = 8658 } # Mare Ionium, Mare Aegyptium, Mare Ionium, Sinus Messenius -> Messenian Sea - link = { autogenerated = yes imp = 2657 imp = 2650 imp = 2654 imp = 2658 imp = 2659 ck3 = 8657 } # Mare Ionium, Mare Ionium, Mare Libycum, Mare Aegyptium, Mare Aegyptium -> Ionian Sea - link = { autogenerated = yes imp = 2653 imp = 2635 imp = 2637 imp = 2639 imp = 2640 imp = 2641 imp = 2652 imp = 2655 ck3 = 8656 } # Mare Libycum, Mare Libycum, Mare Libycum, Mare Ionium, Mare Libycum, Mare Libycum, Mare Ionium, Mare Ionium -> Ionian Sea - link = { autogenerated = yes imp = 2642 imp = 2571 imp = 2572 imp = 2573 imp = 2643 imp = 2644 imp = 2645 ck3 = 8655 } # Mare Libycum, Syrtis Maior, Syrtis Maior, Syrtis Maior, Syrtis Maior, Syrtis Maior, Mare Libycum -> Gulf of Sidra - link = { autogenerated = yes imp = 2634 imp = 2569 imp = 2570 imp = 2632 imp = 2636 ck3 = 8654 } # Mare Libycum, Mare Libycum, Mare Libycum, Mare Libycum, Mare Libycum -> Coast of Tripoli - link = { autogenerated = yes imp = 2647 imp = 2501 imp = 2510 imp = 2514 imp = 2518 imp = 2638 imp = 2651 ck3 = 8653 } # Mare Ionium, Fretum Siculum, Mare Ionium, Mare Ionium, Mare Ionium, Mare Ionium, Mare Ionium -> Ionian Sea - link = { autogenerated = yes imp = 2545 imp = 2534 imp = 2535 imp = 2536 ck3 = 8652 } # Mare Superum, Mare Superum, Mare Superum, Mare Superum -> Adriatic Sea - link = { autogenerated = yes imp = 2531 imp = 2530 imp = 2532 imp = 2544 ck3 = 8651 } # Mare Superum, Sinus Sipontinus, Mare Superum, Mare Superum -> Adriatic Sea - link = { autogenerated = yes imp = 2540 imp = 2512 imp = 2526 imp = 2527 imp = 2528 imp = 6357 imp = 6358 ck3 = 8650 } # Mare Superum, Sinus Liburnus, Sinus Liburnus, Mare Superum, Mare Superum, LAKE, LAKE -> Adriatic Sea - link = { autogenerated = yes imp = 7177 ck3 = 865 } # Tamralipti -> Dantan - link = { autogenerated = yes imp = 2539 imp = 2508 imp = 2509 ck3 = 8649 } # Mare Superum, Mare Superum, Mare Superum -> Adriatic Sea - link = { autogenerated = yes imp = 2631 imp = 2565 imp = 2566 imp = 2567 imp = 2568 imp = 2626 imp = 2628 ck3 = 8648 } # Mare Libycum, Fretum Siculum, Sinus Neapolitanus, Mare Libycum, Syrtis Minor, Mare Libycum, Mare Libycum -> Gulf of Gabes - link = { autogenerated = yes imp = 2564 imp = 2624 imp = 2687 imp = 6319 ck3 = 8647 } # Sinus Uticensis, Fretum Siculum, Mare Tyrrhenum, LAKE -> Gulf of Tunis - link = { autogenerated = yes imp = 2683 imp = 2682 imp = 2684 imp = 2685 imp = 2686 ck3 = 8646 } # Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum -> Tyrrhenian Sea - link = { autogenerated = yes imp = 2681 imp = 2502 imp = 2505 ck3 = 8645 } # Mare Tyrrhenum, Sinus Paestanus, Mare Tyrrhenum -> Tyrrhenian Sea - link = { autogenerated = yes imp = 2701 imp = 2563 ck3 = 8644 } # Mare Internum, Sinus Hipponensis -> Punic Sea - link = { autogenerated = yes imp = 2688 ck3 = 8643 } # Mare Sardoum -> Coast of Sardinia - link = { autogenerated = yes imp = 2702 imp = 2703 ck3 = 8642 } # Mare Internum, Mare Sardoum -> Punic Sea - link = { autogenerated = yes imp = 2560 imp = 2724 imp = 2726 ck3 = 8641 } # Mare Hibericum, Mare Hibericum, Mare Hibericum -> Coast of Algier - link = { autogenerated = yes imp = 2711 imp = 2713 imp = 2720 ck3 = 8640 } # Mare Sardoum, Mare Sardoum, Mare Sardoum -> Balearic Sea + link = { autogenerated = yes imp = 2577 ck3 = 8659 } # sea -> sea_levantine + link = { autogenerated = yes imp = 2611 imp = 2600 imp = 2610 imp = 4723 ck3 = 8658 } # sea, sea, sea, sea -> sea_messenian + link = { autogenerated = yes imp = 2657 imp = 2650 imp = 2654 imp = 2658 imp = 2659 ck3 = 8657 } # sea, sea, sea, sea, sea -> sea_ionia + link = { autogenerated = yes imp = 2653 imp = 2635 imp = 2637 imp = 2639 imp = 2640 imp = 2641 imp = 2652 imp = 2655 ck3 = 8656 } # sea, sea, sea, sea, sea, sea, sea, sea -> sea_ionia + link = { autogenerated = yes imp = 2642 imp = 2571 imp = 2572 imp = 2573 imp = 2643 imp = 2644 imp = 2645 ck3 = 8655 } # sea, sea, sea, sea, sea, sea, sea -> sea_gulf_sidra + link = { autogenerated = yes imp = 2634 imp = 2569 imp = 2570 imp = 2632 imp = 2636 ck3 = 8654 } # sea, sea, sea, sea, sea -> sea_tripoli + link = { autogenerated = yes imp = 2647 imp = 2501 imp = 2510 imp = 2514 imp = 2518 imp = 2638 imp = 2651 ck3 = 8653 } # sea, sea, sea, sea, sea, sea, sea -> sea_ionia + link = { autogenerated = yes imp = 2545 imp = 2534 imp = 2535 imp = 2536 ck3 = 8652 } # sea, sea, sea, sea -> sea_adriatic_sea + link = { autogenerated = yes imp = 2531 imp = 2530 imp = 2532 imp = 2544 ck3 = 8651 } # sea, sea, sea, sea -> sea_adriatic_sea + link = { autogenerated = yes imp = 2540 imp = 2512 imp = 2526 imp = 2527 imp = 2528 imp = 6357 imp = 6358 ck3 = 8650 } # sea, sea, sea, sea, sea, LAKE, LAKE -> sea_adriatic_sea + link = { autogenerated = yes imp = 7177 ck3 = 865 } # Tamalites -> Dantan + link = { autogenerated = yes imp = 2539 imp = 2508 imp = 2509 ck3 = 8649 } # sea, sea, sea -> sea_adriatic_sea + link = { autogenerated = yes imp = 2631 imp = 2565 imp = 2566 imp = 2567 imp = 2568 imp = 2626 imp = 2628 ck3 = 8648 } # sea, sea, sea, sea, sea, sea, sea -> sea_gulf_gabes + link = { autogenerated = yes imp = 2564 imp = 2624 imp = 2687 imp = 6319 ck3 = 8647 } # sea, sea, sea, LAKE -> sea_gulf_tunis + link = { autogenerated = yes imp = 2683 imp = 2682 imp = 2684 imp = 2685 imp = 2686 ck3 = 8646 } # sea, sea, sea, sea, sea -> sea_tyrrhenian + link = { autogenerated = yes imp = 2681 imp = 2502 imp = 2505 ck3 = 8645 } # sea, sea, sea -> sea_tyrrhenian + link = { autogenerated = yes imp = 2701 imp = 2563 ck3 = 8644 } # sea, sea -> sea_punic + link = { autogenerated = yes imp = 2688 ck3 = 8643 } # sea -> sea_sardinian_coast + link = { autogenerated = yes imp = 2702 imp = 2703 ck3 = 8642 } # sea, sea -> sea_punic + link = { autogenerated = yes imp = 2560 imp = 2724 imp = 2726 ck3 = 8641 } # sea, sea, sea -> sea_algier + link = { autogenerated = yes imp = 2711 imp = 2713 imp = 2720 ck3 = 8640 } # sea, sea, sea -> sea_balearic link = { autogenerated = yes imp = 7796 ck3 = 864 } # Bidyadhari -> Chandraketugarh - link = { autogenerated = yes imp = 2708 imp = 2706 imp = 2709 imp = 2712 imp = 2714 ck3 = 8639 } # Mare Sardoum, Mare Sardoum, Mare Sardoum, Mare Sardoum, Mare Sardoum -> Balearic Sea - link = { autogenerated = yes imp = 2692 ck3 = 8638 } # Mare Sardoum -> Ligurian Sea - link = { autogenerated = yes imp = 2691 ck3 = 8637 } # Mare Tyrrhenum -> Strait of Bonifacio - link = { autogenerated = yes imp = 2693 imp = 2546 ck3 = 8636 } # Mare Tyrrhenum, Mare Tyrrhenum -> Corsica Channel - link = { autogenerated = yes imp = 2694 imp = 2696 ck3 = 8635 } # Mare Ligusticum, Mare Ligusticum -> Ligurian Sea - link = { autogenerated = yes imp = 2715 imp = 2553 ck3 = 8634 } # Mare Balearium, Mare Internum -> Coast of Barcelona - link = { autogenerated = yes imp = 2523 imp = 8037 ck3 = 8633 } # Mare Hibericum, Iberus -> Coast of Tarragona - link = { autogenerated = yes imp = 2719 ck3 = 8632 } # Mare Balearium -> Balearic Sea - link = { autogenerated = yes imp = 2718 ck3 = 8631 } # Mare Hibericum -> Balearic Sea - link = { autogenerated = yes imp = 2722 imp = 2721 ck3 = 8630 } # Mare Balearium, Mare Balearium -> Balearic Sea - link = { autogenerated = yes imp = 2723 ck3 = 8629 } # Mare Hibericum -> Balearic Sea - link = { autogenerated = yes imp = 2525 imp = 2725 ck3 = 8628 } # Mare Hibericum, Mare Hibericum -> Coast of Murcia - link = { autogenerated = yes imp = 2554 ck3 = 8627 } # Mare Hibericum -> Alboran Sea - link = { autogenerated = yes imp = 2729 imp = 2555 imp = 2556 imp = 2557 ck3 = 8626 } # Mare Hibericum, Mare Hibericum, Mare Hibericum, Mare Hibericum -> Alboran Sea - link = { autogenerated = yes imp = 8279 ck3 = 8622 } # Oceanus Atlanticus -> Canarian Sea - link = { autogenerated = yes imp = 8278 ck3 = 8621 } # Oceanus Atlanticus -> Coast of Morocco - link = { autogenerated = yes imp = 4722 imp = 4589 imp = 4594 imp = 4595 imp = 4596 imp = 4597 ck3 = 8620 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Gulf of Cadiz + link = { autogenerated = yes imp = 2708 imp = 2706 imp = 2709 imp = 2712 imp = 2714 ck3 = 8639 } # sea, sea, sea, sea, sea -> sea_balearic + link = { autogenerated = yes imp = 2692 ck3 = 8638 } # sea -> sea_ligurian + link = { autogenerated = yes imp = 2691 ck3 = 8637 } # sea -> sea_bonifacio + link = { autogenerated = yes imp = 2693 imp = 2546 ck3 = 8636 } # sea, sea -> sea_corsica + link = { autogenerated = yes imp = 2694 imp = 2696 ck3 = 8635 } # sea, sea -> sea_ligurian + link = { autogenerated = yes imp = 2715 imp = 2553 ck3 = 8634 } # sea, sea -> sea_barcelona + link = { autogenerated = yes imp = 2523 imp = 8037 ck3 = 8633 } # sea, Iberus -> sea_tarragona + link = { autogenerated = yes imp = 2719 ck3 = 8632 } # sea -> sea_balearic + link = { autogenerated = yes imp = 2718 ck3 = 8631 } # sea -> sea_balearic + link = { autogenerated = yes imp = 2722 imp = 2721 ck3 = 8630 } # sea, sea -> sea_balearic + link = { autogenerated = yes imp = 2723 ck3 = 8629 } # sea -> sea_balearic + link = { autogenerated = yes imp = 2525 imp = 2725 ck3 = 8628 } # sea, sea -> sea_murcia + link = { autogenerated = yes imp = 2554 ck3 = 8627 } # sea -> sea_alboran + link = { autogenerated = yes imp = 2729 imp = 2555 imp = 2556 imp = 2557 ck3 = 8626 } # sea, sea, sea, sea -> sea_alboran + link = { autogenerated = yes imp = 8279 ck3 = 8622 } # sea -> sea_canarias + link = { autogenerated = yes imp = 8278 ck3 = 8621 } # sea -> sea_morocco + link = { autogenerated = yes imp = 4722 imp = 4589 imp = 4594 imp = 4595 imp = 4596 imp = 4597 ck3 = 8620 } # sea, sea, sea, sea, sea, sea -> sea_gulf_cadiz link = { autogenerated = yes imp = 7393 ck3 = 862 ck3 = 863 } # Kasipur -> Sagardwip, Chatrabhog - link = { autogenerated = yes imp = 4728 imp = 4592 imp = 4725 imp = 4726 imp = 4727 imp = 4729 ck3 = 8619 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Portugal - link = { autogenerated = yes imp = 5674 imp = 5670 imp = 5671 imp = 7741 ck3 = 8618 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Garumna -> Bay of Biscay - link = { autogenerated = yes imp = 9234 ck3 = 8603 } # $PROV7783$ -> Brahmaputra - link = { autogenerated = yes imp = 9224 imp = 9225 ck3 = 8602 } # $PROV7701$, $PROV7701$ -> Ganges - link = { autogenerated = yes imp = 9222 ck3 = 8598 } # Godavari -> Godavari - link = { autogenerated = yes imp = 9221 ck3 = 8597 } # Godavari -> Godavari - link = { autogenerated = yes imp = 9215 imp = 9216 ck3 = 8596 } # Cauvery, Cauvery -> Kaveri - link = { autogenerated = yes imp = 9214 imp = 9212 imp = 9213 ck3 = 8595 } # Cauvery, Cauvery, Cauvery -> Kaveri - link = { autogenerated = yes imp = 9211 ck3 = 8593 } # Tapi -> Tapti - link = { autogenerated = yes imp = 9204 imp = 9203 ck3 = 8591 } # Satluj, Satluj -> Sutlej - link = { autogenerated = yes imp = 9202 imp = 9205 ck3 = 8590 } # Satluj, Chenab -> Sutlej - link = { autogenerated = yes imp = 9201 ck3 = 8589 } # $PROV7692$ -> Indus - link = { autogenerated = yes imp = 9199 imp = 9200 ck3 = 8588 } # $PROV7692$, $PROV7692$ -> Indus - link = { autogenerated = yes imp = 8042 imp = 8043 ck3 = 8585 } # Tanais, Tanais -> Don - link = { autogenerated = yes imp = 8582 ck3 = 8584 } # $PROV8042$ -> Don - link = { autogenerated = yes imp = 8585 ck3 = 8583 } # $PROV8042$ -> Don + link = { autogenerated = yes imp = 4728 imp = 4592 imp = 4725 imp = 4726 imp = 4727 imp = 4729 ck3 = 8619 } # sea, sea, sea, sea, sea, sea -> sea_portugal + link = { autogenerated = yes imp = 5674 imp = 5670 imp = 5671 imp = 7741 ck3 = 8618 } # sea, sea, sea, Garumna -> sea_bay_biscay + link = { autogenerated = yes imp = 9234 ck3 = 8603 } # Brahmaputra_5 -> river_brahmaputra + link = { autogenerated = yes imp = 9224 imp = 9225 ck3 = 8602 } # Ganges_18, Ganges_19 -> river_ganges + link = { autogenerated = yes imp = 9222 ck3 = 8598 } # Godavari_2 -> river_godavari + link = { autogenerated = yes imp = 9221 ck3 = 8597 } # Godavari_1 -> river_godavari + link = { autogenerated = yes imp = 9215 imp = 9216 ck3 = 8596 } # Cauvery_4, Cauvery_5 -> river_kaveri + link = { autogenerated = yes imp = 9214 imp = 9212 imp = 9213 ck3 = 8595 } # Cauvery_3, Cauvery_1, Cauvery_2 -> river_kaveri + link = { autogenerated = yes imp = 9211 ck3 = 8593 } # Tapi_1 -> river_tapti + link = { autogenerated = yes imp = 9204 imp = 9203 ck3 = 8591 } # Satluj_3, Satluj_2 -> river_sutlej + link = { autogenerated = yes imp = 9202 imp = 9205 ck3 = 8590 } # Satluj_1, Chenab_1 -> river_sutlej + link = { autogenerated = yes imp = 9201 ck3 = 8589 } # Indus_12 -> river_indus + link = { autogenerated = yes imp = 9199 imp = 9200 ck3 = 8588 } # Indus_10, Indus_11 -> river_indus + link = { autogenerated = yes imp = 8042 imp = 8043 ck3 = 8585 } # Tanais, Tanais -> river_don + link = { autogenerated = yes imp = 8582 ck3 = 8584 } # Tanais_6 -> river_don + link = { autogenerated = yes imp = 8585 ck3 = 8583 } # Tanais_9 -> river_don link = { autogenerated = yes imp = 7329 ck3 = 858 } # Chandraketugarh -> Kumarhati - link = { autogenerated = yes imp = 9410 ck3 = 8578 } # $PROV9198$ -> Volga - link = { autogenerated = yes imp = 9415 ck3 = 8570 } # Velho -> Lovat - link = { autogenerated = yes imp = 9413 ck3 = 8569 } # Velho -> Volkhov - link = { autogenerated = yes imp = 8580 imp = 8579 ck3 = 8568 } # $PROV8578$, $PROV8578$ -> Desna - link = { autogenerated = yes imp = 9406 ck3 = 8567 } # $PROV8574$ -> Dnieper - link = { autogenerated = yes imp = 8574 ck3 = 8566 } # $PROV7871$ -> Dnieper - link = { autogenerated = yes imp = 8573 imp = 8572 ck3 = 8565 } # $PROV7871$, $PROV7871$ -> Dnieper - link = { autogenerated = yes imp = 6355 ck3 = 8564 } # Borysthenes -> Dnieper - link = { autogenerated = yes imp = 7875 imp = 7876 imp = 7877 ck3 = 8563 } # Borysthenes, Borysthenes, Borysthenes -> Dnieper - link = { autogenerated = yes imp = 7883 ck3 = 8561 } # Tyras -> Dniester - link = { autogenerated = yes imp = 9189 imp = 9188 ck3 = 8560 } # $PROV7773$, $PROV7773$ -> Danube - link = { autogenerated = yes imp = 1489 ck3 = 8525 } # Fretum Diodorus -> LAKE_GHOUBET - link = { autogenerated = yes imp = 8745 ck3 = 8523 } # Abbe -> LAKE_ABHE - link = { autogenerated = yes imp = 8721 ck3 = 8519 } # Tana -> LAKE_TANA + link = { autogenerated = yes imp = 9410 ck3 = 8578 } # Rha_10 -> river_volga + link = { autogenerated = yes imp = 9415 ck3 = 8570 } # Volkhov_3 -> river_lovat + link = { autogenerated = yes imp = 9413 ck3 = 8569 } # Volkhov_1 -> river_volkhov + link = { autogenerated = yes imp = 8580 imp = 8579 ck3 = 8568 } # Desna_3, Desna_2 -> river_desna + link = { autogenerated = yes imp = 9406 ck3 = 8567 } # Borysthenes_17 -> river_dnieper + link = { autogenerated = yes imp = 8574 ck3 = 8566 } # Borysthenes_15 -> river_dnieper + link = { autogenerated = yes imp = 8573 imp = 8572 ck3 = 8565 } # Borysthenes_14, Borysthenes_13 -> river_dnieper + link = { autogenerated = yes imp = 6355 ck3 = 8564 } # Borysthenes_11 -> river_dnieper + link = { autogenerated = yes imp = 7875 imp = 7876 imp = 7877 ck3 = 8563 } # Borysthenes, Borysthenes, Borysthenes -> river_dnieper + link = { autogenerated = yes imp = 7883 ck3 = 8561 } # Tyras -> river_dniester + link = { autogenerated = yes imp = 9189 imp = 9188 ck3 = 8560 } # Ister_16, Ister_15 -> river_danube + link = { autogenerated = yes imp = 1489 ck3 = 8525 } # S -> LAKE_GHOUBET + link = { autogenerated = yes imp = 8745 ck3 = 8523 } # Lake Abbe -> LAKE_ABHE + link = { autogenerated = yes imp = 8721 ck3 = 8519 } # Lake Tana -> LAKE_TANA link = { autogenerated = yes imp = 4447 ck3 = 843 } # Kajangala -> Agmahl link = { autogenerated = yes imp = 7327 ck3 = 842 } # Karnasuvarna -> Raktamrittika link = { autogenerated = yes imp = 7184 ck3 = 7974 ck3 = 7975 } # Kuche -> Jigdalik, Duldulokur link = { autogenerated = yes imp = 8762 ck3 = 7973 } # Xayar -> Stwerap - link = { autogenerated = yes imp = 5665 ck3 = 7971 } # Hotan -> Tumshuk + link = { autogenerated = yes imp = 5665 ck3 = 7971 } # PASS -> Tumshuk link = { autogenerated = yes imp = 8761 imp = 8760 ck3 = 7969 } # Tumxuk, Tageairike -> Maralbeshi link = { autogenerated = yes imp = 7120 ck3 = 7878 } # Raichur -> Raichur link = { autogenerated = yes imp = 7072 ck3 = 7875 ck3 = 7876 } # Palkigunda -> Vankapura, Anegandi @@ -5397,19 +5397,19 @@ imperator_invictus = { link = { autogenerated = yes imp = 7038 ck3 = 7850 ck3 = 7852 ck3 = 7861 } # Chandravalli -> Masur, Arka, Basavapattana link = { autogenerated = yes imp = 7017 ck3 = 7849 } # Ganga -> Seringapatam link = { autogenerated = yes imp = 7016 ck3 = 7847 ck3 = 7848 ck3 = 7938 } # Sriringapatna -> Mercara, Moyar, Western Ghats (S) - link = { autogenerated = yes imp = 7050 ck3 = 7845 } # Kuromolinava -> Bhairavunikonda + link = { autogenerated = yes imp = 7050 ck3 = 7845 } # Kuromolinava* -> Bhairavunikonda link = { autogenerated = yes imp = 7026 imp = 9284 ck3 = 7844 } # Kadapa, Jungle -> Ahobalam link = { autogenerated = yes imp = 7043 imp = 7013 ck3 = 7842 } # Mallayapalam, Srisailam -> Addanki - link = { autogenerated = yes imp = 7051 ck3 = 7840 ck3 = 7843 } # Kadinava -> Ittagi, Mudivemu + link = { autogenerated = yes imp = 7051 ck3 = 7840 ck3 = 7843 } # Kadinava* -> Ittagi, Mudivemu link = { autogenerated = yes imp = 6935 imp = 6932 imp = 6933 ck3 = 7838 } # Chaberis, Koroula, Karmara -> Nagapattinam link = { autogenerated = yes imp = 6936 imp = 6934 ck3 = 7837 } # Karige, Abour -> Gangaikondacolapuram link = { autogenerated = yes imp = 6992 imp = 6928 ck3 = 7836 } # Argaru, Thanjavur -> Kannanur_2 - link = { autogenerated = yes imp = 6994 imp = 6988 ck3 = 7835 } # Nadhapura, Koval -> Tirukoilur + link = { autogenerated = yes imp = 6994 imp = 6988 ck3 = 7835 } # Nadhapura*, Koval -> Tirukoilur link = { autogenerated = yes imp = 6930 imp = 6990 imp = 6991 imp = 5310 ck3 = 7834 } # Karafur, Ricavatta, Karoura, IP 311 -> Srirangam - link = { autogenerated = yes imp = 6993 imp = 5312 ck3 = 7833 } # Kolinah, IP 313 -> Kelrayan + link = { autogenerated = yes imp = 6993 imp = 5312 ck3 = 7833 } # Kolinah*, IP 313 -> Kelrayan link = { autogenerated = yes imp = 6987 ck3 = 7832 } # Colapattinam -> Jinji link = { autogenerated = yes imp = 6986 ck3 = 7831 } # Sopattinam -> Uttaramerur - link = { autogenerated = yes imp = 6995 imp = 5313 ck3 = 7829 } # Chengam, Eastern Ghats -> Kudalasangama_bis + link = { autogenerated = yes imp = 6995 imp = 5313 ck3 = 7829 } # Chengam, IP 314 -> Kudalasangama_bis link = { autogenerated = yes imp = 6985 imp = 6984 ck3 = 7827 } # Mavilankai, Kancipuram -> Mamallapuram link = { autogenerated = yes imp = 7000 ck3 = 7826 } # Tondana -> Takkaloma link = { autogenerated = yes imp = 7032 ck3 = 7824 ck3 = 7828 } # Tiruperur -> Muluvagil, Kuvalala @@ -5421,11 +5421,11 @@ imperator_invictus = { link = { autogenerated = yes imp = 7024 ck3 = 7815 } # Mangalavada -> Togarakunta link = { autogenerated = yes imp = 6901 imp = 6911 ck3 = 7814 } # Balita, Aykudi -> Kottar link = { autogenerated = yes imp = 6903 imp = 6902 ck3 = 7813 } # Curana, Komari -> Kayal - link = { autogenerated = yes imp = 6920 imp = 6918 imp = 6919 ck3 = 7811 } # Malayana, Karivala, Tangala -> Sivakasi - link = { autogenerated = yes imp = 6923 imp = 6922 ck3 = 7810 } # Kamai, Vilath -> Virudhukkalvetti + link = { autogenerated = yes imp = 6920 imp = 6918 imp = 6919 ck3 = 7811 } # Pandya, Karivala, Tangala -> Sivakasi + link = { autogenerated = yes imp = 6923 imp = 6922 ck3 = 7810 } # Kamai*, Vilath -> Virudhukkalvetti link = { autogenerated = yes imp = 6915 imp = 6921 ck3 = 7809 } # Koti, Perinkari -> Rameshvaram link = { autogenerated = yes imp = 6948 imp = 6925 ck3 = 7808 } # Codasi, Akour -> Sivaganga - link = { autogenerated = yes imp = 6947 imp = 6942 ck3 = 7806 } # Kodumbalur, Mohur -> Dindigul + link = { autogenerated = yes imp = 6947 imp = 6942 ck3 = 7806 } # Uraiyur, Tainah -> Dindigul link = { autogenerated = yes imp = 6938 imp = 6937 ck3 = 7805 } # Karur, Tennagora -> Tiruppur link = { autogenerated = yes imp = 6940 ck3 = 7804 } # Korelloura -> Kovai link = { autogenerated = yes imp = 6898 imp = 6909 ck3 = 7803 } # Bacare, Tropiana -> Kollam @@ -5434,11 +5434,11 @@ imperator_invictus = { link = { autogenerated = yes imp = 6907 imp = 6944 imp = 6908 ck3 = 7800 } # Podoperoura, Vellalore, Paloura -> Palakkad link = { autogenerated = yes imp = 6892 imp = 6910 ck3 = 7799 } # Coula, Tandi -> Malappuram link = { autogenerated = yes imp = 6889 imp = 6888 ck3 = 7798 } # Mousopalle, Nitra -> Kannanur - link = { autogenerated = yes imp = 6886 imp = 6891 ck3 = 7797 } # Olokhoira, Basai -> Mangalur + link = { autogenerated = yes imp = 6886 imp = 6891 ck3 = 7797 } # Olokhoira, Banabasi -> Mangalur link = { autogenerated = yes imp = 6883 imp = 6882 ck3 = 7795 } # Aegidi, Toparon -> Hinawr - link = { autogenerated = yes imp = 5698 ck3 = 729 } # Mare Britannicum -> English Channel - link = { autogenerated = yes imp = 5693 ck3 = 728 } # Mare Britannicum -> English Channel - link = { autogenerated = yes imp = 5700 ck3 = 727 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 5698 ck3 = 729 } # sea -> sea_english_channel + link = { autogenerated = yes imp = 5693 ck3 = 728 } # sea -> sea_english_channel + link = { autogenerated = yes imp = 5700 ck3 = 727 } # sea -> sea_english_channel link = { autogenerated = yes imp = 9044 ck3 = 7267 ck3 = 7266 ck3 = 7268 } # Marane -> Achu, Ulu Jitanjik, Kyzyl Cheku link = { autogenerated = yes imp = 9043 ck3 = 7263 } # Zazi -> Jilali link = { autogenerated = yes imp = 9040 ck3 = 7262 } # Ogenage -> Janai Cheku @@ -5448,46 +5448,46 @@ imperator_invictus = { link = { autogenerated = yes imp = 9038 ck3 = 7256 } # Bezin -> Tumar link = { autogenerated = yes imp = 9037 ck3 = 7255 } # Edug -> Kyzyl Yar link = { autogenerated = yes imp = 9296 ck3 = 7254 ck3 = 7245 } # Abhras -> Tibis Sor, Jity Kul - link = { autogenerated = yes imp = 5708 ck3 = 725 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 5708 ck3 = 725 } # sea -> sea_english_channel link = { autogenerated = yes imp = 9041 imp = 9299 ck3 = 7244 } # Soma, Patinasana -> Chir Kala link = { autogenerated = yes imp = 9297 ck3 = 7242 ck3 = 7243 } # Diti -> Karabutak, Kum Saï - link = { autogenerated = yes imp = 5713 imp = 5714 ck3 = 724 } # Mare Verginium, Mare Verginium -> Celtic Sea - link = { autogenerated = yes imp = 5723 imp = 5745 ck3 = 723 } # Mare Verginium, Mare Verginium -> Courtmacsherry Bay + link = { autogenerated = yes imp = 5713 imp = 5714 ck3 = 724 } # sea, sea -> sea_celtic + link = { autogenerated = yes imp = 5723 imp = 5745 ck3 = 723 } # sea, sea -> sea_courtmacsherry_bay link = { autogenerated = yes imp = 9306 ck3 = 7220 } # Mimrito -> Chubar_KAZ - link = { autogenerated = yes imp = 5748 imp = 5725 imp = 5747 ck3 = 722 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Dingle Bay + link = { autogenerated = yes imp = 5748 imp = 5725 imp = 5747 ck3 = 722 } # sea, sea, sea -> sea_dingle_bay link = { autogenerated = yes imp = 8753 ck3 = 7165 ck3 = 7166 } # Aktogay -> Talgar, Kyzyl Suu link = { autogenerated = yes imp = 8750 imp = 9035 ck3 = 7161 } # Jieshan, Adrug -> Kurdai link = { autogenerated = yes imp = 9034 imp = 9033 ck3 = 7158 } # Krou, Kas -> Chu link = { autogenerated = yes imp = 8754 ck3 = 7153 } # Chilpek -> Barskhan link = { autogenerated = yes imp = 8756 ck3 = 7152 } # Beishan -> Narin - link = { autogenerated = yes imp = 5751 imp = 5726 imp = 5727 imp = 5728 imp = 5749 ck3 = 715 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Galway Bay + link = { autogenerated = yes imp = 5751 imp = 5726 imp = 5727 imp = 5728 imp = 5749 ck3 = 715 } # sea, sea, sea, sea, sea -> sea_galway_bay link = { autogenerated = yes imp = 6781 imp = 6778 imp = 6780 ck3 = 7147 } # Yul, Balasaghun, Nevaket -> Pishkek link = { autogenerated = yes imp = 9019 imp = 9022 imp = 9032 imp = 9117 ck3 = 7144 } # Savu, Savan, Komar, Impassable -> Nevaket link = { autogenerated = yes imp = 9015 imp = 6783 imp = 9118 ck3 = 7141 } # Agaie, Kulan, Impassable -> Taraz link = { autogenerated = yes imp = 6777 imp = 6784 imp = 6786 imp = 6785 ck3 = 7140 } # Uvikat, Barskhan, Tobe, Shelji -> Awliya-Ata - link = { autogenerated = yes imp = 5756 imp = 5743 imp = 5744 ck3 = 714 } # Oceanus Atlanticus, Oceanus Atlanticus, Mare Hibernicum -> Coast of Ailech - link = { autogenerated = yes imp = 6792 imp = 7265 imp = 7266 ck3 = 7139 } # Isfijab, Zintik, Qaram -> Chakpak + link = { autogenerated = yes imp = 5756 imp = 5743 imp = 5744 ck3 = 714 } # sea, sea, sea -> sea_coast_of_ailech + link = { autogenerated = yes imp = 6792 imp = 7265 imp = 7266 ck3 = 7139 } # Isfijab, Zintik*, Qaram* -> Chakpak link = { autogenerated = yes imp = 6791 ck3 = 7138 } # Chach -> Isfijab - link = { autogenerated = yes imp = 7264 ck3 = 7137 } # Maidanchach -> Nuket - link = { autogenerated = yes imp = 7271 imp = 7272 imp = 7273 ck3 = 7136 } # Kush, Khanus, Poshkar -> Chimkent - link = { autogenerated = yes imp = 7267 imp = 7268 imp = 7270 ck3 = 7135 } # Araq, Osht, Kashram -> Sayram + link = { autogenerated = yes imp = 7264 ck3 = 7137 } # Maidanchach* -> Nuket + link = { autogenerated = yes imp = 7271 imp = 7272 imp = 7273 ck3 = 7136 } # Kush*, Khanus*, Poshkar* -> Chimkent + link = { autogenerated = yes imp = 7267 imp = 7268 imp = 7270 ck3 = 7135 } # Araq*, Osht*, Kashram* -> Sayram link = { autogenerated = yes imp = 8998 imp = 9010 imp = 9009 imp = 9012 ck3 = 7131 } # Tigri, Ippa, Herros, Arim -> Karakul - link = { autogenerated = yes imp = 5731 ck3 = 713 } # Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 5731 ck3 = 713 } # sea -> sea_irish link = { autogenerated = yes imp = 9003 imp = 9004 imp = 9120 ck3 = 7127 } # Maca, Gik, Impassable -> Shulak - link = { autogenerated = yes imp = 7251 ck3 = 7126 ck3 = 7125 } # Besta -> Sawran, Uzgend - link = { autogenerated = yes imp = 7249 imp = 7250 ck3 = 7124 } # Akkum, Koga -> Oktyabr + link = { autogenerated = yes imp = 7251 ck3 = 7126 ck3 = 7125 } # Besta* -> Sawran, Uzgend + link = { autogenerated = yes imp = 7249 imp = 7250 ck3 = 7124 } # Akkum*, Koga* -> Oktyabr link = { autogenerated = yes imp = 8976 ck3 = 7123 } # Kumsuat -> Sighnaq link = { autogenerated = yes imp = 8977 ck3 = 7122 } # Taldyk -> Suzak link = { autogenerated = yes imp = 9000 imp = 8997 ck3 = 7121 } # Sturi, Mazgi -> Mushun link = { autogenerated = yes imp = 8978 ck3 = 7120 } # Tuzkol -> Tashti - link = { autogenerated = yes imp = 5718 imp = 5717 ck3 = 712 } # Mare Verginium, Mare Verginium -> Bristol Channel + link = { autogenerated = yes imp = 5718 imp = 5717 ck3 = 712 } # sea, sea -> sea_bristol_channel link = { autogenerated = yes imp = 8975 ck3 = 7119 } # Abay -> Aq-Masjid link = { autogenerated = yes imp = 7248 ck3 = 7118 } # Janaqala -> Telegul link = { autogenerated = yes imp = 8974 ck3 = 7116 } # Zharagash -> Beljan - link = { autogenerated = yes imp = 7257 imp = 7258 ck3 = 7114 } # Qala, Birim -> Buzai + link = { autogenerated = yes imp = 7257 imp = 7258 ck3 = 7114 } # Qala*, Birim* -> Buzai link = { autogenerated = yes imp = 8973 imp = 8980 ck3 = 7112 } # Baikonur, Kuduk -> Kara-Mugai link = { autogenerated = yes imp = 8971 imp = 8970 ck3 = 7111 } # Enbekshi, Zhanatalap -> Raimskoe - link = { autogenerated = yes imp = 5715 imp = 5716 imp = 5722 ck3 = 711 } # Mare Verginium, Mare Verginium, Mare Verginium -> Celtic Sea + link = { autogenerated = yes imp = 5715 imp = 5716 imp = 5722 ck3 = 711 } # sea, sea, sea -> sea_celtic link = { autogenerated = yes imp = 8895 imp = 8972 ck3 = 7109 } # Tabankuduk, Orazbay -> Dzangent link = { autogenerated = yes imp = 8982 ck3 = 7108 } # Tatan -> Tailyak-kul link = { autogenerated = yes imp = 8990 ck3 = 7107 } # Qalmaqqyrgan -> Arys-kum @@ -5498,61 +5498,61 @@ imperator_invictus = { link = { autogenerated = yes imp = 8985 ck3 = 7102 } # Zhalauly -> Zhelanash link = { autogenerated = yes imp = 8986 ck3 = 7101 } # Yrgyz -> Djelavi link = { autogenerated = yes imp = 8987 ck3 = 7100 } # Balta -> Irgis - link = { autogenerated = yes imp = 5721 imp = 5730 ck3 = 710 } # Mare Verginium, Mare Hibernicum -> Irish Sea - link = { autogenerated = yes imp = 5736 imp = 5733 imp = 5737 ck3 = 709 } # Mare Hibernicum, Mare Hibernicum, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 5721 imp = 5730 ck3 = 710 } # sea, sea -> sea_irish + link = { autogenerated = yes imp = 5736 imp = 5733 imp = 5737 ck3 = 709 } # sea, sea, sea -> sea_irish link = { autogenerated = yes imp = 5428 ck3 = 7088 } # Suna -> Oglamych link = { autogenerated = yes imp = 5459 imp = 5451 imp = 5458 ck3 = 7087 } # Azkoi, Shalak, Dnem -> Kum-Sebszen link = { autogenerated = yes imp = 5461 imp = 5460 ck3 = 7086 } # Khanash, Garam -> Sumbe link = { autogenerated = yes imp = 5462 imp = 5463 ck3 = 7085 } # Yetteka, Ziri -> Bekdas link = { autogenerated = yes imp = 5467 imp = 5468 imp = 5469 ck3 = 7081 } # Teike, Shachkra, Byrshchre -> Fort Aleksandrovkiy - link = { autogenerated = yes imp = 5732 imp = 5729 ck3 = 708 } # Mare Hibernicum, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 5732 imp = 5729 ck3 = 708 } # sea, sea -> sea_irish link = { autogenerated = yes imp = 5457 imp = 5478 ck3 = 7079 } # Ustret, Zhanit -> Koizak link = { autogenerated = yes imp = 5471 imp = 5493 ck3 = 7078 } # Tamaasan, Thurissa -> Kajdak link = { autogenerated = yes imp = 5494 ck3 = 7074 ck3 = 7077 } # Kurchina -> Beyneu, Fort Novoaleksandrovkiy - link = { autogenerated = yes imp = 5757 imp = 5740 imp = 6304 imp = 6307 imp = 6310 ck3 = 700 } # Oceanus Atlanticus, Mare Hibernicum, LAKE, LAKE, LAKE -> Sea of Hebrides - link = { autogenerated = yes imp = 5739 ck3 = 699 } # Mare Hibernicum -> Firth of Clyde - link = { autogenerated = yes imp = 5761 ck3 = 697 } # Oceanus Atlanticus -> The Atlantic - link = { autogenerated = yes imp = 5760 imp = 5758 imp = 5759 imp = 6331 ck3 = 696 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, LAKE -> Sea of Hebrides - link = { autogenerated = yes imp = 5771 ck3 = 692 } # Mare Septentrionale -> Eastern Coast of Scotland - link = { autogenerated = yes imp = 5796 imp = 5792 imp = 5793 imp = 5795 imp = 5797 imp = 5800 imp = 5801 imp = 5802 ck3 = 691 } # Mare Septentrionale, Mare Germanicum, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Germanicum -> North Sea - link = { autogenerated = yes imp = 5773 ck3 = 690 } # Mare Septentrionale -> East English Coast - link = { autogenerated = yes imp = 5775 imp = 8036 ck3 = 689 } # Mare Germanicum, Abus -> Humber - link = { autogenerated = yes imp = 5776 ck3 = 688 } # Mare Germanicum -> The Wash - link = { autogenerated = yes imp = 5777 ck3 = 687 } # Mare Germanicum -> Coast of Suffolk - link = { autogenerated = yes imp = 5778 ck3 = 686 } # Mare Germanicum -> Thames Estuary - link = { autogenerated = yes imp = 5782 imp = 7724 ck3 = 684 } # Lacus Flevo, Rhenus -> Zuiderzee - link = { autogenerated = yes imp = 6333 ck3 = 683 } # Lim -> Limfjord - link = { autogenerated = yes imp = 5819 imp = 5786 imp = 5787 imp = 5788 imp = 5815 imp = 5830 imp = 5824 ck3 = 667 } # Mare Septentrionale, Mare Germanicum, Mare Septentrionale, Mare Septentrionale, Mare Germanicum, Mare Septentrionale, Mare Septentrionale -> Coast of Denmark - link = { autogenerated = yes imp = 5820 ck3 = 666 ck3 = 8559 ck3 = 8617 } # Mare Septentrionale -> Coast of Norway, Hardangerfjord, Coast of Norway - link = { autogenerated = yes imp = 9419 imp = 9420 imp = 9421 imp = 9428 imp = 9429 imp = 9427 ck3 = 646 } # $PROV5854$, $PROV5854$, $PROV5854$, $PROV5854$, $PROV5854$, $PROV5854$ -> Gulf of Finland - link = { autogenerated = yes imp = 5831 imp = 5827 imp = 5829 imp = 5832 imp = 5823 ck3 = 645 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Mare Septentrionale -> Skagerrak - link = { autogenerated = yes imp = 5843 imp = 5840 imp = 5841 imp = 5842 ck3 = 644 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> South Funen Archipelago - link = { autogenerated = yes imp = 5846 imp = 5838 imp = 5844 imp = 5845 imp = 6320 imp = 6323 ck3 = 643 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, LAKE, LAKE -> Arkona Basin - link = { autogenerated = yes imp = 5849 imp = 5850 ck3 = 641 } # Oceanus Sarmaticus, Oceanus Sarmaticus -> Coast of Pomerania - link = { autogenerated = yes imp = 5861 imp = 5863 imp = 5864 ck3 = 640 } # Mare Gothicum, Oceanus Sarmaticus, Oceanus Sarmaticus -> Baltic Sea - link = { autogenerated = yes imp = 5860 imp = 6469 imp = 6519 ck3 = 639 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Baltic Sea - link = { autogenerated = yes imp = 5852 imp = 5855 ck3 = 638 } # Oceanus Sarmaticus, Oceanus Sarmaticus -> Coast of Lithuania - link = { autogenerated = yes imp = 5848 ck3 = 637 } # Mare Eovium -> Coast of land - link = { autogenerated = yes imp = 5856 ck3 = 636 } # Oceanus Sarmaticus -> Coast of land - link = { autogenerated = yes imp = 5859 imp = 5858 imp = 5862 imp = 6348 imp = 9418 ck3 = 635 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Mare Gothicum, LAKE, $PROV5854$ -> Baltic Sea - link = { autogenerated = yes imp = 9430 ck3 = 634 ck3 = 943 ck3 = 633 } # $PROV5854$ -> Archipelago Sea, Näsijärvi, Gulf of Bothnia - link = { autogenerated = yes imp = 7645 ck3 = 632 } # Oceanus Sarmaticus -> Gulf of Riga + link = { autogenerated = yes imp = 5757 imp = 5740 imp = 6304 imp = 6307 imp = 6310 ck3 = 700 } # sea, sea, LAKE, LAKE, LAKE -> sea_hebrides + link = { autogenerated = yes imp = 5739 ck3 = 699 } # sea -> sea_firth_of_clyde + link = { autogenerated = yes imp = 5761 ck3 = 697 } # sea -> sea_atlantic + link = { autogenerated = yes imp = 5760 imp = 5758 imp = 5759 imp = 6331 ck3 = 696 } # sea, sea, sea, LAKE -> sea_hebrides + link = { autogenerated = yes imp = 5771 ck3 = 692 } # sea -> sea_eastern_coast_scotland + link = { autogenerated = yes imp = 5796 imp = 5792 imp = 5793 imp = 5795 imp = 5797 imp = 5800 imp = 5801 imp = 5802 ck3 = 691 } # sea, sea, sea, sea, sea, sea, sea, sea -> sea_north_sea + link = { autogenerated = yes imp = 5773 ck3 = 690 } # sea -> sea_east_english_coast + link = { autogenerated = yes imp = 5775 imp = 8036 ck3 = 689 } # sea, Hull -> river_humber + link = { autogenerated = yes imp = 5776 ck3 = 688 } # sea -> sea_the_wash + link = { autogenerated = yes imp = 5777 ck3 = 687 } # sea -> sea_coast_suffolk + link = { autogenerated = yes imp = 5778 ck3 = 686 } # sea -> sea_thames_estuary + link = { autogenerated = yes imp = 5782 imp = 7724 ck3 = 684 } # sea, RIVER -> sea_zuiderzee + link = { autogenerated = yes imp = 6333 ck3 = 683 } # Limfjord -> sea_limfjord + link = { autogenerated = yes imp = 5819 imp = 5786 imp = 5787 imp = 5788 imp = 5815 imp = 5830 imp = 5824 ck3 = 667 } # sea, sea, sea, sea, sea, sea, sea -> sea_coast_denmark + link = { autogenerated = yes imp = 5820 ck3 = 666 ck3 = 8559 ck3 = 8617 } # sea -> sea_coast_norway, river_hardangerfjord, sea_coast_norway + link = { autogenerated = yes imp = 9419 imp = 9420 imp = 9421 imp = 9428 imp = 9429 imp = 9427 ck3 = 646 } # Baltic_Sea, Baltic_Sea, Baltic_Sea, Baltic_Sea, Baltic_Sea, Baltic_Sea -> sea_gulf_finland + link = { autogenerated = yes imp = 5831 imp = 5827 imp = 5829 imp = 5832 imp = 5823 ck3 = 645 } # sea, sea, sea, sea, sea -> sea_skagerrak + link = { autogenerated = yes imp = 5843 imp = 5840 imp = 5841 imp = 5842 ck3 = 644 } # sea, sea, sea, sea -> sea_sydfynskeohav + link = { autogenerated = yes imp = 5846 imp = 5838 imp = 5844 imp = 5845 imp = 6320 imp = 6323 ck3 = 643 } # sea, sea, sea, sea, LAKE, LAKE -> sea_arkona_basin + link = { autogenerated = yes imp = 5849 imp = 5850 ck3 = 641 } # sea, sea -> sea_coast_of_pomerania + link = { autogenerated = yes imp = 5861 imp = 5863 imp = 5864 ck3 = 640 } # sea, sea, sea -> sea_baltic + link = { autogenerated = yes imp = 5860 imp = 6469 imp = 6519 ck3 = 639 } # sea, SEA, SEA -> sea_baltic + link = { autogenerated = yes imp = 5852 imp = 5855 ck3 = 638 } # sea, sea -> sea_coast_of_lithuania + link = { autogenerated = yes imp = 5848 ck3 = 637 } # sea -> sea_coast_of_oland + link = { autogenerated = yes imp = 5856 ck3 = 636 } # sea -> sea_coast_of_oland + link = { autogenerated = yes imp = 5859 imp = 5858 imp = 5862 imp = 6348 imp = 9418 ck3 = 635 } # sea, sea, sea, LAKE, Baltic_Sea -> sea_baltic + link = { autogenerated = yes imp = 9430 ck3 = 634 ck3 = 943 ck3 = 633 } # Baltic_Sea -> sea_finnish_archipelago, Näsijärvi, sea_gulf_bothnia + link = { autogenerated = yes imp = 7645 ck3 = 632 } # SEA -> sea_gulf_riga link = { autogenerated = yes imp = 5426 imp = 5424 ck3 = 631 } # Yone, Venas -> Yangadzha - link = { autogenerated = yes imp = 9174 ck3 = 629 ck3 = 630 } # $PROV8035$ -> The Thames, The Thames - link = { autogenerated = yes imp = 8035 ck3 = 628 } # Tamesis -> The Thames + link = { autogenerated = yes imp = 9174 ck3 = 629 ck3 = 630 } # Thames_2 -> river_thames, river_thames + link = { autogenerated = yes imp = 8035 ck3 = 628 } # Thames -> river_thames link = { autogenerated = yes imp = 5425 ck3 = 627 } # Duri -> Kyzyl-Su - link = { autogenerated = yes imp = 8589 ck3 = 626 } # $PROV8586$ -> Daugava + link = { autogenerated = yes imp = 8589 ck3 = 626 } # Daugava_4 -> river_daugava link = { autogenerated = yes imp = 5464 imp = 5465 ck3 = 624 } # Karon, Mroshika -> Aktau link = { autogenerated = yes imp = 8983 imp = 8896 ck3 = 622 } # Zhenishkekum, Tokabay -> Ak-Dzulpas link = { autogenerated = yes imp = 9370 imp = 9310 ck3 = 616 } # Kutny, Kodzuv -> Pecheneg - link = { autogenerated = yes imp = 6438 imp = 6440 imp = 7710 imp = 7711 imp = 7717 imp = 7722 ck3 = 6128 } # LAKE, LAKE, Tigris, Tigris, Euphrates, Tigris -> Tigris - link = { autogenerated = yes imp = 7714 ck3 = 6127 } # Tigris -> Tigris - link = { autogenerated = yes imp = 7715 imp = 7716 ck3 = 6126 } # Tigris, Tigris -> Tigris - link = { autogenerated = yes imp = 9156 imp = 9154 imp = 9155 imp = 9157 imp = 9158 ck3 = 6125 } # $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$ -> The Nile - link = { autogenerated = yes imp = 9152 imp = 9150 imp = 9151 imp = 9153 ck3 = 6029 } # $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$ -> The Nile - link = { autogenerated = yes imp = 9149 imp = 7669 imp = 7674 imp = 7675 imp = 7687 imp = 9146 imp = 9147 imp = 9148 ck3 = 6028 } # $PROV7687$, Nile, the Pelusiac, Nile, the Bolbitine, Nile, the Phatnitic, Nile, $PROV7687$, $PROV7687$, $PROV7687$ -> The Nile - link = { autogenerated = yes imp = 7683 imp = 7680 imp = 7681 imp = 7682 ck3 = 6027 } # Nile, the Bolbitine, Nile, the Bolbitine, Nile, the Bolbitine, Nile, the Bolbitine -> The Nile - link = { autogenerated = yes imp = 7678 imp = 7676 imp = 7677 imp = 7679 ck3 = 6026 } # Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic -> The Nile + link = { autogenerated = yes imp = 6438 imp = 6440 imp = 7710 imp = 7711 imp = 7717 imp = 7722 ck3 = 6128 } # LAKE, LAKE, RIVER, RIVER, RIVER, RIVER -> river_tigris + link = { autogenerated = yes imp = 7714 ck3 = 6127 } # RIVER -> river_tigris + link = { autogenerated = yes imp = 7715 imp = 7716 ck3 = 6126 } # RIVER, RIVER -> river_tigris + link = { autogenerated = yes imp = 9156 imp = 9154 imp = 9155 imp = 9157 imp = 9158 ck3 = 6125 } # Nile_32, Nile_30, Nile_31, Nile_33, Nile_34 -> river_nile + link = { autogenerated = yes imp = 9152 imp = 9150 imp = 9151 imp = 9153 ck3 = 6029 } # Nile_28, Nile_26, Nile_27, Nile_29 -> river_nile + link = { autogenerated = yes imp = 9149 imp = 7669 imp = 7674 imp = 7675 imp = 7687 imp = 9146 imp = 9147 imp = 9148 ck3 = 6028 } # Nile_25, RIVER, RIVER, RIVER, RIVER, Nile_22, Nile_23, Nile_24 -> river_nile + link = { autogenerated = yes imp = 7683 imp = 7680 imp = 7681 imp = 7682 ck3 = 6027 } # RIVER, RIVER, RIVER, RIVER -> river_nile + link = { autogenerated = yes imp = 7678 imp = 7676 imp = 7677 imp = 7679 ck3 = 6026 } # RIVER, RIVER, RIVER, RIVER -> river_nile link = { autogenerated = yes imp = 9318 imp = 9315 imp = 9317 ck3 = 592 } # Kovny, Kymos, Gola -> Saratov link = { autogenerated = yes imp = 9368 ck3 = 577 ck3 = 580 } # Kursa -> Pronsk, Ryazan link = { autogenerated = yes imp = 9347 imp = 9351 imp = 9346 ck3 = 569 } # Orko, Marehtidak, Pihti -> Vyazma @@ -5620,36 +5620,36 @@ imperator_invictus = { link = { autogenerated = yes imp = 9454 imp = 9453 imp = 9457 imp = 9448 imp = 9449 imp = 9455 imp = 9456 ck3 = 4616 } # Berriane, Ghardaia, Metlili, Aroui, Ardjoun, Rmel, Dahoua -> GHARDAIA link = { autogenerated = yes imp = 9451 ck3 = 4615 ck3 = 4613 ck3 = 4614 } # Ouargla -> WARGLA, SADRATA, KARIMA link = { autogenerated = yes imp = 9440 imp = 9441 imp = 9442 ck3 = 4609 } # Oued, Reguiba, Magrane -> ARIGH - link = { autogenerated = yes imp = 7789 imp = 6467 imp = 7790 ck3 = 457 } # Ganges, LAKE, Ganges -> Ichamati - link = { autogenerated = yes imp = 7787 imp = 7786 imp = 7788 ck3 = 456 } # Ganges, Ganges, Ganges -> Hooghly + link = { autogenerated = yes imp = 7789 imp = 6467 imp = 7790 ck3 = 457 } # Ganges, LAKE, Ganges -> river_ichamati + link = { autogenerated = yes imp = 7787 imp = 7786 imp = 7788 ck3 = 456 } # Ganges, Ganges, Ganges -> river_hooghly link = { autogenerated = yes imp = 5423 ck3 = 4533 } # Ahur -> NEBIT DAG link = { autogenerated = yes imp = 5427 imp = 6808 imp = 5452 ck3 = 4531 } # Bakk, Uzboia, Oshin -> DEKCHA - link = { autogenerated = yes imp = 6613 ck3 = 4508 ck3 = 4514 } # Andaka -> LAMGHAN, KUNAR - link = { autogenerated = yes imp = 7259 ck3 = 4462 } # Baraq -> NORTH KURDAR + link = { autogenerated = yes imp = 6613 ck3 = 4508 ck3 = 4514 } # Hadda -> LAMGHAN, KUNAR + link = { autogenerated = yes imp = 7259 ck3 = 4462 } # Baraq* -> NORTH KURDAR link = { autogenerated = yes imp = 9240 imp = 9241 ck3 = 4461 } # Sokkul, Qo'yqirilgan -> MIZDAHQAN - link = { autogenerated = yes imp = 7260 imp = 9243 ck3 = 4459 } # Kupir, Nazarkhan -> BARATIGIN - link = { autogenerated = yes imp = 5484 imp = 6805 ck3 = 4458 } # Cammei, Ariaka -> MADMINIYA + link = { autogenerated = yes imp = 7260 imp = 9243 ck3 = 4459 } # Kupir*, Nazarkhan -> BARATIGIN + link = { autogenerated = yes imp = 5484 imp = 6805 ck3 = 4458 } # Cammei, Hayvan -> MADMINIYA link = { autogenerated = yes imp = 9239 ck3 = 4448 ck3 = 4447 } # Sarymay -> KATH, GHARDAMAN link = { autogenerated = yes imp = 9238 ck3 = 4445 ck3 = 4446 } # Sho'rtakli -> ARDAKHIVAH, WAYIKHAN link = { autogenerated = yes imp = 9237 ck3 = 4444 } # Nar Gyz -> NUKFAGH link = { autogenerated = yes imp = 6734 ck3 = 4436 ck3 = 4437 ck3 = 4438 } # Chust -> ARDALANKATH, KASAN, AKHSIKATH link = { autogenerated = yes imp = 6738 ck3 = 4435 ck3 = 4433 ck3 = 4434 } # Namakan -> NAJM, MIYAN-RUDAN, KHAYLAM link = { autogenerated = yes imp = 6789 ck3 = 4421 } # Uskat -> WANKATH - link = { autogenerated = yes imp = 6731 imp = 6790 ck3 = 4420 } # Massagetia, Tunket -> ASHT - link = { autogenerated = yes imp = 7276 imp = 7278 ck3 = 4417 } # Ust, Padri -> KHAWAS - link = { autogenerated = yes imp = 7277 ck3 = 4412 } # Arcum -> DIZAK - link = { autogenerated = yes imp = 7274 ck3 = 4408 } # Gabae -> BARKAT + link = { autogenerated = yes imp = 6731 imp = 6790 ck3 = 4420 } # Massargetia, Tunket -> ASHT + link = { autogenerated = yes imp = 7276 imp = 7278 ck3 = 4417 } # Ust*, Padri* -> KHAWAS + link = { autogenerated = yes imp = 7277 ck3 = 4412 } # Arcum* -> DIZAK + link = { autogenerated = yes imp = 7274 ck3 = 4408 } # Qalai* -> BARKAT link = { autogenerated = yes imp = 6682 ck3 = 4407 ck3 = 4410 } # Marakanda -> WADHAR, VARAGHSHAR - link = { autogenerated = yes imp = 6716 ck3 = 4403 ck3 = 4404 } # Nautaka -> ARBINJAN, SAMARQAND - link = { autogenerated = yes imp = 6712 ck3 = 4399 ck3 = 4405 ck3 = 4400 ck3 = 4406 } # Kaza -> KUSHANIYA, ISHTIKHAN, NOOR BUKHARA, QATWAN + link = { autogenerated = yes imp = 6716 ck3 = 4403 ck3 = 4404 } # Jurma -> ARBINJAN, SAMARQAND + link = { autogenerated = yes imp = 6712 ck3 = 4399 ck3 = 4405 ck3 = 4400 ck3 = 4406 } # Kattakurgan -> KUSHANIYA, ISHTIKHAN, NOOR BUKHARA, QATWAN link = { autogenerated = yes imp = 6713 ck3 = 4397 ck3 = 4398 } # Kermine -> GHUJDUVAN, TAVAVIS - link = { autogenerated = yes imp = 6707 ck3 = 4395 ck3 = 4396 } # Tribactra -> VARAKHSHA, RAMITAN - link = { autogenerated = yes imp = 6717 ck3 = 4393 ck3 = 4394 } # Branchidai -> PAYKEND, BUKHARA + link = { autogenerated = yes imp = 6707 ck3 = 4395 ck3 = 4396 } # Buxoro -> VARAKHSHA, RAMITAN + link = { autogenerated = yes imp = 6717 ck3 = 4393 ck3 = 4394 } # Tudakul -> PAYKEND, BUKHARA link = { autogenerated = yes imp = 6710 imp = 7244 ck3 = 4392 } # Xenippa, Amu -> BEZDA link = { autogenerated = yes imp = 6714 ck3 = 4391 ck3 = 4401 ck3 = 4402 } # Karnab -> RIBAT MALIK, KERMINIYA, DABUSIYA - link = { autogenerated = yes imp = 6715 ck3 = 4390 } # Naura -> NAKHSHAB + link = { autogenerated = yes imp = 6715 ck3 = 4390 } # Tim -> NAKHSHAB link = { autogenerated = yes imp = 6711 ck3 = 4389 } # Charva -> NAWQAD QUREISH - link = { autogenerated = yes imp = 6759 ck3 = 4354 ck3 = 4355 } # Samti -> Kishm, Badakhshan + link = { autogenerated = yes imp = 6759 ck3 = 4354 ck3 = 4355 } # Ay Khanum -> Kishm, Badakhshan link = { autogenerated = yes imp = 6718 imp = 9236 ck3 = 4243 } # Kogon, Qarako'l -> Barzam link = { autogenerated = yes imp = 7166 ck3 = 3995 ck3 = 1249 } # Vinitapura -> Vinitapura, Sambalpur link = { autogenerated = yes imp = 9251 imp = 7167 ck3 = 3987 } # Gopalprasad, Yajatinagara -> Bajrakot @@ -5663,134 +5663,134 @@ imperator_invictus = { link = { autogenerated = yes imp = 4323 imp = 4370 ck3 = 3438 } # Takht-i-Bahi, Massaka -> Oddiyana link = { autogenerated = yes imp = 9280 ck3 = 3426 } # Kot Kamalia -> Kamalia link = { autogenerated = yes imp = 9267 imp = 9265 imp = 5358 ck3 = 3423 } # Badopal, Rojhanwali, IP 359 -> Abohar - link = { autogenerated = yes imp = 4395 ck3 = 3422 } # Turvasha -> Satghara + link = { autogenerated = yes imp = 4395 ck3 = 3422 } # Turvasa -> Satghara link = { autogenerated = yes imp = 4388 ck3 = 3421 } # Pancapura -> Pancapura - link = { autogenerated = yes imp = 4393 imp = 4397 ck3 = 3419 } # Okara, Vipasha -> Chunian - link = { autogenerated = yes imp = 9282 imp = 4389 ck3 = 3418 } # Nokhar, Iravatyavar -> Kasur + link = { autogenerated = yes imp = 4393 imp = 4397 ck3 = 3419 } # Okara*, Vipasa -> Chunian + link = { autogenerated = yes imp = 9282 imp = 4389 ck3 = 3418 } # Nokhar, Lubokla -> Kasur link = { autogenerated = yes imp = 9278 ck3 = 3413 } # Atari -> Kabirwala - link = { autogenerated = yes imp = 4382 ck3 = 3412 } # Anatachara -> Tulamba - link = { autogenerated = yes imp = 4381 ck3 = 3411 ck3 = 3424 } # Shudrakai -> Vehari, Ajodhan + link = { autogenerated = yes imp = 4382 ck3 = 3412 } # Dumbritai -> Tulamba + link = { autogenerated = yes imp = 4381 ck3 = 3411 ck3 = 3424 } # Hydrakai -> Vehari, Ajodhan link = { autogenerated = yes imp = 4378 imp = 9281 ck3 = 3410 } # Osioi, Sukah -> Askhanda - link = { autogenerated = yes imp = 9159 imp = 7772 ck3 = 3254 } # $PROV7771$, Baetis -> Guadalquivir - link = { autogenerated = yes imp = 7771 ck3 = 3253 } # Baetis -> Guadalquivir - link = { autogenerated = yes imp = 9160 imp = 9161 ck3 = 3251 } # $PROV7862$, $PROV7862$ -> Guadiana - link = { autogenerated = yes imp = 7862 imp = 7863 ck3 = 3250 } # Flumen Anas, Flumen Anas -> Guadiana - link = { autogenerated = yes imp = 9172 ck3 = 3249 } # $PROV7846$ -> Rhne - link = { autogenerated = yes imp = 9171 ck3 = 3248 } # $PROV7846$ -> Rhne - link = { autogenerated = yes imp = 7846 imp = 9170 ck3 = 3247 } # Rhodanus, $PROV7846$ -> Rhne - link = { autogenerated = yes imp = 8034 ck3 = 3245 ck3 = 3246 } # Padus -> Po, Po - link = { autogenerated = yes imp = 8032 imp = 8033 ck3 = 3244 } # Padus, Padus -> Po - link = { autogenerated = yes imp = 8031 imp = 8030 ck3 = 3243 } # Padus, Padus -> Po - link = { autogenerated = yes imp = 8588 ck3 = 3242 } # $PROV8586$ -> Daugava - link = { autogenerated = yes imp = 8586 ck3 = 3241 } # Vain -> Daugava - link = { autogenerated = yes imp = 7888 ck3 = 3240 } # Albis -> Elbe - link = { autogenerated = yes imp = 7887 ck3 = 3239 } # Albis -> Elbe - link = { autogenerated = yes imp = 7886 imp = 7885 ck3 = 3238 } # Albis, Albis -> Elbe - link = { autogenerated = yes imp = 7884 ck3 = 3237 } # Albis -> Elbe - link = { autogenerated = yes imp = 9169 ck3 = 3236 } # $PROV7868$ -> Seine - link = { autogenerated = yes imp = 7870 imp = 9168 ck3 = 3235 } # Sequana, $PROV7868$ -> Seine - link = { autogenerated = yes imp = 7869 imp = 7868 ck3 = 3234 } # Sequana, Sequana -> Seine - link = { autogenerated = yes imp = 7729 ck3 = 3233 } # Rhenus -> Rhine - link = { autogenerated = yes imp = 7728 imp = 7727 ck3 = 3232 } # Rhenus, Rhenus -> Rhine - link = { autogenerated = yes imp = 7726 imp = 7725 ck3 = 3231 } # Rhenus, Rhenus -> Rhine - link = { autogenerated = yes imp = 5780 ck3 = 3230 } # Mare Germanicum -> Zeeland Delta - link = { autogenerated = yes imp = 5779 ck3 = 3229 } # Mare Germanicum -> Zeeland Delta - link = { autogenerated = yes imp = 7867 imp = 7866 ck3 = 3227 } # Liger, Liger -> Loire - link = { autogenerated = yes imp = 7864 imp = 7865 ck3 = 3226 } # Liger, Liger -> Loire - link = { autogenerated = yes imp = 9165 ck3 = 3225 } # $PROV7741$ -> Garonne - link = { autogenerated = yes imp = 7742 ck3 = 3223 } # $PROV7741$ -> Garonne - link = { autogenerated = yes imp = 7766 ck3 = 3224 } # Garumna -> Garonne - link = { autogenerated = yes imp = 6448 ck3 = 1492 } # Issyk-Kul -> LAKES TARTARIA + link = { autogenerated = yes imp = 9159 imp = 7772 ck3 = 3254 } # Baetis_3, Baetis -> river_guadalquivir + link = { autogenerated = yes imp = 7771 ck3 = 3253 } # Baetis -> river_guadalquivir + link = { autogenerated = yes imp = 9160 imp = 9161 ck3 = 3251 } # Flumen Anas_3, Flumen Anas_4 -> river_guadiana + link = { autogenerated = yes imp = 7862 imp = 7863 ck3 = 3250 } # Flumen Anas, Flumen Anas -> river_guadiana + link = { autogenerated = yes imp = 9172 ck3 = 3249 } # Rhodanus_4 -> river_rhone + link = { autogenerated = yes imp = 9171 ck3 = 3248 } # Rhodanus_3 -> river_rhone + link = { autogenerated = yes imp = 7846 imp = 9170 ck3 = 3247 } # Rhodanus, Rhodanus_2 -> river_rhone + link = { autogenerated = yes imp = 8034 ck3 = 3245 ck3 = 3246 } # Po -> river_po, river_po + link = { autogenerated = yes imp = 8032 imp = 8033 ck3 = 3244 } # Po, Po -> river_po + link = { autogenerated = yes imp = 8031 imp = 8030 ck3 = 3243 } # Po, Po -> river_po + link = { autogenerated = yes imp = 8588 ck3 = 3242 } # Daugava_3 -> river_daugava + link = { autogenerated = yes imp = 8586 ck3 = 3241 } # Daugava_1 -> river_daugava + link = { autogenerated = yes imp = 7888 ck3 = 3240 } # Albis -> river_elbe + link = { autogenerated = yes imp = 7887 ck3 = 3239 } # Albis -> river_elbe + link = { autogenerated = yes imp = 7886 imp = 7885 ck3 = 3238 } # Albis, Albis -> river_elbe + link = { autogenerated = yes imp = 7884 ck3 = 3237 } # Albis -> river_elbe + link = { autogenerated = yes imp = 9169 ck3 = 3236 } # Sequana_5 -> river_seine + link = { autogenerated = yes imp = 7870 imp = 9168 ck3 = 3235 } # Sequana, Sequana_4 -> river_seine + link = { autogenerated = yes imp = 7869 imp = 7868 ck3 = 3234 } # Sequana, Sequana -> river_seine + link = { autogenerated = yes imp = 7729 ck3 = 3233 } # RIVER -> river_rhine + link = { autogenerated = yes imp = 7728 imp = 7727 ck3 = 3232 } # RIVER, RIVER -> river_rhine + link = { autogenerated = yes imp = 7726 imp = 7725 ck3 = 3231 } # RIVER, RIVER -> river_rhine + link = { autogenerated = yes imp = 5780 ck3 = 3230 } # sea -> sea_zeeland_delta + link = { autogenerated = yes imp = 5779 ck3 = 3229 } # sea -> sea_zeeland_delta + link = { autogenerated = yes imp = 7867 imp = 7866 ck3 = 3227 } # Liger, Liger -> river_loire + link = { autogenerated = yes imp = 7864 imp = 7865 ck3 = 3226 } # Liger, Liger -> river_loire + link = { autogenerated = yes imp = 9165 ck3 = 3225 } # Garumna_4 -> river_garonne + link = { autogenerated = yes imp = 7742 ck3 = 3223 } # Garumna -> river_garonne + link = { autogenerated = yes imp = 7766 ck3 = 3224 } # Garumna -> river_garonne + link = { autogenerated = yes imp = 6448 ck3 = 1492 } # LAKE -> LAKES TARTARIA link = { autogenerated = yes imp = 6447 imp = 6445 imp = 6446 ck3 = 1491 } # LAKE, LAKE, LAKE -> TRANSOXIANA LAKES link = { autogenerated = yes imp = 6416 ck3 = 1490 } # LAKE -> Tibet Lakes link = { autogenerated = yes imp = 6353 imp = 6352 ck3 = 1486 } # LAKE, LAKE -> RUSSIAN LAKES 2 link = { autogenerated = yes imp = 8814 ck3 = 1484 } # PersianLakes -> PERSIAN LAKES - link = { autogenerated = yes imp = 2579 imp = 5982 imp = 6376 imp = 7685 ck3 = 1483 } # Delta Nili, Moeris, Canal of the Pharaohs, Canal of the Pharaohs -> EGYPT LAKES - link = { autogenerated = yes imp = 6425 imp = 6424 imp = 6428 ck3 = 1482 } # Matianus, Arsissa, Lychnitis -> EAST TURKISH LAKES - link = { autogenerated = yes imp = 6407 imp = 6393 imp = 6394 imp = 6395 imp = 6396 imp = 6400 imp = 6401 imp = 6402 imp = 6403 imp = 6405 imp = 6406 imp = 8040 imp = 8041 imp = 8053 ck3 = 1481 } # Tatta, Dascylitis, Apolloniatis, Ascania, LAKE, Khbid, LAKE, LAKE, Sanaos, Akrotiri, Carallis, Eblu, Aksehir, Mazaka Lake -> WEST TURKISH LAKES - link = { autogenerated = yes imp = 6382 imp = 6317 imp = 6360 imp = 6361 imp = 6383 imp = 6385 imp = 6388 imp = 6389 ck3 = 1480 } # Brygeis Megale, Kopais, LAKE, Labeatis, Brygeis Mikra, Trichonis, Koroneia, Bolbe -> GREEK LAKES + link = { autogenerated = yes imp = 2579 imp = 5982 imp = 6376 imp = 7685 ck3 = 1483 } # sea, Fayyum Oasis, LAKE, RIVER -> EGYPT LAKES + link = { autogenerated = yes imp = 6425 imp = 6424 imp = 6428 ck3 = 1482 } # LAKE, LAKE, LAKE -> EAST TURKISH LAKES + link = { autogenerated = yes imp = 6407 imp = 6393 imp = 6394 imp = 6395 imp = 6396 imp = 6400 imp = 6401 imp = 6402 imp = 6403 imp = 6405 imp = 6406 imp = 8040 imp = 8041 imp = 8053 ck3 = 1481 } # LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, Eblu, Aksehir, Mazaka Lake -> WEST TURKISH LAKES + link = { autogenerated = yes imp = 6382 imp = 6317 imp = 6360 imp = 6361 imp = 6383 imp = 6385 imp = 6388 imp = 6389 ck3 = 1480 } # LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE -> GREEK LAKES link = { autogenerated = yes imp = 9374 ck3 = 148 } # Parna -> SALACGRIVA - link = { autogenerated = yes imp = 6356 ck3 = 1479 } # Pelsodis -> HUNGARIAN LAKES - link = { autogenerated = yes imp = 6373 imp = 5983 imp = 6370 imp = 6371 imp = 6374 imp = 6375 imp = 6378 ck3 = 1478 } # Benacus, Sabatinus, LAKE, LAKE, LAKE, Volsinii, Trasumennus -> ITALIAN LAKES + link = { autogenerated = yes imp = 6356 ck3 = 1479 } # LAKE -> HUNGARIAN LAKES + link = { autogenerated = yes imp = 6373 imp = 5983 imp = 6370 imp = 6371 imp = 6374 imp = 6375 imp = 6378 ck3 = 1478 } # LAKE, Lacus Sabatinus, LAKE, LAKE, LAKE, LAKE, LAKE -> ITALIAN LAKES link = { autogenerated = yes imp = 6299 imp = 6303 imp = 6305 ck3 = 1477 } # LAKE, LAKE, LAKE -> IRISH LAKES - link = { autogenerated = yes imp = 5836 imp = 6321 imp = 9177 ck3 = 1476 } # Oceanus Sarmaticus, LAKE, Viadrus -> DANISH LAKES + link = { autogenerated = yes imp = 5836 imp = 6321 imp = 9177 ck3 = 1476 } # sea, LAKE, Oder_1 -> DANISH LAKES link = { autogenerated = yes imp = 6454 imp = 6345 ck3 = 1474 } # LAKE, LAKE -> SOUTH NORWAY LAKES link = { autogenerated = yes imp = 6350 imp = 6335 imp = 6336 imp = 6338 imp = 6339 ck3 = 1473 } # LAKE, LAKE, LAKE, LAKE, LAKE -> SOUTH SWEDEN LAKES link = { autogenerated = yes imp = 6453 imp = 6341 imp = 6343 imp = 6452 ck3 = 1472 } # LAKE, LAKE, LAKE, LAKE -> MIDDLE SWEDEN LAKES link = { autogenerated = yes imp = 9379 ck3 = 147 } # Leemi -> ALISTEGUNDE link = { autogenerated = yes imp = 9382 ck3 = 145 } # Nooli -> TARTU - link = { autogenerated = yes imp = 6749 ck3 = 1441 ck3 = 9601 } # Cherchen -> Cherchen, Waxxari + link = { autogenerated = yes imp = 6749 ck3 = 1441 ck3 = 9601 } # Shanshan -> Cherchen, Waxxari link = { autogenerated = yes imp = 9298 ck3 = 1430 ck3 = 7249 ck3 = 7251 } # Harsta -> Zhitikara, Dantenkul, Jitikul link = { autogenerated = yes imp = 6787 ck3 = 1423 ck3 = 7216 ck3 = 7217 } # Narin -> Fergana, Arslanbob, Sarybulak link = { autogenerated = yes imp = 9380 ck3 = 142 ck3 = 144 } # Loodak -> RAUNA, VALGA link = { autogenerated = yes imp = 6900 imp = 6899 imp = 5307 ck3 = 1413 } # Elankon, Kottiara, IP 308 -> Venadu - link = { autogenerated = yes imp = 2853 imp = 2848 imp = 2858 imp = 2870 ck3 = 1412 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea - link = { autogenerated = yes imp = 2977 imp = 2973 imp = 2974 imp = 2978 imp = 6459 imp = 6463 imp = 6464 imp = 6465 imp = 6466 imp = 6468 imp = 7795 ck3 = 1411 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, Ganges -> Bay of Bengal - link = { autogenerated = yes imp = 2972 imp = 2966 imp = 2971 ck3 = 1410 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2853 imp = 2848 imp = 2858 imp = 2870 ck3 = 1412 } # sea, sea, sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2977 imp = 2973 imp = 2974 imp = 2978 imp = 6459 imp = 6463 imp = 6464 imp = 6465 imp = 6466 imp = 6468 imp = 7795 ck3 = 1411 } # sea, sea, sea, sea, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, Ganges -> sea_bay_of_bengal + link = { autogenerated = yes imp = 2972 imp = 2966 imp = 2971 ck3 = 1410 } # sea, sea, sea -> sea_bay_of_bengal link = { autogenerated = yes imp = 9383 ck3 = 141 ck3 = 143 } # Hiiri -> ALUKSNE, VASTSELIINA - link = { autogenerated = yes imp = 2970 imp = 2964 imp = 2965 imp = 2969 ck3 = 1409 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal - link = { autogenerated = yes imp = 2985 imp = 2958 imp = 2963 imp = 2967 imp = 2968 imp = 2987 ck3 = 1407 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal - link = { autogenerated = yes imp = 2982 imp = 2956 imp = 2957 imp = 2960 imp = 2961 imp = 2962 imp = 2983 imp = 2984 imp = 6455 imp = 9217 ck3 = 1406 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Podouke, Penner -> Bay of Bengal - link = { autogenerated = yes imp = 2981 imp = 2946 imp = 2947 imp = 2953 imp = 2954 imp = 2980 ck3 = 1405 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal - link = { autogenerated = yes imp = 2959 imp = 2940 imp = 2948 imp = 2955 ck3 = 1404 } # Sinus Gangeticus, Mare Erythraeum, Sinus Gangeticus, Sinus Gangeticus -> Palk Bay - link = { autogenerated = yes imp = 2951 imp = 2944 imp = 2945 imp = 2952 ck3 = 1403 } # Mare Erythraeum, Mare Erythraeum, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal - link = { autogenerated = yes imp = 2934 imp = 2936 imp = 2937 imp = 2938 imp = 2939 imp = 2941 imp = 2942 imp = 2943 ck3 = 1402 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Laccadive Sea - link = { autogenerated = yes imp = 2896 imp = 2866 imp = 2867 imp = 2868 imp = 2892 imp = 2897 imp = 2898 imp = 2902 ck3 = 1401 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Laccadive Sea - link = { autogenerated = yes imp = 2912 imp = 2865 imp = 2893 imp = 2916 ck3 = 1400 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea - link = { autogenerated = yes imp = 2919 imp = 2863 imp = 2864 imp = 2928 ck3 = 1399 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea - link = { autogenerated = yes imp = 2859 imp = 2924 imp = 2927 ck3 = 1398 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea - link = { autogenerated = yes imp = 2855 imp = 2856 ck3 = 1397 } # Rann of Kutch, Gulf of Kutch -> Arabian Sea - link = { autogenerated = yes imp = 2849 imp = 2850 imp = 2851 imp = 2852 ck3 = 1396 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea - link = { autogenerated = yes imp = 2816 imp = 2814 imp = 2815 imp = 2817 imp = 2818 ck3 = 1395 } # Sinus Persicus, Sinus Persicus, Sinus Persicus, Sinus Persicus, Sinus Persicus -> Persian Gulf - link = { autogenerated = yes imp = 2821 imp = 2813 imp = 2819 ck3 = 1394 } # Sinus Persicus, Sinus Persicus, Sinus Persicus -> Persian Gulf - link = { autogenerated = yes imp = 2809 imp = 2803 imp = 2804 imp = 2808 ck3 = 1393 } # Sinus Persicus, Mare Erythraeum, Mare Erythraeum, Fretum Persarum -> Strait of Hormuz - link = { autogenerated = yes imp = 2806 imp = 2802 imp = 2805 imp = 2807 imp = 2846 ck3 = 1392 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Gulf of Oman - link = { autogenerated = yes imp = 2800 imp = 2801 imp = 2839 ck3 = 1391 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea - link = { autogenerated = yes imp = 2836 imp = 2799 ck3 = 1390 } # Mare Erythraeum, Sinus Sachalites -> Arabian Sea - link = { autogenerated = yes imp = 2823 imp = 2795 imp = 2798 imp = 2829 imp = 2832 ck3 = 1389 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea - link = { autogenerated = yes imp = 2794 imp = 2793 imp = 2796 imp = 2797 imp = 2826 imp = 2827 imp = 2830 ck3 = 1388 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Guardafui Channel - link = { autogenerated = yes imp = 2783 imp = 2787 imp = 2789 ck3 = 1387 } # Sinus Adenensis, Sinus Adenensis, Sinus Adenensis -> Gulf of Aden - link = { autogenerated = yes imp = 2781 imp = 2782 ck3 = 1386 } # Sinus Adenensis, Sinus Adenensis -> Gulf of Aden - link = { autogenerated = yes imp = 1488 ck3 = 1385 } # Sinus Arabicus -> Bab-el-Mandeb - link = { autogenerated = yes imp = 1482 imp = 1480 imp = 1481 imp = 1483 imp = 1493 imp = 1494 imp = 1495 imp = 1496 ck3 = 1384 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus -> Red Sea - link = { autogenerated = yes imp = 1479 imp = 1477 imp = 1478 imp = 1490 imp = 1491 imp = 1492 ck3 = 1383 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus -> Red Sea - link = { autogenerated = yes imp = 1473 imp = 1474 imp = 1475 imp = 1476 imp = 652 imp = 653 imp = 654 imp = 7684 imp = 7743 imp = 7744 imp = 7745 imp = 7746 ck3 = 1382 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Heroopoliticus, Sinus Arabicus, Sinus Arabicus, Canal of the Pharaohs, $PROV652$, $PROV652$, $PROV653$, $PROV653$ -> Red Sea + link = { autogenerated = yes imp = 2970 imp = 2964 imp = 2965 imp = 2969 ck3 = 1409 } # sea, sea, sea, sea -> sea_bay_of_bengal + link = { autogenerated = yes imp = 2985 imp = 2958 imp = 2963 imp = 2967 imp = 2968 imp = 2987 ck3 = 1407 } # sea, sea, sea, sea, sea, sea -> sea_bay_of_bengal + link = { autogenerated = yes imp = 2982 imp = 2956 imp = 2957 imp = 2960 imp = 2961 imp = 2962 imp = 2983 imp = 2984 imp = 6455 imp = 9217 ck3 = 1406 } # sea, sea, sea, sea, sea, sea, sea, sea, LAKE, Penner_1 -> sea_bay_of_bengal + link = { autogenerated = yes imp = 2981 imp = 2946 imp = 2947 imp = 2953 imp = 2954 imp = 2980 ck3 = 1405 } # sea, sea, sea, sea, sea, sea -> sea_bay_of_bengal + link = { autogenerated = yes imp = 2959 imp = 2940 imp = 2948 imp = 2955 ck3 = 1404 } # sea, sea, sea, sea -> sea_palk_bay + link = { autogenerated = yes imp = 2951 imp = 2944 imp = 2945 imp = 2952 ck3 = 1403 } # sea, sea, sea, sea -> sea_bay_of_bengal + link = { autogenerated = yes imp = 2934 imp = 2936 imp = 2937 imp = 2938 imp = 2939 imp = 2941 imp = 2942 imp = 2943 ck3 = 1402 } # sea, sea, sea, sea, sea, sea, sea, sea -> sea_laccadive_sea + link = { autogenerated = yes imp = 2896 imp = 2866 imp = 2867 imp = 2868 imp = 2892 imp = 2897 imp = 2898 imp = 2902 ck3 = 1401 } # sea, sea, sea, sea, sea, sea, sea, sea -> sea_laccadive_sea + link = { autogenerated = yes imp = 2912 imp = 2865 imp = 2893 imp = 2916 ck3 = 1400 } # sea, sea, sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2919 imp = 2863 imp = 2864 imp = 2928 ck3 = 1399 } # sea, sea, sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2859 imp = 2924 imp = 2927 ck3 = 1398 } # sea, sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2855 imp = 2856 ck3 = 1397 } # sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2849 imp = 2850 imp = 2851 imp = 2852 ck3 = 1396 } # sea, sea, sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2816 imp = 2814 imp = 2815 imp = 2817 imp = 2818 ck3 = 1395 } # sea, sea, sea, sea, sea -> sea_persian_gulf + link = { autogenerated = yes imp = 2821 imp = 2813 imp = 2819 ck3 = 1394 } # sea, sea, sea -> sea_persian_gulf + link = { autogenerated = yes imp = 2809 imp = 2803 imp = 2804 imp = 2808 ck3 = 1393 } # sea, sea, sea, sea -> sea_strait_of_hormuz + link = { autogenerated = yes imp = 2806 imp = 2802 imp = 2805 imp = 2807 imp = 2846 ck3 = 1392 } # sea, sea, sea, sea, sea -> sea_gulf_oman + link = { autogenerated = yes imp = 2800 imp = 2801 imp = 2839 ck3 = 1391 } # sea, sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2836 imp = 2799 ck3 = 1390 } # sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2823 imp = 2795 imp = 2798 imp = 2829 imp = 2832 ck3 = 1389 } # sea, sea, sea, sea, sea -> sea_arabian_sea + link = { autogenerated = yes imp = 2794 imp = 2793 imp = 2796 imp = 2797 imp = 2826 imp = 2827 imp = 2830 ck3 = 1388 } # sea, sea, sea, sea, sea, sea, sea -> sea_guardafui_channel + link = { autogenerated = yes imp = 2783 imp = 2787 imp = 2789 ck3 = 1387 } # sea, sea, sea -> sea_gulf_aden + link = { autogenerated = yes imp = 2781 imp = 2782 ck3 = 1386 } # sea, sea -> sea_gulf_aden + link = { autogenerated = yes imp = 1488 ck3 = 1385 } # S -> sea_bab_el_mandeb + link = { autogenerated = yes imp = 1482 imp = 1480 imp = 1481 imp = 1483 imp = 1493 imp = 1494 imp = 1495 imp = 1496 ck3 = 1384 } # S, S, S, S, S, S, S, S -> sea_red_sea + link = { autogenerated = yes imp = 1479 imp = 1477 imp = 1478 imp = 1490 imp = 1491 imp = 1492 ck3 = 1383 } # S, S, S, S, S, S -> sea_red_sea + link = { autogenerated = yes imp = 1473 imp = 1474 imp = 1475 imp = 1476 imp = 652 imp = 653 imp = 654 imp = 7684 imp = 7743 imp = 7744 imp = 7745 imp = 7746 ck3 = 1382 } # S, S, S, S, S, S, S, RIVER, Sinus Heroopoliticus, Sinus Heroopoliticus, Sinus Arabicus, Sinus Arabicus -> sea_red_sea link = { autogenerated = yes imp = 9386 ck3 = 138 } # Jauhadak -> REZEKNE link = { autogenerated = yes imp = 9257 imp = 4383 ck3 = 1376 } # Gomal, Abortai -> Daraban - link = { autogenerated = yes imp = 4319 ck3 = 1375 } # Gorydale -> Kafirkot - link = { autogenerated = yes imp = 5445 ck3 = 1364 ck3 = 3459 } # Grodaka -> Tribandapura, Bhatnir + link = { autogenerated = yes imp = 4319 ck3 = 1375 } # Sattagydae -> Kafirkot + link = { autogenerated = yes imp = 5445 ck3 = 1364 ck3 = 3459 } # UNINHABITABLE -> Tribandapura, Bhatnir link = { autogenerated = yes imp = 9279 ck3 = 1363 } # Harapa -> Dipalpur link = { autogenerated = yes imp = 9387 ck3 = 136 ck3 = 137 } # Niini -> JERSIKA, DAUGAVPILS link = { autogenerated = yes imp = 9384 ck3 = 135 ck3 = 140 } # Mendak -> JEKABPILS, GULBENE link = { autogenerated = yes imp = 6421 imp = 7661 imp = 7662 imp = 7663 imp = 7664 ck3 = 1348 } # LAKE, LAKE, LAKE, LAKE, LAKE -> TIBETAN LAKES - link = { autogenerated = yes imp = 4349 ck3 = 1338 } # Mallia -> Multan + link = { autogenerated = yes imp = 4349 ck3 = 1338 } # Malava -> Multan link = { autogenerated = yes imp = 9271 ck3 = 1327 } # Kolhua -> Rothas - link = { autogenerated = yes imp = 7785 imp = 7783 imp = 7784 imp = 9233 ck3 = 1316 } # Dyardanes, Dyardanes, Dyardanes, $PROV7783$ -> Brahmaputra - link = { autogenerated = yes imp = 7707 imp = 7708 imp = 9223 ck3 = 1315 } # Ganges, Ganges, $PROV7701$ -> Ganges - link = { autogenerated = yes imp = 9228 imp = 9227 imp = 9229 ck3 = 1314 } # $PROV7701$, $PROV7701$, $PROV7701$ -> Ganges - link = { autogenerated = yes imp = 7706 imp = 7705 ck3 = 1313 } # Ganges, Ganges -> Ganges - link = { autogenerated = yes imp = 7703 imp = 7704 imp = 7791 ck3 = 1312 } # Ganges, Ganges, Ganges -> Ganges - link = { autogenerated = yes imp = 7702 imp = 7701 ck3 = 1311 } # Ganges, Ganges -> Ganges - link = { autogenerated = yes imp = 7700 imp = 7692 ck3 = 1309 } # Indus, Indus -> Indus - link = { autogenerated = yes imp = 7698 imp = 7696 imp = 7697 imp = 7699 ck3 = 1308 } # Indus, Indus, Indus, Indus -> Indus - link = { autogenerated = yes imp = 7695 ck3 = 1307 } # Indus -> Indus + link = { autogenerated = yes imp = 7785 imp = 7783 imp = 7784 imp = 9233 ck3 = 1316 } # Dyardanes, Dyardanes, Dyardanes, Brahmaputra_4 -> river_brahmaputra + link = { autogenerated = yes imp = 7707 imp = 7708 imp = 9223 ck3 = 1315 } # RIVER, RIVER, Ganges_17 -> river_ganges + link = { autogenerated = yes imp = 9228 imp = 9227 imp = 9229 ck3 = 1314 } # Ganges_22, Ganges_21, Ganges_23 -> river_ganges + link = { autogenerated = yes imp = 7706 imp = 7705 ck3 = 1313 } # RIVER, RIVER -> river_ganges + link = { autogenerated = yes imp = 7703 imp = 7704 imp = 7791 ck3 = 1312 } # RIVER, RIVER, Ganges -> river_ganges + link = { autogenerated = yes imp = 7702 imp = 7701 ck3 = 1311 } # RIVER, RIVER -> river_ganges + link = { autogenerated = yes imp = 7700 imp = 7692 ck3 = 1309 } # RIVER, RIVER -> river_indus + link = { autogenerated = yes imp = 7698 imp = 7696 imp = 7697 imp = 7699 ck3 = 1308 } # RIVER, RIVER, RIVER, RIVER -> river_indus + link = { autogenerated = yes imp = 7695 ck3 = 1307 } # RIVER -> river_indus link = { autogenerated = yes imp = 6449 ck3 = 1305 } # LAKE -> Balkhash Lake - link = { autogenerated = yes imp = 4431 imp = 7475 ck3 = 1281 } # Sumsumaragiri, Mau -> Chunar + link = { autogenerated = yes imp = 4431 imp = 7475 ck3 = 1281 } # Sumsumaragiri, Mau* -> Chunar link = { autogenerated = yes imp = 7453 ck3 = 1278 } # Kakaradika -> Gurgi link = { autogenerated = yes imp = 9277 ck3 = 1277 ck3 = 1241 ck3 = 1272 } # Bargarh -> Tummana, Koriya, Ratanpur link = { autogenerated = yes imp = 4444 ck3 = 1276 ck3 = 873 } # Gaya -> Gaya, Bodh_Gaya link = { autogenerated = yes imp = 7039 ck3 = 1253 ck3 = 7846 } # Kantakossyla -> Nilagiri, Mutfili - link = { autogenerated = yes imp = 7474 imp = 7659 ck3 = 1251 } # Rohtas, Madanpur -> Sasaram + link = { autogenerated = yes imp = 7474 imp = 7659 ck3 = 1251 } # Rohtas, Madanpur* -> Sasaram link = { autogenerated = yes imp = 7368 ck3 = 1242 ck3 = 844 } # Yavana -> Lakhnor, Kalyaneshwari link = { autogenerated = yes imp = 7328 ck3 = 1239 ck3 = 1323 ck3 = 845 ck3 = 855 } # Vardhamana -> Vijayapura, Nabadwipa, Gopbhum, Attahasa link = { autogenerated = yes imp = 7365 ck3 = 1238 ck3 = 859 ck3 = 860 } # Ladha -> Mallabhum, Visnupura, Umardan link = { autogenerated = yes imp = 9275 ck3 = 1237 ck3 = 910 } # Bokaro -> Rajrappa, Kenduli link = { autogenerated = yes imp = 7362 ck3 = 1235 } # Mallabhum -> Tamralipti - link = { autogenerated = yes imp = 7338 imp = 5370 imp = 5371 ck3 = 1234 } # Deoghar, IP 371, IP 372 -> Deogarh2 + link = { autogenerated = yes imp = 7338 imp = 5370 imp = 5371 ck3 = 1234 } # Deoghar*, IP 371, IP 372 -> Deogarh2 link = { autogenerated = yes imp = 7345 ck3 = 1233 ck3 = 857 } # Nabadwipa -> Saptagrama, Pandua link = { autogenerated = yes imp = 7391 ck3 = 1232 } # Kharagpur -> Midnapore link = { autogenerated = yes imp = 7174 ck3 = 1231 ck3 = 3980 } # Jajatipura -> Viraja, Bhadrak - link = { autogenerated = yes imp = 6881 imp = 6879 imp = 6880 ck3 = 1220 } # Tyrannosboas, Pisauta, Vasi -> Goa + link = { autogenerated = yes imp = 6881 imp = 6879 imp = 6880 ck3 = 1220 } # Tyrannosboas, Byzantion, Vasi -> Goa link = { autogenerated = yes imp = 7001 ck3 = 1219 } # Melange -> Potapi link = { autogenerated = yes imp = 7091 ck3 = 1218 ck3 = 7854 } # Bhakkuli -> Alampur, Kandanavolu link = { autogenerated = yes imp = 7029 imp = 5311 ck3 = 1217 } # Bendakaluru, IP 312 -> Nandagiri @@ -5799,158 +5799,158 @@ imperator_invictus = { link = { autogenerated = yes imp = 7042 imp = 7019 ck3 = 1207 } # Pitoura, Andhapura -> Amaravati link = { autogenerated = yes imp = 7070 ck3 = 1203 ck3 = 7877 } # Maski -> Idatarainadu, Mushangi link = { autogenerated = yes imp = 6885 ck3 = 1200 } # Nouira -> Kanara - link = { autogenerated = yes imp = 7109 ck3 = 1198 ck3 = 1202 } # Vijayapura -> Vatapi, Kudalasangama + link = { autogenerated = yes imp = 7109 ck3 = 1198 ck3 = 1202 } # Vijayapura******* -> Vatapi, Kudalasangama link = { autogenerated = yes imp = 7035 ck3 = 1197 ck3 = 7853 } # Kalligeris -> Dwarasamudra, Kudala link = { autogenerated = yes imp = 7263 ck3 = 1186 } # Jaxartes -> Chach - link = { autogenerated = yes imp = 6997 imp = 4324 imp = 4325 imp = 4490 imp = 5373 ck3 = 1180 } # Ora, Gorya, Mardan, Baziria, IP 374 -> Udabhanda + link = { autogenerated = yes imp = 6997 imp = 4324 imp = 4325 imp = 4490 imp = 5373 ck3 = 1180 } # Ora, Jamal Garhi, Mardan, Baziria, IP 374 -> Udabhanda link = { autogenerated = yes imp = 9248 ck3 = 1156 } # Kamalanga -> Kodalaka link = { autogenerated = yes imp = 4442 ck3 = 1154 } # Nalanda -> Pataliputra link = { autogenerated = yes imp = 7400 ck3 = 1152 } # Jayapura -> Mudgagiri - link = { autogenerated = yes imp = 6884 imp = 6887 ck3 = 1124 } # Chersonesos Vanavasi, Pira -> Honnore + link = { autogenerated = yes imp = 6884 imp = 6887 ck3 = 1124 } # Chersonesos, Pira -> Honnore link = { autogenerated = yes imp = 7003 imp = 7012 ck3 = 1122 } # Kottis, Palakka -> Udayagiri link = { autogenerated = yes imp = 7037 imp = 7020 ck3 = 1121 } # Chitradurga, Isila -> Uchangidurga link = { autogenerated = yes imp = 6999 ck3 = 1119 } # Mayurasattapattinam -> Kanchipuram - link = { autogenerated = yes imp = 7030 ck3 = 1118 ck3 = 1196 } # Mahisha -> Manyapura, Srirangapatna + link = { autogenerated = yes imp = 7030 ck3 = 1118 ck3 = 1196 } # Kaveri -> Manyapura, Srirangapatna link = { autogenerated = yes imp = 6890 imp = 5309 ck3 = 1117 } # Naura, IP 310 -> Qalqut link = { autogenerated = yes imp = 6929 imp = 6924 imp = 6931 ck3 = 1115 } # Venni, Karukka, Nikama -> Cholamandalam link = { autogenerated = yes imp = 6893 ck3 = 1114 } # Tyndis -> Mahoyadapuram - link = { autogenerated = yes imp = 2617 imp = 2595 imp = 2619 ck3 = 1111 } # Mare Aegaeum, Mare Icarium, Mare Aegaeum -> Aegean Sea - link = { autogenerated = yes imp = 2507 imp = 2515 ck3 = 1110 } # Sinus Veneticus, Sinus Veneticus -> Gulf of Venice - link = { autogenerated = yes imp = 2541 imp = 2529 imp = 2537 imp = 2538 imp = 2542 imp = 6359 ck3 = 1109 } # Mare Superum, Mare Superum, Mare Superum, Mare Superum, Mare Superum, LAKE -> Adriatic Sea - link = { autogenerated = yes imp = 9412 ck3 = 1106 } # $PROV9198$ -> Volga - link = { autogenerated = yes imp = 6450 ck3 = 1105 ck3 = 8573 ck3 = 8579 } # LAKE -> Volga, Cheksna, Volga - link = { autogenerated = yes imp = 9198 imp = 9409 ck3 = 1103 } # $PROV8047$, $PROV9198$ -> Volga - link = { autogenerated = yes imp = 9411 ck3 = 1095 } # $PROV9198$ -> Volga - link = { autogenerated = yes imp = 9196 imp = 9195 imp = 9197 ck3 = 1094 } # $PROV8047$, $PROV8047$, $PROV8047$ -> Volga - link = { autogenerated = yes imp = 9194 ck3 = 1093 } # $PROV8047$ -> Volga - link = { autogenerated = yes imp = 8049 imp = 8048 ck3 = 1092 } # Rha, Rha -> Volga - link = { autogenerated = yes imp = 9192 imp = 9193 ck3 = 1091 } # $PROV8042$, $PROV8042$ -> Don - link = { autogenerated = yes imp = 8584 imp = 8044 imp = 8045 imp = 8046 imp = 8583 ck3 = 1090 } # $PROV8042$, Tanais, Tanais, Tanais, $PROV8042$ -> Don - link = { autogenerated = yes imp = 9417 imp = 9416 ck3 = 1087 } # Velho, Velho -> Lovat - link = { autogenerated = yes imp = 9414 ck3 = 1086 } # Velho -> Lake Ilmen - link = { autogenerated = yes imp = 8575 ck3 = 1083 } # Ammodeis Ochthes -> Pripyat - link = { autogenerated = yes imp = 9407 imp = 9408 ck3 = 1082 } # $PROV8589$, $PROV8589$ -> Daugava - link = { autogenerated = yes imp = 8587 ck3 = 1081 } # $PROV8586$ -> Daugava + link = { autogenerated = yes imp = 2617 imp = 2595 imp = 2619 ck3 = 1111 } # sea, sea, sea -> sea_aegean + link = { autogenerated = yes imp = 2507 imp = 2515 ck3 = 1110 } # sea, sea -> sea_gulf_venice + link = { autogenerated = yes imp = 2541 imp = 2529 imp = 2537 imp = 2538 imp = 2542 imp = 6359 ck3 = 1109 } # sea, sea, sea, sea, sea, LAKE -> sea_adriatic_sea + link = { autogenerated = yes imp = 9412 ck3 = 1106 } # Rha_12 -> river_volga + link = { autogenerated = yes imp = 6450 ck3 = 1105 ck3 = 8573 ck3 = 8579 } # LAKE -> river_volga, river_cheksna, river_volga + link = { autogenerated = yes imp = 9198 imp = 9409 ck3 = 1103 } # Rha_8, Rha_9 -> river_volga + link = { autogenerated = yes imp = 9411 ck3 = 1095 } # Rha_11 -> river_volga + link = { autogenerated = yes imp = 9196 imp = 9195 imp = 9197 ck3 = 1094 } # Rha_6, Rha_5, Rha_7 -> river_volga + link = { autogenerated = yes imp = 9194 ck3 = 1093 } # Rha_4 -> river_volga + link = { autogenerated = yes imp = 8049 imp = 8048 ck3 = 1092 } # Rha, Rha -> river_volga + link = { autogenerated = yes imp = 9192 imp = 9193 ck3 = 1091 } # Tanais_10, Tanais_11 -> river_don + link = { autogenerated = yes imp = 8584 imp = 8044 imp = 8045 imp = 8046 imp = 8583 ck3 = 1090 } # Tanais_8, Tanais, Tanais, Tanais, Tanais_7 -> river_don + link = { autogenerated = yes imp = 9417 imp = 9416 ck3 = 1087 } # Volkhov_5, Volkhov_4 -> river_lovat + link = { autogenerated = yes imp = 9414 ck3 = 1086 } # Volkhov_2 -> lake_ilmen + link = { autogenerated = yes imp = 8575 ck3 = 1083 } # Pripyat_1 -> river_pripyat + link = { autogenerated = yes imp = 9407 imp = 9408 ck3 = 1082 } # Daugava_5, Daugava_6 -> river_daugava + link = { autogenerated = yes imp = 8587 ck3 = 1081 } # Daugava_2 -> river_daugava link = { autogenerated = yes imp = 9376 ck3 = 108 ck3 = 109 } # Cina -> RIGA, VENDEN - link = { autogenerated = yes imp = 8577 imp = 8576 ck3 = 1079 } # $PROV8575$, $PROV8575$ -> Pripyat - link = { autogenerated = yes imp = 9405 ck3 = 1078 } # $PROV8574$ -> Dnieper - link = { autogenerated = yes imp = 6354 ck3 = 1077 } # Borysthenes -> Dnieper - link = { autogenerated = yes imp = 8581 ck3 = 1074 ck3 = 1075 } # $PROV8578$ -> Desna, Desna - link = { autogenerated = yes imp = 8578 ck3 = 1073 } # Dexi Cheri -> Desna - link = { autogenerated = yes imp = 7880 ck3 = 1072 } # Borysthenes -> Dnieper - link = { autogenerated = yes imp = 7878 imp = 7879 ck3 = 1071 } # Borysthenes, Borysthenes -> Dnieper - link = { autogenerated = yes imp = 7873 imp = 7871 imp = 7872 imp = 7874 ck3 = 1070 } # Borysthenes, Borysthenes, Borysthenes, Borysthenes -> Dnieper + link = { autogenerated = yes imp = 8577 imp = 8576 ck3 = 1079 } # Pripyat_3, Pripyat_2 -> river_pripyat + link = { autogenerated = yes imp = 9405 ck3 = 1078 } # Borysthenes_16 -> river_dnieper + link = { autogenerated = yes imp = 6354 ck3 = 1077 } # Borysthenes_12 -> river_dnieper + link = { autogenerated = yes imp = 8581 ck3 = 1074 ck3 = 1075 } # Desna_4 -> river_desna, river_desna + link = { autogenerated = yes imp = 8578 ck3 = 1073 } # Desna_1 -> river_desna + link = { autogenerated = yes imp = 7880 ck3 = 1072 } # Borysthenes -> river_dnieper + link = { autogenerated = yes imp = 7878 imp = 7879 ck3 = 1071 } # Borysthenes, Borysthenes -> river_dnieper + link = { autogenerated = yes imp = 7873 imp = 7871 imp = 7872 imp = 7874 ck3 = 1070 } # Borysthenes, Borysthenes, Borysthenes, Borysthenes -> river_dnieper link = { autogenerated = yes imp = 5367 ck3 = 1069 } # Tritonis -> Chott el Djerid - link = { autogenerated = yes imp = 9190 ck3 = 1065 } # $PROV7773$ -> Danube - link = { autogenerated = yes imp = 2989 imp = 2988 imp = 2990 imp = 2991 imp = 2992 imp = 2996 imp = 2998 imp = 2999 imp = 4569 imp = 4570 imp = 4571 ck3 = 1064 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum -> Caspian Sea - link = { autogenerated = yes imp = 9186 imp = 9187 ck3 = 1063 } # $PROV7773$, $PROV7773$ -> Danube - link = { autogenerated = yes imp = 4587 imp = 2995 imp = 4578 imp = 4579 imp = 4580 imp = 4581 imp = 4582 imp = 4583 imp = 4585 imp = 4586 imp = 8047 ck3 = 1062 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Rha -> Caspian Sea - link = { autogenerated = yes imp = 7782 imp = 7781 imp = 9184 imp = 9185 ck3 = 1061 } # Ister, Ister, $PROV7773$, $PROV7773$ -> Danube - link = { autogenerated = yes imp = 7779 imp = 7780 ck3 = 1060 } # Ister, Ister -> Danube - link = { autogenerated = yes imp = 7777 imp = 7776 imp = 7778 ck3 = 1059 } # Ister, Ister, Ister -> Danube - link = { autogenerated = yes imp = 7773 imp = 7774 imp = 7775 ck3 = 1058 } # Ister, Ister, Ister -> Danube - link = { autogenerated = yes imp = 2739 imp = 7881 imp = 7882 ck3 = 1056 } # Pontus Euxinus, Tyras, Tyras -> Dniester - link = { autogenerated = yes imp = 9183 ck3 = 1054 ck3 = 1055 } # Ouistoula -> Vistula, Vistula - link = { autogenerated = yes imp = 9180 imp = 9181 imp = 9182 ck3 = 1053 } # Ouistoula, Ouistoula, Ouistoula -> Vistula - link = { autogenerated = yes imp = 9179 imp = 9178 ck3 = 1052 } # Ouistoula, Ouistoula -> Vistula - link = { autogenerated = yes imp = 2533 ck3 = 1038 } # Fretum Hydruntis -> Strait of Otranto - link = { autogenerated = yes imp = 2649 imp = 2612 imp = 2613 imp = 7747 ck3 = 1037 } # Mare Ionium, Mare Ionium, Mare Ionium, Sinus Patraicus -> Ionian Sea - link = { autogenerated = yes imp = 2648 imp = 2511 imp = 2513 imp = 2522 ck3 = 1036 } # Mare Ionium, Mare Ionium, Mare Ionium, Sinus Tarentinus -> Gulf of Taranto - link = { autogenerated = yes imp = 2656 imp = 2574 imp = 2575 imp = 2646 imp = 2661 ck3 = 1035 } # Mare Aegyptium, Mare Aegyptium, Mare Aegyptium, Mare Libycum, Mare Aegyptium -> Libyan Sea - link = { autogenerated = yes imp = 2629 imp = 2516 imp = 2519 imp = 2520 imp = 2627 imp = 2630 imp = 2633 ck3 = 1034 } # Mare Libycum, Fretum Melitense, Fretum Melitense, Fretum Siculum, Mare Libycum, Fretum Melitense, Mare Libycum -> Malta Channel - link = { autogenerated = yes imp = 2625 imp = 2517 ck3 = 1033 } # Fretum Siculum, Fretum Siculum -> Sicilian Narrows - link = { autogenerated = yes imp = 2506 imp = 2500 imp = 2521 ck3 = 1032 } # Mare Tyrrhenum, Mare Tyrrenum, Mare Tyrrhenum -> Coast of Palermo - link = { autogenerated = yes imp = 2504 ck3 = 1031 } # Mare Tyrrhenum -> Gulf of Napoli - link = { autogenerated = yes imp = 2689 imp = 2698 imp = 2699 imp = 2700 ck3 = 1030 } # Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum -> Coast of Sardinia + link = { autogenerated = yes imp = 9190 ck3 = 1065 } # Ister_17 -> river_danube + link = { autogenerated = yes imp = 2989 imp = 2988 imp = 2990 imp = 2991 imp = 2992 imp = 2996 imp = 2998 imp = 2999 imp = 4569 imp = 4570 imp = 4571 ck3 = 1064 } # sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, sea -> sea_caspian + link = { autogenerated = yes imp = 9186 imp = 9187 ck3 = 1063 } # Ister_13, Ister_14 -> river_danube + link = { autogenerated = yes imp = 4587 imp = 2995 imp = 4578 imp = 4579 imp = 4580 imp = 4581 imp = 4582 imp = 4583 imp = 4585 imp = 4586 imp = 8047 ck3 = 1062 } # sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, Rha -> sea_caspian + link = { autogenerated = yes imp = 7782 imp = 7781 imp = 9184 imp = 9185 ck3 = 1061 } # Ister, Ister, Ister_11, Ister_12 -> river_danube + link = { autogenerated = yes imp = 7779 imp = 7780 ck3 = 1060 } # Ister, Ister -> river_danube + link = { autogenerated = yes imp = 7777 imp = 7776 imp = 7778 ck3 = 1059 } # Ister, Ister, Ister -> river_danube + link = { autogenerated = yes imp = 7773 imp = 7774 imp = 7775 ck3 = 1058 } # Ister, Ister, Ister -> river_danube + link = { autogenerated = yes imp = 2739 imp = 7881 imp = 7882 ck3 = 1056 } # sea, Tyras, Tyras -> river_dniester + link = { autogenerated = yes imp = 9183 ck3 = 1054 ck3 = 1055 } # Vistual_6 -> river_vistula, river_vistula + link = { autogenerated = yes imp = 9180 imp = 9181 imp = 9182 ck3 = 1053 } # Vistual_3, Vistual_4, Vistual_5 -> river_vistula + link = { autogenerated = yes imp = 9179 imp = 9178 ck3 = 1052 } # Vistual_2, Vistual_1 -> river_vistula + link = { autogenerated = yes imp = 2533 ck3 = 1038 } # sea -> sea_strait_otranto + link = { autogenerated = yes imp = 2649 imp = 2612 imp = 2613 imp = 7747 ck3 = 1037 } # sea, sea, sea, Sinus Patraius -> sea_ionia + link = { autogenerated = yes imp = 2648 imp = 2511 imp = 2513 imp = 2522 ck3 = 1036 } # sea, sea, sea, sea -> sea_gulf_taranto + link = { autogenerated = yes imp = 2656 imp = 2574 imp = 2575 imp = 2646 imp = 2661 ck3 = 1035 } # sea, sea, sea, sea, sea -> sea_libya + link = { autogenerated = yes imp = 2629 imp = 2516 imp = 2519 imp = 2520 imp = 2627 imp = 2630 imp = 2633 ck3 = 1034 } # sea, sea, sea, sea, sea, sea, sea -> sea_malta + link = { autogenerated = yes imp = 2625 imp = 2517 ck3 = 1033 } # sea, sea -> sea_sicilian_narrows + link = { autogenerated = yes imp = 2506 imp = 2500 imp = 2521 ck3 = 1032 } # sea, sea, sea -> sea_palermo + link = { autogenerated = yes imp = 2504 ck3 = 1031 } # sea -> sea_gulf_napoli + link = { autogenerated = yes imp = 2689 imp = 2698 imp = 2699 imp = 2700 ck3 = 1030 } # sea, sea, sea, sea -> sea_sardinian_coast link = { autogenerated = yes imp = 9381 ck3 = 103 ck3 = 134 ck3 = 139 } # Keerdak -> KOKENOIS, LENNEWARDEN, CESVAINE - link = { autogenerated = yes imp = 2697 imp = 2503 ck3 = 1029 } # Mare Tyrrhenum, Mare Tyrrhenum -> Tyrrhenian Sea - link = { autogenerated = yes imp = 2548 imp = 2547 imp = 2695 ck3 = 1028 } # Sinus Genuensis, Mare Ligusticum, Mare Ligusticum -> Gulf of Genoa - link = { autogenerated = yes imp = 2549 imp = 2550 ck3 = 1027 } # Mare Ligusticum, Mare Sardoum -> Cte D'Azur - link = { autogenerated = yes imp = 6366 imp = 6362 imp = 6364 imp = 6365 ck3 = 1026 } # Lemannus, Everdunensis, LAKE, Brigantinus -> ALP LAKES - link = { autogenerated = yes imp = 2551 imp = 2552 imp = 2707 ck3 = 1025 } # Sinus Gallicus, Sinus Gallicus, Sinus Gallicus -> Gulf of Lion - link = { autogenerated = yes imp = 2710 imp = 2690 ck3 = 1024 } # Mare Sardoum, Mare Sardoum -> Sardinian Sea - link = { autogenerated = yes imp = 2705 imp = 2561 imp = 2562 imp = 2704 imp = 2717 ck3 = 1023 } # Mare Internum, Mare Hibericum, Mare Internum, Mare Sardoum, Mare Sardoum -> Coast of Algier - link = { autogenerated = yes imp = 2716 ck3 = 1022 } # Mare Hibericum -> Coast of Algier - link = { autogenerated = yes imp = 2524 ck3 = 1021 } # Mare Balearium -> Gulf of Valencia - link = { autogenerated = yes imp = 2558 imp = 2728 imp = 6318 ck3 = 1020 } # Mare Hibericum, Mare Hibericum, LAKE -> Alboran Sea - link = { autogenerated = yes imp = 5738 imp = 5734 imp = 5735 ck3 = 1019 } # Mare Hibernicum, Mare Hibernicum, Mare Hibernicum -> Irish Sea - link = { autogenerated = yes imp = 2602 imp = 2598 imp = 2599 imp = 2603 imp = 2604 imp = 2606 imp = 2607 imp = 2608 imp = 4724 imp = 5865 imp = 7749 imp = 7750 ck3 = 1017 } # Mare Creticum, Mare Creticum, Mare Creticum, Sinus Argolicus, Sinus Saronicus, Mare Creticum, Mare Myrtoum, Mare Aegaeum, Sinus Laconicus, Mare Myrtoum, $PROV2607$, $PROV2607$ -> Aegean Sea - link = { autogenerated = yes imp = 5677 imp = 4748 imp = 5675 imp = 5676 imp = 5679 imp = 5681 imp = 5682 imp = 5684 imp = 5691 ck3 = 1016 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Oceanus Atlanticus, Oceanus Atlanticus -> Bay of Biscay - link = { autogenerated = yes imp = 5678 imp = 5672 imp = 5673 imp = 5680 imp = 6314 ck3 = 1015 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, LAKE -> Bay of Biscay - link = { autogenerated = yes imp = 4783 imp = 4740 imp = 4741 imp = 4749 ck3 = 1014 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum -> Coast of Asturias + link = { autogenerated = yes imp = 2697 imp = 2503 ck3 = 1029 } # sea, sea -> sea_tyrrhenian + link = { autogenerated = yes imp = 2548 imp = 2547 imp = 2695 ck3 = 1028 } # sea, sea, sea -> sea_gulf_genoa + link = { autogenerated = yes imp = 2549 imp = 2550 ck3 = 1027 } # sea, sea -> sea_cote_dazur + link = { autogenerated = yes imp = 6366 imp = 6362 imp = 6364 imp = 6365 ck3 = 1026 } # LAKE, LAKE, LAKE, LAKE -> ALP LAKES + link = { autogenerated = yes imp = 2551 imp = 2552 imp = 2707 ck3 = 1025 } # sea, sea, sea -> sea_gulf_lion + link = { autogenerated = yes imp = 2710 imp = 2690 ck3 = 1024 } # sea, sea -> sea_sardinia + link = { autogenerated = yes imp = 2705 imp = 2561 imp = 2562 imp = 2704 imp = 2717 ck3 = 1023 } # sea, sea, sea, sea, sea -> sea_algier + link = { autogenerated = yes imp = 2716 ck3 = 1022 } # sea -> sea_algier + link = { autogenerated = yes imp = 2524 ck3 = 1021 } # sea -> sea_gulf_valencia + link = { autogenerated = yes imp = 2558 imp = 2728 imp = 6318 ck3 = 1020 } # sea, sea, LAKE -> sea_alboran + link = { autogenerated = yes imp = 5738 imp = 5734 imp = 5735 ck3 = 1019 } # sea, sea, sea -> sea_irish + link = { autogenerated = yes imp = 2602 imp = 2598 imp = 2599 imp = 2603 imp = 2604 imp = 2606 imp = 2607 imp = 2608 imp = 4724 imp = 5865 imp = 7749 imp = 7750 ck3 = 1017 } # sea, sea, sea, sea, sea, sea, sea, sea, sea, sea, Mare Myrtoum, Mare Myrtoum -> sea_aegean + link = { autogenerated = yes imp = 5677 imp = 4748 imp = 5675 imp = 5676 imp = 5679 imp = 5681 imp = 5682 imp = 5684 imp = 5691 ck3 = 1016 } # sea, sea, sea, sea, sea, sea, sea, sea, sea -> sea_bay_biscay + link = { autogenerated = yes imp = 5678 imp = 5672 imp = 5673 imp = 5680 imp = 6314 ck3 = 1015 } # sea, sea, sea, sea, LAKE -> sea_bay_biscay + link = { autogenerated = yes imp = 4783 imp = 4740 imp = 4741 imp = 4749 ck3 = 1014 } # sea, sea, sea, sea -> sea_asturias link = { autogenerated = yes imp = 6451 ck3 = 1012 } # LAKE -> Lake Peipus - link = { autogenerated = yes imp = 2559 imp = 2727 ck3 = 1011 } # Mare Hibericum, Mare Hibericum -> Alboran Sea - link = { autogenerated = yes imp = 5703 ck3 = 1010 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 2559 imp = 2727 ck3 = 1011 } # sea, sea -> sea_alboran + link = { autogenerated = yes imp = 5703 ck3 = 1010 } # sea -> sea_english_channel link = { autogenerated = yes imp = 9375 ck3 = 101 ck3 = 102 } # Saicen -> LEMISELE, VALMIERA - link = { autogenerated = yes imp = 5697 imp = 5707 imp = 5709 imp = 5711 ck3 = 1009 } # Mare Britannicum, Mare Britannicum, Mare Britannicum, Mare Britannicum -> English Channel - link = { autogenerated = yes imp = 5854 imp = 5853 imp = 5857 ck3 = 1004 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Mare Gothicum -> Baltic Sea - link = { autogenerated = yes imp = 5847 ck3 = 1003 } # Oceanus Sarmaticus -> Bight of Han - link = { autogenerated = yes imp = 5851 ck3 = 1002 } # Oceanus Sarmaticus -> Gulf of Gdansk - link = { autogenerated = yes imp = 5833 imp = 5834 imp = 5835 ck3 = 1001 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Kattegat - link = { autogenerated = yes imp = 5809 imp = 5785 imp = 5808 imp = 6326 ck3 = 1000 } # Mare Germanicum, Mare Germanicum, Mare Germanicum, LAKE -> Gulf of Heligoland + link = { autogenerated = yes imp = 5697 imp = 5707 imp = 5709 imp = 5711 ck3 = 1009 } # sea, sea, sea, sea -> sea_english_channel + link = { autogenerated = yes imp = 5854 imp = 5853 imp = 5857 ck3 = 1004 } # sea, sea, sea -> sea_baltic + link = { autogenerated = yes imp = 5847 ck3 = 1003 } # sea -> sea_bight_of_hano + link = { autogenerated = yes imp = 5851 ck3 = 1002 } # sea -> sea_gulf_gdansk + link = { autogenerated = yes imp = 5833 imp = 5834 imp = 5835 ck3 = 1001 } # sea, sea, sea -> sea_kattegat + link = { autogenerated = yes imp = 5809 imp = 5785 imp = 5808 imp = 6326 ck3 = 1000 } # sea, sea, sea, LAKE -> sea_heligoland link = { autogenerated = yes imp = 9378 ck3 = 100 ck3 = 146 } # Nato -> VILJANDI, POLTSAMAA link = { imp = 6649 ck3 = 4342 } # Battak -> Sakalkand - link = { imp = 6651 imp = 6638 ck3 = 4343 } # Choatina, Paros Paropamisadorum -> Bamiyan - link = { imp = 6614 ck3 = 4344 } # Cartana -> Parwan - link = { imp = 6650 ck3 = 4347 } # Kabolite -> Andarab - link = { imp = 6625 ck3 = 4345 } # Kapissa -> Panjhir - link = { imp = 6611 ck3 = 4346 } # Alexandria ad Caucasum -> Jarbaya - link = { imp = 6608 ck3 = 4504 } # Kaboura -> KABUL - link = { imp = 4318 imp = 6612 ck3 = 4523 } # Apritas, Kophen -> Khost - link = { imp = 7492 ck3 = 1191 ck3 = 4521 } # Aspakora -> Bannu, Urgun - link = { imp = 4301 imp = 4367 ck3 = 4516 } # Nagarahara, Arjunava -> NAGARAHARA - link = { imp = 7657 ck3 = 1342 ck3 = 3441 } # Purushapura -> Purushapura, Nowshera - link = { imp = 4328 ck3 = 3444 } # Plagira -> Hangu - link = { imp = 4317 ck3 = 3443 } # Rudera -> Kalabagh + link = { imp = 6651 imp = 6638 ck3 = 4343 } # Kalak, Paros -> Bamiyan + link = { imp = 6614 ck3 = 4344 } # Bamyan -> Parwan + link = { imp = 6650 ck3 = 4347 } # Cabolita -> Andarab + link = { imp = 6625 ck3 = 4345 } # Capissa -> Panjhir + link = { imp = 6611 ck3 = 4346 } # Alexandria Ad Caucasum -> Jarbaya + link = { imp = 6608 ck3 = 4504 } # Kubha -> KABUL + link = { imp = 4318 imp = 6612 ck3 = 4523 } # Apritas, Begram -> Khost + link = { imp = 7492 ck3 = 1191 ck3 = 4521 } # Varnu -> Bannu, Urgun + link = { imp = 4301 imp = 4367 ck3 = 4516 } # Nagarahara, Arigaion -> NAGARAHARA + link = { imp = 7657 ck3 = 1342 ck3 = 3441 } # Purusapura -> Purushapura, Nowshera + link = { imp = 4328 ck3 = 3444 } # Kohat -> Hangu + link = { imp = 4317 ck3 = 3443 } # Dinkot -> Kalabagh link = { imp = 4321 imp = 4330 ck3 = 3416 } # Kutte Mar, Gogaraioi -> Wan_Bhachran link = { imp = 4320 ck3 = 1341 } # Singhapura -> Nandana link = { imp = 7399 imp = 4308 ck3 = 3428 } # Rajagrha, Cakravala -> Katasraj - link = { imp = 4384 ck3 = 3415 } # Kekayai -> Mankera + link = { imp = 4384 ck3 = 3415 } # Kekaya -> Mankera link = { imp = 4348 imp = 4351 ck3 = 1340 } # Sibipura, Apakara -> Karor link = { imp = 4368 imp = 4366 ck3 = 4487 } # Avanta, Kokondai -> QANDABIL - link = { imp = 6571 ck3 = 4510 ck3 = 4511 } # Pharsaga -> ASFANJAY, MASTANG + link = { imp = 6571 ck3 = 4510 ck3 = 4511 } # Mastung -> ASFANJAY, MASTANG link = { imp = 6540 ck3 = 4512 ck3 = 4517 ck3 = 4519 } # Cottabura -> SHAL, LORALAI, MEKHTAR link = { imp = 6060 imp = 4369 ck3 = 4513 } # Siwi, Gandava -> SIBI link = { imp = 4364 ck3 = 1371 } # Oumbrai -> Larkana - link = { imp = 4376 ck3 = 3406 ck3 = 1138 ck3 = 1372 } # Pardabathra -> Shikarpur, Bhakkar, Badah + link = { imp = 4376 ck3 = 3406 ck3 = 1138 ck3 = 1372 } # Nerai -> Shikarpur, Bhakkar, Badah link = { imp = 4375 ck3 = 1374 } # Mesai -> Rojhan link = { imp = 4377 ck3 = 3407 ck3 = 1339 } # Bisambritai -> Dajal, Rajanpur link = { imp = 4474 ck3 = 3964 } # Suktimati -> Umri - link = { imp = 7463 ck3 = 3965 } # Dudahi -> Dhamoni - link = { imp = 7468 ck3 = 925 } # Deori -> Bahoriband + link = { imp = 7463 ck3 = 3965 } # Suktimati -> Dhamoni + link = { imp = 7468 ck3 = 925 } # Deori* -> Bahoriband link = { imp = 7467 ck3 = 1274 } # Damoh -> Damoh link = { imp = 7312 ck3 = 917 } # Tundikera -> Barman link = { imp = 4400 ck3 = 3420 } # Taki -> Sangla - link = { imp = 4396 ck3 = 3427 } # Chandaniot -> Bhirr - link = { imp = 4380 ck3 = 1361 } # Mallava -> Shorkot + link = { imp = 4396 ck3 = 3427 } # Divyakuta -> Bhirr + link = { imp = 4380 ck3 = 1361 } # Malloi -> Shorkot link = { imp = 4391 ck3 = 3434 ck3 = 7945 ck3 = 9047 } # Udambhara -> Kangra, Brahmapura, Kardang - link = { imp = 4344 ck3 = 7946 } # Chhamb -> Campa2 + link = { imp = 4344 ck3 = 7946 } # Chhamb (swamp) -> Campa2 link = { imp = 4394 ck3 = 3432 } # Adrestai -> Pathankot - link = { imp = 4379 ck3 = 1362 } # Phegas -> Lahur + link = { imp = 4379 ck3 = 1362 } # Phegus -> Lahur link = { imp = 4401 ck3 = 3433 } # Rupar -> Kahlur link = { imp = 4390 ck3 = 3431 } # Jalandhara -> Rahon - link = { imp = 4392 ck3 = 1193 } # Sarvamanapura -> Jalandhar - link = { imp = 4385 imp = 4350 ck3 = 3414 } # Shivai, Mulasthanapura -> Alipur + link = { imp = 4392 ck3 = 1193 } # Sarwmanpur -> Jalandhar + link = { imp = 4385 imp = 4350 ck3 = 3414 } # Sivi, Mulasthanapura/Multan -> Alipur link = { imp = 9261 ck3 = 3409 } # Kanganwala -> Derawar - link = { imp = 4371 ck3 = 1337 } # Deogarh -> Uch + link = { imp = 4371 ck3 = 1337 } # Alexandria (Indus) -> Uch link = { imp = 4374 ck3 = 3391 } # Mousikanoi -> Bhatiya link = { imp = 4372 ck3 = 1336 } # Vijnot -> Vijnot link = { imp = 4352 ck3 = 1175 ck3 = 3393 } # Roruka -> Aror, Ghotki link = { imp = 4356 ck3 = 3395 } # Kahu-Jo-Darro -> Mirpur_Khas - link = { imp = 4358 ck3 = 1137 } # Singhi -> Mansura + link = { imp = 4358 ck3 = 1137 } # Singai -> Mansura link = { imp = 4359 ck3 = 3397 } # Samarabriai -> Matiari - link = { imp = 7413 ck3 = 3489 } # Bhinmal -> Bhillamala + link = { imp = 7413 ck3 = 3489 } # Bhillamala* -> Bhillamala link = { imp = 7390 imp = 7310 ck3 = 3486 } # Suvarngiri, Mandapura -> Siwana - link = { imp = 7412 imp = 6857 ck3 = 1294 } # Satyapura, Detta -> Satyapura + link = { imp = 7412 imp = 6857 ck3 = 1294 } # Satyapura, Detta* -> Satyapura link = { imp = 6835 ck3 = 3369 } # Malia -> Kamboika - link = { imp = 6856 ck3 = 3385 } # Vallai -> Kasara + link = { imp = 6856 ck3 = 3385 } # Vallai* -> Kasara link = { imp = 6822 ck3 = 1331 ck3 = 3396 } # Barbarikon -> Sonda, Nasarpur link = { imp = 5356 ck3 = 3970 } # IP 357 -> Thar Desert 2 - link = { imp = 6852 imp = 7220 imp = 6850 imp = 6059 imp = 4357 ck3 = 3398 } # Samarabriva, Saraswata, Sura, Abhiria, Umarkot -> Amarkot + link = { imp = 6852 imp = 7220 imp = 6850 imp = 6059 imp = 4357 ck3 = 3398 } # Samarabriva, Saraswata, Sura, Marudesa, Umarkot -> Amarkot link = { imp = 6848 ck3 = 3400 ck3 = 3399 } # Sangama -> Shahbandar, Badin - link = { imp = 4495 ck3 = 1345 ck3 = 3492 ck3 = 3491 } # Agathapura -> Aghata, Nagahrada, Eklingji - link = { imp = 7431 imp = 7429 ck3 = 1302 } # Bhindar, Pratapgarh -> Chitrakut - link = { imp = 7426 ck3 = 1149 } # Dhar -> Dhara + link = { imp = 4495 ck3 = 1345 ck3 = 3492 ck3 = 3491 } # Agatha -> Aghata, Nagahrada, Eklingji + link = { imp = 7431 imp = 7429 ck3 = 1302 } # Bhindar*, Pratapgarh* -> Chitrakut + link = { imp = 7426 ck3 = 1149 } # Dhar* -> Dhara link = { imp = 7421 imp = 7301 ck3 = 3325 } # Narmadapuram, Rajasayana -> Ashta link = { imp = 4486 ck3 = 3334 } # Devasabha -> Dewas link = { imp = 6842 imp = 6833 ck3 = 3351 } # Kaccha, Baraca -> Anjar @@ -5961,7 +5961,7 @@ imperator_invictus = { link = { imp = 6814 ck3 = 3366 } # Automula -> Shatrunjaya link = { imp = 6824 ck3 = 3363 ck3 = 3365 } # Astakapra -> Saymur, Moherak link = { imp = 6831 ck3 = 3368 } # Satrunavha -> Sihor - link = { imp = 6847 ck3 = 3355 ck3 = 3356 } # Rusia -> Morvi, Halvad + link = { imp = 6847 ck3 = 3355 ck3 = 3356 } # Rusia* -> Morvi, Halvad link = { imp = 6829 ck3 = 3354 } # Anartta -> Lakhota link = { imp = 6819 ck3 = 3359 } # Ujjayanta -> Uperkot link = { imp = 6818 ck3 = 1134 } # Girinagara -> Vamanasthali @@ -5979,54 +5979,54 @@ imperator_invictus = { link = { imp = 4488 ck3 = 3485 ck3 = 3484 ck3 = 1130 ck3 = 3388 ck3 = 3476 } # Asangai -> Sanderaka, Osian, Mandavyapura, Phalavardhika, Kolayat link = { imp = 4487 ck3 = 3342 } # Nadvala -> Naddula link = { imp = 4496 ck3 = 3343 } # Machhindrapur -> Ranakpur - link = { imp = 4480 imp = 7432 ck3 = 3345 } # Ghosundi, Rajsamand -> Bhilwara - link = { imp = 7439 imp = 7438 ck3 = 3499 } # Bundi, Mahanala -> Bundi + link = { imp = 4480 imp = 7432 ck3 = 3345 } # Ghosundi, Rajsamand* -> Bhilwara + link = { imp = 7439 imp = 7438 ck3 = 3499 } # Bundi*, Mahanala* -> Bundi link = { imp = 7304 ck3 = 3324 } # Bhojapuri -> Bhojpur - link = { imp = 7448 ck3 = 3326 ck3 = 3328 } # Jhalawar -> Jhalawar, Dharmrajeshwar - link = { imp = 7436 ck3 = 1300 ck3 = 3496 } # Kota -> Kota, Baroli - link = { imp = 7440 imp = 7437 ck3 = 1355 } # Khandar, Dhavagarta -> Ranthambore + link = { imp = 7448 ck3 = 3326 ck3 = 3328 } # Jhalawar* -> Jhalawar, Dharmrajeshwar + link = { imp = 7436 ck3 = 1300 ck3 = 3496 } # Kota* -> Kota, Baroli + link = { imp = 7440 imp = 7437 ck3 = 1355 } # Khandar*, Dhavagarta* -> Ranthambore link = { imp = 7435 ck3 = 3498 } # Ramgarh -> Ramgarh link = { imp = 7434 imp = 7433 ck3 = 3327 } # Candravati, Binnayaga -> Gagraun - link = { imp = 7445 ck3 = 3338 } # Sheopur -> Sheopur + link = { imp = 7445 ck3 = 3338 } # Sheopur* -> Sheopur link = { imp = 7308 ck3 = 3339 } # Candhoba -> Narwar - link = { imp = 7465 ck3 = 1299 } # Shivpuri -> Candhoba + link = { imp = 7465 ck3 = 1299 } # Shivpuri* -> Candhoba link = { imp = 4469 ck3 = 3341 } # Padmavati -> Dabra link = { imp = 7460 ck3 = 3315 } # Mauranipur -> Jhansi - link = { imp = 7462 ck3 = 1298 } # Chanderi -> Chanderi - link = { imp = 7302 imp = 7464 ck3 = 3320 } # Kirthagiri, Bina -> Kadwaya - link = { imp = 7449 imp = 7466 ck3 = 3317 } # Guna, Bhand Deva -> Guna - link = { imp = 7450 ck3 = 1150 ck3 = 3335 } # Sarangpur -> Sarangpur, Maksi - link = { imp = 7441 ck3 = 3336 } # Jirapur -> Mehidpur + link = { imp = 7462 ck3 = 1298 } # Chanderi* -> Chanderi + link = { imp = 7302 imp = 7464 ck3 = 3320 } # Kirthagiri, Bina* -> Kadwaya + link = { imp = 7449 imp = 7466 ck3 = 3317 } # Guna, Bhand Deva* -> Guna + link = { imp = 7450 ck3 = 1150 ck3 = 3335 } # Sarangpur* -> Sarangpur, Maksi + link = { imp = 7441 ck3 = 3336 } # Jirapur* -> Mehidpur link = { imp = 4482 ck3 = 3337 } # Kolvi -> Agar link = { imp = 4475 ck3 = 1288 } # Ujjayini -> Ujjayini - link = { imp = 7425 ck3 = 3331 } # Jhabua -> Depalpur - link = { imp = 7428 imp = 4473 ck3 = 3497 } # Manasa, Madhyamika -> Bhainsrorgarh + link = { imp = 7425 ck3 = 3331 } # Jhabua* -> Depalpur + link = { imp = 7428 imp = 4473 ck3 = 3497 } # Manasa*, Madhyamika (Chittor) -> Bhainsrorgarh link = { imp = 4479 ck3 = 3495 } # Dasapura -> Rampura - link = { imp = 7427 imp = 4498 ck3 = 1148 } # Banswara, Dhammanahadika -> Dasapura + link = { imp = 7427 imp = 4498 ck3 = 1148 } # Banswara*, Dhammanahadika -> Dasapura link = { imp = 6057 ck3 = 3386 ck3 = 3389 ck3 = 3387 ck3 = 1304 } # Marudesa -> Kiratakupa, Juna_Barmer, Jaisalmer, Ludrava link = { imp = 6853 imp = 6851 imp = 6826 ck3 = 3971 } # Gallita, Daria, Andhau -> Karoonjar link = { imp = 7658 ck3 = 3490 } # Srimalla -> Achalgarh link = { imp = 6843 ck3 = 3488 } # Abuyya -> Jalor - link = { imp = 7414 ck3 = 1174 } # Patan -> Candravati + link = { imp = 7414 ck3 = 1174 } # Patan* -> Candravati link = { imp = 4489 ck3 = 3372 } # Anandpura -> Siddhapura link = { imp = 7416 ck3 = 3373 } # Mohadavasaka -> Idar link = { imp = 4491 ck3 = 3493 } # Samlaji -> Rishabhdeo - link = { imp = 4478 imp = 7430 imp = 7417 ck3 = 3494 } # Devnimori, Aspur, Jagadamba -> Jagadamba - link = { imp = 7419 ck3 = 1291 } # Simalwara -> Mohadavasaka + link = { imp = 4478 imp = 7430 imp = 7417 ck3 = 3494 } # Devnimori, Aspur*, Jagadamba -> Jagadamba + link = { imp = 7419 ck3 = 1291 } # Simalwara** -> Mohadavasaka link = { imp = 6854 ck3 = 3376 ck3 = 1290 ck3 = 1133 } # Kheta -> Ashaval, Khetaka, Vadodara - link = { imp = 7415 ck3 = 1292 } # Mehsana -> Anahilapataka + link = { imp = 7415 ck3 = 1292 } # Mehsana* -> Anahilapataka link = { imp = 4494 ck3 = 3371 ck3 = 3370 } # Candanaputraka -> Vadnagar, Modhera link = { imp = 6830 ck3 = 3375 ck3 = 3377 } # Svabhra -> Khambhat, Dholka link = { imp = 4493 ck3 = 3378 } # Akota -> Darbhavati - link = { imp = 6855 ck3 = 3379 } # Baroda -> Kayavarohan - link = { imp = 7418 imp = 4497 ck3 = 3374 } # Brahampuri, Dadhipadra -> Jhalod + link = { imp = 6855 ck3 = 3379 } # Vadaora/Baroda -> Kayavarohan + link = { imp = 7418 imp = 4497 ck3 = 3374 } # Brahampuri*, Dadhipadra -> Jhalod link = { imp = 4476 ck3 = 1147 ck3 = 3330 } # Mahismati -> Mandapika, Betma - link = { imp = 4492 ck3 = 3333 ck3 = 3332 } # Bagh Anupa -> Champaner, Dharampuri + link = { imp = 4492 ck3 = 3333 ck3 = 3332 } # Bagh -> Champaner, Dharampuri link = { imp = 7300 ck3 = 1289 } # Ayanakagraha -> Dadhipadra link = { imp = 4499 ck3 = 3329 } # Navagramaka -> Vatapadraka link = { imp = 6858 ck3 = 3380 } # Minnagara -> Bharuch - link = { imp = 7315 ck3 = 1182 } # Barwani -> Bawangaja - link = { imp = 7125 ck3 = 1262 } # Pandavleni -> Thalner + link = { imp = 7315 ck3 = 1182 } # Barwani* -> Bawangaja + link = { imp = 7125 ck3 = 1262 } # Pandavleni****** -> Thalner link = { imp = 7117 ck3 = 1189 } # Satyiyani -> Amalner link = { imp = 7114 ck3 = 1183 ck3 = 1195 ck3 = 1194 } # Tapia -> Borgarh, Bhamer, Sindkheda link = { imp = 7064 ck3 = 7899 } # Pitangalva -> Elapura @@ -6040,28 +6040,28 @@ imperator_invictus = { link = { imp = 7097 ck3 = 1285 } # Amaravati -> Acalapura link = { imp = 7121 imp = 7075 ck3 = 7925 } # Audabaravati, Bhojakata -> Amraoti link = { imp = 7065 ck3 = 7924 } # Ajanta -> Mekhar - link = { imp = 7128 ck3 = 1261 } # Shegaon -> Parnakheta - link = { imp = 7063 ck3 = 7917 ck3 = 1142 } # Atathana -> Jalna, Pratishthana - link = { imp = 7164 ck3 = 7918 } # Visakpura -> Sindkhed + link = { imp = 7128 ck3 = 1261 } # Shegaon******* -> Parnakheta + link = { imp = 7063 ck3 = 7917 ck3 = 1142 } # Pratisthana -> Jalna, Pratishthana + link = { imp = 7164 ck3 = 7918 } # Visakpura* -> Sindkhed link = { imp = 7147 ck3 = 1259 } # Vatsagulma -> Vatsagulma - link = { imp = 7165 ck3 = 7919 } # Minagana -> Bhainsa + link = { imp = 7165 ck3 = 7919 } # Minagana* -> Bhainsa link = { imp = 7157 ck3 = 7921 ck3 = 7926 } # Mahur -> Mahur, Kalam - link = { imp = 7162 ck3 = 7927 } # Yetavana -> Wun + link = { imp = 7162 ck3 = 7927 } # Yetavana* -> Wun link = { imp = 7076 ck3 = 7929 } # Bhaddavati -> Nagpur link = { imp = 7077 ck3 = 7930 } # Cikamburika -> Bhandara - link = { imp = 7067 imp = 7452 ck3 = 1159 } # Ramagiri, Chhindwara -> Ramagiri - link = { imp = 7451 ck3 = 7931 } # Seoni -> Seoni + link = { imp = 7067 imp = 7452 ck3 = 1159 } # Ramagiri, Chhindwara* -> Ramagiri + link = { imp = 7451 ck3 = 7931 } # Seoni* -> Seoni link = { imp = 7115 ck3 = 1254 ck3 = 1269 } # Wairagar -> Vairagara, Canda link = { imp = 7141 ck3 = 3996 } # Komana -> Ranipur link = { imp = 7140 ck3 = 3993 } # Dhamtari -> Rajiva_Lochana link = { imp = 7130 ck3 = 3991 ck3 = 7934 } # Bhilapura -> Shivapura, Nandgram - link = { imp = 7168 imp = 7176 ck3 = 1230 } # Suvarnapura, Bilagada -> Suvarnapura - link = { imp = 7095 imp = 7175 ck3 = 1155 } # Sripura, Bandavala -> Sripuri - link = { imp = 7131 ck3 = 3992 } # Raipur -> Camparanya + link = { imp = 7168 imp = 7176 ck3 = 1230 } # Suvarnapura, Bilagada* -> Suvarnapura + link = { imp = 7095 imp = 7175 ck3 = 1155 } # Sripura, Bandavala* -> Sripuri + link = { imp = 7131 ck3 = 3992 } # Raipur******* -> Camparanya link = { imp = 7096 ck3 = 1160 } # Kosala -> Rayapura link = { imp = 7086 ck3 = 1129 ck3 = 928 } # Tosali -> Kataka, Konarak - link = { imp = 7152 ck3 = 1257 } # Mankal -> Medak - link = { imp = 7118 imp = 7154 ck3 = 7903 } # Rukmammapeta, Guriprava -> Golkonda + link = { imp = 7152 ck3 = 1257 } # Mankal****** -> Medak + link = { imp = 7118 imp = 7154 ck3 = 7903 } # Rukmammapeta, Guriprava* -> Golkonda link = { imp = 7046 ck3 = 7916 } # Alosgyni -> Draksharama link = { imp = 7150 ck3 = 7907 } # Anumapala -> Kaulas link = { imp = 7056 ck3 = 7910 } # Gummididurru -> Palwancha @@ -6071,20 +6071,20 @@ imperator_invictus = { link = { imp = 7085 ck3 = 1225 ck3 = 930 } # Jaugada -> Puri, Sakshigopal link = { imp = 6054 ck3 = 1229 } # Kalingana -> Khinjali link = { imp = 7137 ck3 = 1228 } # Surada -> Swetakapura - link = { imp = 7136 ck3 = 9653 } # Bhawanipatna -> Asurgarh + link = { imp = 7136 ck3 = 9653 } # Bhawanipatna******* -> Asurgarh link = { imp = 7083 ck3 = 1226 ck3 = 1128 } # Sankaram -> Nandapur, Vizagipatam link = { imp = 7080 ck3 = 9649 } # Dantapura -> Srikakulam link = { imp = 7081 ck3 = 9648 ck3 = 1224 } # Kalinganagara -> Kalinganagara, Mandasa link = { imp = 7138 ck3 = 9652 } # Rayagada -> Rayagada link = { imp = 7084 ck3 = 1415 ck3 = 1222 } # Lingarajupalem -> Pithapuram, Rajamahendravaram link = { imp = 6055 ck3 = 7913 } # Dandakaranya -> Bhadracala - link = { imp = 7123 ck3 = 7915 } # Alatnapura -> Chutur + link = { imp = 7123 ck3 = 7915 } # Alatnapura* -> Chutur link = { imp = 7134 ck3 = 1227 } # Chakrakot -> Cakrakuta link = { imp = 7122 ck3 = 1252 ck3 = 7914 } # Jagdalpur -> Barasuru, Malkangiri - link = { imp = 7139 ck3 = 9659 } # Kanker -> Kanker + link = { imp = 7139 ck3 = 9659 } # Kanker******* -> Kanker link = { imp = 7135 ck3 = 3999 } # Atavi -> Umerkote link = { imp = 7099 ck3 = 7908 } # Goddvara -> Palampet - link = { imp = 7124 ck3 = 7922 } # Dhamna -> Kerimeri + link = { imp = 7124 ck3 = 7922 } # Dhamna* -> Kerimeri link = { imp = 7133 ck3 = 7923 } # Kotilingala -> Mancherial link = { imp = 7145 ck3 = 1255 } # Vemulavada -> Vemulavada link = { imp = 7148 ck3 = 1144 } # Kollipake -> Kollipake diff --git a/ImperatorToCK3/Data_Files/configurables/province_mappings/terra_indomita_to_rajas_of_asia.txt b/ImperatorToCK3/Data_Files/configurables/province_mappings/terra_indomita_to_rajas_of_asia.txt index 6ab80e02f..70bc7caf1 100644 --- a/ImperatorToCK3/Data_Files/configurables/province_mappings/terra_indomita_to_rajas_of_asia.txt +++ b/ImperatorToCK3/Data_Files/configurables/province_mappings/terra_indomita_to_rajas_of_asia.txt @@ -1,4 +1,30 @@ 0.0.0 = { + triangulation_pair = { srcX = 1133 srcY = 1838 dstX = 2829 dstY = 990 } + triangulation_pair = { srcX = 1163 srcY = 1849 dstX = 2898 dstY = 1015 } + triangulation_pair = { srcX = 1193 srcY = 1849 dstX = 2964 dstY = 1021 } + triangulation_pair = { srcX = 1209 srcY = 1835 dstX = 3005 dstY = 1002 } + triangulation_pair = { srcX = 1090 srcY = 1860 dstX = 2727 dstY = 1020 } + triangulation_pair = { srcX = 1271 srcY = 1903 dstX = 3114 dstY = 1132 } + triangulation_pair = { srcX = 1186 srcY = 2056 dstX = 2882 dstY = 1361 } + triangulation_pair = { srcX = 1178 srcY = 1994 dstX = 2885 dstY = 1260 } + triangulation_pair = { srcX = 1118 srcY = 2000 dstX = 2757 dstY = 1258 } + triangulation_pair = { srcX = 1134 srcY = 1958 dstX = 2800 dstY = 1190 } + triangulation_pair = { srcX = 1141 srcY = 2027 dstX = 2795 dstY = 1303 } + triangulation_pair = { srcX = 874 srcY = 2112 dstX = 2222 dstY = 1411 } + triangulation_pair = { srcX = 933 srcY = 2130 dstX = 2341 dstY = 1443 } + triangulation_pair = { srcX = 978 srcY = 2216 dstX = 2429 dstY = 1583 } + triangulation_pair = { srcX = 1065 srcY = 2205 dstX = 2601 dstY = 1579 } + triangulation_pair = { srcX = 1085 srcY = 2173 dstX = 2645 dstY = 1532 } + triangulation_pair = { srcX = 1040 srcY = 2184 dstX = 2553 dstY = 1542 } + triangulation_pair = { srcX = 907 srcY = 2205 dstX = 2280 dstY = 1563 } + triangulation_pair = { srcX = 832 srcY = 2216 dstX = 2130 dstY = 1579 } + triangulation_pair = { srcX = 917 srcY = 2639 dstX = 2273 dstY = 2249 } + triangulation_pair = { srcX = 882 srcY = 2671 dstX = 2208 dstY = 2298 } + triangulation_pair = { srcX = 1007 srcY = 2728 dstX = 2421 dstY = 2391 } + triangulation_pair = { srcX = 1029 srcY = 2751 dstX = 2455 dstY = 2429 } + triangulation_pair = { srcX = 1014 srcY = 2801 dstX = 2425 dstY = 2503 } + triangulation_pair = { srcX = 919 srcY = 2727 dstX = 2272 dstY = 2382 } + triangulation_pair = { srcX = 962 srcY = 2791 dstX = 2341 dstY = 2484 } triangulation_pair = { srcX = 1200 srcY = 2977 dstX = 2706 dstY = 2788 } triangulation_pair = { srcX = 1268 srcY = 2906 dstX = 2824 dstY = 2694 } triangulation_pair = { srcX = 1264 srcY = 2977 dstX = 2805 dstY = 2796 } @@ -334,6 +360,11 @@ triangulation_pair = { srcX = 2867 srcY = 3714 dstX = 4644 dstY = 4347 } triangulation_pair = { srcX = 3894 srcY = 3529 dstX = 5695 dstY = 4874 } triangulation_pair = { srcX = 3930 srcY = 3558 dstX = 5706 dstY = 4943 } + triangulation_pair = { srcX = 3763 srcY = 3419 dstX = 5715 dstY = 4596 } + triangulation_pair = { srcX = 3690 srcY = 3382 dstX = 5675 dstY = 4470 } + triangulation_pair = { srcX = 3725 srcY = 3306 dstX = 5754 dstY = 4448 } + triangulation_pair = { srcX = 3623 srcY = 3322 dstX = 5684 dstY = 4399 } + triangulation_pair = { srcX = 3743 srcY = 3342 dstX = 5723 dstY = 4495 } triangulation_pair = { srcX = 3886 srcY = 3473 dstX = 5755 dstY = 4817 } triangulation_pair = { srcX = 3924 srcY = 3499 dstX = 5758 dstY = 4874 } triangulation_pair = { srcX = 3983 srcY = 3589 dstX = 5718 dstY = 5025 } @@ -860,16 +891,11 @@ triangulation_pair = { srcX = 31 srcY = 1606 dstX = 178 dstY = 771 } triangulation_pair = { srcX = 131 srcY = 1180 dstX = 65 dstY = 24 } triangulation_pair = { srcX = 104 srcY = 1217 dstX = 28 dstY = 99 } - link = { imp = 354 ck3 = 3766 } # Ainos -> Ainos - link = { imp = 10594 imp = 10595 imp = 10596 imp = 10597 ck3 = 8712 } # Amindivi, Laccadives, Minicoy, Boduthiladhunmathi -> Thiladhunmathi - link = { imp = 5523 imp = 5524 imp = 5525 imp = 5526 ck3 = 6088 } # Farafra, Bishaya, Tawar, Minqar*** -> AL-FARAFRA - link = { imp = 5551 imp = 5537 imp = 5539 imp = 5540 ck3 = 6092 } # Varias*, Ammon, Zethin**, Areg -> AIN_AL-GHANBI - link = { imp = 903 imp = 918 ck3 = 4830 } # Tulul al-Ukhaidhir, Babylon -> KARBALA link = { autogenerated = yes imp = 8930 ck3 = 9949 } # Impassable -> Shipingyi link = { autogenerated = yes imp = 9409 ck3 = 9891 } # Impassable -> Deang Wat link = { autogenerated = yes imp = 9391 ck3 = 9442 } # Impassable -> Linten link = { autogenerated = yes imp = 9378 ck3 = 9441 } # Impassable -> Hzo - link = { autogenerated = yes imp = 8928 ck3 = 9317 ck3 = 9893 ck3 = 9894 ck3 = 9946 } # Impassable -> Balung, Kion Dam, Nomu, Koksang + link = { autogenerated = yes imp = 8928 ck3 = 9317 ck3 = 9894 ck3 = 9946 } # Impassable -> Balung, Nomu, Koksang link = { autogenerated = yes imp = 5959 ck3 = 9135 } # Bhutanese Impassable -> Dromo link = { autogenerated = yes imp = 7291 ck3 = 9104 ck3 = 9105 ck3 = 9108 } # Impassable -> Jagatipur, Gautamkot, Dang link = { autogenerated = yes imp = 5955 ck3 = 9097 } # Nepalese Impassable -> Askot @@ -880,26 +906,29 @@ link = { autogenerated = yes imp = 5022 ck3 = 8721 } # IMPASSIBLE TERRAIN 022 -> Puget link = { autogenerated = yes imp = 12363 imp = 12360 imp = 12364 ck3 = 8710 } # Dahyuupati, Arzatam, Vamva -> Western Kazakh Steppe link = { autogenerated = yes imp = 9407 imp = 9406 ck3 = 8556 } # Impassable, Impassable -> HIMALAYA - link = { autogenerated = yes imp = 5971 ck3 = 8554 ck3 = 8555 ck3 = 9165 ck3 = 9167 ck3 = 9173 ck3 = 9174 ck3 = 9175 ck3 = 9176 ck3 = 9177 ck3 = 9178 ck3 = 9278 ck3 = 9280 ck3 = 9281 ck3 = 9282 ck3 = 9283 ck3 = 9285 ck3 = 9314 ck3 = 9315 ck3 = 9316 ck3 = 9318 ck3 = 9319 ck3 = 9321 ck3 = 9323 ck3 = 9324 ck3 = 9325 ck3 = 9327 ck3 = 9332 ck3 = 9336 ck3 = 9352 ck3 = 9353 } # Impassable -> HIMALAYA, HIMALAYA, Roing, Kibithu, Dzayul, Zayu, Rima, Golag, Cawarong, Goyu, Rawu, Yiong, Baxoi, Zogang, Kagong, Kangyu, Markam, Jangpa, Deqen, Gyaitang, Derong, Qagcheng, Batang, Lenggu, Litang, Nyagqu, Shade, Nyagrong, Pelyul, Dewu + link = { autogenerated = yes imp = 5971 ck3 = 8554 ck3 = 8555 ck3 = 9165 ck3 = 9167 ck3 = 9173 ck3 = 9174 ck3 = 9175 ck3 = 9176 ck3 = 9177 ck3 = 9178 ck3 = 9278 ck3 = 9280 ck3 = 9281 ck3 = 9282 ck3 = 9283 ck3 = 9285 ck3 = 9314 ck3 = 9315 ck3 = 9316 ck3 = 9318 ck3 = 9319 ck3 = 9321 ck3 = 9323 ck3 = 9324 ck3 = 9325 ck3 = 9327 ck3 = 9332 ck3 = 9336 ck3 = 9353 } # Impassable -> HIMALAYA, HIMALAYA, Roing, Kibithu, Dzayul, Zayu, Rima, Golag, Cawarong, Goyu, Rawu, Yiong, Baxoi, Zogang, Kagong, Kangyu, Markam, Jangpa, Deqen, Gyaitang, Derong, Qagcheng, Batang, Lenggu, Litang, Nyagqu, Shade, Nyagrong, Dewu link = { autogenerated = yes imp = 5960 ck3 = 8551 ck3 = 8552 ck3 = 9149 ck3 = 9161 } # Arunachal Impassable -> HIMALAYA, HIMALAYA, Kurmaed, Mechuka link = { autogenerated = yes imp = 7293 ck3 = 8548 ck3 = 8549 ck3 = 9129 ck3 = 9133 } # Impassable -> HIMALAYA, HIMALAYA, Daramdin, Chungthang link = { autogenerated = yes imp = 7292 ck3 = 8547 } # Impassable -> HIMALAYA - link = { autogenerated = yes imp = 5957 imp = 7290 ck3 = 8546 } # Nepalese Impassable, Impassable -> HIMALAYA + link = { autogenerated = yes imp = 5957 ck3 = 8546 } # Nepalese Impassable -> HIMALAYA link = { autogenerated = yes imp = 5956 ck3 = 8545 ck3 = 9085 } # Nepalese Impassable -> HIMALAYA, Dolpo link = { autogenerated = yes imp = 8299 imp = 8302 ck3 = 8540 } # Impassable, Dunhuang Desert -> GOBI DESERT link = { autogenerated = yes imp = 5335 ck3 = 8449 } # IP 336 -> SEMIEN_MOUNTAINS link = { autogenerated = yes imp = 8105 ck3 = 8443 } # Somali Impassable -> DANAKIL_DESERT - link = { autogenerated = yes imp = 5337 ck3 = 8442 } # IP 338 -> DANAKIL_HILLS - link = { imp = 5942 ck3 = 8325 ck3 = 8327 ck3 = 8328 ck3 = 8329 ck3 = 8346 ck3 = 8347 ck3 = 8348 ck3 = 8349 ck3 = 8350 ck3 = 8351 ck3 = 8352 ck3 = 8353 ck3 = 8354 ck3 = 8355 ck3 = 8357 ck3 = 8363 ck3 = 8364 ck3 = 8367 ck3 = 8378 ck3 = 8383 ck3 = 8384 ck3 = 8385 ck3 = 8386 ck3 = 8392 ck3 = 8393 ck3 = 8394 ck3 = 8395 ck3 = 8396 ck3 = 8397 ck3 = 8402 ck3 = 8406 ck3 = 8407 ck3 = 8408 ck3 = 8409 ck3 = 8410 ck3 = 8411 ck3 = 8412 ck3 = 8413 ck3 = 8414 ck3 = 8415 ck3 = 8416 ck3 = 8417 ck3 = 8418 ck3 = 8419 ck3 = 8421 ck3 = 8423 ck3 = 8444 ck3 = 8445 ck3 = 8446 ck3 = 8448 ck3 = 8468 ck3 = 8490 ck3 = 8491 ck3 = 8492 ck3 = 8493 ck3 = 8494 ck3 = 8495 ck3 = 8499 } # Somalian Impassable -> EAST_AMHARA, GIDIM, WAGDA, WALAQA, MIDDLE_AWASH, IFAT, WARJIH, SILALISH, WARAB, SARMAT, KATATA, DEBRE_LIBANOS, KARAYU, SHARKA, MUNESA, GURAGE, WAJ, MUGAR, FATAGAR, DUMALI, BOKE, GEBERGE, INDEGABTAN, SITTI, ADAL, WEST_ADAL, BATE, GENDEBELO, GABAL, AW_BARRE, DAKKAR, HARAR, HARGAYA, GABAL_SOUTH, JEBEL_AHMAR, HARGAYA-WEST, ARUSI-NORTH, ARUSI-SOUTH, DAWARO, DAWARO-WEST, HARGAYA-SOUTH, SHABELLE, BALI-EAST, BALI, GIDAYA, GIDAYA-EAST, AHMAR_MOUNTAINS, MENDEBO, SHOA_HIGHLANDS, WOLLO_HIGHLANDS, QALAAFE, GESTRO, JUBBA-NORTH, GANALE, AUDO, MIDDLE-SHEBELLE, REEWIN, GODE link = { autogenerated = yes imp = 5384 ck3 = 831 ck3 = 9657 } # IP 385 -> Tripura, Udaipur + link = { autogenerated = yes imp = 9766 imp = 8140 ck3 = 807 } # Impassable, Africa Impassable -> Tell Atlas Mountains 8 + link = { autogenerated = yes imp = 5153 ck3 = 803 } # IMPASSIBLE TERRAIN 153 -> Tell Atlas Mountains 4 + link = { autogenerated = yes imp = 5152 ck3 = 802 } # IMPASSIBLE TERRAIN 152 -> Tell Atlas Mountains 3 link = { autogenerated = yes imp = 3138 ck3 = 801 } # BessemiumSeptentrionalis -> Tell Atlas Mountains 2 - link = { autogenerated = yes imp = 5382 ck3 = 7949 } # IP 383 -> Kaghan - link = { autogenerated = yes imp = 7295 ck3 = 7946 } # Impassable -> Campa2 + link = { autogenerated = yes imp = 5279 ck3 = 7965 } # IMPASSIBLE TERRAIN 279 -> Badakhshan_TARIM link = { autogenerated = yes imp = 5317 imp = 5318 imp = 6055 ck3 = 7943 } # IP 318, IP 319, Dandakaranya -> Eastern Ghats (W) + link = { autogenerated = yes imp = 5984 imp = 8084 ck3 = 794 } # East Mauretania, Atlas Impassible -> Atlas Mountains 5 link = { autogenerated = yes imp = 5308 imp = 5311 ck3 = 7937 } # IP 309, IP 312 -> Palakkad Pass link = { autogenerated = yes imp = 5304 imp = 5305 imp = 5306 ck3 = 7936 } # IP 305, IP 306, IP 307 -> Southwestern Ghats + link = { autogenerated = yes imp = 6482 imp = 5985 ck3 = 793 } # More Middle Atlas, West Mauretania -> Atlas Mountains 4 + link = { autogenerated = yes imp = 6493 ck3 = 790 ck3 = 791 } # Riff -> Atlas Mountains 1, Atlas Mountains 2 link = { autogenerated = yes imp = 5009 ck3 = 788 } # IMPASSIBLE TERRAIN 009 -> Central Apennine Mountains 2 - link = { imp = 5012 imp = 5014 ck3 = 787 } # IMPASSIBLE TERRAIN 012, IMPASSIBLE TERRAIN 014 -> Central Apennine Mountains 1 + link = { autogenerated = yes imp = 5012 imp = 5011 imp = 5014 ck3 = 787 } # IMPASSIBLE TERRAIN 012, IMPASSIBLE TERRAIN 011, IMPASSIBLE TERRAIN 014 -> Central Apennine Mountains 1 link = { autogenerated = yes imp = 5048 ck3 = 786 } # IMPASSIBLE TERRAIN 048 -> French Mountains 2 link = { autogenerated = yes imp = 5134 imp = 5135 ck3 = 784 } # IMPASSIBLE TERRAIN 134, IMPASSIBLE TERRAIN 135 -> German Mountains 11 link = { autogenerated = yes imp = 5136 ck3 = 783 } # IMPASSIBLE TERRAIN 136 -> German Mountains 10 @@ -911,23 +940,30 @@ link = { autogenerated = yes imp = 5142 ck3 = 767 } # IMPASSIBLE TERRAIN 142 -> Czech Mountains 5 link = { autogenerated = yes imp = 5143 ck3 = 766 } # IMPASSIBLE TERRAIN 143 -> Czech Mountains 4 link = { autogenerated = yes imp = 9838 ck3 = 7644 } # Impassable -> Mountains - link = { autogenerated = yes imp = 9474 ck3 = 7512 } # Impassable -> Gurbant�ngg�t desert + link = { autogenerated = yes imp = 9474 ck3 = 7512 } # Impassable -> Gurbantünggüt desert link = { autogenerated = yes imp = 12344 imp = 12343 ck3 = 7353 } # Hupaya, Chelkar -> Central Kazakh Steppe link = { autogenerated = yes imp = 12367 imp = 11482 imp = 11487 imp = 12366 ck3 = 7352 } # Zamri, Raiwant, Bartatu, Mimrito -> Western Kazakh Steppe link = { autogenerated = yes imp = 12671 ck3 = 7349 ck3 = 7405 } # Impassable -> Ridder, Korgon link = { autogenerated = yes imp = 5177 ck3 = 734 } # IMPASSIBLE TERRAIN 177 -> SOUTHEASTERN TAURUS - link = { autogenerated = yes imp = 5113 ck3 = 733 } # IMPASSIBLE TERRAIN 113 -> CARPATHIANS link = { autogenerated = yes imp = 12311 imp = 11365 imp = 11373 imp = 12294 imp = 12295 imp = 12300 imp = 12301 imp = 12302 imp = 12318 ck3 = 7211 } # Hrawma, Suyktobe, Tigdi, Hawyam, Parnam, Tigmas, Hsuskas, Dhuhmas, Daru -> Betpak-Dala - link = { imp = 7280 ck3 = 7125 ck3 = 7130 ck3 = 7210 } # Wasteland -> Uzgend, Sary-Ozek, Kyzylkum + link = { autogenerated = yes imp = 5999 ck3 = 718 } # Carpathian Impassable -> HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 7281 ck3 = 7134 } # Wasteland -> Akkum + link = { autogenerated = yes imp = 7280 ck3 = 7125 ck3 = 7210 } # Wasteland -> Uzgend, Kyzylkum link = { autogenerated = yes imp = 12409 ck3 = 7056 } # Level -> Altin Wasteland - link = { imp = 10018 imp = 10019 imp = 9977 imp = 9978 imp = 9987 imp = 9988 imp = 9989 ck3 = 6594 } # Sherbia, Schiueref, Adwesa, Wanin, Ninah, Daydaban, Harakat -> HAMADAT_HAMRA - link = { autogenerated = yes imp = 5943 ck3 = 6432 ck3 = 6433 ck3 = 6435 ck3 = 8310 ck3 = 8315 ck3 = 8316 ck3 = 8317 ck3 = 8318 ck3 = 8319 ck3 = 8320 ck3 = 8321 ck3 = 8322 ck3 = 8323 ck3 = 8324 ck3 = 8365 ck3 = 8366 ck3 = 8370 ck3 = 8371 ck3 = 8372 ck3 = 8375 ck3 = 8387 ck3 = 8388 ck3 = 8439 ck3 = 8447 ck3 = 8514 ck3 = 8515 } # Sudanese Impassable -> RENK, FAZUGHLI, FAZUGHLI-EAST, SANA, DINDER, BAD, KIBRAN, BASHILA, GISHE, BAHIR _GIYORGIS, GOJJAM, WARQ, DIMA, AMHARA, BIZAMO, GAFAT, DAMOT-WEST, AGAW_MEDER, WEST_GOJJAM, ABBAY-AGAW, GAMBO, BOSHA, METEKEL_DESERT, GOJJAM_HIGHLANDS, GUMUZ-NORTH, GUMUZ-WEST - link = { imp = 5508 imp = 5515 imp = 5516 imp = 5517 imp = 5518 imp = 5520 ck3 = 6425 } # Kysis, Cykaminia, Perusekh, Precariton*, Hameka*, Cataphri* -> WAHAT-DESERT-SOUTH - link = { imp = 10405 imp = 10406 imp = 10407 imp = 7589 imp = 8096 imp = 8097 ck3 = 6418 } # Kawahilah, Thalathun, Qigi, Abliata, Sudan Impassable, Sudan Impassable -> BUTANA - link = { imp = 5944 ck3 = 6430 ck3 = 6431 ck3 = 6883 ck3 = 6884 ck3 = 6898 ck3 = 6899 ck3 = 6900 ck3 = 6901 ck3 = 6897 ck3 = 6882 ck3 = 6881 ck3 = 6879 ck3 = 6880 ck3 = 6895 ck3 = 6890 ck3 = 6877 ck3 = 6878 ck3 = 6872 ck3 = 6871 ck3 = 6866 ck3 = 6894 ck3 = 6865 ck3 = 6869 } # Nubian Impassable -> TAGALI, TAGALI_SOUTH, EL-OBEID, EAST_KORDOFAN, SHATT, LIGURI, CENTRAL_KORDOFAN, SIDRAH, LAGOWA, WEST_KORDOFAN, EN_NAHUD, UMM_GAFALA, GHUBAYSH, EAST_DARFUR, SIMIAT, HILEILA, HURAYZ, KUNDI, DAR_WONA, WADI_AZWA, EAST_SILA, MASALIT, EL-FASHER - link = { imp = 5945 ck3 = 6415 ck3 = 6427 ck3 = 6428 ck3 = 6896 ck3 = 6904 ck3 = 6885 ck3 = 6886 ck3 = 6889 ck3 = 6874 ck3 = 6892 ck3 = 6893 ck3 = 6891 ck3 = 6868 ck3 = 6875 ck3 = 6873 ck3 = 6876 ck3 = 6888 ck3 = 6887 ck3 = 6867 ck3 = 6870 } # Nubian Impassable -> WADI_EL-MILK, JEBEL_ABU_NEGILA, BIR_EL-KAI, UPPER_MILK, DARFUR_DESERT, MALHA, KERKER, TEIGA, URI, QIMR, TAMA, TUREIQ, KUBAYH, AIN_FARAH, MASA, MAO_DARFUR, TAGABO, UMM_KEDADA, KABKABIYA, TURRA - link = { imp = 5354 ck3 = 6413 ck3 = 6414 ck3 = 6440 } # IP 355 -> KHAWR_BARAKA, DJARIN, DHERBE - link = { imp = 5536 imp = 5542 imp = 5543 imp = 5544 imp = 5545 imp = 5552 ck3 = 6328 } # Sitra, Murta*, Magrab**, Gerum*, Thumat**, Klimax -> WESTERN_DESERT + link = { autogenerated = yes imp = 5197 ck3 = 680 } # IMPASSIBLE TERRAIN 197 -> Oltisi + link = { imp = 5988 ck3 = 6460 ck3 = 6462 ck3 = 6464 ck3 = 6461 ck3 = 6463 ck3 = 6601 ck3 = 6602 ck3 = 4570 ck3 = 6668 } # Garamantian Sahara -> GHAT, AL-BARKAT, EFERI, AL-FEWET, DJANET, WADI_IRAWAN, ERG_GHATI, GHADAMES, DJADO_ROUTE + link = { autogenerated = yes imp = 10041 imp = 10042 ck3 = 6595 } # Derg, Cydamus -> JEBEL_NAFUSA + link = { autogenerated = yes imp = 9977 imp = 9978 imp = 9988 imp = 9989 imp = 9973 imp = 9974 imp = 9975 imp = 9976 ck3 = 6594 } # Adwesa, Wanin, Daydaban, Harakat, Mahruqah, Birgin, Dedris, Adri -> HAMADAT_HAMRA + link = { autogenerated = yes imp = 5187 imp = 5186 ck3 = 659 } # IMPASSIBLE TERRAIN 187, IMPASSIBLE TERRAIN 186 -> IBERIAN IMPASSABLE TERRAIN 8 + link = { imp = 5942 ck3 = 8448 ck3 = 8325 ck3 = 8328 ck3 = 8327 ck3 = 8446 ck3 = 8329 ck3 = 8367 ck3 = 8386 ck3 = 8350 ck3 = 8378 ck3 = 8354 ck3 = 8444 ck3 = 8414 ck3 = 8413 ck3 = 8417 ck3 = 8421 ck3 = 8423 ck3 = 8499 ck3 = 8501 ck3 = 8465 ck3 = 8470 ck3 = 8471 ck3 = 8466 ck3 = 8472 ck3 = 8416 ck3 = 8408 ck3 = 8407 ck3 = 8406 ck3 = 8393 ck3 = 8392 ck3 = 8394 ck3 = 8410 ck3 = 8395 ck3 = 8411 ck3 = 8412 ck3 = 8409 ck3 = 8397 ck3 = 8349 ck3 = 8351 ck3 = 8352 ck3 = 8353 ck3 = 8396 ck3 = 8348 ck3 = 8347 ck3 = 8346 ck3 = 8474 ck3 = 8498 ck3 = 8468 ck3 = 8494 ck3 = 8497 } # Somalian Impassable -> WOLLO_HIGHLANDS, EAST_AMHARA, WAGDA, GIDIM, SHOA_HIGHLANDS, WALAQA, MUGAR, INDEGABTAN, WARAB, FATAGAR, KARAYU, AHMAR_MOUNTAINS, DAWARO, ARUSI-SOUTH, SHABELLE, GIDAYA, GIDAYA-EAST, GODE, HANAN, EL_DERE, MAREEG, EL_BUUR, HOBYO, DHUSAMAREB, HARGAYA-SOUTH, HARGAYA, HARAR, DAKKAR, ADAL, SITTI, WEST_ADAL, JEBEL_AHMAR, BATE, HARGAYA-WEST, ARUSI-NORTH, GABAL_SOUTH, GABAL, SILALISH, SARMAT, KATATA, DEBRE_LIBANOS, GENDEBELO, WARJIH, IFAT, MIDDLE_AWASH, HUDUR, MUSTAHIL, QALAAFE, MIDDLE-SHEBELLE, SHABELLE-HIRAN + link = { autogenerated = yes imp = 5943 ck3 = 6432 ck3 = 6433 ck3 = 6435 ck3 = 8310 ck3 = 8315 ck3 = 8316 ck3 = 8317 ck3 = 8318 ck3 = 8319 ck3 = 8320 ck3 = 8321 ck3 = 8322 ck3 = 8323 ck3 = 8324 ck3 = 8365 ck3 = 8366 ck3 = 8370 ck3 = 8371 ck3 = 8372 ck3 = 8375 ck3 = 8387 ck3 = 8388 ck3 = 8439 ck3 = 8447 ck3 = 8514 ck3 = 8515 ck3 = 8377 ck3 = 8437 ck3 = 8438 ck3 = 8376 ck3 = 8516 } # Sudanese Impassable -> RENK, FAZUGHLI, FAZUGHLI-EAST, SANA, DINDER, BAD, KIBRAN, BASHILA, GISHE, BAHIR _GIYORGIS, GOJJAM, WARQ, DIMA, AMHARA, BIZAMO, GAFAT, DAMOT-WEST, AGAW_MEDER, WEST_GOJJAM, ABBAY-AGAW, GAMBO, BOSHA, METEKEL_DESERT, GOJJAM_HIGHLANDS, GUMUZ-NORTH, GUMUZ-WEST, DIDESA, WELLEGA-SOUTH, WELLEGA-NORTH, BERTA, GUMUZ-SOUTH + link = { autogenerated = yes imp = 5333 imp = 5334 imp = 5341 imp = 5342 imp = 5508 imp = 5515 imp = 5516 imp = 5517 imp = 5518 imp = 5520 ck3 = 6425 } # IP 334, IP 335, IP 342, IP 343, Kysis, Cykaminia, Perusekh, Precariton*, Hameka*, Cataphri* -> WAHAT-DESERT-SOUTH + link = { autogenerated = yes imp = 8097 imp = 10405 imp = 10406 imp = 10407 imp = 8096 ck3 = 6418 } # Sudan Impassable, Kawahilah, Thalathun, Qigi, Sudan Impassable -> BUTANA + link = { autogenerated = yes imp = 5330 imp = 9889 imp = 9891 ck3 = 6417 } # IP 331, Fura, Halfa -> BAYUDA_EAST + link = { autogenerated = yes imp = 5944 ck3 = 6430 ck3 = 6431 ck3 = 6882 ck3 = 6883 ck3 = 6884 ck3 = 6897 ck3 = 6898 ck3 = 6899 ck3 = 6900 ck3 = 6901 } # Nubian Impassable -> TAGALI, TAGALI_SOUTH, WEST_KORDOFAN, EL-OBEID, EAST_KORDOFAN, LAGOWA, SHATT, LIGURI, CENTRAL_KORDOFAN, SIDRAH + link = { autogenerated = yes imp = 5945 ck3 = 6415 ck3 = 6427 ck3 = 6428 ck3 = 6896 ck3 = 6904 ck3 = 6887 ck3 = 6885 ck3 = 6886 } # Nubian Impassable -> WADI_EL-MILK, JEBEL_ABU_NEGILA, BIR_EL-KAI, UPPER_MILK, DARFUR_DESERT, UMM_KEDADA, MALHA, KERKER + link = { autogenerated = yes imp = 5354 ck3 = 6413 ck3 = 6414 ck3 = 6419 ck3 = 6423 ck3 = 6440 } # IP 355 -> KHAWR_BARAKA, DJARIN, BUTANA_NORTH, JEBEL_BEJA, DHERBE + link = { autogenerated = yes imp = 6498 imp = 5340 imp = 5536 imp = 5542 imp = 5543 imp = 5544 imp = 5545 imp = 5552 imp = 5994 imp = 5995 ck3 = 6328 } # More Libyan Desert, IP 341, Sitra, Murta*, Magrab**, Gerum*, Thumat**, Klimax, Egyptian Desert, Egyptian Desert -> WESTERN_DESERT link = { autogenerated = yes imp = 6497 imp = 5338 imp = 5502 imp = 5522 ck3 = 6327 } # More Egyptian Desert, IP 339, Gebara, Debiri -> WAHAT-DESERT link = { autogenerated = yes imp = 5936 imp = 11234 imp = 12675 imp = 12676 imp = 5937 imp = 5969 imp = 5970 ck3 = 6318 } # Arabian Impassable, Ubar, Arabia Impassable, Arabia Impassable, Arabian Impassable, mpassable, Impassable -> RUB-AL-KHALI link = { autogenerated = yes imp = 5938 ck3 = 6302 ck3 = 6303 } # Arabian Impassable -> AL-AHQAF, THAMUD @@ -941,38 +977,36 @@ link = { autogenerated = yes imp = 5935 ck3 = 6179 ck3 = 6192 ck3 = 6202 } # Arabian Impassable -> QASR_AT-TUBA, TAYMA, AN-NAFUD link = { autogenerated = yes imp = 12673 ck3 = 6173 } # Arabia Impassable -> NUFUD-AS-SIRR link = { autogenerated = yes imp = 5940 imp = 6049 ck3 = 6167 } # Arabian Impassable, Arabia Deserta Ulterior -> AD-DAHNA DESERT - link = { imp = 5158 imp = 698 ck3 = 6123 } # IMPASSIBLE TERRAIN 158, Sobata -> SINAI DESERT - link = { imp = 9943 imp = 9944 imp = 9945 imp = 9969 ck3 = 6115 } # Jaghbub, Tarfawi, Qabr, Hait -> LIBYAN DESERT + link = { autogenerated = yes imp = 5158 ck3 = 6123 } # IMPASSIBLE TERRAIN 158 -> SINAI DESERT + link = { autogenerated = yes imp = 9943 imp = 9944 imp = 9945 imp = 9969 ck3 = 6115 } # Jaghbub, Tarfawi, Qabr, Hait -> LIBYAN DESERT + link = { autogenerated = yes imp = 5293 imp = 5294 imp = 565 ck3 = 6114 } # IMPASSIBLE TERRAIN 293, IMPASSIBLE TERRAIN 294, Ghuzza -> EASTERN DESERT + link = { autogenerated = yes imp = 5292 ck3 = 6075 } # IMPASSIBLE TERRAIN 292 -> FAW + link = { autogenerated = yes imp = 5339 ck3 = 6059 } # IP 340 -> TIRSA link = { autogenerated = yes imp = 5157 ck3 = 6030 } # IMPASSIBLE TERRAIN 157 -> FIRAUN link = { autogenerated = yes imp = 5941 ck3 = 6024 ck3 = 6164 ck3 = 6165 ck3 = 6168 ck3 = 6170 ck3 = 6175 ck3 = 6320 } # Arabian Impassable -> AR-RUKHAIL, HAFAR, AL-MAWIYA, ATH-THALABIYA, LINA, BITAN, AL-HAJRA link = { autogenerated = yes imp = 6044 ck3 = 5990 ck3 = 5991 ck3 = 5994 ck3 = 5995 ck3 = 5996 ck3 = 5998 ck3 = 5999 ck3 = 6124 } # Syrian Desert -> AIN AT-TAMR, SAFATA, AL-QADISIYA, AL-UDHAIB, KHAFFAN, AL-QARA, AS-SUBIA, SYRIAN DESERT link = { autogenerated = yes imp = 7646 ck3 = 5955 ck3 = 5987 } # Syrian Desert -> BUSRA, AL-AZRAQ link = { autogenerated = yes imp = 5934 ck3 = 5951 ck3 = 5952 } # Arabian Impassable -> JUWAIR, MARJ-RAHIT link = { autogenerated = yes imp = 5181 ck3 = 5909 } # IMPASSIBLE TERRAIN 181 -> AS-SUWAYDIYA - link = { imp = 12286 ck3 = 5864 } # Utebay -> Kazakh wasteland link = { autogenerated = yes imp = 5210 ck3 = 5797 } # IMPASSIBLE TERRAIN 210 -> Dvin range link = { autogenerated = yes imp = 5208 ck3 = 5796 } # IMPASSIBLE TERRAIN 208 -> Mount Aragats link = { autogenerated = yes imp = 5212 ck3 = 5795 } # IMPASSIBLE TERRAIN 212 -> Mount Ararat - link = { autogenerated = yes imp = 1541 imp = 1533 imp = 1546 ck3 = 5755 } # Oghlu Qal'eh, Qara Zia Eddin tepe, Shawarshan -> Marakan - link = { autogenerated = yes imp = 5323 ck3 = 5750 ck3 = 8557 } # IP 324 -> Tsageri, CAUCASUS MOUNTAINS - link = { autogenerated = yes imp = 5174 ck3 = 5691 } # IMPASSIBLE TERRAIN 174 -> Koralla + link = { autogenerated = yes imp = 5199 ck3 = 5755 } # IMPASSIBLE TERRAIN 199 -> Marakan + link = { autogenerated = yes imp = 5195 ck3 = 5714 } # IMPASSIBLE TERRAIN 195 -> Khinisi link = { autogenerated = yes imp = 5170 ck3 = 5688 } # IMPASSIBLE TERRAIN 170 -> Mount Argaeus link = { autogenerated = yes imp = 5169 ck3 = 5687 } # IMPASSIBLE TERRAIN 169 -> Mount Demirkazik link = { autogenerated = yes imp = 5167 ck3 = 5686 } # IMPASSIBLE TERRAIN 167 -> Eastern Taurus Mountains link = { autogenerated = yes imp = 5164 ck3 = 5685 } # IMPASSIBLE TERRAIN 164 -> Western Taurus Mountains link = { autogenerated = yes imp = 7915 ck3 = 5576 } # Artiknous Mountains -> Iuliopolis - link = { autogenerated = yes imp = 5327 imp = 5324 imp = 5325 imp = 5326 ck3 = 5515 } # IP 328, IP 325, IP 326, IP 327 -> Caucasus Mountains - link = { autogenerated = yes imp = 5892 imp = 5890 imp = 5893 imp = 5894 imp = 5895 imp = 5896 imp = 5897 imp = 5898 imp = 5901 imp = 5917 imp = 5922 imp = 5932 imp = 6204 imp = 6208 ck3 = 5514 } # Sechem, Mykon, Creasch, Kyta, Vynikka, Sarden, Yrbent, Shachel, Porach, Yonnav, Kumetta, Manar, Urghalat, Khochy -> Caucasus Wasteland - link = { autogenerated = yes imp = 11320 imp = 11317 imp = 11321 imp = 11322 imp = 11323 imp = 11324 imp = 11325 imp = 11326 imp = 11327 imp = 11329 imp = 11330 imp = 11462 imp = 11470 imp = 6231 ck3 = 5513 } # Kazanka, Ardembey, Dymar, Sasyktau, Zhanashu, Burli, Nausha, Sapak, Sapargali, Kokkamys, Sasan, Tabiti, Datah, Ashina -> Ryn Desert + link = { autogenerated = yes imp = 11320 imp = 11317 imp = 11321 imp = 11322 imp = 11323 imp = 11324 imp = 11325 imp = 11326 imp = 11327 imp = 11329 imp = 11330 imp = 11462 imp = 11470 imp = 6227 imp = 6229 imp = 6230 imp = 6231 ck3 = 5513 } # Kazanka, Ardembey, Dymar, Sasyktau, Zhanashu, Burli, Nausha, Sapak, Sapargali, Kokkamys, Sasan, Tabiti, Datah, Zale, Khonnt, Arkhonnt, Ashina -> Ryn Desert link = { autogenerated = yes imp = 5972 ck3 = 5478 ck3 = 5483 } # Eurasian Northlands -> Inzer, Sakmara - link = { autogenerated = yes imp = 5193 ck3 = 4864 } # IMPASSIBLE TERRAIN 193 -> QULB - link = { autogenerated = yes imp = 5227 ck3 = 4848 ck3 = 4849 } # IMPASSIBLE TERRAIN 227 -> SINJAR, AL-HAYYAL - link = { autogenerated = yes imp = 5225 ck3 = 4817 } # IMPASSIBLE TERRAIN 225 -> JUZA + link = { autogenerated = yes imp = 5227 ck3 = 4848 } # IMPASSIBLE TERRAIN 227 -> SINJAR link = { autogenerated = yes imp = 5223 ck3 = 4776 } # IMPASSIBLE TERRAIN 223 -> BAMARDANI - link = { imp = 5951 ck3 = 4727 ck3 = 4728 ck3 = 4729 ck3 = 4730 ck3 = 4740 ck3 = 4755 ck3 = 4756 ck3 = 4757 ck3 = 4758 ck3 = 6588 ck3 = 6651 ck3 = 796 ck3 = 797 ck3 = 799 ck3 = 6470 ck3 = 6471 ck3 = 6472 ck3 = 6652 } # Mauri Impassable -> IFNI, NUL LAMTA, TAGHMUT, ASSA, AL-TALHA, TAGMADART, TIDRI, TAGAWST, ILIGH, HAMADAT_DRAA, IGUIDI_WEST, Atlas Mountains 7, Atlas Mountains 8, Atlas Mountains 10, TINDOUF, SEQIUET_EL-HAMRA, ZAMMOUR, TINDOUF_ROAD - link = { autogenerated = yes imp = 5949 ck3 = 4608 ck3 = 4609 ck3 = 4610 ck3 = 4611 ck3 = 4614 ck3 = 4615 } # Musulami Impassable -> AJLU, ARIGH, TUGGURT, TAGHYART, KARIMA, WARGLA - link = { imp = 9995 imp = 9996 imp = 9997 imp = 9994 ck3 = 6661 } # Sharraba, Baghira, Tisit, Dujal -> GHAT_ROUTE - link = { imp = 5988 ck3 = 4570 ck3 = 6323 ck3 = 6602 ck3 = 6601 ck3 = 6460 ck3 = 6461 ck3 = 6462 ck3 = 6464 ck3 = 6463 ck3 = 6662 ck3 = 6663 } # Garamantian Sahara -> GHADAMES, ERG-SHARQI, ERG_GHATI, WADI_IRAWAN, GHAT, AL-FEWET, AL-BARKAT, EFERI, DJANET, EAST_AHAGGAR, AHAGGAR + link = { autogenerated = yes imp = 5951 ck3 = 4727 ck3 = 4728 ck3 = 4729 ck3 = 4730 ck3 = 4740 ck3 = 4755 ck3 = 4756 ck3 = 4757 ck3 = 4758 ck3 = 6470 ck3 = 6471 ck3 = 6588 ck3 = 6651 ck3 = 796 ck3 = 797 ck3 = 799 } # Mauri Impassable -> IFNI, NUL LAMTA, TAGHMUT, ASSA, AL-TALHA, TAGMADART, TIDRI, TAGAWST, ILIGH, TINDOUF, SEQIUET_EL-HAMRA, HAMADAT_DRAA, IGUIDI_WEST, Atlas Mountains 7, Atlas Mountains 8, Atlas Mountains 10 + link = { autogenerated = yes imp = 5285 ck3 = 4716 ck3 = 795 } # IMPASSIBLE TERRAIN 285 -> TINMALLAL, Atlas Mountains 6 + link = { autogenerated = yes imp = 5949 ck3 = 4608 ck3 = 4609 ck3 = 4610 ck3 = 4611 ck3 = 4614 ck3 = 4615 ck3 = 4613 } # Musulami Impassable -> AJLU, ARIGH, TUGGURT, TAGHYART, KARIMA, WARGLA, SADRATA + link = { autogenerated = yes imp = 5948 ck3 = 4559 } # Garamantes Impassable -> DJADO + link = { autogenerated = yes imp = 5989 ck3 = 4558 } # Thenteos -> TIRI link = { autogenerated = yes imp = 5346 ck3 = 4521 ck3 = 4522 } # IP 347 -> Urgun, Shakin link = { autogenerated = yes imp = 3316 ck3 = 4518 } # Impassable -> KOHLU link = { autogenerated = yes imp = 5260 ck3 = 4470 ck3 = 4471 ck3 = 4472 ck3 = 4473 } # IMPASSIBLE TERRAIN 260 -> JALK, BANNAJBUR, MASHKI, RODKHAN @@ -982,7 +1016,8 @@ link = { autogenerated = yes imp = 5249 ck3 = 4292 ck3 = 4293 } # IMPASSIBLE TERRAIN 249 -> Karkuya, Juwain link = { autogenerated = yes imp = 7282 ck3 = 4287 } # Impassable -> Dizak Makrani link = { autogenerated = yes imp = 6062 ck3 = 4273 ck3 = 4284 } # Parecania -> Fahraj, Rasak - link = { imp = 5258 ck3 = 4203 ck3 = 4209 } # IMPASSIBLE TERRAIN 258 -> Abiz, Khawaf + link = { autogenerated = yes imp = 7643 ck3 = 4255 ck3 = 8532 ck3 = 8534 ck3 = 8536 ck3 = 8538 ck3 = 9395 ck3 = 9408 ck3 = 9409 ck3 = 9410 ck3 = 9411 ck3 = 9470 ck3 = 9471 ck3 = 9480 ck3 = 9497 } # Impassable -> KUNLUNSHAN, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, Lenghu, Ngor, Yagkeng, Gangca, Haeyan, Takoerpasitao, Hahaeci, Yanchiwan, Yeniugou + link = { autogenerated = yes imp = 5258 ck3 = 4209 } # IMPASSIBLE TERRAIN 258 -> Khawaf link = { autogenerated = yes imp = 5297 ck3 = 4182 } # IMPASSIBLE TERRAIN 297 -> Prerov link = { autogenerated = yes imp = 5243 ck3 = 4122 } # IMPASSIBLE TERRAIN 243 -> Lurijan link = { autogenerated = yes imp = 5241 ck3 = 4113 ck3 = 4258 ck3 = 4259 } # IMPASSIBLE TERRAIN 241 -> Juy-e-Sard, Bazoh, Dizful @@ -992,40 +1027,44 @@ link = { autogenerated = yes imp = 5257 ck3 = 4068 ck3 = 4071 } # IMPASSIBLE TERRAIN 257 -> Tun, Raqe link = { autogenerated = yes imp = 8305 ck3 = 4059 ck3 = 4281 ck3 = 4282 ck3 = 9221 ck3 = 9367 ck3 = 9390 ck3 = 9391 } # Roqiang -> KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, Yurba, Yuyico, Aqqikkol, Kytkol link = { autogenerated = yes imp = 5265 ck3 = 4032 ck3 = 4034 } # IMPASSIBLE TERRAIN 265 -> Kerend, Khodzhakala + link = { autogenerated = yes imp = 5236 ck3 = 4027 } # IMPASSIBLE TERRAIN 236 -> Gerdkuh link = { autogenerated = yes imp = 5238 ck3 = 4006 } # IMPASSIBLE TERRAIN 238 -> Alamut link = { autogenerated = yes imp = 7288 ck3 = 3998 } # Impassable -> Bikramkhol link = { autogenerated = yes imp = 7285 ck3 = 3970 } # Impassable -> Thar Desert 2 - link = { autogenerated = yes imp = 5299 ck3 = 3951 ck3 = 5036 ck3 = 719 ck3 = 732 } # IMPASSIBLE TERRAIN 299 -> EASTERN EUROPE IMPASSABLE TERRAIN 1, Campulung Moldovenesc, CARPATHIANS, CARPATHIANS + link = { autogenerated = yes imp = 5299 ck3 = 3951 ck3 = 719 ck3 = 732 } # IMPASSIBLE TERRAIN 299 -> EASTERN EUROPE IMPASSABLE TERRAIN 1, CARPATHIANS, CARPATHIANS link = { autogenerated = yes imp = 5115 ck3 = 3949 } # IMPASSIBLE TERRAIN 115 -> BALKAN IMPASSABLE TERRAIN 6 link = { autogenerated = yes imp = 5298 ck3 = 3810 ck3 = 716 ck3 = 717 } # IMPASSIBLE TERRAIN 298 -> Twardosczino, HUNGARIAN-MORAVIAN MOUNTAINS, HUNGARIAN-MORAVIAN MOUNTAINS - link = { autogenerated = yes imp = 5070 ck3 = 3716 } # IMPASSIBLE TERRAIN 070 -> Klisura + link = { autogenerated = yes imp = 5070 ck3 = 3714 ck3 = 3716 } # IMPASSIBLE TERRAIN 070 -> Skrapar, Klisura link = { autogenerated = yes imp = 5103 ck3 = 3620 } # IMPASSIBLE TERRAIN 103 -> Smolyan link = { autogenerated = yes imp = 5961 ck3 = 3612 ck3 = 5913 ck3 = 5997 ck3 = 7787 ck3 = 7941 ck3 = 8526 ck3 = 8527 ck3 = 8528 ck3 = 8529 ck3 = 8530 ck3 = 8531 ck3 = 9031 ck3 = 9041 ck3 = 9042 ck3 = 9043 ck3 = 9060 ck3 = 9062 ck3 = 9063 ck3 = 9064 ck3 = 9065 ck3 = 9212 ck3 = 9213 ck3 = 9215 ck3 = 9216 ck3 = 9218 ck3 = 9219 ck3 = 9220 ck3 = 9252 ck3 = 9253 ck3 = 9254 ck3 = 9258 ck3 = 9259 ck3 = 9260 ck3 = 9261 ck3 = 9262 ck3 = 9263 ck3 = 9264 ck3 = 9297 ck3 = 9298 ck3 = 9307 ck3 = 9348 ck3 = 9350 ck3 = 9351 ck3 = 9355 ck3 = 9356 ck3 = 9357 ck3 = 9358 ck3 = 9359 ck3 = 9360 ck3 = 9361 ck3 = 9362 ck3 = 9363 ck3 = 9364 ck3 = 9365 ck3 = 9366 ck3 = 9368 ck3 = 9369 ck3 = 9370 ck3 = 9371 ck3 = 9372 ck3 = 9373 ck3 = 9374 ck3 = 9375 ck3 = 9376 ck3 = 9377 ck3 = 9378 ck3 = 9379 ck3 = 9380 ck3 = 9381 ck3 = 9382 ck3 = 9383 ck3 = 9384 ck3 = 9385 ck3 = 9386 ck3 = 9387 ck3 = 9388 ck3 = 9401 ck3 = 9429 ck3 = 9430 ck3 = 9431 ck3 = 9448 ck3 = 971 } # Tibetan Plateau Impassable -> KUNLUNSHAN, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, Nischu, Memar, Bangdag, Bairab, Chaka, Dongco, Gomoco, Chagboco, Burogco, Xainza, Shyungme, Nyima, Aso, Ngoqu, Garkung, Margai, Xenkyer, Pukpa, Balla, Qangma, Parling, Xibde, Cozhelhoma, Garco, Dorsoidong, Cozhedangma, Baqen, Lhaxi, Longbaoco, Serxu, Ariksar, Tromsa_Genma, Amdo, Gangnyi, Sibnak_Chenchungo, Marrong, Changco, Yenshipin, Quemoco, Marchu, Sewa, Ulenulaco, Dokecoring, Dokecoring_Qangco, Aqenganggyai, Hohaseco, Dangla, Nengyi, Drakbuk, Chumarho, Toma, Trandam, Damzhung, Ato, Qapugtang, Mukzhung, Zokya, Drakgur, Gyaijepozhangge, Triwang, Damda, Qumarleb, Mato, Chikdril, Ragbangadung, Ngoring, Madoi, Dzogenrabar, Machu, Gyumai, TIBET IMPASSABLE - link = { autogenerated = yes imp = 5079 ck3 = 3585 } # IMPASSIBLE TERRAIN 079 -> Breznica link = { autogenerated = yes imp = 5090 ck3 = 3564 } # IMPASSIBLE TERRAIN 090 -> Olovo - link = { imp = 5081 imp = 5082 ck3 = 3558 } # IMPASSIBLE TERRAIN 081, IMPASSIBLE TERRAIN 082 -> Mostar link = { autogenerated = yes imp = 7296 ck3 = 3433 ck3 = 9049 } # Impassable -> Kahlur, Kalpa link = { autogenerated = yes imp = 5374 ck3 = 3415 } # IP 375 -> Mankera link = { autogenerated = yes imp = 7286 ck3 = 3390 } # Impassable -> Thar Desert 1 link = { autogenerated = yes imp = 6057 ck3 = 3386 } # Marudesa -> Kiratakupa link = { autogenerated = yes imp = 5033 ck3 = 3314 } # IMPASSIBLE TERRAIN 033 -> ALPS 8 link = { autogenerated = yes imp = 5120 imp = 5030 imp = 5116 ck3 = 3311 } # IMPASSIBLE TERRAIN 120, IMPASSIBLE TERRAIN 030, IMPASSIBLE TERRAIN 116 -> ALPS 5 - link = { imp = 5121 imp = 12887 imp = 3618 imp = 3656 imp = 3657 imp = 5029 imp = 5040 imp = 5124 ck3 = 3310 } # IMPASSIBLE TERRAIN 121, Camuni, SumusLacus, AlpinusMons, AlpinusMons, IMPASSIBLE TERRAIN 029, IMPASSIBLE TERRAIN 040, IMPASSIBLE TERRAIN 124 -> ALPS 4 + link = { autogenerated = yes imp = 5121 imp = 12887 imp = 3618 imp = 3656 imp = 3657 imp = 5029 imp = 5040 imp = 5124 ck3 = 3310 } # IMPASSIBLE TERRAIN 121, Camuni, SumusLacus, AlpinusMons, AlpinusMons, IMPASSIBLE TERRAIN 029, IMPASSIBLE TERRAIN 040, IMPASSIBLE TERRAIN 124 -> ALPS 4 link = { autogenerated = yes imp = 5028 imp = 3612 imp = 3613 imp = 3615 imp = 5027 imp = 5042 ck3 = 3309 } # IMPASSIBLE TERRAIN 028, Eudracinum, Octodurus, MonsAlpinus, IMPASSIBLE TERRAIN 027, IMPASSIBLE TERRAIN 042 -> ALPS 3 link = { autogenerated = yes imp = 5026 ck3 = 3308 } # IMPASSIBLE TERRAIN 026 -> ALPS 2 + link = { autogenerated = yes imp = 5132 ck3 = 3306 } # IMPASSIBLE TERRAIN 132 -> IBERIAN IMPASSIBLE TERRAIN 7 + link = { autogenerated = yes imp = 5133 imp = 5051 imp = 5052 ck3 = 3305 } # IMPASSIBLE TERRAIN 133, IMPASSIBLE TERRAIN 051, IMPASSIBLE TERRAIN 052 -> IBERIAN IMPASSIBLE TERRAIN 6 + link = { autogenerated = yes imp = 8147 ck3 = 3304 } # Hispania Impassable -> IBERIAN IMPASSIBLE TERRAIN 5 + link = { autogenerated = yes imp = 5182 ck3 = 3303 } # IMPASSIBLE TERRAIN 182 -> IBERIAN IMPASSIBLE TERRAIN 4 + link = { autogenerated = yes imp = 8149 imp = 8150 ck3 = 3302 } # Hispania Impassable, Hispania Impassable -> IBERIAN IMPASSIBLE TERRAIN 3 + link = { autogenerated = yes imp = 5188 ck3 = 3300 } # IMPASSIBLE TERRAIN 188 -> IBERIAN IMPASSIBLE TERRAIN 1 link = { autogenerated = yes imp = 5067 ck3 = 3299 } # IMPASSIBLE TERRAIN 067 -> BALKAN IMPASSABLE TERRAIN 5 link = { autogenerated = yes imp = 5074 ck3 = 3298 } # IMPASSIBLE TERRAIN 074 -> BALKAN IMPASSABLE TERRAIN 4 link = { autogenerated = yes imp = 5106 ck3 = 3297 } # IMPASSIBLE TERRAIN 106 -> BALKAN IMPASSABLE TERRAIN 3 link = { autogenerated = yes imp = 5084 ck3 = 3296 } # IMPASSIBLE TERRAIN 084 -> BALKAN IMPASSABLE TERRAIN 2 link = { autogenerated = yes imp = 5111 imp = 5112 ck3 = 3295 } # IMPASSIBLE TERRAIN 111, IMPASSIBLE TERRAIN 112 -> BALKAN IMPASSABLE TERRAIN 1 - link = { imp = 8088 ck3 = 4759 ck3 = 6653 ck3 = 6469 ck3 = 4612 ck3 = 6468 ck3 = 6655 ck3 = 6654 } # Sahara -> TAOUZ, IGUIDI_EAST, WADI_DAOURA, TABALBALA, BOUDA, SAOURA, TAGHAZA_ROAD - link = { imp = 5950 ck3 = 4618 ck3 = 4616 ck3 = 4617 ck3 = 6322 ck3 = 4613 ck3 = 6591 ck3 = 6467 ck3 = 6466 ck3 = 6465 } # Gaetuli Impassable -> TILGHEMT, GHARDAIA, AL-QULAYA, TEDMAIT, SADRATA, HAMADAT_TINGHERT, ADRAR_TIMMI, TAMENTIT, REGGANE + link = { autogenerated = yes imp = 5950 ck3 = 4616 ck3 = 4618 ck3 = 4617 ck3 = 6322 } # Gaetuli Impassable -> GHARDAIA, TILGHEMT, AL-QULAYA, TEDMAIT link = { autogenerated = yes imp = 5266 imp = 5267 imp = 5393 imp = 5394 imp = 5395 imp = 5396 imp = 6683 imp = 6796 imp = 6798 ck3 = 3292 } # IMPASSIBLE TERRAIN 266, IMPASSIBLE TERRAIN 267, Artessia, Khiva, Dharakh, Ghore, Kushmekhan, Qanga, Shahsenem -> PERSIAN IMPASSABLE TERRAIN 4 link = { autogenerated = yes imp = 5259 ck3 = 3290 } # IMPASSIBLE TERRAIN 259 -> PERSIAN IMPASSABLE TERRAIN 2 link = { autogenerated = yes imp = 5245 ck3 = 3289 ck3 = 4095 } # IMPASSIBLE TERRAIN 245 -> PERSIAN IMPASSABLE TERRAIN 1, Jahrum link = { autogenerated = yes imp = 5019 imp = 5129 ck3 = 3259 } # IMPASSIBLE TERRAIN 019, IMPASSIBLE TERRAIN 129 -> Northern Apennine Mountains 2 - link = { autogenerated = yes imp = 5023 imp = 3530 imp = 5131 ck3 = 3256 } # IMPASSIBLE TERRAIN 023, MustiaeCalmes, IMPASSIBLE TERRAIN 131 -> ALPS 1 - link = { autogenerated = yes imp = 5385 ck3 = 3179 ck3 = 3255 ck3 = 9007 ck3 = 9016 ck3 = 9045 ck3 = 9046 ck3 = 9047 } # IP 386 -> KUNLUNSHAN, KUNLUNSHAN, Hanle, Darcha, Tabo, Dhankar, Kardang + link = { autogenerated = yes imp = 5023 imp = 5131 ck3 = 3256 } # IMPASSIBLE TERRAIN 023, IMPASSIBLE TERRAIN 131 -> ALPS 1 + link = { autogenerated = yes imp = 5385 ck3 = 3179 ck3 = 3255 ck3 = 9016 ck3 = 9045 ck3 = 9046 ck3 = 9047 } # IP 386 -> KUNLUNSHAN, KUNLUNSHAN, Darcha, Tabo, Dhankar, Kardang link = { autogenerated = yes imp = 9768 ck3 = 3150 ck3 = 9032 ck3 = 9033 ck3 = 9034 ck3 = 9035 ck3 = 9036 ck3 = 9612 } # Impassable -> KUNLUNSHAN, Sumna, Thaldat, Sumnal, Sumdo, Chungtash, Melikawat link = { autogenerated = yes imp = 5037 ck3 = 3129 ck3 = 3135 } # IMPASSIBLE TERRAIN 037 -> IRDNING, HALLSTATT link = { autogenerated = yes imp = 5126 ck3 = 3127 ck3 = 3128 } # IMPASSIBLE TERRAIN 126 -> FELDKIRCHEN, KAMMERSBERG @@ -1040,97 +1079,120 @@ link = { autogenerated = yes imp = 5275 ck3 = 2996 } # IMPASSIBLE TERRAIN 275 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5125 ck3 = 2954 ck3 = 3312 } # IMPASSIBLE TERRAIN 125 -> BOZEN, ALPS 6 link = { autogenerated = yes imp = 5038 ck3 = 2951 ck3 = 2985 ck3 = 3313 } # IMPASSIBLE TERRAIN 038 -> MATREI, LAUKENTAL, ALPS 7 - link = { autogenerated = yes imp = 5261 ck3 = 2929 ck3 = 2930 ck3 = 2944 ck3 = 2974 ck3 = 4228 } # IMPASSIBLE TERRAIN 261 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, Darmashan + link = { autogenerated = yes imp = 5261 ck3 = 2929 ck3 = 2930 ck3 = 2944 ck3 = 2974 ck3 = 4227 ck3 = 4228 } # IMPASSIBLE TERRAIN 261 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, Ghur, Darmashan link = { autogenerated = yes imp = 5262 ck3 = 2908 ck3 = 4229 } # IMPASSIBLE TERRAIN 262 -> PERSIAN IMPASSABLE, Bashin link = { autogenerated = yes imp = 5268 ck3 = 2884 } # IMPASSIBLE TERRAIN 268 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5274 ck3 = 2881 } # IMPASSIBLE TERRAIN 274 -> PERSIAN IMPASSABLE - link = { imp = 5952 ck3 = 282 ck3 = 291 ck3 = 294 ck3 = 295 ck3 = 296 ck3 = 297 ck3 = 3261 ck3 = 3263 ck3 = 363 ck3 = 364 ck3 = 365 ck3 = 366 ck3 = 367 ck3 = 368 ck3 = 373 ck3 = 374 ck3 = 375 ck3 = 376 ck3 = 377 ck3 = 378 ck3 = 379 ck3 = 380 ck3 = 381 ck3 = 382 ck3 = 386 ck3 = 389 ck3 = 421 ck3 = 422 ck3 = 427 ck3 = 428 ck3 = 429 ck3 = 430 ck3 = 431 ck3 = 432 ck3 = 435 ck3 = 436 ck3 = 437 ck3 = 438 ck3 = 439 ck3 = 441 ck3 = 653 ck3 = 654 ck3 = 655 ck3 = 656 ck3 = 8781 ck3 = 8782 } # Swedish Impassable -> GRAFTAVALLEN, TANNA, ARDDA, KROKAR, SKALSTUGAN, STORSJO, SWEDISH IMPASSIBLE TERRAIN 1, SWEDISH IMPASSIBLE TERRAIN 2, LIDH, HEDANGER, SIOBORADH, SOLATUMUM, NETERU, GRUNDASUND, JAHKAMAKKE, LUOKTA, ARVIESJAVRRIE, TUORPON, SEMISJAUR, SJOKKSJOKK, SIRKAS, SIGGEVARA, LAIS, UBMEJE, FROSO, MORARNA, JULEVU, BITON, ARJEPLUOVVE, UDDJAUR, LUSSPIE, SJELTIE, GAALTOE, VUALTJERE, OSTAVALL, RAGUNDA, FOLLINGE, FINNFORSAR, HELGUM, INDAL, NORWEGIAN IMPASSABLE 2, NORWEGIAN IMPASSABLE 3, NORWEGIAN IMPASSABLE 4, NORWEGIAN IMPASSABLE 5, Ume, Vettanen + link = { autogenerated = yes imp = 5952 ck3 = 282 ck3 = 291 ck3 = 294 ck3 = 295 ck3 = 296 ck3 = 297 ck3 = 3261 ck3 = 3263 ck3 = 363 ck3 = 364 ck3 = 365 ck3 = 366 ck3 = 367 ck3 = 368 ck3 = 373 ck3 = 374 ck3 = 375 ck3 = 376 ck3 = 377 ck3 = 378 ck3 = 379 ck3 = 380 ck3 = 381 ck3 = 382 ck3 = 386 ck3 = 389 ck3 = 421 ck3 = 422 ck3 = 423 ck3 = 427 ck3 = 428 ck3 = 429 ck3 = 430 ck3 = 431 ck3 = 432 ck3 = 436 ck3 = 437 ck3 = 438 ck3 = 439 ck3 = 441 ck3 = 653 ck3 = 654 ck3 = 655 ck3 = 656 ck3 = 8781 ck3 = 8782 ck3 = 8783 } # Swedish Impassable -> GRAFTAVALLEN, TANNA, ARDDA, KROKAR, SKALSTUGAN, STORSJO, SWEDISH IMPASSIBLE TERRAIN 1, SWEDISH IMPASSIBLE TERRAIN 2, LIDH, HEDANGER, SIOBORADH, SOLATUMUM, NETERU, GRUNDASUND, JAHKAMAKKE, LUOKTA, ARVIESJAVRRIE, TUORPON, SEMISJAUR, SJOKKSJOKK, SIRKAS, SIGGEVARA, LAIS, UBMEJE, FROSO, MORARNA, JULEVU, BITON, GALASEATNU, ARJEPLUOVVE, UDDJAUR, LUSSPIE, SJELTIE, GAALTOE, VUALTJERE, RAGUNDA, FOLLINGE, FINNFORSAR, HELGUM, INDAL, NORWEGIAN IMPASSABLE 2, NORWEGIAN IMPASSABLE 3, NORWEGIAN IMPASSABLE 4, NORWEGIAN IMPASSABLE 5, Ume, Vettanen, Ylikainuu link = { autogenerated = yes imp = 5273 ck3 = 2754 } # IMPASSIBLE TERRAIN 273 -> PERSIAN IMPASSABLE - link = { autogenerated = yes imp = 5380 ck3 = 2734 } # IP 381 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5138 ck3 = 2720 ck3 = 781 } # IMPASSIBLE TERRAIN 138 -> FERRETTE, German Mountains 8 - link = { autogenerated = yes imp = 5963 ck3 = 2718 ck3 = 2740 ck3 = 3037 ck3 = 3071 ck3 = 4358 ck3 = 4515 ck3 = 7953 ck3 = 7954 } # Badakshan Impassable -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, KUNLUNSHAN, KUNLUNSHAN, Sanglich, CHITRAL, Golaghmuli, Yasin link = { autogenerated = yes imp = 5278 ck3 = 2667 ck3 = 2668 ck3 = 3291 ck3 = 4366 ck3 = 4367 } # IMPASSIBLE TERRAIN 278 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE TERRAIN 3, Upper Karran, Lower Karran link = { autogenerated = yes imp = 5270 imp = 5271 imp = 5272 imp = 5276 imp = 5277 imp = 6722 ck3 = 2601 } # IMPASSIBLE TERRAIN 270, IMPASSIBLE TERRAIN 271, IMPASSIBLE TERRAIN 272, IMPASSIBLE TERRAIN 276, IMPASSIBLE TERRAIN 277, Imarash -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 9389 imp = 10617 ck3 = 2580 } # Impassable, Bosteri -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5381 ck3 = 250 } # IP 382 -> RAABOIGDE link = { autogenerated = yes imp = 5130 ck3 = 2484 } # IMPASSIBLE TERRAIN 130 -> Northern Apennine Mountains 1 link = { autogenerated = yes imp = 5122 ck3 = 2478 } # IMPASSIBLE TERRAIN 122 -> BELLINZONA link = { autogenerated = yes imp = 5041 imp = 5123 ck3 = 2461 } # IMPASSIBLE TERRAIN 041, IMPASSIBLE TERRAIN 123 -> SCHWYZ - link = { imp = 5132 ck3 = 3306 } # IMPASSIBLE TERRAIN 132 -> IBERIAN IMPASSIBLE TERRAIN 7 - link = { imp = 5976 ck3 = 185 ck3 = 186 ck3 = 187 ck3 = 188 ck3 = 189 ck3 = 190 ck3 = 203 ck3 = 204 ck3 = 207 ck3 = 209 ck3 = 210 ck3 = 211 ck3 = 212 ck3 = 214 ck3 = 215 ck3 = 384 ck3 = 385 ck3 = 387 ck3 = 388 ck3 = 390 ck3 = 391 ck3 = 400 ck3 = 423 ck3 = 424 ck3 = 425 ck3 = 426 ck3 = 442 ck3 = 443 ck3 = 444 ck3 = 445 ck3 = 446 ck3 = 447 ck3 = 448 ck3 = 449 ck3 = 450 ck3 = 650 ck3 = 651 ck3 = 8783 ck3 = 8784 ck3 = 8785 ck3 = 8786 ck3 = 8788 ck3 = 213 ck3 = 193 ck3 = 196 ck3 = 195 ck3 = 198 ck3 = 199 ck3 = 202 ck3 = 194 ck3 = 452 ck3 = 218 ck3 = 219 ck3 = 958 ck3 = 192 ck3 = 201 ck3 = 200 ck3 = 174 ck3 = 191 ck3 = 652 ck3 = 451 ck3 = 3262 ck3 = 420 ck3 = 419 ck3 = 418 ck3 = 408 ck3 = 401 ck3 = 3264 ck3 = 8789 ck3 = 402 ck3 = 404 ck3 = 405 ck3 = 406 ck3 = 935 ck3 = 403 ck3 = 407 ck3 = 411 ck3 = 412 ck3 = 415 ck3 = 413 ck3 = 416 ck3 = 417 ck3 = 8790 ck3 = 8791 ck3 = 8792 ck3 = 453 ck3 = 454 ck3 = 455 ck3 = 8787 ck3 = 409 ck3 = 414 ck3 = 410 } # Finland Impassable -> ULVILA, PIRKKALA, SAVITAIPALE, MIKKELI, SULKAVA, OLAVINLINNA, SUOPARSAARI, TOHMAJARVI, SYSMA, PAIJALA, VUOHIJARVI, MESSUKYLA, RUOVESI, MERIKARVIA, LEVANLUHTA, SUONDAVARA, KITTAL, SUADIGIL, KEMIJAVRI, SOMBIO, AANAARJAVRI, PEACCAM, GALASEATNU, DUORTNUS, GIEPMA, IIJOKI, PEDERSORE, VETELI, OULU, LIMINKA, PUOLANKA, KONNEVESI, KEITELE, PIELINEN, KAJAANI, FINNISH IMPASSABLE 2, FINNISH IMPASSABLE 3, Ylikainuu, Kangos, Roavvenjarga, Kuusama, Suenekele, MUSTASAARI, AUNUS, SOUTJARVI, ONEGABORG, KONTUPOHJA, LIZMAJARVI, VATSELANJARVI, SEESJARVI, TUNGUT, SOMA, KEM, lake_ladoga, SALINIS, SUOJARVI, TOVAJARVI, SORTAVALA, KIDILA, FINNISH IMPASSABLE 4, NUOKKIJARVI, FINNISH IMPASSIBLE TERRAIN 1, MAANSELKA, KITKA, KOULAJARVI, SAARVESJAURR, SUONNJEL, KOLA IMPASSIBLE TERRAIN, Skolt, MUETKK, KIILT, KOARDEGK, MASELK, KOLA IMPASSIBLE TERRAIN, NUOTTJAURR, CUKKSUAL, LEJJAVVR, ARSJOGK, JOVVKUJ, GUODDEMJAVVR, PENNE, SOSNEVKE, Peliza, Varsiga, Cascarena, KUUSEMA, KOUTAJOKI, TIIKSJARVI, Kaddlhutt, AKKEL, KINTUS, LUJAVVR + link = { autogenerated = yes imp = 5046 ck3 = 2296 } # IMPASSIBLE TERRAIN 046 -> VELAY + link = { autogenerated = yes imp = 5047 ck3 = 2224 ck3 = 2292 } # IMPASSIBLE TERRAIN 047 -> SAINT-FLOUR, MURAT + link = { autogenerated = yes imp = 5184 ck3 = 2004 } # IMPASSIBLE TERRAIN 184 -> REOLID + link = { autogenerated = yes imp = 5185 ck3 = 1973 } # IMPASSIBLE TERRAIN 185 -> HUESCAR + link = { autogenerated = yes imp = 5183 ck3 = 1903 } # IMPASSIBLE TERRAIN 183 -> ARNEDO + link = { autogenerated = yes imp = 5053 ck3 = 1870 } # IMPASSIBLE TERRAIN 053 -> VIELHA + link = { autogenerated = yes imp = 5283 ck3 = 1723 ck3 = 1743 ck3 = 1744 } # IMPASSIBLE TERRAIN 283 -> MAR, DUNKELD, ABERFELDY + link = { autogenerated = yes imp = 5382 ck3 = 16310 ck3 = 7949 } # IP 383 -> 16310, Kaghan + link = { autogenerated = yes imp = 5348 ck3 = 16307 ck3 = 16308 } # IP 349 -> 16307, 16308 + link = { autogenerated = yes imp = 7295 ck3 = 16300 ck3 = 16301 ck3 = 16309 ck3 = 7946 } # Impassable -> Kishtwar, Doda, 16309, Campa2 + link = { autogenerated = yes imp = 5963 ck3 = 16285 ck3 = 2718 ck3 = 2734 ck3 = 2740 ck3 = 3037 ck3 = 3071 ck3 = 4515 ck3 = 7951 ck3 = 7952 ck3 = 7954 } # Badakshan Impassable -> Kamdesh, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, KUNLUNSHAN, KUNLUNSHAN, CHITRAL, Kalam_TARIM, Mastuj, Yasin + link = { autogenerated = yes imp = 5380 ck3 = 16284 ck3 = 16286 ck3 = 16289 ck3 = 4514 } # IP 381 -> Parun, Waygal, Alingar, KUNAR + link = { autogenerated = yes imp = 5976 ck3 = 16254 ck3 = 185 ck3 = 186 ck3 = 188 ck3 = 189 ck3 = 190 ck3 = 203 ck3 = 204 ck3 = 207 ck3 = 209 ck3 = 210 ck3 = 211 ck3 = 212 ck3 = 213 ck3 = 214 ck3 = 215 ck3 = 384 ck3 = 385 ck3 = 387 ck3 = 388 ck3 = 390 ck3 = 391 ck3 = 400 ck3 = 424 ck3 = 425 ck3 = 426 ck3 = 442 ck3 = 443 ck3 = 444 ck3 = 445 ck3 = 446 ck3 = 447 ck3 = 448 ck3 = 449 ck3 = 450 ck3 = 650 ck3 = 651 ck3 = 8784 ck3 = 8785 ck3 = 8786 ck3 = 8788 ck3 = 174 ck3 = 191 ck3 = 192 ck3 = 193 ck3 = 196 ck3 = 195 ck3 = 198 ck3 = 5807 ck3 = 5808 ck3 = 218 ck3 = 16251 ck3 = 199 ck3 = 194 ck3 = 202 ck3 = 201 ck3 = 200 ck3 = 451 ck3 = 452 ck3 = 219 ck3 = 453 ck3 = 455 ck3 = 454 ck3 = 419 ck3 = 418 ck3 = 401 ck3 = 8789 ck3 = 402 ck3 = 404 ck3 = 403 ck3 = 935 ck3 = 3264 ck3 = 408 ck3 = 409 ck3 = 407 ck3 = 406 ck3 = 405 ck3 = 411 ck3 = 410 ck3 = 8792 ck3 = 8787 ck3 = 420 ck3 = 652 ck3 = 3262 ck3 = 8791 ck3 = 8790 ck3 = 417 ck3 = 416 ck3 = 415 ck3 = 413 ck3 = 412 ck3 = 414 } # Finland Impassable -> Laukaa, ULVILA, PIRKKALA, MIKKELI, SULKAVA, OLAVINLINNA, SUOPARSAARI, TOHMAJARVI, SYSMA, PAIJALA, VUOHIJARVI, MESSUKYLA, RUOVESI, MUSTASAARI, MERIKARVIA, LEVANLUHTA, SUONDAVARA, KITTAL, SUADIGIL, KEMIJAVRI, SOMBIO, AANAARJAVRI, PEACCAM, DUORTNUS, GIEPMA, IIJOKI, PEDERSORE, VETELI, OULU, LIMINKA, PUOLANKA, KONNEVESI, KEITELE, PIELINEN, KAJAANI, Iisalmi, Kuopio, Kangos, Roavvenjarga, Kuusama, Suenekele, SORTAVALA, KIDILA, SALINIS, AUNUS, SOUTJARVI, ONEGABORG, KONTUPOHJA, Povenets, Malenga, SOMA, Solovki, LIZMAJARVI, SEESJARVI, VATSELANJARVI, SUOJARVI, TOVAJARVI, NUOKKIJARVI, TUNGUT, KEM, KUUSEMA, TIIKSJARVI, KOUTAJOKI, KITKA, KOULAJARVI, SUONNJEL, Skolt, MUETKK, KIILT, NUOTTJAURR, KOLA IMPASSIBLE TERRAIN, KOLA IMPASSIBLE TERRAIN, SAARVESJAURR, AKKEL, CUKKSUAL, MASELK, KOARDEGK, LEJJAVVR, LUJAVVR, Cascarena, Kaddlhutt, MAANSELKA, FINNISH IMPASSABLE 4, FINNISH IMPASSIBLE TERRAIN 1, Varsiga, Peliza, SOSNEVKE, PENNE, JOVVKUJ, GUODDEMJAVVR, ARSJOGK, KINTUS link = { autogenerated = yes imp = 5329 ck3 = 15965 ck3 = 16005 ck3 = 8541 ck3 = 8543 ck3 = 9520 ck3 = 9536 ck3 = 9540 ck3 = 9541 ck3 = 9549 } # Central Asian Impassable -> 15965, 16005, GOBI DESERT, GOBI DESERT, Yabulai, Dingyuanying, Zhongcun, Wuliji, Tamusubulage + link = { autogenerated = yes imp = 5324 ck3 = 15929 ck3 = 16219 ck3 = 16221 ck3 = 5752 } # IP 325 -> Caucasus Mountains, Kudaro, Caucasus Mountains, Kasriskari + link = { autogenerated = yes imp = 5326 ck3 = 15891 ck3 = 15893 ck3 = 15895 ck3 = 15896 ck3 = 15898 ck3 = 15905 ck3 = 15909 ck3 = 15911 ck3 = 15916 ck3 = 15917 ck3 = 15919 ck3 = 15920 ck3 = 15922 ck3 = 15928 ck3 = 15934 ck3 = 15944 ck3 = 675 } # IP 327 -> 15891, 15893, 15895, 15896, 15898, 15905, 15909, 15911, 15916, 15917, 15919, 15920, 15922, 15928, 15934, 15944, Kumukh + link = { autogenerated = yes imp = 5325 ck3 = 15890 ck3 = 15892 ck3 = 15910 ck3 = 15923 ck3 = 15926 ck3 = 15931 ck3 = 5763 } # IP 326 -> Mountains, 15892, 15910, 15923, 15926, Mountains, Nektesi + link = { autogenerated = yes imp = 5206 imp = 5205 ck3 = 15886 } # IMPASSIBLE TERRAIN 206, IMPASSIBLE TERRAIN 205 -> 15886 + link = { autogenerated = yes imp = 5203 imp = 1700 imp = 5204 ck3 = 15883 } # IMPASSIBLE TERRAIN 203, Zekari Pass, IMPASSIBLE TERRAIN 204 -> Mountains + link = { autogenerated = yes imp = 5200 ck3 = 15859 } # IMPASSIBLE TERRAIN 200 -> 15859 + link = { autogenerated = yes imp = 5327 ck3 = 15836 ck3 = 15844 ck3 = 15848 ck3 = 15855 ck3 = 15860 ck3 = 15865 ck3 = 15869 ck3 = 15872 ck3 = 15876 ck3 = 15881 ck3 = 15884 ck3 = 15888 ck3 = 5515 } # IP 328 -> Mountains, 15844, 15848, 15855, 15860, 15865, 15869, 15872, 15876, 15881, 15884, 15888, Caucasus Mountains + link = { autogenerated = yes imp = 5196 ck3 = 15790 } # IMPASSIBLE TERRAIN 196 -> 15790 + link = { autogenerated = yes imp = 5209 ck3 = 15787 } # IMPASSIBLE TERRAIN 209 -> Mountains + link = { autogenerated = yes imp = 5192 ck3 = 15784 } # IMPASSIBLE TERRAIN 192 -> Mountains + link = { autogenerated = yes imp = 5194 ck3 = 15741 ck3 = 5713 } # IMPASSIBLE TERRAIN 194 -> 15741, Mardali + link = { autogenerated = yes imp = 5217 ck3 = 15678 } # IMPASSIBLE TERRAIN 217 -> 15678 + link = { autogenerated = yes imp = 5225 ck3 = 15670 } # IMPASSIBLE TERRAIN 225 -> 15670 + link = { autogenerated = yes imp = 5219 ck3 = 15652 } # IMPASSIBLE TERRAIN 219 -> Mountains + link = { autogenerated = yes imp = 5322 ck3 = 15592 ck3 = 8557 } # IP 323 -> 15592, CAUCASUS MOUNTAINS + link = { autogenerated = yes imp = 5323 ck3 = 15568 ck3 = 15940 ck3 = 15948 ck3 = 15952 ck3 = 15953 ck3 = 16223 } # IP 324 -> Caucasus Mountains, Caucasus Mountains, 15948, 15952, 15953, Elbrus link = { autogenerated = yes imp = 5882 ck3 = 1489 ck3 = 7077 ck3 = 7080 } # UNINHABITABLE -> Ustyurt Plateau, Fort Novoaleksandrovkiy, Karasye link = { autogenerated = yes imp = 5256 ck3 = 1471 } # IMPASSIBLE TERRAIN 256 -> PERSIAN IMPASSABLE TERRAIN link = { autogenerated = yes imp = 5253 imp = 5251 ck3 = 1437 } # IMPASSIBLE TERRAIN 254, IMPASSIBLE TERRAIN 251 -> PERSIAN IMPASSABLE TERRAIN link = { autogenerated = yes imp = 5231 ck3 = 1436 } # IMPASSIBLE TERRAIN 231 -> AZERBAIJAN MOUNTAINS link = { autogenerated = yes imp = 5230 ck3 = 1429 ck3 = 4766 ck3 = 4768 } # IMPASSIBLE TERRAIN 230 -> AZERBAIJAN MOUNTAINS, BARZA, DARBAND QARABULI link = { autogenerated = yes imp = 5224 ck3 = 1428 } # IMPASSIBLE TERRAIN 224 -> AZERBAIJAN MOUNTAINS - link = { imp = 5222 ck3 = 1417 ck3 = 4815 } # IMPASSIBLE TERRAIN 222 -> AZERBAIJAN MOUNTAINS, HAKKARI + link = { autogenerated = yes imp = 5222 ck3 = 1417 } # IMPASSIBLE TERRAIN 222 -> AZERBAIJAN MOUNTAINS link = { autogenerated = yes imp = 9605 ck3 = 14035 } # Impassable -> 14035 link = { autogenerated = yes imp = 9603 ck3 = 14029 } # Impassable -> 14029 - link = { imp = 5282 ck3 = 14012 ck3 = 14014 ck3 = 2539 ck3 = 7150 } # IMPASSIBLE TERRAIN 282 -> Mountains, Mountains, TIANSHAN, Bagish + link = { autogenerated = yes imp = 5282 ck3 = 14012 ck3 = 14014 ck3 = 2539 } # IMPASSIBLE TERRAIN 282 -> Mountains, Mountains, TIANSHAN link = { autogenerated = yes imp = 11552 ck3 = 14011 } # Impassable -> Mountains link = { autogenerated = yes imp = 5281 imp = 5280 imp = 6785 imp = 6789 ck3 = 14010 } # IMPASSIBLE TERRAIN 281, IMPASSIBLE TERRAIN 280, Shelji, Uskat -> Mountains link = { autogenerated = yes imp = 8110 ck3 = 14009 } # Mountains -> Mountains link = { autogenerated = yes imp = 9509 imp = 12882 ck3 = 14007 } # Impassable, Gobi Mountains -> Mountains - link = { imp = 12881 ck3 = 14006 } # Gobi -> Mountains + link = { imp = 12725 ck3 = 12758 } # Yilig -> Ulabayan link = { autogenerated = yes imp = 8117 ck3 = 14001 } # Mongolia Mountain -> Mountains link = { autogenerated = yes imp = 9510 ck3 = 14000 ck3 = 1408 ck3 = 7595 } # Impassable -> Mountains, Anxi, Andri-Anqa link = { autogenerated = yes imp = 8115 ck3 = 13999 } # Mongolia Mountain -> Mountains + link = { autogenerated = yes imp = 5967 ck3 = 13992 ck3 = 2486 ck3 = 7205 ck3 = 7206 } # More Steppe Impassable -> Mountains, TIANSHAN, Iren-Chabirga, Bayanbulak link = { autogenerated = yes imp = 9771 ck3 = 13991 } # Impassable -> Mountains link = { autogenerated = yes imp = 12668 ck3 = 13990 } # Impassable -> Mountains link = { autogenerated = yes imp = 9769 ck3 = 13985 } # Impassable -> Mountains link = { autogenerated = yes imp = 9441 ck3 = 13984 } # Qumanshan -> Mountains link = { autogenerated = yes imp = 9300 ck3 = 13917 ck3 = 7987 ck3 = 9621 } # Impassable -> Chonghassar, Wupu, Western Gobi - link = { autogenerated = yes imp = 12723 ck3 = 13806 } # Tuman -> 13806 - link = { autogenerated = yes imp = 5997 ck3 = 1380 } # Antilibanus Mons -> SYRIAN IMPASSABLE link = { autogenerated = yes imp = 768 ck3 = 1379 } # Libanus Mons - Yammune -> SYRIAN IMPASSABLE link = { autogenerated = yes imp = 5228 imp = 5229 ck3 = 1373 } # IMPASSIBLE TERRAIN 228, IMPASSIBLE TERRAIN 229 -> SYRIAN DESERT - link = { imp = 5379 ck3 = 13690 ck3 = 13707 ck3 = 7993 } # IP 380 -> Magalek, Lancheng, Chelik + link = { autogenerated = yes imp = 5379 ck3 = 13690 ck3 = 7993 } # IP 380 -> Magalek, Chelik + link = { autogenerated = yes imp = 9386 ck3 = 13688 } # Impassable -> 13688 link = { autogenerated = yes imp = 9383 ck3 = 13585 } # Impassable -> 13585 - link = { imp = 9775 ck3 = 13559 ck3 = 13560 ck3 = 7684 ck3 = 13628 } # Impassable -> Nuomin, Kuleqi, Arun, Dabai + link = { autogenerated = yes imp = 9775 ck3 = 13559 ck3 = 13560 } # Impassable -> Nuomin, Kuleqi link = { autogenerated = yes imp = 9772 ck3 = 13539 } # Impassable -> Ukyr link = { autogenerated = yes imp = 5358 ck3 = 1350 ck3 = 3478 } # IP 359 -> Reni, Ladnu link = { autogenerated = yes imp = 9380 ck3 = 13470 } # Impassable -> Etrof link = { autogenerated = yes imp = 5376 imp = 5377 ck3 = 1347 } # IP 377, IP 378 -> TAKLAMAKAN DESERT link = { autogenerated = yes imp = 5295 ck3 = 1344 } # IMPASSIBLE TERRAIN 295 -> SYRIAN DESERT link = { autogenerated = yes imp = 5973 ck3 = 1335 } # Impassable -> AD-DAHNA DESERT + link = { autogenerated = yes imp = 5336 ck3 = 1334 ck3 = 8333 ck3 = 8334 ck3 = 8335 } # IP 337 -> DANAKIL_HILLS, RAGALI, AMARTA, AFERA link = { autogenerated = yes imp = 9473 ck3 = 13307 ck3 = 13997 ck3 = 7478 ck3 = 7480 ck3 = 7503 ck3 = 7504 } # Impassable -> Munkh Bulgan, Mountains, Turkut, Qinggil, Sugi, Kabtag link = { autogenerated = yes imp = 5939 ck3 = 1330 ck3 = 6206 ck3 = 6214 ck3 = 6215 ck3 = 6228 ck3 = 6229 ck3 = 6230 ck3 = 6257 ck3 = 6263 ck3 = 6265 ck3 = 6266 ck3 = 6267 } # Arabian Impassable -> JIBAL-AL-HIJAZI, HAJIR, RABADHA, MADIN-AN-NAQIRA, MARRAN, AD-DATHINA, SUBAY, NUFUD-AS-SURRAH, RAMA, DARIYA, JADILA, FALJA - link = { imp = 9765 ck3 = 13279 ck3 = 13288 ck3 = 13316 } # Impassable -> 13279, 13288, 13316 link = { autogenerated = yes imp = 5290 ck3 = 1326 } # IMPASSIBLE TERRAIN 290 -> JIBAL-AL-HIJAZI link = { autogenerated = yes imp = 5155 ck3 = 1322 } # IMPASSIBLE TERRAIN 155 -> SINAI DESERT link = { autogenerated = yes imp = 5288 ck3 = 1320 } # IMPASSIBLE TERRAIN 288 -> SINAI DESERT link = { autogenerated = yes imp = 5356 ck3 = 1304 ck3 = 3387 ck3 = 3389 } # IP 357 -> Ludrava, Jaisalmer, Juna_Barmer - link = { autogenerated = yes imp = 8949 ck3 = 13010 } # Impassable -> 13010 link = { autogenerated = yes imp = 5369 ck3 = 1296 } # IP 370 -> Dimapur link = { autogenerated = yes imp = 9186 ck3 = 12927 ck3 = 12931 } # Impassable -> Longshui_Wenquan, Bama + link = { autogenerated = yes imp = 8080 ck3 = 1280 } # Desert -> EASTERN DESERT link = { autogenerated = yes imp = 8365 ck3 = 12755 } # Impassable -> Luhun - link = { autogenerated = yes imp = 5967 ck3 = 12749 ck3 = 13992 ck3 = 2486 ck3 = 7205 ck3 = 7206 } # More Steppe Impassable -> 12749, Mountains, TIANSHAN, Iren-Chabirga, Bayanbulak link = { autogenerated = yes imp = 8836 ck3 = 12714 } # Impassable -> Ziwugudao1 - link = { autogenerated = yes imp = 8849 ck3 = 12578 } # Impassable -> Jizhou_Nanjiang link = { autogenerated = yes imp = 9532 ck3 = 12521 } # Impassable -> YikunzhouGuangyi + link = { imp = 12726 imp = 12730 imp = 12728 imp = 12729 imp = 9382 imp = 12881 imp = 9387 imp = 12727 ck3 = 14006 } # Yalil, Urak, Sogik, Yaguk, Impassable, Gobi, Impassable, Urunak -> Mountains link = { autogenerated = yes imp = 9381 ck3 = 12515 ck3 = 12660 ck3 = 13592 } # Impassable -> (Unknown), Lanrhaelun, 13592 link = { autogenerated = yes imp = 8989 ck3 = 12476 } # Impassable -> Zigui - link = { autogenerated = yes imp = 9387 imp = 9382 ck3 = 12472 } # Impassable, Impassable -> Erenda Busanor link = { autogenerated = yes imp = 6354 ck3 = 12451 ck3 = 7636 } # Northern Impassable -> Mountains, Sutkhol link = { autogenerated = yes imp = 9220 ck3 = 12436 } # Impassable -> (Unknown) link = { autogenerated = yes imp = 8851 ck3 = 12361 } # Impassable -> Liangshan_Dianjiang link = { autogenerated = yes imp = 5378 imp = 5665 ck3 = 12349 } # IP 379, PASS -> Oriauturs link = { autogenerated = yes imp = 8990 ck3 = 12324 ck3 = 12330 } # Impassable -> Enshi_Qingjiang, Lichuan - link = { imp = 9014 ck3 = 12242 ck3 = 12309 ck3 = 13021 } # Impassable -> Laifeng_Xianfeng, Hefeng, 13021 + link = { autogenerated = yes imp = 9014 ck3 = 12242 ck3 = 12309 } # Impassable -> Laifeng_Xianfeng, Hefeng + link = { autogenerated = yes imp = 8853 ck3 = 12204 ck3 = 12216 } # Impassable -> Nanchuan_Sanxi, Binhua link = { autogenerated = yes imp = 9400 ck3 = 12190 } # Impassable -> (Unknown) link = { autogenerated = yes imp = 8894 ck3 = 12147 ck3 = 12178 ck3 = 13022 } # Impassable -> Zhenzhou_Ligao, Rongyi_Fuhuan_Qinzhou, 13022 - link = { autogenerated = yes imp = 8853 ck3 = 12135 ck3 = 12204 ck3 = 12216 } # Impassable -> Yelang_Leyuan, Nanchuan_Sanxi, Binhua - link = { imp = 5975 ck3 = 12057 ck3 = 12455 ck3 = 12527 ck3 = 12575 ck3 = 12686 ck3 = 13766 ck3 = 13801 ck3 = 13814 ck3 = 13817 ck3 = 13833 ck3 = 13836 ck3 = 13840 ck3 = 16008 ck3 = 16009 ck3 = 16011 ck3 = 16012 ck3 = 16015 ck3 = 16018 ck3 = 16021 ck3 = 16023 ck3 = 16025 ck3 = 16026 ck3 = 16030 ck3 = 16031 ck3 = 16032 ck3 = 16033 ck3 = 16035 ck3 = 16036 ck3 = 16040 ck3 = 16045 ck3 = 16046 ck3 = 16047 ck3 = 16051 ck3 = 16054 ck3 = 16056 ck3 = 16059 ck3 = 16061 ck3 = 16062 ck3 = 16063 ck3 = 16066 ck3 = 16070 ck3 = 16071 ck3 = 16075 ck3 = 16077 ck3 = 16079 ck3 = 16080 ck3 = 16084 ck3 = 16086 ck3 = 16089 ck3 = 16091 ck3 = 16096 ck3 = 16097 ck3 = 16101 ck3 = 16106 ck3 = 16108 ck3 = 7687 ck3 = 16042 ck3 = 7686 ck3 = 7443 ck3 = 7442 ck3 = 7450 ck3 = 7448 ck3 = 7449 ck3 = 13758 ck3 = 7451 ck3 = 7738 ck3 = 7735 ck3 = 7643 ck3 = 1462 ck3 = 7736 ck3 = 7648 ck3 = 7649 ck3 = 7655 ck3 = 7755 ck3 = 7740 ck3 = 7739 ck3 = 7741 ck3 = 13642 ck3 = 15969 ck3 = 15971 ck3 = 16093 ck3 = 16102 ck3 = 16085 ck3 = 7680 ck3 = 7682 ck3 = 7672 ck3 = 7671 ck3 = 7750 ck3 = 7748 ck3 = 7743 ck3 = 7747 ck3 = 13612 ck3 = 7742 ck3 = 7737 ck3 = 7654 ck3 = 7745 ck3 = 7744 ck3 = 15984 ck3 = 15998 ck3 = 16007 ck3 = 16002 ck3 = 15983 ck3 = 16099 ck3 = 16083 ck3 = 16072 ck3 = 16087 ck3 = 16100 ck3 = 16104 ck3 = 15982 ck3 = 15981 ck3 = 15997 ck3 = 16003 ck3 = 16004 ck3 = 16001 ck3 = 15977 ck3 = 15976 ck3 = 15975 ck3 = 15972 ck3 = 16098 ck3 = 16081 ck3 = 16067 ck3 = 16073 ck3 = 16058 ck3 = 16052 ck3 = 16064 ck3 = 16057 ck3 = 16069 ck3 = 16078 ck3 = 16076 ck3 = 16068 ck3 = 16074 ck3 = 16082 ck3 = 16094 ck3 = 16107 ck3 = 16088 ck3 = 16092 ck3 = 16095 ck3 = 16105 ck3 = 15979 ck3 = 15978 ck3 = 16110 ck3 = 15980 ck3 = 15996 ck3 = 13873 ck3 = 13541 ck3 = 13950 ck3 = 13545 ck3 = 13975 ck3 = 15994 ck3 = 15999 ck3 = 15992 ck3 = 15993 ck3 = 16000 ck3 = 15991 ck3 = 16109 ck3 = 16090 ck3 = 16103 ck3 = 15987 ck3 = 15995 ck3 = 15990 ck3 = 15989 ck3 = 15985 ck3 = 15986 } # Eurasian Northlands -> Bayan Oovo, Argun, Kharkira, Kaktolga, Silkar, Zeerentei, Batakan, Delyun, 13817, 13833, Uryum, Davenda, 16008, 16009, 16011, 16012, 16015, 16018, 16021, 16023, 16025, 16026, 16030, 16031, 16032, 16033, 16035, 16036, 16040, 16045, 16046, 16047, 16051, 16054, 16056, 16059, 16061, 16062, 16063, 16066, 16070, 16071, 16075, 16077, 16079, 16080, 16084, 16086, 16089, 16091, 16096, 16097, 16101, 16106, 16108, Setgel Uul, 16042, Urik, Bogotul, Shurysh, Yahtin, Sochur, Yenisei, Abalak, Belska, Entaul, Ului, Balakhta, Qom-Tigey, Kyzyl-Char, Kiyai, Khabaidak, Uyar, Zoazerny, Permya, Pey, Tamta, Polinshet, 15969, 15971, 16093, 16102, 16085, Iya_TUV, Shityy, Ikh Orgil, Miirchun, Yaga, Akulshet, Chershet, Tumanshet, 13612, Kansk, Kyzyl-Kan, Anja_TUV, Agul, Tagul, 15984, 15998, 16007, 16002, 15983, 16099, 16083, 16072, 16087, 16100, 16104, 15982, 15981, 15997, 16003, 16004, 16001, 15977, 15976, 15975, 15972, 16098, 16081, 16067, 16073, 16058, 16052, 16064, 16057, 16069, 16078, 16076, 16068, 16074, 16082, 16094, 16107, 16088, 16092, 16095, 16105, 15979, 15978, 16110, 15980, 15996, Urusha, 13541, Urkima, Yuktali, Amnunna, 15994, 15999, 15992, 15993, 16000, 15991, 16109, 16090, 16103, 15987, 15995, 15990, 15989, 15985, 15986 - link = { imp = 5981 ck3 = 5156 ck3 = 5157 ck3 = 5250 ck3 = 5251 ck3 = 5252 ck3 = 5455 ck3 = 5456 ck3 = 5457 ck3 = 5461 ck3 = 5462 ck3 = 5516 ck3 = 5518 ck3 = 5798 ck3 = 5799 ck3 = 5800 ck3 = 5801 ck3 = 5802 ck3 = 5803 ck3 = 5804 ck3 = 5805 ck3 = 5806 ck3 = 5807 ck3 = 5808 ck3 = 5809 ck3 = 5810 ck3 = 5811 ck3 = 5812 ck3 = 5813 ck3 = 5814 ck3 = 5815 ck3 = 5816 ck3 = 5817 ck3 = 5818 ck3 = 5819 ck3 = 5820 ck3 = 5821 ck3 = 5822 ck3 = 5823 ck3 = 5824 ck3 = 5825 ck3 = 5826 ck3 = 5827 ck3 = 5828 ck3 = 5829 ck3 = 5830 ck3 = 5831 ck3 = 5832 ck3 = 5833 ck3 = 5834 ck3 = 5835 ck3 = 5836 ck3 = 5837 ck3 = 5838 ck3 = 5839 ck3 = 5840 ck3 = 5841 ck3 = 5842 ck3 = 5843 ck3 = 5844 ck3 = 5845 ck3 = 5846 ck3 = 5847 ck3 = 5848 ck3 = 5849 ck3 = 5850 ck3 = 5851 ck3 = 5852 ck3 = 5853 ck3 = 5859 ck3 = 586 ck3 = 5860 ck3 = 5862 ck3 = 5865 ck3 = 5866 ck3 = 5867 ck3 = 5868 ck3 = 5869 ck3 = 5870 ck3 = 5871 ck3 = 5872 ck3 = 5873 ck3 = 5874 ck3 = 5875 ck3 = 5876 ck3 = 5877 ck3 = 5878 ck3 = 5879 ck3 = 5880 ck3 = 5881 ck3 = 5896 ck3 = 5897 ck3 = 5898 ck3 = 5899 ck3 = 612 ck3 = 7000 ck3 = 7001 ck3 = 7002 ck3 = 7003 ck3 = 7004 ck3 = 7005 ck3 = 7006 ck3 = 7007 ck3 = 7008 ck3 = 7009 ck3 = 7010 ck3 = 7011 ck3 = 7015 ck3 = 7016 ck3 = 7027 ck3 = 7028 ck3 = 7029 ck3 = 7055 ck3 = 7360 ck3 = 7361 ck3 = 7362 ck3 = 7363 ck3 = 7364 ck3 = 7365 ck3 = 7366 ck3 = 7367 ck3 = 7368 ck3 = 7369 ck3 = 7370 ck3 = 7371 ck3 = 7372 ck3 = 7375 ck3 = 7452 ck3 = 7453 ck3 = 8703 ck3 = 887 ck3 = 888 ck3 = 890 ck3 = 892 ck3 = 893 ck3 = 898 ck3 = 7436 ck3 = 7437 ck3 = 7441 ck3 = 7440 ck3 = 7447 ck3 = 7445 ck3 = 7438 ck3 = 7439 ck3 = 7446 ck3 = 7444 ck3 = 7432 ck3 = 7433 ck3 = 1463 ck3 = 7377 ck3 = 7376 ck3 = 7431 ck3 = 1329 ck3 = 1205 } # Russian Impassable -> Beloozero, Cherepovets, Manturovo, Kostroma, Chukhloma, Kerken, Shimal, Akchim, Palniki, Lolog, Northern Urals, Northern Urals, Kholmogory, Arkhangelsk, Brin Navolok, Pertominsk, Lopshenga, Onega, Pole, Korelskoye, Malashuyka, Povenets, Malenga, Yangary, Kustranda, Pudozh, Vershinino, Yarnema, Kargopol, Vitzgora, Ostrov_BJA, Kirillov, Dvinitza, Pelsina, Totma, Tasta, Tischna, Kadnikov, Vologda, Sheksna, Gryazovets, Danilov, Vyatskoye, Lyubim, Razlivnoye, Soligalich, Onsthia, Karitsa, Suday, Choklema, Gorodek, Boborossa, Veliky Ustyug, Nyuksenitsa, Kotlas, Usyorga, Shenkursk, Krasny Bor, Bereznik, Velsk, Verkhovazhye, Ous Vaga, Yemetsk, Kevrola, Verkola, Osmova, Velsk wasteland, Ustyug wasteland, Sosvan wasteland, Galich Mersky, Samoyed wasteland, Tara wasteland, Sukhorukova, Belogorye, Kari Pospat Vosh, Arant, Kandiskaya, Kartauzh, Pelym, Sosva, Totkarak, Koshuki, Alymka, Chalbych, Chukas Vosh, Topar Vosh, Neramkary, Verkhoturye, Tura Kala, Yugan, Nizyani, Atlym, Karymkary, Kai, Demiianka, Bardak, Koshley Vosh, Uluskate, Liniek, Selinga, Sibir, Berisiy, Asmaak, Yorgaet, Vagaiskoy, Kulema, Dolgujar, Ust-Ishim, Omgul, Zavialova, Vikulova, Ishim wasteland, Chich, Olyn, Kargalin, Tartas_SIB, Gulyus, Om, Sayak, Umiai, Vasyugan, Yugar, Chergana, Yonoir, Parabel, Igaran, Vasyugan Mire N, Vasyugan Mire S, NORTHERN URALS, Kharom-Vosh, Kargadan, Khanty-Mansiisk, Tselym-Balyn, Surgut, Tobol, Taskyl, Tisul, Biriku, Chet, Jorugul, Keljiga, Kitat, Chulym_bis, Yutur, Tym, Kiia, Yaia, Erchis, Chegarka, Iau, Salim, Ket, Narim - link = { imp = 9302 imp = 8583 imp = 8584 imp = 8598 imp = 8599 imp = 8612 ck3 = 12008 } # Impassable, Gaowang, Zhenlin, Dacheng, Humeng, Xiudou -> (Unknown) - link = { imp = 9385 ck3 = 11865 ck3 = 12014 ck3 = 12060 ck3 = 12431 ck3 = 13574 ck3 = 13576 ck3 = 13577 ck3 = 13645 ck3 = 13685 ck3 = 13729 ck3 = 13737 ck3 = 13792 ck3 = 13874 ck3 = 13898 ck3 = 13920 ck3 = 13711 ck3 = 13739 ck3 = 13826 ck3 = 13858 ck3 = 13821 ck3 = 13827 ck3 = 13813 ck3 = 13733 } # Impassable -> Ganukan, Londoko, Yarsa_Zhudun, Tugar, Tarakelok, Talanja, 13577, Sulak, Kharpichan, Kondon, Evoron, Nilankan, Mago, Chiya, Shantar, Amgun, Duki, 13826, Burukan, Niemlin, Upagda, Briakan, 13733 - link = { imp = 9773 ck3 = 11861 ck3 = 11958 ck3 = 12001 ck3 = 12529 ck3 = 12576 ck3 = 12580 ck3 = 13351 ck3 = 13564 ck3 = 13565 ck3 = 13568 ck3 = 13569 ck3 = 13571 ck3 = 13572 ck3 = 13573 ck3 = 13615 ck3 = 13624 ck3 = 13626 ck3 = 13638 ck3 = 13649 ck3 = 13651 ck3 = 13664 ck3 = 13684 ck3 = 13701 ck3 = 13714 ck3 = 13727 ck3 = 13734 ck3 = 13735 ck3 = 13750 ck3 = 13760 ck3 = 13780 ck3 = 13794 ck3 = 13796 ck3 = 13823 ck3 = 13849 ck3 = 7472 ck3 = 7496 ck3 = 7733 ck3 = 7970 ck3 = 13652 ck3 = 13689 ck3 = 13736 ck3 = 13665 ck3 = 13693 ck3 = 13774 ck3 = 13816 ck3 = 13843 ck3 = 13844 ck3 = 13881 ck3 = 13906 ck3 = 12511 ck3 = 13875 ck3 = 13923 ck3 = 13933 ck3 = 13961 ck3 = 13546 ck3 = 13899 ck3 = 12669 ck3 = 13866 ck3 = 13892 ck3 = 13926 ck3 = 13916 ck3 = 13900 ck3 = 13850 ck3 = 13829 ck3 = 13795 ck3 = 13764 ck3 = 13837 ck3 = 13787 ck3 = 13790 ck3 = 13828 ck3 = 13861 ck3 = 13884 ck3 = 13869 ck3 = 13825 ck3 = 12325 } # Impassable -> Minganlun, Bei'an, Wuweiyujue, Yichun, Beiji, Tymersol, 13351, Kekelei, Hormojin, Urtui, Tyukan, Dulust, Tarmanchukan, Budukan, Aigun, Doldykan, Dobkar, Amaranka, Arga, Dahur, Narasun, Briyami, Ergel, Kumar, 13727, Saskal, Bardag, Enzaishe, Hinggan, Huzhong, Sivaki, Dalin, Suka, Albaasin, Kundur, Ulan Chuzir, Erekte, Khaltan, Urgal, Adnikan, Etyrken, Chekunda, Taburach, Isa, Ogods, 13843, 13844, Chumikan, Neran, Holuhotom, Bolodek, Bomnaah, Tutaul, 13961, Kuvykta, Takhtam, Oldo, Magdagachi, Urkan, 13926, Dipkun, Dambuki, Dugda, 13829, Niru, Ebaykan, Soktahan, Ayak, 13790, Umlekan, Ulagach, Tukringa, Dakte, Ushumun, Tygda + link = { autogenerated = yes imp = 5975 ck3 = 12057 ck3 = 12455 ck3 = 12527 ck3 = 12575 ck3 = 12686 ck3 = 13766 ck3 = 13801 ck3 = 13814 ck3 = 13817 ck3 = 13833 ck3 = 13836 ck3 = 13840 ck3 = 16008 ck3 = 16009 ck3 = 16011 ck3 = 16012 ck3 = 16015 ck3 = 16018 ck3 = 16021 ck3 = 16023 ck3 = 16025 ck3 = 16026 ck3 = 16030 ck3 = 16031 ck3 = 16032 ck3 = 16033 ck3 = 16035 ck3 = 16036 ck3 = 16040 ck3 = 16045 ck3 = 16046 ck3 = 16047 ck3 = 16051 ck3 = 16054 ck3 = 16056 ck3 = 16059 ck3 = 16061 ck3 = 16062 ck3 = 16063 ck3 = 16066 ck3 = 16070 ck3 = 16071 ck3 = 16075 ck3 = 16077 ck3 = 16079 ck3 = 16080 ck3 = 16084 ck3 = 16086 ck3 = 16089 ck3 = 16091 ck3 = 16096 ck3 = 16097 ck3 = 16101 ck3 = 16106 ck3 = 16108 ck3 = 15988 ck3 = 15985 ck3 = 15984 ck3 = 13541 ck3 = 13950 ck3 = 13545 ck3 = 13975 ck3 = 15994 ck3 = 15999 ck3 = 15993 ck3 = 15992 ck3 = 16000 ck3 = 15991 ck3 = 16109 ck3 = 15990 ck3 = 15989 ck3 = 16090 ck3 = 16103 ck3 = 15987 ck3 = 15995 ck3 = 15986 ck3 = 13527 } # Eurasian Northlands -> Bayan Oovo, Argun, Kharkira, Kaktolga, Silkar, Zeerentei, Batakan, Delyun, 13817, 13833, Uryum, Davenda, 16008, 16009, 16011, 16012, 16015, 16018, 16021, 16023, 16025, 16026, 16030, 16031, 16032, 16033, 16035, 16036, 16040, 16045, 16046, 16047, 16051, 16054, 16056, 16059, 16061, 16062, 16063, 16066, 16070, 16071, 16075, 16077, 16079, 16080, 16084, 16086, 16089, 16091, 16096, 16097, 16101, 16106, 16108, 15988, 15985, 15984, 13541, Urkima, Yuktali, Amnunna, 15994, 15999, 15993, 15992, 16000, 15991, 16109, 15990, 15989, 16090, 16103, 15987, 15995, 15986, Mountains + link = { autogenerated = yes imp = 5981 ck3 = 1205 ck3 = 1329 ck3 = 13612 ck3 = 13642 ck3 = 13758 ck3 = 13980 ck3 = 13983 ck3 = 13987 ck3 = 1462 ck3 = 1463 ck3 = 15969 ck3 = 15971 ck3 = 15972 ck3 = 15975 ck3 = 15976 ck3 = 15977 ck3 = 15978 ck3 = 15979 ck3 = 15980 ck3 = 15981 ck3 = 15982 ck3 = 15983 ck3 = 15996 ck3 = 15997 ck3 = 15998 ck3 = 16001 ck3 = 16002 ck3 = 16003 ck3 = 16004 ck3 = 16007 ck3 = 16042 ck3 = 16052 ck3 = 16057 ck3 = 16058 ck3 = 16064 ck3 = 16067 ck3 = 16068 ck3 = 16069 ck3 = 16073 ck3 = 16074 ck3 = 16076 ck3 = 16078 ck3 = 16081 ck3 = 16082 ck3 = 16083 ck3 = 16085 ck3 = 16087 ck3 = 16088 ck3 = 16092 ck3 = 16093 ck3 = 16094 ck3 = 16095 ck3 = 16098 ck3 = 16099 ck3 = 16100 ck3 = 16102 ck3 = 16104 ck3 = 16105 ck3 = 16107 ck3 = 16110 ck3 = 16115 ck3 = 16116 ck3 = 16117 ck3 = 16118 ck3 = 16119 ck3 = 16120 ck3 = 16121 ck3 = 16122 ck3 = 16123 ck3 = 16124 ck3 = 16125 ck3 = 16126 ck3 = 16127 ck3 = 16128 ck3 = 16129 ck3 = 16130 ck3 = 16131 ck3 = 16132 ck3 = 16133 ck3 = 16134 ck3 = 16135 ck3 = 16136 ck3 = 16137 ck3 = 16138 ck3 = 16139 ck3 = 16140 ck3 = 16141 ck3 = 16142 ck3 = 16143 ck3 = 16144 ck3 = 16145 ck3 = 16146 ck3 = 16147 ck3 = 16148 ck3 = 16149 ck3 = 16150 ck3 = 16151 ck3 = 16152 ck3 = 16153 ck3 = 16154 ck3 = 16155 ck3 = 16156 ck3 = 16157 ck3 = 16158 ck3 = 16159 ck3 = 16160 ck3 = 16161 ck3 = 16162 ck3 = 16163 ck3 = 16164 ck3 = 16165 ck3 = 16166 ck3 = 16167 ck3 = 16168 ck3 = 16169 ck3 = 16170 ck3 = 16171 ck3 = 16172 ck3 = 16173 ck3 = 16174 ck3 = 16175 ck3 = 16176 ck3 = 16177 ck3 = 16178 ck3 = 16179 ck3 = 16180 ck3 = 16181 ck3 = 16182 ck3 = 16185 ck3 = 16186 ck3 = 16187 ck3 = 16188 ck3 = 16189 ck3 = 16190 ck3 = 16191 ck3 = 16192 ck3 = 16193 ck3 = 16199 ck3 = 16200 ck3 = 16204 ck3 = 16205 ck3 = 16206 ck3 = 16207 ck3 = 16211 ck3 = 16233 ck3 = 16234 ck3 = 16235 ck3 = 16236 ck3 = 16237 ck3 = 16238 ck3 = 16239 ck3 = 16240 ck3 = 16241 ck3 = 16242 ck3 = 16243 ck3 = 16244 ck3 = 16245 ck3 = 16246 ck3 = 16247 ck3 = 16248 ck3 = 16249 ck3 = 16250 ck3 = 16252 ck3 = 16253 ck3 = 16261 ck3 = 16276 ck3 = 16277 ck3 = 16278 ck3 = 16312 ck3 = 16313 ck3 = 16314 ck3 = 5156 ck3 = 5157 ck3 = 5159 ck3 = 5160 ck3 = 5251 ck3 = 5252 ck3 = 5453 ck3 = 5455 ck3 = 5456 ck3 = 5457 ck3 = 5461 ck3 = 5462 ck3 = 5512 ck3 = 5516 ck3 = 5518 ck3 = 5798 ck3 = 5799 ck3 = 5800 ck3 = 5801 ck3 = 5802 ck3 = 5803 ck3 = 5804 ck3 = 5805 ck3 = 5806 ck3 = 5809 ck3 = 5810 ck3 = 5811 ck3 = 5812 ck3 = 5813 ck3 = 5814 ck3 = 5815 ck3 = 5816 ck3 = 5817 ck3 = 5818 ck3 = 5819 ck3 = 5820 ck3 = 5821 ck3 = 5822 ck3 = 5823 ck3 = 5824 ck3 = 5825 ck3 = 5826 ck3 = 5827 ck3 = 5828 ck3 = 5829 ck3 = 5830 ck3 = 5831 ck3 = 5832 ck3 = 5833 ck3 = 5834 ck3 = 5835 ck3 = 5836 ck3 = 5837 ck3 = 5838 ck3 = 5839 ck3 = 5840 ck3 = 5841 ck3 = 5842 ck3 = 5843 ck3 = 5844 ck3 = 5845 ck3 = 5846 ck3 = 5847 ck3 = 5848 ck3 = 5849 ck3 = 5850 ck3 = 5851 ck3 = 5852 ck3 = 5853 ck3 = 5859 ck3 = 586 ck3 = 5860 ck3 = 5862 ck3 = 5865 ck3 = 5866 ck3 = 5867 ck3 = 5868 ck3 = 5869 ck3 = 5870 ck3 = 5871 ck3 = 5872 ck3 = 5873 ck3 = 5874 ck3 = 5875 ck3 = 5876 ck3 = 5877 ck3 = 5878 ck3 = 5879 ck3 = 5880 ck3 = 5881 ck3 = 5896 ck3 = 5897 ck3 = 5898 ck3 = 5899 ck3 = 612 ck3 = 7000 ck3 = 7001 ck3 = 7002 ck3 = 7003 ck3 = 7004 ck3 = 7005 ck3 = 7006 ck3 = 7007 ck3 = 7008 ck3 = 7009 ck3 = 7010 ck3 = 7011 ck3 = 7015 ck3 = 7016 ck3 = 7027 ck3 = 7028 ck3 = 7029 ck3 = 7055 ck3 = 7162 ck3 = 7360 ck3 = 7361 ck3 = 7362 ck3 = 7363 ck3 = 7364 ck3 = 7365 ck3 = 7366 ck3 = 7367 ck3 = 7368 ck3 = 7369 ck3 = 7370 ck3 = 7371 ck3 = 7372 ck3 = 7375 ck3 = 7376 ck3 = 7377 ck3 = 7431 ck3 = 7432 ck3 = 7433 ck3 = 7436 ck3 = 7437 ck3 = 7438 ck3 = 7439 ck3 = 7440 ck3 = 7441 ck3 = 7442 ck3 = 7443 ck3 = 7444 ck3 = 7445 ck3 = 7446 ck3 = 7447 ck3 = 7448 ck3 = 7449 ck3 = 7450 ck3 = 7451 ck3 = 7452 ck3 = 7453 ck3 = 7643 ck3 = 7648 ck3 = 7649 ck3 = 7654 ck3 = 7655 ck3 = 7656 ck3 = 7671 ck3 = 7672 ck3 = 7674 ck3 = 7680 ck3 = 7682 ck3 = 7686 ck3 = 7687 ck3 = 7735 ck3 = 7736 ck3 = 7737 ck3 = 7738 ck3 = 7739 ck3 = 7740 ck3 = 7741 ck3 = 7742 ck3 = 7743 ck3 = 7744 ck3 = 7745 ck3 = 7747 ck3 = 7748 ck3 = 7750 ck3 = 7755 ck3 = 8703 ck3 = 887 ck3 = 888 ck3 = 890 ck3 = 892 ck3 = 893 ck3 = 898 } # Russian Impassable -> Narim, Ket, 13612, Polinshet, Abalak, Mountains, Mountains, Mountains, Qom-Tigey, Erchis, 15969, 15971, 15972, 15975, 15976, 15977, 15978, 15979, 15980, 15981, 15982, 15983, 15996, 15997, 15998, 16001, 16002, 16003, 16004, 16007, 16042, 16052, 16057, 16058, 16064, 16067, 16068, 16069, 16073, 16074, 16076, 16078, 16081, 16082, 16083, 16085, 16087, 16088, 16092, 16093, 16094, 16095, 16098, 16099, 16100, 16102, 16104, 16105, 16107, 16110, Kedva, Shomvukva, Vetju, Söska, Jemdin, Vanvisdin, Lökchim, Viser, Shoinaty, Vesyva, Völ, Kulömdin, Nemdin, Pozhög, Myldin, Ichöt Bölvanaiz, Unjadin, Izkar, Vilgort, Kebraty, Urdoma, Pyras, Luza, Loima, Abjachoi, Jerin, Zövsört, Közhmudor, Syktyvkar, Volsja, Us, Vu, Jovködzh, Latjudin, Kyma, Mozyn, Pizhma, Komys, Koslan, Ukva, Odesdino, Kodach, Pidzh, Chugör, Lömty, Kozhva, Lyzha, Shelljabözh, Chilimdin, Izva, Mirsköj, Jörmidz, Saner Kharad, Ortina, Sula, Soima, Komatyvis, Horei-Ver, Pechöra, Jagbözh, Kosju, Usva, Synjanyrd, Hebidja-Pedara, Adzva, Jur-To, Amderma, Hebidja-Ja, Lepsha, Razgort, Uzhga, Inta, Turunju, Izjur, Cherdyn, Redikor, Jodz, Saariola, Loino, Nikolsk, Uzhuga, Vokhma, Pyschug, Nikulchin, Sizma, Chyobsara, Romanov, Pertoma, Vekshenga, Pinega, Ust-Pinega, Ust-Vayenga, Chakola, Toima, Kemdin, Kartajol, 16245, 16246, 16247, 16248, 16249, 16250, Pyoza, Kosma, Unzha, Hej-Jaha, Varkuta, Turya, Ilyinsk, Selyana, Sovdor, Beloozero, Cherepovets, Vyangi, Podporozhye, Kostroma, Chukhloma, Vilva, Kerken, Shimal, Akchim, Palniki, Lolog, Vepsian Wasteland, Northern Urals, Northern Urals, Kholmogory, Arkhangelsk, Brin Navolok, Pertominsk, Lopshenga, Onega, Pole, Korelskoye, Malashuyka, Yangary, Kustranda, Pudozh, Vershinino, Yarnema, Kargopol, Vitzgora, Ostrov_BJA, Kirillov, Dvinitza, Pelsina, Totma, Tasta, Tischna, Kadnikov, Vologda, Sheksna, Gryazovets, Danilov, Vyatskoye, Lyubim, Shuyskoye, Soligalich, Kunozh, Ledengskoye, Suday, Choklema, Gorodek, Boborossa, Veliky Ustyug, Nyuksenitsa, Kotlas, Usyorga, Shenkursk, Krasny Bor, Bereznik, Velsk, Verkhovazhye, Ous Vaga, Yemetsk, Kevrola, Verkola, Vyya, Velsk wasteland, Ustyug wasteland, Sosvan wasteland, Galich Mersky, Samoyed wasteland, Tara wasteland, Sukhorukova, Belogorye, Kari Pospat Vosh, Arant, Kandiskaya, Kartauzh, Pelym, Sosva, Totkarak, Koshuki, Alymka, Chalbych, Chukas Vosh, Topar Vosh, Neramkary, Verkhoturye, Tura Kala, Yugan, Nizyani, Atlym, Karymkary, Kai, Demiianka, Bardak, Koshley Vosh, Uluskate, Liniek, Selinga, Sibir, Berisiy, Asmaak, Yorgaet, Vagaiskoy, Kulema, Dolgujar, Ust-Ishim, Omgul, Zavialova, Vikulova, Ishim wasteland, Mountains, Chich, Olyn, Kargalin, Tartas_SIB, Gulyus, Om, Sayak, Umiai, Vasyugan, Yugar, Chergana, Yonoir, Parabel, Igaran, Iau, Chegarka, Salim, Kiia, Yaia, Taskyl, Tisul, Kitat, Chulym_bis, Chet, Biriku, Shurysh, Bogotul, Tym, Keljiga, Yutur, Jorugul, Sochur, Yenisei, Yahtin, Belska, Vasyugan Mire N, Vasyugan Mire S, Balakhta, Kiyai, Khabaidak, Anja_TUV, Uyar, Em-Iss, Miirchun, Ikh Orgil, Tolchi, Iya_TUV, Shityy, Urik, Setgel Uul, Ului, Kyzyl-Char, Kyzyl-Kan, Entaul, Pey, Permya, Tamta, Kansk, Chershet, Tagul, Agul, Tumanshet, Akulshet, Yaga, Zoazerny, NORTHERN URALS, Kharom-Vosh, Kargadan, Khanty-Mansiisk, Tselym-Balyn, Surgut, Tobol + link = { autogenerated = yes imp = 9302 imp = 8583 imp = 8584 imp = 8598 imp = 8599 ck3 = 12008 } # Impassable, Gaowang, Zhenlin, Dacheng, Humeng -> (Unknown) + link = { autogenerated = yes imp = 9385 ck3 = 11865 ck3 = 12014 ck3 = 12060 ck3 = 12431 ck3 = 13574 ck3 = 13576 ck3 = 13577 ck3 = 13645 ck3 = 13685 ck3 = 13729 ck3 = 13733 ck3 = 13737 ck3 = 13792 ck3 = 13874 ck3 = 13898 ck3 = 13863 ck3 = 13830 ck3 = 13821 ck3 = 13827 ck3 = 13813 ck3 = 13739 ck3 = 13711 ck3 = 13858 ck3 = 13906 ck3 = 13920 ck3 = 13875 ck3 = 13881 ck3 = 13844 ck3 = 13826 ck3 = 13882 ck3 = 12511 } # Impassable -> Ganukan, Londoko, Yarsa_Zhudun, Tugar, Tarakelok, Talanja, 13577, Sulak, Kharpichan, Kondon, 13733, Evoron, Nilankan, Mago, Chiya, Takhta, Kherpuchi, Niemlin, Upagda, Briakan, Duki, Amgun, Burukan, Neran, Shantar, Bolodek, Chumikan, 13844, 13826, 13882, Holuhotom + link = { autogenerated = yes imp = 9773 ck3 = 11861 ck3 = 11958 ck3 = 12001 ck3 = 12529 ck3 = 12576 ck3 = 12580 ck3 = 13351 ck3 = 13564 ck3 = 13565 ck3 = 13568 ck3 = 13569 ck3 = 13571 ck3 = 13572 ck3 = 13573 ck3 = 13615 ck3 = 13624 ck3 = 13626 ck3 = 13638 ck3 = 13649 ck3 = 13651 ck3 = 13664 ck3 = 13684 ck3 = 13701 ck3 = 13714 ck3 = 13727 ck3 = 13734 ck3 = 13735 ck3 = 13750 ck3 = 13760 ck3 = 13780 ck3 = 13794 ck3 = 13796 ck3 = 13823 ck3 = 13849 ck3 = 7472 ck3 = 7496 ck3 = 7733 ck3 = 7970 ck3 = 13652 ck3 = 13665 ck3 = 13736 ck3 = 13689 ck3 = 13672 ck3 = 13728 ck3 = 13816 ck3 = 13843 ck3 = 13829 ck3 = 13774 ck3 = 13693 ck3 = 13764 ck3 = 13795 ck3 = 13850 ck3 = 13837 ck3 = 13877 ck3 = 13790 ck3 = 13787 ck3 = 13828 ck3 = 12325 ck3 = 13869 ck3 = 13884 ck3 = 13861 ck3 = 13900 ck3 = 13923 ck3 = 13933 ck3 = 1469 ck3 = 13825 ck3 = 13866 ck3 = 13892 ck3 = 13926 ck3 = 13916 ck3 = 13961 ck3 = 13546 ck3 = 13899 ck3 = 13873 ck3 = 12669 } # Impassable -> Minganlun, Bei'an, Wuweiyujue, Yichun, Beiji, Tymersol, 13351, Kekelei, Hormojin, Urtui, Tyukan, Dulust, Tarmanchukan, Budukan, Aigun, Doldykan, Dobkar, Amaranka, Arga, Dahur, Narasun, Briyami, Ergel, Kumar, 13727, Saskal, Bardag, Enzaishe, Hinggan, Huzhong, Sivaki, Dalin, Suka, Albaasin, Kundur, Ulan Chuzir, Erekte, Khaltan, Urgal, Chekunda, Etyrken, Adnikan, 13672, 13728, Ogods, 13843, 13829, Isa, Taburach, Ebaykan, Niru, Dugda, Soktahan, 13877, 13790, Ayak, Umlekan, Tygda, Dakte, Tukringa, Ulagach, Dambuki, Bomnaah, Tutaul, Eastern Wasteland 2, Ushumun, Magdagachi, Urkan, 13926, Dipkun, 13961, Kuvykta, Takhtam, Urusha, Oldo link = { autogenerated = yes imp = 8531 ck3 = 11839 } # Impassable -> Linqu_Qingzhou link = { autogenerated = yes imp = 9384 ck3 = 11837 ck3 = 12671 } # Impassable -> Baoshi, Kunduleng link = { autogenerated = yes imp = 9377 ck3 = 11827 } # Impassable -> Bunun link = { autogenerated = yes imp = 9117 ck3 = 11823 } # Impassable -> Putian - link = { autogenerated = yes imp = 7281 ck3 = 1181 ck3 = 7134 } # Wasteland -> Sutkend, Akkum link = { autogenerated = yes imp = 8948 ck3 = 11768 ck3 = 11956 ck3 = 11993 ck3 = 13016 } # Impassable -> Qingzhou_Zhuangzhou_Wangmo, Puningzhou_Lingzhou, Juzhou_Guizhou, 13016 link = { autogenerated = yes imp = 5357 ck3 = 1176 ck3 = 1349 ck3 = 1354 ck3 = 3476 } # IP 358 -> Medantaka, Vikramapura, Nagauda, Kolayat link = { autogenerated = yes imp = 8129 ck3 = 11643 } # Malay Mountains -> Mountains @@ -1139,59 +1201,54 @@ link = { autogenerated = yes imp = 5965 ck3 = 11573 ck3 = 822 ck3 = 827 ck3 = 853 ck3 = 854 ck3 = 9566 ck3 = 9567 ck3 = 9625 ck3 = 9865 } # China Impassable -> Htilin, Maibong, Khoupum, Unakoti, Tlawng, Arakan Mountains, Naga Hills, Chin, Kohima link = { autogenerated = yes imp = 9849 ck3 = 11552 ck3 = 11570 ck3 = 11619 } # Impassable -> Mountains, Mountains, Mountains link = { autogenerated = yes imp = 8127 ck3 = 11551 } # Thai Jungle -> Mountains - link = { autogenerated = yes imp = 9896 imp = 583 imp = 584 imp = 585 ck3 = 1108 } # Ileigha, Berenike, Vetus Hydreuma, Lahami -> EASTERN DESERT link = { autogenerated = yes imp = 8098 ck3 = 1089 } # Ethiopia Mountains -> WOLLO_HIGHLANDS - link = { autogenerated = yes imp = 9187 ck3 = 10875 } # Impassable -> Tu Lang link = { autogenerated = yes imp = 9198 ck3 = 10874 ck3 = 9960 ck3 = 9965 } # Impassable -> Pac Mieu, Yen Minh, Ba Be - link = { autogenerated = yes imp = 5336 ck3 = 1080 ck3 = 1334 ck3 = 8333 ck3 = 8334 ck3 = 8335 } # IP 337 -> WOLLO_HIGHLANDS, DANAKIL_HILLS, RAGALI, AMARTA, AFERA - link = { imp = 8951 ck3 = 10792 ck3 = 12821 } # Impassable -> Cingsae Si, Houzhou_Lunzhou + link = { autogenerated = yes imp = 8951 imp = 9187 ck3 = 10792 } # Impassable, Impassable -> Cingsae Si link = { autogenerated = yes imp = 8128 ck3 = 10773 } # Thai Mountain -> Tenasserim Hills link = { autogenerated = yes imp = 8136 ck3 = 10736 } # Philippines Mountains -> Sierra Madre South link = { autogenerated = yes imp = 9379 ck3 = 10696 ck3 = 10697 ck3 = 10698 ck3 = 10699 ck3 = 10700 ck3 = 10955 ck3 = 10956 ck3 = 10957 ck3 = 10958 ck3 = 10964 ck3 = 10966 ck3 = 11053 ck3 = 11056 ck3 = 11057 ck3 = 11117 ck3 = 11118 ck3 = 11119 ck3 = 11120 ck3 = 11150 ck3 = 11153 ck3 = 11154 ck3 = 11160 ck3 = 11304 ck3 = 11305 ck3 = 11306 ck3 = 11307 ck3 = 11308 ck3 = 11309 ck3 = 11310 ck3 = 11311 ck3 = 11470 ck3 = 11651 ck3 = 11652 ck3 = 11653 ck3 = 11654 ck3 = 11655 ck3 = 11656 ck3 = 11657 ck3 = 9708 ck3 = 9713 ck3 = 9714 ck3 = 9715 ck3 = 9716 ck3 = 9717 ck3 = 9718 ck3 = 9719 ck3 = 9720 ck3 = 9722 ck3 = 9723 ck3 = 9724 ck3 = 9725 ck3 = 9726 ck3 = 9727 ck3 = 9728 ck3 = 9729 ck3 = 9730 ck3 = 9731 ck3 = 9732 ck3 = 9733 ck3 = 9734 ck3 = 9735 ck3 = 9736 ck3 = 9737 ck3 = 9738 ck3 = 9739 ck3 = 9740 ck3 = 9741 ck3 = 9742 ck3 = 9743 ck3 = 9744 ck3 = 9778 ck3 = 9779 ck3 = 9781 ck3 = 9782 ck3 = 9783 ck3 = 9784 ck3 = 9785 ck3 = 9786 ck3 = 9787 ck3 = 9788 ck3 = 9789 ck3 = 9790 ck3 = 9792 } # Impassable -> Aklan 2, Kalasungay, Lebak, Kulilay, Sigaboy, Buglas Mountains, Buglas Mountains, Panay Mountains, Mindanao Mountains, Mindanao Mountains, Mindanao Mountains, Samar Mountains, Samar Mountains, Leyte Mountains, Bamban, Ilog, Sigay, Bais, Jawi Jawi, Tagima, Bayabao, Oton, Dinagat, Ramulog, Linao, Sugud, Kankabatok, Biliran, Jubasan, Kataruman, Masiu, Ag Ramag, Kalalaw, Marb El, Dinadasan, Mountains, Mountains, Mountains, Ipolote, Tigbawan, Bulgas West, Tanghay, Panglao, Bo Ol, Sugbu, Sialo, Binalbagan, Palapag, Borongan, Tiayban, Ormok, Abuyog, Suligaw, Butuan, Culilay, Tagum, Mansaka, Kagayan, Bukidnon, Flomlok, Kotabatu, Kidapawan, Buluan, Unayan, Layawan, Kumalarang, Sindangan, Bakalan, Samboangan, Maimbung, Kipit, Banoi, Tandag, Lianga, Baganga, 9784, Buayan, Dawaw, Samal, Nahalin, Manktan, Guihulngan, Kalbiga - link = { autogenerated = yes imp = 9413 ck3 = 10687 ck3 = 12827 ck3 = 9853 ck3 = 9908 ck3 = 9947 } # Impassable -> Nanzhao Mountains, Mountain, Panghsang, Mang Sian, Pangwaun + link = { autogenerated = yes imp = 9413 ck3 = 10687 ck3 = 12827 ck3 = 9908 ck3 = 9947 } # Impassable -> Nanzhao Mountains, Mountain, Mang Sian, Pangwaun + link = { autogenerated = yes imp = 8103 ck3 = 1068 ck3 = 6389 ck3 = 6420 } # Sudan Impassable -> NUBIAN_DESERT_SOUTH, SHUNQAYR, NUBIAN_DESERT_SOUTH link = { autogenerated = yes imp = 8104 ck3 = 1051 } # Sudan Impassable -> JEBEL_BEJA - link = { autogenerated = yes imp = 5328 ck3 = 1050 ck3 = 6372 ck3 = 6374 ck3 = 6375 ck3 = 6384 } # Eastern Desert Impassable -> JEBEL_BEJA, WADI_ODIB, NAQIS-NORTH, KHAWR_NUBT, NAQIS-SOUTH - link = { autogenerated = yes imp = 8109 ck3 = 1049 } # Somali Impassable -> OGADEN_DESERT + link = { autogenerated = yes imp = 5328 ck3 = 1050 ck3 = 6372 ck3 = 6374 ck3 = 6375 ck3 = 6384 ck3 = 6373 } # Eastern Desert Impassable -> JEBEL_BEJA, WADI_ODIB, NAQIS-NORTH, KHAWR_NUBT, NAQIS-SOUTH, GEBEIT link = { autogenerated = yes imp = 5101 ck3 = 1044 } # IMPASSIBLE TERRAIN 101 -> BALKAN MOUNTAINS - link = { autogenerated = yes imp = 5104 ck3 = 1043 ck3 = 3616 ck3 = 3625 } # IMPASSIBLE TERRAIN 104 -> BALKAN MOUNTAINS, Kavurskoto Kale, Krichim + link = { autogenerated = yes imp = 5104 ck3 = 1043 ck3 = 3616 } # IMPASSIBLE TERRAIN 104 -> BALKAN MOUNTAINS, Kavurskoto Kale link = { autogenerated = yes imp = 9851 ck3 = 10426 } # Impassable -> Barisan Mountains link = { autogenerated = yes imp = 9116 ck3 = 10402 ck3 = 10406 ck3 = 10407 } # Impassable -> Lingga, Natuna, Anambas - link = { imp = 5076 ck3 = 1040 ck3 = 3646 ck3 = 3723 ck3 = 3724 } # IMPASSIBLE TERRAIN 076 -> BALKAN MOUNTAINS, Kicevo, Peshkopi, Debar + link = { autogenerated = yes imp = 5076 ck3 = 1040 ck3 = 3646 ck3 = 3723 } # IMPASSIBLE TERRAIN 076 -> BALKAN MOUNTAINS, Kicevo, Peshkopi link = { autogenerated = yes imp = 5077 ck3 = 1039 ck3 = 503 } # IMPASSIBLE TERRAIN 077 -> BALKAN MOUNTAINS, Hum link = { autogenerated = yes imp = 11059 ck3 = 10325 ck3 = 11632 } # Sumatra Mountain -> Tapanuli, Mountains link = { autogenerated = yes imp = 8130 ck3 = 10270 } # Malay Mountains -> Malay Mountains - link = { autogenerated = yes imp = 5207 ck3 = 1013 ck3 = 5761 } # IMPASSIBLE TERRAIN 207 -> Lori, Bolnisi link = { autogenerated = yes imp = 9842 ck3 = 10093 ck3 = 10175 ck3 = 10793 ck3 = 11644 } # Impassable -> Mae Chan, Ban Rai, Tenasserim Hills, Mountains - link = { imp = 9841 ck3 = 10085 ck3 = 10086 ck3 = 10087 ck3 = 10088 ck3 = 10198 ck3 = 10271 ck3 = 10796 } # Impassable -> Tak, Sam Ngao, Mae Ramat, Tha Song Yang, Thoen, Tenasserim Hills, Tenasserim Hills - link = { imp = 9843 ck3 = 10083 ck3 = 10084 ck3 = 10677 ck3 = 10901 ck3 = 11064 ck3 = 11263 ck3 = 11270 ck3 = 11380 ck3 = 11381 ck3 = 11397 ck3 = 11398 ck3 = 11399 ck3 = 11400 ck3 = 11401 ck3 = 11406 ck3 = 11407 ck3 = 11408 ck3 = 11409 ck3 = 11584 ck3 = 11586 ck3 = 11587 ck3 = 11591 ck3 = 11593 ck3 = 11594 ck3 = 11595 ck3 = 9570 ck3 = 9593 ck3 = 9594 ck3 = 9638 ck3 = 9833 ck3 = 9834 ck3 = 9836 ck3 = 9837 ck3 = 9838 ck3 = 9839 ck3 = 9840 ck3 = 9848 ck3 = 9849 ck3 = 9850 ck3 = 9854 ck3 = 9855 ck3 = 9856 ck3 = 9857 ck3 = 9858 ck3 = 9859 } # Impassable -> Khun Yuam, Mae Sariang, Nanzhao Mountains, Mongsu, Demoso, Mae La Noi, Pang Mapha, Mong Ping, Mong Khet, Kar Li, Nam Hsan, Hopong, Mong Hta, Monghla, Mongping, Panglon, Mongtong, Loi Leng, Bwihikho, Thalaingma, Oktwin, Kayah Mountains, Mawkmai Mountains, Shan Hills, Shan Hills, Yawnghwe, Toungoo, Mong Pai, Nyaunglebin, Namtok, Kalaw, Loikaw, Pasawng, Hsi Hseng, Hsatung, Lawksawk, Kyethi, Mongnawng, Laikha, Manglon, Mong Nai, Keng Tawng, Mawkmai, Mongpan, Kengtung + link = { autogenerated = yes imp = 9841 ck3 = 10085 ck3 = 10087 ck3 = 10088 ck3 = 10271 ck3 = 10796 } # Impassable -> Tak, Mae Ramat, Tha Song Yang, Tenasserim Hills, Tenasserim Hills + link = { autogenerated = yes imp = 9843 ck3 = 10083 ck3 = 10084 ck3 = 10677 ck3 = 10901 ck3 = 11064 ck3 = 11263 ck3 = 11270 ck3 = 11380 ck3 = 11381 ck3 = 11397 ck3 = 11398 ck3 = 11399 ck3 = 11400 ck3 = 11406 ck3 = 11407 ck3 = 11408 ck3 = 11409 ck3 = 11584 ck3 = 11586 ck3 = 11587 ck3 = 11591 ck3 = 11593 ck3 = 11594 ck3 = 11595 ck3 = 9570 ck3 = 9593 ck3 = 9594 ck3 = 9638 ck3 = 9833 ck3 = 9834 ck3 = 9836 ck3 = 9837 ck3 = 9838 ck3 = 9839 ck3 = 9840 ck3 = 9848 ck3 = 9849 ck3 = 9850 ck3 = 9854 ck3 = 9855 ck3 = 9856 ck3 = 9857 ck3 = 9858 ck3 = 9859 } # Impassable -> Khun Yuam, Mae Sariang, Nanzhao Mountains, Mongsu, Demoso, Mae La Noi, Pang Mapha, Mong Ping, Mong Khet, Kar Li, Nam Hsan, Hopong, Mong Hta, Mongping, Panglon, Mongtong, Loi Leng, Bwihikho, Thalaingma, Oktwin, Kayah Mountains, Mawkmai Mountains, Shan Hills, Shan Hills, Yawnghwe, Toungoo, Mong Pai, Nyaunglebin, Namtok, Kalaw, Loikaw, Pasawng, Hsi Hseng, Hsatung, Lawksawk, Kyethi, Mongnawng, Laikha, Manglon, Mong Nai, Keng Tawng, Mawkmai, Mongpan, Kengtung link = { autogenerated = yes imp = 9844 ck3 = 10076 ck3 = 10082 ck3 = 10815 ck3 = 11396 ck3 = 9945 } # Impassable -> Chang Khoeng, Ban Don, Tenasserim Hills, Mongton, Tenasserim Hills link = { autogenerated = yes imp = 9846 ck3 = 10063 ck3 = 10064 ck3 = 10065 ck3 = 10070 ck3 = 10297 ck3 = 10646 ck3 = 11391 ck3 = 11622 ck3 = 11623 ck3 = 11624 ck3 = 11649 ck3 = 9993 } # Impassable -> Salavan, Thoumlane, Sekong, Saysetha, Krong Ana, Sansay, Paksong, Mountains, Mountains, Mountains, Mountains, Ia Krai link = { autogenerated = yes imp = 9374 ck3 = 10044 ck3 = 10046 ck3 = 10272 ck3 = 10759 ck3 = 10812 ck3 = 10823 ck3 = 10842 ck3 = 10843 ck3 = 10852 ck3 = 11377 ck3 = 11378 ck3 = 11379 ck3 = 11620 ck3 = 9957 ck3 = 9958 ck3 = 9959 ck3 = 9983 } # Impassable -> Houaphanh, Viengxay, Mountains, ANNAM MOUNTAINS, Thuong Xuan, Muong Lat, Song Ma, Moc, Mai Son, Xiang Kho, Sam Tay, Muang Quan, Mountains, Mai Da, Muang Lo, Muang Wat, Chiang Ko - link = { imp = 9373 ck3 = 10034 ck3 = 10279 ck3 = 10841 ck3 = 10858 ck3 = 11360 ck3 = 11621 } # Impassable -> Nam Tha, Annam Mountains, Khiem, Muang Thaeng, Mai, Mountains + link = { autogenerated = yes imp = 9373 ck3 = 10034 ck3 = 10279 ck3 = 10858 ck3 = 11360 ck3 = 11621 } # Impassable -> Nam Tha, Annam Mountains, Muang Thaeng, Mai, Mountains link = { autogenerated = yes imp = 9375 ck3 = 10032 ck3 = 10036 ck3 = 10037 ck3 = 10040 ck3 = 10041 ck3 = 10042 ck3 = 10043 ck3 = 10045 ck3 = 10048 ck3 = 10139 ck3 = 10274 ck3 = 10760 ck3 = 11284 ck3 = 11296 ck3 = 11355 ck3 = 11356 ck3 = 11357 ck3 = 11358 ck3 = 11359 ck3 = 11361 ck3 = 11362 ck3 = 11363 ck3 = 11376 ck3 = 11554 } # Impassable -> Nam Kha, Beng, Sayaburi, Luang Prabang, Nam Bak, Phonxay, Viengkham, Muang Hiem, Kham, Ban Yaeng, Mountains, ANNAM MOUNTAINS, Chat Trakan, Impassable Mountains, Na Le, Houn, Pak Beng, Hong Sa, Nan, Nam Ngoi, Pak Ou, Chomphet, Nong Het, Mountains link = { autogenerated = yes imp = 9376 ck3 = 10009 ck3 = 10027 ck3 = 10059 ck3 = 10060 ck3 = 10061 ck3 = 10066 ck3 = 10762 ck3 = 11088 ck3 = 11089 ck3 = 11092 ck3 = 11093 ck3 = 11094 ck3 = 11099 ck3 = 11384 ck3 = 11390 ck3 = 11618 ck3 = 11634 ck3 = 11647 ck3 = 11648 ck3 = 11650 ck3 = 9996 ck3 = 9997 } # Impassable -> Krong Kma, IMPASSABLE ANNAMITE MOUNTAINS, Seponh, Phine, Nong, Kaleum, ANNAM MOUNTAINS, Drang Lai, Bang Keng, Hayav, Ploi Kodur, Kon Tum, Bhing, Bualapha, Dak Cheung, Mountains, Mountains, Mountains, Mountains, Mountains, Yang Mum, Ro Ngoa link = { autogenerated = yes imp = 9847 ck3 = 10001 ck3 = 10004 ck3 = 10296 ck3 = 11109 ck3 = 11112 } # Impassable -> Sre, K Ho, Bao Lam, To, Da Don link = { autogenerated = yes imp = 5953 ck3 = 1 ck3 = 2 ck3 = 233 ck3 = 235 ck3 = 236 ck3 = 237 ck3 = 238 ck3 = 239 ck3 = 241 ck3 = 242 ck3 = 243 ck3 = 244 ck3 = 245 ck3 = 247 ck3 = 255 ck3 = 256 ck3 = 257 ck3 = 258 ck3 = 259 ck3 = 260 ck3 = 261 ck3 = 262 ck3 = 263 ck3 = 264 ck3 = 265 ck3 = 266 ck3 = 267 ck3 = 268 ck3 = 269 ck3 = 270 ck3 = 271 ck3 = 272 ck3 = 273 ck3 = 274 ck3 = 275 ck3 = 276 ck3 = 277 ck3 = 278 ck3 = 279 ck3 = 280 ck3 = 281 ck3 = 283 ck3 = 284 ck3 = 293 ck3 = 299 ck3 = 3 ck3 = 3260 ck3 = 3307 ck3 = 383 ck3 = 392 ck3 = 393 ck3 = 394 ck3 = 395 ck3 = 396 ck3 = 397 ck3 = 398 ck3 = 399 ck3 = 4 ck3 = 5 ck3 = 657 ck3 = 658 ck3 = 8771 ck3 = 8772 ck3 = 8773 ck3 = 8774 ck3 = 899 ck3 = 902 } # Norwegian Impassable -> VESTFIRDIR, REYKJAVIK, RINGARIKI, VALDRES, HEDMARK, NORTHRI GUDBRANDSDALI, SUTHRI GUDBRANDSDALI, NORTHRI EYSTRIDALI, GAULDALA, STJORDALA, VERDALA, INNAN NAMDALFYLKI, UTAN NAMDALFYLKI, NUMEDAL, HARDANGER, SUNNHORDALAND, MITHRHORDALAND, NORTHRIHORDALAND, VOSS, SOGNFYLKI, BREMANGER, STOLSHEIMEN, FJARLAND, DALE, FIRDAFYLKI, JOLSTER, SUNNMORE, ROMSDALI, NORTHRIMORE, STRIND, ORKDALA, HITRAR, EYNAFYLKI, TORGAR, RODOY, SANDNES, BODIN, VAGAN, BJARKOY, VESTVAGBORG, NORWEGIAN IMPASSABLE 1, GRONG, AARBORTE, DOVRE, NORWEGIAN IMPASSABLE 9, STOKKSEYRI, NORWEGIAN MOUNTAINS, ICELANDIC IMPASSIBLE TERRAIN, TINGEVARA, PELDOJAVRI, ROUNALA, GUOVDAGEAIDNU, IESJAVRI, KARASJOHKA, AVIOVARA, LAGGUJAKKA, OHCEJOHKA, REYDARFJALL, HUSAVIK, NORWEGIAN IMPASSABLE 6, NORWEGIAN IMPASSABLE 7, Olafsvik, Hofn, Vopnafjordur, Klaustur, KOLA IMPASSIBLE TERRAIN, KOLA IMPASSIBLE TERRAIN - link = { imp = 8227 ck3 = 9472 ck3 = 9471 } # Longle -> Aksay, Hahaeci + link = { autogenerated = yes imp = 8227 ck3 = 9472 ck3 = 9484 } # Longle -> Aksay, Xihu link = { autogenerated = yes imp = 8878 ck3 = 9454 ck3 = 12566 } # Jiandi -> Yunglro, (Unknown) link = { autogenerated = yes imp = 12687 ck3 = 9450 } # Kruk -> Jigzhi link = { autogenerated = yes imp = 8306 ck3 = 9389 } # Xiaowan -> Ayakkum link = { autogenerated = yes imp = 5557 ck3 = 9091 ck3 = 8544 } # Khyunglung -> Kartikeyapura, HIMALAYA link = { autogenerated = yes imp = 5571 ck3 = 9067 } # Nghulmo Khar -> Simbiling link = { autogenerated = yes imp = 5617 ck3 = 9061 } # Chunak -> Gerze + link = { autogenerated = yes imp = 5598 ck3 = 9025 ck3 = 16305 } # Mulbek -> Minimarg, 16305 link = { autogenerated = yes imp = 3609 imp = 5043 ck3 = 8719 } # AdPublicanos, IMPASSIBLE TERRAIN 043 -> Faucigny - link = { autogenerated = yes imp = 10466 ck3 = 8420 } # Haqayo Malaas -> FAFAN + link = { autogenerated = yes imp = 10466 imp = 10468 ck3 = 8420 } # Haqayo Malaas, Goyar -> FAFAN link = { autogenerated = yes imp = 7543 ck3 = 8337 } # Dire Dawa*** -> SOUTH_DANAKIL - link = { autogenerated = yes imp = 6772 ck3 = 7967 } # Irkeshtam -> Sary-Tash - link = { autogenerated = yes imp = 6771 ck3 = 7964 ck3 = 13617 } # Kezhen -> Muji, Mountains - link = { autogenerated = yes imp = 5594 ck3 = 7955 } # Gilgit -> Naltar + link = { autogenerated = yes imp = 6772 ck3 = 7964 ck3 = 7967 } # Irkeshtam -> Muji, Sary-Tash link = { autogenerated = yes imp = 10539 ck3 = 7670 ck3 = 1501 } # Zuunmod -> Togochak, Mountains link = { autogenerated = yes imp = 6787 ck3 = 7149 } # Narin -> Tinimseyit link = { autogenerated = yes imp = 12440 ck3 = 7012 } # Orman -> Kartaszevo - link = { imp = 9961 ck3 = 6447 } # Fuqaha -> ZAWILA - link = { autogenerated = yes imp = 9959 imp = 9958 imp = 9960 ck3 = 6446 } # Zala, Meduin, Jufrah -> ZALHA + link = { imp = 9996 imp = 9997 ck3 = 6661 } # Baghira, Tisit -> GHAT_ROUTE + link = { imp = 9994 imp = 9995 ck3 = 6450 } # Dujal, Sharraba -> TASSAWA link = { autogenerated = yes imp = 10417 ck3 = 6434 } # Gisi -> AL-RUSAYRISI - link = { imp = 9917 imp = 9915 imp = 9916 imp = 9918 imp = 9919 imp = 9920 ck3 = 6354 } # Murrat, Duweb, Hidiglib, Sufar, Doum, Gabgaba -> KOROSKO-ROAD + link = { autogenerated = yes imp = 9917 imp = 9915 imp = 9916 imp = 9918 imp = 9919 imp = 9920 ck3 = 6354 } # Murrat, Duweb, Hidiglib, Sufar, Doum, Gabgaba -> KOROSKO-ROAD link = { autogenerated = yes imp = 11204 imp = 11203 imp = 11205 ck3 = 6255 } # Jalajil, Zulfi, Huraymila -> UBAD link = { autogenerated = yes imp = 4718 imp = 12674 ck3 = 6182 } # Thapaua, Arabia Impassable -> MAWQAQ link = { autogenerated = yes imp = 7555 ck3 = 6180 } # UNINHABITABLE -> SIRHAN @@ -1199,63 +1256,61 @@ link = { autogenerated = yes imp = 1675 imp = 5287 ck3 = 6034 } # Pharan, IMPASSIBLE TERRAIN 287 -> FARAN link = { autogenerated = yes imp = 7565 imp = 7649 ck3 = 6001 } # UNINHABITABLE, (Unknown) -> AS-SALMAN link = { autogenerated = yes imp = 7557 imp = 7556 ck3 = 5989 } # UNINHABITABLE, UNINHABITABLE -> QURAQIR - link = { autogenerated = yes imp = 1750 ck3 = 5748 } # Klukhor Pass -> Seti - link = { autogenerated = yes imp = 12473 ck3 = 5463 } # Mys -> Glazov - link = { autogenerated = yes imp = 12641 ck3 = 5159 ck3 = 5512 } # Korpi -> Vyangi, Vepsian Wasteland link = { autogenerated = yes imp = 3081 imp = 10173 ck3 = 4696 } # VisumMontis, Guigou -> SUBU + link = { imp = 10177 imp = 10176 ck3 = 6325 } # Brazzia, Sloughia -> ATLAS-AS-SAHRI + link = { imp = 3089 ck3 = 4673 } # Altava -> TAFRAOUA-SEBDOU link = { autogenerated = yes imp = 6572 ck3 = 4497 } # Chaman -> PUL link = { autogenerated = yes imp = 6551 ck3 = 4463 ck3 = 4464 ck3 = 1485 } # Etymandria -> KISH-RUDBAR, MOFD AFDZALKHAN, PERSIAN IMPASSABLE TERRAIN - link = { autogenerated = yes imp = 6626 ck3 = 4357 } # Drapsaca -> Munjan link = { autogenerated = yes imp = 950 ck3 = 4257 } # Sostrate -> Gondishapur link = { autogenerated = yes imp = 3407 ck3 = 4173 } # Shiragan -> Nariz link = { autogenerated = yes imp = 5436 imp = 5252 ck3 = 4060 } # UNINHABITABLE, IMPASSIBLE TERRAIN 252 -> Mihrijan - link = { autogenerated = yes imp = 478 ck3 = 3637 } # Seuthopolis -> Kopsis link = { autogenerated = yes imp = 3667 ck3 = 3137 } # Aguntum -> OBERVELLACH link = { autogenerated = yes imp = 4047 imp = 5035 ck3 = 3108 } # Luenna, IMPASSIBLE TERRAIN 035 -> WOLFSBERG link = { autogenerated = yes imp = 3665 imp = 3663 ck3 = 2955 } # Vipenitum, Sublavione -> BRIXEN - link = { autogenerated = yes imp = 3664 ck3 = 2952 ck3 = 3134 } # Sebatum -> BRUNECK, LIENZ link = { autogenerated = yes imp = 3614 ck3 = 2047 ck3 = 2048 ck3 = 3107 } # Brenodunum -> THUN, LUCERNE, ENGELBERG link = { autogenerated = yes imp = 3620 ck3 = 2039 } # Obilonna -> AOSTA link = { autogenerated = yes imp = 3610 ck3 = 2031 } # Darantasia -> MOUTIERS + link = { autogenerated = yes imp = 6767 ck3 = 16295 } # Urang -> Yarkhun + link = { autogenerated = yes imp = 1755 imp = 5201 ck3 = 15832 } # Colit, IMPASSIBLE TERRAIN 201 -> 15832 + link = { autogenerated = yes imp = 1761 ck3 = 15807 } # Charton -> 15807 + link = { autogenerated = yes imp = 1536 ck3 = 15724 ck3 = 15685 } # Khezerlu Qal'eh -> 15724, Mountains link = { autogenerated = yes imp = 8807 imp = 9607 ck3 = 14032 } # Jamdae, Impassable -> 14032 link = { autogenerated = yes imp = 9518 imp = 9505 imp = 9301 ck3 = 13590 } # PASS, PASS, Impassable -> Oroyin Korken - link = { autogenerated = yes imp = 8356 imp = 8389 ck3 = 12812 } # Hongnong, Impassable -> Hongnong_Guozhou link = { autogenerated = yes imp = 9498 ck3 = 12742 ck3 = 7570 } # Jungi -> Ongqin, Arvaikheer link = { autogenerated = yes imp = 7066 ck3 = 1260 ck3 = 7942 } # Nasikya -> Nasikya, Western Ghats (NN) - link = { autogenerated = yes imp = 9514 ck3 = 12447 ck3 = 12452 } # Tabu -> Nuozhenshuiyi, Ulan Hua - link = { imp = 9992 imp = 9991 imp = 9998 imp = 9999 imp = 9990 ck3 = 6669 } # Traghen, Zuwila, Terbu, Majdul, Tmessa -> TRAGHAN - link = { imp = 9981 imp = 9982 imp = 9983 imp = 9984 imp = 9985 ck3 = 6450 } # Chlef, Gelah, Lecksair, Garama, Zinchekra -> TASSAWA - link = { imp = 9980 imp = 9986 ck3 = 6451 } # Sabha, Gadduwah -> MURZUK - link = { imp = 9973 imp = 9974 imp = 9975 imp = 9976 ck3 = 6449 } # Mahruqah, Birgin, Dedris, Adri -> GERMA + link = { autogenerated = yes imp = 9514 ck3 = 12452 ck3 = 13595 ck3 = 13630 } # Tabu -> Ulan Hua, 13595, 13630 + link = { imp = 9991 imp = 9990 imp = 9998 ck3 = 6447 } # Zuwila, Tmessa, Terbu -> ZAWILA + link = { autogenerated = yes imp = 9992 imp = 9999 imp = 9986 ck3 = 6669 } # Traghen, Majdul, Gadduwah -> TRAGHAN link = { autogenerated = yes imp = 9964 imp = 9965 imp = 9966 ck3 = 6459 } # Socna, Wilyan, Tamshin -> TAMZAWA + link = { autogenerated = yes imp = 9959 imp = 9960 imp = 9961 imp = 9958 ck3 = 6446 } # Zala, Jufrah, Fuqaha, Meduin -> ZALHA link = { autogenerated = yes imp = 9950 ck3 = 6108 } # Bu Athla -> JAKHARRAD link = { autogenerated = yes imp = 9949 imp = 9951 imp = 9952 ck3 = 6106 } # Augila, Sahabi, Kalanshah -> AWJILA link = { autogenerated = yes imp = 9939 ck3 = 6402 } # Sabbalo -> JEBEL_MOYA - link = { autogenerated = yes imp = 9938 ck3 = 6401 ck3 = 6429 } # Surayj -> SAQADI, KOSTI link = { autogenerated = yes imp = 9914 ck3 = 6352 ck3 = 6370 } # Biyar -> ABU-HAMMAD, AL-HAJAR_NUBIA - link = { imp = 9903 imp = 9912 imp = 9911 ck3 = 6111 } # Tuyur, Berenike Pancrysia, Eigat -> DERAHIB - link = { autogenerated = yes imp = 990 imp = 991 ck3 = 5719 } # Elegoana, Arest -> Arjesh - link = { imp = 9894 imp = 9895 imp = 9892 imp = 9891 ck3 = 6350 } # Khafur, Barkol, Kalas, Halfa -> AL-GHAZALI + link = { autogenerated = yes imp = 9903 imp = 9912 imp = 8082 ck3 = 6111 } # Tuyur, Berenike Pancrysia, Desert -> DERAHIB + link = { autogenerated = yes imp = 9894 imp = 9895 imp = 9892 imp = 8063 ck3 = 6350 } # Khafur, Barkol, Kalas, Desert -> AL-GHAZALI + link = { autogenerated = yes imp = 985 ck3 = 4778 } # Qizqapan -> KHUFTIDKAN link = { autogenerated = yes imp = 982 imp = 5232 ck3 = 4782 } # Yazdigird, IMPASSIBLE TERRAIN 232 -> KEREND-KERMANSHAH link = { autogenerated = yes imp = 9777 imp = 9148 ck3 = 12781 } # Huaian, Impassable -> Huizhou_Guishan link = { autogenerated = yes imp = 9776 ck3 = 9868 ck3 = 9168 } # PASS -> Nanyun, Hawai - link = { imp = 9757 ck3 = 9394 ck3 = 9392 ck3 = 9395 } # Nalingele -> Urtmoron, Bokalik, Lenghu + link = { autogenerated = yes imp = 9757 ck3 = 9394 ck3 = 9392 } # Nalingele -> Urtmoron, Bokalik link = { autogenerated = yes imp = 9752 imp = 9753 ck3 = 9402 } # Keer, Talitaliha -> Balung link = { autogenerated = yes imp = 9750 ck3 = 9403 } # Dalitaliha -> Tuulain - link = { autogenerated = yes imp = 9746 imp = 9317 ck3 = 13238 } # Naga, Impassable -> 13238 + link = { autogenerated = yes imp = 9746 ck3 = 13238 } # Naga -> 13238 link = { autogenerated = yes imp = 9668 ck3 = 13809 } # Samang -> Fuyu link = { autogenerated = yes imp = 9666 imp = 9871 ck3 = 13848 } # Wen, Impassable -> 13848 + link = { autogenerated = yes imp = 9664 ck3 = 12024 } # Anping -> Luling_Jizhou link = { autogenerated = yes imp = 9663 ck3 = 12127 } # Jiancheng -> Gaoan link = { autogenerated = yes imp = 9662 ck3 = 12186 } # Haihun -> Jianchang_Yongxiu - link = { autogenerated = yes imp = 9648 ck3 = 12676 } # Fuling -> Huaiyin_Chuzhou + link = { autogenerated = yes imp = 9660 ck3 = 12378 } # Longshu -> Lanxi link = { autogenerated = yes imp = 9636 imp = 9137 ck3 = 12013 } # Ancheng, Impassable -> Yongxin link = { autogenerated = yes imp = 9627 ck3 = 12313 ck3 = 12290 } # Xiazhi -> Wuchang_Fangang, Yongxing_Ezhou - link = { autogenerated = yes imp = 9623 imp = 8835 ck3 = 12647 } # Mianyang, Impassable -> HanzhongNanzheng + link = { autogenerated = yes imp = 9623 imp = 8835 imp = 8849 ck3 = 12647 } # Mianyang, Impassable, Impassable -> HanzhongNanzheng link = { autogenerated = yes imp = 9619 imp = 8929 ck3 = 9930 } # Qinzang, Impassable -> Li Lung link = { autogenerated = yes imp = 9615 imp = 8882 ck3 = 9456 } # Canling, Impassable -> Sungqu link = { autogenerated = yes imp = 9612 imp = 8852 ck3 = 12295 } # Pingdu, Impassable -> Fengdu + link = { autogenerated = yes imp = 961 imp = 973 ck3 = 4822 } # Tell Bismaya, Bakusaya -> KASKAR link = { autogenerated = yes imp = 9582 imp = 9580 ck3 = 9618 } # Pulei, Impassable -> Xingxingxia - link = { autogenerated = yes imp = 956 ck3 = 4835 } # Tell Ajri -> TAKRIT link = { autogenerated = yes imp = 955 ck3 = 4806 } # Sinn -> JABALTA link = { autogenerated = yes imp = 954 ck3 = 4833 } # Haditha -> HIT link = { autogenerated = yes imp = 953 ck3 = 4886 } # Bijan -> AL-HADITHA-FURAT @@ -1263,22 +1318,20 @@ link = { autogenerated = yes imp = 9508 ck3 = 7566 } # PASS -> Orog link = { autogenerated = yes imp = 9507 ck3 = 7594 } # PASS -> Naran Chiia'un link = { autogenerated = yes imp = 9506 ck3 = 7781 ck3 = 1453 ck3 = 14002 } # PASS -> Gobi-Altai South, Otegu Qualn, Mountains - link = { imp = 9499 ck3 = 7569 } # Kulum -> Ongii Sume-Tur - link = { imp = 9501 ck3 = 7571 } # Guqie -> Kuse Naur - link = { autogenerated = yes imp = 9500 imp = 9503 ck3 = 7564 } # Zhuoye, Longleshui -> Khutag + link = { autogenerated = yes imp = 9501 ck3 = 7569 ck3 = 7571 } # Guqie -> Ongii Sume-Tur, Kuse Naur + link = { autogenerated = yes imp = 9500 imp = 9503 imp = 9499 ck3 = 7564 } # Zhuoye, Longleshui, Kulum -> Khutag link = { autogenerated = yes imp = 9472 ck3 = 7507 ck3 = 7502 } # PASS -> Morin Tolochai, Balgun - link = { autogenerated = yes imp = 933 imp = 961 imp = 973 ck3 = 4822 } # Apamea, Tell Bismaya, Bakusaya -> KASKAR + link = { autogenerated = yes imp = 9397 ck3 = 12170 } # PASS -> Ordos link = { autogenerated = yes imp = 9311 ck3 = 9393 } # Tane -> Mangnai link = { autogenerated = yes imp = 9219 ck3 = 12434 } # Shanan -> Wananzhou_Lingshui link = { autogenerated = yes imp = 9215 ck3 = 12419 } # Linzhen -> Zhenzhou_Zhuyajun link = { autogenerated = yes imp = 9213 ck3 = 12458 } # Gouzhong -> Yazhou_Shecheng link = { autogenerated = yes imp = 9202 ck3 = 10818 } # Do Bang -> Tay Do - link = { imp = 920 ck3 = 6003 } # Dilbat -> NIFFAR + link = { autogenerated = yes imp = 919 imp = 920 ck3 = 6003 } # Borsippa, Dilbat -> NIFFAR link = { autogenerated = yes imp = 9176 ck3 = 12831 } # Lingfang -> Binzhou_Lingfang link = { autogenerated = yes imp = 9153 imp = 9154 imp = 9155 imp = 9047 imp = 9161 imp = 9162 ck3 = 12933 } # Fengyang, Linhe, Fuchuan, Impassable, Impassable, Impassable -> Hezhou_Linhe link = { autogenerated = yes imp = 9150 ck3 = 12928 ck3 = 12822 } # Mengling -> (Unknown), Wuzhou_Cangwu link = { autogenerated = yes imp = 9149 imp = 9151 imp = 9152 imp = 9164 ck3 = 12860 } # Guangxin, Duanxi, Gaoyao, Impassable -> Fengzhou_Fengchuan - link = { autogenerated = yes imp = 9144 imp = 9147 ck3 = 12945 } # Longchuan, Impassable -> Longchuan_Xunzhou link = { autogenerated = yes imp = 9123 ck3 = 12236 } # Qiaoyang -> Hukou_Duchang link = { autogenerated = yes imp = 9120 imp = 9135 imp = 9392 ck3 = 12197 } # Ai, Impassable, Impassable -> Yuning_Wuning link = { autogenerated = yes imp = 9112 imp = 9779 ck3 = 11820 } # Dongan, Tongan -> Quanzhou_Jinjiang @@ -1292,17 +1345,15 @@ link = { autogenerated = yes imp = 9055 imp = 9070 imp = 9062 ck3 = 12512 } # Boxiang, Qian, Impassable -> Zouyucheng link = { autogenerated = yes imp = 905 imp = 907 ck3 = 4885 } # Bechchouphrein, Haradu -> HADITHAT-ANA link = { autogenerated = yes imp = 9036 imp = 9039 imp = 9048 ck3 = 11896 } # Chen, Bi, Impassable -> Chenzhou_Chenxian + link = { autogenerated = yes imp = 903 ck3 = 4830 ck3 = 5992 } # Tulul al-Ukhaidhir -> KARBALA, AL-KUFA link = { autogenerated = yes imp = 9027 imp = 9032 ck3 = 11967 } # Douliang, Impassable -> Wugang_Chengbu link = { autogenerated = yes imp = 9024 imp = 9025 imp = 9033 ck3 = 11893 } # Taoyang, Lingling, Impassable -> Guanyang_Quanzhou link = { autogenerated = yes imp = 9013 ck3 = 12357 } # Henshan -> Bashan - link = { autogenerated = yes imp = 901 ck3 = 4827 } # Tell Aswad -> SARSAR link = { autogenerated = yes imp = 9004 ck3 = 12120 ck3 = 12143 ck3 = 12206 } # Qianling -> Songtao_Huayuan, Youyang_Sizhou, Longshan_Xizhou link = { autogenerated = yes imp = 9003 ck3 = 12161 } # Youyang -> Xizhou_Daxiang link = { autogenerated = yes imp = 9001 ck3 = 11979 ck3 = 12045 } # Yuanyang -> Langxi, Yelang_Yezhou - link = { autogenerated = yes imp = 8999 imp = 9016 ck3 = 12053 } # Xupu, Impassable -> Chenxi link = { autogenerated = yes imp = 8993 ck3 = 12568 } # Meng -> Shenzhou_Yiyang - link = { imp = 8988 ck3 = 12491 ck3 = 12483 } # Wu -> Badong, Wushan - link = { autogenerated = yes imp = 8982 imp = 8983 imp = 8984 ck3 = 12544 } # Qi, Zhonglu, Xiangyang -> Xiangyang + link = { autogenerated = yes imp = 8988 ck3 = 12483 ck3 = 12491 } # Wu -> Wushan, Badong link = { autogenerated = yes imp = 8977 ck3 = 12346 } # Yidao -> Yidu_chu link = { autogenerated = yes imp = 8972 imp = 8973 ck3 = 12326 } # Ying, Jiangling -> Jiangling_Jingzhou link = { autogenerated = yes imp = 8970 ck3 = 12703 } # Ye -> Yexian_ruzhou @@ -1320,75 +1371,74 @@ link = { autogenerated = yes imp = 8831 ck3 = 12649 } # Nanzheng -> Chenggu link = { autogenerated = yes imp = 8828 imp = 8829 imp = 8837 ck3 = 12563 } # Wuling, Shangyong, Impassable -> Shangyong link = { autogenerated = yes imp = 8826 imp = 8366 ck3 = 12637 } # Xi, Impassable -> Fengli - link = { autogenerated = yes imp = 8824 ck3 = 12635 ck3 = 12609 ck3 = 12616 } # Xicheng -> Hanyin, Nvwashan, Jinzhou_Xicheng + link = { autogenerated = yes imp = 8824 ck3 = 12615 ck3 = 12609 ck3 = 12616 ck3 = 12635 } # Xicheng -> Ankang, Nvwashan, Jinzhou_Xicheng, Hanyin link = { autogenerated = yes imp = 8816 imp = 8822 ck3 = 12688 } # Wudu, Impassable -> Wudu link = { autogenerated = yes imp = 8753 ck3 = 12233 } # Goucheng -> Yuyang link = { autogenerated = yes imp = 8748 imp = 9402 ck3 = 12262 } # Changping, Impassable -> Guzhu_Juyongguan link = { autogenerated = yes imp = 8727 ck3 = 11965 } # Zhongping -> Dezhou_Ande - link = { autogenerated = yes imp = 8723 ck3 = 12086 } # Wenan -> Pingshu - link = { autogenerated = yes imp = 8699 imp = 8704 imp = 8707 ck3 = 11983 } # Wusui, Changcheng, Songzi -> Jizhou_Xindu link = { autogenerated = yes imp = 8684 imp = 8687 ck3 = 11995 } # Dongyuan, Luan -> ZhaozhouPingji link = { autogenerated = yes imp = 8681 ck3 = 11894 } # Handan -> Handan link = { autogenerated = yes imp = 8665 imp = 9575 ck3 = 12338 } # Duhe, Impassable -> Olon Sume + link = { autogenerated = yes imp = 8657 ck3 = 12321 } # Woyang -> Xuande_monan link = { autogenerated = yes imp = 8643 imp = 8119 ck3 = 12083 } # Luti, Shanxi Impassable -> Wutaishan link = { autogenerated = yes imp = 8620 imp = 8616 imp = 9574 ck3 = 12373 } # Linwo, Chengyi, Impassable -> Huyangu - link = { autogenerated = yes imp = 8611 imp = 9397 ck3 = 9542 } # Sanfeng, PASS -> Wuda + link = { autogenerated = yes imp = 8611 ck3 = 9542 } # Sanfeng -> Wuda link = { autogenerated = yes imp = 8534 ck3 = 12961 } # Bian -> Qufu link = { autogenerated = yes imp = 853 imp = 5226 ck3 = 4877 } # Ichnae, IMPASSIBLE TERRAIN 226 -> BAJARWAN - link = { autogenerated = yes imp = 842 imp = 992 ck3 = 4858 } # Tigranocerta, Balales Pass (Baghesh) -> ARZAN - link = { autogenerated = yes imp = 8403 imp = 8406 ck3 = 12700 } # Zhaoling, Dingling -> Yancheng_Linying + link = { autogenerated = yes imp = 842 imp = 992 imp = 5193 ck3 = 4858 } # Tigranocerta, Balales Pass (Baghesh), IMPASSIBLE TERRAIN 193 -> ARZAN + link = { autogenerated = yes imp = 8395 imp = 8403 imp = 8406 ck3 = 12700 } # Wuyang, Zhaoling, Dingling -> Yancheng_Linying link = { autogenerated = yes imp = 8374 imp = 9393 ck3 = 12936 } # Ning, Impassable -> Gongcheng_Sumenshan link = { autogenerated = yes imp = 8360 ck3 = 12754 ck3 = 12789 } # Lushi -> Lushi, Zhuyang - link = { imp = 8348 ck3 = 12857 } # Dayang -> Ruicheng + link = { autogenerated = yes imp = 8348 imp = 8390 ck3 = 12857 } # Dayang, Impassable -> Ruicheng + link = { autogenerated = yes imp = 8343 imp = 8356 imp = 8389 ck3 = 12812 } # Hu, Hongnong, Impassable -> Hongnong_Guozhou link = { autogenerated = yes imp = 8334 imp = 8336 ck3 = 12766 } # Chang An, Zhiyang -> Wannian link = { autogenerated = yes imp = 8326 imp = 8341 ck3 = 12833 } # Wucheng, Yinjin -> Huayin link = { autogenerated = yes imp = 8323 imp = 8325 imp = 8330 ck3 = 12826 } # Gaoling, Yueyang, Jingyang -> Jingyang link = { autogenerated = yes imp = 8318 imp = 8321 ck3 = 12760 } # Hu, Impassable -> Chuxian - link = { imp = 8317 ck3 = 12765 ck3 = 12752 } # Wugong -> Zhouzhi, Baoxiedao - link = { imp = 8311 ck3 = 12797 ck3 = 12782 } # Guo -> Chencang, Meixian link = { autogenerated = yes imp = 8297 ck3 = 12846 } # Didao -> Weizhouxiangwu link = { autogenerated = yes imp = 8286 ck3 = 12862 } # Long -> Qingshui link = { autogenerated = yes imp = 828 imp = 908 ck3 = 4884 } # Terqa, Hindanu -> SUKAYR AL-ABBAS link = { autogenerated = yes imp = 8274 ck3 = 12926 } # Jingyang -> Pingliang link = { autogenerated = yes imp = 8263 ck3 = 9416 } # Haomen -> Ledu link = { autogenerated = yes imp = 8256 ck3 = 7510 ck3 = 8709 } # Pulei -> Barkol, TIANSHAN - link = { autogenerated = yes imp = 8245 ck3 = 9514 } # Shandan -> Shandan - link = { autogenerated = yes imp = 824 imp = 825 ck3 = 4883 } # Qatnu, Magdalu -> MAKISIN + link = { autogenerated = yes imp = 825 ck3 = 4881 } # Magdalu -> ASH-SHAMSANIYA + link = { autogenerated = yes imp = 824 ck3 = 4883 ck3 = 4849 } # Qatnu -> MAKISIN, AL-HAYYAL link = { autogenerated = yes imp = 8221 ck3 = 7464 ck3 = 7499 } # Jie -> Qibu, Wujyaqu link = { autogenerated = yes imp = 8220 imp = 8218 ck3 = 7460 } # Beilu, Wutugu -> Beshbaliq link = { autogenerated = yes imp = 8219 ck3 = 7463 ck3 = 7461 } # Houcheng -> Guqung, Nasivi - link = { imp = 8024 imp = 8025 ck3 = 3787 } # Volustana Pass, Petra Pass -> Servia + link = { autogenerated = yes imp = 8024 ck3 = 3787 } # Volustana Pass -> Servia link = { autogenerated = yes imp = 801 ck3 = 5945 ck3 = 1343 } # Helela -> AS-SUKHNA, SYRIAN DESERT link = { autogenerated = yes imp = 7968 imp = 5166 ck3 = 5674 } # Kyinda, IMPASSIBLE TERRAIN 166 -> Soloi link = { autogenerated = yes imp = 7962 ck3 = 5637 } # Ano Kotradis -> Adrasos link = { autogenerated = yes imp = 7845 imp = 5190 ck3 = 5710 } # Tordan, IMPASSIBLE TERRAIN 190 -> Camacha - link = { autogenerated = yes imp = 7811 ck3 = 121 } # Turuntia -> NEUENBURG + link = { autogenerated = yes imp = 7812 ck3 = 112 } # Turuntia Borealis -> KANDAVA link = { autogenerated = yes imp = 7723 ck3 = 6021 ck3 = 6023 } # Durum -> MATARA-IRAQ, AIN_SAID link = { autogenerated = yes imp = 767 imp = 769 imp = 771 ck3 = 5918 } # Botrys, Tripolis, Arca -> TRIPOLIS link = { autogenerated = yes imp = 7660 imp = 7287 ck3 = 1303 } # Abad, Impassable -> Ranikot - link = { imp = 763 imp = 764 imp = 765 ck3 = 5926 } # Heliopolis, Chalcis sub Libano, Berothe -> BAALBAK + link = { autogenerated = yes imp = 7644 ck3 = 5323 } # Donetsk -> Volcha + link = { autogenerated = yes imp = 762 imp = 763 imp = 764 imp = 765 imp = 5997 ck3 = 5926 } # Conna, Heliopolis, Chalcis sub Libano, Berothe, Antilibanus Mons -> BAALBAK link = { autogenerated = yes imp = 7582 imp = 7583 ck3 = 6340 } # Soleb, Kedurma -> DELGO link = { autogenerated = yes imp = 7570 imp = 7571 imp = 7572 imp = 7573 ck3 = 6269 } # UNINHABITABLE, UNINHABITABLE, UNINHABITABLE, UNINHABITABLE -> DUQM link = { autogenerated = yes imp = 7566 imp = 7567 imp = 968 ck3 = 6002 } # UNINHABITABLE, UNINHABITABLE, Eridu -> AL-AKHADID link = { autogenerated = yes imp = 7562 ck3 = 6169 } # UNINHABITABLE -> ZUBALA link = { autogenerated = yes imp = 7563 imp = 7564 ck3 = 6000 } # UNINHABITABLE, UNINHABITABLE -> WAQISA link = { autogenerated = yes imp = 7546 ck3 = 8338 } # UNINHABITABLE -> NORTH_AFAR - link = { autogenerated = yes imp = 7545 ck3 = 8299 ck3 = 8300 ck3 = 1088 } # Awash*** -> ADAFA, DOBA, WOLLO_HIGHLANDS + link = { autogenerated = yes imp = 7545 ck3 = 8299 ck3 = 8300 } # Awash*** -> ADAFA, DOBA link = { autogenerated = yes imp = 7544 ck3 = 8336 } # Karmille*** -> DABAHU link = { autogenerated = yes imp = 7541 ck3 = 8391 } # Jijiga*** -> ABBE link = { autogenerated = yes imp = 7539 ck3 = 8304 } # D'bark**** -> SEMIEN link = { autogenerated = yes imp = 7535 ck3 = 8401 } # Dumar* -> AMUD - link = { autogenerated = yes imp = 7523 imp = 7533 imp = 8107 ck3 = 8425 } # Emporion, Motta*, Somali Impassable -> MAIT + link = { autogenerated = yes imp = 7523 imp = 7533 ck3 = 8425 } # Emporion, Motta* -> MAIT link = { autogenerated = yes imp = 7519 ck3 = 8339 } # Punte -> AFAR - link = { autogenerated = yes imp = 751 imp = 752 imp = 753 imp = 7988 ck3 = 5937 } # Chalybon, Gerra, Segeira, Hermon Mons -> ANJAR link = { autogenerated = yes imp = 7499 ck3 = 840 } # Porsha* -> Ramavati link = { autogenerated = yes imp = 7463 imp = 5360 ck3 = 3965 } # Suktimati, IP 361 -> Dhamoni link = { autogenerated = yes imp = 7410 ck3 = 1275 } # Kora* -> Jajmau link = { autogenerated = yes imp = 7402 ck3 = 7944 ck3 = 9088 } # Kalesar* -> Sadhaura, Uttarkashi link = { autogenerated = yes imp = 7377 ck3 = 9092 } # Pilibhit -> Champawat link = { autogenerated = yes imp = 7352 ck3 = 810 ck3 = 821 } # Turupa* -> Charaideo, Herombial + link = { autogenerated = yes imp = 7346 ck3 = 9139 ck3 = 9142 } # Bhargava -> Daga, Sarpang link = { autogenerated = yes imp = 7339 ck3 = 819 ck3 = 820 } # Pragjyotishpura -> Sri_Surya_Pahar, Kamakhya - link = { autogenerated = yes imp = 7320 imp = 5364 ck3 = 907 } # Bandhavgarh, IP 365 -> Beohari + link = { autogenerated = yes imp = 7320 ck3 = 907 ck3 = 1165 } # Bandhavgarh -> Beohari, Bandhugadha link = { autogenerated = yes imp = 7256 ck3 = 7115 } # Zantak* -> Koskul link = { autogenerated = yes imp = 7252 imp = 7255 imp = 7279 ck3 = 900 } # Lek*, Palisha*, Masht* -> Yangikent link = { autogenerated = yes imp = 7246 imp = 7247 ck3 = 901 } # Yangikent, Altinasar -> Jend @@ -1402,8 +1452,6 @@ link = { autogenerated = yes imp = 7136 ck3 = 9653 } # Bhawanipatna******* -> Asurgarh link = { autogenerated = yes imp = 7114 ck3 = 1195 } # Tapia -> Bhamer link = { autogenerated = yes imp = 7099 ck3 = 7908 } # Goddvara -> Palampet - link = { autogenerated = yes imp = 7049 ck3 = 7904 } # Naconda -> Nalgonda - link = { autogenerated = yes imp = 7032 imp = 5313 ck3 = 7829 } # Tiruperur, IP 314 -> Kudalasangama_bis link = { autogenerated = yes imp = 7013 ck3 = 7842 } # Srisailam -> Addanki link = { autogenerated = yes imp = 7011 ck3 = 7866 } # Triparvata -> Shravana_Belgola link = { autogenerated = yes imp = 6988 imp = 5312 ck3 = 7833 } # Koval, IP 313 -> Kelrayan @@ -1411,22 +1459,19 @@ link = { autogenerated = yes imp = 6895 imp = 6904 imp = 6905 imp = 6916 ck3 = 7801 } # Muziris, Aloe, Kalakaris, Vanci -> Kunjakari link = { autogenerated = yes imp = 6867 ck3 = 7789 } # Kalyana -> Ambaranatha link = { autogenerated = yes imp = 6850 imp = 6852 imp = 7220 imp = 4357 imp = 6059 ck3 = 3398 } # Sura, Samarabriva, Saraswata, Umarkot, Marudesa -> Amarkot - link = { autogenerated = yes imp = 6834 ck3 = 3360 } # Kalavad -> Bhumilka link = { autogenerated = yes imp = 6821 ck3 = 3402 } # Alexandrou -> Thatta link = { autogenerated = yes imp = 6768 ck3 = 4356 } # Kokcha -> Jerm - link = { autogenerated = yes imp = 6763 ck3 = 4365 ck3 = 2702 } # Bulaq -> Murghab, PERSIAN IMPASSABLE link = { autogenerated = yes imp = 6745 ck3 = 9606 ck3 = 9608 } # Keriya -> Mohas, Keriya link = { autogenerated = yes imp = 6743 ck3 = 9613 ck3 = 13526 } # Shiyan -> Canggui, Yuetgan link = { autogenerated = yes imp = 6724 ck3 = 4237 } # Teyen -> Shawashkan link = { autogenerated = yes imp = 6686 ck3 = 4351 } # Termaio -> Khulm link = { autogenerated = yes imp = 6671 imp = 5263 ck3 = 4008 } # Parnia, IMPASSIBLE TERRAIN 263 -> Dandanqan link = { autogenerated = yes imp = 6668 ck3 = 4239 ck3 = 4238 } # Antiocheia -> Kushmaihan, Merv - link = { autogenerated = yes imp = 6662 imp = 5264 ck3 = 4010 } # Abivard, IMPASSIBLE TERRAIN 264 -> Mazduran - link = { autogenerated = yes imp = 6660 ck3 = 4043 } # Bandiyan -> Khabushan + link = { autogenerated = yes imp = 6662 ck3 = 4010 } # Abivard -> Mazduran + link = { autogenerated = yes imp = 6660 imp = 5264 ck3 = 4043 } # Bandiyan, IMPASSIBLE TERRAIN 264 -> Khabushan link = { autogenerated = yes imp = 6658 imp = 6659 imp = 5437 ck3 = 4042 } # Gathar, Kala, UNINHABITABLE -> Nasa - link = { autogenerated = yes imp = 6643 ck3 = 4224 ck3 = 4227 } # Sherak -> Khasht, Ghur - link = { imp = 6642 imp = 6628 imp = 6631 ck3 = 4232 } # Paropamisia, Nysa, Daroidia -> Ribat-e-Karyan - link = { imp = 6636 ck3 = 4231 } # Tambyziana -> Dih-e-Khalaf + link = { autogenerated = yes imp = 6642 imp = 6628 ck3 = 4232 } # Paropamisia, Nysa -> Ribat-e-Karyan + link = { autogenerated = yes imp = 6636 imp = 6631 ck3 = 4231 } # Tambyziana, Daroidia -> Dih-e-Khalaf link = { autogenerated = yes imp = 6590 imp = 7284 ck3 = 4278 } # Sacasteniana, Impassable -> Qantarat Kirman link = { autogenerated = yes imp = 6585 ck3 = 4279 } # Taftan -> Ladhir link = { autogenerated = yes imp = 6582 ck3 = 4263 } # Tarucano -> Manujan @@ -1441,13 +1486,12 @@ link = { autogenerated = yes imp = 6504 imp = 3475 ck3 = 4056 } # Rabat, Chadormalu -> Khazana link = { autogenerated = yes imp = 6503 ck3 = 4061 } # Bayazeh -> Biyadaq link = { autogenerated = yes imp = 6500 imp = 5250 ck3 = 4058 } # Malek, IMPASSIBLE TERRAIN 250 -> Wandah - link = { imp = 6487 ck3 = 4706 } # Mdakra -> MRIRA - link = { imp = 6479 ck3 = 4747 } # Bouzerrara -> TIT-AN-WAGURRAMT - link = { autogenerated = yes imp = 6256 imp = 6258 ck3 = 5075 } # Venediana, Cariala -> Kholm + link = { autogenerated = yes imp = 6487 imp = 6483 ck3 = 4706 } # Mdakra, More Middle Atlas -> MRIRA + link = { autogenerated = yes imp = 6479 imp = 6488 ck3 = 4747 } # Bouzerrara, Middle Atlas -> TIT-AN-WAGURRAMT + link = { autogenerated = yes imp = 624 imp = 9922 imp = 9923 ck3 = 6346 } # Mambil, Meragh, Hosh -> GRNETTI link = { autogenerated = yes imp = 6235 ck3 = 5092 } # Anakkesta -> Kolodiazhen - link = { autogenerated = yes imp = 622 imp = 624 imp = 9922 imp = 9923 ck3 = 6346 } # Zamnes, Mambil, Meragh, Hosh -> GRNETTI link = { autogenerated = yes imp = 620 imp = 621 imp = 623 ck3 = 6360 } # Arcas, Tergendum, Dumuna -> DIFFAR - link = { autogenerated = yes imp = 615 imp = 616 imp = 618 imp = 619 ck3 = 6345 } # Pago, Mulon, Urbim, Segasa -> DEBBA + link = { autogenerated = yes imp = 615 imp = 616 imp = 618 imp = 619 imp = 622 ck3 = 6345 } # Pago, Mulon, Urbim, Segasa, Zamnes -> DEBBA link = { autogenerated = yes imp = 614 imp = 617 ck3 = 6344 } # Bagada, Breues -> OLD-DONGOLA link = { autogenerated = yes imp = 612 imp = 613 ck3 = 6342 } # Direla, Patigga -> KEMNA link = { autogenerated = yes imp = 608 imp = 610 ck3 = 6341 } # Paroa, Prummu -> TUMBUS @@ -1455,19 +1499,18 @@ link = { autogenerated = yes imp = 604 ck3 = 6337 } # Semna -> SEMNA link = { autogenerated = yes imp = 602 ck3 = 6335 } # Tamania -> SERRA link = { autogenerated = yes imp = 601 ck3 = 6334 } # Serra -> QASR_IBRIM - link = { autogenerated = yes imp = 600 imp = 603 imp = 5521 ck3 = 6336 } # Pachora, Boon, Boron -> FARAS link = { autogenerated = yes imp = 597 ck3 = 6332 } # Tene -> KOROSKO - link = { autogenerated = yes imp = 594 imp = 596 ck3 = 6331 } # Tachampso, Aramum -> SAYALA + link = { autogenerated = yes imp = 596 ck3 = 6330 } # Aramum -> IKHMINDI + link = { autogenerated = yes imp = 594 ck3 = 6331 } # Tachampso -> SAYALA link = { autogenerated = yes imp = 5916 ck3 = 7075 } # Chevka -> Sam - link = { autogenerated = yes imp = 590 ck3 = 6119 } # Novum Hydreuma -> CENTRAL_JBL_QUZLUM + link = { autogenerated = yes imp = 590 imp = 584 imp = 585 ck3 = 6119 } # Novum Hydreuma, Vetus Hydreuma, Lahami -> CENTRAL_JBL_QUZLUM + link = { autogenerated = yes imp = 5869 ck3 = 5309 } # Magrai -> Tserlona link = { autogenerated = yes imp = 568 imp = 569 imp = 572 ck3 = 6077 } # Petemout, Diospolis Magna/Luxor, Hermonthis -> QUS link = { autogenerated = yes imp = 5629 ck3 = 9187 ck3 = 9121 ck3 = 9185 } # Koryi -> Dinggye, Bhojpur, Tingri link = { autogenerated = yes imp = 5609 ck3 = 9066 } # Tarok -> Coqen - link = { autogenerated = yes imp = 5602 ck3 = 13525 } # PASS -> 13525 - link = { autogenerated = yes imp = 5600 ck3 = 7951 ck3 = 7948 } # Parsni -> Kalam_TARIM, Allai - link = { autogenerated = yes imp = 5597 ck3 = 7950 } # Kargah -> Chilas - link = { autogenerated = yes imp = 5599 ck3 = 7952 } # Teclas -> Shandur - link = { autogenerated = yes imp = 5591 ck3 = 9012 } # Leh -> Dipsang + link = { autogenerated = yes imp = 5591 imp = 5602 ck3 = 9012 } # Leh, PASS -> Dipsang + link = { autogenerated = yes imp = 5568 ck3 = 9006 ck3 = 9007 ck3 = 3293 } # Mune -> Demchok, Hanle, KUNLUNSHAN + link = { autogenerated = yes imp = 5565 ck3 = 9010 ck3 = 9009 ck3 = 9011 } # Aparing -> Panamik, Diskit, Turtuk link = { autogenerated = yes imp = 5554 imp = 5550 ck3 = 6117 } # Sanus*, Alexandrou -> QARA link = { autogenerated = yes imp = 5510 ck3 = 6085 } # Mothis -> MUT link = { autogenerated = yes imp = 549 imp = 550 ck3 = 6067 } # Hermopolis Magna/Schmun, Thynis -> AL-USHMUNAIN @@ -1489,7 +1532,7 @@ link = { autogenerated = yes imp = 505 ck3 = 6039 } # Klysma -> QUZLUM link = { autogenerated = yes imp = 503 imp = 507 imp = 7668 ck3 = 6040 } # Bubastis, Leontopolis(Hel), Bilbeis -> BILBAYS link = { autogenerated = yes imp = 500 imp = 501 ck3 = 6042 } # Memphis, (Unknown) -> CAIRO - link = { imp = 4996 imp = 4998 imp = 5236 ck3 = 4317 } # Amol, Shirga, IMPASSIBLE TERRAIN 236 -> Uram + link = { autogenerated = yes imp = 4996 imp = 4998 ck3 = 4317 } # Amol, Shirga -> Uram link = { autogenerated = yes imp = 4991 imp = 4992 ck3 = 4318 } # Rhagai, Portae -> Dumbawand link = { autogenerated = yes imp = 4988 imp = 5221 ck3 = 4325 } # Aganzana, IMPASSIBLE TERRAIN 221 -> Zanjan link = { autogenerated = yes imp = 4976 imp = 4979 ck3 = 4114 } # Khureh, Rahjerd -> Abta'a @@ -1500,13 +1543,11 @@ link = { autogenerated = yes imp = 4964 imp = 5240 ck3 = 4115 } # Malaver, IMPASSIBLE TERRAIN 240 -> Karaj Abu Dulaf link = { autogenerated = yes imp = 4951 ck3 = 4119 } # Pasargadae -> Mayin link = { autogenerated = yes imp = 4950 imp = 4953 ck3 = 4304 } # Persides, Croatis -> Khubadan - link = { autogenerated = yes imp = 4949 ck3 = 4120 } # Kaupirrish -> Abraj link = { autogenerated = yes imp = 493 ck3 = 3634 } # Perperakion -> Haskovo link = { autogenerated = yes imp = 4908 ck3 = 539 ck3 = 721 } # Mallites* -> Marmaros, CARPATHIANS link = { autogenerated = yes imp = 4884 ck3 = 3912 } # Acronodumia* -> Nagykaroly link = { autogenerated = yes imp = 4821 imp = 4280 ck3 = 5008 } # Ardeiscus, Arutela -> Arges link = { autogenerated = yes imp = 4797 ck3 = 4178 } # Seraz -> Kubanjan - link = { autogenerated = yes imp = 4771 ck3 = 3058 } # Leucaristus -> LEGNICA link = { autogenerated = yes imp = 4679 ck3 = 6308 ck3 = 6301 ck3 = 6309 } # Sau -> QUTN, HISN_AL-ABR, HURAYDA link = { autogenerated = yes imp = 4676 imp = 4677 ck3 = 6296 } # Shabwa, Harai -> SHABWA link = { autogenerated = yes imp = 4672 imp = 4674 ck3 = 6300 } # Labaeta, Karna -> WABAR @@ -1521,9 +1562,9 @@ link = { autogenerated = yes imp = 4604 ck3 = 6194 } # Laba -> AN-NABAK link = { autogenerated = yes imp = 459 ck3 = 3701 } # Leucas -> Vonitsa link = { autogenerated = yes imp = 458 imp = 7801 ck3 = 3698 } # Chaleion, Corax Mons -> Lidoriki - link = { autogenerated = yes imp = 4568 imp = 7616 imp = 5322 ck3 = 5298 } # PalaiaAchaia, Tmakrat, IP 323 -> Ulmi + link = { autogenerated = yes imp = 456 imp = 457 imp = 7803 imp = 5065 ck3 = 475 } # Thermon, Naupaktos, Calydon, IMPASSIBLE TERRAIN 065 -> Hellas + link = { autogenerated = yes imp = 4535 ck3 = 559 } # Masella -> Kalos Limen link = { autogenerated = yes imp = 4523 ck3 = 5012 } # Kremniskoi -> Chilia - link = { autogenerated = yes imp = 4468 imp = 5361 ck3 = 3962 } # Nachna-Kuthara, IP 362 -> Khajuraho link = { autogenerated = yes imp = 4417 ck3 = 3454 } # Tohana* -> Samana link = { autogenerated = yes imp = 4375 ck3 = 1374 } # Mesai -> Rojhan link = { autogenerated = yes imp = 4368 ck3 = 4487 } # Avanta -> QANDABIL @@ -1531,12 +1572,12 @@ link = { autogenerated = yes imp = 4355 ck3 = 3404 } # Sindhimana(Sehwan) -> Sharusan link = { autogenerated = yes imp = 4353 imp = 4360 ck3 = 1333 } # Brahmanaka, Sarophages -> Siwistan link = { autogenerated = yes imp = 4352 ck3 = 1175 } # Roruka -> Aror - link = { autogenerated = yes imp = 4341 imp = 4345 imp = 5348 ck3 = 1190 } # Akhnur, Jhelum, IP 349 -> Gurjaratra - link = { autogenerated = yes imp = 4334 imp = 4338 imp = 4343 ck3 = 3445 } # Harvan, Anantanaga, Banihal Pass -> Amaresvara - link = { autogenerated = yes imp = 4332 imp = 4333 ck3 = 1161 } # Puranadisthana/Srinagar, Huskapura -> Srinagara + link = { autogenerated = yes imp = 4341 imp = 4345 ck3 = 1190 } # Akhnur, Jhelum -> Gurjaratra + link = { autogenerated = yes imp = 4336 ck3 = 16297 ck3 = 16299 ck3 = 16306 } # Varahasaila Pass -> Rawalakot, Sharda, 16306 link = { autogenerated = yes imp = 4318 imp = 6612 ck3 = 4523 } # Apritas, Begram -> Khost link = { autogenerated = yes imp = 4316 ck3 = 3435 } # Boukephalia -> Jhelum link = { autogenerated = yes imp = 4310 ck3 = 3618 } # Kardzhali -> Zherkovo + link = { autogenerated = yes imp = 4300 imp = 4301 ck3 = 3440 } # Pushkalavati, Nagarahara -> Shergarh link = { autogenerated = yes imp = 430 imp = 473 imp = 7889 ck3 = 3736 } # Gytheion, Leuktron, Tainaron -> Mistra link = { autogenerated = yes imp = 43 ck3 = 2615 ck3 = 789 } # Beneventum -> MELFI, Southern Apennine Mountains link = { autogenerated = yes imp = 4289 imp = 5114 ck3 = 3936 } # Ampelum, IMPASSIBLE TERRAIN 114 -> Abrudbanya @@ -1545,17 +1586,15 @@ link = { autogenerated = yes imp = 4244 imp = 5107 ck3 = 3684 } # Tylis, IMPASSIBLE TERRAIN 107 -> Gabrovo link = { autogenerated = yes imp = 4222 imp = 5095 ck3 = 3662 } # Turres, IMPASSIBLE TERRAIN 095 -> Pirot link = { autogenerated = yes imp = 4185 imp = 4187 ck3 = 3608 } # Stravianis, Mursella -> Orahovica - link = { autogenerated = yes imp = 4119 ck3 = 3587 ck3 = 3599 } # Celegerorum -> Gradac, Koznik link = { autogenerated = yes imp = 4116 imp = 5096 ck3 = 3663 } # Ballanstra, IMPASSIBLE TERRAIN 096 -> Breznik - link = { imp = 4113 ck3 = 3659 ck3 = 3593 } # Vindenis -> Novo Brdo, Podujevo + link = { autogenerated = yes imp = 4113 ck3 = 3593 ck3 = 3659 } # Vindenis -> Podujevo, Novo Brdo link = { autogenerated = yes imp = 4109 ck3 = 3654 ck3 = 3658 } # Anausaro -> Bosilegrad, Vranje - link = { autogenerated = yes imp = 4105 ck3 = 3582 ck3 = 3559 ck3 = 3583 } # Pecina -> Gorazde, Obalj, Hotca + link = { autogenerated = yes imp = 4105 ck3 = 3582 ck3 = 3559 ck3 = 3583 ck3 = 3585 } # Pecina -> Gorazde, Obalj, Hotca, Breznica link = { autogenerated = yes imp = 4092 ck3 = 3579 } # AdPicarias -> Danj - link = { autogenerated = yes imp = 4089 ck3 = 469 } # Diocleia -> Zeta - link = { imp = 4027 imp = 4028 imp = 5032 ck3 = 3097 } # Latobicorum, Neviodunum, IMPASSIBLE TERRAIN 032 -> DOBOVEC + link = { autogenerated = yes imp = 4089 imp = 5079 ck3 = 469 } # Diocleia, IMPASSIBLE TERRAIN 079 -> Zeta + link = { autogenerated = yes imp = 408 imp = 5073 ck3 = 3640 } # Arnisa, IMPASSIBLE TERRAIN 073 -> Kastoria link = { autogenerated = yes imp = 4023 ck3 = 2523 ck3 = 3095 } # Tarsatica -> RIJEKA, RIBNICA link = { autogenerated = yes imp = 3994 ck3 = 3180 } # Silingia -> JUTERBOG - link = { autogenerated = yes imp = 397 ck3 = 3651 } # Stobi -> Prosek link = { autogenerated = yes imp = 396 imp = 5069 ck3 = 3796 } # Pelinna, IMPASSIBLE TERRAIN 069 -> Stagoi link = { autogenerated = yes imp = 384 ck3 = 3781 } # Gortynia -> Maglen link = { autogenerated = yes imp = 3782 ck3 = 2446 } # Amsivaria -> TECKLENBURG @@ -1563,14 +1602,14 @@ link = { autogenerated = yes imp = 3723 ck3 = 2695 } # Bingium -> BOPPARD link = { autogenerated = yes imp = 3691 ck3 = 2705 } # VicusContiomagus -> FORBACH link = { autogenerated = yes imp = 3678 ck3 = 2114 } # Condacum -> GHENT + link = { autogenerated = yes imp = 3668 imp = 3671 ck3 = 3099 } # Teurnia, Virunum -> VILLACH link = { autogenerated = yes imp = 3666 ck3 = 2953 ck3 = 2948 ck3 = 2976 } # Mastiacum -> KUFSTEIN, TOLZ, KITZBUHEL - link = { autogenerated = yes imp = 3660 imp = 3661 ck3 = 2495 } # Salurnis, Tridentium -> VAL CAMONICA + link = { autogenerated = yes imp = 3664 ck3 = 2952 ck3 = 3134 } # Sebatum -> BRUNECK, LIENZ link = { autogenerated = yes imp = 3658 imp = 3659 ck3 = 2498 } # MaiensisStatio, Vadena -> BOLZANO - link = { imp = 3655 ck3 = 2950 ck3 = 2790 } # Tiralia -> INNSBRUCK, HOHENSCHWANGAU + link = { autogenerated = yes imp = 3655 ck3 = 2950 ck3 = 2790 } # Tiralia -> INNSBRUCK, HOHENSCHWANGAU link = { autogenerated = yes imp = 3646 ck3 = 3133 } # Tergolape -> WELS link = { autogenerated = yes imp = 3636 ck3 = 2053 ck3 = 2787 } # Brigantium -> SANKT GALLEN, BREGENZ link = { autogenerated = yes imp = 3617 ck3 = 2789 } # Clavenna -> VARES - link = { autogenerated = yes imp = 3600 ck3 = 2500 } # Acelum -> VICENZA link = { autogenerated = yes imp = 360 ck3 = 3622 } # Porsulae -> Byalgrad link = { autogenerated = yes imp = 3576 imp = 5021 ck3 = 2490 } # Florentiola, IMPASSIBLE TERRAIN 021 -> FLORENTIOLA link = { autogenerated = yes imp = 3574 ck3 = 2488 ck3 = 2487 } # Clastidium -> PIACENZA, VOGHERA @@ -1594,88 +1633,74 @@ link = { autogenerated = yes imp = 3389 imp = 5220 ck3 = 4001 } # Shiram, IMPASSIBLE TERRAIN 220 -> Daylam link = { autogenerated = yes imp = 3376 imp = 3377 imp = 3378 ck3 = 6096 } # Selenis, Apis, Paraetonium -> KANAIS_AL-HADID link = { autogenerated = yes imp = 3362 imp = 3364 imp = 3367 ck3 = 6100 } # Agabis, Marandis, PetrasMikros -> WADI_MAKHIL - link = { imp = 3351 imp = 3357 ck3 = 6102 } # Chairekla, Barke -> WADI MASUS - link = { imp = 3349 imp = 3347 ck3 = 6103 } # ZauTaberna, Talliamunera -> JABAL_AL-GHARBI - link = { autogenerated = yes imp = 3339 imp = 3340 imp = 3341 ck3 = 4550 } # Automalax, Mendrion, Astrochonda -> AL-AGHAILA - link = { imp = 3338 imp = 9953 imp = 9954 imp = 9955 imp = 9956 ck3 = 4553 } # AraePhilaenorum, Jabbanah, Maradah, Jafr, Talhah -> TAJRIFT + link = { autogenerated = yes imp = 3349 ck3 = 6103 } # ZauTaberna -> JABAL_AL-GHARBI + link = { autogenerated = yes imp = 3339 imp = 3340 imp = 3341 imp = 3338 ck3 = 4550 } # Automalax, Mendrion, Astrochonda, AraePhilaenorum -> AL-AGHAILA + link = { autogenerated = yes imp = 9953 imp = 9954 imp = 9955 imp = 9956 imp = 9957 imp = 9968 ck3 = 4553 } # Jabbanah, Maradah, Jafr, Talhah, Tagrifet, Harawah -> TAJRIFT link = { autogenerated = yes imp = 3310 ck3 = 6366 } # Ameta* -> WAD_HAMID link = { autogenerated = yes imp = 3309 ck3 = 2226 } # Canniaco -> RODEZ - link = { imp = 3239 imp = 3240 imp = 3241 ck3 = 4592 } # Uzappa, Seressi, FurnosMaius -> JALULA - link = { imp = 3129 imp = 3131 imp = 3136 imp = 3137 imp = 3119 ck3 = 4648 } # ThanaramusaCastra, Auzia, Ausum, Bessemium, Lambdia -> MEDEA - link = { imp = 3128 imp = 3130 ck3 = 4762 } # PhruraesiusMons, Rapidum -> SERSOU + link = { autogenerated = yes imp = 3239 imp = 3240 imp = 3241 imp = 8142 ck3 = 4592 } # Uzappa, Seressi, FurnosMaius, Africa Impassable -> JALULA + link = { autogenerated = yes imp = 32 imp = 5006 ck3 = 2607 } # Aecernia, IMPASSIBLE TERRAIN 006 -> ISERNIA + link = { autogenerated = yes imp = 3129 imp = 3131 imp = 3136 imp = 3137 imp = 5154 ck3 = 4648 } # ThanaramusaCastra, Auzia, Ausum, Bessemium, IMPASSIBLE TERRAIN 154 -> MEDEA + link = { autogenerated = yes imp = 3128 imp = 3130 ck3 = 4762 } # PhruraesiusMons, Rapidum -> SERSOU link = { autogenerated = yes imp = 3110 imp = 3112 imp = 3114 imp = 3115 imp = 3117 ck3 = 4654 } # CastellumTingitanum, CastraGermanorum, OppidumDefinum, Zucchabar, Sufasar -> MILIYANA link = { imp = 3127 ck3 = 4647 } # CinnabaMons -> ASHIR-YASHIR - link = { imp = 3105 ck3 = 4658 } # Columnata -> AL-'UBBAD + link = { autogenerated = yes imp = 3105 ck3 = 4658 } # Columnata -> AL-'UBBAD link = { autogenerated = yes imp = 3104 ck3 = 4659 } # Cenavicum -> TAHART - link = { imp = 3103 ck3 = 4660 ck3 = 4662 } # Breucorum -> QALA'A IBN SALAMA, HISN LAWATA - link = { autogenerated = yes imp = 3098 imp = 3099 ck3 = 4657 } # AquaeSirenses, AlaMiliaria -> AL-GABAL + link = { imp = 3098 ck3 = 4657 } # AquaeSirenses -> AL-GABAL + link = { imp = 3099 ck3 = 4660 } # AlaMiliaria -> QALA'A IBN SALAMA + link = { imp = 3103 ck3 = 4662 } # Breucorum -> HISN LAWATA link = { autogenerated = yes imp = 3096 imp = 3097 ck3 = 4663 } # Tasaccora, Lucu -> MUASKAR link = { autogenerated = yes imp = 3085 ck3 = 4681 } # Tamuda -> TITTAWAN - link = { imp = 3084 ck3 = 4672 ck3 = 4673 } # Syrorum -> TLEMCEN, TAFRAOUA-SEBDOU + link = { autogenerated = yes imp = 3084 ck3 = 4672 } # Syrorum -> TLEMCEN link = { autogenerated = yes imp = 3075 ck3 = 4688 } # Viposcianae -> WARGHA - link = { imp = 3059 imp = 3060 ck3 = 1607 } # Bravoniacum, FanumCocidi -> HARTLEPOOL + link = { autogenerated = yes imp = 3059 imp = 3060 imp = 5980 ck3 = 1607 } # Bravoniacum, FanumCocidi, Central British Impassable -> HARTLEPOOL link = { autogenerated = yes imp = 3014 ck3 = 2077 } # PortusAlbucinus -> VESOUL - link = { imp = 292 imp = 293 imp = 295 imp = 7752 ck3 = 5545 } # Sardis, Philadelpheia, Hypaipa, Tmolus Mons -> Sardes link = { autogenerated = yes imp = 2497 ck3 = 2387 } # Nasium -> VAUCOULEURS - link = { imp = 249 imp = 250 imp = 7755 ck3 = 5554 } # Prusa, Germanikopolis, Olympus Mons -> Apemea - link = { autogenerated = yes imp = 2458 ck3 = 2321 } # Vindocinium -> CHATEAUDUN link = { autogenerated = yes imp = 2456 ck3 = 2272 } # Labrinum -> COURCILLON - link = { autogenerated = yes imp = 2443 ck3 = 2179 } # Rotomagus -> ROUEN link = { autogenerated = yes imp = 2305 imp = 5045 ck3 = 2068 } # Augusta, IMPASSIBLE TERRAIN 045 -> ROMANS link = { autogenerated = yes imp = 2300 ck3 = 2298 } # AquaeSegetae -> MONTBRISON - link = { imp = 2286 ck3 = 2300 ck3 = 2225 ck3 = 2296 } # Vellavorum -> AMBERT, LE PUY, VELAY - link = { autogenerated = yes imp = 2264 ck3 = 3721 } # Clodiana -> Hiskampis - link = { imp = 2263 ck3 = 2215 } # Albiga -> ALBI + link = { autogenerated = yes imp = 2286 ck3 = 2300 ck3 = 2225 ck3 = 2291 } # Vellavorum -> AMBERT, LE PUY, LANGEAC + link = { autogenerated = yes imp = 2264 ck3 = 3721 ck3 = 3520 } # Clodiana -> Hiskampis, Valamara + link = { autogenerated = yes imp = 2263 imp = 5050 ck3 = 2215 } # Albiga, IMPASSIBLE TERRAIN 050 -> ALBI link = { autogenerated = yes imp = 2261 ck3 = 2220 ck3 = 2219 } # Luteva -> NAVACELLES, LODEVE + link = { autogenerated = yes imp = 2247 ck3 = 2194 } # Beneharnum -> TURSAN link = { autogenerated = yes imp = 2120 ck3 = 1709 ck3 = 1703 ck3 = 1710 ck3 = 8775 } # Caledonii -> INVERNESS, DINGWALL, BADENOCH, Urquhart - link = { autogenerated = yes imp = 2026 ck3 = 1557 } # Durocornovium -> ABINGDON + link = { autogenerated = yes imp = 2026 ck3 = 1558 } # Durocornovium -> OXFORD + link = { autogenerated = yes imp = 199 imp = 5171 imp = 7920 ck3 = 5585 } # Kandara, IMPASSIBLE TERRAIN 171, Kandara Mountains -> Castamon link = { autogenerated = yes imp = 1979 ck3 = 736 ck3 = 5626 } # Baka -> Lykandos, Faustinopolis link = { autogenerated = yes imp = 1916 imp = 1975 ck3 = 759 } # Kanna, Barata -> Ikonion link = { autogenerated = yes imp = 1901 imp = 1904 imp = 1917 imp = 5165 ck3 = 5638 } # Anemourion, Syedra, Lakaine, IMPASSIBLE TERRAIN 165 -> Anemurium - link = { imp = 1795 imp = 1798 imp = 1801 ck3 = 705 } # Kotyora, Kerasous, Matuasco -> Cerasus + link = { autogenerated = yes imp = 1874 imp = 796 imp = 5180 ck3 = 4896 } # Epiphaneia, Issus/Nikopolis, IMPASSIBLE TERRAIN 180 -> TALL HAMID link = { autogenerated = yes imp = 1778 imp = 1779 imp = 8004 ck3 = 5702 } # Chorsabia, Olotoedariza, Analibna Mountains -> Kheranion link = { autogenerated = yes imp = 1771 imp = 1842 imp = 8005 ck3 = 5704 } # Domana, Zara, Pisingara Mountains -> Kamisa link = { autogenerated = yes imp = 1768 imp = 8001 ck3 = 5703 } # Til, Chorasbia Mountains -> Satala - link = { autogenerated = yes imp = 1759 ck3 = 5709 ck3 = 5737 } # Sper -> Speri, Tortomi - link = { autogenerated = yes imp = 1756 ck3 = 5740 ck3 = 5736 } # Artanuji -> Arthanuji, Taoskari - link = { autogenerated = yes imp = 1752 ck3 = 5733 ck3 = 5734 } # Chorzene -> Zariskat, Kars - link = { autogenerated = yes imp = 1747 ck3 = 5713 ck3 = 680 } # Gymnias -> Mardali, Oltisi - link = { autogenerated = yes imp = 1745 ck3 = 600 } # Masaitike -> Nicopsia - link = { autogenerated = yes imp = 1741 imp = 1742 ck3 = 5745 } # Dioscurias / Sebastopolis, Tracheia -> Anacopia - link = { autogenerated = yes imp = 1731 imp = 1732 imp = 5175 ck3 = 5692 } # Ophis, Hyssos, IMPASSIBLE TERRAIN 175 -> Rhizus - link = { autogenerated = yes imp = 1729 imp = 1730 imp = 1757 imp = 5192 ck3 = 5696 } # Athenon Akron, Rhizaion, Kaballa, IMPASSIBLE TERRAIN 192 -> Archabis - link = { autogenerated = yes imp = 1726 imp = 1727 imp = 1728 imp = 1758 ck3 = 5697 } # Apsaros, Kissa, Morthoula, Pharangion -> Petra + link = { autogenerated = yes imp = 1767 ck3 = 15729 } # Eriza -> 15729 link = { autogenerated = yes imp = 1719 ck3 = 2289 } # Avitacum -> CLERMONT-SUR-ALLIER link = { autogenerated = yes imp = 1709 imp = 1710 ck3 = 6037 } # Naqb Jedid, Sina Meridionalis -> TIH - link = { autogenerated = yes imp = 1698 imp = 1744 imp = 1764 ck3 = 704 } # Sinara, Karin, Bizana/Leontopolis -> Theodosiopolis - link = { autogenerated = yes imp = 1691 imp = 1694 ck3 = 5742 } # Dedoplis, Surium -> Tskhinvali - link = { autogenerated = yes imp = 1683 imp = 1689 imp = 1692 ck3 = 5743 } # Aghaiani, Urbnisi, Tskhinvali -> Uplistsikhe - link = { autogenerated = yes imp = 1681 imp = 1673 ck3 = 5763 } # Aragvispiri, Iberian Gates / Porta Caucasica -> Nektesi - link = { autogenerated = yes imp = 1677 ck3 = 5758 } # Algeti -> Dmanisi - link = { autogenerated = yes imp = 1646 imp = 5209 ck3 = 5781 } # Gardman, IMPASSIBLE TERRAIN 209 -> Shamkur - link = { autogenerated = yes imp = 1625 imp = 1626 imp = 5217 ck3 = 4544 } # Kuh-i Bolagh, Mishkinshahr, IMPASSIBLE TERRAIN 217 -> SARAT - link = { autogenerated = yes imp = 1620 imp = 1621 imp = 5218 ck3 = 4540 } # Aharawan, Arvandj, IMPASSIBLE TERRAIN 218 -> AHAR - link = { autogenerated = yes imp = 1612 imp = 1686 imp = 5206 ck3 = 5759 } # Tbilisi, Samshvilde, IMPASSIBLE TERRAIN 206 -> Tbilisi - link = { autogenerated = yes imp = 1611 imp = 1657 imp = 5435 ck3 = 676 } # Sagarejo, Telavi, Kurus -> Telavi + link = { autogenerated = yes imp = 1692 ck3 = 16216 ck3 = 15913 ck3 = 5742 } # Tskhinvali -> Achabeti, 15913, Tskhinvali + link = { autogenerated = yes imp = 1624 imp = 5218 ck3 = 15694 } # Chaharla, IMPASSIBLE TERRAIN 218 -> 15694 + link = { autogenerated = yes imp = 1613 imp = 7737 ck3 = 5786 } # Shalat, Qarqar -> Goris link = { autogenerated = yes imp = 1601 ck3 = 4765 } # Nicea Nialia/Barsa -> SANDA link = { autogenerated = yes imp = 1599 imp = 1602 ck3 = 4781 } # Denabaran, Kermanshah -> KERMANSHAH - link = { imp = 1598 ck3 = 4784 } # Bisutun -> BISUTUN - link = { autogenerated = yes imp = 1592 imp = 1663 imp = 1666 ck3 = 5782 } # Akunk, Vaykunik, Koght -> Gardman - link = { autogenerated = yes imp = 1590 ck3 = 5727 } # Dzhrarat -> Kumayri + link = { autogenerated = yes imp = 1598 ck3 = 4784 } # Bisutun -> BISUTUN + link = { autogenerated = yes imp = 1591 imp = 5211 ck3 = 15762 } # Karchakhpyur, IMPASSIBLE TERRAIN 211 -> 15762 + link = { autogenerated = yes imp = 1580 ck3 = 15794 } # Katnakhpyur -> 15794 + link = { autogenerated = yes imp = 1577 imp = 1590 ck3 = 15802 } # Motene, Dzhrarat -> 15802 link = { autogenerated = yes imp = 1574 imp = 1578 ck3 = 4773 } # Kelishin Pass, Orontes -> KHUFTIYAN - link = { autogenerated = yes imp = 1566 imp = 1567 imp = 5199 ck3 = 5732 } # Didima, Bagauna, IMPASSIBLE TERRAIN 199 -> Patnos - link = { autogenerated = yes imp = 1563 imp = 5194 imp = 5195 ck3 = 5714 } # Acachia, IMPASSIBLE TERRAIN 194, IMPASSIBLE TERRAIN 195 -> Khinisi + link = { autogenerated = yes imp = 1566 ck3 = 5720 } # Didima -> Bagavan + link = { autogenerated = yes imp = 1564 imp = 5198 ck3 = 5731 } # Colchion, IMPASSIBLE TERRAIN 198 -> Valashkert + link = { autogenerated = yes imp = 1563 ck3 = 15733 } # Acachia -> 15733 link = { autogenerated = yes imp = 1558 ck3 = 4763 } # Karaftu -> ANDARAB - link = { autogenerated = yes imp = 1445 ck3 = 3714 } # Antipatreia -> Skrapar + link = { autogenerated = yes imp = 1525 ck3 = 4539 ck3 = 15667 } # Gurqal'eh -> UJAN, 15667 + link = { autogenerated = yes imp = 140 imp = 5128 ck3 = 2553 } # Festulae, IMPASSIBLE TERRAIN 128 -> CASENTINO link = { autogenerated = yes imp = 1281 imp = 1287 imp = 1396 ck3 = 1976 } # Basti, Salaria, Vergilia -> QUESADA - link = { autogenerated = yes imp = 12729 ck3 = 12770 ck3 = 12758 ck3 = 13722 } # Yaguk -> Berke, Ulabayan, 13722 - link = { autogenerated = yes imp = 12726 ck3 = 12596 ck3 = 13595 } # Yalil -> Chagannor_South, 13595 - link = { autogenerated = yes imp = 12697 ck3 = 9345 ck3 = 9346 ck3 = 9347 } # Snip -> Dzogchen, Manigango, Axu - link = { autogenerated = yes imp = 12690 ck3 = 9466 } # Nant -> Zainlha + link = { imp = 12723 ck3 = 12770 } # Tuman -> Berke + link = { autogenerated = yes imp = 12697 ck3 = 9340 ck3 = 9345 ck3 = 9346 ck3 = 9347 } # Snip -> Garze, Dzogchen, Manigango, Axu link = { autogenerated = yes imp = 12682 ck3 = 9446 ck3 = 9447 } # Tyam -> Maqen, Gade link = { autogenerated = yes imp = 12680 ck3 = 9427 ck3 = 9428 } # Mran -> Xigortang, Namtang link = { autogenerated = yes imp = 12585 ck3 = 5222 } # Valadak -> Velizh - link = { autogenerated = yes imp = 12576 ck3 = 5231 } # Udar -> Tula + link = { autogenerated = yes imp = 12534 ck3 = 5370 } # Inzej -> Uza + link = { autogenerated = yes imp = 12468 ck3 = 889 } # Olan -> Ural link = { autogenerated = yes imp = 124 ck3 = 8760 } # Cortona -> Asciano link = { autogenerated = yes imp = 12330 ck3 = 7254 } # Abhras -> Tibis Sor link = { autogenerated = yes imp = 12257 ck3 = 13746 } # Maylybay -> Qaratal @@ -1684,7 +1709,8 @@ link = { autogenerated = yes imp = 11538 imp = 5365 ck3 = 1248 } # Baragaon, IP 366 -> Chutia link = { autogenerated = yes imp = 11530 ck3 = 912 } # Shikharji -> Shikarji link = { autogenerated = yes imp = 11515 imp = 11516 ck3 = 3997 } # Lahunipara, Deogarh -> Rajgangpur - link = { imp = 11508 imp = 11507 imp = 5968 ck3 = 4460 } # Nazarkhan, Kukcha, Karakum Dessert Impassable -> KURDAR + link = { autogenerated = yes imp = 11508 imp = 11506 imp = 11507 imp = 5968 ck3 = 4460 } # Nazarkhan, Qo'yqirilgan, Kukcha, Karakum Dessert Impassable -> KURDAR + link = { autogenerated = yes imp = 1145 ck3 = 1819 } # Gemestarum -> MONFORTE DE LEMOS link = { autogenerated = yes imp = 11415 ck3 = 7263 } # Zazi -> Jilali link = { autogenerated = yes imp = 11393 ck3 = 7142 } # Magat -> Kulan link = { autogenerated = yes imp = 11307 ck3 = 7232 } # Kuyandy -> Jarkul @@ -1723,64 +1749,63 @@ link = { autogenerated = yes imp = 10498 imp = 10499 imp = 10500 ck3 = 8505 } # Bililicweyn, Garowe, Laanle -> UPPER_NUGAAL link = { autogenerated = yes imp = 10489 ck3 = 8507 } # Raas Xoor -> DHUUDO link = { autogenerated = yes imp = 10486 imp = 10488 imp = 10501 ck3 = 8504 } # Bohol, Jidbaaley, Sool -> LOWER_TOGDHEER - link = { autogenerated = yes imp = 10480 ck3 = 8508 } # Hodmane -> JACEYL_BID - link = { autogenerated = yes imp = 10477 imp = 10479 ck3 = 8428 } # Mindigale, Kob Dehad -> QUMBUCUL - link = { autogenerated = yes imp = 10476 ck3 = 8429 } # Kalabeyr -> EL-AYO + link = { autogenerated = yes imp = 10480 imp = 10478 ck3 = 8508 } # Hodmane, Iskushuban -> JACEYL_BID + link = { autogenerated = yes imp = 10477 imp = 10479 imp = 10476 ck3 = 8428 } # Mindigale, Kob Dehad, Kalabeyr -> QUMBUCUL link = { autogenerated = yes imp = 10474 imp = 10475 ck3 = 8427 } # Jidali, Hadaaftimo -> HAYLAN - link = { autogenerated = yes imp = 10473 imp = 10481 imp = 10483 imp = 10485 imp = 10487 imp = 10484 ck3 = 8503 } # Ceerigabo, Aelal, Danano, Gar Adag, Afweyn, Qoridheere -> TOGDHEER - link = { autogenerated = yes imp = 10472 imp = 7527 imp = 8106 ck3 = 8424 } # Shalcaw, Mundus, Somali Impassable -> MAKHIR - link = { autogenerated = yes imp = 10471 imp = 7532 imp = 8108 ck3 = 8430 } # Qandala, Diattica*, Somali Impassable -> BOSASO + link = { autogenerated = yes imp = 10483 imp = 10485 imp = 10487 imp = 10484 imp = 10473 ck3 = 8503 } # Danano, Gar Adag, Afweyn, Qoridheere, Ceerigabo -> TOGDHEER + link = { autogenerated = yes imp = 10472 imp = 7527 ck3 = 8424 } # Shalcaw, Mundus -> MAKHIR + link = { imp = 7532 ck3 = 8429 } # Diattica* -> EL-AYO + link = { autogenerated = yes imp = 10471 ck3 = 8430 } # Qandala -> BOSASO link = { autogenerated = yes imp = 10467 ck3 = 8500 ck3 = 8422 } # Lafaha -> FAFAN-SOUTH, GIDAYA-NORTH - link = { autogenerated = yes imp = 10460 imp = 10462 ck3 = 8403 } # Barkhadle, Gebiilay -> GOGESA - link = { autogenerated = yes imp = 10459 imp = 10461 imp = 10468 ck3 = 8405 } # Bagan, Hargeysa, Goyar -> HARGEISA + link = { imp = 10462 ck3 = 8402 } # Gebiilay -> AW_BARRE + link = { autogenerated = yes imp = 10460 imp = 10459 ck3 = 8403 } # Barkhadle, Bagan -> GOGESA + link = { autogenerated = yes imp = 10461 ck3 = 8405 } # Hargeysa -> HARGEISA link = { autogenerated = yes imp = 10458 imp = 7522 imp = 7534 ck3 = 8404 } # Isis, Malao, Dacca* -> BERBERA link = { autogenerated = yes imp = 10454 ck3 = 6438 ck3 = 6439 } # Akordat -> QATAA, MARYA link = { autogenerated = yes imp = 10431 imp = 10432 imp = 10412 ck3 = 6436 } # Baqbaqah, Gabub, Qadarif -> WOLQAYT - link = { autogenerated = yes imp = 10420 imp = 10421 imp = 10427 imp = 3328 imp = 10422 imp = 10423 ck3 = 6412 } # Matamir, Kassala, Haykota, Thana*, Hagiz, Gash -> KASSALA + link = { autogenerated = yes imp = 10429 imp = 10457 imp = 8101 ck3 = 6442 } # Hambok, Tokolay, Ethiopia Impassable -> TO_LUS + link = { autogenerated = yes imp = 10420 imp = 10421 imp = 10427 imp = 3328 imp = 10422 imp = 10423 imp = 7589 ck3 = 6412 } # Matamir, Kassala, Haykota, Thana*, Hagiz, Gash, Abliata -> KASSALA + link = { autogenerated = yes imp = 10413 imp = 9937 imp = 10415 ck3 = 6404 } # Dinder, Singa, Simsim -> ABU_GEILI link = { autogenerated = yes imp = 10402 imp = 10404 ck3 = 6410 } # Essayal, Shirayyet -> JEBEL_GEILI link = { autogenerated = yes imp = 10396 imp = 10397 imp = 10426 ck3 = 6386 } # Mahaneit, Qoqay, Kalakoy -> BAQLIN-WEST link = { autogenerated = yes imp = 10395 ck3 = 6385 } # Talguharai -> BAQLIN-NORTH link = { autogenerated = yes imp = 10394 ck3 = 6387 } # Tohamiyam -> BAQLIN-EAST link = { autogenerated = yes imp = 10391 ck3 = 6383 } # Tabot -> UPPER_AMUR link = { autogenerated = yes imp = 10324 ck3 = 934 } # Lepiel -> Lukoml - link = { autogenerated = yes imp = 10290 ck3 = 132 } # Zagares -> UPYTE link = { autogenerated = yes imp = 10250 imp = 10256 ck3 = 5206 } # Turochka, Zhuchok -> Sevsk link = { autogenerated = yes imp = 10171 ck3 = 4697 ck3 = 4699 } # Agourai -> SEFROU, MEKNES - link = { autogenerated = yes imp = 10164 imp = 10166 imp = 10148 ck3 = 4646 } # Chioukh, Djelfa, Laghouat -> ASHIR-BANYA - link = { imp = 10156 imp = 10157 ck3 = 4619 } # Messaad, Dechret Kamra -> AL-AGHWAT - link = { imp = 10149 imp = 10150 imp = 10151 imp = 10155 ck3 = 4661 } # Aflou, Bayadh, Krakda, Brezina -> ASKEDAL - link = { imp = 10170 imp = 10154 ck3 = 4751 } # Sfissifa, Sefra -> MECHERIA - link = { autogenerated = yes imp = 10141 imp = 10142 imp = 10146 imp = 10140 imp = 10145 imp = 10144 ck3 = 4749 } # Lahmar, Figuig, Fendi, Bechar, Goumi, Taghit -> FIGUIG + link = { autogenerated = yes imp = 10164 imp = 10166 ck3 = 4646 } # Chioukh, Djelfa -> ASHIR-BANYA + link = { autogenerated = yes imp = 10156 imp = 10157 ck3 = 4619 } # Messaad, Dechret Kamra -> AL-AGHWAT + link = { autogenerated = yes imp = 10149 imp = 10148 imp = 10150 ck3 = 4661 } # Aflou, Laghouat, Bayadh -> ASKEDAL + link = { autogenerated = yes imp = 10141 imp = 10170 imp = 10142 imp = 10146 imp = 10140 imp = 10145 imp = 10144 ck3 = 4749 } # Lahmar, Sfissifa, Figuig, Fendi, Bechar, Goumi, Taghit -> FIGUIG + link = { imp = 8088 ck3 = 4759 ck3 = 4612 ck3 = 6469 ck3 = 6653 ck3 = 6652 ck3 = 6468 ck3 = 6655 ck3 = 6654 ck3 = 6467 ck3 = 6466 } # Sahara -> TAOUZ, TABALBALA, WADI_DAOURA, IGUIDI_EAST, TINDOUF_ROAD, BOUDA, SAOURA, TAGHAZA_ROAD, ADRAR_TIMMI, TAMENTIT link = { autogenerated = yes imp = 10125 imp = 10126 ck3 = 4737 } # Merzouga, Ouzina -> SIJILMASA - link = { imp = 10124 ck3 = 4738 } # (Unknown) -> TAFILALT - link = { imp = 10121 imp = 10122 imp = 10123 imp = 10127 imp = 10138 imp = 10139 imp = 10143 ck3 = 4739 } # Goulmima, Errachidia, Jorf, Tisserdmine, Boudenib, Guir, Abadla -> ZIZ + link = { autogenerated = yes imp = 10124 imp = 8089 ck3 = 4738 } # (Unknown), Sahara -> TAFILALT + link = { imp = 10138 imp = 10139 imp = 10143 ck3 = 4742 } # Boudenib, Guir, Abadla -> GHAZWAN + link = { autogenerated = yes imp = 10121 imp = 10122 imp = 10123 imp = 10127 imp = 10180 ck3 = 4739 } # Goulmima, Errachidia, Jorf, Tisserdmine, Atlas Pass -> ZIZ link = { autogenerated = yes imp = 10118 imp = 6495 ck3 = 4670 } # Laatamna, Even More Riff -> NADRUMA - link = { imp = 10112 imp = 10113 ck3 = 4677 } # Guercif, Taddart -> TAZA - link = { imp = 10111 imp = 10115 imp = 10174 ck3 = 4676 } # Oufriden, Lamrija, Gafait -> DEBDOU - link = { imp = 10110 ck3 = 4745 } # Tindite -> MISSOUR + link = { autogenerated = yes imp = 10112 imp = 10113 imp = 6494 ck3 = 4677 } # Guercif, Taddart, More Riff -> TAZA + link = { autogenerated = yes imp = 10110 ck3 = 4676 ck3 = 4745 } # Tindite -> DEBDOU, MISSOUR link = { autogenerated = yes imp = 10108 imp = 10109 ck3 = 4743 } # Missour, Orjane -> TIKOUTAMINE - link = { imp = 10107 ck3 = 4742 } # Ksabi -> GHAZWAN - link = { imp = 10104 imp = 10105 imp = 10106 ck3 = 4744 } # Tounfit, Boumia, Izdeg -> EL-KSABI + link = { autogenerated = yes imp = 10104 imp = 10105 imp = 10106 imp = 10107 imp = 6300 ck3 = 4744 } # Tounfit, Boumia, Izdeg, Ksabi, Talzemt -> EL-KSABI link = { autogenerated = yes imp = 10103 imp = 6470 imp = 10102 ck3 = 4711 } # Zarhour, Ait Rob'a, Aghbala -> AFZA link = { autogenerated = yes imp = 10099 imp = 10100 ck3 = 4725 } # Taliouine, Larbaa Magnoun -> IGILLIZ - link = { imp = 10096 imp = 10097 imp = 10119 imp = 10120 ck3 = 4736 } # Skoura, Toundoute, Ifri, Tinghir -> TUDGHA + link = { autogenerated = yes imp = 10096 imp = 10097 imp = 10119 imp = 10120 imp = 10178 ck3 = 4736 } # Skoura, Toundoute, Ifri, Tinghir, Atlas Pass -> TUDGHA link = { autogenerated = yes imp = 10094 ck3 = 4732 ck3 = 4741 ck3 = 798 } # Tazenakht -> SIRWAN, AQQA, Atlas Mountains 9 - link = { imp = 10093 imp = 10095 ck3 = 4733 } # Isli, Iguernane -> TASAGDAH + link = { autogenerated = yes imp = 10093 imp = 10095 imp = 10169 ck3 = 4733 } # Isli, Iguernane, Atlas Pass -> TASAGDAH link = { autogenerated = yes imp = 10087 imp = 10090 imp = 10091 imp = 10092 ck3 = 4735 } # Agdz, Tamezmoute, Zagora, Zaouia -> TAZAGOURT link = { autogenerated = yes imp = 10086 imp = 10175 ck3 = 4722 } # Tamanar, Timlilt -> IGIR AD YATUF link = { autogenerated = yes imp = 10068 imp = 10069 imp = 10070 imp = 10071 imp = 10072 ck3 = 4726 } # Ouassay, Iligh, Aglou, Baha, Imighzer -> MASSA link = { autogenerated = yes imp = 10067 imp = 10073 ck3 = 4723 } # Gadir, Teima -> AGADIR - link = { imp = 10046 imp = 10040 imp = 10045 ck3 = 6321 } # Bourma, Sinawen, Zar -> SINAWIN - link = { autogenerated = yes imp = 10044 imp = 10047 imp = 10050 imp = 10053 ck3 = 4560 } # Praesidium, Tillibari, Tabalati, Mahalla -> NALUT - link = { imp = 10043 imp = 10041 imp = 10042 ck3 = 4571 } # Debdeb, Derg, Cydamus -> DARADJ - link = { imp = 10023 ck3 = 4558 } # Thenteos -> TIRI - link = { imp = 10024 imp = 10025 imp = 10026 imp = 10037 imp = 10022 ck3 = 4569 } # Vinaza, Garian, Thenadassa, Dnar, Centenarium -> TAMAZDA - link = { imp = 10004 imp = 9963 imp = 9968 imp = 9962 imp = 9957 ck3 = 4563 } # Jashalam, Hun, Harawah, Waddan, Tagrifet -> WADDAN - link = { imp = 5990 ck3 = 6499 ck3 = 6498 ck3 = 6497 ck3 = 6496 ck3 = 6495 } # Garamantian Sahara -> BARDAI, TIBESTI-CENTRAL, TIBESTI-SOUTH, AIN_GALAKKA, FAYA - link = { imp = 10002 ck3 = 6666 ck3 = 6453 } # Tajhiri -> TIBESTI_ROUTE, TUMMO - link = { imp = 8091 ck3 = 6668 ck3 = 6452 ck3 = 6454 ck3 = 6455 ck3 = 6456 } # Desert -> DJADO_ROUTE, DJADO, SAKADAME, GISSEBI, DIRKU - link = { imp = 10001 imp = 10003 imp = 10000 imp = 9993 ck3 = 6667 } # Qatrun, Mastutah, Izam, Murzuq -> FEZZAN_ROUTE - link = { imp = 9427 ck3 = 9992 ck3 = 10744 ck3 = 9994 } # An Lac -> Dravapura, Ma Cek, Bahnar + link = { autogenerated = yes imp = 10047 imp = 10050 imp = 10053 ck3 = 4560 } # Tillibari, Tabalati, Mahalla -> NALUT + link = { autogenerated = yes imp = 10046 imp = 10040 imp = 10045 imp = 8073 ck3 = 6321 } # Bourma, Sinawen, Zar, Desert -> SINAWIN + link = { autogenerated = yes imp = 10043 ck3 = 4571 } # Debdeb -> DARADJ + link = { autogenerated = yes imp = 10023 imp = 10024 imp = 10025 imp = 10026 imp = 10037 imp = 10022 ck3 = 4569 } # Thenteos, Vinaza, Garian, Thenadassa, Dnar, Centenarium -> TAMAZDA + link = { autogenerated = yes imp = 10004 imp = 9963 imp = 9962 ck3 = 4563 } # Jashalam, Hun, Waddan -> WADDAN + link = { imp = 8091 ck3 = 6452 ck3 = 6454 ck3 = 6499 ck3 = 6455 } # Desert -> DJADO, SAKADAME, BARDAI, GISSEBI + link = { autogenerated = yes imp = 10002 ck3 = 6666 ck3 = 6453 } # Tajhiri -> TIBESTI_ROUTE, TUMMO + link = { imp = 9993 ck3 = 6451 } # Murzuq -> MURZUK + link = { autogenerated = yes imp = 10001 imp = 10003 imp = 10000 ck3 = 6667 } # Qatrun, Mastutah, Izam -> FEZZAN_ROUTE link = { autogenerated = yes imp = 9208 ck3 = 9988 } # Bi Canh -> Kurung link = { autogenerated = yes imp = 9200 ck3 = 9982 } # Tu Pho -> Thanh Hoa link = { autogenerated = yes imp = 9197 ck3 = 9981 } # Tay Vu -> Long Bien @@ -1796,51 +1821,52 @@ link = { autogenerated = yes imp = 12615 ck3 = 97 ck3 = 98 } # Ohut -> WESENBURG, NARVA link = { autogenerated = yes imp = 11092 ck3 = 9681 ck3 = 11084 } # Dingalan -> Umiray, Sierra Madre South link = { autogenerated = yes imp = 7139 ck3 = 9659 } # Kanker******* -> Kanker - link = { autogenerated = yes imp = 11073 ck3 = 9658 ck3 = 9864 ck3 = 826 } # Mawlaik -> Thaungdut, Homalin, Manipur + link = { autogenerated = yes imp = 11073 ck3 = 9658 ck3 = 826 } # Mawlaik -> Thaungdut, Manipur link = { autogenerated = yes imp = 4462 imp = 7367 ck3 = 9656 } # Modgagiri, Mudgagiri -> Burhi_Gandak link = { autogenerated = yes imp = 7383 imp = 7322 ck3 = 9655 } # Kishan*, Purnia*** -> Jalalghar link = { autogenerated = yes imp = 7480 imp = 7481 ck3 = 9654 } # Saharsa, Supaul -> Bangaon link = { autogenerated = yes imp = 7138 ck3 = 9652 } # Rayagada -> Rayagada link = { autogenerated = yes imp = 7172 ck3 = 9651 } # Salipetake -> Gopalpur link = { autogenerated = yes imp = 7080 ck3 = 9649 } # Dantapura -> Srikakulam - link = { autogenerated = yes imp = 9794 ck3 = 9643 ck3 = 9644 ck3 = 9645 ck3 = 11514 ck3 = 11516 } # Taguang -> Tagaung, Katha, Htigyaing, Indawgyi, Indaw - link = { imp = 9583 ck3 = 9617 ck3 = 9489 ck3 = 9619 } # Impassable -> Minggam, Mazongshan, Zifu + link = { autogenerated = yes imp = 9583 ck3 = 9617 ck3 = 9619 ck3 = 9489 } # Impassable -> Minggam, Zifu, Mazongshan link = { autogenerated = yes imp = 6742 ck3 = 9615 ck3 = 7958 ck3 = 9616 } # Pishan -> Kehan, Qipan, Karglik link = { autogenerated = yes imp = 6756 imp = 5603 imp = 5604 ck3 = 9614 } # Khata, PASS, PASS -> Pishan link = { autogenerated = yes imp = 6747 ck3 = 9611 ck3 = 9610 } # Wumi -> Qira, Uzun-Tati link = { autogenerated = yes imp = 6741 ck3 = 9607 ck3 = 13633 ck3 = 1440 } # Yutian -> Akspir, Dadan-Uiliq, Khotan link = { autogenerated = yes imp = 6748 ck3 = 9605 ck3 = 13679 ck3 = 9604 } # Cadota -> Niya, 13679, Andir - link = { imp = 6752 ck3 = 9603 } # Sherchan* -> Endere + link = { autogenerated = yes imp = 6752 ck3 = 9603 ck3 = 13707 } # Sherchan* -> Endere, Lancheng link = { autogenerated = yes imp = 6750 ck3 = 9602 } # Iuwo -> Dawuzlek link = { autogenerated = yes imp = 9790 ck3 = 9589 ck3 = 9635 ck3 = 11592 } # Prome South -> Letpadan, Tharrawaddy, Bago Yoma Hills link = { autogenerated = yes imp = 11069 ck3 = 9583 ck3 = 11580 ck3 = 11581 } # Mrauk U -> Thabeik Taung, Kyauktaw, Paletwa link = { autogenerated = yes imp = 9781 ck3 = 9580 ck3 = 9581 } # Dayawadi -> Akyab, Ramu link = { autogenerated = yes imp = 9782 ck3 = 9576 ck3 = 9578 ck3 = 9579 } # Waithali -> Vaisali, Mrauk U, Mahamuni - link = { imp = 11076 ck3 = 9558 ck3 = 9561 ck3 = 9843 } # Mytinge -> Mandalay, Remyo, Monglong - link = { autogenerated = yes imp = 8571 ck3 = 9547 ck3 = 16006 ck3 = 9545 } # Fuping -> Xiping, 16006, Shunzhou - link = { autogenerated = yes imp = 8572 imp = 8301 ck3 = 9546 } # Lian, Impassable -> Xingqing + link = { autogenerated = yes imp = 11076 ck3 = 9558 ck3 = 9561 ck3 = 9843 } # Mytinge -> Mandalay, Remyo, Monglong + link = { autogenerated = yes imp = 8571 ck3 = 9547 ck3 = 9545 } # Fuping -> Xiping, Shunzhou + link = { autogenerated = yes imp = 8572 ck3 = 9546 ck3 = 16006 } # Lian -> Xingqing, Lingzhou link = { autogenerated = yes imp = 8573 ck3 = 9544 ck3 = 12104 ck3 = 12107 ck3 = 9543 } # Lingwu -> Dingzhou, Chengwei, Luotuogang, Shizuizi link = { autogenerated = yes imp = 8610 imp = 8609 ck3 = 9539 } # Yuhun, Linrong -> Dengkou link = { autogenerated = yes imp = 8607 ck3 = 9538 ck3 = 13039 } # Linhe -> Wuyuan, 13039 - link = { autogenerated = yes imp = 9573 imp = 8608 imp = 9566 ck3 = 9537 } # PASS, Woye, Impassable -> Wuluhai + link = { autogenerated = yes imp = 8608 imp = 9573 imp = 9566 ck3 = 9537 } # Woye, PASS, Impassable -> Wuluhai link = { autogenerated = yes imp = 8251 ck3 = 9533 ck3 = 9509 } # Xuanwei -> Chaganbulage, Alxa link = { autogenerated = yes imp = 8268 ck3 = 9529 ck3 = 9531 ck3 = 9535 } # Aowei -> Jingtai, Baiyin, Chaogetuhure link = { autogenerated = yes imp = 8254 ck3 = 9527 ck3 = 9528 ck3 = 9530 } # Zhangye -> Anning, Yongdeng, Gaolan link = { autogenerated = yes imp = 8261 ck3 = 9526 } # Yunjie -> Wushengyi - link = { autogenerated = yes imp = 8250 ck3 = 9525 } # Puhuai -> Dajing + link = { autogenerated = yes imp = 8250 imp = 8301 ck3 = 9525 } # Puhuai, Impassable -> Dajing link = { autogenerated = yes imp = 8262 ck3 = 9524 } # Lingju -> Tianzhu link = { autogenerated = yes imp = 8253 ck3 = 9523 ck3 = 9512 } # Cangsong -> Gulang, Semnyi link = { autogenerated = yes imp = 8249 ck3 = 9521 ck3 = 9532 } # Guzang -> Liangzhou, Nanhu link = { autogenerated = yes imp = 8248 ck3 = 9518 ck3 = 9519 } # Wuwei -> Zhenfan, Jiahe link = { autogenerated = yes imp = 8252 ck3 = 9516 ck3 = 9517 } # Xiutu -> Fanhe, Jinchang - link = { imp = 8246 ck3 = 9515 ck3 = 9511 ck3 = 9410 } # Dichi -> Minle, Babao, Gangca + link = { autogenerated = yes imp = 8246 ck3 = 9515 ck3 = 9511 } # Dichi -> Minle, Babao + link = { autogenerated = yes imp = 8245 ck3 = 9514 } # Shandan -> Shandan link = { autogenerated = yes imp = 8243 imp = 8300 ck3 = 9513 } # Lide, Impassable -> Ganzhou link = { autogenerated = yes imp = 8242 ck3 = 9505 ck3 = 9506 ck3 = 15964 ck3 = 9508 } # Lucheng -> Hangtian, Yijinai, 15964, Saihantaolai - link = { autogenerated = yes imp = 8238 imp = 9878 ck3 = 9504 } # Huishui, Ruoshui -> Heihe - link = { imp = 8239 ck3 = 9500 ck3 = 9497 } # Biaoshi -> Ganjun, Yeniugou - link = { imp = 8244 ck3 = 9501 ck3 = 9503 ck3 = 9502 } # Zhaowu -> Linze, Pingchuan, Gaotai + link = { autogenerated = yes imp = 8239 ck3 = 9502 ck3 = 9500 } # Biaoshi -> Gaotai, Ganjun + link = { autogenerated = yes imp = 9878 ck3 = 9503 } # Ruoshui -> Pingchuan + link = { autogenerated = yes imp = 8244 ck3 = 9501 } # Zhaowu -> Linze link = { autogenerated = yes imp = 8240 ck3 = 9498 ck3 = 9499 } # Leguan -> Qingshui, Sunan link = { autogenerated = yes imp = 8237 ck3 = 9496 } # Suimi -> Jinta + link = { autogenerated = yes imp = 8238 ck3 = 9504 } # Huishui -> Heihe link = { autogenerated = yes imp = 8236 ck3 = 9493 ck3 = 9495 } # Lufu -> Jiayuguan, Xiba link = { autogenerated = yes imp = 8235 ck3 = 9492 } # Yumen -> Huahai link = { autogenerated = yes imp = 8233 imp = 9581 ck3 = 9488 } # Chitou, Bog -> Qidun @@ -1848,9 +1874,10 @@ link = { autogenerated = yes imp = 8232 ck3 = 9485 } # Yuanquan -> Changma link = { autogenerated = yes imp = 8231 ck3 = 9481 } # Ming an -> Guazhou link = { autogenerated = yes imp = 8230 ck3 = 9478 ck3 = 9486 } # Guangzhi -> Yulin, Hedong - link = { autogenerated = yes imp = 8228 ck3 = 9477 ck3 = 9479 ck3 = 9480 ck3 = 9470 } # Dunhuang -> Mogao, Subei, Yanchiwan, Takoerpasitao - link = { imp = 8229 ck3 = 9476 ck3 = 9484 } # Xiaogu -> Shazhou, Xihu + link = { autogenerated = yes imp = 8228 ck3 = 9477 ck3 = 9479 } # Dunhuang -> Mogao, Subei + link = { autogenerated = yes imp = 8229 ck3 = 9476 } # Xiaogu -> Shazhou link = { autogenerated = yes imp = 12694 ck3 = 9467 ck3 = 9463 ck3 = 9465 } # Slwan -> Kharsa, Barkam, Trashingling + link = { autogenerated = yes imp = 12690 ck3 = 9466 } # Nant -> Zainlha link = { autogenerated = yes imp = 12693 ck3 = 9464 } # Snyun -> Quqen link = { autogenerated = yes imp = 12689 ck3 = 9461 ck3 = 9462 ck3 = 9449 } # Kywan -> Zamtang, Rongbur, Seretang link = { autogenerated = yes imp = 12686 ck3 = 9455 ck3 = 9457 } # Dzay -> Khyungchu, Choqu @@ -1861,23 +1888,23 @@ link = { autogenerated = yes imp = 12681 ck3 = 9433 ck3 = 9435 } # Cyar -> Gabasumdo, Zekog link = { autogenerated = yes imp = 12679 imp = 9390 ck3 = 9432 } # Kruw, Impassable -> Mangra link = { autogenerated = yes imp = 12678 ck3 = 9424 ck3 = 9425 ck3 = 9434 } # Mlay -> Jainca, Triga, Rebgong - link = { imp = 8266 ck3 = 9422 ck3 = 9412 ck3 = 9413 ck3 = 9411 } # Anyi -> Xining, Serkok, Datong, Haeyan + link = { autogenerated = yes imp = 8266 ck3 = 9422 ck3 = 9412 ck3 = 9413 } # Anyi -> Xining, Serkok, Datong link = { autogenerated = yes imp = 8265 ck3 = 9421 ck3 = 9414 ck3 = 9423 } # Linqiang -> Rusar, Tongkor, Qabqa link = { autogenerated = yes imp = 8258 ck3 = 9417 ck3 = 9419 } # Yunwu -> Chuankou, Kuozhou link = { autogenerated = yes imp = 8267 ck3 = 9415 ck3 = 9418 } # Poqiang -> Gonlung, Shanzhou - link = { imp = 9747 ck3 = 9404 ck3 = 9405 ck3 = 9406 ck3 = 9426 ck3 = 9407 ck3 = 9409 } # Hongshanzuinanpo -> Ulam, Cakha, Fuqi, Changzhi, Temqen, Yagkeng + link = { autogenerated = yes imp = 9747 ck3 = 9404 ck3 = 9405 ck3 = 9426 ck3 = 9406 ck3 = 9407 } # Hongshanzuinanpo -> Ulam, Cakha, Changzhi, Fuqi, Temqen link = { autogenerated = yes imp = 9754 ck3 = 9400 ck3 = 9398 } # Geermu -> Dagelhe, Zhiteu link = { autogenerated = yes imp = 9758 ck3 = 9399 ck3 = 9468 } # Delingha -> Derlenka, Conak link = { autogenerated = yes imp = 9755 ck3 = 9396 ck3 = 9397 } # Kunlun -> Nagormo, Qaidam link = { autogenerated = yes imp = 12698 ck3 = 9343 ck3 = 9344 ck3 = 9326 ck3 = 9349 } # Rmat -> Dege, Palpung, Katok, Lingtsang link = { autogenerated = yes imp = 12696 ck3 = 9338 ck3 = 9341 ck3 = 9342 } # Pryap -> Niba, Larung, Sertar - link = { autogenerated = yes imp = 12695 ck3 = 9337 ck3 = 9340 ck3 = 9334 ck3 = 9335 ck3 = 9339 } # Skawn -> Draggo, Garze, Dawu, Nyatsho, Jalhaxi + link = { autogenerated = yes imp = 12695 ck3 = 9337 ck3 = 9334 ck3 = 9335 ck3 = 9339 } # Skawn -> Draggo, Dawu, Nyatsho, Jalhaxi link = { autogenerated = yes imp = 12692 ck3 = 9333 ck3 = 9330 } # Bran -> Rongzhag, Darzedo link = { autogenerated = yes imp = 11497 imp = 11500 ck3 = 933 } # Sirdis, Asras -> Roslavl link = { autogenerated = yes imp = 12691 ck3 = 9329 ck3 = 9328 ck3 = 9331 } # Rikan -> Jagsam, Gyezil, Lhagang link = { autogenerated = yes imp = 12699 ck3 = 9310 ck3 = 9312 ck3 = 9311 ck3 = 9313 } # Dum -> Bolo, Yendum, Bumgye, Rongzhub link = { autogenerated = yes imp = 11512 ck3 = 931 } # Dhenka -> Athgarh - link = { autogenerated = yes imp = 12700 ck3 = 9308 ck3 = 9309 } # Tsan -> Jomda, Derdoin + link = { autogenerated = yes imp = 12700 ck3 = 9308 ck3 = 9309 ck3 = 9352 } # Tsan -> Jomda, Derdoin, Pelyul link = { autogenerated = yes imp = 12701 ck3 = 9303 ck3 = 9305 ck3 = 9306 } # Glyank -> Lhatok, Nyangla, Gyegumdo link = { autogenerated = yes imp = 12702 ck3 = 9301 ck3 = 9302 ck3 = 9284 } # Muk -> Karub, Qamdo, Yiqen link = { autogenerated = yes imp = 12703 ck3 = 9300 ck3 = 9304 } # Rnamwan -> Riwoqe, Nangqen @@ -1899,18 +1926,18 @@ link = { autogenerated = yes imp = 5659 ck3 = 9267 ck3 = 9268 } # Fugo -> Paga, Codoi link = { autogenerated = yes imp = 5656 ck3 = 9266 ck3 = 9272 } # Nyang -> Mila, Nyang link = { autogenerated = yes imp = 5647 ck3 = 9265 } # Drena -> Gedang - link = { imp = 7455 ck3 = 926 ck3 = 1241 } # Amrakuta -> Soubhagyapura, Koriya - link = { autogenerated = yes imp = 5664 ck3 = 9255 ck3 = 9257 ck3 = 9354 } # Ronglung -> Nagqu, Taksar, Nyainrong - link = { imp = 4471 ck3 = 925 ck3 = 1165 } # Tigowa -> Bahoriband, Bandhugadha + link = { autogenerated = yes imp = 7455 imp = 6053 ck3 = 926 } # Amrakuta, Dakshina Koshala -> Soubhagyapura + link = { autogenerated = yes imp = 5664 ck3 = 9255 ck3 = 9257 ck3 = 9256 ck3 = 9354 } # Ronglung -> Nagqu, Taksar, Lhomar, Nyainrong + link = { autogenerated = yes imp = 4471 ck3 = 925 } # Tigowa -> Bahoriband link = { autogenerated = yes imp = 5640 ck3 = 9246 ck3 = 9247 ck3 = 9250 } # Nyenchen -> Doilungdeqen, Nyemo, Yangpachen link = { autogenerated = yes imp = 5641 ck3 = 9245 } # Yokang -> Quxu link = { autogenerated = yes imp = 5619 ck3 = 9244 ck3 = 9248 ck3 = 9249 } # Tanglha -> Reting, Damquka, Nyinhzhong - link = { autogenerated = yes imp = 5620 ck3 = 9243 ck3 = 9256 } # Katsel -> Ngarnang, Lhomar + link = { autogenerated = yes imp = 5620 ck3 = 9243 } # Katsel -> Ngarnang link = { autogenerated = yes imp = 5658 ck3 = 9240 ck3 = 9241 } # Lum -> Kunggar, Drigung link = { autogenerated = yes imp = 5618 ck3 = 9237 ck3 = 9238 ck3 = 9242 } # Lhasa -> Lhasa, Potala, Lhunzhub - link = { autogenerated = yes imp = 5649 ck3 = 9235 } # Tsangpo -> Nang link = { autogenerated = yes imp = 5655 ck3 = 9234 ck3 = 9236 } # Shingnak -> Daklha_Gampo, Sangri - link = { autogenerated = yes imp = 5648 ck3 = 9230 ck3 = 9231 ck3 = 9233 } # Tandruk -> Zetang, Qusum, Gyaca + link = { autogenerated = yes imp = 5649 ck3 = 9233 ck3 = 9235 } # Tsangpo -> Gyaca, Nang + link = { autogenerated = yes imp = 5648 ck3 = 9230 ck3 = 9231 } # Tandruk -> Zetang, Qusum link = { autogenerated = yes imp = 5442 ck3 = 923 ck3 = 924 } # UNINHABITABLE -> Amarkantak, Moti_Mahal link = { autogenerated = yes imp = 5621 ck3 = 9228 ck3 = 9239 } # Samye -> Samye, Gyama link = { autogenerated = yes imp = 5622 ck3 = 9227 ck3 = 9232 } # Tandruk -> Tradruk, Gonggar @@ -1928,7 +1955,7 @@ link = { autogenerated = yes imp = 5613 ck3 = 9202 } # Nambo -> Qulho link = { autogenerated = yes imp = 5605 ck3 = 9201 } # Tago -> Caze link = { autogenerated = yes imp = 5589 ck3 = 9200 } # Bhoma -> Sangsang - link = { autogenerated = yes imp = 7318 imp = 7423 imp = 7456 ck3 = 920 } # Pandhurna*, Melghat*, Kherla* -> Gawilgarh + link = { autogenerated = yes imp = 7318 imp = 7456 ck3 = 920 } # Pandhurna*, Kherla* -> Gawilgarh link = { autogenerated = yes imp = 12612 ck3 = 92 ck3 = 94 ck3 = 95 ck3 = 96 } # Koski -> HAPSAL, REVAL, HARJUMAA, JARVA link = { autogenerated = yes imp = 5639 ck3 = 9196 ck3 = 9251 } # Durbye -> Rinbung, Qewa link = { autogenerated = yes imp = 5625 ck3 = 9194 ck3 = 9188 ck3 = 9191 } # Nesar -> Xigaze, Kamba, Se @@ -1952,19 +1979,18 @@ link = { autogenerated = yes imp = 7347 ck3 = 9148 } # Bhallaka -> Pemagatsel link = { autogenerated = yes imp = 5634 ck3 = 9145 ck3 = 9146 ck3 = 9143 ck3 = 9147 } # Mon Shampo -> Bumthang, Lhuentse, Trongsa, Mongar link = { autogenerated = yes imp = 7653 ck3 = 9144 } # Manasa* -> Zhemgang - link = { autogenerated = yes imp = 7346 ck3 = 9142 ck3 = 9139 } # Bhargava -> Sarpang, Daga link = { autogenerated = yes imp = 5631 ck3 = 9140 ck3 = 9141 ck3 = 9138 } # Mon Bumtang -> Punakha, Gasa, Thimpu link = { autogenerated = yes imp = 5628 ck3 = 9136 ck3 = 9120 ck3 = 9126 } # Paro Kerchu -> Yangwarok, Khotang, Dhankuta link = { autogenerated = yes imp = 7487 ck3 = 9132 ck3 = 9119 } # Bijalpura* -> Dhulikhel, Okhaldhunga - link = { autogenerated = yes imp = 4459 ck3 = 9131 ck3 = 9114 ck3 = 9130 } # Pattana -> Lalitpur, Dolakha, Kirtipur link = { autogenerated = yes imp = 7364 ck3 = 913 } # Manbhum -> Kashipur link = { autogenerated = yes imp = 7656 ck3 = 9125 ck3 = 9127 } # Damak* -> Ilam, Panchthar link = { autogenerated = yes imp = 4464 ck3 = 9124 } # Devaprastha -> Gograha link = { autogenerated = yes imp = 4460 ck3 = 9122 } # Sugauna -> Rajbiraj link = { autogenerated = yes imp = 7486 ck3 = 9118 } # Mithila -> Janakpur - link = { imp = 5587 ck3 = 9116 ck3 = 9117 ck3 = 9113 } # Chomolangma -> Kathmandu, Bhaktapur, Gorkha + link = { autogenerated = yes imp = 4459 ck3 = 9117 ck3 = 9131 ck3 = 9114 ck3 = 9130 } # Pattana -> Bhaktapur, Lalitpur, Dolakha, Kirtipur + link = { autogenerated = yes imp = 5587 ck3 = 9116 ck3 = 9113 } # Chomolangma -> Kathmandu, Gorkha link = { autogenerated = yes imp = 7384 ck3 = 9115 ck3 = 9123 ck3 = 9112 } # Rampurwa -> Hetauda, Bharatpur, Tanahun - link = { autogenerated = yes imp = 5584 ck3 = 9110 } # Tshongdu -> Gulmi + link = { autogenerated = yes imp = 5584 imp = 7290 ck3 = 9110 } # Tshongdu, Impassable -> Gulmi link = { autogenerated = yes imp = 11517 imp = 11518 ck3 = 911 } # Rourkela, Rajgangpur -> Ratu link = { autogenerated = yes imp = 5573 ck3 = 9107 ck3 = 9096 } # Terai******* -> Gulariya, Godawari link = { autogenerated = yes imp = 5572 ck3 = 9103 ck3 = 9099 ck3 = 9102 } # Samti -> Dullu, Bajura, Jumla @@ -1975,9 +2001,9 @@ link = { autogenerated = yes imp = 5611 ck3 = 9084 } # Gyulo -> Gyesarco link = { autogenerated = yes imp = 5590 imp = 5606 ck3 = 9083 } # Tsanghla, Yartsang -> Kyakyaru link = { autogenerated = yes imp = 5588 ck3 = 9082 ck3 = 9182 } # Lhayul -> Lhagcang, Chagne - link = { autogenerated = yes imp = 5585 ck3 = 9080 ck3 = 9079 ck3 = 9106 ck3 = 9111 } # Pakpa -> Muktinath, Manthang, Rukum, Kaski + link = { autogenerated = yes imp = 5585 ck3 = 9080 ck3 = 9106 ck3 = 9111 } # Pakpa -> Muktinath, Rukum, Kaski link = { autogenerated = yes imp = 11534 ck3 = 908 } # Daltonganj -> Betla - link = { autogenerated = yes imp = 5583 ck3 = 9078 ck3 = 9081 } # Serip Drukmo Dzong -> Yagra, Changgo + link = { autogenerated = yes imp = 5583 ck3 = 9078 ck3 = 9081 ck3 = 9079 } # Serip Drukmo Dzong -> Yagra, Changgo, Manthang link = { autogenerated = yes imp = 5580 ck3 = 9077 } # Mapam -> Penchi link = { autogenerated = yes imp = 5578 ck3 = 9076 } # Khakyor -> Baryang link = { autogenerated = yes imp = 5579 ck3 = 9075 } # Tsina -> Labrang @@ -1987,22 +2013,21 @@ link = { autogenerated = yes imp = 5575 ck3 = 9068 ck3 = 9069 } # Gyangri -> Teglakar, Hor link = { autogenerated = yes imp = 5615 imp = 5614 ck3 = 9059 } # Barma, Ormogang -> Xungba link = { autogenerated = yes imp = 5582 ck3 = 9057 ck3 = 9058 } # Sangya -> Zoco, Gegyai - link = { autogenerated = yes imp = 5570 ck3 = 9056 ck3 = 9006 } # Khayu -> Gar, Demchok + link = { autogenerated = yes imp = 5570 ck3 = 9056 } # Khayu -> Gar link = { autogenerated = yes imp = 5576 ck3 = 9055 ck3 = 9086 } # Kailash -> Kyunglung, Monicer link = { autogenerated = yes imp = 5577 ck3 = 9053 ck3 = 9054 } # Nguot -> Tholing, Busin link = { autogenerated = yes imp = 5569 ck3 = 9051 ck3 = 9052 ck3 = 9044 ck3 = 9050 } # Tsaparang -> Trashigang, Tsaparang, Nako, Kamru link = { autogenerated = yes imp = 4432 ck3 = 905 } # Sajahati -> Kantit link = { autogenerated = yes imp = 4457 ck3 = 904 ck3 = 9109 } # Lumbini -> Amorha, Lumbini - link = { autogenerated = yes imp = 5562 ck3 = 9038 ck3 = 9039 ck3 = 3293 } # Rutok -> Risum, Rebang, KUNLUNSHAN - link = { autogenerated = yes imp = 5563 ck3 = 9037 ck3 = 9030 ck3 = 9040 } # Rabzhi Senge Dzong -> Rutog, Khurnak, Changmar + link = { autogenerated = yes imp = 5562 ck3 = 9038 ck3 = 9039 } # Rutok -> Risum, Rebang + link = { autogenerated = yes imp = 5563 ck3 = 9037 ck3 = 9040 } # Rabzhi Senge Dzong -> Rutog, Changmar link = { autogenerated = yes imp = 7245 ck3 = 903 } # Chinaz -> Afrasiyab link = { autogenerated = yes imp = 5566 ck3 = 9029 ck3 = 9026 ck3 = 9028 } # Lashang -> Haldi, Shigar, Khaplu - link = { autogenerated = yes imp = 5593 imp = 5598 ck3 = 9024 } # Darada, Mulbek -> Astore + link = { autogenerated = yes imp = 5593 ck3 = 9024 } # Darada -> Astore link = { autogenerated = yes imp = 5559 ck3 = 9022 ck3 = 9023 } # Tachok Dzong -> Tolti, Gultari link = { autogenerated = yes imp = 5592 ck3 = 9020 ck3 = 9021 } # Skardo -> Skardu, Roundu - link = { autogenerated = yes imp = 5558 ck3 = 9018 ck3 = 9019 ck3 = 9013 ck3 = 9025 } # Achuk -> Purig, Dras, Padum, Minimarg - link = { autogenerated = yes imp = 5565 ck3 = 9011 ck3 = 9009 ck3 = 9010 } # Aparing -> Turtuk, Diskit, Panamik - link = { autogenerated = yes imp = 5567 imp = 5568 ck3 = 9008 } # Tiret, Mune -> Chusul + link = { autogenerated = yes imp = 5558 ck3 = 9018 ck3 = 9019 ck3 = 16302 ck3 = 9013 } # Achuk -> Purig, Dras, Marwah, Padum + link = { autogenerated = yes imp = 5567 ck3 = 9008 ck3 = 9030 } # Tiret -> Chusul, Khurnak link = { autogenerated = yes imp = 5561 ck3 = 9005 } # Ladakh -> Tangtse link = { autogenerated = yes imp = 5564 ck3 = 9003 ck3 = 9014 ck3 = 9017 } # Echen Khar -> Shey, Zangla, Karzok link = { autogenerated = yes imp = 5560 ck3 = 9002 ck3 = 9004 ck3 = 9015 } # Sindhu -> Leh, Khalatse, Lingshet @@ -2029,12 +2054,13 @@ link = { autogenerated = yes imp = 6037 ck3 = 8768 ck3 = 234 ck3 = 246 } # Scandia -> Ski, OSLOSYSLAR, DRAFN link = { autogenerated = yes imp = 3602 ck3 = 8766 } # IuliaConcordia -> Portogruaro link = { autogenerated = yes imp = 3561 ck3 = 8764 } # Eporedia -> Santhia + link = { autogenerated = yes imp = 3550 ck3 = 8763 } # Coeba -> Mondovi link = { autogenerated = yes imp = 12885 ck3 = 8761 } # Trumpili -> Tirano link = { autogenerated = yes imp = 4441 ck3 = 876 } # Alavi -> Arrah link = { autogenerated = yes imp = 34 imp = 28 imp = 5010 ck3 = 8759 } # Carrini, Corfinium, IMPASSIBLE TERRAIN 010 -> Agnone link = { autogenerated = yes imp = 50 ck3 = 8758 } # Urium -> Vieste link = { autogenerated = yes imp = 33 imp = 44 ck3 = 8757 } # Bovinium, Saepinum -> Ariano - link = { autogenerated = yes imp = 40 imp = 8 ck3 = 8756 } # Nola, Capua -> Aversa + link = { autogenerated = yes imp = 40 ck3 = 8756 } # Nola -> Aversa link = { autogenerated = yes imp = 62 ck3 = 8755 } # Menturia -> Lecce link = { autogenerated = yes imp = 12 imp = 59 ck3 = 8754 } # Elea, Cosillium -> Policastro link = { autogenerated = yes imp = 75 ck3 = 8751 } # Hipponium -> Tropea @@ -2053,6 +2079,7 @@ link = { autogenerated = yes imp = 3529 ck3 = 8720 } # Rigomagus -> Barcelonnette link = { autogenerated = yes imp = 3532 ck3 = 8718 } # Durotincum -> Briancon link = { autogenerated = yes imp = 2310 imp = 2308 imp = 2309 ck3 = 8717 } # Cerebelliaca, Valentia, Batiana -> Monteil + link = { autogenerated = yes imp = 10597 imp = 10596 ck3 = 8712 } # Boduthiladhunmathi, Minicoy -> Thiladhunmathi link = { autogenerated = yes imp = 4446 ck3 = 871 ck3 = 872 } # Campa -> Campa, Vikramasila link = { autogenerated = yes imp = 9471 ck3 = 8708 ck3 = 13998 } # Yayin -> Shombuuziin Belchir, Mountains link = { autogenerated = yes imp = 9207 ck3 = 8690 ck3 = 9989 } # Tay Quyen -> Visnupura, Navap @@ -2067,17 +2094,17 @@ link = { autogenerated = yes imp = 7397 imp = 7336 imp = 7358 ck3 = 856 } # Jessore*, Selampoura, Khulna* -> Santipura link = { autogenerated = yes imp = 8247 ck3 = 8542 ck3 = 9522 } # Lijian -> GOBI DESERT, Huangcheng link = { autogenerated = yes imp = 8257 ck3 = 8535 ck3 = 9494 ck3 = 8537 } # Tianyi -> CHIJINQILIAN, Suzhou, YUERHONG - link = { imp = 7494 imp = 7495 ck3 = 852 } # Durgapur*, Egarosindur -> Nasirabad - link = { imp = 10494 ck3 = 8466 ck3 = 8472 ck3 = 8471 ck3 = 8470 } # Garacad -> HOBYO, DHUSAMAREB, EL_BUUR, MAREEG - link = { imp = 10493 ck3 = 8510 ck3 = 8512 ck3 = 8513 ck3 = 8511 } # Gallacoodday -> GALKAYO, NUDUG-SOUTH, MUDUG-NORTH, HOBYO-NORTH + link = { autogenerated = yes imp = 7494 imp = 7495 imp = 6050 ck3 = 852 } # Durgapur*, Egarosindur, Meghalaya -> Nasirabad + link = { imp = 10494 ck3 = 8511 ck3 = 8512 ck3 = 8510 } # Garacad -> HOBYO-NORTH, NUDUG-SOUTH, GALKAYO + link = { autogenerated = yes imp = 10493 ck3 = 8513 } # Gallacoodday -> MUDUG-NORTH link = { autogenerated = yes imp = 7490 ck3 = 851 } # Nagarpur* -> Dhakeshwari_Jatiya_Mandir link = { autogenerated = yes imp = 10490 ck3 = 8509 } # Apocopa -> BARBACADLE link = { autogenerated = yes imp = 10497 imp = 10491 imp = 10492 imp = 10495 imp = 10496 ck3 = 8506 } # Afdugweyne, Dalmoxor, Qarxis, Moqor Yar, Mulug -> LOWER_NUGAAL - link = { autogenerated = yes imp = 10464 imp = 10463 imp = 10465 imp = 10482 ck3 = 8502 } # Gidheys, Suuqsade, Seeto, Xood -> SHEIKH + link = { autogenerated = yes imp = 10464 imp = 10463 imp = 10465 imp = 10482 imp = 10481 ck3 = 8502 } # Gidheys, Suuqsade, Seeto, Xood, Aelal -> SHEIKH link = { autogenerated = yes imp = 7496 ck3 = 850 } # Bhaluka -> Bokainagar link = { autogenerated = yes imp = 7325 ck3 = 846 ck3 = 848 } # Pundra -> Mahasthangarh, Somapur link = { autogenerated = yes imp = 7368 ck3 = 844 } # Yavana -> Kalyaneshwari - link = { autogenerated = yes imp = 7531 imp = 10469 imp = 10470 imp = 10478 imp = 7528 ck3 = 8432 } # Pano, Bandarbeyla, Mudun, Iskushuban, Opone -> RAS_HAFUN + link = { autogenerated = yes imp = 7531 imp = 10469 imp = 10470 imp = 7528 ck3 = 8432 } # Pano, Bandarbeyla, Mudun, Opone -> RAS_HAFUN link = { autogenerated = yes imp = 7526 imp = 7525 imp = 7529 ck3 = 8431 } # Aromata, Elephas Limen, Yehta* -> GARDAFUUL link = { autogenerated = yes imp = 4447 ck3 = 843 } # Kajangala -> Agmahl link = { autogenerated = yes imp = 7524 ck3 = 8426 } # Mosylon -> LAAS_QORAY @@ -2141,13 +2168,15 @@ link = { autogenerated = yes imp = 5667 ck3 = 7971 ck3 = 7973 } # PASS -> Tumxuk, Ush link = { autogenerated = yes imp = 6754 ck3 = 7969 } # Kagra* -> Maralbeshi link = { autogenerated = yes imp = 5668 ck3 = 7968 } # PASS -> Shangquo - link = { autogenerated = yes imp = 6757 imp = 5279 ck3 = 7963 } # Shachi, IMPASSIBLE TERRAIN 279 -> Aqtu + link = { autogenerated = yes imp = 6757 ck3 = 7963 } # Shachi -> Aqtu link = { autogenerated = yes imp = 6758 ck3 = 7962 ck3 = 7966 } # Surkhab -> Ulangqat, Erkeshtam link = { autogenerated = yes imp = 6761 ck3 = 7961 } # Kasia -> Yiandu link = { autogenerated = yes imp = 5666 ck3 = 7959 } # PASS -> Makit - link = { autogenerated = yes imp = 6760 imp = 5601 ck3 = 7957 } # Tashqurgan, Kusta -> Tashkurgan + link = { autogenerated = yes imp = 6771 imp = 6760 ck3 = 7957 } # Kezhen, Tashqurgan -> Tashkurgan link = { autogenerated = yes imp = 5595 ck3 = 7956 } # Hunza -> Baltit - link = { autogenerated = yes imp = 3810 imp = 4337 imp = 7361 imp = 6751 ck3 = 7947 } # Embadina, Urasa, Salutara, Aornos/Varana -> Waihind + link = { autogenerated = yes imp = 5597 imp = 5599 ck3 = 7950 } # Kargah, Teclas -> Chilas + link = { autogenerated = yes imp = 5600 imp = 6751 ck3 = 7948 } # Parsni, Aornos/Varana -> Allai + link = { autogenerated = yes imp = 3810 imp = 4337 imp = 7361 ck3 = 7947 } # Embadina, Urasa, Salutara -> Battagram link = { autogenerated = yes imp = 7151 ck3 = 7935 ck3 = 1254 } # Vairagara -> Gondia, Vairagara link = { autogenerated = yes imp = 7130 ck3 = 7934 ck3 = 3991 ck3 = 7932 } # Bhilapura -> Nandgram, Shivapura, Lanjika link = { autogenerated = yes imp = 7132 ck3 = 7933 } # Rapsakpur* -> Mungeli @@ -2170,7 +2199,7 @@ link = { autogenerated = yes imp = 7056 ck3 = 7910 } # Gummididurru -> Palwancha link = { autogenerated = yes imp = 7058 imp = 7055 ck3 = 7909 } # Kondapuram, Pravarapura -> Vinukonda link = { autogenerated = yes imp = 7150 ck3 = 7907 } # Anumapala -> Kaulas - link = { imp = 7118 ck3 = 7905 } # Rukmammapeta -> Devarakonda + link = { autogenerated = yes imp = 7118 imp = 7049 ck3 = 7905 } # Rukmammapeta, Naconda -> Devarakonda link = { autogenerated = yes imp = 7152 imp = 8122 ck3 = 7903 } # Mankal******, India Jungle -> Golkonda link = { autogenerated = yes imp = 7065 imp = 7064 ck3 = 7900 } # Ajanta, Pitangalva -> Jhodga link = { autogenerated = yes imp = 6006 ck3 = 79 ck3 = 80 ck3 = 8726 } # Scandia -> RONNEBY, AVASKAR, Torsas @@ -2202,8 +2231,8 @@ link = { autogenerated = yes imp = 7005 ck3 = 7860 } # Brahmagiri -> Nidugallu link = { autogenerated = yes imp = 7071 ck3 = 7859 } # Gavimath -> Kampili link = { autogenerated = yes imp = 7006 imp = 7073 ck3 = 7858 } # Uccasrngi, Siddapura -> Vijayanagara - link = { autogenerated = yes imp = 7047 ck3 = 7857 } # Yerraguddi -> Gutti - link = { imp = 7021 imp = 9586 ck3 = 7856 } # Suvarnagiri, Impassable -> Adavani + link = { autogenerated = yes imp = 7047 imp = 9586 ck3 = 7857 } # Yerraguddi, Impassable -> Gutti + link = { autogenerated = yes imp = 7021 ck3 = 7856 } # Suvarnagiri -> Adavani link = { autogenerated = yes imp = 7069 ck3 = 7855 } # Rajula -> Adoni link = { autogenerated = yes imp = 7091 ck3 = 7854 } # Bhakkuli -> Kandanavolu link = { autogenerated = yes imp = 7035 ck3 = 7853 } # Kalligeris -> Kudala @@ -2212,6 +2241,7 @@ link = { autogenerated = yes imp = 7009 ck3 = 7849 } # Talavanapura -> Seringapatam link = { autogenerated = yes imp = 7017 ck3 = 7848 } # Ganga -> Moyar link = { autogenerated = yes imp = 7016 ck3 = 7847 } # Sriringapatna -> Mercara + link = { autogenerated = yes imp = 7039 ck3 = 7846 } # Kantakossyla -> Mutfili link = { autogenerated = yes imp = 7050 imp = 8126 ck3 = 7845 } # Kuromolinava*, Indian Jungle -> Bhairavunikonda link = { autogenerated = yes imp = 7048 ck3 = 7841 } # Sriparvata -> Sriparvata link = { autogenerated = yes imp = 7051 ck3 = 7840 ck3 = 7843 } # Kadinava* -> Ittagi, Mudivemu @@ -2224,16 +2254,17 @@ link = { autogenerated = yes imp = 6987 ck3 = 7832 } # Colapattinam -> Jinji link = { autogenerated = yes imp = 6986 ck3 = 7831 } # Sopattinam -> Uttaramerur link = { autogenerated = yes imp = 6983 imp = 6995 imp = 6996 ck3 = 7830 } # Arkatapura, Chengam, Tiruvannamalai -> Tiruvannamalai + link = { autogenerated = yes imp = 7032 imp = 5313 ck3 = 7829 } # Tiruperur, IP 314 -> Kudalasangama_bis link = { autogenerated = yes imp = 7008 ck3 = 7828 } # Chintamani -> Kuvalala link = { autogenerated = yes imp = 6985 imp = 6984 ck3 = 7827 } # Mavilankai, Kancipuram -> Mamallapuram link = { autogenerated = yes imp = 7000 ck3 = 7826 } # Tondana -> Takkaloma link = { autogenerated = yes imp = 7031 ck3 = 7823 ck3 = 7824 } # Kuvalalapura -> Nangali, Muluvagil link = { autogenerated = yes imp = 6998 ck3 = 7821 } # Gudimallam -> Kalahasti link = { autogenerated = yes imp = 7028 ck3 = 7820 ck3 = 7825 } # Tirumala -> Melpadi, Padaividu - link = { autogenerated = yes imp = 7033 ck3 = 7819 ck3 = 7822 } # Madana -> Mangalavada, Nandi - link = { autogenerated = yes imp = 7027 imp = 7025 ck3 = 7818 } # Rapur, Rayachoti -> Vallurapura + link = { autogenerated = yes imp = 7033 imp = 7025 imp = 8125 ck3 = 7819 } # Madana, Rayachoti, Indian Jungle -> Mangalavada + link = { autogenerated = yes imp = 7027 ck3 = 7818 } # Rapur -> Vallurapura link = { autogenerated = yes imp = 7026 ck3 = 7817 ck3 = 7844 } # Kadapa -> Puspagiri, Ahobalam - link = { autogenerated = yes imp = 7034 imp = 8125 ck3 = 7816 } # Kadiri, Indian Jungle -> Anantapur + link = { autogenerated = yes imp = 7034 ck3 = 7816 } # Kadiri -> Anantapur link = { autogenerated = yes imp = 7024 ck3 = 7815 } # Mangalavada -> Togarakunta link = { autogenerated = yes imp = 6911 imp = 6901 ck3 = 7814 } # Aykudi, Balita -> Kottar link = { autogenerated = yes imp = 6903 imp = 6902 ck3 = 7813 } # Curana, Komari -> Kayal @@ -2250,7 +2281,7 @@ link = { autogenerated = yes imp = 6897 imp = 6896 ck3 = 7802 } # Nelcynda, Pseudostomos -> Kottayam link = { autogenerated = yes imp = 6944 imp = 6908 ck3 = 7800 } # Vellalore, Paloura -> Palakkad link = { autogenerated = yes imp = 6005 ck3 = 78 ck3 = 87 } # Scandia -> BREGNE, LISTER - link = { imp = 6893 imp = 6907 ck3 = 7799 } # Tyndis, Podoperoura -> Malappuram + link = { autogenerated = yes imp = 6893 imp = 6907 imp = 6910 ck3 = 7799 } # Tyndis, Podoperoura, Tandi -> Malappuram link = { autogenerated = yes imp = 6889 ck3 = 7798 } # Mousopalle -> Kannanur link = { autogenerated = yes imp = 6886 imp = 6888 imp = 6891 ck3 = 7797 } # Olokhoira, Nitra, Banabasi -> Mangalur link = { autogenerated = yes imp = 6883 imp = 6882 ck3 = 7795 } # Aegidi, Toparon -> Hinawr @@ -2262,18 +2293,19 @@ link = { autogenerated = yes imp = 6868 ck3 = 7788 } # Surparaka -> Suraparaka link = { autogenerated = yes imp = 10606 imp = 10608 ck3 = 7782 } # Khaliun, Bayanbulag -> Gobi-Altai link = { autogenerated = yes imp = 6004 ck3 = 77 } # Scandia -> RONNE - link = { imp = 9442 ck3 = 7677 ck3 = 7678 ck3 = 7673 ck3 = 7674 } # Buka -> Orgogdon Rok, Baldyrgannyg, Kandat Uul, Tolchi + link = { autogenerated = yes imp = 9442 ck3 = 7677 ck3 = 7678 ck3 = 7673 } # Buka -> Orgogdon Rok, Baldyrgannyg, Kandat Uul link = { autogenerated = yes imp = 9433 ck3 = 7666 ck3 = 7668 } # Sarik -> Askiz, Abakan - link = { imp = 9438 ck3 = 7660 ck3 = 7658 ck3 = 7656 } # Torgay -> Sus-Balyk, Uzhynkhyr, Em-Iss + link = { autogenerated = yes imp = 9438 ck3 = 7660 ck3 = 7658 } # Torgay -> Sus-Balyk, Uzhynkhyr link = { autogenerated = yes imp = 9439 ck3 = 7659 ck3 = 7676 } # Boru -> Ergaki, Omaytura link = { autogenerated = yes imp = 9437 ck3 = 7652 ck3 = 7657 } # Jianhe -> Ust-Tuba, Tagyr + link = { autogenerated = yes imp = 9432 ck3 = 7647 } # Jiankun -> Kemzhiket link = { autogenerated = yes imp = 9443 ck3 = 7639 ck3 = 7641 ck3 = 7642 ck3 = 7675 } # Kirguy -> Stoyanka, Ak-Turan, Shagonar, Kesdim link = { autogenerated = yes imp = 9440 ck3 = 7637 ck3 = 7638 } # Sut -> Kantegir, Shonhir link = { autogenerated = yes imp = 10820 ck3 = 7625 ck3 = 7632 ck3 = 7633 } # Chulyshman -> Ak-Khol, Ulagan, Kara-Khol - link = { autogenerated = yes imp = 9445 ck3 = 7623 ck3 = 7619 ck3 = 7624 ck3 = 7681 } # PASS -> Eki-Khem, Tapsa, Azas, Doloon Nuur link = { autogenerated = yes imp = 9446 ck3 = 7622 ck3 = 7621 ck3 = 7689 ck3 = 7786 ck3 = 13988 ck3 = 13989 } # PASS -> Bilin, Ak-Altyg Khol, Monkh Saridag, Dubo, Mountains, Mountains link = { autogenerated = yes imp = 10553 ck3 = 7620 ck3 = 7785 ck3 = 13744 ck3 = 1459 ck3 = 7617 ck3 = 13986 } # Yanzeli -> Telek, Darkhad Mountains, Saryg-Sep, Bait, Saryg-Sep, Mountains link = { autogenerated = yes imp = 1882 imp = 5168 ck3 = 762 } # Adana, IMPASSIBLE TERRAIN 168 -> Adana + link = { autogenerated = yes imp = 9445 ck3 = 7619 ck3 = 7623 ck3 = 7624 ck3 = 7681 } # PASS -> Tapsa, Eki-Khem, Azas, Doloon Nuur link = { autogenerated = yes imp = 9467 ck3 = 7613 } # Yumurtka -> Myangad link = { autogenerated = yes imp = 10545 ck3 = 7611 ck3 = 7612 ck3 = 7615 ck3 = 7626 ck3 = 7634 ck3 = 13996 } # Baishint -> Nogoonuur, Tsagan Shibetu, Tsambagarau, Mungun Taiga, Teeli, Mountains link = { autogenerated = yes imp = 1887 imp = 1892 ck3 = 761 } # Soloi, Elaioussa -> Tarsus @@ -2318,25 +2350,26 @@ link = { autogenerated = yes imp = 9491 ck3 = 7500 ck3 = 7527 } # Zhiju -> Sulugu, Khanjargalant link = { autogenerated = yes imp = 247 imp = 7919 ck3 = 750 } # Pythopolis, Pythopolis Mountains -> Nikaea link = { autogenerated = yes imp = 9452 ck3 = 7497 ck3 = 8707 } # Kul -> Bulun-Tok, ALTAISHAN + link = { autogenerated = yes imp = 315 imp = 8061 ck3 = 749 } # Dorylaion, Dorylaion Mons -> Dorylaion link = { autogenerated = yes imp = 9454 ck3 = 7487 ck3 = 7489 ck3 = 7490 } # Sinek -> Kurchum, Torangy Kul, Chaklym link = { autogenerated = yes imp = 10823 ck3 = 7484 ck3 = 7516 ck3 = 13994 } # Baga Turgen -> Tsengel, Taldaq, Mountains link = { autogenerated = yes imp = 9450 ck3 = 7483 ck3 = 7491 } # Yimurt -> Agairik, Sarytau - link = { imp = 1952 imp = 1963 imp = 7938 imp = 7941 imp = 7756 imp = 7757 ck3 = 748 } # Aphrodisias, Neapolis, Bargasa, Kranaos, Kadmons Mons, (Unknown) -> Laodikeia + link = { autogenerated = yes imp = 1952 imp = 7938 imp = 7756 imp = 7757 ck3 = 748 } # Aphrodisias, Bargasa, Kadmons Mons, (Unknown) -> Laodikeia link = { autogenerated = yes imp = 9447 ck3 = 7477 ck3 = 7485 ck3 = 7494 ck3 = 7495 } # Hujie -> Daqi, Belesek, Jeminay, Kaerji link = { autogenerated = yes imp = 7934 imp = 1981 imp = 7935 imp = 7930 ck3 = 747 } # Keramos, Halikarnassos, Bargylia, Halikarnassos Mountains -> Halikarnassos link = { autogenerated = yes imp = 8255 ck3 = 7469 ck3 = 13575 ck3 = 7462 ck3 = 7470 ck3 = 7471 } # Qijiaojingzhen -> Birbaliq, Guiukou, Dushan, Chiqitim, Pulei link = { autogenerated = yes imp = 9458 ck3 = 7465 ck3 = 7467 ck3 = 7468 } # Yehe -> Savan, Kuytun, Shihezi - link = { autogenerated = yes imp = 1969 imp = 1972 imp = 290 imp = 294 ck3 = 746 } # Leukophrys, Priene, Ephesos, Larisa -> Ephesos + link = { autogenerated = yes imp = 1969 imp = 1972 imp = 290 ck3 = 746 } # Leukophrys, Priene, Ephesos -> Ephesos link = { autogenerated = yes imp = 10585 ck3 = 7458 ck3 = 7457 } # Shichengzhicun -> Yidu, Lafuqueke link = { autogenerated = yes imp = 8217 ck3 = 7455 ck3 = 7456 ck3 = 13993 } # Cheshiliugu -> Dakheyan, Bulayiq, Mountains link = { autogenerated = yes imp = 287 imp = 296 imp = 7754 ck3 = 745 } # Smyrna, Magnesia, Sipylos Mons -> Smyrna - link = { imp = 267 imp = 261 imp = 262 imp = 268 imp = 7909 imp = 7910 ck3 = 744 } # Kale Peuke, Abydos, Kolonai, Skepsis, Ida Mons, Markaion Mons -> Abydos + link = { autogenerated = yes imp = 262 imp = 261 imp = 267 imp = 268 imp = 7909 imp = 7910 ck3 = 744 } # Kolonai, Abydos, Kale Peuke, Skepsis, Ida Mons, Markaion Mons -> Abydos link = { autogenerated = yes imp = 252 imp = 7908 ck3 = 743 } # Kyzikos, Prokonnesos/Antigoneia Kyzikena -> Kyzikos link = { autogenerated = yes imp = 12451 ck3 = 7429 ck3 = 7430 } # Nakur -> Inia, Obchikanak link = { autogenerated = yes imp = 12453 ck3 = 7422 ck3 = 7423 ck3 = 7424 ck3 = 7426 ck3 = 7434 ck3 = 7435 } # Tatte -> Sorok, Our, Kalym, Torema, Krolu, Perasku link = { autogenerated = yes imp = 12448 ck3 = 7415 ck3 = 7418 ck3 = 7421 } # Moski -> Sary Chumych, Chultuk, Kondoma link = { autogenerated = yes imp = 12450 ck3 = 7413 ck3 = 7414 } # Kaoj -> Chumych, Yeshil Chumych - link = { autogenerated = yes imp = 10819 ck3 = 7412 ck3 = 7411 } # Katun -> Urkosh, Ongutai + link = { autogenerated = yes imp = 10819 ck3 = 7412 ck3 = 7411 ck3 = 8706 } # Katun -> Urkosh, Ongutai, ALTAISHAN link = { autogenerated = yes imp = 244 imp = 7761 ck3 = 741 } # Nicaea, Sophon Mons -> Nikomedia link = { autogenerated = yes imp = 12446 ck3 = 7408 ck3 = 7410 ck3 = 7416 ck3 = 7417 ck3 = 7409 } # Weti -> Anyu, Katun, Ojin, Bilbe, Anuy link = { autogenerated = yes imp = 12442 ck3 = 7403 ck3 = 7406 ck3 = 7407 } # Ajma -> Poperech, Aley, Charych @@ -2348,12 +2381,11 @@ link = { autogenerated = yes imp = 12444 ck3 = 7395 ck3 = 7397 } # Mona -> Gorko, Barnaul link = { autogenerated = yes imp = 12445 ck3 = 7392 ck3 = 7393 ck3 = 7394 } # Epto -> Dolgo, Kulunda, Kuria link = { autogenerated = yes imp = 12428 imp = 12427 ck3 = 7391 } # Adak, Kir -> Kuchuk - link = { autogenerated = yes imp = 1812 ck3 = 739 } # Sinope -> Sinope link = { autogenerated = yes imp = 12429 ck3 = 7389 } # Tabilgan -> Kacharsku link = { autogenerated = yes imp = 12457 ck3 = 7384 ck3 = 7385 ck3 = 7387 } # Suksi -> Karasuk, Chulym, Bagan - link = { autogenerated = yes imp = 12454 ck3 = 7381 ck3 = 7425 ck3 = 7427 ck3 = 7428 ck3 = 7378 } # Neoj -> Kolyvan, Iaya, Ob, Berd', Konda_ob + link = { autogenerated = yes imp = 12454 ck3 = 7381 ck3 = 7427 ck3 = 7428 ck3 = 7378 ck3 = 7425 } # Neoj -> Kolyvan, Ob, Berd', Konda_ob, Iaya link = { autogenerated = yes imp = 12458 ck3 = 7380 ck3 = 7382 ck3 = 7383 ck3 = 7379 } # Jika -> Baksa, Chik, Kayask, Toya - link = { autogenerated = yes imp = 1807 imp = 1804 ck3 = 738 } # Amisos, Boinasa -> Amisos + link = { autogenerated = yes imp = 1807 ck3 = 738 } # Amisos -> Amisos link = { autogenerated = yes imp = 12459 ck3 = 7374 ck3 = 7386 ck3 = 7373 } # Hejkir -> Kargat, Sartlan, Ubins link = { autogenerated = yes imp = 1799 ck3 = 737 } # Mazaka -> Kaisereia link = { autogenerated = yes imp = 12341 imp = 12406 ck3 = 7357 } # Kuzd, Esik -> Jangyztau @@ -2362,20 +2394,20 @@ link = { autogenerated = yes imp = 12422 ck3 = 7347 ck3 = 7404 } # Ata -> Uba_KAZ, Korginia link = { autogenerated = yes imp = 12423 ck3 = 7346 } # Tonaz -> Semey link = { autogenerated = yes imp = 12421 ck3 = 7341 } # Tuhta -> Ayrtau - link = { imp = 12418 ck3 = 7338 ck3 = 7339 ck3 = 7355 } # Anda -> Arkat, Chulak-Terek, Tekar + link = { autogenerated = yes imp = 12418 ck3 = 7339 ck3 = 7355 } # Anda -> Chulak-Terek, Tekar link = { autogenerated = yes imp = 12420 ck3 = 7335 ck3 = 7340 } # Boz -> Mukhor, Sasyk Kul link = { autogenerated = yes imp = 12419 ck3 = 7334 ck3 = 7336 ck3 = 7337 } # Yuz -> Ak-Taylak, Arkalyk_KAZe, Urta Tau - link = { imp = 12293 ck3 = 7333 } # Taylan -> Degelen - link = { imp = 12270 ck3 = 7332 } # Karaul -> Jinghiz + link = { autogenerated = yes imp = 12293 ck3 = 7333 } # Taylan -> Degelen + link = { autogenerated = yes imp = 12270 ck3 = 7332 ck3 = 7338 } # Karaul -> Jinghiz, Arkat link = { autogenerated = yes imp = 12271 ck3 = 7329 } # Ayulyk -> Akjeku - link = { autogenerated = yes imp = 12269 ck3 = 7328 ck3 = 7330 ck3 = 7331 } # Nuraly -> Serek, Tulkulam, Kyzyl K�sk� + link = { autogenerated = yes imp = 12269 ck3 = 7328 ck3 = 7330 ck3 = 7331 } # Nuraly -> Serek, Tulkulam, Kyzyl Küskü link = { autogenerated = yes imp = 12292 ck3 = 7327 } # Akbulak -> Bakanas link = { autogenerated = yes imp = 12280 ck3 = 7325 ck3 = 7326 } # Ajyrtas -> Kalmek-Imel, Jorga link = { autogenerated = yes imp = 12272 ck3 = 7324 } # Baygabyl -> Jiren Suat link = { autogenerated = yes imp = 12273 ck3 = 7323 } # Balkhash -> Akcha-Adyr link = { autogenerated = yes imp = 12290 ck3 = 7320 ck3 = 7321 } # Tomar -> Kokchetau, Jildi link = { autogenerated = yes imp = 12291 ck3 = 7319 } # Kiikkashkan -> Dogolan - link = { autogenerated = yes imp = 12284 ck3 = 7318 } # Karaobah -> Edre� + link = { autogenerated = yes imp = 12284 ck3 = 7318 } # Karaobah -> Edreï link = { autogenerated = yes imp = 12279 ck3 = 7317 ck3 = 7322 ck3 = 7354 } # Kyzyltu -> Kara Urunkay, Koy-Bagar, Jumek waste link = { autogenerated = yes imp = 12274 ck3 = 7316 } # Tasaral -> Targyl link = { autogenerated = yes imp = 12275 ck3 = 7315 } # Kashkanteniz -> Baykara @@ -2385,10 +2417,10 @@ link = { autogenerated = yes imp = 12281 ck3 = 7304 ck3 = 7305 ck3 = 7306 } # Shabanbai -> Tokumbay, Nurtay, Kyzyl Ray link = { autogenerated = yes imp = 6003 ck3 = 73 ck3 = 76 } # Scandia -> HELSINGBORG, LAHOLM link = { autogenerated = yes imp = 12308 ck3 = 7299 ck3 = 7301 } # Janu -> Karabas, Bugaly - link = { autogenerated = yes imp = 12288 ck3 = 7298 } # Zhanaaul -> Sokur link = { autogenerated = yes imp = 12283 ck3 = 7296 ck3 = 7297 } # Taldy -> Bol Agach, Uch Katyn - link = { imp = 12285 ck3 = 7295 } # Birlik -> Bayan Aulska - link = { imp = 12289 ck3 = 7291 ck3 = 7292 ck3 = 7293 ck3 = 7294 } # Kandykol -> Juzbay, Ulenty, Uliuty, Ku-Jeku + link = { autogenerated = yes imp = 12285 ck3 = 7295 ck3 = 5864 } # Birlik -> Bayan Aulska, Kazakh wasteland + link = { autogenerated = yes imp = 12288 ck3 = 7294 ck3 = 7298 } # Zhanaaul -> Ku-Jeku, Sokur + link = { autogenerated = yes imp = 12289 ck3 = 7291 ck3 = 7292 ck3 = 7293 } # Kandykol -> Juzbay, Ulenty, Uliuty link = { autogenerated = yes imp = 12334 ck3 = 7289 ck3 = 7290 } # Hizik -> Ak Tasty, Jasky Kart link = { autogenerated = yes imp = 12410 ck3 = 7288 ck3 = 7359 } # Mely -> Bulandy, Dombraly link = { autogenerated = yes imp = 12309 ck3 = 7287 ck3 = 7300 ck3 = 7309 ck3 = 7312 } # Udaras -> Kulan Utmas, Arkalyk, Tokobay, Kuntun Kul @@ -2419,7 +2451,7 @@ link = { autogenerated = yes imp = 12370 ck3 = 7246 ck3 = 7248 } # Jhasra -> Suvunduk, Kbumak link = { autogenerated = yes imp = 12356 ck3 = 7245 ck3 = 7251 } # Asper -> Jity Kul, Jitikul link = { autogenerated = yes imp = 11413 ck3 = 7244 ck3 = 7255 } # Soma -> Chir Kala, Kyzyl Yar - link = { autogenerated = yes imp = 12355 imp = 12358 ck3 = 7243 } # Diti, Harsta -> Kum Sa� + link = { autogenerated = yes imp = 12355 imp = 12358 ck3 = 7243 } # Diti, Harsta -> Kum Saï link = { autogenerated = yes imp = 12359 ck3 = 7241 ck3 = 7242 } # Patinasana -> Kos Biryuk, Karabutak link = { autogenerated = yes imp = 11286 ck3 = 7240 } # Embi -> Airyk link = { autogenerated = yes imp = 11281 ck3 = 7238 } # Kenkiyak -> Baisary @@ -2454,8 +2486,8 @@ link = { autogenerated = yes imp = 12267 ck3 = 7182 ck3 = 7345 } # Ayagoz -> Ayagoz, Aljan link = { autogenerated = yes imp = 9453 ck3 = 7180 ck3 = 7181 ck3 = 7493 } # Duotanling -> Zatsan, Chuguchak, Tiebuken link = { autogenerated = yes imp = 12266 ck3 = 7178 ck3 = 7179 } # Ushtobe -> Kokpekty, Cherga - link = { autogenerated = yes imp = 12268 ck3 = 7177 ck3 = 7343 ck3 = 7344 } # Zaysan -> Bazarka, Kandygata�, Altyn-Kolekis - link = { autogenerated = yes imp = 9449 ck3 = 7176 ck3 = 7342 ck3 = 7348 ck3 = 7350 ck3 = 7351 } # Sargan -> Kokpektinsk, Kalbin, �skemen, Bukhtarma, Zyryan + link = { autogenerated = yes imp = 12268 ck3 = 7177 ck3 = 7343 ck3 = 7344 } # Zaysan -> Bazarka, Kandygataï, Altyn-Kolekis + link = { autogenerated = yes imp = 9449 ck3 = 7176 ck3 = 7342 ck3 = 7348 ck3 = 7350 ck3 = 7351 } # Sargan -> Kokpektinsk, Kalbin, Öskemen, Bukhtarma, Zyryan link = { autogenerated = yes imp = 12256 ck3 = 7174 } # Ul'gi -> Lyukum link = { autogenerated = yes imp = 12258 ck3 = 7171 ck3 = 7173 } # Uzyak -> Eshkiolmes, Bayanjurek link = { autogenerated = yes imp = 10613 ck3 = 7166 } # Chilpek -> Kyzyl Suu @@ -2466,7 +2498,7 @@ link = { autogenerated = yes imp = 11403 ck3 = 7156 } # Zloiar -> Khantau link = { autogenerated = yes imp = 11401 ck3 = 7155 } # Dena -> Jambyl link = { autogenerated = yes imp = 6779 imp = 6781 ck3 = 7154 } # Suyab, Yul -> Balasaghun - link = { imp = 8304 ck3 = 7152 ck3 = 7153 ck3 = 7151 ck3 = 14013 } # Beishan -> Mandzhyly-Ata, Barskhan, Naryn, Mountains + link = { autogenerated = yes imp = 8304 ck3 = 7152 ck3 = 7153 ck3 = 7150 ck3 = 7151 ck3 = 14013 } # Beishan -> Mandzhyly-Ata, Barskhan, Bagish, Naryn, Mountains link = { autogenerated = yes imp = 6778 ck3 = 7147 ck3 = 7148 } # Balasaghun -> Boluzhi, Yarish link = { autogenerated = yes imp = 11392 imp = 11396 imp = 11399 ck3 = 7143 } # Pimna, Donda, Gensa -> Itte-Kichu link = { autogenerated = yes imp = 6782 ck3 = 7146 } # Ashpara -> Tekabhet @@ -2480,12 +2512,12 @@ link = { autogenerated = yes imp = 11379 ck3 = 7133 } # Cannabis -> Jambyl link = { autogenerated = yes imp = 11380 imp = 11383 imp = 11385 ck3 = 7132 } # Iryk, Chagri, Vau -> (Unknown) link = { autogenerated = yes imp = 11381 imp = 11382 imp = 11384 ck3 = 7131 } # Herros, Ippa, Arim -> Karakul - link = { imp = 7262 ck3 = 7129 } # Maidankuyryk* -> Shavgar + link = { autogenerated = yes imp = 7262 ck3 = 7129 ck3 = 1181 ck3 = 7130 } # Maidankuyryk* -> Shavgar, Sutkend, Sary-Ozek link = { autogenerated = yes imp = 6794 ck3 = 7128 } # Kuyruk -> Yasi link = { autogenerated = yes imp = 11375 imp = 11554 ck3 = 7127 } # Maca, Impassable -> Karakur link = { autogenerated = yes imp = 6795 imp = 7261 ck3 = 7126 } # Shavgar, Maidankoga* -> Sawran link = { autogenerated = yes imp = 7249 imp = 7250 ck3 = 7124 } # Akkum*, Koga* -> Oktyabr - link = { autogenerated = yes imp = 11348 imp = 7251 ck3 = 7123 } # Kumsuat, Besta* -> Sighnaq + link = { autogenerated = yes imp = 7251 imp = 11348 ck3 = 7123 } # Besta*, Kumsuat -> Sighnaq link = { autogenerated = yes imp = 11349 ck3 = 7122 } # Taldyk -> Aksumbe link = { autogenerated = yes imp = 12297 imp = 11369 imp = 11370 imp = 11372 imp = 12296 imp = 12299 ck3 = 7121 } # Jhrdayam, Mazgi, Tigri, Sturi, Jambhas, Cwaytas -> Zhuan Tobe link = { autogenerated = yes imp = 12298 imp = 11371 imp = 11374 imp = 12304 imp = 12305 ck3 = 7120 } # Hatsti, Axsini, Kafkasos, Hsta, Scinatsti -> Sarysu @@ -2516,36 +2548,37 @@ link = { autogenerated = yes imp = 11270 imp = 11276 ck3 = 7092 } # Kez Kara, Quqyq -> Kugaral link = { autogenerated = yes imp = 11272 imp = 11271 ck3 = 7091 } # Kektikshe, Bozoy -> Kulandy link = { autogenerated = yes imp = 5488 imp = 5485 imp = 5487 ck3 = 7090 } # Tirim, Gran, Thema -> Davlet-Girei - link = { imp = 5477 imp = 5476 imp = 5475 ck3 = 7089 } # Kilich, Sthura, Bela -> Vezir + link = { autogenerated = yes imp = 5477 imp = 5476 ck3 = 7089 } # Kilich, Sthura -> Vezir link = { autogenerated = yes imp = 5428 ck3 = 7088 } # Suna -> Oglamych - link = { imp = 5459 imp = 5458 imp = 5472 imp = 5474 ck3 = 7087 } # Azkoi, Dnem, Kraz, Khrischatach -> Kum-Sebszen - link = { imp = 5461 imp = 5460 imp = 5473 ck3 = 7086 } # Khanash, Garam, Dyram -> Sumbe + link = { autogenerated = yes imp = 5459 imp = 5458 imp = 5473 ck3 = 7087 } # Azkoi, Dnem, Dyram -> Kum-Sebszen + link = { autogenerated = yes imp = 5461 imp = 5460 ck3 = 7086 } # Khanash, Garam -> Sumbe link = { autogenerated = yes imp = 5462 imp = 5463 ck3 = 7085 } # Yetteka, Ziri -> Bekdas link = { autogenerated = yes imp = 5467 imp = 5468 imp = 5469 ck3 = 7081 } # Teike, Shachkra, Byrshchre -> Fort Aleksandrovkiy link = { autogenerated = yes imp = 5457 imp = 5478 ck3 = 7079 } # Ustret, Zhanit -> Koizak link = { autogenerated = yes imp = 5471 imp = 5493 ck3 = 7078 } # Tamaasan, Thurissa -> Kajdak - link = { imp = 5492 imp = 5495 imp = 5491 imp = 5490 ck3 = 7076 } # Erim, Gyranchi, Gyoshach, Yanmal -> Churuk + link = { autogenerated = yes imp = 5492 imp = 5495 imp = 5491 imp = 5490 ck3 = 7076 } # Erim, Gyranchi, Gyoshach, Yanmal -> Churuk link = { autogenerated = yes imp = 5497 imp = 5494 ck3 = 7074 } # Kylorica, Kurchina -> Beyneu link = { autogenerated = yes imp = 5496 imp = 5498 ck3 = 7073 } # Donom, Vyoros -> Tengiz link = { autogenerated = yes imp = 5915 ck3 = 7072 } # Alsita -> Kumstan link = { autogenerated = yes imp = 11299 ck3 = 7071 } # Beyneu -> Chumishtikul link = { autogenerated = yes imp = 11298 imp = 11295 imp = 11296 imp = 11297 ck3 = 7070 } # Shomishtikol, Qosbulaq, Matay, Turush -> Kos-Buwak link = { autogenerated = yes imp = 1866 imp = 6397 imp = 839 imp = 7983 ck3 = 707 } # Korne, Tenedos, Arsameia pros Nymphaio, Nymphaios Mountains -> Melitene - link = { autogenerated = yes imp = 11292 imp = 11293 imp = 11287 ck3 = 7069 } # Qamysty, Karaoba, Chagan -> Asheh-Atrik + link = { autogenerated = yes imp = 11292 imp = 11287 ck3 = 7069 } # Qamysty, Chagan -> Asheh-Atrik link = { autogenerated = yes imp = 11290 ck3 = 7068 } # Tobusken -> Namastau - link = { autogenerated = yes imp = 11301 ck3 = 7067 } # Azgyl -> Issenjau + link = { autogenerated = yes imp = 11301 imp = 11293 ck3 = 7067 } # Azgyl, Karaoba -> Issenjau link = { autogenerated = yes imp = 11302 ck3 = 7066 } # Imankara -> Azgyl link = { autogenerated = yes imp = 5499 ck3 = 7065 } # Satticha -> Qoshagyl link = { autogenerated = yes imp = 12432 ck3 = 7064 } # Otag -> Karaoba link = { autogenerated = yes imp = 12433 ck3 = 7062 ck3 = 7063 } # Toprak -> Teke, Ertis link = { autogenerated = yes imp = 12412 imp = 12414 ck3 = 7061 } # Akar, Enyv -> Seletyteniz link = { autogenerated = yes imp = 12411 ck3 = 7060 } # Folyik -> Koksengrisor - link = { autogenerated = yes imp = 1781 imp = 1783 ck3 = 706 } # Koloneia, Anniaca -> Colonea + link = { autogenerated = yes imp = 1781 ck3 = 706 } # Koloneia -> Colonea link = { autogenerated = yes imp = 12342 ck3 = 7059 } # Marok -> Shchuchinsk - link = { autogenerated = yes imp = 12426 ck3 = 7054 } # Ordu -> Yamishevo + link = { autogenerated = yes imp = 12426 imp = 12286 ck3 = 7054 } # Ordu, Utebay -> Yamishevo link = { autogenerated = yes imp = 12430 ck3 = 7053 ck3 = 7390 } # Ogul -> Pavlodar, Lamych link = { autogenerated = yes imp = 12437 ck3 = 7052 ck3 = 7388 } # Tag -> Karasuk, Topolno link = { autogenerated = yes imp = 12435 ck3 = 7051 } # Yagmur -> Tatarki + link = { autogenerated = yes imp = 1798 imp = 5174 ck3 = 705 } # Kerasous, IMPASSIBLE TERRAIN 174 -> Cerasus link = { autogenerated = yes imp = 12438 ck3 = 7049 } # Yel -> Abyszkan link = { autogenerated = yes imp = 12436 ck3 = 7048 } # Bodun -> Sals Poveret link = { autogenerated = yes imp = 12441 ck3 = 7047 ck3 = 7050 } # Kol -> Kainsk, Chany @@ -2553,6 +2586,7 @@ link = { autogenerated = yes imp = 12431 imp = 12287 ck3 = 7043 } # Kudegu, Zhamantuz -> Koriakovsky link = { autogenerated = yes imp = 12335 ck3 = 7042 ck3 = 7280 ck3 = 7281 } # Csira -> Karu Samys, Koja Kul, Nura link = { autogenerated = yes imp = 12337 imp = 12413 ck3 = 7041 } # Zug, Altal -> Erementau + link = { autogenerated = yes imp = 1744 ck3 = 704 ck3 = 15767 ck3 = 5737 } # Karin -> Theodosiopolis, 15767, Tortomi link = { autogenerated = yes imp = 12340 ck3 = 7039 } # Sotet -> Chargaldzin link = { autogenerated = yes imp = 12339 ck3 = 7038 ck3 = 7040 } # Gyalu -> Atbasar, Astrakhanka link = { autogenerated = yes imp = 12405 ck3 = 7037 ck3 = 7358 } # Kedv -> Kokchetav, Burluk @@ -2561,7 +2595,7 @@ link = { autogenerated = yes imp = 12415 ck3 = 7034 } # Ragad -> Ibeitei link = { autogenerated = yes imp = 12416 ck3 = 7033 ck3 = 1306 } # Tegez -> Sargatka, Tara link = { autogenerated = yes imp = 12417 ck3 = 7030 ck3 = 7031 ck3 = 7032 } # Konnyu -> Kazanskoye, Tenis, Tukalinsk - link = { autogenerated = yes imp = 483 imp = 4037 imp = 8007 ck3 = 703 } # Artales, Kitharizon, Halouras -> Martyropolis + link = { autogenerated = yes imp = 8007 ck3 = 703 } # Halouras -> Martyropolis link = { autogenerated = yes imp = 12347 ck3 = 7026 } # Siraka -> Karasu link = { autogenerated = yes imp = 12348 ck3 = 7025 } # Varika -> Kush-Murun link = { autogenerated = yes imp = 12350 imp = 12349 ck3 = 7024 } # Lipoxsaya, Abruxsaya -> Auliekol @@ -2574,39 +2608,36 @@ link = { autogenerated = yes imp = 12400 ck3 = 7018 } # Sat -> Mostovskoye link = { autogenerated = yes imp = 12403 ck3 = 7017 ck3 = 7057 } # Pum -> Yalu Torovsk, Kurtan link = { autogenerated = yes imp = 12434 ck3 = 7013 ck3 = 7044 } # Bolur -> Petropavolsk, Omsk - link = { imp = 1562 ck3 = 701 } # Isumbo -> Manzikert + link = { autogenerated = yes imp = 1562 ck3 = 701 } # Isumbo -> Manzikert link = { autogenerated = yes imp = 6000 ck3 = 70 ck3 = 71 } # Uppakra -> LUND, TRELLEBORG link = { autogenerated = yes imp = 12761 ck3 = 7 } # Haemodia -> SCALLOWAY - link = { autogenerated = yes imp = 995 imp = 988 ck3 = 682 } # Molchia, Thospia -> Van - link = { autogenerated = yes imp = 1582 imp = 1583 ck3 = 681 } # Ani, Dzhrapi -> Ani - link = { autogenerated = yes imp = 1690 imp = 1676 imp = 1679 imp = 1685 imp = 1695 imp = 1699 ck3 = 679 } # Zghuderi, Meschistha-Harmozike, Kavtiskhevi, Uplistsikhe, Borjomi, Mzetamze -> Gori - link = { autogenerated = yes imp = 1734 imp = 1773 imp = 1775 imp = 1797 imp = 8000 ck3 = 678 } # Trapezous, Tzantzakon, Magnana, Koralla, Trapezous Mountains -> Trebizond - link = { autogenerated = yes imp = 1701 imp = 1723 imp = 1724 imp = 1725 ck3 = 677 } # Goderdzi pass, Pichvnari, Apasidam, Portus Altus -> Batumi - link = { autogenerated = yes imp = 7604 ck3 = 674 } # Tzur -> Derbent - link = { autogenerated = yes imp = 1668 imp = 1550 imp = 1571 ck3 = 672 } # Vayots Dzor, Verahram Qal'eh, Artaxata -> Dvin - link = { autogenerated = yes imp = 1616 imp = 1614 imp = 1615 imp = 5213 ck3 = 671 } # Kapan, Sigan, Balaberd, IMPASSIBLE TERRAIN 213 -> Kapan - link = { autogenerated = yes imp = 1640 imp = 1664 ck3 = 670 } # Tigranakert, Arank -> Gandzasar + link = { autogenerated = yes imp = 988 ck3 = 682 } # Thospia -> Van + link = { autogenerated = yes imp = 1583 ck3 = 681 } # Dzhrapi -> Ani + link = { autogenerated = yes imp = 1689 ck3 = 679 } # Urbnisi -> Gori + link = { autogenerated = yes imp = 1724 imp = 1725 ck3 = 677 } # Apasidam, Portus Altus -> Batumi + link = { autogenerated = yes imp = 1657 imp = 5435 ck3 = 676 } # Telavi, Kurus -> Telavi + link = { autogenerated = yes imp = 1666 ck3 = 670 } # Koght -> Gandzasar link = { autogenerated = yes imp = 3884 ck3 = 67 ck3 = 68 } # HeruliaMeridionalis -> NYKOBING, NAKSKOV - link = { autogenerated = yes imp = 1634 imp = 1662 ck3 = 669 } # Kamachia, Lupenia -> Shemakha + link = { autogenerated = yes imp = 1662 ck3 = 669 ck3 = 15812 } # Lupenia -> Shemakha, 15812 link = { autogenerated = yes imp = 3881 ck3 = 66 } # AngliaInsula -> SVENDBORG link = { autogenerated = yes imp = 3883 ck3 = 65 } # ReudingiaMinores -> ODENSE - link = { autogenerated = yes imp = 9971 imp = 9967 imp = 9972 imp = 9979 ck3 = 6448 } # Umm Abid, Mughattah, Brak, Samnu -> SABHA + link = { imp = 9981 imp = 9982 imp = 9983 imp = 9984 imp = 9985 ck3 = 6449 } # Chlef, Gelah, Lecksair, Garama, Zinchekra -> GERMA + link = { autogenerated = yes imp = 9971 imp = 9967 imp = 9972 imp = 9979 imp = 9980 ck3 = 6448 } # Umm Abid, Mughattah, Brak, Samnu, Sabha -> SABHA link = { autogenerated = yes imp = 10418 imp = 10441 imp = 10416 ck3 = 6445 } # Kura, Samtarru, Rumaylah -> WAD_ABU_NAHL link = { autogenerated = yes imp = 10433 imp = 7591 ck3 = 6444 } # Barakit, Acranoe* -> SHOWAK_SOUTH link = { autogenerated = yes imp = 633 imp = 10428 imp = 10430 imp = 8102 ck3 = 6443 } # Druka*, Mareb, Durna, Sudan Impassable -> GASH - link = { autogenerated = yes imp = 10429 imp = 10457 imp = 8101 ck3 = 6442 } # Hambok, Tokolay, Ethiopia Impassable -> TO_LUS link = { autogenerated = yes imp = 7551 imp = 10510 imp = 10511 ck3 = 6441 } # UNINHABITABLE, Nakfa, Afabet -> KA'BIR link = { autogenerated = yes imp = 3331 imp = 10419 imp = 7590 ck3 = 6437 } # Zithaa*, Gamal, Demora* -> SHOWAK - link = { imp = 3323 imp = 10425 imp = 10424 ck3 = 6411 } # Durai*, Tuwesat, Taragaga -> MIDDLE_ATBARA + link = { autogenerated = yes imp = 3323 imp = 10425 imp = 10424 ck3 = 6411 } # Durai*, Tuwesat, Taragaga -> MIDDLE_ATBARA link = { autogenerated = yes imp = 10401 imp = 10400 imp = 7588 imp = 10403 ck3 = 6409 } # Bagarah, Hufrah, Dmut, Mirikh -> UMM_USUDA link = { autogenerated = yes imp = 10383 imp = 10381 imp = 10382 imp = 10384 imp = 10399 ck3 = 6408 } # Hatab, Hamadab, Bafalil, Suriba, Kakabi -> BASA link = { autogenerated = yes imp = 10386 imp = 10376 imp = 10377 imp = 10380 imp = 10385 imp = 10387 imp = 10388 ck3 = 6407 } # Zariba, Mahdood, Hissuna, Hejeilat, Adabda, Keili, Harazah -> NAGA - link = { autogenerated = yes imp = 10409 ck3 = 6406 } # Ghorani -> BASHARGA + link = { autogenerated = yes imp = 10409 imp = 9931 ck3 = 6406 } # Ghorani, Amara -> BASHARGA link = { autogenerated = yes imp = 10410 imp = 10411 imp = 10414 ck3 = 6405 } # Fao, Singda, Qalbi -> EL-ELEILA - link = { autogenerated = yes imp = 10413 imp = 9937 imp = 10415 ck3 = 6404 } # Dinder, Singa, Simsim -> ABU_GEILI + link = { autogenerated = yes imp = 9938 ck3 = 6401 ck3 = 6429 } # Surayj -> SAQADI, KOSTI link = { autogenerated = yes imp = 9941 ck3 = 6400 ck3 = 6403 } # Abal -> SENNAR, SINGA link = { autogenerated = yes imp = 3885 ck3 = 64 } # HeruliaCentralis -> NAESTVED - link = { autogenerated = yes imp = 9932 imp = 9931 imp = 9933 ck3 = 6399 } # Sennar, Amara, Jebel Moya -> UM_SUNT + link = { autogenerated = yes imp = 9932 imp = 9933 ck3 = 6399 } # Sennar, Jebel Moya -> UM_SUNT link = { autogenerated = yes imp = 9936 ck3 = 6398 } # Manaqil -> ARBAJI link = { autogenerated = yes imp = 3319 imp = 3317 ck3 = 6397 } # Syuta*, Attrah* -> KAMLIN link = { autogenerated = yes imp = 3320 imp = 9934 imp = 9935 ck3 = 6396 } # Korin*, Rabak, Kawah -> GETEINA @@ -2615,8 +2646,8 @@ link = { autogenerated = yes imp = 3315 imp = 3318 imp = 9930 imp = 9928 imp = 9929 imp = 9940 ck3 = 6393 } # Sobra*, Kuria*, Kigeira, Muqaddam, Bana, Santah -> USHARA link = { autogenerated = yes imp = 3313 imp = 10378 imp = 10379 ck3 = 6392 } # Soba***, Surayriyah, Sayyidab -> KADERO link = { autogenerated = yes imp = 3311 imp = 10375 ck3 = 6391 } # Toprate*, Kasir -> GEILI - link = { imp = 9927 imp = 3312 imp = 9926 imp = 9925 imp = 9924 ck3 = 6390 } # Fashfash, Petta*, Samra, Baggura, Bum -> SHAHEINAB - link = { autogenerated = yes imp = 7598 imp = 9913 imp = 7597 ck3 = 6388 } # Sabaste???????, Gidmib, Erascum?????? -> LOWER_ODIB + link = { autogenerated = yes imp = 9927 imp = 3312 imp = 9926 imp = 9925 imp = 9924 ck3 = 6390 } # Fashfash, Petta*, Samra, Baggura, Bum -> SHAHEINAB + link = { autogenerated = yes imp = 7598 imp = 7597 imp = 9913 imp = 583 ck3 = 6388 } # Sabaste???????, Erascum??????, Gidmib, Berenike -> LOWER_ODIB link = { autogenerated = yes imp = 10392 ck3 = 6382 } # Misrar -> WADI_AMUR link = { autogenerated = yes imp = 7553 imp = 7552 ck3 = 6380 } # UNINHABITABLE, UNINHABITABLE -> BADI link = { autogenerated = yes imp = 7500 ck3 = 6379 ck3 = 6381 } # Ptolemais Theron -> AKIK, BAZIN @@ -2626,17 +2657,16 @@ link = { autogenerated = yes imp = 7596 imp = 7595 ck3 = 6371 } # Canarbis???, Arachos* -> DUNGUNAB link = { autogenerated = yes imp = 626 ck3 = 6368 ck3 = 6369 } # Napata -> REDAB, KUWEIB link = { autogenerated = yes imp = 646 ck3 = 6367 } # Fourth Cataract -> SHEMKHIYA - link = { imp = 640 imp = 643 imp = 9888 imp = 9889 ck3 = 6365 } # Epis, Araba, Tulih, Fura -> KELI + link = { autogenerated = yes imp = 640 imp = 643 imp = 9888 ck3 = 6365 } # Epis, Araba, Tulih -> KELI link = { autogenerated = yes imp = 644 imp = 10373 imp = 10374 ck3 = 6364 } # Naqa, Aborepi, Nagaa -> SHENDI link = { autogenerated = yes imp = 642 imp = 641 ck3 = 6363 } # Summarum, Meroe -> AL-ABWAB - link = { imp = 9898 ck3 = 6361 } # Hudi -> SABAGURA - link = { imp = 592 ck3 = 6362 } # Talmis -> KALABSHA + link = { autogenerated = yes imp = 9898 ck3 = 6361 } # Hudi -> SABAGURA + link = { autogenerated = yes imp = 592 ck3 = 6362 } # Talmis -> KALABSHA link = { autogenerated = yes imp = 607 imp = 605 ck3 = 6359 } # Gugo, Noa -> KASSI-MARKOL link = { autogenerated = yes imp = 7592 imp = 634 imp = 637 imp = 638 imp = 7587 ck3 = 6358 } # Ganagaras******???????, Darou, Mallo, Sakolche, Anak* -> ED-DAMER link = { autogenerated = yes imp = 635 imp = 629 imp = 631 imp = 636 imp = 639 imp = 9890 ck3 = 6357 } # Galim, Sankole, Gora, Seserem, Tadu, Kurmut -> AL-BAWGA link = { autogenerated = yes imp = 3321 imp = 3322 imp = 632 ck3 = 6356 } # Rocat*, Borassa, Abale -> ATBARA - link = { imp = 628 ck3 = 6389 } # Alana -> SHUNQAYR - link = { imp = 630 ck3 = 6355 } # Scammos -> BERBER + link = { autogenerated = yes imp = 628 imp = 630 ck3 = 6355 } # Alana, Scammos -> BERBER link = { autogenerated = yes imp = 7584 imp = 10398 ck3 = 6353 } # Hashem, Hashim -> TARFAYA link = { autogenerated = yes imp = 627 imp = 645 ck3 = 6351 } # Marru, Kurgus -> KURGUS link = { autogenerated = yes imp = 7585 imp = 9893 ck3 = 6349 } # Nuri, Kuweib -> NURI @@ -2644,8 +2674,9 @@ link = { autogenerated = yes imp = 625 ck3 = 6347 } # Cortum -> TANKASI link = { autogenerated = yes imp = 611 imp = 609 ck3 = 6343 } # Orsum, Acina -> DONGOLA link = { autogenerated = yes imp = 7580 imp = 7579 imp = 7581 ck3 = 6338 } # Tila, Firke, Pderme -> AKASHA + link = { autogenerated = yes imp = 603 imp = 600 imp = 5521 ck3 = 6336 } # Boon, Pachora, Boron -> FARAS link = { autogenerated = yes imp = 599 imp = 598 imp = 5519 ck3 = 6333 } # Cambusis, Premis, Simbel -> SHEIKH_DAWUD - link = { autogenerated = yes imp = 595 ck3 = 6329 ck3 = 6330 } # Kortia -> QURTA, IKHMINDI + link = { autogenerated = yes imp = 595 ck3 = 6329 } # Kortia -> QURTA link = { autogenerated = yes imp = 7569 imp = 4709 imp = 7568 ck3 = 6317 } # UNINHABITABLE, Sidh, UNINHABITABLE -> HASIK link = { autogenerated = yes imp = 11246 ck3 = 6316 } # Andhur -> MIRBA link = { autogenerated = yes imp = 4707 imp = 11235 ck3 = 6315 } # Abyssa, Thumrait -> DHUFAR @@ -2712,8 +2743,7 @@ link = { autogenerated = yes imp = 4719 imp = 4616 imp = 4618 imp = 4716 imp = 7736 ck3 = 6207 } # Eroe, Ausara, Thumna, Tiamat, Harrat Khaybar -> KHAYBAR link = { autogenerated = yes imp = 4720 imp = 11226 imp = 11227 imp = 4717 ck3 = 6203 } # Yathrib, Qamra, Dharghat, Gaiapolis -> FADAK link = { autogenerated = yes imp = 4615 imp = 4714 ck3 = 6200 } # Dedan, Hegra -> AL-ULA - link = { autogenerated = yes imp = 6223 imp = 6222 imp = 6224 imp = 6225 imp = 6226 imp = 11328 imp = 6227 ck3 = 620 } # Khorolats, Arzhahk, Vhingad, Monok, Urmonok, Suyindik, Zale -> Itil - link = { imp = 3861 imp = 3862 ck3 = 62 } # AngliaCentralis, AngliaSeptentrionalis -> HEDEBY + link = { autogenerated = yes imp = 3861 ck3 = 62 } # AngliaCentralis -> HEDEBY link = { autogenerated = yes imp = 4622 imp = 4619 ck3 = 6199 } # Iuthra, ApudiaVallis -> AS-SUQYA link = { autogenerated = yes imp = 4621 imp = 4620 ck3 = 6198 } # Harenae, Alaura -> AL-HAWRA link = { autogenerated = yes imp = 4610 imp = 4608 ck3 = 6197 } # Raunathou Kome, Phoinikon Kome -> AL-WAJH @@ -2722,7 +2752,7 @@ link = { autogenerated = yes imp = 4603 ck3 = 6193 } # Modiana -> ZIBA link = { autogenerated = yes imp = 4715 ck3 = 6191 ck3 = 6201 } # Demne -> AL-MUHDATHA, AL-HIJR link = { autogenerated = yes imp = 4713 ck3 = 6190 } # Achroua -> AL-AQRA - link = { autogenerated = yes imp = 11341 imp = 11333 imp = 11334 imp = 11338 imp = 11458 ck3 = 619 } # Bulukhta, Akhtuba, Sary Su, Ilicha, Zyrenka -> Saray + link = { autogenerated = yes imp = 11333 ck3 = 619 } # Akhtuba -> Saray link = { autogenerated = yes imp = 4601 imp = 4611 imp = 4613 ck3 = 6188 } # Baclanaza, Madiama, Aybara -> TABUK link = { autogenerated = yes imp = 726 ck3 = 6187 } # Madiama -> MADYAN link = { autogenerated = yes imp = 4600 ck3 = 6185 } # Ostama -> SHARAF AL-BAL @@ -2755,33 +2785,36 @@ link = { autogenerated = yes imp = 5418 ck3 = 6136 ck3 = 6142 } # Vatum -> RUSTAQ-OMAN, JEBEL AKHDAR link = { autogenerated = yes imp = 7213 imp = 11253 ck3 = 6135 } # Dirma, Suwayq -> BATINA-EAST link = { autogenerated = yes imp = 7209 imp = 5416 ck3 = 6134 } # Omana, Ecrune -> SUHAR - link = { imp = 5429 imp = 7208 ck3 = 6133 } # Iepana, Regna -> DABBA + link = { autogenerated = yes imp = 7208 imp = 5429 ck3 = 6133 } # Regna, Iepana -> DABBA link = { autogenerated = yes imp = 7210 ck3 = 6132 } # Helios Limen -> MUSANDAM link = { autogenerated = yes imp = 11249 ck3 = 6131 } # Dur -> JULFAR link = { autogenerated = yes imp = 5415 imp = 5414 imp = 7207 imp = 7211 ck3 = 6130 } # Motta, Murkhan, Kanepsa, Kalas -> TAWWAM-WEST link = { autogenerated = yes imp = 11250 imp = 5430 ck3 = 6129 } # Rumailah, Trazel -> TAWWAM link = { autogenerated = yes imp = 647 imp = 581 imp = 649 imp = 650 ck3 = 6122 } # Quei, Semna, Lykabettus-PorphyritesMons, Drepanum (unsettled) -> SAFAGA - link = { autogenerated = yes imp = 9901 imp = 9897 ck3 = 6121 } # Asele, Abraq -> UM SHASHOBA - link = { autogenerated = yes imp = 9899 imp = 9900 ck3 = 6120 } # Shabbabah, Karim -> SOUTH_JBL_QUZLUM - link = { autogenerated = yes imp = 588 imp = 586 imp = 589 imp = 587 ck3 = 6118 } # Aristonis, Sukkari, Falacro, Nechesia -> NORTH_JBL_QUZLUM - link = { imp = 9902 imp = 9908 imp = 9909 imp = 9910 imp = 8081 ck3 = 6113 } # Ghaloa, Garaiyat, Allaqi, Fas, Desert -> ALLAQI + link = { autogenerated = yes imp = 9901 imp = 9897 imp = 9896 ck3 = 6121 } # Asele, Abraq, Ileigha -> UM SHASHOBA + link = { autogenerated = yes imp = 9899 imp = 9900 imp = 5352 ck3 = 6120 } # Shabbabah, Karim, IP 353 -> SOUTH_JBL_QUZLUM + link = { autogenerated = yes imp = 588 imp = 586 imp = 587 imp = 589 ck3 = 6118 } # Aristonis, Sukkari, Nechesia, Falacro -> NORTH_JBL_QUZLUM + link = { autogenerated = yes imp = 9911 imp = 9902 imp = 9908 imp = 9909 imp = 9910 imp = 8081 ck3 = 6113 } # Eigat, Ghaloa, Garaiyat, Allaqi, Fas, Desert -> ALLAQI link = { autogenerated = yes imp = 9906 imp = 9904 imp = 9905 imp = 9907 imp = 593 imp = 9921 ck3 = 6112 } # Dhahab, Contra Pselchis, Hairiri, Heimur, Pselkis, Dayyub -> HAIMUR - link = { autogenerated = yes imp = 7594 ck3 = 6110 ck3 = 6373 } # Sabraiton* -> AYDHAB, GEBEIT - link = { autogenerated = yes imp = 580 imp = 579 imp = 582 ck3 = 6109 } # Myos Hormos, Persou, Siqdit -> QUSAYR + link = { autogenerated = yes imp = 7594 ck3 = 6110 } # Sabraiton* -> AYDHAB + link = { autogenerated = yes imp = 580 imp = 582 imp = 579 ck3 = 6109 } # Myos Hormos, Siqdit, Persou -> QUSAYR link = { autogenerated = yes imp = 9947 imp = 9946 imp = 9948 ck3 = 6107 } # Gicherra, Mawahi, Gialo -> JALU - link = { imp = 3350 imp = 3346 imp = 3348 ck3 = 6105 } # Euesperides, Amastor, Chersis -> BENGHAZI - link = { imp = 3354 imp = 3352 imp = 3353 ck3 = 6104 } # Ptolemais, Hadrianopolis, Arsinoe -> BARQA-AL-MARJ - link = { imp = 3360 imp = 3358 imp = 3359 imp = 3361 ck3 = 6101 } # Cyrene, Phykous, Balagrae, Apollonia -> MARAWA - link = { imp = 3865 ck3 = 61 } # CimbricaMinores -> AABENRAA + link = { autogenerated = yes imp = 3350 imp = 3346 imp = 3347 imp = 3348 ck3 = 6105 } # Euesperides, Amastor, Talliamunera, Chersis -> BENGHAZI + link = { autogenerated = yes imp = 3354 imp = 3352 imp = 3353 ck3 = 6104 } # Ptolemais, Hadrianopolis, Arsinoe -> BARQA-AL-MARJ + link = { imp = 3357 imp = 3351 ck3 = 6102 } # Barke, Chairekla -> WADI MASUS + link = { autogenerated = yes imp = 3360 imp = 3358 imp = 3359 imp = 3361 ck3 = 6101 } # Cyrene, Phykous, Balagrae, Apollonia -> MARAWA + link = { autogenerated = yes imp = 3865 imp = 3862 ck3 = 61 } # CimbricaMinores, AngliaSeptentrionalis -> AABENRAA link = { autogenerated = yes imp = 3363 imp = 3365 imp = 3366 ck3 = 6099 } # Darnis, Aziris, Paliouros -> DERNA link = { autogenerated = yes imp = 3372 imp = 3368 imp = 3369 imp = 3370 imp = 3371 imp = 9970 ck3 = 6098 } # Menelaos, Batrachos, Gonia, Antipyrgos, Kyrthanion, Shaqiq -> TOBRUK link = { autogenerated = yes imp = 3373 imp = 3374 imp = 3375 ck3 = 6097 } # CatabathmusMagnus, Nesus, Chettaia -> SULLUM link = { autogenerated = yes imp = 3379 imp = 3380 imp = 3476 imp = 5553 imp = 5556 ck3 = 6095 } # Kallias, LeukeAkte, Pnigeus, Graias, Abid -> QASR_ASH_SHAMMAS link = { autogenerated = yes imp = 445 imp = 3477 imp = 3478 ck3 = 6094 } # Antiphrai, Pedonia, Derras -> AL-HAMAM link = { autogenerated = yes imp = 5538 imp = 5555 imp = 9942 ck3 = 6093 } # Gargara, Carnasa, Tubat -> SIWA + link = { autogenerated = yes imp = 5537 imp = 5551 imp = 5540 imp = 5539 ck3 = 6092 } # Ammon, Varias*, Areg, Zethin** -> AIN_AL-GHANBI link = { autogenerated = yes imp = 5534 imp = 5535 ck3 = 6091 } # Varam*, Colira* -> AL-HARRA link = { autogenerated = yes imp = 5527 imp = 5529 imp = 5528 imp = 5541 ck3 = 6090 } # Tablarum, Poka, Elassa, Shunne -> BAWITI link = { autogenerated = yes imp = 5530 imp = 5531 ck3 = 6089 } # Mandish****, Parva -> AL-BAHRIYA + link = { autogenerated = yes imp = 5523 imp = 5524 imp = 5525 imp = 5526 ck3 = 6088 } # Farafra, Bishaya, Tawar, Minqar*** -> AL-FARAFRA link = { autogenerated = yes imp = 5511 imp = 5514 ck3 = 6087 } # Trimithis, Siwa -> AL-QASR-DAKHLA link = { autogenerated = yes imp = 5512 imp = 5509 imp = 5513 ck3 = 6086 } # Thenete, Kellis, Parammon -> TUNAYDA link = { autogenerated = yes imp = 5506 imp = 5507 ck3 = 6084 } # Tchonemyris, Tabenesse -> BARIS @@ -2790,31 +2823,28 @@ link = { autogenerated = yes imp = 575 imp = 574 imp = 578 ck3 = 6080 } # Eileithyiopolis, Latopolis, Hydreuma to epi tou Paneiou -> ZARNIKH link = { autogenerated = yes imp = 12513 imp = 12514 ck3 = 608 } # Pors, Kymos -> Ukek link = { autogenerated = yes imp = 576 ck3 = 6079 ck3 = 6082 } # Apollonopolis Magna -> UDFU, ASWAN-WEST - link = { imp = 571 imp = 567 imp = 570 imp = 573 ck3 = 6078 } # Terkythis, Apollonopolis Parva, Memnonia, Pathyris -> ARMANT - link = { imp = 564 imp = 566 imp = 565 ck3 = 6076 } # Kainepolis, Koptos, Ghuzza -> QINA + link = { autogenerated = yes imp = 573 imp = 567 imp = 570 imp = 571 ck3 = 6078 } # Pathyris, Apollonopolis Parva, Memnonia, Terkythis -> ARMANT + link = { autogenerated = yes imp = 564 imp = 566 imp = 5286 ck3 = 6076 } # Kainepolis, Koptos, IMPASSIBLE TERRAIN 286 -> QINA link = { autogenerated = yes imp = 562 imp = 563 ck3 = 6074 } # Diospolis Mikra, Tenthyris -> HUW link = { autogenerated = yes imp = 560 imp = 561 ck3 = 6073 } # Thinis, Abydos -> IBSHAYA - link = { imp = 559 ck3 = 6075 } # Ptolemais Hermeiou -> FAW - link = { imp = 557 ck3 = 6072 } # Panopolis -> IKHMIN + link = { autogenerated = yes imp = 559 imp = 557 ck3 = 6072 } # Ptolemais Hermeiou, Panopolis -> IKHMIN link = { autogenerated = yes imp = 553 imp = 556 ck3 = 6071 } # Lykopolis, Antaiopolis -> BAWIT link = { autogenerated = yes imp = 5500 imp = 555 imp = 558 ck3 = 6070 } # Erebe, Hypsele, Athribis -> ASYUT - link = { autogenerated = yes imp = 6202 imp = 6193 imp = 5900 ck3 = 607 } # Irkant, Zhev, Dryna -> Sarkel + link = { autogenerated = yes imp = 6201 ck3 = 607 } # Agharite -> Sarkel link = { autogenerated = yes imp = 554 imp = 5501 ck3 = 6069 } # Moirai, Pohe -> MANFALUT link = { autogenerated = yes imp = 548 imp = 551 imp = 552 ck3 = 6068 } # Alabastronpolis, Besa, Koussai -> ANSINA link = { autogenerated = yes imp = 546 ck3 = 6064 } # Kynopolis -> IHRIT link = { autogenerated = yes imp = 5533 imp = 547 imp = 5532 ck3 = 6063 } # Oxyrhincus, Chysis, Sinary -> AL-BAHNASA link = { autogenerated = yes imp = 545 imp = 544 ck3 = 6062 } # Oxyrhynchus, Herakleopolis -> AHNAS link = { autogenerated = yes imp = 5547 imp = 5546 imp = 5548 ck3 = 6061 } # Philoteris, Nakala, Kerkethoris -> IQNA - link = { autogenerated = yes imp = 7631 imp = 7622 ck3 = 606 } # Irkat*, Skarin* -> Petigoria - link = { imp = 537 imp = 5549 ck3 = 6059 } # Panarachthis, Takyris -> TIRSA - link = { imp = 541 imp = 543 ck3 = 6058 } # Karanis, Nilopolis -> BUSIR + link = { autogenerated = yes imp = 541 imp = 537 imp = 543 imp = 5549 ck3 = 6058 } # Karanis, Panarachthis, Nilopolis, Takyris -> BUSIR link = { autogenerated = yes imp = 515 imp = 527 ck3 = 6055 } # Naukratis, Atarbechis-Aphroditopolis -> RAMSIS link = { autogenerated = yes imp = 531 imp = 517 ck3 = 6054 } # Psenemphaia, Hermopolis Mikra -> DAMANHUR link = { autogenerated = yes imp = 453 ck3 = 6053 ck3 = 6116 } # Mareia -> ALEXANDRIA, WADI_NATRUN link = { autogenerated = yes imp = 516 imp = 529 imp = 530 imp = 532 ck3 = 6052 } # Alexandria, Kanopos, Bolbitine, Chaireon -> RASHID link = { autogenerated = yes imp = 528 imp = 526 ck3 = 6051 } # Isieion, Onouphis Ano -> MINUF link = { autogenerated = yes imp = 520 imp = 519 imp = 521 ck3 = 6050 } # Xois, Sais, Sebennytos -> IBYAR - link = { autogenerated = yes imp = 6216 imp = 6210 imp = 6211 imp = 6213 imp = 6217 imp = 6212 ck3 = 605 } # Vyalke, Ghenarcha, Urgenarcha, Achkhacsh, Ogron, Ygrre -> Beksima + link = { autogenerated = yes imp = 6217 imp = 6211 imp = 6216 ck3 = 605 } # Ogron, Urgenarcha, Vyalke -> Beksima link = { autogenerated = yes imp = 7691 imp = 518 imp = 533 ck3 = 6049 } # Perseos Skope, Buto, Chemmis -> NASTARAWA link = { autogenerated = yes imp = 522 ck3 = 6047 } # Diospolis Kato -> SAMANNUD link = { autogenerated = yes imp = 523 ck3 = 6048 } # Pakhnemounis -> BURULLUS @@ -2823,12 +2853,11 @@ link = { autogenerated = yes imp = 655 imp = 502 imp = 511 ck3 = 6044 } # Serapieion, (Unknown), Phakoussai -> FAQUS link = { autogenerated = yes imp = 534 imp = 7689 ck3 = 6043 } # Mendes, Hermopolis -> DAQAHLA link = { autogenerated = yes imp = 504 imp = 513 imp = 524 ck3 = 6041 } # Leontopolis, Athribis, Pharbaithos -> QALYUB - link = { autogenerated = yes imp = 5905 imp = 5904 imp = 5906 imp = 6221 imp = 5903 ck3 = 604 } # Iska, Mylla, Vorena, Zhelk, Gonnema -> Khazaran + link = { autogenerated = yes imp = 8050 ck3 = 604 ck3 = 620 } # Moslar -> Khazaran, Itil link = { autogenerated = yes imp = 1600 imp = 1604 ck3 = 6035 } # Marah, Phoinikon -> QALAT_JUNDI link = { autogenerated = yes imp = 1682 ck3 = 6033 } # Rhaithou -> AT-TUR link = { autogenerated = yes imp = 1693 ck3 = 6032 } # Horeb Mons -> STCATHERINE link = { autogenerated = yes imp = 1684 imp = 1688 imp = 1708 ck3 = 6031 } # Ain Hudera, Nuweiba, Tell el-Mashraba -> DAHAB - link = { autogenerated = yes imp = 7626 imp = 7624 imp = 7625 imp = 7627 imp = 1674 ck3 = 603 } # Arukai*, Contani, Didai, Verks*, Cumania -> Cabarda link = { autogenerated = yes imp = 964 imp = 5303 ck3 = 6022 } # Teredon, IP 304 -> AL-BASRA link = { autogenerated = yes imp = 942 ck3 = 6020 } # Apologos -> AL-UBULLA link = { autogenerated = yes imp = 12508 imp = 11485 imp = 11471 imp = 11472 ck3 = 602 } # Zer, Uluki, Skula, Saioi -> Tasqala @@ -2839,7 +2868,6 @@ link = { autogenerated = yes imp = 943 ck3 = 6014 } # Soloke -> DAWRAQ link = { autogenerated = yes imp = 945 ck3 = 6011 ck3 = 6012 } # Taryana/Ardashir -> AHWAZ, HUWAIZA link = { autogenerated = yes imp = 975 ck3 = 6010 } # Cissia* -> BASINNA - link = { autogenerated = yes imp = 1714 imp = 1707 ck3 = 601 } # Onogouris, Kotais -> Kutaisi link = { autogenerated = yes imp = 970 ck3 = 6009 } # Madhar -> AL-MADHAR link = { autogenerated = yes imp = 938 ck3 = 6008 } # Nina -> NAHR_SIMMARA link = { autogenerated = yes imp = 937 imp = 939 ck3 = 6007 } # Uruk, Larsa -> AL-QATR @@ -2847,32 +2875,31 @@ link = { autogenerated = yes imp = 932 imp = 936 ck3 = 6005 } # Dabrum, Medain -> AR-RUSAFA-IRAQ link = { autogenerated = yes imp = 931 imp = 921 imp = 923 imp = 929 ck3 = 6004 } # Isin, Marad, Qadissiyya, Nippur -> AS-SALIQ link = { autogenerated = yes imp = 12762 ck3 = 6 } # Faeroe -> TORSHAVN - link = { autogenerated = yes imp = 7634 imp = 4559 ck3 = 599 } # Khulor, Pataroue -> Yaseni - link = { imp = 720 imp = 714 imp = 715 ck3 = 5985 } # Asophon, Tyrus, Gadara -> JARASH + link = { autogenerated = yes imp = 7634 ck3 = 599 } # Khulor -> Yaseni + link = { autogenerated = yes imp = 720 imp = 714 imp = 715 ck3 = 5985 } # Asophon, Tyrus, Gadara -> JARASH link = { autogenerated = yes imp = 718 ck3 = 5984 ck3 = 5986 } # Philadelpheia -> AMMAN, AZ-ZARQA link = { autogenerated = yes imp = 717 imp = 712 imp = 713 imp = 716 ck3 = 5983 } # Madaba, Aroes, Livias, Esbous -> MUJIB link = { autogenerated = yes imp = 681 ck3 = 5981 } # Characmoba -> MAAB link = { autogenerated = yes imp = 731 ck3 = 5980 ck3 = 5982 ck3 = 5988 } # Mhai -> KERAK, ZAIZA, AL-JILAT - link = { autogenerated = yes imp = 4562 imp = 4563 imp = 4564 imp = 4565 ck3 = 598 } # Hermonassa, Phanagoria, Labrys, SindikosLimen -> Tmutarakan link = { autogenerated = yes imp = 730 ck3 = 5978 ck3 = 5976 ck3 = 5977 ck3 = 5979 } # Adrou -> SHAWBAK, MAAN, ADRUH, AT-TAFILA - link = { imp = 727 imp = 728 imp = 6045 imp = 7647 ck3 = 5975 } # Aramaua, Auara, Nabatean Desert, Impassable -> AL-HUMAYMA + link = { autogenerated = yes imp = 727 imp = 704 imp = 728 imp = 6045 imp = 7647 ck3 = 5975 } # Aramaua, Aelana, Auara, Nabatean Desert, Impassable -> AL-HUMAYMA link = { autogenerated = yes imp = 724 ck3 = 5974 } # Ankale -> AQABA - link = { imp = 704 imp = 705 ck3 = 5973 } # Aelana, Timnah -> AILA + link = { autogenerated = yes imp = 705 ck3 = 5973 } # Timnah -> AILA link = { autogenerated = yes imp = 706 imp = 703 ck3 = 5972 } # Bossia, Gypsaria -> ARANDAL link = { autogenerated = yes imp = 729 imp = 707 imp = 708 ck3 = 5971 } # Petra, Arieldela, Kalgouia -> BAIDHA-PETRA link = { autogenerated = yes imp = 701 imp = 656 imp = 657 imp = 697 imp = 702 ck3 = 5970 } # Maghara, Rinokoloura, Bitylion, Nessana, Quseima -> AL-ARISH - link = { imp = 4558 imp = 5884 imp = 7637 ck3 = 597 } # Paniardis, Katys, Yeyata -> Azov + link = { autogenerated = yes imp = 5884 ck3 = 597 } # Katys -> Azov link = { autogenerated = yes imp = 709 imp = 699 ck3 = 5969 } # Toloha, Eboda -> ZUGHAR - link = { imp = 696 imp = 658 imp = 659 imp = 694 ck3 = 5968 } # Betomolachon, Raphia, Kadytis/Gaza, Maon -> GHAZZA + link = { autogenerated = yes imp = 696 imp = 658 imp = 659 imp = 694 imp = 698 ck3 = 5968 } # Betomolachon, Raphia, Kadytis/Gaza, Maon, Sobata -> GHAZZA link = { autogenerated = yes imp = 693 imp = 660 imp = 661 ck3 = 5967 } # Thala, Ashqelon/Ascalon, Ashdod -> ASCALON link = { autogenerated = yes imp = 692 imp = 691 imp = 695 imp = 700 imp = 710 imp = 711 ck3 = 5966 } # Adora, Hebron, Elousa, Mampsis, Zoara, Masada -> HEBRON link = { autogenerated = yes imp = 684 imp = 686 imp = 687 imp = 688 ck3 = 5965 } # Iericho, Emmaus, Ierusalem, Thekoa -> JERUSALEM link = { autogenerated = yes imp = 719 imp = 676 imp = 680 imp = 683 ck3 = 5964 } # Akraba, Salem, Neapolis, Ephraim -> NABLUS link = { autogenerated = yes imp = 689 imp = 685 imp = 690 ck3 = 5963 } # Bethar, Lydda, Marisa -> AR-RAMLA link = { autogenerated = yes imp = 682 imp = 662 imp = 663 imp = 664 ck3 = 5962 } # Antipatris, Iamneia, Ioppe, Apollonia -> YAFFA - link = { imp = 665 imp = 667 imp = 668 imp = 671 imp = 678 imp = 679 ck3 = 5961 } # Caesarea, Dora, Boukolonpolis, Kefar Shuni, Narbata, Samaria -> CESAREA + link = { autogenerated = yes imp = 678 imp = 665 imp = 667 imp = 668 imp = 671 imp = 679 ck3 = 5961 } # Narbata, Caesarea, Dora, Boukolonpolis, Kefar Shuni, Samaria -> CESAREA link = { autogenerated = yes imp = 670 imp = 666 imp = 669 imp = 677 ck3 = 5960 } # Ake-Ptolemais, Sykamina, Jellemeh, Asochis -> ACRE - link = { imp = 6178 imp = 4557 imp = 6187 imp = 6189 ck3 = 596 } # Ganka, Tanais, Zhutikka, Arn -> Tana + link = { autogenerated = yes imp = 6178 imp = 4557 imp = 6180 imp = 6187 imp = 6189 ck3 = 596 } # Ganka, Tanais, Vygriya, Zhutikka, Arn -> Tana link = { autogenerated = yes imp = 648 imp = 672 imp = 673 imp = 674 ck3 = 5959 } # Gennesar, Iezreel, Scythopolis, Philoteria -> TIBERIAS link = { autogenerated = yes imp = 721 imp = 675 imp = 722 ck3 = 5958 } # Gerasa, Pella, Gadara2 -> IRBID link = { autogenerated = yes imp = 735 imp = 734 ck3 = 5957 } # Canatha, Bostra -> AS-SUWAIDA-HAURAN @@ -2886,9 +2913,10 @@ link = { autogenerated = yes imp = 802 ck3 = 5946 } # Oriza -> URD link = { autogenerated = yes imp = 806 ck3 = 5943 ck3 = 4880 } # Zenobia/Birtha -> RATLA, AL-KHANUQA link = { autogenerated = yes imp = 851 ck3 = 5941 ck3 = 5942 } # Ammattha -> KHUNASIRA, SURIYA - link = { imp = 815 imp = 803 ck3 = 5940 } # Seriane, Resafa -> AR-RUSAFA - link = { autogenerated = yes imp = 6196 imp = 6197 imp = 6199 imp = 6200 ck3 = 594 } # Volat, Urghno, Ydologh, Urvel -> Kazarki + link = { autogenerated = yes imp = 803 imp = 815 ck3 = 5940 } # Resafa, Seriane -> AR-RUSAFA + link = { autogenerated = yes imp = 6196 imp = 6197 imp = 6199 ck3 = 594 } # Volat, Urghno, Ydologh -> Kazarki link = { autogenerated = yes imp = 814 ck3 = 5938 ck3 = 5939 } # Barbalissus -> BUZAA, SIFFIN + link = { autogenerated = yes imp = 753 imp = 751 imp = 752 imp = 7988 ck3 = 5937 } # Segeira, Chalybon, Gerra, Hermon Mons -> ANJAR link = { autogenerated = yes imp = 7985 imp = 787 imp = 5996 ck3 = 5936 } # Telmenissos, Seleukobelos, Diokleion Mons -> AR-RIKHA link = { autogenerated = yes imp = 791 ck3 = 5935 } # Darkus -> ARTAH link = { autogenerated = yes imp = 813 ck3 = 5934 } # Anasartha -> HALAB @@ -2898,9 +2926,9 @@ link = { autogenerated = yes imp = 799 ck3 = 5930 } # Occaraba -> HAMA link = { autogenerated = yes imp = 11439 imp = 11438 ck3 = 593 } # Aerac, Citras -> Khopyor link = { autogenerated = yes imp = 776 ck3 = 5929 ck3 = 5949 } # Otthara -> HIMS, JUDR - link = { autogenerated = yes imp = 770 imp = 761 imp = 762 ck3 = 5928 } # Cara, Triparadeisos, Conna -> JUSIYA + link = { autogenerated = yes imp = 770 imp = 761 ck3 = 5928 } # Cara, Triparadeisos -> JUSIYA link = { autogenerated = yes imp = 759 imp = 758 ck3 = 5927 } # Thelseai, Vallis Alba -> AL-QASTAL - link = { imp = 760 ck3 = 5925 } # Iabrouda -> AZ-ZABADANI + link = { autogenerated = yes imp = 760 ck3 = 5925 ck3 = 1380 } # Iabrouda -> AZ-ZABADANI, SYRIAN IMPASSABLE link = { autogenerated = yes imp = 738 imp = 737 ck3 = 5923 } # Maked, Raphon -> NAWA link = { autogenerated = yes imp = 740 ck3 = 5922 } # Dan -> BANIYAS link = { autogenerated = yes imp = 745 imp = 742 imp = 743 imp = 744 ck3 = 5921 } # Gelil, Kadasa, Tyrus, Hammon -> TYRE @@ -2913,12 +2941,12 @@ link = { autogenerated = yes imp = 784 imp = 786 imp = 788 imp = 783 ck3 = 5912 } # Sigon, Laodicea, Posideion, Bargylus Mons -> LATAKIA link = { autogenerated = yes imp = 785 imp = 780 ck3 = 5911 } # Tell Soukas, Carne -> JABALA link = { autogenerated = yes imp = 789 imp = 790 ck3 = 5910 } # leukeia Pieria, Antiochia -> ANTIOCH + link = { autogenerated = yes imp = 807 ck3 = 5908 } # Hierapolis -> MANBIJ link = { autogenerated = yes imp = 808 ck3 = 5907 } # Batnai -> AZAZ link = { autogenerated = yes imp = 798 imp = 793 ck3 = 5906 } # Beroia, Gindaros -> TALL_AFRIN link = { autogenerated = yes imp = 795 imp = 8021 ck3 = 5905 } # Myriandros, Syrian Gates -> ALEXANDRETTA - link = { imp = 1871 imp = 792 ck3 = 5904 } # Syrian Gates, Trapezon -> BAGHRAS + link = { autogenerated = yes imp = 792 imp = 1871 ck3 = 5904 } # Trapezon, Syrian Gates -> BAGHRAS link = { autogenerated = yes imp = 812 imp = 794 ck3 = 5903 } # Nicopolis, Cyrrus -> QURUS - link = { autogenerated = yes imp = 807 ck3 = 5902 ck3 = 5908 } # Hierapolis -> JARABULUS, MANBIJ link = { autogenerated = yes imp = 852 ck3 = 5901 } # Chaonia -> TALL_BASHIR link = { autogenerated = yes imp = 810 ck3 = 5900 } # Zeugma/Seleukeia pros to Euphrate -> AINTAB link = { autogenerated = yes imp = 12372 ck3 = 5894 ck3 = 5895 } # Suw -> Ore, Tobol_BIS @@ -2929,71 +2957,43 @@ link = { autogenerated = yes imp = 12396 ck3 = 5889 } # Ingala -> Terom link = { autogenerated = yes imp = 12392 ck3 = 5885 ck3 = 5884 ck3 = 5886 } # Jinkwe -> Laia, Tagil, Deriabinskoye link = { autogenerated = yes imp = 12401 ck3 = 5883 ck3 = 891 ck3 = 5882 ck3 = 7014 } # Tur -> Oblacas, Tyumen, Tabary, Vagay - link = { autogenerated = yes imp = 12523 ck3 = 588 } # Med -> Yoshkar-Ola link = { autogenerated = yes imp = 12577 ck3 = 587 } # Rappana -> Mozhaysk - link = { autogenerated = yes imp = 12558 ck3 = 581 ck3 = 584 } # Karkeda -> Murom, Nizhny Novgorod - link = { autogenerated = yes imp = 12555 ck3 = 580 } # Sedej -> Ryazan link = { autogenerated = yes imp = 3870 ck3 = 58 } # EudosiaMeridionalis -> JELLING - link = { autogenerated = yes imp = 1529 imp = 1500 imp = 1502 imp = 1530 imp = 1531 imp = 1532 ck3 = 5794 } # Darman, Chauon, Tasuk, Halaqu Qal'eh, Malejin, Zarawand -> Gher - link = { autogenerated = yes imp = 1631 ck3 = 5793 } # Spandaran -> Barzand + link = { autogenerated = yes imp = 1500 imp = 1532 ck3 = 5794 } # Chauon, Zarawand -> Gher link = { autogenerated = yes imp = 1618 ck3 = 5792 } # Mish -> Nakorzan - link = { autogenerated = yes imp = 1649 imp = 1632 imp = 1648 ck3 = 5791 } # Masalas, Balanrot, Ghizil-Agaj -> Langarkanan + link = { autogenerated = yes imp = 1652 ck3 = 5790 } # Talish -> Paytakaran link = { autogenerated = yes imp = 1638 ck3 = 5789 } # Warthan -> Varsan - link = { autogenerated = yes imp = 1652 imp = 1651 imp = 1654 ck3 = 5788 } # Talish, Shahargah, Mochi -> Gabarawan - link = { autogenerated = yes imp = 1540 imp = 1538 imp = 1623 ck3 = 5787 } # Parakan, Sanora, Arevik -> Jugha - link = { autogenerated = yes imp = 1667 imp = 1665 imp = 7737 ck3 = 5786 } # Aghahechk, Parsakank, Qarqar -> Goris - link = { autogenerated = yes imp = 1669 imp = 1501 imp = 1542 imp = 1613 imp = 5214 ck3 = 5785 } # Chahuk, Naxouana, Arxata, Shalat, IMPASSIBLE TERRAIN 214 -> Naxcivan - link = { autogenerated = yes imp = 1650 imp = 1617 imp = 1639 ck3 = 5784 } # Sisakan Inferior, Nakorzan, Amaras -> Ktis - link = { autogenerated = yes imp = 1670 ck3 = 5783 } # Partaw -> Parnes - link = { autogenerated = yes imp = 1608 imp = 1605 ck3 = 5780 } # Berd, Gezlu -> Tovuz - link = { autogenerated = yes imp = 1671 imp = 1584 ck3 = 5779 } # Southwest Arran, Utidorsi -> Barda - link = { autogenerated = yes imp = 1661 imp = 1635 ck3 = 5778 } # Arash, Nyudi -> Mingachevir - link = { autogenerated = yes imp = 1637 ck3 = 5777 } # Mingechaur -> Ganja - link = { autogenerated = yes imp = 1672 ck3 = 5776 } # Southeast Arran -> Paidangaran - link = { autogenerated = yes imp = 1655 ck3 = 5775 } # Kaladasht -> Kudevan - link = { autogenerated = yes imp = 1636 ck3 = 5774 } # Chabala -> Kabala - link = { autogenerated = yes imp = 1647 ck3 = 5773 ck3 = 5790 } # Salyan -> Salyan, Paytakaran - link = { autogenerated = yes imp = 1644 ck3 = 5772 } # Paytakaran -> Maras - link = { autogenerated = yes imp = 1642 imp = 1633 ck3 = 5771 } # Absheron, Bagawan -> Baku - link = { autogenerated = yes imp = 1643 imp = 1641 ck3 = 5770 } # Samukh, Gumbati -> Dedoplitskhara - link = { autogenerated = yes imp = 12570 ck3 = 577 } # Kursa -> Pronsk - link = { autogenerated = yes imp = 1645 ck3 = 5769 ck3 = 673 } # Shaki -> Ghisi, Nukhpata - link = { autogenerated = yes imp = 1659 imp = 1656 ck3 = 5768 } # Lagodekhi, Zakatala -> Zaqatala - link = { autogenerated = yes imp = 1660 ck3 = 5766 ck3 = 5767 } # Cambysene -> Kharnabuji, Ujarma - link = { autogenerated = yes imp = 1658 ck3 = 5765 } # Shilda -> Gavazi - link = { autogenerated = yes imp = 1680 imp = 1687 ck3 = 5764 } # Zalissa, Jhinvali -> Mtskheta - link = { autogenerated = yes imp = 1609 imp = 1606 imp = 1607 imp = 1610 ck3 = 5762 } # Kariglukh, Berdatekh, Idzhevan, Sary-tepe -> Kayan - link = { autogenerated = yes imp = 1678 ck3 = 5760 } # Seusamora -> Rustavi + link = { autogenerated = yes imp = 1654 ck3 = 5788 } # Mochi -> Gabarawan + link = { autogenerated = yes imp = 1501 ck3 = 5785 } # Naxouana -> Naxcivan + link = { autogenerated = yes imp = 1646 ck3 = 5781 ck3 = 15795 } # Gardman -> Shamkur, 15795 + link = { autogenerated = yes imp = 1637 ck3 = 5777 ck3 = 5778 } # Mingechaur -> Ganja, Mingachevir + link = { autogenerated = yes imp = 1584 ck3 = 5776 } # Utidorsi -> Paidangaran + link = { autogenerated = yes imp = 1647 ck3 = 5773 } # Salyan -> Salyan + link = { autogenerated = yes imp = 1641 ck3 = 5770 } # Gumbati -> Dedoplitskhara + link = { autogenerated = yes imp = 1680 ck3 = 5764 ck3 = 15908 } # Zalissa -> Mtskheta, 15908 + link = { autogenerated = yes imp = 1607 ck3 = 5762 } # Idzhevan -> Kayan + link = { autogenerated = yes imp = 1686 ck3 = 5761 ck3 = 15870 } # Samshvilde -> Bolnisi, 15870 link = { autogenerated = yes imp = 10248 imp = 10247 ck3 = 576 } # Blagoveshchenskaya, Rechitsa -> Debryansk + link = { autogenerated = yes imp = 1612 ck3 = 5759 } # Tbilisi -> Tbilisi link = { autogenerated = yes imp = 1703 imp = 1704 imp = 1746 ck3 = 5757 } # Bori, Sarapanis, Itkhvissi -> Shorapann - link = { autogenerated = yes imp = 1706 imp = 1696 imp = 1700 imp = 5203 imp = 5204 ck3 = 5756 } # Rhodopolis, Leukothea, Zekari Pass, IMPASSIBLE TERRAIN 203, IMPASSIBLE TERRAIN 204 -> Vartsikhe - link = { autogenerated = yes imp = 1711 imp = 1720 imp = 1722 ck3 = 5754 } # Telephis, Phasis, Vashnari -> Poti - link = { autogenerated = yes imp = 1705 imp = 1748 ck3 = 5753 } # Skandis, Modinakhe -> Kvara - link = { autogenerated = yes imp = 1749 ck3 = 5752 ck3 = 5751 } # Brili -> Kasriskari, Ambrolauri - link = { autogenerated = yes imp = 1715 imp = 1717 imp = 1735 ck3 = 5749 } # Archaiopolis, Chaladidi, Ergeta -> Zugdidi - link = { autogenerated = yes imp = 1739 imp = 1737 imp = 1738 ck3 = 5747 } # Tqvarcheli, Ziganne, Gyenos -> Gudakva - link = { autogenerated = yes imp = 1740 ck3 = 5746 } # Tzibile -> Tskhumi - link = { autogenerated = yes imp = 1743 ck3 = 5744 } # Pityous -> Bichvinta - link = { autogenerated = yes imp = 1753 imp = 1754 imp = 5197 ck3 = 5741 } # Kola, Artahan, IMPASSIBLE TERRAIN 197 -> Artaani - link = { autogenerated = yes imp = 1697 imp = 1755 imp = 5200 imp = 5202 ck3 = 5739 } # Akhaltsikhe, Colit, IMPASSIBLE TERRAIN 200, IMPASSIBLE TERRAIN 202 -> Akhaltsikhe - link = { autogenerated = yes imp = 1702 imp = 5205 ck3 = 5738 } # Javakheti, IMPASSIBLE TERRAIN 205 -> Tmogvi - link = { autogenerated = yes imp = 1736 imp = 1751 imp = 5198 ck3 = 5735 } # Chadas, Barantea, IMPASSIBLE TERRAIN 198 -> Sevuki - link = { autogenerated = yes imp = 1564 ck3 = 5731 } # Colchion -> Valashkert - link = { autogenerated = yes imp = 1569 imp = 1568 imp = 1581 ck3 = 5730 } # Paracata, Hariza, Eruandakert -> Tsalakert - link = { autogenerated = yes imp = 1588 imp = 1591 imp = 5211 ck3 = 5729 } # Kamo, Karchakhpyur, IMPASSIBLE TERRAIN 211 -> Garni - link = { autogenerated = yes imp = 1589 imp = 1572 imp = 1573 imp = 1575 ck3 = 5728 } # Atarbegian, Doubios, Gorneae, Erebuni -> Yerevan - link = { imp = 1576 imp = 1570 imp = 1577 imp = 1579 imp = 1580 ck3 = 5726 } # Kainepolis, Armaouira, Motene, Ashnak, Katnakhpyur -> Bagaran - link = { autogenerated = yes imp = 1587 imp = 1585 imp = 1586 imp = 5201 ck3 = 5725 } # Vardbach, Shirakavan, Hokhmik, IMPASSIBLE TERRAIN 201 -> Dlim - link = { autogenerated = yes imp = 1561 imp = 996 imp = 999 ck3 = 5724 } # Mardastan, Alouaka, Hayk -> Hadamakert - link = { autogenerated = yes imp = 1560 imp = 987 imp = 989 imp = 998 ck3 = 5723 } # Andzevatsik (Kangovar), Zoaranda, Nymphaeum, Artemita -> Akhtamar - link = { autogenerated = yes imp = 1559 imp = 1534 imp = 1535 imp = 997 imp = 1537 ck3 = 5722 } # Aladagh Qal'eh, Bastam, Qiz Chakhlu, Kotorodz, Nuarsak -> Maku - link = { autogenerated = yes imp = 1536 ck3 = 5721 } # Khezerlu Qal'eh -> Berkri - link = { autogenerated = yes imp = 1544 imp = 1547 imp = 1548 imp = 1549 imp = 1551 imp = 1543 imp = 1545 ck3 = 5720 } # Catispi, Keshmesh, Sangar Qal'eh, Teroua, Hajestan Qal'eh, Siah Qal'eh, Barun Qal'eh -> Bagavan - link = { autogenerated = yes imp = 993 ck3 = 5718 } # Calata -> Khlat - link = { autogenerated = yes imp = 846 imp = 978 ck3 = 5717 } # Cymiza, Dauduana -> Tatvan - link = { autogenerated = yes imp = 994 ck3 = 5716 ck3 = 5715 } # Ashtishat -> Musch, Varto + link = { autogenerated = yes imp = 1720 ck3 = 5754 } # Phasis -> Poti + link = { autogenerated = yes imp = 1705 ck3 = 5753 } # Skandis -> Kvara + link = { autogenerated = yes imp = 1735 imp = 1737 ck3 = 5747 } # Ergeta, Ziganne -> Gudakva + link = { autogenerated = yes imp = 1742 ck3 = 5744 ck3 = 5745 ck3 = 15559 } # Tracheia -> Bichvinta, Anacopia, 15559 + link = { autogenerated = yes imp = 1683 ck3 = 5743 } # Aghaiani -> Uplistsikhe + link = { autogenerated = yes imp = 1756 ck3 = 5740 ck3 = 15850 } # Artanuji -> Arthanuji, 15850 + link = { autogenerated = yes imp = 1696 imp = 5202 ck3 = 5739 } # Leukothea, IMPASSIBLE TERRAIN 202 -> Akhaltsikhe + link = { autogenerated = yes imp = 1573 ck3 = 5729 } # Gorneae -> Garni + link = { autogenerated = yes imp = 1572 ck3 = 5728 } # Doubios -> Yerevan + link = { autogenerated = yes imp = 1587 imp = 5207 ck3 = 5727 } # Vardbach, IMPASSIBLE TERRAIN 207 -> Kumayri + link = { autogenerated = yes imp = 1585 ck3 = 5725 } # Shirakavan -> Dlim + link = { autogenerated = yes imp = 996 ck3 = 5724 ck3 = 4817 } # Alouaka -> Hadamakert, JUZA + link = { autogenerated = yes imp = 989 imp = 987 ck3 = 5723 } # Nymphaeum, Zoaranda -> Akhtamar + link = { autogenerated = yes imp = 1545 ck3 = 5722 ck3 = 15713 } # Barun Qal'eh -> Maku, Mountains + link = { autogenerated = yes imp = 990 ck3 = 5719 ck3 = 5732 } # Elegoana -> Arjesh, Patnos + link = { autogenerated = yes imp = 978 imp = 846 ck3 = 5717 } # Dauduana, Cymiza -> Tatvan link = { autogenerated = yes imp = 8010 imp = 8006 ck3 = 5712 } # Koloua, Koubina Mountains -> Balu - link = { autogenerated = yes imp = 8008 imp = 1765 imp = 1767 imp = 5191 ck3 = 5711 } # Palios, Ioustiniane, Eriza, IMPASSIBLE TERRAIN 191 -> Koloberd + link = { autogenerated = yes imp = 8008 imp = 5191 ck3 = 5711 } # Palios, IMPASSIBLE TERRAIN 191 -> Koloberd link = { autogenerated = yes imp = 12562 ck3 = 571 ck3 = 573 } # Ahtera -> Uglich, Pereyaslavl Zalessky link = { autogenerated = yes imp = 1854 imp = 1865 imp = 7982 ck3 = 5708 } # Melitene, Miasena, Perrhe Mountains -> Arca link = { autogenerated = yes imp = 858 imp = 1855 imp = 235 ck3 = 5707 } # Arsamosata, Elegeia, Tomisa -> Arsamosata @@ -3002,14 +3002,13 @@ link = { autogenerated = yes imp = 1782 imp = 7980 ck3 = 5701 } # Nicopolis, Pedachthoe Mountains -> Nicopolis_ARM link = { autogenerated = yes imp = 1789 imp = 1790 ck3 = 5700 } # Syderos, Comana Pontica -> Hypseie link = { autogenerated = yes imp = 3873 ck3 = 57 } # EudosiaSeptentrionalis -> AARHUS - link = { autogenerated = yes imp = 1776 imp = 1770 imp = 1772 ck3 = 5699 } # Arauraka, Satala, Longini Fossatum -> Sinoria - link = { imp = 1792 imp = 1787 imp = 7996 ck3 = 5698 } # Kabeira, Danae, Danae Mountains -> Neocaesara - link = { autogenerated = yes imp = 1763 imp = 8002 ck3 = 5695 } # Darucinte, Eriza Mountains -> Keltzine - link = { autogenerated = yes imp = 1760 imp = 1762 imp = 5196 ck3 = 5694 } # Sinoria, Elegeia, IMPASSIBLE TERRAIN 196 -> Baeberdon - link = { autogenerated = yes imp = 1761 ck3 = 5693 } # Charton -> Hyspiratis - link = { imp = 1793 imp = 1786 ck3 = 5690 } # Polemonion, Sauronisena -> Polemonium + link = { autogenerated = yes imp = 1792 imp = 1787 imp = 7995 imp = 7996 ck3 = 5698 } # Kabeira, Danae, Kabeira Mountains, Danae Mountains -> Neocaesara + link = { autogenerated = yes imp = 1722 imp = 1723 ck3 = 5697 } # Vashnari, Pichvnari -> Petra + link = { autogenerated = yes imp = 1763 imp = 1765 imp = 1762 imp = 8002 ck3 = 5695 } # Darucinte, Ioustiniane, Elegeia, Eriza Mountains -> Keltzine + link = { autogenerated = yes imp = 1759 ck3 = 5693 ck3 = 5709 } # Sper -> Hyspiratis, Speri + link = { autogenerated = yes imp = 1730 ck3 = 5692 } # Rhizaion -> Rhizus link = { autogenerated = yes imp = 12580 ck3 = 569 } # Orko -> Vyazma - link = { autogenerated = yes imp = 1806 imp = 7995 ck3 = 5689 } # Themiskyra, Kabeira Mountains -> Oinaion + link = { autogenerated = yes imp = 1793 ck3 = 5689 ck3 = 5690 } # Polemonion -> Oinaion, Polemonium link = { autogenerated = yes imp = 197 imp = 202 ck3 = 5684 } # Sarmalius, Ciscissus -> Ecobrogis link = { autogenerated = yes imp = 1825 ck3 = 5683 } # Taouion -> Tabia link = { autogenerated = yes imp = 334 imp = 6431 ck3 = 5682 } # Paphos, Palaipaphos -> Paphos @@ -3036,26 +3035,26 @@ link = { autogenerated = yes imp = 1925 imp = 1926 imp = 7955 ck3 = 5662 } # Tymbriada, Anaboura, Adada Mountains -> Neapolis link = { autogenerated = yes imp = 1928 imp = 1930 imp = 1937 imp = 8060 ck3 = 5661 } # Antiochia, Apollonia, Metropolis, Mordaion Mons -> Antiochia link = { autogenerated = yes imp = 186 imp = 8012 imp = 8059 ck3 = 5660 } # Eukarpia, Synnada Mountains, Eukarpia Mons -> Synnada - link = { autogenerated = yes imp = 10351 imp = 10344 imp = 10345 imp = 10352 ck3 = 566 } # Volchya, Tikhaya Sosna, Chernyanka, Artilne -> Oskol + link = { autogenerated = yes imp = 10345 ck3 = 566 } # Chernyanka -> Oskol link = { autogenerated = yes imp = 187 imp = 309 ck3 = 5659 } # Kidyessos, Akmonia -> Docimium link = { autogenerated = yes imp = 1941 imp = 1939 imp = 7911 ck3 = 5658 } # Synnada, Tekmoreioi, Sultan Mountains -> Amorion - link = { imp = 230 imp = 179 imp = 7969 ck3 = 5657 } # Selmena, Philomelion, Men Mountains -> Philomelium - link = { autogenerated = yes imp = 180 imp = 1777 ck3 = 5656 } # Keissia, Azareis -> Tyraion + link = { autogenerated = yes imp = 179 imp = 230 imp = 7969 ck3 = 5657 } # Philomelion, Selmena, Men Mountains -> Philomelium + link = { autogenerated = yes imp = 180 imp = 1777 imp = 181 ck3 = 5656 } # Keissia, Azareis, Klaneos -> Tyraion link = { autogenerated = yes imp = 191 imp = 192 ck3 = 5655 } # Ouetissos, Kyballion -> Germa - link = { autogenerated = yes imp = 183 imp = 181 imp = 182 imp = 184 imp = 328 ck3 = 5654 } # Amorion, Klaneos, Aurokra, Dokimeion, Orkistos -> Polybotus + link = { autogenerated = yes imp = 183 imp = 182 imp = 184 imp = 328 ck3 = 5654 } # Amorion, Aurokra, Dokimeion, Orkistos -> Polybotus link = { autogenerated = yes imp = 314 imp = 313 ck3 = 5653 } # Nakoleia, Metropolis -> Midaeum link = { autogenerated = yes imp = 185 imp = 318 ck3 = 5652 } # Ipsos, Meiros -> Nakoleia link = { autogenerated = yes imp = 302 imp = 8013 ck3 = 5651 } # Kadoi, Akmoneia Mountains -> Aezani link = { autogenerated = yes imp = 1957 imp = 1956 imp = 1984 imp = 5159 ck3 = 5650 } # Kidrama, Tabai, Mobolla, IMPASSIBLE TERRAIN 159 -> Aphrodisias - link = { autogenerated = yes imp = 10186 ck3 = 565 } # Vovchansk -> Kharka + link = { autogenerated = yes imp = 10187 imp = 10185 ck3 = 565 } # Merefa, Zolochiv -> Kharka link = { autogenerated = yes imp = 1876 imp = 1985 imp = 1987 imp = 1989 imp = 7942 ck3 = 5649 } # Phlaouiopolis, Kallipolis, Knidos, Kaunos, Daidala -> Cridus link = { autogenerated = yes imp = 1958 imp = 1992 imp = 1997 imp = 7944 ck3 = 5648 } # Cibyra, Telmessos, Lyrna, Telmessos Mountains -> Cibyra link = { autogenerated = yes imp = 1995 imp = 1993 imp = 7948 imp = 7946 ck3 = 5647 } # Xanthos, Tlos, Kadyanda, Xanthos Mountains -> Telmessos - link = { imp = 1960 imp = 171 imp = 1961 imp = 1990 imp = 1991 imp = 7947 imp = 5161 ck3 = 5646 } # Sinda, Isinda, Olbasa, Oenoanda, Podalia, Balboura, IMPASSIBLE TERRAIN 161 -> Olbasa + link = { autogenerated = yes imp = 1960 imp = 171 imp = 1961 imp = 1990 imp = 1991 imp = 7947 imp = 5161 ck3 = 5646 } # Sinda, Isinda, Olbasa, Oenoanda, Podalia, Balboura, IMPASSIBLE TERRAIN 161 -> Olbasa link = { autogenerated = yes imp = 159 imp = 156 imp = 160 imp = 161 imp = 1998 imp = 7949 imp = 7943 imp = 7945 imp = 7950 ck3 = 5645 } # Choma, Myra, Arykanda, Limyra, Patara, Kandyba, Tlos Mountains, Oenodanda Mountains, Kadyanda Mountains -> Myra link = { autogenerated = yes imp = 162 imp = 164 imp = 7951 imp = 5162 ck3 = 5644 } # Olympus, Phaselis, Kitanaura, IMPASSIBLE TERRAIN 162 -> Limyra link = { autogenerated = yes imp = 170 ck3 = 5643 } # Termessos -> Phaselis - link = { imp = 1986 ck3 = 5642 } # Pogla -> Cremna + link = { autogenerated = yes imp = 1986 ck3 = 5642 } # Pogla -> Cremna link = { autogenerated = yes imp = 1911 ck3 = 5641 } # Sillyon -> Side link = { autogenerated = yes imp = 1910 imp = 168 ck3 = 5640 } # Side, Aspendos -> Korakesion link = { autogenerated = yes imp = 6169 imp = 6162 imp = 6168 imp = 6173 ck3 = 564 } # Veryi, Ygast, Ushkan, Sythachka -> Bakhmut @@ -3068,60 +3067,53 @@ link = { autogenerated = yes imp = 1788 imp = 1900 imp = 205 imp = 7735 ck3 = 5631 } # Nora, Dasmenda, Zeila, Argaios Mons -> Nazianzus link = { autogenerated = yes imp = 1954 ck3 = 5630 } # Garsaura -> Garsaura link = { autogenerated = yes imp = 6165 imp = 4556 ck3 = 563 } # Vel, Karoia -> Taganrog - link = { imp = 1914 imp = 173 imp = 1938 imp = 1978 ck3 = 5629 } # Salarama, Koropassos, Ardistama, Salambriai -> Comitanassus - link = { imp = 1940 ck3 = 5628 } # Cybistra -> Cybistra + link = { autogenerated = yes imp = 1914 imp = 173 imp = 1978 ck3 = 5629 } # Salarama, Koropassos, Salambriai -> Comitanassus + link = { autogenerated = yes imp = 1940 imp = 1938 ck3 = 5628 } # Cybistra, Ardistama -> Cybistra link = { autogenerated = yes imp = 1872 imp = 1883 imp = 8022 ck3 = 5627 } # Cilician Gates, Tarsus, Cilician Gates -> Podandus link = { autogenerated = yes imp = 1877 imp = 1875 imp = 1880 ck3 = 5625 } # Anazarbos, Hierapolis, Mopsouhestia -> Anazaribus link = { autogenerated = yes imp = 1881 imp = 1889 ck3 = 5624 } # Mallos, Magarsa -> Mallus link = { autogenerated = yes imp = 1800 ck3 = 5623 } # Korama -> Kyzistra - link = { imp = 1813 imp = 1817 imp = 1818 ck3 = 5622 } # Nyssa, Zoropassos, Ouenasa -> Zeila_CHA + link = { autogenerated = yes imp = 1813 imp = 1817 imp = 1818 ck3 = 5622 } # Nyssa, Zoropassos, Ouenasa -> Zeila_CHA link = { autogenerated = yes imp = 1912 ck3 = 5621 ck3 = 5617 } # Archalla -> Euaissa, Charsianon link = { autogenerated = yes imp = 1820 ck3 = 5620 } # Saravene -> Aspona_CHA - link = { autogenerated = yes imp = 4549 imp = 4550 ck3 = 562 } # Bosporus, Kimmerikon -> Kerch + link = { autogenerated = yes imp = 4549 ck3 = 562 } # Bosporus -> Kerch link = { autogenerated = yes imp = 1832 imp = 1923 ck3 = 5619 } # Therma, Soanda -> Soanda link = { autogenerated = yes imp = 1932 imp = 1836 imp = 1909 ck3 = 5618 } # Euaissa, Pteria, Sibora -> Therma link = { autogenerated = yes imp = 1982 imp = 155 imp = 1794 imp = 7967 ck3 = 5616 } # Ariaramneia, Kiskisos, KyzistraTRUE, Baka Mons -> Arasaxa link = { autogenerated = yes imp = 1803 imp = 1796 imp = 1802 imp = 7979 ck3 = 5615 } # Herpha, Eusebeia, Euagina, Arasaxa Mountains -> Herpha link = { autogenerated = yes imp = 6420 imp = 1805 imp = 7970 ck3 = 5614 } # Eulepa, Anisa, Eulepa Mountains -> Armaxa - link = { autogenerated = yes imp = 1902 imp = 7976 imp = 7977 ck3 = 5613 } # Coduzalaba, Euagina Mountains, Kiskikos Mountains -> Ariaratheia + link = { autogenerated = yes imp = 1902 imp = 1893 imp = 7976 imp = 7977 ck3 = 5613 } # Coduzalaba, Ariaratheia, Euagina Mountains, Kiskikos Mountains -> Ariaratheia link = { autogenerated = yes imp = 1878 imp = 7986 ck3 = 5612 } # Sipha, Commagean Gates -> Cocussus link = { autogenerated = yes imp = 1895 imp = 5176 ck3 = 5611 } # Ulnia, IMPASSIBLE TERRAIN 176 -> Arabissus link = { autogenerated = yes imp = 1983 imp = 172 imp = 1976 imp = 7978 ck3 = 5610 } # Kabassos, Comana, Kokousos, Kokousos Mountains -> Comana_LYK - link = { autogenerated = yes imp = 4543 imp = 4544 ck3 = 561 } # Athenaion, Theodosia -> Theodosia link = { autogenerated = yes imp = 157 imp = 1994 imp = 1999 imp = 7975 ck3 = 5609 } # Ouarsapa, Arabissos, Maroga, Ouarsapa Mountains -> Tanadaris - link = { imp = 163 imp = 1886 ck3 = 5608 } # Osdara, Dalanda -> Osdara - link = { imp = 1859 imp = 1852 imp = 1861 imp = 5178 imp = 5179 ck3 = 5607 } # Arca, Siniskolon, Zizoatra, IMPASSIBLE TERRAIN 178, IMPASSIBLE TERRAIN 179 -> Dalanda + link = { autogenerated = yes imp = 163 imp = 1886 imp = 5178 ck3 = 5608 } # Osdara, Dalanda, IMPASSIBLE TERRAIN 178 -> Osdara + link = { autogenerated = yes imp = 1859 imp = 1852 imp = 1861 imp = 5179 ck3 = 5607 } # Arca, Siniskolon, Zizoatra, IMPASSIBLE TERRAIN 179 -> Dalanda link = { autogenerated = yes imp = 1898 ck3 = 5606 } # Gauraina -> Gauraina link = { autogenerated = yes imp = 1851 imp = 1766 imp = 1929 ck3 = 5605 } # Euspena, Arane, Phouphagena -> Euspena - link = { autogenerated = yes imp = 1891 imp = 1893 imp = 7973 imp = 7974 ck3 = 5604 } # Karnalis, Ariaratheia, Karnalis Mountains, Gauraina Mountains -> Karnalis + link = { autogenerated = yes imp = 1891 imp = 7973 imp = 7974 ck3 = 5604 } # Karnalis, Karnalis Mountains, Gauraina Mountains -> Karnalis link = { autogenerated = yes imp = 1849 ck3 = 5603 } # Tonosa -> Malandra link = { autogenerated = yes imp = 1848 imp = 1850 ck3 = 5602 } # Zoana, Gundusa -> Sebasteia link = { autogenerated = yes imp = 1844 imp = 1843 imp = 1846 ck3 = 5601 } # Sebasteia, Kamisa, Pedachthoe -> Pedachtoe link = { autogenerated = yes imp = 1907 imp = 1839 imp = 1899 imp = 7972 ck3 = 5600 } # Agranai, Sebastopolis, Armaxa, Synnada Mountains -> Agranai - link = { autogenerated = yes imp = 4538 imp = 4537 imp = 4539 imp = 4540 imp = 4541 ck3 = 560 } # Chersonesos, Parthenion, Charax, Lampas, AloustouPhrourion -> Chersonesus link = { autogenerated = yes imp = 3876 ck3 = 56 } # TeutoniaCentralis -> VIBORG link = { autogenerated = yes imp = 1845 imp = 1833 imp = 1840 ck3 = 5599 } # Phiara, Dazimon, Verisa -> Sebastopolis - link = { autogenerated = yes imp = 1791 imp = 1819 imp = 7998 imp = 7993 ck3 = 5598 } # Ibora, Amaseia, Gazioura, Amaseia Mountains -> Comana Pontica - link = { autogenerated = yes imp = 1834 imp = 1838 imp = 7999 imp = 7997 ck3 = 5597 } # Zela, Pleuramis, Sermousa, Sermousa Mountains -> Zela + link = { autogenerated = yes imp = 1819 imp = 1791 imp = 7998 imp = 7993 ck3 = 5598 } # Amaseia, Ibora, Gazioura, Amaseia Mountains -> Comana Pontica + link = { autogenerated = yes imp = 1838 imp = 1834 imp = 7999 imp = 7997 ck3 = 5597 } # Pleuramis, Zela, Sermousa, Sermousa Mountains -> Zela link = { autogenerated = yes imp = 1841 ck3 = 5596 } # Corniaspa -> Pteria link = { autogenerated = yes imp = 1837 ck3 = 5595 } # Carissa -> Carissa link = { autogenerated = yes imp = 231 ck3 = 5594 } # Ikotarion -> Euchaita link = { autogenerated = yes imp = 203 imp = 201 imp = 7922 ck3 = 5593 } # Asklepios, Claneus, Klaneios Mountains -> Pimolisa - link = { autogenerated = yes imp = 1828 ck3 = 5592 } # Germanikopolis -> Andrapa link = { autogenerated = yes imp = 1823 imp = 1826 imp = 1831 imp = 7992 ck3 = 5591 } # Diakopa, Pteria, Pimolisa, Pteria Mountains -> Magnopolis - link = { autogenerated = yes imp = 1821 imp = 1822 imp = 7994 ck3 = 5590 } # Thermai Phazemoniton, Cromen, Kizari -> Amaseia - link = { autogenerated = yes imp = 4534 imp = 4535 ck3 = 559 } # KalosLimen, Masella -> Kalos Limen - link = { autogenerated = yes imp = 1809 imp = 1824 ck3 = 5589 } # Gadilon, Andrapa -> Gadilon - link = { autogenerated = yes imp = 1810 imp = 5172 ck3 = 5588 } # Zaliches, IMPASSIBLE TERRAIN 172 -> Zagora + link = { autogenerated = yes imp = 1822 imp = 7994 ck3 = 5590 } # Cromen, Kizari -> Amaseia + link = { autogenerated = yes imp = 1810 ck3 = 5588 } # Zaliches -> Zagora + link = { autogenerated = yes imp = 1809 ck3 = 5589 } # Gadilon -> Gadilon link = { autogenerated = yes imp = 216 imp = 213 ck3 = 5587 } # Zeita, Sora -> Ziporea link = { autogenerated = yes imp = 200 ck3 = 5586 } # Kimiata -> Kandara - link = { autogenerated = yes imp = 1829 imp = 199 imp = 7920 ck3 = 5585 } # Timonion, Kandara, Kandara Mountains -> Castamon - link = { autogenerated = yes imp = 1827 imp = 5171 ck3 = 5584 } # Pompeiopolis, IMPASSIBLE TERRAIN 171 -> Pampeiopolis - link = { imp = 1816 imp = 1815 imp = 206 imp = 5173 ck3 = 5583 } # Karambis, Koloussa, Aigialos, IMPASSIBLE TERRAIN 173 -> Ionopolis + link = { autogenerated = yes imp = 1829 imp = 1815 imp = 1816 imp = 5173 ck3 = 5583 } # Timonion, Koloussa, Karambis, IMPASSIBLE TERRAIN 173 -> Ionopolis link = { autogenerated = yes imp = 232 imp = 208 imp = 211 imp = 7918 ck3 = 5582 } # Bonita, Amastris, Ziporea, Sesamos Mountains -> Aigialos link = { autogenerated = yes imp = 212 imp = 7917 ck3 = 5581 } # Parthenia, Parthenia Mountains -> Amastris link = { autogenerated = yes imp = 198 ck3 = 5580 } # Gangra -> Gangra - link = { autogenerated = yes imp = 7190 imp = 4530 imp = 4531 imp = 4532 imp = 4533 ck3 = 558 } # Kanit*, Hippolaou, Borysthenia, Karkine, Taphros -> Oleshye link = { autogenerated = yes imp = 193 imp = 226 ck3 = 5579 } # Gorbeus, Mnizos -> Papira link = { autogenerated = yes imp = 189 imp = 225 imp = 228 ck3 = 5578 } # Gordion, Lagania, Androna -> Vindia link = { autogenerated = yes imp = 222 imp = 221 ck3 = 5577 } # Bloukion, Artiknos -> Lagania @@ -3130,37 +3122,39 @@ link = { autogenerated = yes imp = 214 imp = 210 ck3 = 5573 } # Kaisareia, Dadybra -> Cratea link = { autogenerated = yes imp = 219 imp = 215 ck3 = 5572 } # Bithynion, Krateia -> Boli link = { autogenerated = yes imp = 233 imp = 237 imp = 238 imp = 7764 imp = 7913 ck3 = 5571 } # Kieros, Embolos, Diospolis, (Unknown), Bithynion Mountains -> Claudiopolis - link = { imp = 245 imp = 246 ck3 = 5570 } # Kios, Strobilos -> Crius + link = { autogenerated = yes imp = 246 imp = 245 ck3 = 5570 } # Strobilos, Kios -> Crius link = { autogenerated = yes imp = 6148 imp = 6136 imp = 6140 imp = 6143 imp = 6150 imp = 6152 ck3 = 557 } # Nynt, Skurtisk, Tahent, Aghonor, Kihkyengra, Kilgad -> Khortytsia link = { autogenerated = yes imp = 325 imp = 7763 imp = 7762 ck3 = 5569 } # Kabia, Sophon Pass, (Unknown) -> Tarsos link = { autogenerated = yes imp = 326 imp = 7914 ck3 = 5568 } # Modra, Modra Pass -> Modra link = { autogenerated = yes imp = 236 ck3 = 5567 } # Tarsos -> Prusias ad Hypium link = { autogenerated = yes imp = 234 imp = 243 ck3 = 5566 } # Chelai, Astakos -> Chelai link = { autogenerated = yes imp = 241 imp = 239 imp = 240 imp = 242 ck3 = 5565 } # Rhebas, Psillion, Chalcedon, Libyssa -> Chalcedon - link = { autogenerated = yes imp = 7765 imp = 329 imp = 327 ck3 = 5564 } # Transmonte, Milia, Oka -> Oka + link = { autogenerated = yes imp = 7765 imp = 329 ck3 = 5564 } # Transmonte, Milia -> Oka link = { autogenerated = yes imp = 175 imp = 188 ck3 = 5563 } # Germax, Pessinous -> Pessinus link = { autogenerated = yes imp = 316 ck3 = 5562 } # Midaion -> Midaeum_OPSI - link = { autogenerated = yes imp = 227 imp = 224 imp = 7912 ck3 = 5561 } # Trokna, Gordioukome, Gordioukome Mountains -> Gordium - link = { autogenerated = yes imp = 315 ck3 = 5560 ck3 = 749 } # Dorylaion -> Saegud, Dorylaion + link = { autogenerated = yes imp = 224 imp = 227 imp = 7912 ck3 = 5561 } # Gordioukome, Trokna, Gordioukome Mountains -> Gordium + link = { autogenerated = yes imp = 327 ck3 = 5560 } # Oka -> Saegud link = { autogenerated = yes imp = 6132 imp = 6126 imp = 6131 imp = 6134 ck3 = 556 } # Solyots, Ratikgot, Zhenna, Annike -> Samar link = { autogenerated = yes imp = 324 imp = 322 imp = 323 ck3 = 5559 } # Otroia, Lamounia, Sarkotyle -> Dabla link = { autogenerated = yes imp = 317 imp = 312 imp = 319 ck3 = 5558 } # Kotiaeion, Appia, Aizanoi -> Katyaion link = { autogenerated = yes imp = 321 ck3 = 5557 } # Hadrianoi -> Catyaeum link = { autogenerated = yes imp = 320 imp = 7923 imp = 8057 ck3 = 5556 } # Hadrianeia, Synaios Mountains, Synaos Mons -> Hadrianoi link = { autogenerated = yes imp = 218 ck3 = 5555 ck3 = 742 } # Anadynata -> Helge, Prusa + link = { autogenerated = yes imp = 250 imp = 249 imp = 7755 ck3 = 5554 } # Germanikopolis, Prusa, Olympus Mons -> Apemea link = { autogenerated = yes imp = 269 imp = 253 imp = 272 ck3 = 5552 } # Pericharaxis, Daskyleion, Hiera -> Miletopolis link = { autogenerated = yes imp = 265 imp = 264 ck3 = 5551 } # Argiza, Baris -> Poimanenon link = { autogenerated = yes imp = 339 imp = 311 ck3 = 5550 } # Sebaste, Dionysoupolis -> Sebaste link = { autogenerated = yes imp = 10201 imp = 7299 ck3 = 555 } # Khotove, Sarmatia -> Pereyaslavl link = { autogenerated = yes imp = 1944 imp = 1942 ck3 = 5549 } # Lounda, Fulvia -> Apamea link = { autogenerated = yes imp = 1946 imp = 1948 imp = 7925 ck3 = 5548 } # Hierapolis, Laodicea ad Lycum, Pergamon Mountains 2 -> Chonae - link = { imp = 7939 imp = 1967 imp = 7940 ck3 = 5547 } # Hyllarima, Alabanda, Hyllarima Mountains -> Mylasa - link = { autogenerated = yes imp = 1947 imp = 1962 imp = 7751 imp = 7984 ck3 = 5546 } # Tripolis ad Maeandrum, Nysa, Mesogis Mons, Kranaos Mountains -> Philadelphia + link = { autogenerated = yes imp = 7939 imp = 1963 imp = 1967 imp = 7940 ck3 = 5547 } # Hyllarima, Neapolis, Alabanda, Hyllarima Mountains -> Mylasa + link = { autogenerated = yes imp = 1947 imp = 1962 imp = 7941 imp = 7751 imp = 7984 ck3 = 5546 } # Tripolis ad Maeandrum, Nysa, Kranaos, Mesogis Mons, Kranaos Mountains -> Philadelphia + link = { autogenerated = yes imp = 292 imp = 293 imp = 295 imp = 7752 ck3 = 5545 } # Sardis, Philadelpheia, Hypaipa, Tmolus Mons -> Sardes link = { autogenerated = yes imp = 300 imp = 7928 ck3 = 5544 } # Maionia, Sardis Mountains -> Silandos link = { autogenerated = yes imp = 308 ck3 = 5543 } # Blaundos -> Bagis link = { autogenerated = yes imp = 307 ck3 = 5542 } # Bagis -> Akrainos link = { autogenerated = yes imp = 301 imp = 7926 imp = 7927 ck3 = 5541 } # Silandos, Hyssa Mountains, Silandos Mountains -> Cadi - link = { imp = 305 imp = 299 ck3 = 5540 } # Porotta, Maiboza -> Tabala + link = { autogenerated = yes imp = 299 imp = 305 ck3 = 5540 } # Maiboza, Porotta -> Tabala link = { autogenerated = yes imp = 10206 ck3 = 554 } # Teteriv -> Chernigov link = { autogenerated = yes imp = 274 ck3 = 5539 } # Thyateira -> Thyatira link = { autogenerated = yes imp = 306 imp = 304 ck3 = 5538 } # Ariandos, Hyssa -> Synaos @@ -3169,10 +3163,10 @@ link = { autogenerated = yes imp = 273 imp = 276 imp = 8058 ck3 = 5535 } # Stratonikeia, Apollonia, Apollonia Mons -> Attalia link = { autogenerated = yes imp = 1977 imp = 1973 imp = 1980 imp = 275 imp = 7931 imp = 7932 ck3 = 5534 } # Mylasa, Miletos, Stratonikeia, Iasos, Alinda Mountains, Alabanda Mountains -> Iassus link = { autogenerated = yes imp = 1968 imp = 1966 imp = 7929 ck3 = 5533 } # Alinda, Tralles, Tralleis Mountains -> Miletus - link = { autogenerated = yes imp = 291 imp = 1808 imp = 7753 imp = 7933 ck3 = 5532 } # Colophon, Eupatoria, Tempsis Mons, Smyrna Mountains -> Lebedos + link = { autogenerated = yes imp = 291 imp = 1808 imp = 294 imp = 7753 imp = 7933 ck3 = 5532 } # Colophon, Eupatoria, Larisa, Tempsis Mons, Smyrna Mountains -> Lebedos link = { autogenerated = yes imp = 298 imp = 285 imp = 7924 ck3 = 5531 } # Aigai, Kyme, Pergamon Mountains -> Phocaea link = { autogenerated = yes imp = 278 imp = 279 ck3 = 5530 } # Pergamon, Elaea -> Pergamon - link = { autogenerated = yes imp = 10237 imp = 10243 ck3 = 553 } # Lyubech, Hrabiv -> Lyubech + link = { autogenerated = yes imp = 10243 imp = 10237 ck3 = 553 } # Hrabiv, Lyubech -> Lyubech link = { autogenerated = yes imp = 281 imp = 282 imp = 337 ck3 = 5529 } # Adramyttion, Herakleia, Hadrianoutherai -> Adramytium link = { autogenerated = yes imp = 12383 ck3 = 5526 ck3 = 5528 ck3 = 5517 } # Muw -> Chelabinsk, Baklanska, Southern Urals link = { autogenerated = yes imp = 12387 ck3 = 5524 ck3 = 5525 } # Pal -> Silach, Chadrinsk @@ -3181,6 +3175,7 @@ link = { autogenerated = yes imp = 12391 ck3 = 5520 ck3 = 5522 } # Maltip -> Alapaevsk, Kamychlov link = { autogenerated = yes imp = 10218 imp = 10219 ck3 = 552 } # Pripyat, Lemeshevichi -> Turov link = { autogenerated = yes imp = 12386 ck3 = 5519 } # Xul -> Yekaterinburg + link = { autogenerated = yes imp = 5901 ck3 = 5514 } # Porach -> Elista link = { autogenerated = yes imp = 11494 imp = 11496 ck3 = 551 } # Nawas, Bajatei -> Mstislavl link = { autogenerated = yes imp = 12516 ck3 = 5508 } # Jyv -> Peschanka link = { autogenerated = yes imp = 12512 ck3 = 5507 } # Polo -> Maloi Irghiz @@ -3190,7 +3185,7 @@ link = { autogenerated = yes imp = 12501 ck3 = 5502 } # Gozom -> Ilekskoi Gorodok link = { autogenerated = yes imp = 12500 ck3 = 5501 } # Vorkan -> Orenburg link = { autogenerated = yes imp = 10316 imp = 10320 ck3 = 550 } # Berezina, Byerazino -> Minsk - link = { autogenerated = yes imp = 3879 imp = 3875 imp = 3880 ck3 = 55 } # CimbriaPeninsularis, TeutoniaMaiores, CimbriaMaiores -> LINDHOLM + link = { autogenerated = yes imp = 3880 imp = 3875 imp = 3879 ck3 = 55 } # CimbriaMaiores, TeutoniaMaiores, CimbriaPeninsularis -> LINDHOLM link = { autogenerated = yes imp = 12465 ck3 = 5496 ck3 = 5497 } # Mukod -> Arti, Achichskaya link = { autogenerated = yes imp = 12467 ck3 = 5493 ck3 = 5494 ck3 = 5495 } # Vidza -> Parizh, Duvan, Yamantau link = { autogenerated = yes imp = 12381 ck3 = 5492 ck3 = 5527 } # Saajem -> Zlatoust, Troizk @@ -3199,44 +3194,39 @@ link = { autogenerated = yes imp = 12380 ck3 = 5488 ck3 = 5481 } # Tun -> Satka, Yanokul link = { autogenerated = yes imp = 12379 imp = 12373 ck3 = 5487 } # Tuks, Kus -> Uiska link = { autogenerated = yes imp = 12378 ck3 = 5485 ck3 = 5486 ck3 = 5482 } # Jukaar -> Verkouralsk, Yumanova, Kaginskoi - link = { autogenerated = yes imp = 12377 ck3 = 5484 ck3 = 5499 } # Kunkees -> Yuldybayevo, Orskaya + link = { autogenerated = yes imp = 12377 ck3 = 5484 } # Kunkees -> Yuldybayevo link = { autogenerated = yes imp = 10264 imp = 10263 ck3 = 548 } # Lukow, Maciejowice -> Pinsk - link = { autogenerated = yes imp = 12486 ck3 = 5479 ck3 = 5480 } # Ustem -> Prigorod Tabynsk, Bielaya link = { autogenerated = yes imp = 12471 ck3 = 5477 ck3 = 5489 } # Vurany -> Yeldiatzkaya, Ust-Katav - link = { autogenerated = yes imp = 12525 ck3 = 5473 ck3 = 5474 } # Kyny -> Vetluga, Vokhma link = { autogenerated = yes imp = 12528 ck3 = 5470 ck3 = 585 } # Asnys -> Cykma, Gorodets link = { autogenerated = yes imp = 6090 imp = 10202 ck3 = 547 } # Sitya, Khodosivka -> Kiev link = { autogenerated = yes imp = 12483 ck3 = 5468 } # Kurnis -> Suna link = { autogenerated = yes imp = 12478 imp = 12482 ck3 = 5467 } # Paskyt, Badda -> Nukrat - link = { autogenerated = yes imp = 12484 ck3 = 5466 } # Elni -> Kolyn + link = { autogenerated = yes imp = 12484 ck3 = 5466 ck3 = 16212 } # Elni -> Kolyn, Orlov link = { autogenerated = yes imp = 12479 ck3 = 5464 ck3 = 5465 } # Peckyny -> Igra, Uva - link = { imp = 6066 imp = 6234 imp = 6065 ck3 = 546 } # Utkennita, Myanik, Granika -> Terebovl - link = { autogenerated = yes imp = 12461 ck3 = 5454 ck3 = 5453 } # Dzudzyd -> Solikamsk, Vilva - link = { autogenerated = yes imp = 12469 ck3 = 5451 ck3 = 5452 ck3 = 5458 ck3 = 5459 ck3 = 5460 } # Gad -> Obva, Krasnokamsk, Kasib, Koca, Karsovay + link = { autogenerated = yes imp = 6066 imp = 6234 imp = 6065 ck3 = 546 } # Utkennita, Myanik, Granika -> Terebovl + link = { autogenerated = yes imp = 12473 ck3 = 5451 ck3 = 5463 } # Mys -> Obva, Glazov link = { autogenerated = yes imp = 12470 ck3 = 5450 } # Icin -> Nytva link = { autogenerated = yes imp = 4935 ck3 = 545 ck3 = 5034 } # Montanium* -> Suceava, Baia link = { autogenerated = yes imp = 12474 ck3 = 5449 } # Lyddyny -> Votkinsk link = { autogenerated = yes imp = 12385 ck3 = 5447 ck3 = 5491 } # Vakh -> Klenovskaya, Revda link = { autogenerated = yes imp = 12390 ck3 = 5445 ck3 = 5448 } # Kwalunkwe -> Kumych, Kirgichanskaya - link = { imp = 12460 ck3 = 5444 ck3 = 5446 } # Addzyny -> Sylva, Bisserskaya - link = { autogenerated = yes imp = 12462 ck3 = 5442 ck3 = 5443 } # Malamus -> Kutamych, Serga - link = { autogenerated = yes imp = 12468 ck3 = 5441 ck3 = 889 } # Olan -> Lysva, Ural + link = { autogenerated = yes imp = 12460 ck3 = 5444 ck3 = 5446 } # Addzyny -> Chusovaya, Bisserskaya link = { autogenerated = yes imp = 12472 ck3 = 5440 } # Ektyny -> Saraninskor link = { autogenerated = yes imp = 6082 imp = 6091 ck3 = 544 } # Donts, Aggrygh -> Korsun link = { autogenerated = yes imp = 12476 ck3 = 5439 } # Modny -> Aluchi link = { autogenerated = yes imp = 12475 ck3 = 5437 } # Koco -> Sebur link = { autogenerated = yes imp = 12466 ck3 = 5436 ck3 = 5438 } # Kunse -> Ovinskoi, Okhansk link = { autogenerated = yes imp = 12464 ck3 = 5435 } # Bostny -> Krasnooufimsk - link = { autogenerated = yes imp = 12463 ck3 = 5434 ck3 = 886 } # Kor -> Kungur, Perm link = { autogenerated = yes imp = 12496 ck3 = 5433 ck3 = 5432 ck3 = 5500 } # Bord -> Prechistenskaya, Kumertau, Chalap Kerman link = { autogenerated = yes imp = 12489 ck3 = 5430 ck3 = 5431 } # Kerkwo -> Teterpush, Salavat - link = { autogenerated = yes imp = 7186 imp = 4527 ck3 = 543 } # Scyra*, Istrianon -> Okachiv + link = { autogenerated = yes imp = 7186 imp = 4527 imp = 4528 imp = 7187 imp = 7195 ck3 = 543 } # Scyra*, Istrianon, Scopuli, Ektonopolis*, Tanarke* -> Okachiv + link = { autogenerated = yes imp = 12486 ck3 = 5429 ck3 = 5479 ck3 = 5480 } # Ustem -> Sterlitamak, Prigorod Tabynsk, Bielaya link = { autogenerated = yes imp = 12492 ck3 = 5426 } # Dzazeg -> Bugurslan link = { autogenerated = yes imp = 12491 ck3 = 5423 ck3 = 5424 } # Wole -> Pascherty, Bugulma link = { autogenerated = yes imp = 12485 ck3 = 5420 ck3 = 5475 ck3 = 615 ck3 = 5476 } # Kuamyn -> Siun, Birsk, Ufa, Sim - link = { autogenerated = yes imp = 7187 imp = 4528 ck3 = 542 } # Ektonopolis*, Scopuli -> Olbia_ETEL + link = { autogenerated = yes imp = 4529 ck3 = 542 ck3 = 558 } # Olbia -> Olbia_ETEL, Oleshye link = { autogenerated = yes imp = 12487 ck3 = 5419 } # Kozin -> Menzelinsk - link = { autogenerated = yes imp = 12488 ck3 = 5418 ck3 = 5421 ck3 = 5429 } # Nelja -> Belebey, Achaly, Sterlitamak + link = { autogenerated = yes imp = 12488 ck3 = 5418 ck3 = 5421 } # Nelja -> Belebey, Achaly link = { autogenerated = yes imp = 12499 ck3 = 5415 ck3 = 5427 ck3 = 5428 } # Kulni -> Buzuluk, Bol Uran, Sakmarskoi Gorodok link = { autogenerated = yes imp = 12504 ck3 = 5414 ck3 = 5417 ck3 = 609 } # Nyv -> Elmet, Neftegorsk, Samar link = { autogenerated = yes imp = 12494 ck3 = 5413 ck3 = 5416 ck3 = 5422 } # Das -> Aqsubay, Pokhnishne, Jalmat @@ -3246,162 +3236,139 @@ link = { autogenerated = yes imp = 12490 ck3 = 5409 ck3 = 5425 } # Nijne -> Agidel, Almetyvesk link = { autogenerated = yes imp = 12493 ck3 = 5407 ck3 = 5408 } # Murt -> Tukhchi, Yar Calli link = { autogenerated = yes imp = 12507 ck3 = 5406 ck3 = 5412 ck3 = 610 } # Lebny -> Suvar, Karabolam, Bolghar - link = { imp = 12495 ck3 = 5405 ck3 = 613 } # Erga -> Cukataw, Bilyar + link = { autogenerated = yes imp = 12495 ck3 = 5405 ck3 = 613 } # Erga -> Cukataw, Bilyar link = { autogenerated = yes imp = 12477 ck3 = 5404 } # Kukjamus -> Izhevsk link = { autogenerated = yes imp = 12480 ck3 = 5402 ck3 = 5403 } # Zonka -> Voloz, Elabuga link = { autogenerated = yes imp = 12481 ck3 = 5401 ck3 = 5469 } # Mene -> Mozhga, Arkul link = { autogenerated = yes imp = 4501 imp = 5998 ck3 = 540 } # Stenarum, Transyvlanian Impassable -> Szekelyfold link = { autogenerated = yes imp = 2177 ck3 = 54 } # IverniaMeridionalis -> KINSALE - link = { autogenerated = yes imp = 12520 ck3 = 5397 ck3 = 5399 ck3 = 5400 } # Deme -> Kashan, Mamadych, Otarka - link = { autogenerated = yes imp = 12521 ck3 = 5396 ck3 = 5398 } # Asil -> Mari-Turek, Arsk - link = { autogenerated = yes imp = 12524 ck3 = 5395 } # Vony -> Tsarevokokchaisk + link = { autogenerated = yes imp = 12520 ck3 = 5397 ck3 = 5399 ck3 = 5400 } # Deme -> Kashan, Malmyzh, Kermenchuk + link = { autogenerated = yes imp = 12523 ck3 = 5396 ck3 = 588 } # Med -> Mari-Turek, Yoshkar-Ola link = { autogenerated = yes imp = 12526 ck3 = 5394 ck3 = 589 } # Kvajt -> Arda, Urzen link = { autogenerated = yes imp = 12522 ck3 = 5393 ck3 = 611 } # Gord -> Volzhsk, Kazan - link = { autogenerated = yes imp = 12519 ck3 = 5392 ck3 = 5509 } # Asnyd -> Alchanka, Atkarsk + link = { autogenerated = yes imp = 12519 ck3 = 5390 ck3 = 5392 ck3 = 5509 } # Asnyd -> Petrovsk, Alchanka, Atkarsk link = { autogenerated = yes imp = 12550 ck3 = 5389 ck3 = 5498 } # Pilge -> Kolychev, Repnoye link = { autogenerated = yes imp = 12549 ck3 = 5388 } # Rungo -> Durovka - link = { autogenerated = yes imp = 12545 ck3 = 5387 } # Moncen -> Kirsanov - link = { autogenerated = yes imp = 12542 imp = 12543 ck3 = 5386 } # Kumaza, Selme -> Vorona + link = { autogenerated = yes imp = 12543 ck3 = 5386 } # Selme -> Insar link = { autogenerated = yes imp = 12537 ck3 = 5384 ck3 = 5391 } # Makso -> Serdosk, Treliaka - link = { autogenerated = yes imp = 12539 ck3 = 5383 ck3 = 5385 } # Pizeme -> Saran, Kachma - link = { autogenerated = yes imp = 11433 ck3 = 5382 } # Tab -> Manina + link = { autogenerated = yes imp = 12542 ck3 = 5383 } # Kumaza -> Saran + link = { autogenerated = yes imp = 11433 ck3 = 5382 } # Tab -> Teluchezeva link = { autogenerated = yes imp = 11436 imp = 11437 ck3 = 5381 } # Mud, Cyrg -> Kriucha link = { autogenerated = yes imp = 11435 ck3 = 5380 } # Vite -> Bychok link = { autogenerated = yes imp = 11445 imp = 11441 imp = 11449 ck3 = 5379 } # Rast, Paoi, Ajam -> Viazovka link = { autogenerated = yes imp = 11440 ck3 = 5378 } # Aerdyn -> Khoper link = { autogenerated = yes imp = 12517 ck3 = 5377 } # Gyrys -> Balachev - link = { autogenerated = yes imp = 12552 imp = 11434 ck3 = 5376 } # Vergiz, Peus -> Trotskhoper - link = { autogenerated = yes imp = 11430 ck3 = 5373 } # Wetusas -> Pavlovsk - link = { autogenerated = yes imp = 11431 imp = 11432 ck3 = 5371 } # Naktis, Kirsnas -> Karatayak - link = { autogenerated = yes imp = 12536 ck3 = 5370 ck3 = 5390 } # Kjelj -> Uza, Petrovsk + link = { autogenerated = yes imp = 12552 imp = 11434 ck3 = 5376 } # Vergiz, Peus -> Vorona + link = { autogenerated = yes imp = 11430 ck3 = 5373 } # Wetusas -> Plavitza + link = { autogenerated = yes imp = 11431 imp = 11432 ck3 = 5371 } # Naktis, Kirsnas -> Khorysdan link = { autogenerated = yes imp = 12535 ck3 = 5369 } # Teste -> Hanbalik - link = { autogenerated = yes imp = 12532 ck3 = 5367 ck3 = 5368 } # Lavtomo -> Insara, Chechkeiev - link = { autogenerated = yes imp = 12533 imp = 12534 ck3 = 5366 } # Menel, Inzej -> Penza - link = { autogenerated = yes imp = 12530 ck3 = 5365 ck3 = 614 } # Boza -> Alatyr, Ashli - link = { autogenerated = yes imp = 12531 ck3 = 5364 ck3 = 579 } # Kycan -> Tzyvil, Saransk + link = { autogenerated = yes imp = 12532 ck3 = 5367 ck3 = 5368 } # Lavtomo -> Yulovo, Inza + link = { autogenerated = yes imp = 12533 ck3 = 5366 } # Menel -> Kanadey + link = { autogenerated = yes imp = 12530 ck3 = 5365 ck3 = 614 } # Boza -> Batyrevo, Ashli + link = { autogenerated = yes imp = 12531 ck3 = 5364 ck3 = 579 } # Kycan -> Tzyvil, Tagay link = { autogenerated = yes imp = 12529 ck3 = 5363 ck3 = 590 } # Dod -> Urmary, Cheboksary - link = { autogenerated = yes imp = 12541 ck3 = 5360 ck3 = 5361 } # Tol -> Morchansk, Chatzk + link = { autogenerated = yes imp = 12541 ck3 = 5361 } # Tol -> Arzamas link = { autogenerated = yes imp = 4942 imp = 4943 ck3 = 536 } # Acrium*, Castrana* -> Halych - link = { autogenerated = yes imp = 12538 ck3 = 5359 } # Kelme -> Lachyk-Uba - link = { autogenerated = yes imp = 12546 ck3 = 5358 } # Kinere -> Oranienburg - link = { autogenerated = yes imp = 12548 ck3 = 5356 } # Suv -> Matya - link = { autogenerated = yes imp = 12551 ck3 = 5354 ck3 = 5355 ck3 = 5375 } # Ine -> Szava, Plavitza, Lejlotka - link = { autogenerated = yes imp = 12547 ck3 = 5353 ck3 = 5357 } # Udoma -> Tambov, Kozlov - link = { autogenerated = yes imp = 12553 ck3 = 5352 ck3 = 5374 } # Purgine -> Usman, Teluchezeva - link = { autogenerated = yes imp = 12556 ck3 = 5351 } # Kirga -> Lipetsk - link = { autogenerated = yes imp = 12554 ck3 = 5350 ck3 = 5372 } # Tuvo -> Voronezh, Babrov + link = { autogenerated = yes imp = 12538 ck3 = 5359 ck3 = 5360 } # Kelme -> Lachyk-Uba, Sergach + link = { autogenerated = yes imp = 12548 ck3 = 5356 } # Suv -> Vyazhli + link = { autogenerated = yes imp = 12551 ck3 = 5354 ck3 = 5355 ck3 = 5375 } # Ine -> Kirsanov, Kersha, Rakcha + link = { autogenerated = yes imp = 12547 ck3 = 5353 ck3 = 5357 } # Udoma -> Narovchat, Lashma + link = { autogenerated = yes imp = 12553 ck3 = 5352 ck3 = 5374 } # Purgine -> Tambov, Sjava + link = { autogenerated = yes imp = 12556 ck3 = 5351 } # Kirga -> Morsha + link = { autogenerated = yes imp = 12554 ck3 = 5350 ck3 = 5372 } # Tuvo -> Lipetsk, Usman link = { autogenerated = yes imp = 6253 imp = 6248 ck3 = 535 } # Mavar, Bonava -> Volodymyr link = { autogenerated = yes imp = 11476 imp = 11475 imp = 11474 ck3 = 5349 } # Hurasa, Batya, Batesa -> Zhaltyr link = { autogenerated = yes imp = 12511 ck3 = 5348 ck3 = 616 } # Kutny -> Chelykla, Pecheneg link = { autogenerated = yes imp = 11465 ck3 = 5347 } # Wantah -> Engels - link = { autogenerated = yes imp = 5878 imp = 5910 imp = 5911 ck3 = 5346 } # PASS, Uvra, Usch -> Ryn - link = { autogenerated = yes imp = 11332 imp = 11331 imp = 11339 imp = 6219 imp = 11340 ck3 = 5345 } # Shungay, Mukhat, Zhitkur, Uyennik, Saykhin -> Chyorny Yar - link = { autogenerated = yes imp = 5928 imp = 5926 imp = 5925 imp = 5927 ck3 = 5344 } # Nechek, Duzea, Krayn, Varyr -> Majar + link = { autogenerated = yes imp = 11332 imp = 6219 ck3 = 5345 } # Shungay, Uyennik -> Chyorny Yar + link = { autogenerated = yes imp = 5872 imp = 5875 imp = 5924 ck3 = 5344 } # Shiech, Ashawm, Volna -> Majar link = { autogenerated = yes imp = 5873 imp = 5921 ck3 = 5343 } # Molliuch, Abach -> Samiran - link = { autogenerated = yes imp = 7602 imp = 7621 ck3 = 5342 } # Endzhara, Valent -> Sambalut - link = { autogenerated = yes imp = 7603 ck3 = 5341 ck3 = 668 } # Derbent -> Kuba, Shirvan link = { autogenerated = yes imp = 5891 imp = 5889 ck3 = 5340 } # Avrar, Donol -> Yergolyk link = { autogenerated = yes imp = 4945 ck3 = 534 } # Riparum* -> Peremyshl link = { autogenerated = yes imp = 5885 imp = 5887 ck3 = 5339 } # Muiksita, Bashkra -> Chamchev - link = { autogenerated = yes imp = 5886 ck3 = 5338 } # Akkei -> Tikhon - link = { autogenerated = yes imp = 7635 imp = 7636 ck3 = 5337 } # Iados, Garen -> Chelbaska - link = { imp = 7617 imp = 4560 imp = 7618 ck3 = 5336 } # Stepna, Azara, Rogoy -> Soleny - link = { autogenerated = yes imp = 7612 imp = 4561 ck3 = 5335 } # Maran, Lebedia -> Kuban - link = { autogenerated = yes imp = 6218 imp = 6220 imp = 5902 ck3 = 5334 } # Mennichak, Uryennik, Reama -> Yenotayevka - link = { autogenerated = yes imp = 6209 imp = 6215 imp = 6205 ck3 = 5333 } # Ydomor, Urghat, Uyoro -> Sarepta - link = { imp = 5899 imp = 6190 imp = 6192 ck3 = 5332 } # Gura, Kichpa, Syutnich -> Semikarakary + link = { autogenerated = yes imp = 7636 ck3 = 5337 } # Garen -> Chelbaska + link = { autogenerated = yes imp = 7618 imp = 4560 imp = 7617 ck3 = 5336 } # Rogoy, Azara, Stepna -> Soleny + link = { autogenerated = yes imp = 6221 ck3 = 5334 } # Zhelk -> Yenotayevka + link = { autogenerated = yes imp = 6209 imp = 6215 ck3 = 5333 } # Ydomor, Urghat -> Sarepta + link = { autogenerated = yes imp = 6192 ck3 = 5332 } # Syutnich -> Semikarakary link = { autogenerated = yes imp = 4546 ck3 = 5331 } # Maeotinia -> Dzhankoi - link = { autogenerated = yes imp = 4548 ck3 = 5330 } # Kimmeria -> Aqmescit - link = { imp = 6176 imp = 6175 imp = 6177 imp = 6179 imp = 6180 ck3 = 5329 } # Molon, Shashcha, Ishkenk, Yoro, Vygriya -> Ivanovskoye + link = { autogenerated = yes imp = 4548 imp = 4542 ck3 = 5330 } # Kimmeria, Neapolis -> Aqmescit + link = { autogenerated = yes imp = 6176 imp = 6175 imp = 6177 imp = 6179 ck3 = 5329 } # Molon, Shashcha, Ishkenk, Yoro -> Ivanovskoye link = { autogenerated = yes imp = 6170 imp = 6164 ck3 = 5328 } # Dolom, Shchor -> Kuzeyrog link = { autogenerated = yes imp = 6174 imp = 6171 imp = 6172 ck3 = 5327 } # Scytte, Galligh, Uron -> Podgornye link = { autogenerated = yes imp = 6181 imp = 6182 imp = 6183 imp = 6184 ck3 = 5326 } # Achkach, Ighkoy, Yuty, Yovolat -> Millerovo - link = { autogenerated = yes imp = 10343 imp = 10346 ck3 = 5325 } # Kurennoe, Rovenki -> Boguchar + link = { autogenerated = yes imp = 10344 imp = 10352 ck3 = 5325 } # Tikhaya Sosna, Artilne -> Karatayak link = { autogenerated = yes imp = 6157 imp = 6153 imp = 6156 imp = 6159 ck3 = 5324 } # Shgaritat, Uldan, Aihkohna, Stat -> Donetsk - link = { autogenerated = yes imp = 10350 imp = 10342 imp = 10347 imp = 10348 imp = 10349 imp = 6160 imp = 6166 imp = 6167 imp = 7644 ck3 = 5323 } # Kozynka, Komyshna, Bila, Kupyansk, Horyane, Verhyn, Gyrones, Stetta, Donetsk -> Volcha link = { autogenerated = yes imp = 6138 imp = 6161 ck3 = 5322 } # Ghart, Yakkant -> Tor link = { autogenerated = yes imp = 6158 imp = 6151 ck3 = 5321 } # Unige, Alkhyent -> Pokrovsk link = { autogenerated = yes imp = 6137 imp = 6135 ck3 = 5320 } # Voynor, Thense -> Lozova link = { autogenerated = yes imp = 4891 ck3 = 532 ck3 = 4969 } # Ectonum* -> Sacz, Nowy Targ link = { autogenerated = yes imp = 12502 imp = 11484 ck3 = 5319 } # Kodzuv, Uase -> Yaitsk link = { autogenerated = yes imp = 11318 imp = 11312 imp = 11315 imp = 11319 ck3 = 5318 } # Taskuduk, Inder, Krugli, Zhanaqala -> Kalmikovsky - link = { autogenerated = yes imp = 5879 imp = 11311 imp = 5912 imp = 11316 imp = 6232 ck3 = 5317 } # PASS, Orlik, Azgar, Bangazy, Schelats -> Saraychiq - link = { autogenerated = yes imp = 11460 imp = 11453 imp = 11454 imp = 11459 imp = 11461 ck3 = 5316 } # Stana, Riza, Mauka, Waru, Api -> Nikolaievsk - link = { autogenerated = yes imp = 6206 imp = 6201 imp = 6203 imp = 6207 imp = 6214 ck3 = 5315 } # Ketsk, Agharite, Ghalat, Urviygra, Zhuna -> Aksay + link = { autogenerated = yes imp = 5912 imp = 11311 imp = 11316 imp = 5911 imp = 6232 ck3 = 5317 } # Azgar, Orlik, Bangazy, Usch, Schelats -> Saraychiq + link = { autogenerated = yes imp = 11331 imp = 11339 imp = 11341 imp = 11458 imp = 11328 imp = 11340 imp = 11461 imp = 6223 ck3 = 5316 } # Mukhat, Zhitkur, Bulukhta, Zyrenka, Suyindik, Saykhin, Api, Khorolats -> Nikolaievsk + link = { autogenerated = yes imp = 6207 imp = 6203 ck3 = 5315 } # Urviygra, Ghalat -> Aksay link = { autogenerated = yes imp = 12510 imp = 11473 ck3 = 5314 } # Dzek, Baivar -> Verchina Uzen - link = { autogenerated = yes imp = 5909 imp = 5877 imp = 6228 imp = 8050 imp = 6229 imp = 6230 ck3 = 5313 } # Norom, PASS, Arzhale, Moslar, Khonnt, Arkhonnt -> Saqsin - link = { autogenerated = yes imp = 5919 imp = 5874 imp = 5876 imp = 5918 imp = 5920 ck3 = 5312 } # Kurnsck, Recrassia, PASS, Chroda, Ermel -> Sara - link = { autogenerated = yes imp = 5908 imp = 5907 ck3 = 5311 } # Gyashech, Taksaty -> Astrakhan - link = { autogenerated = yes imp = 5872 imp = 5871 imp = 5924 imp = 5923 ck3 = 5310 } # Shiech, Zarem, Volna, Achtab -> Cisterki - link = { autogenerated = yes imp = 5867 imp = 5869 ck3 = 5309 } # Suthrander, Magrai -> Tserlona - link = { autogenerated = yes imp = 5870 imp = 5875 ck3 = 5308 } # Kurema, Ashawm -> Cabartei - link = { autogenerated = yes imp = 5866 imp = 5868 ck3 = 5307 } # Zabender, Lotin -> Kizlyar - link = { autogenerated = yes imp = 7623 ck3 = 5306 ck3 = 675 } # Terekata -> Durdzukia, Kumukh - link = { autogenerated = yes imp = 7632 imp = 7633 ck3 = 5305 } # Irmana*, Kayit* -> Samander - link = { autogenerated = yes imp = 7605 ck3 = 5304 } # Urtseki -> Balanjar - link = { autogenerated = yes imp = 5929 imp = 5930 imp = 7630 imp = 5931 ck3 = 5303 } # Zhodyn, Huruir, Kaflur*, Skatar -> Besinada - link = { autogenerated = yes imp = 7629 imp = 7628 ck3 = 5302 } # Gorat*, Malyts* -> Tatartopa - link = { autogenerated = yes imp = 7609 imp = 7610 imp = 7611 imp = 7620 imp = 5933 ck3 = 5301 } # Hypanispa, Sinad, Alanis, Kalkry*, Vylda -> Betzini - link = { autogenerated = yes imp = 7606 imp = 7619 ck3 = 5300 } # Heniat, Lapra* -> Etzeri + link = { autogenerated = yes imp = 5907 ck3 = 5313 } # Taksaty -> Saqsin + link = { autogenerated = yes imp = 5874 imp = 5876 ck3 = 5312 } # Recrassia, PASS -> Sara + link = { autogenerated = yes imp = 5908 ck3 = 5311 } # Gyashech -> Astrakhan + link = { autogenerated = yes imp = 5870 ck3 = 5308 } # Kurema -> Cabartei + link = { autogenerated = yes imp = 5867 ck3 = 5305 } # Suthrander -> Samander + link = { autogenerated = yes imp = 5930 imp = 5931 ck3 = 5303 } # Huruir, Skatar -> Besinada link = { autogenerated = yes imp = 6273 ck3 = 530 } # Sopha -> Czersk link = { autogenerated = yes imp = 2162 ck3 = 53 } # UsdiaOccidentalis -> CORK - link = { autogenerated = yes imp = 7607 ck3 = 5299 } # Abasgria -> Maghas - link = { autogenerated = yes imp = 7614 imp = 7608 imp = 7615 ck3 = 5297 } # Salavy, Hypanera, Elvruz* -> Zapaxi - link = { autogenerated = yes imp = 4567 imp = 4566 imp = 7600 ck3 = 5296 } # HeptalouLimen, Bata, Sabiranum -> Bata link = { autogenerated = yes imp = 11443 imp = 11442 ck3 = 5295 } # Kalm, Cyxt -> Yelan link = { autogenerated = yes imp = 11456 imp = 11447 imp = 11448 imp = 11451 imp = 11452 imp = 11457 ck3 = 5294 } # Vadasz, Capi, Medu, Nahapana, Gaita, Zurka -> Kamyshin link = { autogenerated = yes imp = 11444 imp = 11446 ck3 = 5293 } # Arv, Carm -> Frolovo link = { autogenerated = yes imp = 10337 imp = 10336 imp = 10338 imp = 10339 imp = 6195 ck3 = 5292 } # Berezovaya, Bolshoi, Tikhaya, Olkhovaya, Urvolat -> Ust-Donvokhi link = { autogenerated = yes imp = 10335 imp = 10332 imp = 10333 imp = 10334 ck3 = 5291 } # Kalmykovskii, Krepkaya, Liska, Bazki -> Siyahtepe - link = { autogenerated = yes imp = 6186 imp = 6185 imp = 6188 imp = 6191 imp = 6194 imp = 6198 ck3 = 5290 } # Urgenkh, Ollo, Vyrni, Khang, Urzhev, Urgast -> Golden Hills + link = { autogenerated = yes imp = 6185 imp = 6186 imp = 6188 imp = 6191 imp = 6194 imp = 6198 ck3 = 5290 } # Ollo, Urgenkh, Vyrni, Khang, Urzhev, Urgast -> Golden Hills link = { autogenerated = yes imp = 6279 ck3 = 529 } # Vadina -> Plock - link = { autogenerated = yes imp = 7613 ck3 = 5289 } # Yelsa -> Papagia - link = { imp = 5888 ck3 = 5288 } # Techka -> Manych - link = { autogenerated = yes imp = 10340 imp = 10341 ck3 = 5287 } # Bogucharka, Titarevka -> Kazanskaya - link = { imp = 11429 imp = 11420 imp = 11423 ck3 = 5286 } # Sausas, Derwa, Karo -> Khursa - link = { imp = 11419 imp = 11418 imp = 11427 ck3 = 5285 } # Kirmis, Zweris, Ragas -> Khorysdan - link = { autogenerated = yes imp = 10259 imp = 10184 imp = 10185 ck3 = 5284 } # Orlik, Vorskla, Zolochiv -> Chally-Kala - link = { autogenerated = yes imp = 10182 imp = 10181 imp = 10183 imp = 10187 ck3 = 5283 } # Merla, Gelon, Trostyanets, Merefa -> Bohodukhiv + link = { autogenerated = yes imp = 5888 ck3 = 5288 } # Techka -> Manych + link = { autogenerated = yes imp = 10340 imp = 10341 imp = 10346 ck3 = 5287 } # Bogucharka, Titarevka, Rovenki -> Boguchar + link = { autogenerated = yes imp = 11429 imp = 11423 imp = 11427 ck3 = 5286 } # Sausas, Karo, Ragas -> Zadonsk + link = { autogenerated = yes imp = 11419 imp = 11418 ck3 = 5285 } # Kirmis, Zweris -> Voronezh + link = { autogenerated = yes imp = 10184 imp = 10259 ck3 = 5284 } # Vorskla, Orlik -> Chally-Kala + link = { autogenerated = yes imp = 10182 imp = 10181 ck3 = 5283 } # Merla, Gelon -> Bohodukhiv link = { autogenerated = yes imp = 6127 imp = 10188 imp = 6133 ck3 = 5282 } # Nyetskor, Krasnohrad, Dyrghet -> Karlivka link = { autogenerated = yes imp = 7193 imp = 4553 imp = 4554 imp = 6149 imp = 6154 ck3 = 5281 } # Settina*, Kremnoi, HalieumaTheou, Ghahko, Rynek -> Kutur-Ogly link = { autogenerated = yes imp = 6155 imp = 4555 imp = 6163 ck3 = 5280 } # Kisko, Hygreis, Vyonots -> Mariupol - link = { autogenerated = yes imp = 4551 imp = 4552 imp = 7192 ck3 = 5279 } # Roxolania, Meotae, Sarmapolis* -> Kyzyl Jar + link = { autogenerated = yes imp = 4551 imp = 4552 imp = 7192 ck3 = 5279 } # Roxolania, Meotae, Sarmapolis* -> Kyz-Yar link = { autogenerated = yes imp = 6124 imp = 6144 imp = 6146 imp = 6147 ck3 = 5278 } # Syti, Ish, Aegha, Ruti -> Kakovka - link = { autogenerated = yes imp = 4545 ck3 = 5277 } # Maeotia -> Perekop - link = { autogenerated = yes imp = 4536 imp = 4542 imp = 4547 ck3 = 5276 } # Kerkinitis, Neapolis, Taurica -> Kerkinitis + link = { autogenerated = yes imp = 4545 imp = 4533 ck3 = 5277 } # Maeotia, Taphros -> Perekop + link = { autogenerated = yes imp = 4547 imp = 4536 ck3 = 5276 } # Taurica, Kerkinitis -> Kerkinitis link = { autogenerated = yes imp = 6128 imp = 6121 imp = 6122 ck3 = 5275 } # Zeh, Oykets, Syalite -> Salmacatce link = { autogenerated = yes imp = 6139 imp = 6129 imp = 6130 ck3 = 5274 } # Kyakkam, Gyonal, Vurd -> Dnipro link = { autogenerated = yes imp = 6141 imp = 6123 imp = 6142 imp = 6145 ck3 = 5273 } # Enke, Shuchshek, Ghasett, Yottor -> Nikopol link = { autogenerated = yes imp = 7191 imp = 6118 ck3 = 5272 } # Uttar*, Kin -> Beryslav link = { autogenerated = yes imp = 6100 imp = 6098 imp = 6103 ck3 = 5271 } # Hkraniyat, Ocraent, Vashschka -> Voznessensk link = { autogenerated = yes imp = 6119 imp = 6108 ck3 = 5270 } # Skintara, Mnata -> Kazanka - link = { autogenerated = yes imp = 7188 imp = 4529 imp = 6102 ck3 = 5269 } # Yendi*, Olbia, Korulin -> Kherson + link = { autogenerated = yes imp = 7188 imp = 6102 ck3 = 5269 } # Yendi*, Korulin -> Kherson link = { autogenerated = yes imp = 7185 imp = 4526 ck3 = 5268 } # Atavria*, Nikonia -> Odessa link = { autogenerated = yes imp = 7189 ck3 = 5267 } # Rakan* -> Tiraspol link = { autogenerated = yes imp = 6105 imp = 6104 ck3 = 5266 } # Gonoska, Maske -> Pervomaisk - link = { autogenerated = yes imp = 6099 imp = 6094 imp = 6095 ck3 = 5265 } # Onskoet, Akhynt, Siskary -> Kashan + link = { autogenerated = yes imp = 6099 imp = 6094 ck3 = 5265 } # Onskoet, Akhynt -> Kashan link = { autogenerated = yes imp = 6107 imp = 6106 imp = 6117 ck3 = 5264 } # Kreshcek, Jyr, Aggrat -> Sacacatce link = { autogenerated = yes imp = 6110 imp = 6101 ck3 = 5263 } # Ehkere, Zetha -> Cherkassy - link = { autogenerated = yes imp = 6096 ck3 = 5262 } # Vyelinat -> Uman + link = { autogenerated = yes imp = 6096 imp = 6095 ck3 = 5262 } # Vyelinat, Siskary -> Uman link = { autogenerated = yes imp = 6083 ck3 = 5261 } # Vyrketin -> Buky link = { autogenerated = yes imp = 6087 ck3 = 5260 } # Hkar -> Yary - link = { autogenerated = yes imp = 6097 imp = 7195 ck3 = 5259 } # Kilkhaneg, Tanarke* -> Liubashivka + link = { autogenerated = yes imp = 6097 ck3 = 5259 } # Kilkhaneg -> Liubashivka link = { autogenerated = yes imp = 6088 imp = 7194 ck3 = 5258 } # Kmekhich, Konae* -> Birzula link = { autogenerated = yes imp = 6085 imp = 6084 ck3 = 5257 } # Tumin, Schech -> Ladyzyn - link = { autogenerated = yes imp = 12527 ck3 = 5256 ck3 = 5471 ck3 = 5472 } # Vevt -> Makariev, Semenov, Luch + link = { autogenerated = yes imp = 12527 ck3 = 5256 ck3 = 5471 ck3 = 5472 } # Vevt -> Korenevo, Semenov, Luch link = { autogenerated = yes imp = 12637 ck3 = 5255 ck3 = 972 } # Kuunel -> Pikalyovo, VEPSIAN WASTELAND - link = { autogenerated = yes imp = 12557 ck3 = 5246 } # Juuri -> Kineshma + link = { autogenerated = yes imp = 12639 ck3 = 5254 } # Matas -> Svolensk + link = { autogenerated = yes imp = 12557 ck3 = 5246 } # Juuri -> Yuryevets link = { autogenerated = yes imp = 12568 ck3 = 5244 ck3 = 5245 ck3 = 578 } # Nitodak -> Naro-Fominsk, Serpukhov, Kolomna link = { autogenerated = yes imp = 12566 ck3 = 5243 ck3 = 570 ck3 = 575 } # Oraca -> Klin, Dmitrov, Moskva link = { autogenerated = yes imp = 12561 ck3 = 5242 ck3 = 572 ck3 = 574 } # Ampudak -> Gavrilovskoye, Yaroslavl, Rostov link = { autogenerated = yes imp = 12559 ck3 = 5241 ck3 = 5247 ck3 = 5249 } # Orja -> Ivanovo, Plyos, Sol Vilikaya - link = { autogenerated = yes imp = 12565 ck3 = 5238 } # Nerkka -> Yegoryevsk - link = { autogenerated = yes imp = 12560 ck3 = 5237 ck3 = 5239 ck3 = 5248 ck3 = 582 ck3 = 583 } # Kacku -> Sudogda, Suzdal, Shuya, Vladimir, Starodub-on-the-klyazma - link = { autogenerated = yes imp = 12563 ck3 = 5236 ck3 = 5240 } # (Unknown) -> Volochok, Yuryev - link = { autogenerated = yes imp = 12540 ck3 = 5235 } # Lovaza -> Pavlovo - link = { autogenerated = yes imp = 12544 ck3 = 5234 ck3 = 5362 } # Turva -> Vyksa, Rakcha - link = { autogenerated = yes imp = 12564 ck3 = 5233 } # Louna -> Gorodets-Meshchyorsky + link = { autogenerated = yes imp = 12563 ck3 = 5240 ck3 = 582 } # (Unknown) -> Yuryev, Vladimir + link = { autogenerated = yes imp = 12560 ck3 = 5237 ck3 = 5239 ck3 = 5248 ck3 = 583 } # Kacku -> Sudogda, Suzdal, Shuya, Starodub-on-the-klyazma + link = { autogenerated = yes imp = 12564 ck3 = 5233 ck3 = 581 } # Louna -> Gorodets-Meshchyorsky, Murom link = { autogenerated = yes imp = 12572 ck3 = 5232 } # Istudak -> Yelets + link = { autogenerated = yes imp = 12576 ck3 = 5231 } # Udar -> Tula link = { autogenerated = yes imp = 12569 ck3 = 5230 ck3 = 5253 } # Lupsadak -> Klepiki, Vaskina Polyana link = { autogenerated = yes imp = 12571 ck3 = 5228 ck3 = 5229 } # Kanci -> Pereyaslavl Ryazanski, Rostislavl link = { autogenerated = yes imp = 12587 ck3 = 5227 } # Ukteksa -> Zubstov @@ -3414,15 +3381,14 @@ link = { autogenerated = yes imp = 4855 ck3 = 522 } # Ocara -> Pest link = { autogenerated = yes imp = 12575 ck3 = 5218 } # Suurima -> Suvorov link = { autogenerated = yes imp = 12574 ck3 = 5217 } # Tammi -> Odoyev - link = { autogenerated = yes imp = 12573 ck3 = 5216 } # Hanha -> Mtensk - link = { autogenerated = yes imp = 11428 imp = 11421 imp = 11422 ck3 = 5215 } # Krauja, Medja, Lapas -> Novosil + link = { autogenerated = yes imp = 12573 ck3 = 5215 ck3 = 5216 } # Hanha -> Novosil, Mtensk link = { autogenerated = yes imp = 12578 ck3 = 5213 ck3 = 5214 } # Kuntadak -> Vorotynsk, Belev link = { autogenerated = yes imp = 12579 ck3 = 5212 ck3 = 5219 } # Pihti -> Kozelsk, Dorogobyzh - link = { autogenerated = yes imp = 11426 ck3 = 5211 } # Inzu -> Oryol + link = { autogenerated = yes imp = 11426 imp = 11422 ck3 = 5211 } # Inzu, Lapas -> Oryol link = { autogenerated = yes imp = 11424 ck3 = 5210 } # Swo -> Krom link = { autogenerated = yes imp = 11425 ck3 = 5209 } # Ranka -> Karachev link = { autogenerated = yes imp = 10249 imp = 10246 imp = 10254 ck3 = 5208 } # Lupuznya, Sudist, Snezhet -> Lokot - link = { autogenerated = yes imp = 10262 ck3 = 5207 } # Rybnitsa -> Ust-Livny + link = { autogenerated = yes imp = 11421 imp = 10262 imp = 11428 ck3 = 5207 } # Medja, Rybnitsa, Krauja -> Ust-Livny link = { autogenerated = yes imp = 11491 imp = 10253 ck3 = 5205 } # Zwaisda, Mglin -> Mglin link = { autogenerated = yes imp = 10245 ck3 = 5204 } # Slot -> Trubetsk link = { autogenerated = yes imp = 10244 ck3 = 5203 } # Zamhlay -> Starodub @@ -3430,10 +3396,10 @@ link = { autogenerated = yes imp = 10207 imp = 10236 ck3 = 5201 } # Krasne, Snov -> Unenezh link = { autogenerated = yes imp = 10233 imp = 10232 ck3 = 5200 } # Gomel, Dnipro -> Gomel link = { autogenerated = yes imp = 2176 ck3 = 52 } # IverniaSeptentrionalis -> TRALEE - link = { autogenerated = yes imp = 10258 imp = 10196 imp = 10257 imp = 10260 ck3 = 5199 } # Psel, Moshchenoe, Kursk, Oskil -> Oboyan + link = { autogenerated = yes imp = 10260 imp = 10196 imp = 10257 imp = 10258 ck3 = 5199 } # Oskil, Moshchenoe, Kursk, Psel -> Oboyan link = { autogenerated = yes imp = 10241 imp = 10197 imp = 10252 ck3 = 5198 } # Kleven, Velykyi, Sejm -> Sudzha link = { autogenerated = yes imp = 10251 imp = 10255 ck3 = 5197 } # Grunya, Medovyi -> Rylsk - link = { autogenerated = yes imp = 10261 ck3 = 5196 } # Belaya -> Kursk + link = { autogenerated = yes imp = 10261 imp = 11420 ck3 = 5196 } # Belaya, Derwa -> Kursk link = { autogenerated = yes imp = 10200 ck3 = 5195 } # Nedryhailiv -> Konotop link = { autogenerated = yes imp = 10195 imp = 10198 ck3 = 5194 } # Basivka, Tereshkivka -> Vyr link = { autogenerated = yes imp = 10240 ck3 = 5193 } # Melnya -> Putyvl @@ -3470,9 +3436,8 @@ link = { autogenerated = yes imp = 12590 ck3 = 5161 ck3 = 5170 } # Jarvi -> Luki, Toropets link = { autogenerated = yes imp = 4210 ck3 = 516 } # Dierna -> Severin link = { autogenerated = yes imp = 12636 ck3 = 5158 } # Peeli -> Ves Yogonska - link = { autogenerated = yes imp = 12638 ck3 = 5155 } # Lintu -> Borovichi - link = { autogenerated = yes imp = 12640 ck3 = 5154 ck3 = 5160 } # Nuci -> Kirishi, Podporozhye - link = { autogenerated = yes imp = 12639 ck3 = 5153 ck3 = 5254 } # Matas -> Tikhvin, Svolensk + link = { autogenerated = yes imp = 12638 imp = 12641 ck3 = 5155 } # Lintu, Korpi -> Borovichi + link = { autogenerated = yes imp = 12640 ck3 = 5153 ck3 = 5154 } # Nuci -> Tikhvin, Kirishi link = { autogenerated = yes imp = 12619 ck3 = 5152 } # Keuci -> Novorzhev link = { autogenerated = yes imp = 12591 imp = 12595 ck3 = 5151 } # Tuhma, Kickedak -> Nevel link = { autogenerated = yes imp = 12597 ck3 = 5150 } # Coppi -> Sebezh @@ -3483,14 +3448,14 @@ link = { autogenerated = yes imp = 12618 ck3 = 5145 } # Purdak -> Loknya link = { autogenerated = yes imp = 12621 ck3 = 5144 } # Imedak -> Dedovichi link = { autogenerated = yes imp = 12620 ck3 = 5143 } # Jalka -> Rusa - link = { autogenerated = yes imp = 12617 ck3 = 5141 } # Sisalikko -> Luga - link = { autogenerated = yes imp = 12629 imp = 12642 ck3 = 5140 } # Hapci, Ceketek -> Soltsy - link = { autogenerated = yes imp = 12646 ck3 = 5139 } # Havte -> Lyuban - link = { autogenerated = yes imp = 12643 imp = 12628 ck3 = 5137 } # Elpes, Ema -> Novgorod + link = { autogenerated = yes imp = 12617 imp = 12642 ck3 = 5141 } # Sisalikko, Ceketek -> Luga + link = { autogenerated = yes imp = 12629 ck3 = 5140 } # Hapci -> Soltsy + link = { autogenerated = yes imp = 12643 imp = 12646 ck3 = 5139 } # Elpes, Havte -> Lyuban + link = { autogenerated = yes imp = 12628 ck3 = 5137 } # Ema -> Novgorod link = { autogenerated = yes imp = 10270 imp = 10271 imp = 10273 ck3 = 5136 } # Narodowy, Kulesze, Monki -> Novogrudok link = { autogenerated = yes imp = 12592 ck3 = 5135 } # Mukka -> Haradok link = { autogenerated = yes imp = 10322 imp = 12583 ck3 = 5134 } # Lunichno, Maito -> Vitebsk - link = { autogenerated = yes imp = 10306 imp = 10305 imp = 10307 ck3 = 5133 } # Izha, Narachanski, Dyagili -> Hlybokaye + link = { autogenerated = yes imp = 10307 imp = 10305 imp = 10306 ck3 = 5133 } # Dyagili, Narachanski, Izha -> Hlybokaye link = { autogenerated = yes imp = 10308 imp = 10309 imp = 10310 ck3 = 5132 } # Guta, Plissa, Yelnya -> Vetrino link = { autogenerated = yes imp = 10304 imp = 10303 ck3 = 5131 } # Svirkos, Braslaw -> Myory link = { autogenerated = yes imp = 12598 ck3 = 5130 } # Nalja -> Drysa @@ -3508,7 +3473,7 @@ link = { autogenerated = yes imp = 4525 imp = 4524 ck3 = 512 } # Tyras, Aepolium -> Cetatea Alba link = { autogenerated = yes imp = 10329 imp = 10317 imp = 10330 imp = 10331 ck3 = 5119 } # Mogilev, Kremok, Ryasna, Chavusy -> Babruysk link = { autogenerated = yes imp = 10274 imp = 10272 ck3 = 5118 } # Grodno, Bialystok -> Baranovichi - link = { autogenerated = yes imp = 10224 imp = 10222 imp = 10223 imp = 10269 ck3 = 5117 } # Loktyshi, Gorodische, Vygonoschanskoye, Bielsk -> Kletsk + link = { autogenerated = yes imp = 10222 imp = 10223 imp = 10224 imp = 10269 ck3 = 5117 } # Gorodische, Vygonoschanskoye, Loktyshi, Bielsk -> Kletsk link = { autogenerated = yes imp = 10225 ck3 = 5116 } # Pahost -> Mikashevichy link = { autogenerated = yes imp = 10227 imp = 10226 ck3 = 5115 } # Chervonoye, Salihorsk -> Zhytkavichy link = { autogenerated = yes imp = 10312 imp = 10314 ck3 = 5114 } # Kapyl, Zavolochitsky -> Slutsk @@ -3525,18 +3490,18 @@ link = { autogenerated = yes imp = 10220 ck3 = 5103 } # Styr -> Selo link = { autogenerated = yes imp = 7642 imp = 6240 ck3 = 5102 } # Sylvana, Assula -> Sarny link = { autogenerated = yes imp = 6070 imp = 6086 ck3 = 5100 } # Lechta, Volyatss -> Yampil - link = { imp = 4515 imp = 4512 imp = 4513 ck3 = 510 } # Ulmetensium, Clementia, Histria -> Constantia - link = { autogenerated = yes imp = 6072 imp = 6071 ck3 = 5099 } # Yukta, Shethigk -> Vinnytsia + link = { autogenerated = yes imp = 4512 imp = 4513 imp = 4515 ck3 = 510 } # Clementia, Histria, Ulmetensium -> Constantia + link = { autogenerated = yes imp = 6072 ck3 = 5099 ck3 = 5101 } # Yukta -> Vinnytsia, Haisyn link = { autogenerated = yes imp = 6069 ck3 = 5098 } # Gosthinya -> Ushytsia link = { autogenerated = yes imp = 10211 ck3 = 5097 } # Zvyzdal -> Radynka link = { autogenerated = yes imp = 10209 ck3 = 5095 ck3 = 5096 } # Radcha -> Chornobyl, Ivankiv link = { autogenerated = yes imp = 10212 ck3 = 5094 } # Sluch -> Horodnytsia link = { autogenerated = yes imp = 6079 ck3 = 5093 } # Vryank -> Chortolisy link = { autogenerated = yes imp = 6089 ck3 = 5091 } # Vurdant -> Zvyahel - link = { autogenerated = yes imp = 6075 ck3 = 5090 ck3 = 5101 } # Mechkeht -> Malaia Skvirka, Haisyn + link = { autogenerated = yes imp = 6075 ck3 = 5090 } # Mechkeht -> Malaia Skvirka link = { autogenerated = yes imp = 4256 imp = 4249 imp = 4250 ck3 = 509 } # Traiani, Krounoi, Tirizis -> Karvuna link = { autogenerated = yes imp = 6077 imp = 6073 ck3 = 5089 } # Ghanilkatta, Vonnet -> Rastovets - link = { autogenerated = yes imp = 6076 ck3 = 5088 } # Krueng -> Mezhybozhe + link = { autogenerated = yes imp = 6076 imp = 6071 ck3 = 5088 } # Krueng, Shethigk -> Mezhybozhe link = { autogenerated = yes imp = 6078 ck3 = 5087 } # Notghi -> Zhytomyr link = { autogenerated = yes imp = 6080 ck3 = 5086 } # Oschka -> Zdvyzhen link = { autogenerated = yes imp = 6092 imp = 6093 ck3 = 5085 } # Gelts, Mangyl -> Kaniv @@ -3547,6 +3512,7 @@ link = { autogenerated = yes imp = 4252 imp = 4246 imp = 4253 ck3 = 508 } # Helis, Durostorum, Palmatis -> Dorostotum link = { autogenerated = yes imp = 6252 ck3 = 5078 } # Histrine -> Liubachev link = { autogenerated = yes imp = 6247 ck3 = 5077 } # Sottika -> Belz + link = { autogenerated = yes imp = 6256 imp = 6258 ck3 = 5075 } # Venediana, Cariala -> Kholm link = { autogenerated = yes imp = 6249 ck3 = 5074 } # Celavira -> Volin link = { autogenerated = yes imp = 6257 ck3 = 5073 ck3 = 5076 } # Malica -> Cherven, Suteysk link = { autogenerated = yes imp = 6245 imp = 6242 ck3 = 5071 } # Mitteria, Seno -> Dubno @@ -3555,7 +3521,7 @@ link = { autogenerated = yes imp = 6067 imp = 2543 ck3 = 5069 } # Alkonet, Uccrynyika -> Chortkiv link = { autogenerated = yes imp = 6068 ck3 = 5068 } # Khurra -> Horodok link = { autogenerated = yes imp = 5383 ck3 = 5067 } # Oggrunet -> Moklekov - link = { imp = 6239 ck3 = 5066 ck3 = 5072 } # Sitha -> Buchach, Ostroh + link = { autogenerated = yes imp = 6239 ck3 = 5066 ck3 = 5072 } # Sitha -> Buchach, Ostroh link = { autogenerated = yes imp = 6250 ck3 = 5065 } # Arha -> Busk link = { autogenerated = yes imp = 6047 ck3 = 5064 } # Olnish -> Zvenyhorod link = { autogenerated = yes imp = 6246 imp = 6238 ck3 = 5063 } # Venulia, Arheo -> Lviv @@ -3563,7 +3529,7 @@ link = { autogenerated = yes imp = 4944 ck3 = 5060 } # Dolarum* -> Sambir link = { autogenerated = yes imp = 4216 imp = 4215 ck3 = 506 } # Bononia, Dortium -> Vidin link = { autogenerated = yes imp = 6294 imp = 6291 ck3 = 5059 } # Felita, Vorytta -> Blotkowo - link = { imp = 6298 imp = 7824 ck3 = 5058 } # Bostor, Revacia -> Kobryn + link = { autogenerated = yes imp = 7824 imp = 6298 ck3 = 5058 } # Revacia, Bostor -> Kobryn link = { autogenerated = yes imp = 7822 ck3 = 5055 } # Sudinoia Australis -> Kamyanyets link = { autogenerated = yes imp = 7820 ck3 = 5054 ck3 = 5056 } # Ossioia -> Bielsk, Simiatychi link = { autogenerated = yes imp = 6295 ck3 = 5053 } # Orona -> Klevan @@ -3579,7 +3545,7 @@ link = { autogenerated = yes imp = 7805 ck3 = 5043 ck3 = 5046 } # Sudinoia -> Sokolka, Bielastock link = { autogenerated = yes imp = 4939 ck3 = 5042 } # Octavum* -> Cernauti link = { autogenerated = yes imp = 4937 ck3 = 5040 } # Confluentia* -> Hotin - link = { autogenerated = yes imp = 4068 ck3 = 504 } # BistuaNova -> Rama + link = { autogenerated = yes imp = 4068 imp = 5081 ck3 = 504 } # BistuaNova, IMPASSIBLE TERRAIN 081 -> Rama link = { autogenerated = yes imp = 4933 ck3 = 5039 } # Cruciatum* -> Harlau link = { autogenerated = yes imp = 4914 ck3 = 5038 } # Carsidava -> Dorohoi link = { autogenerated = yes imp = 4938 ck3 = 5037 ck3 = 5041 ck3 = 5062 } # Tannis* -> Siret, Tetina, Spas @@ -3593,7 +3559,7 @@ link = { autogenerated = yes imp = 4934 ck3 = 5022 } # Muradava* -> Balti link = { autogenerated = yes imp = 4936 ck3 = 5021 ck3 = 5024 } # Verticem* -> Soroca, Falesti link = { autogenerated = yes imp = 4929 imp = 4916 ck3 = 5020 } # Siculo*, Mirum* -> Tuzara - link = { imp = 4101 imp = 5078 imp = 5091 ck3 = 502 } # Arsa, IMPASSIBLE TERRAIN 078, IMPASSIBLE TERRAIN 091 -> Rashka + link = { autogenerated = yes imp = 4101 imp = 4119 imp = 5078 imp = 5091 ck3 = 502 } # Arsa, Celegerorum, IMPASSIBLE TERRAIN 078, IMPASSIBLE TERRAIN 091 -> Rashka link = { autogenerated = yes imp = 4915 ck3 = 5019 } # Clepidava -> Orhei link = { autogenerated = yes imp = 4921 ck3 = 5018 } # Bridava* -> Chisinau link = { autogenerated = yes imp = 4925 ck3 = 5017 ck3 = 5026 } # Volumis* -> Lapusna, Husi @@ -3628,16 +3594,15 @@ link = { autogenerated = yes imp = 4266 imp = 4267 ck3 = 4986 } # Romula, CastrisNovis -> Corabia link = { autogenerated = yes imp = 4268 ck3 = 4985 } # Acidava -> Craiova link = { autogenerated = yes imp = 4279 imp = 4211 ck3 = 4983 } # Dumbrava, Drobeta -> Strehaia - link = { imp = 4277 ck3 = 4982 } # Salcia -> Cujmir - link = { autogenerated = yes imp = 4276 ck3 = 4981 } # CastraBistria -> Calafat - link = { imp = 4278 ck3 = 4984 } # Amutria -> Segarcea + link = { autogenerated = yes imp = 4277 imp = 4276 ck3 = 4982 } # Salcia, CastraBistria -> Cujmir + link = { autogenerated = yes imp = 4278 ck3 = 4981 ck3 = 4984 } # Amutria -> Calafat, Segarcea link = { autogenerated = yes imp = 4275 ck3 = 4978 ck3 = 4979 } # AdMutrium -> Targu Jiu, Baia de Arama - link = { autogenerated = yes imp = 4824 ck3 = 4977 ck3 = 4980 } # Confluentiana -> Dumbraveni, Zoresti + link = { autogenerated = yes imp = 4824 ck3 = 4977 ck3 = 4980 ck3 = 733 } # Confluentiana -> Dumbraveni, Zoresti, CARPATHIANS link = { autogenerated = yes imp = 4263 ck3 = 4975 } # AdScorfulas -> Orsova link = { autogenerated = yes imp = 4314 ck3 = 497 } # Urasa -> Thrake link = { autogenerated = yes imp = 4947 ck3 = 4968 } # Tandum* -> Pilzno link = { autogenerated = yes imp = 6254 ck3 = 4966 ck3 = 4967 ck3 = 5079 } # Donaria -> Mielec, Baranow, Yaroslav - link = { imp = 4887 ck3 = 4965 ck3 = 4973 } # Cracovia* -> Tarnow, Wislica + link = { autogenerated = yes imp = 4887 ck3 = 4965 ck3 = 4970 ck3 = 4973 } # Cracovia* -> Tarnow, Bochnia, Wislica link = { autogenerated = yes imp = 6259 ck3 = 4961 ck3 = 4963 ck3 = 531 } # Urgana -> Opatow, Olesnica, Sandomierz link = { autogenerated = yes imp = 6263 ck3 = 4960 } # Shurita -> Urzedow link = { autogenerated = yes imp = 1453 ck3 = 496 } # Byzantion -> Byzantion @@ -3659,8 +3624,8 @@ link = { autogenerated = yes imp = 6293 ck3 = 4937 ck3 = 5057 } # Makkate -> Liw, Dorohychyn link = { autogenerated = yes imp = 6274 ck3 = 4936 ck3 = 4942 ck3 = 4950 } # Kunegria -> Warszawa, Sochaczew, Lowicz link = { autogenerated = yes imp = 6288 ck3 = 4935 } # Gurina -> Ciechanow - link = { autogenerated = yes imp = 6278 ck3 = 4933 } # Mornal -> Wyszogrod - link = { autogenerated = yes imp = 487 imp = 485 ck3 = 493 } # Bessapara, Philippopolis -> Philippopolis + link = { autogenerated = yes imp = 6278 ck3 = 4933 ck3 = 4934 } # Mornal -> Wyszogrod, Zawkrze + link = { autogenerated = yes imp = 487 ck3 = 493 ck3 = 3625 } # Bessapara -> Philippopolis, Krichim link = { autogenerated = yes imp = 6266 ck3 = 4928 ck3 = 4962 ck3 = 4964 } # Gorion -> Przedborz, Kielce, Checiny link = { autogenerated = yes imp = 6269 ck3 = 4927 } # Gurala -> Piotrkow link = { autogenerated = yes imp = 6272 ck3 = 4926 } # Kavera -> Klodawa @@ -3675,13 +3640,11 @@ link = { autogenerated = yes imp = 4775 ck3 = 4906 ck3 = 4907 } # Setideva -> Sroda, Pyzdry link = { autogenerated = yes imp = 4776 ck3 = 4905 ck3 = 4918 ck3 = 4920 } # Naharvalorum -> Gniezno, Kruszwica, Inowroclaw link = { autogenerated = yes imp = 4768 ck3 = 4902 } # Erbia -> Czarnkow - link = { autogenerated = yes imp = 4767 ck3 = 4901 } # Buguntiana -> Miedzyrzecz link = { autogenerated = yes imp = 4761 ck3 = 4900 } # Ascaucalis -> Poznan link = { autogenerated = yes imp = 373 ck3 = 490 } # Thessalonica -> Thessalonike link = { autogenerated = yes imp = 2178 ck3 = 49 ck3 = 50 } # UsdiaOrientalis -> WATERFORD, EMLY link = { autogenerated = yes imp = 811 imp = 1868 ck3 = 4899 } # Doliche, Tyba -> DULUK-TELUCH link = { autogenerated = yes imp = 1879 ck3 = 4897 } # Aigaiai -> AYAS - link = { autogenerated = yes imp = 1874 imp = 796 imp = 5180 ck3 = 4896 } # Epiphaneia, Issus/Nikopolis, IMPASSIBLE TERRAIN 180 -> TALL HAMID link = { autogenerated = yes imp = 1867 imp = 1870 imp = 1873 imp = 7987 ck3 = 4895 } # Germanikeia, Amanian Gates, Eirenopolis, Markash Mountains -> AL-HARUNIYA link = { autogenerated = yes imp = 838 imp = 836 ck3 = 4894 } # Tille, Samosata -> SAMOSATA link = { autogenerated = yes imp = 1862 ck3 = 4893 } # Adatha -> MARASH @@ -3697,12 +3660,12 @@ link = { autogenerated = yes imp = 804 ck3 = 4876 } # Nicephorium -> RAQQA link = { autogenerated = yes imp = 847 imp = 805 ck3 = 4875 } # Dausara, Amphipolis -> DAUSAR link = { autogenerated = yes imp = 849 ck3 = 4874 } # Ballatha -> SARUJ - link = { autogenerated = yes imp = 809 ck3 = 4873 } # Europos -> TALL_AMMAR - link = { imp = 1847 ck3 = 4872 } # Bithias -> AL-BIRA + link = { autogenerated = yes imp = 809 ck3 = 4873 ck3 = 5902 } # Europos -> TALL_AMMAR, JARABULUS + link = { autogenerated = yes imp = 1847 imp = 817 ck3 = 4872 } # Bithias, Batnae -> AL-BIRA link = { autogenerated = yes imp = 844 ck3 = 4871 } # Antiochia Arabis -> TALL_MAUZAN link = { autogenerated = yes imp = 819 ck3 = 4870 } # Carrhae -> HARRAN link = { autogenerated = yes imp = 284 imp = 283 ck3 = 487 } # Eresos, Mytilene -> Lesbos - link = { imp = 818 imp = 817 ck3 = 4869 } # Edessa/Antiochia ad Callirhoem, Batnae -> EDESSA + link = { autogenerated = yes imp = 818 ck3 = 4869 } # Edessa/Antiochia ad Callirhoem -> EDESSA link = { autogenerated = yes imp = 879 imp = 840 ck3 = 4868 } # Barbare, Arsameia -> AS-SUWAIDA link = { autogenerated = yes imp = 877 ck3 = 4866 } # Barsalium -> ZERMION link = { autogenerated = yes imp = 878 ck3 = 4865 ck3 = 4867 } # Arsinia (Ergani) -> ERKNE, AMID @@ -3717,8 +3680,8 @@ link = { autogenerated = yes imp = 872 ck3 = 4854 } # Ammodios -> MARDIN link = { autogenerated = yes imp = 854 ck3 = 4853 } # Ganaba -> RAS_AL-AIN link = { autogenerated = yes imp = 874 ck3 = 4851 ck3 = 4852 } # Thannuris -> TUNAMIR, MIJDAL - link = { autogenerated = yes imp = 823 ck3 = 4850 ck3 = 4879 ck3 = 4881 } # Shadikanni -> AL-JIBAL, ARABAN, ASH-SHAMSANIYA - link = { imp = 407 imp = 409 imp = 410 imp = 7901 imp = 7904 imp = 7900 ck3 = 485 } # Chalcis, Karystos, Oichalia, Eretria, Styra, Dirphys Mons -> Euboia + link = { autogenerated = yes imp = 823 ck3 = 4850 ck3 = 4879 } # Shadikanni -> AL-JIBAL, ARABAN + link = { autogenerated = yes imp = 409 imp = 407 imp = 410 imp = 7901 imp = 7904 imp = 7900 ck3 = 485 } # Karystos, Chalcis, Oichalia, Eretria, Styra, Dirphys Mons -> Euboia link = { autogenerated = yes imp = 869 ck3 = 4847 } # Riskephas -> HISN_KAIFA link = { autogenerated = yes imp = 822 ck3 = 4846 } # Nabada -> DARA link = { autogenerated = yes imp = 830 imp = 832 ck3 = 4845 } # Nisibis, Ta'idu -> NASIBIN @@ -3731,20 +3694,22 @@ link = { autogenerated = yes imp = 5440 imp = 773 imp = 875 ck3 = 4839 } # UNINHABITABLE, Vicat, Zagurae -> TALL_AFAR link = { autogenerated = yes imp = 835 ck3 = 4837 } # Hatra -> AL-HADR link = { autogenerated = yes imp = 883 ck3 = 4836 } # Ashur -> AIN AL-QAYYARA - link = { imp = 894 ck3 = 4832 } # Maskin -> AIWANA + link = { autogenerated = yes imp = 956 ck3 = 4835 } # Tell Ajri -> TAKRIT link = { autogenerated = yes imp = 904 ck3 = 4831 } # Idu -> AR-RABB link = { autogenerated = yes imp = 266 imp = 1884 ck3 = 483 } # Rhodos, Augusta -> Rhodos - link = { imp = 902 ck3 = 4828 ck3 = 4829 } # Misiche -> BAGHDAD, AL-ANBAR - link = { autogenerated = yes imp = 922 ck3 = 4826 ck3 = 5992 ck3 = 5993 } # Aqola -> AL-HILA, AL-KUFA, AN-NAJAF - link = { autogenerated = yes imp = 909 ck3 = 4825 } # Naarda -> AL-FARASA + link = { autogenerated = yes imp = 902 ck3 = 4829 } # Misiche -> AL-ANBAR + link = { autogenerated = yes imp = 894 ck3 = 4828 ck3 = 4832 } # Maskin -> BAGHDAD, AIWANA + link = { autogenerated = yes imp = 909 imp = 901 ck3 = 4827 } # Naarda, Tell Aswad -> SARSAR + link = { autogenerated = yes imp = 922 ck3 = 4826 ck3 = 5993 } # Aqola -> AL-HILA, AN-NAJAF + link = { autogenerated = yes imp = 918 ck3 = 4825 } # Babylon -> AL-FARASA link = { autogenerated = yes imp = 917 imp = 910 imp = 913 imp = 915 imp = 916 ck3 = 4824 } # Kish, Sippar, Vologesias, Cutha, Girumu -> HUMANIYA - link = { imp = 960 imp = 919 imp = 927 ck3 = 4823 } # Tell Arsan, Borsippa, Skaphe -> AN-NU'MANIYA - link = { imp = 962 imp = 930 imp = 934 ck3 = 4821 } # Tell Khay, Tell Laham, Kashkar -> WASIT + link = { autogenerated = yes imp = 960 imp = 927 ck3 = 4823 } # Tell Arsan, Skaphe -> AN-NU'MANIYA + link = { autogenerated = yes imp = 962 imp = 930 imp = 933 imp = 934 ck3 = 4821 } # Tell Khay, Tell Laham, Apamea, Kashkar -> WASIT link = { autogenerated = yes imp = 980 ck3 = 4820 } # Dashti -> AT-TIB link = { autogenerated = yes imp = 7799 imp = 413 imp = 416 imp = 442 imp = 7898 imp = 5062 ck3 = 482 } # Thorikos, Oropos, Athens, Aigina, Rhamnous, IMPASSIBLE TERRAIN 062 -> Atheniai link = { autogenerated = yes imp = 947 imp = 5235 ck3 = 4819 } # Shapur, IMPASSIBLE TERRAIN 235 -> KARKHA link = { autogenerated = yes imp = 948 imp = 946 imp = 949 ck3 = 4818 } # Dezful, Shushan, Bendosaboron -> AS-SUS - link = { imp = 834 ck3 = 4813 ck3 = 4814 } # Satalka -> BAQIRDA, TAMANIN + link = { autogenerated = yes imp = 834 ck3 = 4813 ck3 = 4814 ck3 = 4815 } # Satalka -> BAQIRDA, TAMANIN, HAKKARI link = { autogenerated = yes imp = 986 imp = 867 ck3 = 4812 } # Grai Darki, Shapur -> FISHABUR link = { autogenerated = yes imp = 866 imp = 863 imp = 864 imp = 865 ck3 = 4811 } # Bavian, Balad, Dur-Sharrukin, Gaugamela -> NINAWA link = { autogenerated = yes imp = 882 ck3 = 4810 ck3 = 4838 } # Kalhu -> BARTULLA, JUHAINA @@ -3774,38 +3739,38 @@ link = { autogenerated = yes imp = 1603 ck3 = 4783 } # Zagrou Pilai -> TAZAR link = { autogenerated = yes imp = 959 ck3 = 4780 } # Syarazur -> SHAHRAZUR link = { autogenerated = yes imp = 429 imp = 471 ck3 = 478 } # Epidauros Limera, Kythera -> Monemvasia - link = { autogenerated = yes imp = 958 ck3 = 4778 ck3 = 4779 } # Kurh u kich -> KHUFTIDKAN, TIRANSHAH - link = { autogenerated = yes imp = 984 imp = 985 ck3 = 4777 } # Hazza, Qizqapan -> IRBIL + link = { autogenerated = yes imp = 958 ck3 = 4779 } # Kurh u kich -> TIRANSHAH + link = { autogenerated = yes imp = 984 ck3 = 4777 } # Hazza -> IRBIL link = { autogenerated = yes imp = 880 ck3 = 4774 ck3 = 4775 } # Arbela -> TALL HAFTUN, SHAQLABADH - link = { autogenerated = yes imp = 1503 imp = 1504 imp = 1505 imp = 1507 ck3 = 4772 } # Salamas, Gazrik, Arziyayad tepe, Sormanabad tepe -> SALMAS - link = { autogenerated = yes imp = 1506 imp = 1508 imp = 1509 ck3 = 4771 } # Ormi, Balajuk tepe, Siraganon -> URMIYA - link = { autogenerated = yes imp = 1511 imp = 1518 imp = 1519 imp = 1510 ck3 = 4770 } # Qalatgah, Kuh-i Chorblach, Qalat, Shno -> USHNUYA + link = { autogenerated = yes imp = 1503 imp = 1504 ck3 = 4772 } # Salamas, Gazrik -> SALMAS + link = { autogenerated = yes imp = 1506 ck3 = 4771 } # Ormi -> URMIYA + link = { autogenerated = yes imp = 1510 ck3 = 4770 } # Shno -> USHNUYA link = { autogenerated = yes imp = 432 ck3 = 477 } # Mothone -> Methone link = { autogenerated = yes imp = 1512 imp = 1513 ck3 = 4769 } # Sheytanabad, Rasuh tepe -> BASAWA link = { autogenerated = yes imp = 1553 imp = 1514 imp = 1517 ck3 = 4767 } # Dashband, Fakhrikah, Zir tepe -> BAILAQAN link = { autogenerated = yes imp = 6964 imp = 4965 imp = 6958 ck3 = 4764 } # Golan, Makash, Bijar -> SAD KHANIYA - link = { imp = 7890 imp = 434 ck3 = 476 } # Dyme, Patrai -> Achaia - link = { imp = 3271 imp = 3266 imp = 3270 ck3 = 4753 } # Thignica, Membressa, BisicaLucana -> SILYANA + link = { autogenerated = yes imp = 434 imp = 7890 ck3 = 476 } # Patrai, Dyme -> Achaia + link = { autogenerated = yes imp = 3271 imp = 3266 imp = 3270 imp = 8143 imp = 8144 ck3 = 4753 } # Thignica, Membressa, BisicaLucana, Africa Impassable, Africa Impassable -> SILYANA link = { autogenerated = yes imp = 3161 imp = 3226 imp = 3227 ck3 = 4752 } # Chullu, Culucitanis, Rusicade -> IZAN - link = { imp = 10147 imp = 10153 imp = 10152 ck3 = 4750 } # Bourzeg, Boussemghoun, Arbaouats -> AIN SEFRA - link = { autogenerated = yes imp = 456 imp = 457 imp = 7803 imp = 5065 ck3 = 475 } # Thermon, Naupaktos, Calydon, IMPASSIBLE TERRAIN 065 -> Hellas - link = { imp = 10114 ck3 = 4748 } # Maghessel -> NADOR + link = { imp = 10151 imp = 10155 imp = 10152 ck3 = 4751 } # Krakda, Brezina, Arbaouats -> MECHERIA + link = { autogenerated = yes imp = 10154 imp = 10147 imp = 10153 ck3 = 4750 } # Sefra, Bourzeg, Boussemghoun -> AIN SEFRA + link = { autogenerated = yes imp = 10111 imp = 10114 imp = 5986 ck3 = 4748 } # Oufriden, Maghessel, Middle Atlas -> NADOR link = { autogenerated = yes imp = 6489 imp = 6474 ck3 = 4746 } # Mzamza, Meskine -> EL-BOROUJ link = { autogenerated = yes imp = 461 ck3 = 474 } # Kefalonia -> Cephalonia link = { autogenerated = yes imp = 10089 imp = 10088 ck3 = 4734 } # Bou Azzer, Ouarzazate -> WARZAZAT link = { autogenerated = yes imp = 6480 imp = 10079 ck3 = 4731 } # Amrane, Guerir -> BOULAWAN link = { autogenerated = yes imp = 464 ck3 = 473 } # Nikopolis -> Arta link = { autogenerated = yes imp = 10075 imp = 10074 imp = 10098 ck3 = 4724 } # Berhil, Taroudant, Aoulouze -> TARUDANT - link = { imp = 10084 ck3 = 4716 } # Mejjat -> TINMALLAL - link = { imp = 10083 imp = 10076 imp = 10081 ck3 = 4721 } # Moktar, Arambys, Iyiche -> AGHUZ + link = { autogenerated = yes imp = 10083 imp = 10076 imp = 10081 imp = 10084 ck3 = 4721 } # Moktar, Arambys, Iyiche, Mejjat -> AGHUZ link = { autogenerated = yes imp = 10078 imp = 10077 imp = 6490 ck3 = 4720 } # Yousouffia, Aguz, Safim -> ASFI link = { autogenerated = yes imp = 421 ck3 = 472 } # Phoinike -> Epeiros link = { autogenerated = yes imp = 10082 ck3 = 4719 } # Marrakech -> RIBAT SHAKIR link = { autogenerated = yes imp = 10085 ck3 = 4717 ck3 = 4715 } # Aghmat -> NAFFIS, TASGIMUT link = { autogenerated = yes imp = 10080 ck3 = 4714 ck3 = 4718 } # Laattaouia -> AGHMAT, MARRAKESH link = { autogenerated = yes imp = 6471 ck3 = 4713 } # Beni Mousa -> AIT IYAT + link = { autogenerated = yes imp = 10179 ck3 = 4712 } # Atlas Pass -> AIT ITAB link = { autogenerated = yes imp = 6472 ck3 = 4710 } # Beni Amer -> DAI - link = { imp = 412 ck3 = 471 } # Lychnidos -> Ochrid + link = { autogenerated = yes imp = 412 ck3 = 471 ck3 = 3724 } # Lychnidos -> Ochrid, Debar link = { autogenerated = yes imp = 6302 imp = 6473 ck3 = 4709 } # Zemmour, Ouardigha -> TADLA link = { autogenerated = yes imp = 10101 ck3 = 4708 } # Kerrouchen -> WAWMANA link = { autogenerated = yes imp = 6484 ck3 = 4707 ck3 = 4698 } # Ifran -> WAZEQQUR, TAGRAGRA @@ -3833,20 +3798,20 @@ link = { autogenerated = yes imp = 4085 ck3 = 468 } # Epidaurum -> Ragusa link = { autogenerated = yes imp = 10131 imp = 10130 imp = 10134 imp = 10135 imp = 10136 ck3 = 4679 } # Sidi Driss, Hoceima, Ajdir, Mnoud Nekkour, Ziam -> NAKUR link = { autogenerated = yes imp = 3080 imp = 10117 imp = 10132 imp = 10133 ck3 = 4678 } # OppidumEtPortus, Zaio, Tiztoutine, Midar -> MELILLA - link = { imp = 10116 ck3 = 4675 } # Ouidane -> SAA + link = { autogenerated = yes imp = 10115 imp = 10116 imp = 10174 ck3 = 4675 } # Lamrija, Ouidane, Gafait -> SAA link = { autogenerated = yes imp = 3082 ck3 = 4674 } # MonsAmbulatis -> WAJDA - link = { autogenerated = yes imp = 3089 imp = 3087 imp = 3090 ck3 = 4671 } # Altava, Pomaria, Tepidae -> AIN TEKBALET + link = { autogenerated = yes imp = 3087 imp = 3090 ck3 = 4671 } # Pomaria, Tepidae -> AIN TEKBALET link = { autogenerated = yes imp = 4060 ck3 = 467 } # Tragurium -> Split link = { autogenerated = yes imp = 3083 ck3 = 4669 } # Lemnis -> HUNAYN link = { autogenerated = yes imp = 3086 ck3 = 4668 } # Siga -> ARSGUL link = { autogenerated = yes imp = 3088 imp = 3093 imp = 3094 ck3 = 4667 } # Albulae, Regiae, Caputtasaccora -> QASR IBN SINAN link = { autogenerated = yes imp = 3092 imp = 3091 ck3 = 4666 } # PortusDivinus, CastraPuerorum -> ORAN link = { autogenerated = yes imp = 3095 ck3 = 4664 ck3 = 4665 } # PortusMagnus -> MARSA FARUKH, ARZEW - link = { imp = 3100 ck3 = 4656 } # CastraNova -> QALA'A B_HUWARA + link = { autogenerated = yes imp = 3100 ck3 = 4656 ck3 = 800 } # CastraNova -> QALA'A B_HUWARA, Tell Atlas Mountains 1 link = { autogenerated = yes imp = 3109 imp = 3102 imp = 3107 imp = 3101 ck3 = 4655 } # PortusMagulus, Mina, GaudumCastra, QuizaXenitana -> YALALA link = { autogenerated = yes imp = 3106 imp = 3108 ck3 = 4653 } # Arsennaria, Cartenae -> TANAS - link = { autogenerated = yes imp = 3113 imp = 3111 ck3 = 4652 } # Gunugus, Cartilli -> SHARSHAL - link = { imp = 3118 imp = 3116 ck3 = 4651 } # Icosium, Tipasa -> MATTIJA + link = { autogenerated = yes imp = 3111 imp = 3113 ck3 = 4652 } # Cartilli, Gunugus -> SHARSHAL + link = { autogenerated = yes imp = 3118 imp = 3116 imp = 3119 ck3 = 4651 } # Icosium, Tipasa, Lambdia -> MATTIJA link = { autogenerated = yes imp = 3120 ck3 = 4650 } # Rusguniae -> ALGIERS link = { autogenerated = yes imp = 4054 ck3 = 465 } # Iader -> Zadar link = { autogenerated = yes imp = 3121 imp = 3122 imp = 3123 imp = 3124 ck3 = 4649 } # Rusuccuru, Rusippisir, Rusazus, Bida -> TADALLIS @@ -3856,7 +3821,7 @@ link = { autogenerated = yes imp = 10162 imp = 3151 ck3 = 4642 } # Mcif, Macri -> MAGRA link = { autogenerated = yes imp = 10159 imp = 10168 imp = 3132 imp = 3133 ck3 = 4641 } # Khoubana, Teboucha, Tatiliti, Zabi -> AL-MASILA link = { autogenerated = yes imp = 3157 imp = 3134 imp = 3139 imp = 3140 imp = 3142 ck3 = 4640 } # Lemellia, Equizeto, Vanisnesi, AdSavaMunicipium, Aras -> QALA'A B_HAMMAD - link = { autogenerated = yes imp = 4033 imp = 4050 ck3 = 464 } # Senia, Arupium -> Senj + link = { autogenerated = yes imp = 4033 ck3 = 464 ck3 = 3540 } # Senia -> Senj, Brinje link = { autogenerated = yes imp = 3159 imp = 3147 imp = 3148 imp = 3158 ck3 = 4639 } # Zarai, Sitifis, Mopth, Lobrinia -> SATIF link = { autogenerated = yes imp = 3146 imp = 3149 ck3 = 4638 } # Satafis, Cuicul -> IKJAN link = { autogenerated = yes imp = 3126 imp = 3135 imp = 3141 imp = 3143 imp = 3144 ck3 = 4637 } # Saldae, Tubusuctu, Sertei, Lesbia, Muslubium -> BEJAYA @@ -3868,29 +3833,29 @@ link = { autogenerated = yes imp = 3163 imp = 3178 imp = 3180 ck3 = 4631 } # Constantina, DianaVeteranorum, Thenebrestia -> CONSTANTINE link = { autogenerated = yes imp = 3223 imp = 3228 ck3 = 4630 } # Calama, Celtianis -> QALAMA link = { autogenerated = yes imp = 4077 ck3 = 463 } # Marsonia -> Usora - link = { imp = 3231 imp = 3221 imp = 3224 ck3 = 4629 } # PagusMalarensium, Zattara, Asuccuris -> TUBURSHIQ + link = { autogenerated = yes imp = 3231 imp = 3221 imp = 3224 imp = 7640 ck3 = 4629 } # PagusMalarensium, Zattara, Asuccuris, Impassable -> TUBURSHIQ link = { autogenerated = yes imp = 3217 imp = 3220 ck3 = 4628 } # Madauros, SaltusSorothensis -> TIFASH - link = { imp = 3182 imp = 3167 imp = 3168 imp = 3170 imp = 3184 imp = 3207 imp = 3174 ck3 = 4627 } # Bagai, Macomades, MasculaTiberia, Lambafundi, Thalades, Vegesela, Claudi -> BAGHAYA + link = { autogenerated = yes imp = 3182 imp = 3167 imp = 3168 imp = 3170 imp = 3184 imp = 3207 imp = 3174 imp = 8141 ck3 = 4627 } # Bagai, Macomades, MasculaTiberia, Lambafundi, Thalades, Vegesela, Claudi, Africa Impassable -> BAGHAYA link = { autogenerated = yes imp = 3219 imp = 3213 imp = 3215 ck3 = 4626 } # Marcimeni, Vasampus, Casaea -> MASKIYANA link = { autogenerated = yes imp = 3214 imp = 3208 imp = 3216 imp = 3237 imp = 3247 ck3 = 4625 } # Thaesactum, Ammaedara, FundaThavagalensis, Obba, Althiburos -> MAYDARA link = { autogenerated = yes imp = 3248 imp = 3209 imp = 3236 ck3 = 4624 } # ThuggaTerebenthina, Thala, Assuras -> TALA link = { autogenerated = yes imp = 3206 imp = 3185 imp = 3203 imp = 3205 ck3 = 4623 } # AdAquasCaesaris, LegesMaiores, Theveste, Menegesum -> TABASSA - link = { imp = 3169 imp = 3176 imp = 3187 ck3 = 4622 } # Badias, AurasiusMons, Midili -> BADIS + link = { autogenerated = yes imp = 3169 imp = 3176 imp = 3187 imp = 5366 ck3 = 4622 } # Badias, AurasiusMons, Midili, IP 367 -> BADIS link = { imp = 3154 ck3 = 4754 } # Gemellae -> WAGHLANAT - link = { imp = 3153 imp = 3172 ck3 = 4621 } # Mesarietta, AurasiusMons -> BISKRA + link = { autogenerated = yes imp = 3153 imp = 3172 ck3 = 4621 } # Mesarietta, AurasiusMons -> BISKRA link = { autogenerated = yes imp = 3166 imp = 3165 imp = 3218 ck3 = 4620 } # Gadiaufala, Nattabutum, Tipasa -> QASR AL-IFRIQI link = { autogenerated = yes imp = 4182 ck3 = 462 } # Claudia -> Krizevci link = { autogenerated = yes imp = 4176 imp = 4181 ck3 = 461 } # Pyrri, Savia -> Zagreb - link = { imp = 3186 imp = 3193 imp = 3204 ck3 = 4607 } # UbazaCastellum, Cerva, Vatari -> MADILA - link = { imp = 3195 imp = 3188 ck3 = 4606 } # Gemellia, Casae Nigrae -> MADAS - link = { imp = 10062 imp = 10057 imp = 10060 imp = 10061 imp = 10063 imp = 10064 ck3 = 4605 } # Jamnah, Tabria, Turris Tamaleni, Aquae Tacapitanae, Ghidma, Faouar -> DOUZ - link = { imp = 10066 imp = 10065 ck3 = 4604 } # Talib, Rjim Maatoug -> SOUF + link = { autogenerated = yes imp = 3186 imp = 3204 ck3 = 4607 } # UbazaCastellum, Vatari -> MADILA + link = { autogenerated = yes imp = 3193 imp = 3188 ck3 = 4606 } # Cerva, Casae Nigrae -> MADAS + link = { autogenerated = yes imp = 10062 imp = 10057 imp = 10060 imp = 10061 imp = 10063 imp = 10064 ck3 = 4605 } # Jamnah, Tabria, Turris Tamaleni, Aquae Tacapitanae, Ghidma, Faouar -> DOUZ + link = { autogenerated = yes imp = 10066 imp = 10065 ck3 = 4604 } # Talib, Rjim Maatoug -> SOUF link = { autogenerated = yes imp = 3189 ck3 = 4602 } # AdSpeculum -> HAMMA link = { autogenerated = yes imp = 3191 ck3 = 4601 ck3 = 4603 } # CastraNeptitana -> TOZEUR, NAFTA - link = { imp = 3196 imp = 3190 imp = 3202 ck3 = 4600 } # CapsaIustiniana, CastellumThigensium, Silesva -> TAQYUS - link = { imp = 4137 ck3 = 460 } # Populi -> Varadzin + link = { autogenerated = yes imp = 3196 imp = 3190 ck3 = 4600 } # CapsaIustiniana, CastellumThigensium -> TAQYUS + link = { autogenerated = yes imp = 4137 imp = 4175 ck3 = 460 } # Populi, AquaeIasae -> Varadzin link = { autogenerated = yes imp = 2183 ck3 = 46 ck3 = 8749 } # GanganiaOccidentalis -> ENNIS, Kincora - link = { imp = 3201 ck3 = 4599 } # Tabira -> QAFSA + link = { autogenerated = yes imp = 3201 imp = 3195 ck3 = 4599 } # Tabira, Gemellia -> QAFSA link = { autogenerated = yes imp = 3199 imp = 3194 imp = 3197 imp = 3198 imp = 3210 ck3 = 4598 } # Nara, Thelepte, Sufetula, Cillium, Sufes -> AL-QASRAYN link = { autogenerated = yes imp = 3286 ck3 = 4597 } # Aeliae -> AL-ABBASIYA link = { autogenerated = yes imp = 3279 ck3 = 4596 } # VicusAugusti -> MANSURIYA @@ -3908,57 +3873,53 @@ link = { autogenerated = yes imp = 3252 imp = 1470 imp = 3244 imp = 3245 imp = 3253 imp = 3254 imp = 3255 ck3 = 4584 } # Carpis, Cossyra, Pupput, Neapolis, Nepheris, Aspis, Missua -> NABEUL link = { autogenerated = yes imp = 3257 imp = 3260 imp = 3261 imp = 3263 ck3 = 4583 } # Utica, ThuburbisMinor, Thimida, Thisika -> QARTAJANA link = { autogenerated = yes imp = 3256 imp = 3250 imp = 3259 ck3 = 4582 } # Carthago, Uthina, Inuca -> TUNIS - link = { imp = 3249 imp = 3251 ck3 = 4581 } # Ziqua, ThuburboMaius -> ZAGHWAN + link = { autogenerated = yes imp = 3249 imp = 3251 imp = 8145 ck3 = 4581 } # Ziqua, ThuburboMaius, Africa Impassable -> ZAGHWAN link = { autogenerated = yes imp = 3275 imp = 3243 imp = 3274 ck3 = 4580 } # Unizibbira, PheradiMaius, Mediccera -> SUSA - link = { imp = 4039 imp = 4175 ck3 = 458 } # Romula, AquaeIasae -> Istria + link = { autogenerated = yes imp = 4039 ck3 = 458 } # Romula -> Istria link = { autogenerated = yes imp = 3276 ck3 = 4579 } # Hadrametum -> MONASTIR link = { autogenerated = yes imp = 3277 imp = 3278 ck3 = 4578 } # LeptisMinor, Thapsus -> MAHDIYA - link = { imp = 3282 imp = 3280 imp = 3281 ck3 = 4577 } # Thysdrus, Iustinianopolis, Bararus -> SLAKTA + link = { autogenerated = yes imp = 3281 imp = 3280 imp = 3282 ck3 = 4577 } # Bararus, Iustinianopolis, Thysdrus -> SLAKTA link = { autogenerated = yes imp = 3200 ck3 = 4576 } # Oviscae -> EL-JEM link = { autogenerated = yes imp = 3285 imp = 3283 imp = 3284 imp = 3287 ck3 = 4575 } # Thaenae, Usula, Cercina, Taparura -> SFAX - link = { imp = 3289 imp = 3288 ck3 = 4574 } # Bennata, MacomadesMinores -> AL-HAMMA + link = { autogenerated = yes imp = 3289 imp = 3202 imp = 3288 ck3 = 4574 } # Bennata, Silesva, MacomadesMinores -> AL-HAMMA link = { autogenerated = yes imp = 10059 imp = 10056 imp = 3290 imp = 3291 ck3 = 4573 } # Arelliorum, Bezereos, Aves, Tacape -> QABIS - link = { imp = 10054 imp = 10052 imp = 10055 imp = 10048 imp = 10049 ck3 = 4572 } # Tisavar, Recheb, Tibubuci, Dekrlet, Jebil -> BIR AMIR + link = { autogenerated = yes imp = 10054 imp = 10052 imp = 10055 imp = 10048 imp = 10049 imp = 3292 ck3 = 4572 } # Tisavar, Recheb, Tibubuci, Dekrlet, Jebil, Desert -> BIR AMIR link = { autogenerated = yes imp = 3301 imp = 3300 imp = 3302 ck3 = 4568 } # Abrotonum, Locri, Zanazia -> SABRATHA - link = { imp = 10039 ck3 = 4559 } # Tabuinati -> DJADO - link = { imp = 10038 ck3 = 4567 } # Giosc -> FURSATA + link = { autogenerated = yes imp = 10038 imp = 10039 imp = 10044 ck3 = 4567 } # Giosc, Tabuinati, Praesidium -> FURSATA link = { autogenerated = yes imp = 3293 imp = 10051 ck3 = 4566 } # Gigthis, Augemmi -> BUGHRARA link = { autogenerated = yes imp = 3296 imp = 10058 imp = 3295 ck3 = 4565 } # Zitha, Naffatiyah, Meninge -> JARJIS - link = { imp = 10007 imp = 10005 imp = 10006 imp = 10008 imp = 10012 imp = 10013 imp = 10014 imp = 10015 imp = 10020 imp = 10029 imp = 10030 imp = 10031 imp = 10032 imp = 10033 imp = 10034 imp = 10036 imp = 3327 imp = 3329 imp = 3330 imp = 10016 imp = 10021 imp = 8072 imp = 10017 ck3 = 4564 } # Auxiqua, Gholaia, Zayden, Manfuchia, Faschia, Ghirza, Scedeua, Duraybikah, Shawi, Banat, Sdada, Khnafes, Bularkan, Lebr, Scemech, Ajdab, Thebunte, Annesel, Auxiu, Gharbya, Mizda, Desert, Tabaqah -> TININAI + link = { autogenerated = yes imp = 10007 imp = 10005 imp = 10006 imp = 10008 imp = 10012 imp = 10013 imp = 10014 imp = 10015 imp = 10020 imp = 10029 imp = 10030 imp = 10031 imp = 10032 imp = 10033 imp = 10034 imp = 10036 imp = 3327 imp = 3329 imp = 3330 imp = 10016 imp = 10021 imp = 10017 imp = 9987 imp = 10019 imp = 10018 ck3 = 4564 } # Auxiqua, Gholaia, Zayden, Manfuchia, Faschia, Ghirza, Scedeua, Duraybikah, Shawi, Banat, Sdada, Khnafes, Bularkan, Lebr, Scemech, Ajdab, Thebunte, Annesel, Auxiu, Gharbya, Mizda, Tabaqah, Ninah, Schiueref, Sherbia -> TININAI link = { autogenerated = yes imp = 3294 ck3 = 4562 } # Tipasa -> JERBA link = { autogenerated = yes imp = 3299 imp = 3297 imp = 3298 ck3 = 4561 } # Pisida, PuteaPallene, Zouchis -> ZUWARA link = { autogenerated = yes imp = 3303 imp = 10027 imp = 3304 imp = 3305 ck3 = 4557 } # Oea, Mesphe, Amarea, Gaphara -> TRIPOLIS link = { autogenerated = yes imp = 3306 imp = 10028 imp = 3324 ck3 = 4556 } # LeptisMagna, Subututtu, Kinypes -> LABDA link = { autogenerated = yes imp = 3325 imp = 10035 ck3 = 4555 } # Thubactis, Rimoniana -> MISURATA link = { autogenerated = yes imp = 3326 ck3 = 4554 } # Base -> TAWURGHA - link = { imp = 3337 imp = 10010 imp = 10011 imp = 3332 imp = 3333 imp = 3334 imp = 3335 imp = 3336 imp = 10009 ck3 = 4552 } # DigdidaSelorum, Qarinah, Majdubiyah, Dysopon, Euphranta, Iscina, Aulazon, AdPalmam, Nagdiyah -> SURT + link = { autogenerated = yes imp = 3337 imp = 10010 imp = 10011 imp = 3332 imp = 3333 imp = 3334 imp = 3335 imp = 3336 imp = 10009 ck3 = 4552 } # DigdidaSelorum, Qarinah, Majdubiyah, Dysopon, Euphranta, Iscina, Aulazon, AdPalmam, Nagdiyah -> SURT link = { autogenerated = yes imp = 3345 imp = 3342 imp = 3343 imp = 3344 ck3 = 4551 } # Noetu, Kainon, Comicianum, Serapeion -> AJADABIYA link = { autogenerated = yes imp = 3384 imp = 1556 imp = 1557 ck3 = 4549 } # Kul, Giaur, Chahar Taq -> SHIZ link = { autogenerated = yes imp = 1555 imp = 1554 ck3 = 4548 } # Adur Gushnasp, Ziwiye -> AR-RAN link = { autogenerated = yes imp = 3388 imp = 1523 ck3 = 4547 } # Ekkana, Phraaspa -> KHUNAJ - link = { autogenerated = yes imp = 3386 imp = 1515 imp = 1552 ck3 = 4546 } # Bilqa, Ganzak, Adjalu -> LEYLAN - link = { imp = 1521 imp = 1516 imp = 1522 imp = 5219 ck3 = 4545 } # Akra-rudh, Shah tepe, Godjer, IMPASSIBLE TERRAIN 219 -> MARAGHA - link = { autogenerated = yes imp = 1628 ck3 = 4543 } # Piri -> ARDABIL + link = { autogenerated = yes imp = 3386 imp = 1515 imp = 1516 imp = 1552 ck3 = 4546 } # Bilqa, Ganzak, Shah tepe, Adjalu -> LEYLAN + link = { autogenerated = yes imp = 1521 imp = 1522 ck3 = 4545 } # Akra-rudh, Godjer -> MARAGHA + link = { autogenerated = yes imp = 1626 imp = 1625 ck3 = 4544 } # Mishkinshahr, Kuh-i Bolagh -> SARAT link = { autogenerated = yes imp = 1629 imp = 5216 ck3 = 4542 } # Shorbulaq, IMPASSIBLE TERRAIN 216 -> UNAR - link = { autogenerated = yes imp = 1619 imp = 1622 ck3 = 4541 } # Dish, Seqindel -> DIZMAR - link = { autogenerated = yes imp = 1525 imp = 1624 ck3 = 4539 } # Gurqal'eh, Chaharla -> UJAN - link = { imp = 1565 imp = 1520 ck3 = 4538 } # Shahi Island, Bonab Qal'eh -> DIHNAKHIRJAN - link = { autogenerated = yes imp = 1527 imp = 1526 ck3 = 4537 } # Yanik tepe, T'awr?� -> TABRIZ - link = { autogenerated = yes imp = 1528 imp = 1539 imp = 5215 ck3 = 4536 } # Morounda, Gavur Qal'eh, IMPASSIBLE TERRAIN 215 -> MARAND - link = { autogenerated = yes imp = 1630 ck3 = 4534 ck3 = 4535 } # Langarkanan -> TALISH, APARSHAHR + link = { autogenerated = yes imp = 1621 imp = 1620 ck3 = 4540 } # Arvandj, Aharawan -> AHAR + link = { autogenerated = yes imp = 1520 ck3 = 4538 } # Bonab Qal'eh -> DIHNAKHIRJAN + link = { autogenerated = yes imp = 1528 ck3 = 4536 } # Morounda -> MARAND + link = { autogenerated = yes imp = 1632 imp = 1649 ck3 = 4535 } # Balanrot, Masalas -> APARSHAHR link = { autogenerated = yes imp = 5423 ck3 = 4533 } # Ahur -> NEBIT DAG link = { autogenerated = yes imp = 6812 ck3 = 4532 } # Kumdah -> YASHKAN link = { autogenerated = yes imp = 5427 imp = 5451 ck3 = 4531 } # Bakk, Shalak -> DEKCHA link = { autogenerated = yes imp = 6808 ck3 = 4530 } # Uzboia -> BURGUN link = { autogenerated = yes imp = 6807 imp = 6806 imp = 5392 ck3 = 4528 } # Talaykhan, Igdiqalah, Kurah -> KURTYSH - link = { autogenerated = yes imp = 5456 ck3 = 4527 } # Murna -> BALA ISKEM + link = { autogenerated = yes imp = 5456 imp = 5472 imp = 5474 ck3 = 4527 } # Murna, Kraz, Khrischatach -> BALA ISKEM link = { autogenerated = yes imp = 5452 ck3 = 4529 } # Oshin -> IGDY link = { autogenerated = yes imp = 5453 imp = 6809 ck3 = 4526 } # Zatra, Sariq -> KUGUNEK - link = { autogenerated = yes imp = 5454 imp = 5455 ck3 = 4525 } # Yatsha, Palimek -> ORTAKUYU - link = { autogenerated = yes imp = 4301 ck3 = 4516 ck3 = 4514 } # Nagarahara -> NAGARAHARA, KUNAR + link = { autogenerated = yes imp = 5454 imp = 5455 imp = 5475 ck3 = 4525 } # Yatsha, Palimek, Bela -> ORTAKUYU link = { autogenerated = yes imp = 4369 ck3 = 4513 ck3 = 4512 } # Gandava -> SIBI, SHAL link = { autogenerated = yes imp = 6540 imp = 6539 imp = 6571 ck3 = 4511 } # Cottabura, Musarna, Mastung -> MASTANG - link = { autogenerated = yes imp = 6613 ck3 = 4508 } # Hadda -> LAMGHAN + link = { autogenerated = yes imp = 6613 ck3 = 4508 ck3 = 4516 } # Hadda -> LAMGHAN, NAGARAHARA link = { autogenerated = yes imp = 6623 ck3 = 4507 ck3 = 4509 } # Tazora -> JALDAK, MAPAN link = { autogenerated = yes imp = 6624 ck3 = 4506 } # Liman -> MOQOR link = { autogenerated = yes imp = 6608 ck3 = 4504 } # Kubha -> KABUL @@ -3986,9 +3947,9 @@ link = { autogenerated = yes imp = 6536 imp = 6533 ck3 = 4476 } # Arbiti, Rhamna -> ARMABIL link = { autogenerated = yes imp = 6532 imp = 6526 ck3 = 4475 } # Arbis, Pagala -> QANBALI link = { autogenerated = yes imp = 6531 imp = 6524 imp = 6525 imp = 6620 ck3 = 4474 } # Cocala, Malana, Cabana, Bambacia -> KOKAHDAN - link = { autogenerated = yes imp = 6549 imp = 6550 ck3 = 4466 } # Parabeste, Ariaspe -> KHANNESIN + link = { autogenerated = yes imp = 6550 imp = 6549 ck3 = 4466 } # Ariaspe, Parabeste -> KHANNESIN link = { autogenerated = yes imp = 7259 imp = 7258 ck3 = 4462 } # Baraq*, Birim* -> NORTH KURDAR - link = { imp = 11505 imp = 11506 ck3 = 4461 } # Sokkul, Qo'yqirilgan -> MIZDAHQAN + link = { autogenerated = yes imp = 11505 ck3 = 4461 } # Sokkul -> MIZDAHQAN link = { autogenerated = yes imp = 7260 ck3 = 4459 } # Kupir* -> BARATIGIN link = { autogenerated = yes imp = 5483 imp = 5484 ck3 = 4458 } # Tubek, Cammei -> MADMINIYA link = { autogenerated = yes imp = 6803 ck3 = 4457 } # Gurganj -> JITH @@ -4041,7 +4002,7 @@ link = { autogenerated = yes imp = 6701 ck3 = 4382 } # Dushan -> Vashjird link = { autogenerated = yes imp = 6700 ck3 = 4381 } # Khona -> Shuman link = { autogenerated = yes imp = 6699 ck3 = 4380 } # Terkul -> Munk - link = { autogenerated = yes imp = 6695 ck3 = 4378 ck3 = 4379 } # Samti -> Pargar, Hulbuk + link = { autogenerated = yes imp = 6695 ck3 = 4379 } # Samti -> Hulbuk link = { autogenerated = yes imp = 6698 ck3 = 4377 } # Ikroni -> Livkand link = { autogenerated = yes imp = 6696 ck3 = 4376 } # Kokul -> Halavand link = { autogenerated = yes imp = 6691 ck3 = 4374 } # Aruktau -> Awzaj @@ -4049,19 +4010,18 @@ link = { autogenerated = yes imp = 6697 ck3 = 4371 ck3 = 4375 } # Kafir -> Darzanji, Qobadiyan link = { autogenerated = yes imp = 6687 ck3 = 4369 ck3 = 4370 } # Sina -> Chaghaniyan, Rigar link = { autogenerated = yes imp = 6690 ck3 = 4368 ck3 = 4373 } # Sangin -> Termez, Charmanjan - link = { autogenerated = yes imp = 6764 imp = 6769 ck3 = 4364 } # Miena, Pamir -> Alichur - link = { autogenerated = yes imp = 6765 ck3 = 4363 } # Kafirqala -> Shughnan - link = { autogenerated = yes imp = 6766 imp = 6767 ck3 = 4362 } # Yamchun, Urang -> Wakhan - link = { autogenerated = yes imp = 6770 ck3 = 4361 ck3 = 7965 ck3 = 2716 } # Toquzbolaq -> Dar-i-Tubbat, Badakhshan_TARIM, PERSIAN IMPASSABLE - link = { autogenerated = yes imp = 6762 ck3 = 4360 ck3 = 4359 } # Kaahka -> Ishkamish, Zaybak + link = { autogenerated = yes imp = 6769 imp = 6764 ck3 = 4364 } # Pamir, Miena -> Alichur + link = { autogenerated = yes imp = 6765 imp = 6763 ck3 = 4363 } # Kafirqala, Bulaq -> Shughnan + link = { autogenerated = yes imp = 6766 ck3 = 4362 } # Yamchun -> Wakhan + link = { autogenerated = yes imp = 6770 ck3 = 4361 ck3 = 4365 ck3 = 2702 ck3 = 2716 } # Toquzbolaq -> Dar-i-Tubbat, Murghab, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 6762 ck3 = 4360 ck3 = 4358 ck3 = 4359 } # Kaahka -> Ishkamish, Sanglich, Zaybak link = { autogenerated = yes imp = 6759 ck3 = 4354 ck3 = 4355 } # Ay Khanum -> Kishm, Badakhshan - link = { autogenerated = yes imp = 6694 ck3 = 4353 } # Shur -> Rustaq + link = { autogenerated = yes imp = 6694 ck3 = 4353 ck3 = 4378 } # Shur -> Rustaq, Pargar link = { autogenerated = yes imp = 6692 ck3 = 4352 } # Kum -> Mila link = { autogenerated = yes imp = 6693 ck3 = 4349 ck3 = 4350 } # Tamali -> Valvalij, Talekan link = { autogenerated = yes imp = 6648 ck3 = 4348 } # Tocharia -> Baghlan link = { autogenerated = yes imp = 6650 imp = 6627 ck3 = 4347 } # Cabolita, Aornos -> Andarab - link = { autogenerated = yes imp = 6625 ck3 = 4345 } # Capissa -> Panjhir - link = { autogenerated = yes imp = 6611 ck3 = 4344 ck3 = 4346 } # Alexandria Ad Caucasum -> Parwan, Jarbaya + link = { autogenerated = yes imp = 6625 ck3 = 4346 } # Capissa -> Jarbaya link = { autogenerated = yes imp = 6638 imp = 6651 imp = 6614 ck3 = 4343 } # Paros, Kalak, Bamyan -> Bamiyan link = { autogenerated = yes imp = 6649 ck3 = 4342 } # Battak -> Sakalkand link = { autogenerated = yes imp = 6681 imp = 6677 imp = 6680 ck3 = 4341 } # Qurgan, Denai, Qush -> Samanjan @@ -4113,7 +4073,7 @@ link = { autogenerated = yes imp = 6517 ck3 = 4270 } # Canasida -> Tiz link = { autogenerated = yes imp = 6516 ck3 = 4269 } # Troesus -> Ruhna link = { autogenerated = yes imp = 6579 ck3 = 4268 } # Abshi -> Bint - link = { imp = 6581 imp = 6515 ck3 = 4266 } # Canate, Ettuar -> Houn + link = { autogenerated = yes imp = 6581 imp = 6515 ck3 = 4266 } # Canate, Ettuar -> Houn link = { autogenerated = yes imp = 6514 ck3 = 4265 } # Madis -> Jask link = { autogenerated = yes imp = 6580 imp = 6512 ck3 = 4264 } # Salarus, Harmozeia -> Darhafan link = { autogenerated = yes imp = 967 ck3 = 4256 ck3 = 6013 } # Rostag Kavag -> Tustar, AZAM @@ -4133,8 +4093,8 @@ link = { autogenerated = yes imp = 6684 ck3 = 4236 ck3 = 4235 } # Haroba -> Kharad, Jiranj link = { autogenerated = yes imp = 6685 ck3 = 4234 } # Alan -> Sinj link = { autogenerated = yes imp = 6621 imp = 6645 imp = 6639 ck3 = 4233 } # Sangar, Tamazan, Myah -> Till - link = { autogenerated = yes imp = 6644 ck3 = 4226 } # Artusia -> Ahanjaran - link = { autogenerated = yes imp = 6559 ck3 = 4225 } # Artaconna -> Firuzkuh + link = { autogenerated = yes imp = 6644 ck3 = 4226 ck3 = 4224 } # Artusia -> Ahanjaran, Khasht + link = { autogenerated = yes imp = 6559 imp = 6643 ck3 = 4225 } # Artaconna, Sherak -> Firuzkuh link = { autogenerated = yes imp = 6665 ck3 = 4222 } # Iasonion -> Baghshur link = { autogenerated = yes imp = 6653 ck3 = 4221 } # Comiana -> Marv-ar-Rud link = { autogenerated = yes imp = 6667 ck3 = 4220 ck3 = 4223 } # Confluenta -> Panjdih, Dizah @@ -4144,7 +4104,7 @@ link = { autogenerated = yes imp = 6565 ck3 = 4216 ck3 = 4230 } # Qadis -> Karukh, Shurmin link = { autogenerated = yes imp = 6557 ck3 = 4215 } # Sariphiana -> Herat link = { autogenerated = yes imp = 6664 ck3 = 4214 } # Alexandria -> Jabal-al-Fidda - link = { autogenerated = yes imp = 6543 imp = 6545 imp = 7222 ck3 = 4210 } # Suphtha, Guriana, Cotac� -> Buzjan + link = { autogenerated = yes imp = 6543 imp = 6545 imp = 7222 ck3 = 4210 } # Suphtha, Guriana, Cotacê -> Buzjan link = { autogenerated = yes imp = 6556 ck3 = 4208 ck3 = 4212 } # Alexandria Ariorum -> Tayabad, Kusuy link = { autogenerated = yes imp = 6567 imp = 6568 imp = 6596 ck3 = 4205 } # Astasana, Parsia, Anar -> Adraskan link = { autogenerated = yes imp = 6647 ck3 = 4204 ck3 = 4206 } # Guleh -> Asfuzar, Khin @@ -4183,23 +4143,24 @@ link = { autogenerated = yes imp = 3944 ck3 = 4147 } # Extremadura -> Zatec link = { autogenerated = yes imp = 3812 ck3 = 4146 ck3 = 4149 } # Strevinta -> Primda, Prachen link = { autogenerated = yes imp = 3816 ck3 = 4145 } # Marcomannia -> Plzen - link = { imp = 3945 ck3 = 4142 ck3 = 4143 } # Sudetiana -> Loket, Stribro + link = { autogenerated = yes imp = 3945 ck3 = 4143 } # Sudetiana -> Stribro link = { autogenerated = yes imp = 4015 ck3 = 4140 ck3 = 4165 ck3 = 4160 } # Gothinia -> Vraclav, Olomouc, Chrudim link = { autogenerated = yes imp = 4009 imp = 3915 imp = 5144 imp = 5145 ck3 = 4139 } # Galaegia, Meliodunum, IMPASSIBLE TERRAIN 144, IMPASSIBLE TERRAIN 145 -> Jaromer link = { autogenerated = yes imp = 4012 imp = 4011 ck3 = 4137 } # Viadria, Cognia -> Dvur-Chvojno link = { autogenerated = yes imp = 3941 ck3 = 4136 } # Vandalicia -> Boleslav link = { autogenerated = yes imp = 3980 ck3 = 4133 ck3 = 4135 ck3 = 4134 } # AdFines -> Decin, Zitava, Bezdez - link = { imp = 3913 ck3 = 4132 ck3 = 4141 } # Marobudum -> Kadan, Sedlec + link = { autogenerated = yes imp = 3913 ck3 = 4132 ck3 = 4142 ck3 = 4141 } # Marobudum -> Kadan, Loket, Sedlec link = { autogenerated = yes imp = 3912 ck3 = 4130 ck3 = 4131 } # Redintuinum -> Slany, Bilina link = { autogenerated = yes imp = 3911 ck3 = 4129 } # Nomisterium -> Litomerice link = { autogenerated = yes imp = 3942 ck3 = 4128 } # Hegetmatia -> Melnik link = { autogenerated = yes imp = 3937 ck3 = 4127 ck3 = 4158 } # Baemia -> Beroun, Milevsko - link = { imp = 3943 ck3 = 4125 ck3 = 4126 } # Butonia -> Praha, Vysehrad + link = { autogenerated = yes imp = 3943 ck3 = 4125 ck3 = 4126 } # Butonia -> Praha, Vysehrad + link = { autogenerated = yes imp = 4949 ck3 = 4120 } # Kaupirrish -> Abraj link = { autogenerated = yes imp = 3406 imp = 4799 ck3 = 4118 } # Matahr, Persepolis -> Istakhr link = { autogenerated = yes imp = 4978 ck3 = 4117 } # Kuh-e-Bul -> Iqlid link = { autogenerated = yes imp = 4963 imp = 1597 ck3 = 4116 } # Nihavand, Harsin -> Nihawand link = { autogenerated = yes imp = 6954 ck3 = 4111 } # Qom -> Sawa - link = { autogenerated = yes imp = 3391 imp = 4983 ck3 = 4110 } # Navish, Ushke -> Aba-Qomi + link = { autogenerated = yes imp = 4983 imp = 3391 ck3 = 4110 } # Ushke, Navish -> Aba-Qomi link = { autogenerated = yes imp = 4975 ck3 = 4109 } # Goyman -> Qom link = { autogenerated = yes imp = 3392 imp = 3398 ck3 = 4108 } # Nassar, Neshar -> Wazwan link = { autogenerated = yes imp = 4974 ck3 = 4107 } # Gurbayigan -> Gulpaygan @@ -4224,7 +4185,7 @@ link = { autogenerated = yes imp = 3474 ck3 = 4073 ck3 = 4074 } # Gazman -> Behabad, Kuhbayan link = { autogenerated = yes imp = 5446 ck3 = 4070 } # UNINHABITABLE -> Khur link = { autogenerated = yes imp = 6601 imp = 6598 ck3 = 4066 } # Gonabad, Darium -> Junabid - link = { imp = 6603 ck3 = 4065 ck3 = 4202 } # Mila -> Barandud, Shahrakht + link = { autogenerated = yes imp = 6603 ck3 = 4065 ck3 = 4202 ck3 = 4203 } # Mila -> Barandud, Shahrakht, Abiz link = { autogenerated = yes imp = 6599 imp = 6597 ck3 = 4063 } # Biriand, Mazar -> Birjand link = { autogenerated = yes imp = 6600 ck3 = 4062 } # Shahr -> Qain link = { autogenerated = yes imp = 5439 imp = 6501 imp = 6502 imp = 6505 ck3 = 4057 } # UNINHABITABLE, Chupanan, Khur, Bazyab -> Jarmaq @@ -4242,8 +4203,8 @@ link = { autogenerated = yes imp = 6657 imp = 5398 ck3 = 4041 } # Nisaia, Salos -> Shahrastan link = { autogenerated = yes imp = 6656 ck3 = 4040 ck3 = 4038 } # Asaak -> Dawin, Jarmaqan link = { autogenerated = yes imp = 6729 imp = 6728 ck3 = 4039 } # Dasht, Kilaleh -> Samaiqan - link = { imp = 6726 imp = 5391 ck3 = 4037 } # Mansur, Kalana -> Hesare Taq - link = { autogenerated = yes imp = 6810 ck3 = 4036 } # Sild -> Farava + link = { autogenerated = yes imp = 6726 ck3 = 4037 } # Mansur -> Hesare Taq + link = { autogenerated = yes imp = 6810 imp = 5391 ck3 = 4036 } # Sild, Kalana -> Farava link = { autogenerated = yes imp = 5390 imp = 5422 ck3 = 4035 } # Acasta, Tenetis -> Oboy link = { autogenerated = yes imp = 6776 imp = 6725 ck3 = 4033 } # Dihistan, Akhur -> Dihistan link = { autogenerated = yes imp = 3436 ck3 = 4031 } # Abaskun -> Abaskun @@ -4251,7 +4212,7 @@ link = { autogenerated = yes imp = 3438 imp = 3435 imp = 3437 imp = 5237 ck3 = 4028 } # Gurgan, Zadrakarta, Kabudan, IMPASSIBLE TERRAIN 237 -> Astarabad link = { autogenerated = yes imp = 3457 imp = 3439 imp = 3456 imp = 4995 ck3 = 4026 } # Qehva*, Qumis, Tiras*, Komish -> Damghan link = { autogenerated = yes imp = 3441 imp = 3445 imp = 3449 ck3 = 4023 } # Argiyan, Sangast, Shafia -> Isfarain - link = { imp = 3440 ck3 = 4022 ck3 = 4025 ck3 = 4027 } # Bistam -> Jajarm, Bistum, Gerdkuh + link = { autogenerated = yes imp = 3440 ck3 = 4022 ck3 = 4025 } # Bistam -> Jajarm, Bistum link = { autogenerated = yes imp = 3469 imp = 3468 ck3 = 4021 } # Parvand, Deraza -> Mazinan link = { autogenerated = yes imp = 3444 imp = 5387 ck3 = 4020 } # Vishpauzatis, IP 388 -> Sabzavar link = { autogenerated = yes imp = 3463 imp = 3462 imp = 3465 imp = 3467 ck3 = 4019 } # Doruneh, Shalakeh, Kashmar, Kalaveh -> Keshmar @@ -4266,8 +4227,7 @@ link = { autogenerated = yes imp = 7226 ck3 = 4007 } # Kaahka -> Sarakhs link = { autogenerated = yes imp = 4986 ck3 = 4004 } # Parachatroas -> Lahij link = { autogenerated = yes imp = 1524 imp = 3387 ck3 = 4003 } # Qara Sheshen, Mediana -> Kursara - link = { autogenerated = yes imp = 1627 imp = 1593 imp = 3390 ck3 = 4002 } # Ardabil, Miyana, Farrab -> Khalkhal - link = { autogenerated = yes imp = 4985 ck3 = 4000 } # Kyropolis -> Gilan + link = { autogenerated = yes imp = 4985 ck3 = 4000 ck3 = 4534 } # Kyropolis -> Gilan, TALISH link = { autogenerated = yes imp = 7135 ck3 = 3999 } # Atavi -> Umerkote link = { autogenerated = yes imp = 7141 imp = 7176 ck3 = 3996 } # Komana, Bilagada* -> Ranipur link = { autogenerated = yes imp = 7166 ck3 = 3995 ck3 = 1249 } # Vinitapura -> Vinitapura, Sambalpur @@ -4290,6 +4250,7 @@ link = { autogenerated = yes imp = 6853 imp = 6826 imp = 6851 ck3 = 3971 } # Gallita, Andhau, Daria -> Karoonjar link = { autogenerated = yes imp = 4474 imp = 7470 ck3 = 3964 } # Suktimati, Mahoba* -> Umri link = { autogenerated = yes imp = 7321 imp = 5363 ck3 = 3963 } # Bharhut, IP 364 -> Bhatta + link = { autogenerated = yes imp = 4468 imp = 5361 ck3 = 3962 } # Nachna-Kuthara, IP 362 -> Khajuraho link = { autogenerated = yes imp = 7409 ck3 = 3961 } # Kalapriya -> Rath link = { autogenerated = yes imp = 4466 ck3 = 3960 } # Khoh -> Chitrakuta link = { autogenerated = yes imp = 4434 ck3 = 3959 } # Sotthavati -> Ajaigarh @@ -4302,12 +4263,12 @@ link = { autogenerated = yes imp = 4500 ck3 = 3944 } # Hargita -> Sepsiszentgyorgy link = { autogenerated = yes imp = 4294 ck3 = 3943 ck3 = 3945 } # Angustia -> Balvanyos, Kovaszna link = { autogenerated = yes imp = 4293 ck3 = 3942 } # Ramidava -> Brasso - link = { autogenerated = yes imp = 4292 ck3 = 3941 } # Comidava -> Torcsvar + link = { autogenerated = yes imp = 4292 imp = 5113 ck3 = 3941 } # Comidava, IMPASSIBLE TERRAIN 113 -> Torcsvar link = { autogenerated = yes imp = 4281 ck3 = 3940 } # Stenarum -> Fogaras link = { autogenerated = yes imp = 4299 imp = 4298 ck3 = 3939 } # Deva, Media -> Szaszkezd link = { autogenerated = yes imp = 4286 ck3 = 3938 } # Blandiana -> Alvinc link = { autogenerated = yes imp = 4287 imp = 4295 ck3 = 3937 } # Decidava, Cedonia -> Nagyszeben - link = { autogenerated = yes imp = 4297 imp = 4296 ck3 = 3935 } # Salinae, Zidava -> Kukullovar + link = { autogenerated = yes imp = 4296 imp = 4297 ck3 = 3935 } # Zidava, Salinae -> Kukullovar link = { autogenerated = yes imp = 3927 ck3 = 3934 } # Celamantia -> Somorja link = { autogenerated = yes imp = 4285 imp = 4288 ck3 = 3933 } # Petris, Micia -> Deva link = { autogenerated = yes imp = 4282 imp = 4283 ck3 = 3932 } # Sarmizegetusa, Iscronia -> Harszoc @@ -4319,9 +4280,9 @@ link = { autogenerated = yes imp = 4505 ck3 = 3924 } # Potaissa -> Torda link = { autogenerated = yes imp = 4907 ck3 = 3923 } # Vidava* -> Laposbanya link = { autogenerated = yes imp = 4507 imp = 4504 ck3 = 3922 } # Arcobara, Brancona -> Szek - link = { autogenerated = yes imp = 4509 imp = 4508 ck3 = 3921 } # Porolissum, Samum -> Des + link = { autogenerated = yes imp = 4508 imp = 4509 ck3 = 3921 } # Samum, Porolissum -> Des link = { autogenerated = yes imp = 4906 ck3 = 3920 ck3 = 3915 } # Petrodava -> Radna, Borsa - link = { autogenerated = yes imp = 4910 ck3 = 3919 ck3 = 3946 ck3 = 5035 ck3 = 3927 } # Attidava* -> Beszterce, Gyergyoszentmiklos, Vatra Dornei, Szaszregen + link = { autogenerated = yes imp = 4910 ck3 = 3919 ck3 = 3946 ck3 = 5035 ck3 = 3927 ck3 = 5036 } # Attidava* -> Beszterce, Gyergyoszentmiklos, Vatra Dornei, Szaszregen, Campulung Moldovenesc link = { autogenerated = yes imp = 4905 ck3 = 3914 ck3 = 3917 } # Patridava -> Tecso, Huszt link = { autogenerated = yes imp = 4859 ck3 = 3910 ck3 = 3947 } # Metanastiana -> Kraszna, Elesd link = { autogenerated = yes imp = 4882 ck3 = 3909 ck3 = 3911 } # Olate* -> Szilagy, Tasnad @@ -4332,7 +4293,6 @@ link = { autogenerated = yes imp = 4836 ck3 = 3903 } # Ziridava -> Zarand link = { autogenerated = yes imp = 4851 imp = 4861 ck3 = 3902 } # Crisia, Statuam -> Zolonta link = { autogenerated = yes imp = 4860 ck3 = 3901 ck3 = 520 } # Quare -> Belenyes, Bihar - link = { autogenerated = yes imp = 4858 ck3 = 3900 } # Metanastia -> Debrecen link = { autogenerated = yes imp = 2189 ck3 = 39 } # CoriondiaSeptentrionalis -> FERNS link = { autogenerated = yes imp = 4881 ck3 = 3899 } # Iconeia* -> Gyozeg link = { autogenerated = yes imp = 4886 ck3 = 3896 } # Obutora* -> Varanno @@ -4351,16 +4311,17 @@ link = { autogenerated = yes imp = 4831 ck3 = 3878 } # Ad Sextum -> Pancsova link = { autogenerated = yes imp = 4826 ck3 = 3877 } # Tricomium -> Kevevar link = { autogenerated = yes imp = 4878 ck3 = 3876 ck3 = 3978 ck3 = 538 } # Aborisia* -> Kassa, Torna, Abauj + link = { autogenerated = yes imp = 4858 ck3 = 3874 ck3 = 3900 } # Metanastia -> Svarvas, Debrecen link = { autogenerated = yes imp = 4856 ck3 = 3873 ck3 = 3875 } # Crisiana -> Bekes, Oroshaza link = { autogenerated = yes imp = 4835 ck3 = 3872 } # Albocensia -> Szeged link = { autogenerated = yes imp = 4876 ck3 = 3871 } # Obatis* -> Miskolc link = { autogenerated = yes imp = 4853 ck3 = 3869 ck3 = 3948 ck3 = 523 } # Anartia -> Gyongyospata, Eger, Hewes - link = { autogenerated = yes imp = 4857 ck3 = 3867 ck3 = 3874 } # Tisia -> Tur, Svarvas + link = { autogenerated = yes imp = 4857 ck3 = 3867 } # Tisia -> Tur link = { autogenerated = yes imp = 4848 ck3 = 3866 } # Triticum -> Kiskunhalas link = { autogenerated = yes imp = 4850 imp = 4847 ck3 = 3865 } # Iazygiana, Partiskon -> Csongrad link = { autogenerated = yes imp = 4846 ck3 = 3864 } # Tibiscua -> Zenta link = { autogenerated = yes imp = 4845 imp = 4844 ck3 = 3863 } # Agria, Florentia -> Bodrog - link = { autogenerated = yes imp = 4888 ck3 = 3862 ck3 = 533 ck3 = 3861 ck3 = 718 } # Dolum* -> Locse, Saris, Kesmark, HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 4888 ck3 = 3862 ck3 = 533 ck3 = 3861 } # Dolum* -> Locse, Saris, Kesmark link = { autogenerated = yes imp = 4889 ck3 = 3860 ck3 = 3888 } # Tantonum* -> Barfta, Toporo link = { autogenerated = yes imp = 4875 ck3 = 3859 ck3 = 3870 ck3 = 3979 ck3 = 524 ck3 = 3858 } # Antia* -> Rimaszombat, Borsod, Szendro, Gemer, Murany link = { autogenerated = yes imp = 4873 ck3 = 3856 ck3 = 3857 } # Collata* -> Zolyom, Breznobanya @@ -4379,9 +4340,10 @@ link = { autogenerated = yes imp = 4173 ck3 = 3837 } # Sonista -> Csurgo link = { autogenerated = yes imp = 4166 imp = 4167 ck3 = 3836 } # Iovia, Limusa -> Kaposvar link = { autogenerated = yes imp = 4163 imp = 4165 ck3 = 3835 } # Tricciana, Silicenis -> Somogyvar - link = { imp = 3924 imp = 3925 ck3 = 3834 } # Rhacatia, Felicia -> Sasvar + link = { autogenerated = yes imp = 3924 ck3 = 3834 } # Rhacatia -> Sasvar link = { autogenerated = yes imp = 4871 ck3 = 3833 } # Bekum* -> Bajmoc - link = { imp = 4869 ck3 = 3831 ck3 = 3832 } # Marrica* -> Nyitra, Pecsen + link = { autogenerated = yes imp = 3925 ck3 = 3832 } # Felicia -> Pecsen + link = { autogenerated = yes imp = 4869 ck3 = 3831 } # Marrica* -> Nyitra link = { autogenerated = yes imp = 4842 ck3 = 3830 } # Acumincum -> Titel link = { autogenerated = yes imp = 4140 ck3 = 3829 } # Salia -> Letenye link = { autogenerated = yes imp = 4132 ck3 = 3828 } # Volgum -> Egerszeg @@ -4394,10 +4356,10 @@ link = { autogenerated = yes imp = 4143 ck3 = 3821 ck3 = 3119 } # Confluenta -> Kormend, FURSTENFELD link = { autogenerated = yes imp = 4139 ck3 = 3820 } # Mestrianis -> Vasvar link = { autogenerated = yes imp = 4141 ck3 = 3819 } # Savaria -> Koszeg - link = { autogenerated = yes imp = 4146 ck3 = 3818 } # Mursella -> Kapuvar - link = { autogenerated = yes imp = 4144 imp = 4142 imp = 4145 ck3 = 3817 } # Scarbantia, Bassiana, Muteno -> Sopron + link = { autogenerated = yes imp = 4146 imp = 4142 ck3 = 3818 } # Mursella, Bassiana -> Kapuvar + link = { autogenerated = yes imp = 4144 imp = 4145 ck3 = 3817 } # Scarbantia, Muteno -> Sopron link = { autogenerated = yes imp = 3919 ck3 = 3815 ck3 = 3816 } # Anduetium -> Poszony, Szomolany - link = { autogenerated = yes imp = 4870 ck3 = 3812 ck3 = 3814 ck3 = 3854 ck3 = 3855 ck3 = 4898 ck3 = 642 } # Maronis* -> Puho, Turoc, Liptoujvar, Nemetlipcse, HUNGARIAN-MORAVIAN MOUNTAINS, HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 4870 ck3 = 3812 ck3 = 3814 ck3 = 3854 ck3 = 3855 ck3 = 642 } # Maronis* -> Puho, Turoc, Liptoujvar, Nemetlipcse, HUNGARIAN-MORAVIAN MOUNTAINS link = { autogenerated = yes imp = 4866 ck3 = 3811 ck3 = 8999 ck3 = 4159 ck3 = 3952 } # Laugaricio -> Trenscen, Veseli, Spytihnev, EASTERN EUROPE IMPASSABLE TERRAIN 2 link = { autogenerated = yes imp = 4155 ck3 = 3809 } # Brigetio -> Komarom link = { autogenerated = yes imp = 4156 ck3 = 3808 } # Crumerum -> Esztergom @@ -4416,9 +4378,9 @@ link = { autogenerated = yes imp = 398 ck3 = 3790 } # Nea Halos -> Halmyros link = { autogenerated = yes imp = 390 ck3 = 3789 } # Pherai -> Velestino link = { autogenerated = yes imp = 404 imp = 388 imp = 8023 imp = 5071 ck3 = 3788 } # Olooson, Gonnoi, Tempe Pass, IMPASSIBLE TERRAIN 071 -> Elasson - link = { imp = 6399 imp = 380 imp = 428 ck3 = 3786 } # Pydna, Dion, Methone -> Platamon - link = { imp = 400 imp = 5072 ck3 = 3785 } # Elimia, IMPASSIBLE TERRAIN 072 -> Kalyvia - link = { imp = 381 imp = 382 ck3 = 3784 } # Beroia, Edessa -> Veria + link = { autogenerated = yes imp = 6399 imp = 380 imp = 428 imp = 8025 ck3 = 3786 } # Pydna, Dion, Methone, Petra Pass -> Platamon + link = { autogenerated = yes imp = 400 ck3 = 3785 ck3 = 3795 } # Elimia -> Kalyvia, Grevena + link = { autogenerated = yes imp = 381 imp = 382 imp = 5072 ck3 = 3784 } # Beroia, Edessa, IMPASSIBLE TERRAIN 072 -> Veria link = { autogenerated = yes imp = 383 ck3 = 3783 } # Europos -> Voden link = { autogenerated = yes imp = 379 ck3 = 3782 } # Pella -> Sthlanitza link = { autogenerated = yes imp = 371 ck3 = 3780 } # Euporia -> Mavrouda @@ -4434,6 +4396,7 @@ link = { autogenerated = yes imp = 356 ck3 = 3769 } # Thasos -> Thasos link = { autogenerated = yes imp = 357 ck3 = 3768 } # Sale -> Traianopolis link = { autogenerated = yes imp = 363 ck3 = 3767 } # Neapolis -> Xanthia + link = { autogenerated = yes imp = 354 ck3 = 3766 } # Ainos -> Ainos link = { autogenerated = yes imp = 353 ck3 = 3765 } # Kypsela -> Kypsela link = { autogenerated = yes imp = 352 ck3 = 3763 } # Ornoi -> Chariopolis link = { autogenerated = yes imp = 346 ck3 = 3762 } # Perinthos -> Herakleia Perinthos @@ -4449,7 +4412,7 @@ link = { autogenerated = yes imp = 258 imp = 259 ck3 = 3751 } # Antigoneia, Assos -> Alexandria Troas link = { autogenerated = yes imp = 260 imp = 257 ck3 = 3750 } # Kebren, Ilium -> Ilion link = { autogenerated = yes imp = 256 ck3 = 3749 } # Lampsakos -> Lampsakos - link = { imp = 254 imp = 255 ck3 = 3748 } # Zeleia, Parium -> Pagaea + link = { autogenerated = yes imp = 255 imp = 254 ck3 = 3748 } # Parium, Zeleia -> Pagaea link = { autogenerated = yes imp = 251 imp = 248 ck3 = 3747 } # Miletopolis, Myrleia -> Lopadion link = { autogenerated = yes imp = 359 ck3 = 3746 } # Olous -> Ierapetra link = { autogenerated = yes imp = 344 imp = 355 ck3 = 3745 } # Itanos, Hierapytna -> Agios Nikolaos @@ -4475,13 +4438,13 @@ link = { autogenerated = yes imp = 2213 ck3 = 3720 ck3 = 3718 } # Albanopolis -> Kruje, Mat link = { autogenerated = yes imp = 422 ck3 = 3717 } # Apollonia -> Savra link = { autogenerated = yes imp = 3192 imp = 474 ck3 = 3715 } # Byllis, Omphalion -> Argyrokastron - link = { autogenerated = yes imp = 455 ck3 = 3713 ck3 = 3520 } # Dimalion -> Antipatreia, Valamara + link = { autogenerated = yes imp = 455 imp = 1445 ck3 = 3713 } # Dimalion, Antipatreia -> Antipatreia link = { autogenerated = yes imp = 467 ck3 = 3711 ck3 = 3712 ck3 = 1041 } # Orikos -> Avlonas, Himara, BALKAN MOUNTAINS link = { autogenerated = yes imp = 470 ck3 = 3710 } # Korkyra -> Corfu link = { autogenerated = yes imp = 419 ck3 = 3709 } # Torone -> Grava link = { autogenerated = yes imp = 425 ck3 = 3708 ck3 = 3704 } # Dodona -> Ioannina, Vrestenitsa - link = { autogenerated = yes imp = 476 imp = 5068 ck3 = 3707 } # Helikranon, IMPASSIBLE TERRAIN 068 -> Vella - link = { imp = 3175 ck3 = 3702 ck3 = 3706 ck3 = 3795 } # Eratyra -> Metzovo, Konitsa, Grevena + link = { autogenerated = yes imp = 476 ck3 = 3707 } # Helikranon -> Vella + link = { autogenerated = yes imp = 3175 ck3 = 3702 ck3 = 3706 } # Eratyra -> Metzovo, Konitsa link = { autogenerated = yes imp = 463 ck3 = 3700 } # Thyrrheion -> Angelokastron link = { autogenerated = yes imp = 2188 ck3 = 37 ck3 = 38 } # CoriondiaMeridionalis -> WEXFORD, ENNISCORTHY link = { autogenerated = yes imp = 465 ck3 = 3699 } # Ambrakia -> Sivista @@ -4510,7 +4473,7 @@ link = { autogenerated = yes imp = 499 ck3 = 3672 } # Pautalia -> Pernik link = { autogenerated = yes imp = 477 ck3 = 3671 } # Serdica -> Meldi link = { autogenerated = yes imp = 4220 imp = 4217 imp = 5094 ck3 = 3670 } # Combustica, Ratiaria, IMPASSIBLE TERRAIN 094 -> Belogradchik - link = { autogenerated = yes imp = 4213 imp = 4202 imp = 4218 ck3 = 3669 } # Romuliana, Dasminium, Martis -> Petrus + link = { autogenerated = yes imp = 4213 imp = 4218 ck3 = 3669 } # Romuliana, Martis -> Petrus link = { autogenerated = yes imp = 4212 ck3 = 3668 } # Bao -> Zajecar link = { autogenerated = yes imp = 4209 imp = 4214 ck3 = 3667 } # Egeta, Clevora -> Kladovo link = { autogenerated = yes imp = 4204 ck3 = 3666 } # Idimum -> Ravno @@ -4518,30 +4481,30 @@ link = { autogenerated = yes imp = 4200 imp = 4201 ck3 = 3664 } # Viminacium, Municipium -> Branicevo link = { autogenerated = yes imp = 4219 ck3 = 3661 } # Timacum -> Svrljig link = { autogenerated = yes imp = 4098 imp = 5093 ck3 = 3660 } # Ulpiana, IMPASSIBLE TERRAIN 093 -> Morava - link = { autogenerated = yes imp = 4114 imp = 4110 imp = 5092 ck3 = 3657 } # AdFines, Tauresium, IMPASSIBLE TERRAIN 092 -> Glubocica + link = { autogenerated = yes imp = 4114 imp = 4110 ck3 = 3657 } # AdFines, Tauresium -> Glubocica link = { autogenerated = yes imp = 4117 ck3 = 3656 } # Pautalia -> Velbazhd link = { autogenerated = yes imp = 4152 imp = 5097 ck3 = 3655 } # Tranupara, IMPASSIBLE TERRAIN 097 -> Kratovo link = { autogenerated = yes imp = 4153 imp = 5099 ck3 = 3653 } # Paroikopolis, IMPASSIBLE TERRAIN 099 -> Melnik link = { autogenerated = yes imp = 497 ck3 = 3770 ck3 = 3649 } # Sintia -> Siderokastron, Maleshevo - link = { autogenerated = yes imp = 4302 imp = 4303 imp = 5098 ck3 = 3650 } # Doberos, Astraia, IMPASSIBLE TERRAIN 098 -> Strumica - link = { autogenerated = yes imp = 4305 imp = 4304 ck3 = 3648 } # Bylazora, Bargala -> Shtip + link = { autogenerated = yes imp = 397 ck3 = 3651 } # Stobi -> Prosek + link = { autogenerated = yes imp = 4302 imp = 4303 imp = 4304 imp = 5098 ck3 = 3650 } # Doberos, Astraia, Bargala, IMPASSIBLE TERRAIN 098 -> Strumica + link = { autogenerated = yes imp = 4305 ck3 = 3648 } # Bylazora -> Shtip link = { autogenerated = yes imp = 405 imp = 393 ck3 = 3647 } # Stuberra, Pelagonia -> Prilep link = { autogenerated = yes imp = 4096 ck3 = 3643 ck3 = 3644 ck3 = 3645 } # Scupi -> Skopje, Tetovo, Veles link = { autogenerated = yes imp = 4108 ck3 = 3642 } # Vizinia -> Zegligovo - link = { autogenerated = yes imp = 3356 ck3 = 3641 } # Beue -> Goritsa - link = { autogenerated = yes imp = 408 imp = 5073 ck3 = 3640 } # Arnisa, IMPASSIBLE TERRAIN 073 -> Kastoria + link = { autogenerated = yes imp = 3356 imp = 5068 ck3 = 3641 } # Beue, IMPASSIBLE TERRAIN 068 -> Goritsa link = { autogenerated = yes imp = 3125 imp = 5075 ck3 = 3639 } # Keletron, IMPASSIBLE TERRAIN 075 -> Devol link = { autogenerated = yes imp = 411 ck3 = 3638 } # Herakleia -> Bitola - link = { autogenerated = yes imp = 484 ck3 = 3636 } # Beroe -> Kran + link = { autogenerated = yes imp = 478 ck3 = 3636 ck3 = 3637 } # Seuthopolis -> Kran, Kopsis link = { autogenerated = yes imp = 479 ck3 = 3635 } # Kabyle -> Sliven link = { autogenerated = yes imp = 491 ck3 = 3633 } # Bourdepa -> Janitsa - link = { autogenerated = yes imp = 4309 imp = 486 ck3 = 3632 } # Pizus, Diocletianopolis -> Beroe + link = { autogenerated = yes imp = 4309 imp = 484 imp = 486 ck3 = 3632 } # Pizus, Beroe, Diocletianopolis -> Beroe link = { autogenerated = yes imp = 496 ck3 = 3631 } # Paleokastro -> Dbilin link = { autogenerated = yes imp = 4312 ck3 = 3630 } # Goliamoto -> Potamukastel link = { autogenerated = yes imp = 343 ck3 = 3629 ck3 = 3758 } # Aulaiouteichos -> Sozopol, Salmydessus link = { autogenerated = yes imp = 481 imp = 482 ck3 = 3628 } # Anchialus, Apollonia Pontica -> Burgas link = { autogenerated = yes imp = 490 ck3 = 3626 ck3 = 3627 } # Plotinoupolis -> Mezeshka, Didymoteichon - link = { autogenerated = yes imp = 4311 ck3 = 3624 } # Parambole -> Stanimaka + link = { autogenerated = yes imp = 4311 imp = 485 ck3 = 3624 } # Parambole, Philippopolis -> Stanimaka link = { autogenerated = yes imp = 494 ck3 = 3621 } # Oraion -> Ustra link = { autogenerated = yes imp = 492 ck3 = 3619 } # Fotinovo -> Lyutitsa link = { autogenerated = yes imp = 414 ck3 = 3615 ck3 = 3617 } # Nicopolis ad Nestum -> Dospat, Nevrokop @@ -4554,22 +4517,22 @@ link = { autogenerated = yes imp = 4124 ck3 = 3606 } # AdDrinum -> Krupanj link = { autogenerated = yes imp = 4196 ck3 = 3605 } # Siluvia -> Debrc link = { autogenerated = yes imp = 4194 ck3 = 3604 } # Gensis -> Macva - link = { imp = 4203 imp = 4120 ck3 = 3603 } # HorreumMargi, PraesidiumPompei -> Kragujevac + link = { autogenerated = yes imp = 4203 ck3 = 3603 } # HorreumMargi -> Kragujevac link = { autogenerated = yes imp = 4206 ck3 = 3602 } # Banneia -> Rudnik link = { autogenerated = yes imp = 4205 imp = 4199 ck3 = 3601 } # AureusMons, Margum -> Smederevo link = { autogenerated = yes imp = 4111 ck3 = 3600 } # Hammeum -> Prokuplje - link = { imp = 4118 ck3 = 3598 } # Gramrianae -> Krusevac + link = { autogenerated = yes imp = 4118 imp = 4202 imp = 5092 ck3 = 3598 } # Gramrianae, Dasminium, IMPASSIBLE TERRAIN 092 -> Krusevac link = { autogenerated = yes imp = 4095 ck3 = 3597 ck3 = 3722 } # Theranda -> Prizren, Kukes link = { autogenerated = yes imp = 4099 ck3 = 3596 } # Vicianum -> Pristina link = { autogenerated = yes imp = 4093 imp = 4094 ck3 = 3595 } # Siparantum, Gabuleum -> Pec link = { autogenerated = yes imp = 4100 ck3 = 3594 } # Dardanorum -> Zvecan link = { autogenerated = yes imp = 4103 ck3 = 3591 ck3 = 3584 ck3 = 3592 } # Sevastum -> Sjenica, Prijepolje, Budlimlje link = { autogenerated = yes imp = 4106 imp = 5080 ck3 = 3590 } # Risetia, IMPASSIBLE TERRAIN 080 -> Rujno - link = { imp = 12767 ck3 = 359 ck3 = 361 ck3 = 362 } # Swestar -> DILSBO, SEILANGER, HAFRA - link = { imp = 4121 ck3 = 3588 ck3 = 3589 } # Gradus -> Zica, Arilje + link = { autogenerated = yes imp = 12767 ck3 = 359 ck3 = 361 ck3 = 362 ck3 = 435 } # Swestar -> DILSBO, SEILANGER, HAFRA, OSTAVALL + link = { autogenerated = yes imp = 4121 ck3 = 3589 ck3 = 3587 } # Gradus -> Arilje, Gradac + link = { autogenerated = yes imp = 4120 ck3 = 3588 ck3 = 3599 } # PraesidiumPompei -> Zica, Koznik link = { autogenerated = yes imp = 4127 ck3 = 3581 } # Malvesia -> Visegrad link = { autogenerated = yes imp = 1144 ck3 = 3580 ck3 = 3578 } # Scodra -> Skadar, Drivast - link = { autogenerated = yes imp = 12765 ck3 = 358 ck3 = 298 } # Marir -> FARILA, SVEG link = { autogenerated = yes imp = 4102 ck3 = 3577 ck3 = 3586 } # Anderva -> Moraca, Brskovo link = { autogenerated = yes imp = 2336 ck3 = 3576 ck3 = 3719 } # Lissus -> Ulcinj, Lezhe link = { autogenerated = yes imp = 4090 ck3 = 3575 } # Bouthoe -> Antivari @@ -4581,22 +4544,22 @@ link = { autogenerated = yes imp = 4082 ck3 = 3569 } # Narona -> Ston link = { autogenerated = yes imp = 4107 ck3 = 3567 ck3 = 3568 } # Haedum -> Vhrbosna, Rogatica link = { autogenerated = yes imp = 4125 ck3 = 3566 } # Domavia -> Srebrenica - link = { imp = 4086 ck3 = 3563 } # Pardua -> Kljuc + link = { autogenerated = yes imp = 4086 ck3 = 3563 ck3 = 3561 } # Pardua -> Kljuc, Nevesinje link = { autogenerated = yes imp = 4083 ck3 = 3562 ck3 = 466 } # Diluntum -> Drijeva, Zachlumia - link = { imp = 4104 ck3 = 3560 ck3 = 3561 } # Leusinium -> Gacko, Nevesinje - link = { autogenerated = yes imp = 4080 ck3 = 3557 } # AquaeSulphurae -> Konjic + link = { autogenerated = yes imp = 4104 imp = 5082 ck3 = 3560 } # Leusinium, IMPASSIBLE TERRAIN 082 -> Gacko + link = { autogenerated = yes imp = 4080 ck3 = 3557 ck3 = 3558 } # AquaeSulphurae -> Konjic, Mostar link = { autogenerated = yes imp = 8027 imp = 8026 ck3 = 3556 } # Korkyra Melaina, Issa -> Hvar link = { autogenerated = yes imp = 4081 ck3 = 3553 ck3 = 3555 } # Novae -> Omis, Mokro link = { autogenerated = yes imp = 4062 imp = 4084 ck3 = 3552 } # Salona, Pharus -> Solin - link = { autogenerated = yes imp = 4057 ck3 = 3551 ck3 = 3548 } # Burnum -> Sinj, Knin + link = { autogenerated = yes imp = 4057 ck3 = 3551 } # Burnum -> Sinj link = { autogenerated = yes imp = 4058 imp = 4059 ck3 = 3550 } # Scardona, Magnum -> sibenik link = { autogenerated = yes imp = 12664 ck3 = 355 ck3 = 356 } # Isa -> OKLABO, ODMARDEN - link = { autogenerated = yes imp = 4056 ck3 = 3549 } # Asseria -> Bribir - link = { autogenerated = yes imp = 4055 ck3 = 3546 ck3 = 3547 } # Argyruntum -> Obrovac, Biograd + link = { autogenerated = yes imp = 4056 ck3 = 3547 ck3 = 3549 } # Asseria -> Biograd, Bribir + link = { autogenerated = yes imp = 4055 imp = 5085 ck3 = 3546 } # Argyruntum, IMPASSIBLE TERRAIN 085 -> Obrovac link = { autogenerated = yes imp = 4053 imp = 4052 ck3 = 3545 } # Aenona, Cissa -> Nin link = { autogenerated = yes imp = 4051 ck3 = 3543 ck3 = 3544 } # Ancus -> Kaseg, Udbina - link = { autogenerated = yes imp = 4049 imp = 4035 ck3 = 3542 } # Vegium, Ortopla -> Bag - link = { autogenerated = yes imp = 4036 ck3 = 3539 ck3 = 3540 ck3 = 3541 } # Metulum -> Modrus, Brinje, Dreznik + link = { autogenerated = yes imp = 4049 imp = 4035 imp = 4050 ck3 = 3542 } # Vegium, Ortopla, Arupium -> Bag + link = { autogenerated = yes imp = 4036 ck3 = 3539 ck3 = 3541 } # Metulum -> Modrus, Dreznik link = { autogenerated = yes imp = 4042 imp = 4046 ck3 = 3538 } # Raetinium, Valdasus -> Topusko link = { autogenerated = yes imp = 4040 ck3 = 3537 } # AdFines -> Okic link = { autogenerated = yes imp = 4045 imp = 5118 ck3 = 3536 } # Colapia, IMPASSIBLE TERRAIN 118 -> Dubovac @@ -4622,15 +4585,16 @@ link = { autogenerated = yes imp = 4129 ck3 = 3512 } # Sarvia -> Tolisa link = { autogenerated = yes imp = 4123 ck3 = 3511 ck3 = 3565 } # Salinae -> Zvornik, Kuclat link = { autogenerated = yes imp = 4128 ck3 = 3510 ck3 = 3514 } # Sarviana -> Soli, Maglaj + link = { autogenerated = yes imp = 12765 ck3 = 351 ck3 = 358 ck3 = 298 } # Marir -> MOR, FARILA, SVEG link = { autogenerated = yes imp = 4126 ck3 = 3509 } # Drinum -> Bijeljina link = { autogenerated = yes imp = 4070 ck3 = 3507 ck3 = 3508 } # Baloia -> Jajce, Sokol link = { autogenerated = yes imp = 4071 imp = 4075 imp = 5089 ck3 = 3506 } # Leusaba, Castra, IMPASSIBLE TERRAIN 089 -> Kotor Varos link = { autogenerated = yes imp = 4072 imp = 5087 ck3 = 3505 } # Aemate, IMPASSIBLE TERRAIN 087 -> Greben - link = { imp = 4061 ck3 = 3504 ck3 = 3523 } # Splonum -> Kljuc na Sani, Pset + link = { autogenerated = yes imp = 4061 ck3 = 3504 ck3 = 3523 ck3 = 3548 } # Splonum -> Kljuc na Sani, Pset, Knin link = { autogenerated = yes imp = 4066 imp = 4067 ck3 = 3503 } # Delminium, Bariduum -> Imotski link = { autogenerated = yes imp = 4064 imp = 4069 imp = 4063 imp = 5083 ck3 = 3502 } # Pelva, AdMatricem, Aequum, IMPASSIBLE TERRAIN 083 -> Duvno link = { autogenerated = yes imp = 4065 ck3 = 3500 ck3 = 3501 } # Salvium -> Glamoc, Hlivno - link = { autogenerated = yes imp = 12666 ck3 = 350 ck3 = 351 } # Windaz -> FALENE, MOR + link = { autogenerated = yes imp = 12666 ck3 = 350 } # Windaz -> FALENE link = { autogenerated = yes imp = 7438 ck3 = 3499 } # Mahanala* -> Bundi link = { autogenerated = yes imp = 7435 ck3 = 3498 } # Ramgarh -> Ramgarh link = { autogenerated = yes imp = 7428 ck3 = 3497 } # Manasa* -> Bhainsrorgarh @@ -4647,7 +4611,6 @@ link = { autogenerated = yes imp = 4439 ck3 = 3483 } # Ambara -> Amer link = { autogenerated = yes imp = 7388 ck3 = 3482 } # Govindgarh* -> Sanganer link = { autogenerated = yes imp = 4438 imp = 7387 ck3 = 3481 } # Vairata, Dausa -> Vairata - link = { autogenerated = yes imp = 4413 ck3 = 3475 } # Sonipat -> Rohtak link = { autogenerated = yes imp = 4454 ck3 = 3472 ck3 = 3474 } # Matipura -> Bachhraon, Bijnor link = { autogenerated = yes imp = 4453 ck3 = 3471 ck3 = 9094 } # Dhampur* -> Amroha, Bhimtal link = { autogenerated = yes imp = 7404 ck3 = 3470 } # Anupshahr* -> Ujhani @@ -4668,19 +4631,19 @@ link = { autogenerated = yes imp = 12659 ck3 = 345 ck3 = 354 } # Naglaz -> HENAMORUM, GAVLE link = { autogenerated = yes imp = 4404 ck3 = 3449 ck3 = 3451 } # Hastinapur -> Mirath, Hapur link = { autogenerated = yes imp = 4421 ck3 = 3448 ck3 = 3450 } # Varana -> Jahanpanah, Indrasthana - link = { imp = 4405 ck3 = 3447 ck3 = 3460 ck3 = 3968 } # Indraprastha -> Dhilika, Krishnajanmabhoomi, Sakarai - link = { autogenerated = yes imp = 4335 imp = 4336 imp = 4339 ck3 = 3446 } # Labaka, Varahasaila Pass, Nandi -> Parihasapura + link = { autogenerated = yes imp = 4405 ck3 = 3447 ck3 = 3460 } # Indraprastha -> Dhilika, Krishnajanmabhoomi + link = { autogenerated = yes imp = 4339 ck3 = 3446 } # Nandi -> Parihasapura + link = { autogenerated = yes imp = 4334 ck3 = 3445 } # Harvan -> Amaresvara link = { autogenerated = yes imp = 4317 ck3 = 3443 } # Dinkot -> Kalabagh link = { autogenerated = yes imp = 4329 imp = 7314 ck3 = 3442 } # Nara, Taxila -> Lund_Nandana link = { autogenerated = yes imp = 4328 ck3 = 3441 ck3 = 3444 } # Kohat -> Nowshera, Hangu - link = { autogenerated = yes imp = 4300 imp = 4367 ck3 = 3440 } # Pushkalavati, Arigaion -> Shergarh link = { autogenerated = yes imp = 4322 imp = 4326 imp = 4327 imp = 5349 ck3 = 3439 } # Manikyal, Manikyala, Ganjipur, IP 350 -> Mankiala - link = { autogenerated = yes imp = 4324 imp = 4323 imp = 4370 imp = 4490 ck3 = 3438 } # Jamal Garhi, Takht-i-Bahi, Massaka, Baziria -> Oddiyana + link = { autogenerated = yes imp = 4323 ck3 = 3438 } # Takht-i-Bahi -> Oddiyana link = { autogenerated = yes imp = 7319 ck3 = 3437 } # Ataka -> Attak link = { autogenerated = yes imp = 4315 ck3 = 3436 } # Nikaia -> Kunjah link = { autogenerated = yes imp = 4391 ck3 = 3434 ck3 = 7945 } # Udambhara -> Kangra, Brahmapura link = { autogenerated = yes imp = 4394 ck3 = 3432 } # Adrestai -> Pathankot - link = { autogenerated = yes imp = 4342 ck3 = 3430 } # Parvata -> Jammu + link = { autogenerated = yes imp = 4342 imp = 4343 ck3 = 3430 } # Parvata, Banihal Pass -> Jammu link = { autogenerated = yes imp = 6031 ck3 = 343 } # Scandia -> ENESCOPINGE link = { autogenerated = yes imp = 4347 imp = 4344 ck3 = 3429 } # Uttara Madra, Chhamb (swamp) -> Bhuttar link = { autogenerated = yes imp = 4308 imp = 5372 ck3 = 3428 } # Cakravala, IP 373 -> Katasraj @@ -4742,7 +4705,7 @@ link = { autogenerated = yes imp = 6839 imp = 6838 ck3 = 3357 } # Kuvada, Jhala -> Ranpur link = { autogenerated = yes imp = 6847 ck3 = 3355 ck3 = 3356 } # Rusia* -> Morvi, Halvad link = { autogenerated = yes imp = 6829 ck3 = 3354 } # Anartta -> Lakhota - link = { imp = 6828 ck3 = 3352 } # Kukurra -> Lalpur + link = { autogenerated = yes imp = 6828 imp = 6834 ck3 = 3352 } # Kukurra, Kalavad -> Lalpur link = { autogenerated = yes imp = 6842 ck3 = 3351 } # Kaccha -> Anjar link = { autogenerated = yes imp = 6840 imp = 6833 imp = 6844 imp = 6845 ck3 = 3350 } # Maltecoria, Baraca, Darangia, Bissai -> Bhuj link = { autogenerated = yes imp = 4481 ck3 = 3349 } # Barli -> Pushkar @@ -4778,17 +4741,17 @@ link = { autogenerated = yes imp = 7460 ck3 = 3315 } # Mauranipur -> Jhansi link = { autogenerated = yes imp = 6019 ck3 = 330 ck3 = 331 } # Scandia -> SUDHERKOPUNG, HAMARKINDA link = { autogenerated = yes imp = 2191 ck3 = 33 } # ManapiaOccidentalis -> BIRR - link = { imp = 10593 imp = 10590 imp = 10592 ck3 = 3288 } # Bandarawela, Mahiyanganaya, Gampola -> MALAYA RATA + link = { autogenerated = yes imp = 10593 ck3 = 3288 } # Bandarawela -> MALAYA RATA link = { autogenerated = yes imp = 6968 ck3 = 3287 } # Modoutou -> MULLAITIVU link = { autogenerated = yes imp = 6975 ck3 = 3285 } # Mihintale -> VAVUNIYA link = { autogenerated = yes imp = 6950 ck3 = 3284 } # Anourogrammon -> KURUNAGALA - link = { autogenerated = yes imp = 6979 imp = 6973 ck3 = 3283 } # Simhalava, Upatissagama -> PUTTALAM + link = { autogenerated = yes imp = 6973 imp = 6979 ck3 = 3283 } # Upatissagama, Simhalava -> PUTTALAM link = { autogenerated = yes imp = 6978 ck3 = 3282 } # Avakana -> DHAMBALLAI link = { autogenerated = yes imp = 6976 ck3 = 3281 } # Girikandi -> TRINCOMALEE link = { autogenerated = yes imp = 6981 imp = 6967 ck3 = 3280 } # Litta, Nagadiba -> BATTICALOA link = { autogenerated = yes imp = 6027 ck3 = 328 } # Scandia -> RISEBERGA link = { autogenerated = yes imp = 6974 ck3 = 3279 } # Anuradhapura -> MATALE - link = { imp = 10588 imp = 10589 ck3 = 3278 } # Matale, Polonnaruwa -> SENKADAGALAPURA + link = { autogenerated = yes imp = 10592 imp = 10588 imp = 10589 ck3 = 3278 } # Gampola, Matale, Polonnaruwa -> SENKADAGALAPURA link = { autogenerated = yes imp = 6982 imp = 10587 ck3 = 3277 } # Nabartha, Dedigama -> SITAWAKA link = { autogenerated = yes imp = 6971 imp = 10591 ck3 = 3276 } # Kalyani, Migamuva -> KOTTE link = { autogenerated = yes imp = 6969 ck3 = 3275 } # Jambukola Pattana -> JAFFNA @@ -4798,7 +4761,7 @@ link = { autogenerated = yes imp = 6951 imp = 6965 ck3 = 3271 } # Odoka, Oulippada -> GIMHATHITHTHA link = { autogenerated = yes imp = 6977 imp = 6966 ck3 = 3270 } # Dighavapi, Rohanada -> DIGHAVAPI link = { autogenerated = yes imp = 12657 ck3 = 327 ck3 = 329 ck3 = 347 ck3 = 348 } # Ainaz -> ORABRO, NORASKOG, ARBUGAE, SKYNZEKKEBERGE - link = { autogenerated = yes imp = 6980 ck3 = 3269 } # Salikhaprava -> MAHIYANGANA + link = { autogenerated = yes imp = 6980 imp = 10590 ck3 = 3269 } # Salikhaprava, Mahiyanganaya -> MAHIYANGANA link = { autogenerated = yes imp = 6952 ck3 = 3268 } # Dagana -> GODAWAYA link = { autogenerated = yes imp = 6953 ck3 = 3266 ck3 = 3267 } # Maagrammon -> MAGAMPURA, KATARGAMA link = { autogenerated = yes imp = 12660 ck3 = 326 } # Hurna -> VASE @@ -4806,11 +4769,11 @@ link = { autogenerated = yes imp = 12665 ck3 = 324 ck3 = 8732 ck3 = 8769 } # Snaiwaz -> FRISKDAL, Josse, Stange link = { autogenerated = yes imp = 12661 ck3 = 323 ck3 = 325 } # Bukaz -> TINGVALLA, GILLBERG link = { autogenerated = yes imp = 1077 imp = 1074 ck3 = 3221 } # Iluberis, ForumGallorum -> ALTO ARAGON - link = { imp = 6033 ck3 = 322 } # Scandia -> TISSELSKOG - link = { autogenerated = yes imp = 6285 ck3 = 3217 ck3 = 3218 ck3 = 3219 ck3 = 3220 } # Nullica -> BRAUNSBERG, LAUKITTEN, OSTLANDSBERG, Wormditt - link = { autogenerated = yes imp = 4865 ck3 = 3216 } # Venedicana -> KONIGSBERG + link = { autogenerated = yes imp = 6033 imp = 6036 ck3 = 322 } # Scandia, Scandia -> TISSELSKOG + link = { autogenerated = yes imp = 6285 ck3 = 3219 ck3 = 3220 } # Nullica -> OSTLANDSBERG, Wormditt + link = { autogenerated = yes imp = 4865 ck3 = 3216 ck3 = 3218 } # Venedicana -> KONIGSBERG, LAUKITTEN link = { autogenerated = yes imp = 6287 ck3 = 3215 } # Anavella -> NIEDENBURG - link = { autogenerated = yes imp = 6284 ck3 = 3214 ck3 = 4934 } # Anavenedica -> EYLAU, Zawkrze + link = { autogenerated = yes imp = 6284 ck3 = 3214 } # Anavenedica -> EYLAU link = { autogenerated = yes imp = 6286 ck3 = 3213 } # Marone -> OSTERODE link = { autogenerated = yes imp = 7298 ck3 = 3211 ck3 = 4949 } # Venedia -> ORTELSBURG, Rozan link = { autogenerated = yes imp = 6025 ck3 = 321 ck3 = 8770 } # Scandia -> DALABORG, Uddevalla @@ -4821,13 +4784,13 @@ link = { autogenerated = yes imp = 2167 ck3 = 32 ck3 = 36 } # ManapiaSeptentrionalis -> DROGHEDA, UISNEACH link = { autogenerated = yes imp = 6281 ck3 = 3198 ck3 = 3199 } # Follia -> KULM, TORUN link = { autogenerated = yes imp = 4863 ck3 = 3197 } # Vistulia -> GRAUDENZ - link = { autogenerated = yes imp = 4755 ck3 = 3193 } # Sciria -> TUCHOWNA + link = { autogenerated = yes imp = 4755 ck3 = 3193 ck3 = 3194 } # Sciria -> TUCHOWNA, TRSOW link = { autogenerated = yes imp = 4764 ck3 = 3192 ck3 = 3196 } # Helveconiana -> KONITZ, SCHWETZ + link = { autogenerated = yes imp = 4757 ck3 = 3191 ck3 = 3195 } # Lemoviana -> BYTOW, BERENT link = { autogenerated = yes imp = 4765 ck3 = 3190 ck3 = 4915 ck3 = 4916 } # Carinia -> HAMMERSTEIN, Naklo, Zlotow - link = { autogenerated = yes imp = 6022 ck3 = 319 } # Scandia -> FALK�PING - link = { autogenerated = yes imp = 4757 ck3 = 3189 ck3 = 3191 ck3 = 3195 } # Lemoviana -> MIASTKO, BYTOW, BERENT + link = { autogenerated = yes imp = 6022 ck3 = 319 } # Scandia -> FALKÖPING link = { autogenerated = yes imp = 4766 ck3 = 3186 ck3 = 3187 ck3 = 3188 } # Cariniana -> PILA, WALCZ, SZCZECINEK - link = { autogenerated = yes imp = 4760 ck3 = 3185 } # Campia -> BELGARD + link = { autogenerated = yes imp = 4760 ck3 = 3185 ck3 = 3189 } # Campia -> BELGARD, MIASTKO link = { autogenerated = yes imp = 3998 ck3 = 3181 } # Suevia Minores -> COTTBUS link = { autogenerated = yes imp = 3995 ck3 = 3178 } # Viaduna -> DAHME link = { autogenerated = yes imp = 3997 ck3 = 3175 ck3 = 3182 } # Suevia Maiores -> BRENE, LUBBEN @@ -4844,7 +4807,8 @@ link = { autogenerated = yes imp = 3986 ck3 = 3157 ck3 = 3164 } # Uarinia -> POTSDAM, BOTZOW link = { autogenerated = yes imp = 4753 ck3 = 3155 ck3 = 3156 } # Rhuticlia -> GRYFINO, ARNSWALDE link = { autogenerated = yes imp = 3908 ck3 = 3154 } # Viritium -> SOLDIN - link = { autogenerated = yes imp = 4758 ck3 = 3151 ck3 = 3152 ck3 = 3183 } # Seurgium -> DRIESEN, LANDSBERG, KREUZ + link = { autogenerated = yes imp = 4758 ck3 = 3152 ck3 = 3183 } # Seurgium -> LANDSBERG, KREUZ + link = { autogenerated = yes imp = 4767 ck3 = 3151 ck3 = 4901 } # Buguntiana -> DRIESEN, Miedzyrzecz link = { autogenerated = yes imp = 3999 ck3 = 3149 ck3 = 3158 ck3 = 3165 } # Susidata -> LEBUS, BERLIN, ROSENFELDE link = { autogenerated = yes imp = 4759 ck3 = 3148 ck3 = 3153 } # Iadua -> SULECIN, KOSTSCHIN link = { autogenerated = yes imp = 4774 ck3 = 3146 ck3 = 4912 } # Elysiana -> SIEDLISCHO, Wschowa @@ -4860,20 +4824,20 @@ link = { autogenerated = yes imp = 6018 ck3 = 313 ck3 = 335 } # Scandia -> EKSJO, WISINGHNO link = { autogenerated = yes imp = 3673 ck3 = 3125 ck3 = 3112 } # Sabatinca -> KNITTELFELD, JUDENBURG link = { autogenerated = yes imp = 3674 ck3 = 3124 ck3 = 3126 ck3 = 3130 } # Gabramagus -> WAIDHOFEN, ADMONT, LIEZEN - link = { autogenerated = yes imp = 6016 ck3 = 312 } # Scandia -> JONKOPING - link = { autogenerated = yes imp = 4131 ck3 = 3118 ck3 = 3110 } # Poedicum -> KAPFENBERG, LEOBEN link = { autogenerated = yes imp = 4135 ck3 = 3117 ck3 = 3111 } # Arraboa -> GRAZ, KOFLACH link = { autogenerated = yes imp = 4134 ck3 = 3116 } # AdVicessimum -> FELDBACH + link = { autogenerated = yes imp = 4131 ck3 = 3110 ck3 = 3118 } # Poedicum -> LEOBEN, KAPFENBERG + link = { autogenerated = yes imp = 6016 ck3 = 311 ck3 = 312 } # Scandia -> HULTABY, JONKOPING link = { autogenerated = yes imp = 4031 imp = 4048 ck3 = 3109 } # FlaviaSolva, Colatio -> LEIBNITZ link = { autogenerated = yes imp = 4136 ck3 = 3106 } # Halicanum -> WINDISCHE BUHEL link = { autogenerated = yes imp = 3672 ck3 = 3105 ck3 = 3113 } # Candalicae -> KLAGENFURT, SANKT VEIT link = { autogenerated = yes imp = 4030 imp = 5034 ck3 = 3103 } # Poetovio, IMPASSIBLE TERRAIN 034 -> MARIBOR - link = { autogenerated = yes imp = 4029 ck3 = 3102 ck3 = 3101 } # Celeia -> KRSKO, KAMNIK + link = { autogenerated = yes imp = 4029 ck3 = 3101 ck3 = 3102 } # Celeia -> KAMNIK, KRSKO link = { autogenerated = yes imp = 4025 ck3 = 3100 } # Carnium -> KRANJ link = { autogenerated = yes imp = 6020 ck3 = 310 ck3 = 332 ck3 = 8734 } # Scandia -> VIMMERBY, LIUNGA, Grebo - link = { imp = 3668 imp = 3671 ck3 = 3099 } # Teurnia, Virunum -> VILLACH + link = { autogenerated = yes imp = 4027 imp = 4028 imp = 5032 imp = 5117 ck3 = 3097 } # Latobicorum, Neviodunum, IMPASSIBLE TERRAIN 032, IMPASSIBLE TERRAIN 117 -> DOBOVEC link = { autogenerated = yes imp = 4024 ck3 = 3096 ck3 = 2515 } # Emona -> LJUBLJANA, TRIGLAVSKI - link = { imp = 3650 imp = 3649 ck3 = 3094 } # Namare, LoacusFelices -> WIESELBURG + link = { autogenerated = yes imp = 3649 imp = 3650 ck3 = 3094 } # LoacusFelices, Namare -> WIESELBURG link = { autogenerated = yes imp = 3648 ck3 = 3093 } # Lauriacum -> AMSTETTEN link = { autogenerated = yes imp = 6008 ck3 = 309 ck3 = 8727 } # Scandia -> HULINGSRYD, Stegeholm link = { autogenerated = yes imp = 3651 imp = 3652 ck3 = 3089 } # Faviana, Augustinia -> SANKT POLTEN @@ -4891,23 +4855,23 @@ link = { autogenerated = yes imp = 4004 ck3 = 3070 } # DiduniaOrientalis -> NOWOGRODZIEC link = { autogenerated = yes imp = 6007 ck3 = 307 ck3 = 308 } # Scandia -> KALMAR, HOGSBY link = { autogenerated = yes imp = 4010 imp = 4006 ck3 = 3069 } # Casurgis, Marsignia -> WLEN - link = { imp = 4007 ck3 = 3068 } # Leucara -> PRZEMKOW + link = { autogenerated = yes imp = 4007 imp = 4771 ck3 = 3068 } # Leucara, Leucaristus -> PRZEMKOW link = { autogenerated = yes imp = 4773 ck3 = 3067 } # Elysia -> SPROTTAU link = { autogenerated = yes imp = 3992 ck3 = 3066 } # BuriaMaiores -> ZAGAN link = { autogenerated = yes imp = 4770 ck3 = 3064 ck3 = 3065 } # Vindua -> GRUNBERG, BYTOM + link = { autogenerated = yes imp = 4772 ck3 = 3063 ck3 = 4914 } # Calisia -> GLOGOW, Srem link = { autogenerated = yes imp = 4902 ck3 = 3062 ck3 = 4931 ck3 = 4932 ck3 = 528 } # Amellua* -> OLESNICA, Wielun, Grabow, Sieradz - link = { autogenerated = yes imp = 4772 ck3 = 3060 ck3 = 3063 ck3 = 4914 } # Calisia -> SADOWEL, GLOGOW, Srem + link = { autogenerated = yes imp = 4900 ck3 = 3058 ck3 = 3060 ck3 = 3061 } # Ambium* -> LEGNICA, SADOWEL, MILIEZ link = { autogenerated = yes imp = 4778 ck3 = 3057 ck3 = 3059 } # Lygia -> BARDO, SWINY link = { autogenerated = yes imp = 4901 ck3 = 3052 ck3 = 3053 ck3 = 4929 ck3 = 526 } # Salata* -> OPPELN, KREUZBURG, Radomsko, Czestochowa - link = { autogenerated = yes imp = 6017 ck3 = 305 ck3 = 306 ck3 = 311 } # Scandia -> NORRVIDINGE, UPPVIDINGE, HULTABY + link = { autogenerated = yes imp = 6017 ck3 = 305 ck3 = 306 } # Scandia -> NORRVIDINGE, UPPVIDINGE link = { autogenerated = yes imp = 4899 ck3 = 3048 ck3 = 3049 ck3 = 3050 ck3 = 763 } # Sidaris* -> NYSA, BRZEG, GLOGOWEK, Czech Mountains 1 link = { autogenerated = yes imp = 4013 ck3 = 3047 ck3 = 4138 ck3 = 764 } # Carredunum -> KLADZKO, Hradec(Kralove), Czech Mountains 2 - link = { imp = 4898 ck3 = 3046 ck3 = 3055 ck3 = 3056 } # Vectia* -> FRANKENSTEIN, OLAWA, OTMUCHOW - link = { autogenerated = yes imp = 4900 ck3 = 3045 ck3 = 3061 } # Ambium* -> BRESLAU, MILIEZ + link = { autogenerated = yes imp = 4898 ck3 = 3045 ck3 = 3046 ck3 = 3055 ck3 = 3056 } # Vectia* -> BRESLAU, FRANKENSTEIN, OLAWA, OTMUCHOW link = { autogenerated = yes imp = 4896 ck3 = 3044 ck3 = 3051 ck3 = 3054 } # Valitum* -> BETHEN, STREHLITZ, LUBLINIEC - link = { imp = 4890 ck3 = 3043 ck3 = 4970 ck3 = 4971 ck3 = 527 } # Agrum* -> RYBNIK, Bochnia, Wieliczka, Krakow + link = { autogenerated = yes imp = 4890 ck3 = 3043 ck3 = 4971 ck3 = 527 } # Agrum* -> RYBNIK, Wieliczka, Krakow link = { autogenerated = yes imp = 4893 ck3 = 3042 ck3 = 4183 ck3 = 4184 ck3 = 3040 } # Matiscua* -> RATIBOR, Hradec-nad-Moravici, Opava, TESCHEN - link = { autogenerated = yes imp = 4892 ck3 = 3041 ck3 = 3813 ck3 = 525 } # Ibadura* -> BIELSKO, Zsolna, Orava + link = { autogenerated = yes imp = 4892 ck3 = 3041 ck3 = 3813 ck3 = 525 ck3 = 4898 } # Ibadura* -> BIELSKO, Zsolna, Orava, HUNGARIAN-MORAVIAN MOUNTAINS link = { autogenerated = yes imp = 3956 ck3 = 3038 } # Melocabus -> GERA link = { autogenerated = yes imp = 3991 ck3 = 3034 ck3 = 3035 } # BuriaMinores -> GROSSENHAIN, RADEBEUL link = { autogenerated = yes imp = 3910 ck3 = 3032 ck3 = 3033 } # Susidaea -> BAUTZEN, BISCHOFSWERDA @@ -4921,12 +4885,12 @@ link = { autogenerated = yes imp = 6013 ck3 = 301 ck3 = 8724 ck3 = 8725 } # Scandia -> WANNAMO, Opensten, Kindaholm link = { autogenerated = yes imp = 3957 ck3 = 3006 ck3 = 3008 ck3 = 2999 ck3 = 3009 } # Bicurdium -> GLEICHEN, KAFERNBURG, SCHWARZBURG, EISENACH link = { autogenerated = yes imp = 3955 ck3 = 3005 ck3 = 3007 } # Candulum -> ORLAMUNDE, BEICHTINEN - link = { autogenerated = yes imp = 3952 ck3 = 3004 ck3 = 3001 } # Sudetia -> PLAUEN, REHAU + link = { autogenerated = yes imp = 3952 ck3 = 3004 ck3 = 3000 ck3 = 3001 } # Sudetia -> PLAUEN, HOF, REHAU link = { autogenerated = yes imp = 3953 ck3 = 3003 ck3 = 3039 } # Gambrivia -> LOBDABURG, REICHENBACH link = { autogenerated = yes imp = 6014 ck3 = 300 } # Scandia -> LIONGBY link = { autogenerated = yes imp = 2192 ck3 = 30 ck3 = 31 } # ManapiaMeridionalis -> KILDARE, TRIM link = { autogenerated = yes imp = 3948 ck3 = 2998 } # Turoniana -> COBURG - link = { autogenerated = yes imp = 3821 ck3 = 2995 ck3 = 3000 } # Moenosgadia -> LICHTENFELS, HOF + link = { autogenerated = yes imp = 3821 ck3 = 2995 } # Moenosgadia -> LICHTENFELS link = { autogenerated = yes imp = 3946 ck3 = 2994 ck3 = 2997 ck3 = 768 } # SudetiaPlanus -> KULMBACH, CHEB, Czech Mountains 6 link = { autogenerated = yes imp = 3820 ck3 = 2993 } # Cantiabis -> BAYREUTH link = { autogenerated = yes imp = 3813 ck3 = 2989 ck3 = 4144 } # Reganus -> HOHENBURG, Tachov @@ -4972,13 +4936,13 @@ link = { autogenerated = yes imp = 3977 ck3 = 2913 ck3 = 2914 } # Luppia -> HILDESHEIM, WOLDENBERG link = { autogenerated = yes imp = 3963 ck3 = 2912 } # Tropea -> HOMBURG link = { autogenerated = yes imp = 3967 ck3 = 2906 } # Aregellia -> MAGDEBURG - link = { autogenerated = yes imp = 3975 ck3 = 2904 ck3 = 2905 } # Angia -> CELLE, GIFHORN + link = { autogenerated = yes imp = 3975 ck3 = 2905 } # Angia -> GIFHORN link = { autogenerated = yes imp = 3978 ck3 = 2902 ck3 = 2916 ck3 = 2917 } # Meliboia -> WOLFENBUTTEL, HALBERSTADT, WERNIGERODE link = { autogenerated = yes imp = 3976 imp = 3974 ck3 = 2901 } # Maroia, Alaria -> BRUNSWICK link = { autogenerated = yes imp = 3968 ck3 = 2900 } # Mersovium -> STENDAL link = { autogenerated = yes imp = 2165 ck3 = 29 ck3 = 40 } # Coriondia -> WICKLOW, CARLOW link = { autogenerated = yes imp = 3969 ck3 = 2899 } # Cistula -> WERBEN - link = { autogenerated = yes imp = 3973 ck3 = 2897 ck3 = 2898 } # Chamavia -> DEPENAU, HANNOVER + link = { autogenerated = yes imp = 3973 ck3 = 2897 ck3 = 2898 ck3 = 2904 } # Chamavia -> DEPENAU, HANNOVER, CELLE link = { autogenerated = yes imp = 3971 ck3 = 2895 ck3 = 2907 } # Arminia -> LUCHOW, GARDELEGEN link = { autogenerated = yes imp = 3970 ck3 = 2894 ck3 = 2937 } # Langobardia -> DANNENBERG, UELZEN link = { autogenerated = yes imp = 3972 ck3 = 2893 } # Fosa -> LUNEBURG @@ -5006,7 +4970,6 @@ link = { autogenerated = yes imp = 3793 ck3 = 2852 ck3 = 2857 } # Landia -> SIEGEN, WETZLAR link = { autogenerated = yes imp = 3789 ck3 = 2851 ck3 = 2853 ck3 = 2856 } # Usipetia -> DIEZ, SOLMS, HOMBURG link = { autogenerated = yes imp = 3824 ck3 = 2850 ck3 = 2915 } # Mattium -> WALDECK, HOFGEISMAR - link = { autogenerated = yes imp = 6036 ck3 = 285 } # Scandia -> BORGARSYSLAR link = { autogenerated = yes imp = 3825 ck3 = 2848 ck3 = 2911 } # Pheugarum -> BRAKEL, DASSEL link = { autogenerated = yes imp = 3964 ck3 = 2846 ck3 = 2896 } # Dinia -> WOLPE, WUNSDORF link = { autogenerated = yes imp = 3827 ck3 = 2844 ck3 = 2909 ck3 = 2910 } # Tulisurgium -> LIPPE, SCHWALENBERG, EVERSTEIN @@ -5016,8 +4979,8 @@ link = { autogenerated = yes imp = 3829 ck3 = 2837 ck3 = 2839 } # Ascalingium -> BRUCHHAUSEN, HOYA link = { autogenerated = yes imp = 4754 ck3 = 2836 ck3 = 3184 } # Turcilingia -> LOBEZ, DRAMBERG link = { autogenerated = yes imp = 6282 ck3 = 2834 ck3 = 3201 } # Cureta -> MALBORK, Mohrungen - link = { autogenerated = yes imp = 4864 ck3 = 2831 ck3 = 2835 } # Venedica -> WISLANA, ELBLAG - link = { autogenerated = yes imp = 4862 ck3 = 2830 ck3 = 3194 } # Vistuliana -> GDANSK, TRSOW + link = { autogenerated = yes imp = 4864 ck3 = 2831 ck3 = 2835 ck3 = 3217 } # Venedica -> WISLANA, ELBLAG, BRAUNSBERG + link = { autogenerated = yes imp = 4862 ck3 = 2830 } # Vistuliana -> GDANSK link = { autogenerated = yes imp = 4756 ck3 = 2828 } # Eughum -> KOSZALIN link = { autogenerated = yes imp = 4750 ck3 = 2827 ck3 = 2829 ck3 = 2832 ck3 = 2833 } # Rugia -> SLUPSK, LEBNO, WLADYSLAWOWO, SOPOT link = { autogenerated = yes imp = 4752 ck3 = 2825 } # Viadrus -> STARGARD @@ -5066,8 +5029,8 @@ link = { autogenerated = yes imp = 3771 ck3 = 2769 ck3 = 2885 } # Aquileia -> HELLENENSTEIN, DILLINGEN link = { autogenerated = yes imp = 3742 ck3 = 2768 } # Viana -> ULM link = { autogenerated = yes imp = 3745 ck3 = 2767 } # RaetiaOccidentalis -> SIGMARINGEN - link = { imp = 3743 ck3 = 2766 } # Riusiava -> SCHELKLINGEN - link = { autogenerated = yes imp = 3744 ck3 = 2764 ck3 = 2765 } # Bragodurum -> VEHRINGEN, BEUTLINGEN + link = { autogenerated = yes imp = 3743 ck3 = 2765 ck3 = 2766 } # Riusiava -> BEUTLINGEN, SCHELKLINGEN + link = { autogenerated = yes imp = 3744 ck3 = 2764 } # Bragodurum -> VEHRINGEN link = { autogenerated = yes imp = 3732 ck3 = 2762 } # AquaeHelveticae -> NELLENBURG link = { autogenerated = yes imp = 3635 ck3 = 2761 } # Constantia -> HEILIGENBERG link = { autogenerated = yes imp = 3731 ck3 = 2757 ck3 = 2758 ck3 = 2760 } # Tenedo -> FURSTENBERG, LUPFEN, CLETTGAU @@ -5080,10 +5043,10 @@ link = { autogenerated = yes imp = 3025 ck3 = 2746 } # AureliaAquensis -> BADEN link = { autogenerated = yes imp = 3735 ck3 = 2745 ck3 = 2747 } # Portus -> VAIHINGEN, CALW link = { autogenerated = yes imp = 3738 ck3 = 2743 } # VicusAlsinensium -> HEILBRONN + link = { autogenerated = yes imp = 3702 ck3 = 2742 } # Auderiensium -> SELIGENSTADT link = { autogenerated = yes imp = 7732 ck3 = 2741 } # Vicus Augustanus -> RUSSELSHEIM link = { autogenerated = yes imp = 3804 ck3 = 2738 ck3 = 2739 ck3 = 2872 } # Hermunduria -> MOSBACH, DURNE, WEINSBERG link = { autogenerated = yes imp = 3737 ck3 = 2737 } # VicusNediensis -> ERBACH - link = { autogenerated = yes imp = 3702 ck3 = 2742 } # Auderiensium -> SELIGENSTADT link = { autogenerated = yes imp = 3055 ck3 = 2735 ck3 = 2736 } # Lopodunum -> WEINHEIM, BESENSHEIM link = { autogenerated = yes imp = 3052 ck3 = 2733 ck3 = 2744 } # Saletio -> HEIDELBERG, HOCKENHEIM link = { autogenerated = yes imp = 3053 imp = 3054 ck3 = 2732 } # Concordia, Tabernae -> SPEYER @@ -5094,7 +5057,7 @@ link = { autogenerated = yes imp = 3695 ck3 = 2725 } # VangionaMeridionalis -> BITSCH link = { autogenerated = yes imp = 3023 ck3 = 2723 ck3 = 2724 } # Brocomagus -> LICHTBERG, WEISSENBURG link = { autogenerated = yes imp = 3021 ck3 = 2722 } # Argentorate -> HAGUENAU - link = { imp = 3024 ck3 = 2719 ck3 = 2721 ck3 = 2714 } # Altitona -> SELESTAT, STRASSBURG, SALM + link = { autogenerated = yes imp = 3024 ck3 = 2719 ck3 = 2721 } # Altitona -> SELESTAT, STRASSBURG link = { autogenerated = yes imp = 3019 ck3 = 2717 } # Argentovaria -> COLMAR link = { autogenerated = yes imp = 3015 ck3 = 2715 } # AquaeBorbonis -> VAUDEMONT link = { autogenerated = yes imp = 3017 ck3 = 2710 ck3 = 2712 } # DecemPagi -> PUTTLINGEN, FINSTINGEN @@ -5105,11 +5068,9 @@ link = { autogenerated = yes imp = 3692 ck3 = 2704 } # VangionaOccidentalis -> SAARBRUCKEN link = { autogenerated = yes imp = 3725 ck3 = 2701 } # Dumnissus -> VELDENZ link = { autogenerated = yes imp = 3696 ck3 = 2703 ck3 = 779 } # VangionaSeptentrionalis -> WADERN, German Mountains 6 - link = { autogenerated = yes imp = 3690 ck3 = 2700 } # AugustaTreverorum -> KONZ link = { autogenerated = yes imp = 2168 ck3 = 27 } # Caucia -> CAVAN link = { autogenerated = yes imp = 3689 ck3 = 2699 } # Andethanna -> VIANDEN - link = { autogenerated = yes imp = 3688 ck3 = 2698 } # Ricciacum -> SAARBURG - link = { autogenerated = yes imp = 3726 imp = 3721 ck3 = 2697 } # Beda, Confluentes -> COCHEM + link = { autogenerated = yes imp = 3690 ck3 = 2698 ck3 = 2700 } # AugustaTreverorum -> SAARBURG, KONZ link = { autogenerated = yes imp = 3701 ck3 = 2694 } # Mogontiacum -> MAINZ link = { autogenerated = yes imp = 3699 ck3 = 2692 ck3 = 2693 ck3 = 2854 } # AquaeMattiacorum -> KATZENELNBOGEN, WIESBADEN, LIMBURG link = { autogenerated = yes imp = 3788 ck3 = 2689 ck3 = 2690 ck3 = 2691 ck3 = 778 } # Lacobardia -> SAYN, WIED, ISENBURG, German Mountains 5 @@ -5121,7 +5082,7 @@ link = { autogenerated = yes imp = 3790 ck3 = 2676 ck3 = 2678 ck3 = 2679 } # Bacenis -> HUKESWAG, HAGEN, MARK link = { autogenerated = yes imp = 3786 ck3 = 2673 ck3 = 2674 } # Arbalo -> DORTMUND, SOEST link = { autogenerated = yes imp = 3784 ck3 = 2670 ck3 = 2671 } # Alesia -> MUNSTER, WARENDORF - link = { autogenerated = yes imp = 32 ck3 = 2669 ck3 = 2607 } # Aecernia -> ALIFE, ISERNIA + link = { autogenerated = yes imp = 8 ck3 = 2669 } # Capua -> ALIFE link = { autogenerated = yes imp = 3595 ck3 = 2666 ck3 = 8765 } # Aponus -> MONTAGNANA, Este link = { autogenerated = yes imp = 3497 imp = 3496 ck3 = 2665 } # HermaionAkron, Gouroulis -> ALGHERO link = { autogenerated = yes imp = 3500 ck3 = 2662 } # TurrisLibisonis -> SASSARI @@ -5132,7 +5093,7 @@ link = { autogenerated = yes imp = 3503 imp = 3489 ck3 = 2657 } # Coclearia, FanumCarisi -> GALTELLI link = { autogenerated = yes imp = 3488 ck3 = 2656 } # Sulcis -> TORTOLI link = { autogenerated = yes imp = 3486 imp = 3487 ck3 = 2655 } # Ferraria, Porticenses -> CARBONARA - link = { imp = 3481 imp = 3485 ck3 = 2654 } # Sulcis, SardusPater -> IGLESIAS + link = { autogenerated = yes imp = 3485 imp = 3481 ck3 = 2654 } # SardusPater, Sulcis -> IGLESIAS link = { autogenerated = yes imp = 3483 imp = 3484 imp = 3490 ck3 = 2653 } # Nora, Caralis, Sestis -> CAGLIARI link = { autogenerated = yes imp = 3508 ck3 = 2652 } # Phikaria -> BONIFACIO link = { autogenerated = yes imp = 3507 ck3 = 2651 } # Rhoubra -> VECCHIO @@ -5167,7 +5128,7 @@ link = { autogenerated = yes imp = 69 ck3 = 2619 } # Bitontinon -> TRANI link = { autogenerated = yes imp = 58 imp = 42 ck3 = 2618 } # Cannae, Venusia -> VENOSA link = { autogenerated = yes imp = 60 ck3 = 2617 } # Bantia -> ACERENZA - link = { imp = 46 imp = 47 ck3 = 2616 } # Potentia, Numistro -> POTENZA + link = { autogenerated = yes imp = 46 imp = 47 imp = 5005 ck3 = 2616 } # Potentia, Numistro, IMPASSIBLE TERRAIN 005 -> POTENZA link = { autogenerated = yes imp = 39 imp = 38 imp = 45 ck3 = 2614 } # Canusium, Sipontum, Ausculum -> SIPONTO link = { autogenerated = yes imp = 13 imp = 53 ck3 = 2613 } # Pyxus, Grumentum -> MARATEA link = { autogenerated = yes imp = 11 ck3 = 2612 } # Paestum -> SALERNO @@ -5175,28 +5136,28 @@ link = { autogenerated = yes imp = 36 imp = 37 ck3 = 2610 } # Teanum, Luceria -> LUCERA link = { autogenerated = yes imp = 1718 imp = 41 ck3 = 2609 } # Aeclanum, Saticula -> BENEVENTO link = { autogenerated = yes imp = 7 imp = 1713 imp = 7733 ck3 = 2608 } # Neapolis, Nuceria, Vesuvius -> NAPOLI - link = { autogenerated = yes imp = 6 imp = 5006 ck3 = 2606 } # Cumae, IMPASSIBLE TERRAIN 006 -> CAPUA + link = { autogenerated = yes imp = 6 ck3 = 2606 } # Cumae -> CAPUA link = { autogenerated = yes imp = 48 imp = 35 imp = 49 ck3 = 2605 } # Terventum, Larinum, Gerumum -> LARINO link = { autogenerated = yes imp = 29 ck3 = 2604 } # Aternum -> LANCIANO - link = { autogenerated = yes imp = 31 imp = 30 imp = 5008 ck3 = 2602 } # Sora, Muruvium, IMPASSIBLE TERRAIN 008 -> CASSINO + link = { autogenerated = yes imp = 31 imp = 1712 imp = 30 imp = 5008 ck3 = 2602 } # Sora, Antinum, Muruvium, IMPASSIBLE TERRAIN 008 -> CASSINO link = { autogenerated = yes imp = 27 imp = 24 ck3 = 2600 } # Sora, Alba -> AVEZZANO link = { autogenerated = yes imp = 2196 ck3 = 26 } # EblaniaOccidentalis -> LONGFORD link = { autogenerated = yes imp = 111 ck3 = 2598 } # Firmum -> FERMO - link = { imp = 109 ck3 = 2597 } # Asculum -> ASCOLI PICENO + link = { autogenerated = yes imp = 109 ck3 = 2597 } # Asculum -> ASCOLI PICENO link = { autogenerated = yes imp = 107 imp = 108 ck3 = 2596 } # Interamnia, Castrum -> TERAMO link = { autogenerated = yes imp = 106 ck3 = 2595 ck3 = 2603 } # Hadria -> ATRI, CLUIELI link = { autogenerated = yes imp = 117 ck3 = 2594 ck3 = 2599 } # Ancona -> ANCONA, MACERATA link = { autogenerated = yes imp = 5 ck3 = 2592 ck3 = 2593 } # Priverneum -> TERRACINA, GAETA - link = { autogenerated = yes imp = 25 imp = 1712 imp = 26 imp = 5007 ck3 = 2591 } # Signia, Antinum, Fregellae, IMPASSIBLE TERRAIN 007 -> SEGNI + link = { autogenerated = yes imp = 25 imp = 26 imp = 5007 ck3 = 2591 } # Signia, Fregellae, IMPASSIBLE TERRAIN 007 -> SEGNI link = { autogenerated = yes imp = 4 ck3 = 2590 } # Antium -> VELLETRI link = { autogenerated = yes imp = 19 imp = 2 ck3 = 2589 } # Carsioli, Tiber -> TIVOLI - link = { autogenerated = yes imp = 105 imp = 5011 ck3 = 2588 } # Trebula, IMPASSIBLE TERRAIN 011 -> RIETI + link = { autogenerated = yes imp = 105 ck3 = 2588 } # Trebula -> RIETI link = { autogenerated = yes imp = 110 imp = 118 ck3 = 2587 } # Urbs, Cingulum -> CAMERINO - link = { autogenerated = yes imp = 23 imp = 104 imp = 5013 ck3 = 2586 } # Narnia, Amiternum, IMPASSIBLE TERRAIN 013 -> TERNI - link = { imp = 103 imp = 5015 ck3 = 2585 } # Spoletium, IMPASSIBLE TERRAIN 015 -> SPOLETO + link = { autogenerated = yes imp = 23 imp = 104 imp = 5013 imp = 5015 ck3 = 2586 } # Narnia, Amiternum, IMPASSIBLE TERRAIN 013, IMPASSIBLE TERRAIN 015 -> TERNI + link = { autogenerated = yes imp = 123 ck3 = 2584 } # Iguvium -> CIVITAS CASTELLI link = { autogenerated = yes imp = 122 imp = 5017 ck3 = 2583 } # Urbinum, IMPASSIBLE TERRAIN 017 -> CAGLI - link = { autogenerated = yes imp = 123 ck3 = 2582 ck3 = 2584 } # Iguvium -> GUBBIO, CIVITAS CASTELLI - link = { imp = 119 ck3 = 2581 } # Sentinum -> ASSISSI + link = { autogenerated = yes imp = 119 ck3 = 2582 } # Sentinum -> GUBBIO + link = { autogenerated = yes imp = 103 ck3 = 2581 ck3 = 2585 } # Spoletium -> ASSISSI, SPOLETO link = { autogenerated = yes imp = 20 ck3 = 2579 } # Reate -> FARFA link = { autogenerated = yes imp = 15 ck3 = 2578 } # Ostia -> PALO link = { autogenerated = yes imp = 16 ck3 = 2577 } # Veii -> VATICAN @@ -5204,30 +5165,31 @@ link = { autogenerated = yes imp = 1 ck3 = 2575 } # Roma -> ROMA link = { autogenerated = yes imp = 18 ck3 = 2574 } # Nepete -> PATERNO link = { autogenerated = yes imp = 14 ck3 = 2573 } # Caere -> SUTRI - link = { autogenerated = yes imp = 21 ck3 = 2572 } # Volsini -> VITERBO link = { autogenerated = yes imp = 17 ck3 = 2571 } # Tarquini -> CIVITAVECCHIA link = { autogenerated = yes imp = 113 imp = 5016 ck3 = 2570 } # Suana, IMPASSIBLE TERRAIN 016 -> SOANA link = { autogenerated = yes imp = 22 ck3 = 2569 } # Volci -> ORBETELLO + link = { autogenerated = yes imp = 21 ck3 = 2568 ck3 = 2572 } # Volsini -> ORIVETO, VITERBO link = { autogenerated = yes imp = 115 ck3 = 2567 } # Rusellae -> MONTALCINO - link = { autogenerated = yes imp = 102 ck3 = 2566 ck3 = 2568 } # Tuder -> PERUGIA, ORIVETO + link = { autogenerated = yes imp = 102 ck3 = 2566 } # Tuder -> PERUGIA link = { autogenerated = yes imp = 116 ck3 = 2565 } # Clusium -> CHIUSI link = { autogenerated = yes imp = 120 ck3 = 2564 } # Perusia -> CORTONA link = { autogenerated = yes imp = 135 ck3 = 2563 } # Valvata -> EMPOLI link = { autogenerated = yes imp = 114 imp = 112 ck3 = 2562 } # Vetulonia, Telamon -> GROSSETO link = { autogenerated = yes imp = 126 imp = 127 ck3 = 2561 } # Populonium, Ilva -> PIOMBINO link = { autogenerated = yes imp = 130 imp = 125 ck3 = 2560 } # Sena, Ad -> SIENA - link = { imp = 134 ck3 = 2559 ck3 = 2544 } # Florentia -> IMPRUNETA, VALLOMBROSA + link = { autogenerated = yes imp = 134 ck3 = 2559 ck3 = 2544 } # Florentia -> IMPRUNETA, VALLOMBROSA link = { autogenerated = yes imp = 129 imp = 128 ck3 = 2558 } # Volaterrae, Vada -> VOLTERRA link = { autogenerated = yes imp = 136 ck3 = 2557 } # Pisae -> LIVORNO link = { autogenerated = yes imp = 121 ck3 = 2556 } # Sena -> PESARO link = { autogenerated = yes imp = 132 ck3 = 2555 } # Sarsina -> URBINO - link = { imp = 131 imp = 140 ck3 = 2554 } # Arretium, Festulae -> AREZZO - link = { imp = 148 ck3 = 2552 ck3 = 2553 } # Mevaniola -> MONTEFELTRO, CASENTINO + link = { autogenerated = yes imp = 131 ck3 = 2554 } # Arretium -> AREZZO + link = { autogenerated = yes imp = 148 ck3 = 2552 } # Mevaniola -> MONTEFELTRO link = { autogenerated = yes imp = 146 ck3 = 2549 ck3 = 2550 } # Bononia -> IMOLA, MONTE SOLE - link = { imp = 147 imp = 5128 ck3 = 2548 } # Faventia, IMPASSIBLE TERRAIN 128 -> FORLI + link = { autogenerated = yes imp = 147 ck3 = 2548 } # Faventia -> FORLI link = { autogenerated = yes imp = 133 ck3 = 2547 } # Ariminum -> RIMINI link = { autogenerated = yes imp = 142 ck3 = 2546 } # Ravenna -> RAVENNA link = { autogenerated = yes imp = 139 ck3 = 2543 ck3 = 2551 } # Pistoriae -> FIRENZE, CAMALDOLI + link = { autogenerated = yes imp = 3592 ck3 = 2542 } # Feraria -> BOLOGNA link = { autogenerated = yes imp = 149 ck3 = 2540 ck3 = 2541 } # Mutina -> MODENA, CENTO link = { autogenerated = yes imp = 138 ck3 = 2537 ck3 = 2538 ck3 = 2545 } # Lucca -> LUCCA, PISTORJA, PRATO link = { autogenerated = yes imp = 137 ck3 = 2536 } # Luna -> PISA @@ -5237,9 +5199,8 @@ link = { autogenerated = yes imp = 141 imp = 154 ck3 = 2531 } # Portus, Rubra -> LUNA link = { autogenerated = yes imp = 3588 imp = 3591 ck3 = 2530 } # Colicaria, VicusVarianus -> GUASTALLA link = { autogenerated = yes imp = 6043 ck3 = 253 ck3 = 254 } # Scandia -> RYFYLKI, HAUGELAND - link = { autogenerated = yes imp = 3592 ck3 = 2529 ck3 = 2542 } # Feraria -> CONA, BOLOGNA link = { autogenerated = yes imp = 144 ck3 = 2528 } # Spina -> COMACCHIO - link = { autogenerated = yes imp = 150 ck3 = 2527 } # Vicus Aventia -> FERRARA + link = { autogenerated = yes imp = 150 ck3 = 2527 ck3 = 2529 } # Vicus Aventia -> FERRARA, CONA link = { autogenerated = yes imp = 145 ck3 = 2526 } # Hadriani -> POMPOSA link = { autogenerated = yes imp = 3597 ck3 = 2525 } # AdPortum -> ROVIGO link = { autogenerated = yes imp = 3593 ck3 = 2524 } # Hatria -> ADRIA @@ -5247,26 +5208,27 @@ link = { autogenerated = yes imp = 4034 ck3 = 2521 } # Apsarus -> CHERSO link = { autogenerated = yes imp = 4022 ck3 = 2520 } # Piquentum -> PAZIN link = { autogenerated = yes imp = 6042 ck3 = 252 ck3 = 290 } # Scandia -> JATHARR, HEIANE - link = { autogenerated = yes imp = 4018 ck3 = 2519 } # Aegida -> PIRAN link = { autogenerated = yes imp = 4020 imp = 4019 ck3 = 2518 } # Pola, Parentium -> PULA - link = { imp = 4026 imp = 5031 ck3 = 2516 } # Longaticum, IMPASSIBLE TERRAIN 031 -> GORIZIA - link = { imp = 3607 ck3 = 2514 } # FonsTimavi -> TRIESTE + link = { autogenerated = yes imp = 4026 imp = 3607 imp = 5031 ck3 = 2516 } # Longaticum, FonsTimavi, IMPASSIBLE TERRAIN 031 -> GORIZIA + link = { autogenerated = yes imp = 4018 ck3 = 2514 ck3 = 2519 } # Aegida -> TRIESTE, PIRAN link = { autogenerated = yes imp = 3604 ck3 = 2513 } # Reunia -> PORDENONE link = { autogenerated = yes imp = 3601 ck3 = 2512 } # PortusLiquentiae -> CAORLE link = { autogenerated = yes imp = 3603 ck3 = 2511 } # Opitergium -> CENETA - link = { imp = 6041 ck3 = 251 ck3 = 292 ck3 = 250 } # Scandia -> LISTER, ARAK, RAABOIGDE + link = { autogenerated = yes imp = 6041 ck3 = 251 ck3 = 292 } # Scandia -> LISTER, ARAK link = { autogenerated = yes imp = 3596 ck3 = 2509 } # Vicetia -> LONIGO link = { autogenerated = yes imp = 3605 ck3 = 2508 ck3 = 2510 } # ForumIulii -> AQUILEIA, UDINE link = { autogenerated = yes imp = 3606 ck3 = 2507 } # Aquileia -> GRADO - link = { imp = 3598 ck3 = 2506 ck3 = 2517 } # Altinum -> MESTRE, VENEZIA + link = { autogenerated = yes imp = 3598 ck3 = 2506 ck3 = 2517 } # Altinum -> MESTRE, VENEZIA link = { autogenerated = yes imp = 3599 ck3 = 2505 } # Tarvisium -> TREVISO link = { autogenerated = yes imp = 143 ck3 = 2504 } # Brundulum -> CHIOGGIA - link = { imp = 3594 ck3 = 2503 ck3 = 8767 } # Patavium -> PADUA, Malamacco - link = { imp = 3589 imp = 3584 imp = 3590 ck3 = 2501 } # Hostilia, Verona, Auraei -> VERONA + link = { autogenerated = yes imp = 3594 ck3 = 2503 ck3 = 8767 } # Patavium -> PADUA, Malamacco + link = { autogenerated = yes imp = 3589 imp = 3584 imp = 3590 ck3 = 2501 } # Hostilia, Verona, Auraei -> VERONA + link = { autogenerated = yes imp = 3600 ck3 = 2500 } # Acelum -> VICENZA link = { autogenerated = yes imp = 2202 ck3 = 25 } # NagnatiaOrientalis -> BELCOO - link = { imp = 12886 imp = 5119 ck3 = 2499 } # Feltrini, IMPASSIBLE TERRAIN 119 -> TRENTO - link = { autogenerated = yes imp = 3585 imp = 3583 imp = 3586 ck3 = 2497 } # Bedriacum, Ariolica, Mantua -> MANTUA - link = { imp = 3662 ck3 = 2496 ck3 = 2502 } # Bretina -> GARDA, LESSINIA + link = { autogenerated = yes imp = 12886 imp = 5119 ck3 = 2499 } # Feltrini, IMPASSIBLE TERRAIN 119 -> TRENTO + link = { autogenerated = yes imp = 3583 imp = 3585 imp = 3586 ck3 = 2497 } # Ariolica, Bedriacum, Mantua -> MANTUA + link = { autogenerated = yes imp = 3662 ck3 = 2496 ck3 = 2502 } # Bretina -> GARDA, LESSINIA + link = { autogenerated = yes imp = 3660 imp = 3661 ck3 = 2495 } # Salurnis, Tridentium -> VAL CAMONICA link = { autogenerated = yes imp = 3581 ck3 = 2494 ck3 = 8762 } # Brixia -> BRESCIA, Chiari link = { autogenerated = yes imp = 3579 ck3 = 2493 } # Bergomum -> BERGAMO link = { autogenerated = yes imp = 3580 ck3 = 2492 } # LausPompeia -> CREMA @@ -5289,9 +5251,8 @@ link = { autogenerated = yes imp = 3562 ck3 = 2470 } # Vercellae -> VERCELLI link = { autogenerated = yes imp = 3555 ck3 = 2469 } # FulviiValentinum -> ASTI link = { autogenerated = yes imp = 3556 imp = 3553 ck3 = 2468 } # Statiellae, Libarna -> ACQUI - link = { autogenerated = yes imp = 3557 imp = 3550 ck3 = 2467 } # Crixia, Coeba -> ALBA - link = { autogenerated = yes imp = 3547 ck3 = 2465 } # Savo -> SAVONA - link = { autogenerated = yes imp = 3549 ck3 = 2466 } # Genua -> GENOA + link = { autogenerated = yes imp = 3557 ck3 = 2467 } # Crixia -> ALBA + link = { autogenerated = yes imp = 3549 ck3 = 2465 ck3 = 2466 } # Genua -> SAVONA, GENOA link = { autogenerated = yes imp = 2383 ck3 = 2464 } # Ferruciacum -> LA TREMOUILLE link = { autogenerated = yes imp = 2416 ck3 = 2463 } # Brivodurum -> SULLY-SUR-LOIRE link = { autogenerated = yes imp = 2355 ck3 = 2459 } # Vesontio -> ORNANS @@ -5377,7 +5338,6 @@ link = { autogenerated = yes imp = 2366 imp = 2367 ck3 = 2343 } # Allsincum, Decetia -> NEVERS link = { autogenerated = yes imp = 2418 ck3 = 2340 ck3 = 2341 } # Bandritum -> COURTENAY, CHATEAU-RENARD link = { autogenerated = yes imp = 2417 imp = 2479 ck3 = 2339 } # Belca, AdFines -> MONTARGIS - link = { autogenerated = yes imp = 2350 ck3 = 2338 } # Cenabum -> ORLEANS link = { autogenerated = yes imp = 2480 ck3 = 2337 ck3 = 2342 } # Montargia -> NEMOURS, MONTEREAU link = { autogenerated = yes imp = 2478 ck3 = 2336 } # Salioclita -> ETAMPES link = { autogenerated = yes imp = 2481 ck3 = 2335 } # Mellodunum -> MONTLHERY @@ -5393,7 +5353,8 @@ link = { autogenerated = yes imp = 2464 ck3 = 2324 ck3 = 2328 } # Ebrovicia -> MORTAGNE, VERNEUIL link = { autogenerated = yes imp = 2460 imp = 2461 ck3 = 2323 } # CarnutiaOrientalis, CarnutiaOccidentalis -> NOGENT-LE-ROTROU link = { autogenerated = yes imp = 2441 imp = 2462 ck3 = 2322 } # Autricum, Dorocas -> CHARTRES - link = { imp = 2457 ck3 = 2320 } # DunenseCastrum -> BEAUGENCY + link = { autogenerated = yes imp = 2457 imp = 2458 ck3 = 2321 } # DunenseCastrum, Vindocinium -> CHATEAUDUN + link = { autogenerated = yes imp = 2350 ck3 = 2320 ck3 = 2338 } # Cenabum -> BEAUGENCY, ORLEANS link = { autogenerated = yes imp = 12662 ck3 = 232 ck3 = 8731 } # Augo -> ROMERIKI, Nordmark link = { autogenerated = yes imp = 2425 imp = 2424 ck3 = 2319 } # Blesum, Tasciaca -> BLOIS link = { autogenerated = yes imp = 2408 ck3 = 2317 } # NoviodunumBiturigum -> OLIVET @@ -5401,8 +5362,8 @@ link = { autogenerated = yes imp = 2411 ck3 = 2315 } # Segivomicus -> VIERZON link = { autogenerated = yes imp = 2414 ck3 = 2314 } # CondateAvaricum -> SANCERRE link = { autogenerated = yes imp = 2412 ck3 = 2313 } # Nogeomagus -> HERRY - link = { imp = 2368 imp = 2347 ck3 = 2312 } # Tincontium, Avaricum -> BOURGES - link = { imp = 6035 ck3 = 231 } # Scandia -> AUSTFOLD + link = { autogenerated = yes imp = 2347 imp = 2368 ck3 = 2312 } # Avaricum, Tincontium -> BOURGES + link = { autogenerated = yes imp = 6035 ck3 = 231 ck3 = 285 } # Scandia -> AUSTFOLD, BORGARSYSLAR link = { autogenerated = yes imp = 2373 ck3 = 2309 } # Ricomagus -> SAINT-POURCAIN link = { autogenerated = yes imp = 2376 ck3 = 2308 ck3 = 2311 } # AquaeNeri -> MONTLUCON, ORVAL link = { autogenerated = yes imp = 2374 ck3 = 2307 ck3 = 2310 } # Arthona -> MOULINS, BOURBON-LARCHEMBAULT @@ -5415,7 +5376,7 @@ link = { autogenerated = yes imp = 6034 ck3 = 230 } # Scandia -> RANIRIKI link = { autogenerated = yes imp = 2166 ck3 = 23 } # Gangani -> ATHENRY link = { autogenerated = yes imp = 2299 ck3 = 2299 } # Biliomagus -> THIERS - link = { imp = 2298 ck3 = 2295 ck3 = 2290 ck3 = 2292 } # Brivas -> LA TOUR, MERCAEUR, MURAT + link = { autogenerated = yes imp = 2298 ck3 = 2295 ck3 = 2290 } # Brivas -> LA TOUR, MERCAEUR link = { autogenerated = yes imp = 2337 ck3 = 2294 } # Argenta -> AURILLAC link = { autogenerated = yes imp = 6012 ck3 = 229 ck3 = 318 ck3 = 75 } # Scandia -> BAGAHUS, KUNGAHALLA, ONSALA link = { autogenerated = yes imp = 2284 ck3 = 2288 } # Augustonemetum -> MONTEPENSIER @@ -5481,11 +5442,11 @@ link = { autogenerated = yes imp = 3867 ck3 = 223 ck3 = 82 } # SiguloniaSeptentrionalis -> YCOST, RINGKOBING link = { autogenerated = yes imp = 2262 ck3 = 2229 } # Segodunum -> LA PEYRADE link = { autogenerated = yes imp = 2268 ck3 = 2228 } # Carantomagus -> LA SALLE - link = { imp = 2296 ck3 = 2223 ck3 = 2291 ck3 = 2224 } # Condate -> GEVAUDAN, LANGEAC, SAINT-FLOUR + link = { autogenerated = yes imp = 2296 ck3 = 2223 } # Condate -> GEVAUDAN link = { autogenerated = yes imp = 2295 ck3 = 2222 } # AdSilanum -> MILAU link = { autogenerated = yes imp = 2285 ck3 = 2221 ck3 = 2227 } # Gabalum -> MENDE, MARVEJOLS link = { autogenerated = yes imp = 3872 ck3 = 222 } # EudosiaCentralis -> ORMSTRUP - link = { imp = 2297 imp = 5049 ck3 = 2218 } # Cebennia, IMPASSIBLE TERRAIN 049 -> CEVENNES + link = { autogenerated = yes imp = 2297 imp = 5049 ck3 = 2218 } # Cebennia, IMPASSIBLE TERRAIN 049 -> CEVENNES link = { autogenerated = yes imp = 2311 ck3 = 2217 ck3 = 2063 } # AlbaHelviorum -> ALES, VIVIERS link = { autogenerated = yes imp = 2316 imp = 2317 ck3 = 2216 } # Staturnae, Ucetia -> USES link = { autogenerated = yes imp = 2265 ck3 = 2213 ck3 = 2214 } # Tolosa -> CASTELSARRASIN, TOULOUSE @@ -5498,7 +5459,7 @@ link = { autogenerated = yes imp = 2275 ck3 = 2205 } # Elimberrum -> LOMAGNE link = { autogenerated = yes imp = 2271 ck3 = 2204 } # Lactora -> LECTOURE link = { autogenerated = yes imp = 2273 ck3 = 2203 } # Eleusa -> FESENSAC - link = { imp = 2249 imp = 2247 ck3 = 2202 } # Tarba, Beneharnum -> PARDIAC + link = { autogenerated = yes imp = 2249 ck3 = 2202 } # Tarba -> PARDIAC link = { autogenerated = yes imp = 2250 ck3 = 2201 } # Atura -> ARMAGNAC link = { autogenerated = yes imp = 2281 ck3 = 2200 } # Ussubium -> GABARDAN link = { autogenerated = yes imp = 3864 ck3 = 220 ck3 = 60 } # AvioniaMaiores -> STRAND, RIBE @@ -5508,19 +5469,19 @@ link = { autogenerated = yes imp = 2245 ck3 = 2197 } # Stomatas -> LANGON link = { autogenerated = yes imp = 2241 ck3 = 2196 } # Telonnum -> ALBRET link = { autogenerated = yes imp = 2242 ck3 = 2195 } # Coequosa -> TARTAS - link = { imp = 2243 ck3 = 2193 ck3 = 2194 } # AquaeTarbellicae -> PAU, TURSAN + link = { autogenerated = yes imp = 2243 ck3 = 2193 } # AquaeTarbellicae -> PAU link = { autogenerated = yes imp = 3013 ck3 = 2192 } # Magetobria -> LURE link = { autogenerated = yes imp = 2363 ck3 = 2191 } # PonsAriola -> QUINGEY link = { autogenerated = yes imp = 3032 imp = 2445 ck3 = 2189 } # Curmiliaca, Augustomagus -> CLERMONT link = { autogenerated = yes imp = 2493 ck3 = 2188 } # Isara -> NOYON - link = { autogenerated = yes imp = 3044 ck3 = 2187 } # Sefulae -> SAINT-QUENTIN - link = { autogenerated = yes imp = 3038 ck3 = 2186 } # Nemetacum -> PERONNE + link = { autogenerated = yes imp = 3044 ck3 = 2186 ck3 = 2187 } # Sefulae -> PERONNE, SAINT-QUENTIN link = { autogenerated = yes imp = 3031 ck3 = 2185 } # SamarobrivaAmbianorum -> CORBIE link = { autogenerated = yes imp = 3035 ck3 = 2184 } # CaletiaMajoris -> AMIENS link = { autogenerated = yes imp = 2446 ck3 = 2183 } # Caesaromagus -> BEAUVAIS link = { autogenerated = yes imp = 3034 ck3 = 2182 } # CaletiaMinoris -> AUMALE link = { autogenerated = yes imp = 2472 ck3 = 2181 ck3 = 2190 } # BrivaIsarae -> MANTES, BEAUMONT link = { autogenerated = yes imp = 2469 imp = 2473 ck3 = 2180 } # Ritumagus, Avalocum -> GISORS + link = { autogenerated = yes imp = 2443 ck3 = 2179 } # Rotomagus -> ROUEN link = { autogenerated = yes imp = 2471 ck3 = 2178 } # GaletiaOrientalis -> EU link = { autogenerated = yes imp = 2470 ck3 = 2177 } # GaletiaOccidentalis -> DIEPPE link = { autogenerated = yes imp = 2468 ck3 = 2176 } # Iuliobona -> FECAMP @@ -5536,10 +5497,10 @@ link = { autogenerated = yes imp = 3308 imp = 2209 ck3 = 2166 } # Conbaristum, SipiaOccidentalis -> CHATEAUBRIANT link = { autogenerated = yes imp = 2143 imp = 2144 ck3 = 2165 } # CondateRedonum, Sipia -> RENNES link = { autogenerated = yes imp = 2141 imp = 2142 ck3 = 2164 } # Reginca, FanumMartis -> SAINT-MALO - link = { imp = 2146 imp = 2156 ck3 = 2163 } # Matriniaca, Coriosolitum -> PORHOET + link = { autogenerated = yes imp = 2146 ck3 = 2163 } # Matriniaca -> PORHOET link = { autogenerated = yes imp = 2157 ck3 = 2162 } # Osismetum -> SAINT-BRIEUC link = { autogenerated = yes imp = 2158 ck3 = 2161 } # Tregoritum -> TREGUIER - link = { imp = 2149 ck3 = 2160 } # Sulis -> ROHAN + link = { autogenerated = yes imp = 2149 imp = 2156 ck3 = 2160 } # Sulis, Coriosolitum -> ROHAN link = { autogenerated = yes imp = 12888 ck3 = 216 ck3 = 217 } # Ahvenanmaa -> SUND, JOMALA link = { autogenerated = yes imp = 2150 imp = 2159 ck3 = 2159 } # Vorgium, Goelloria -> CORNOUAILLES link = { autogenerated = yes imp = 2160 ck3 = 2158 } # Leonitia -> LEON @@ -5565,7 +5526,7 @@ link = { autogenerated = yes imp = 3033 ck3 = 2137 } # Briga -> ABBEVILLE link = { autogenerated = yes imp = 3036 ck3 = 2136 } # Lintomagus -> MONTREUIL-SUR-MER link = { autogenerated = yes imp = 3037 ck3 = 2135 } # Durocoregum -> HESDIN - link = { autogenerated = yes imp = 3039 ck3 = 2134 } # Teucera -> AIRE + link = { autogenerated = yes imp = 3039 imp = 3038 ck3 = 2134 } # Teucera, Nemetacum -> AIRE link = { autogenerated = yes imp = 3027 ck3 = 2133 } # Tarvenna -> SAINT-OMER link = { autogenerated = yes imp = 3028 ck3 = 2131 } # CastellumMenapiorum -> DUNKIRK link = { autogenerated = yes imp = 3026 ck3 = 2130 ck3 = 2132 } # Gesoriacum -> CALAIS, BOULOGNE @@ -5599,26 +5560,27 @@ link = { autogenerated = yes imp = 3719 ck3 = 2094 ck3 = 2448 } # Belsonancum -> LA ROCHE, LIMBOURG link = { autogenerated = yes imp = 3727 ck3 = 2093 } # Marcomagus -> DUREN link = { autogenerated = yes imp = 3718 imp = 3716 ck3 = 2092 } # AquaeGranni, Iullacum -> AACHEN - link = { autogenerated = yes imp = 3703 ck3 = 2091 ck3 = 2686 } # BataviaMeridionalis -> BOUILLON, CHINY - link = { autogenerated = yes imp = 3684 ck3 = 2090 } # Nasagus -> BASTOGNE - link = { imp = 3729 ck3 = 2089 } # Minerica -> DIEKIRCH + link = { autogenerated = yes imp = 3703 ck3 = 2091 } # BataviaMeridionalis -> BOUILLON + link = { autogenerated = yes imp = 3684 ck3 = 2090 ck3 = 2686 } # Nasagus -> BASTOGNE, CHINY + link = { autogenerated = yes imp = 3729 imp = 3730 ck3 = 2089 } # Minerica, Ausava -> DIEKIRCH link = { autogenerated = yes imp = 3717 ck3 = 2088 ck3 = 2682 ck3 = 2683 } # Novaesium -> COLOGNE, NEUSS, ESCHWEILER link = { autogenerated = yes imp = 3720 ck3 = 2087 } # Bonna -> BONN - link = { autogenerated = yes imp = 7738 ck3 = 2086 ck3 = 2685 } # Remagus -> ADENAU, NAUENAHR - link = { imp = 3730 ck3 = 2085 } # Ausava -> BEDA + link = { autogenerated = yes imp = 3721 ck3 = 2086 } # Confluentes -> ADENAU + link = { autogenerated = yes imp = 7738 ck3 = 2685 } # Remagus -> NAUENAHR + link = { autogenerated = yes imp = 3726 ck3 = 2085 ck3 = 2697 } # Beda -> BEDA, COCHEM link = { autogenerated = yes imp = 3722 ck3 = 2084 } # Vosolvia -> KOBLENZ link = { autogenerated = yes imp = 3724 ck3 = 2083 ck3 = 2696 } # Belginum -> TRIER, SPONHEIM - link = { autogenerated = yes imp = 3687 ck3 = 2082 } # Caranusca -> LUXEMBOURG + link = { autogenerated = yes imp = 3687 imp = 3688 ck3 = 2082 } # Caranusca, Ricciacum -> LUXEMBOURG link = { autogenerated = yes imp = 2455 imp = 2498 ck3 = 2081 } # Viriodunum, Sauriciacum -> SAINT-MIHIEL link = { autogenerated = yes imp = 3002 ck3 = 2080 } # Pannorum -> HAYANGE link = { autogenerated = yes imp = 2453 ck3 = 2079 } # Tullum -> TOUL - link = { imp = 3016 ck3 = 2078 ck3 = 2713 } # VicusBodatius -> EPINAL, BLANKENBERG + link = { autogenerated = yes imp = 3016 ck3 = 2078 ck3 = 2713 ck3 = 2714 } # VicusBodatius -> EPINAL, BLANKENBERG, SALM link = { autogenerated = yes imp = 2427 ck3 = 2076 } # Segobodium -> BESANCON - link = { imp = 2361 ck3 = 2073 } # Crucinae -> LONS-LE-SAUNIER - link = { imp = 3628 ck3 = 2072 } # Filomusiacum -> SALINS + link = { autogenerated = yes imp = 2361 ck3 = 2073 } # Crucinae -> LONS-LE-SAUNIER + link = { autogenerated = yes imp = 3628 ck3 = 2072 } # Filomusiacum -> SALINS link = { autogenerated = yes imp = 3626 imp = 2357 imp = 2358 ck3 = 2071 } # Antro, Brioratis, Isarnodurum -> BOURG link = { autogenerated = yes imp = 2301 imp = 2356 ck3 = 2070 } # Lugdunum, Ludna -> Villars - link = { autogenerated = yes imp = 3622 imp = 3621 ck3 = 2069 } # Isarnodurum, Augusta -> BELLEY + link = { autogenerated = yes imp = 3621 imp = 3622 ck3 = 2069 } # Augusta, Isarnodurum -> BELLEY link = { autogenerated = yes imp = 3519 ck3 = 2067 } # Vasio -> VAISON link = { autogenerated = yes imp = 3525 imp = 3526 imp = 3527 ck3 = 2066 } # Vocontiorum, Darentiaca, LucusAugusti -> DIE link = { autogenerated = yes imp = 2302 ck3 = 2065 ck3 = 2297 } # Seguslavorum -> LYON, FEURS @@ -5626,7 +5588,6 @@ link = { autogenerated = yes imp = 2320 ck3 = 2062 } # Arausio -> ORANGE link = { autogenerated = yes imp = 3528 imp = 3520 ck3 = 2061 } # MonsSeleucus, Segustero -> FORCALQUIER link = { autogenerated = yes imp = 2324 ck3 = 2060 } # AptaIula -> APT - link = { imp = 12654 ck3 = 206 ck3 = 184 ck3 = 205 } # Veapse -> SOMERO, TELJA, HAMEENLINNA link = { autogenerated = yes imp = 2322 imp = 2321 ck3 = 2059 } # Carpentorate, Avennio -> AVIGNON link = { autogenerated = yes imp = 3018 ck3 = 2058 } # Rubiacum -> MULHOUSE link = { autogenerated = yes imp = 3010 ck3 = 2057 ck3 = 2075 } # Valtudurum -> MONTPELLIARD, MORTEAU @@ -5637,9 +5598,9 @@ link = { autogenerated = yes imp = 3632 ck3 = 2050 } # Salodurum -> BASEL link = { autogenerated = yes imp = 3631 ck3 = 2049 } # Petinesca -> BIEL link = { autogenerated = yes imp = 3630 ck3 = 2046 ck3 = 2460 } # Aventicum -> BERN, NEUCHATEL - link = { autogenerated = yes imp = 3558 imp = 3559 ck3 = 2045 } # Vardagate, Hasta -> CHIERI + link = { autogenerated = yes imp = 3559 imp = 3558 ck3 = 2045 } # Hasta, Vardagate -> CHIERI link = { autogenerated = yes imp = 3564 imp = 3563 ck3 = 2044 } # Polentia, ForumVibii -> SALUZZO - link = { autogenerated = yes imp = 3548 ck3 = 2043 ck3 = 8763 } # AugustaBagiennorum -> CUNEO, Mondovi + link = { autogenerated = yes imp = 3548 imp = 3530 ck3 = 2043 } # AugustaBagiennorum, MustiaeCalmes -> CUNEO link = { autogenerated = yes imp = 3551 ck3 = 2041 ck3 = 2042 } # AugustaTaurinorum -> TURIN, PINEROLO link = { autogenerated = yes imp = 3611 ck3 = 2040 } # AugustaPraetoria -> IVREA link = { autogenerated = yes imp = 3629 ck3 = 2037 ck3 = 2038 ck3 = 2074 ck3 = 785 } # Lausonna -> LAUSANNE, MARTIGNY, PONTARLIER, German Mountains 12 @@ -5653,14 +5614,14 @@ link = { autogenerated = yes imp = 3518 imp = 3522 ck3 = 2025 } # ApollinarisReiorum, Sanitium -> Castellane link = { autogenerated = yes imp = 3521 imp = 3541 imp = 3542 ck3 = 2024 } # Tegulata, ForumIulii, ForumVoconii -> DRAGUGNIAN link = { autogenerated = yes imp = 3523 ck3 = 2023 } # Verunia -> AIX - link = { autogenerated = yes imp = 3546 imp = 3545 ck3 = 2022 } # AlbumIngaunum, AlbumIntimilium -> MONACO + link = { autogenerated = yes imp = 3546 imp = 3545 imp = 3547 ck3 = 2022 } # AlbumIngaunum, AlbumIntimilium, Savo -> MONACO link = { autogenerated = yes imp = 3544 ck3 = 2021 } # Cemenellum -> NICE link = { autogenerated = yes imp = 3540 imp = 3517 ck3 = 2019 } # Pergantion, Tauroention -> TOULON link = { autogenerated = yes imp = 2325 imp = 2323 ck3 = 2018 } # Massalia, AquaeSextiae -> MARSEILLE link = { autogenerated = yes imp = 2319 ck3 = 2017 } # Arelate -> ARLES link = { autogenerated = yes imp = 2314 imp = 2318 ck3 = 2016 } # Nemausus, Rhodanousia -> NIMES link = { autogenerated = yes imp = 2313 imp = 2312 imp = 2315 ck3 = 2015 } # Sextantio, Andusia, Briginnum -> MONTPELLIER - link = { imp = 2260 ck3 = 2014 } # Agatha -> AGDE + link = { autogenerated = yes imp = 2260 ck3 = 2014 } # Agatha -> AGDE link = { autogenerated = yes imp = 2259 ck3 = 2013 } # Baeterrae -> BEZIERS link = { autogenerated = yes imp = 2240 ck3 = 2012 } # Lapurdum -> BAYONNE link = { autogenerated = yes imp = 2244 ck3 = 2011 } # Carasa -> OLORON @@ -5677,7 +5638,7 @@ link = { autogenerated = yes imp = 2200 ck3 = 20 } # AuteniaOccidentalis -> GALWAY link = { autogenerated = yes imp = 1404 ck3 = 1999 } # FlaviumVelares -> GUADIATO link = { autogenerated = yes imp = 1406 ck3 = 1998 } # Artigi -> DON LLORENTE - link = { imp = 1407 imp = 1408 ck3 = 1997 } # Iulipa, Phornakis -> HORNACHOS + link = { autogenerated = yes imp = 1408 imp = 1407 ck3 = 1997 } # Phornakis, Iulipa -> HORNACHOS link = { autogenerated = yes imp = 1403 imp = 1402 imp = 1436 ck3 = 1996 } # Caspiana, Perceiana, Metellinum -> MEDELLIN link = { autogenerated = yes imp = 1442 imp = 1372 imp = 1378 imp = 1441 ck3 = 1995 } # Mariana, Segida, Epora, Mellaria -> CORDOBA link = { autogenerated = yes imp = 1409 imp = 1373 imp = 1405 imp = 1411 imp = 1412 ck3 = 1994 } # Munigua, Naeva, Regina, Iporca, Lacunis -> CANTILLANA @@ -5685,10 +5646,10 @@ link = { autogenerated = yes imp = 1417 ck3 = 1992 } # Arucci -> ZAFRA link = { autogenerated = yes imp = 1415 imp = 1359 ck3 = 1991 } # TurduliaMeridionalis, Ilpulla -> NIEBLA link = { autogenerated = yes imp = 1418 imp = 1401 ck3 = 1990 } # Seria, Ugultunia -> ILERENA - link = { imp = 1439 imp = 1459 imp = 1460 ck3 = 1989 } # Mirobriga, Messicia, Metturicia -> ALMADER - link = { autogenerated = yes imp = 1444 imp = 1379 imp = 1440 imp = 1446 imp = 1447 ck3 = 1988 } # Solia, Sucia, Baedro, AdDecemum, MarianusMons -> PEDROCHE + link = { autogenerated = yes imp = 1459 imp = 1439 imp = 1460 ck3 = 1989 } # Messicia, Mirobriga, Metturicia -> ALMADER + link = { autogenerated = yes imp = 1444 imp = 1440 imp = 1446 imp = 1447 ck3 = 1988 } # Solia, Baedro, AdDecemum, MarianusMons -> PEDROCHE link = { autogenerated = yes imp = 1448 imp = 1449 ck3 = 1987 } # Carcuvium, Oretum -> ALARCOS - link = { autogenerated = yes imp = 1443 imp = 1380 imp = 1384 ck3 = 1986 } # Edeba, Isiturgis, Baecula -> ANDUJAR + link = { autogenerated = yes imp = 1443 imp = 1379 imp = 1380 imp = 1384 ck3 = 1986 } # Edeba, Sucia, Isiturgis, Baecula -> ANDUJAR link = { autogenerated = yes imp = 1399 imp = 1286 imp = 1381 imp = 1382 ck3 = 1985 } # Baesucci, Ilugo, Castulo, Vivatia -> UBEDA link = { autogenerated = yes imp = 1389 imp = 1375 imp = 1388 imp = 1390 imp = 1391 ck3 = 1984 } # AdGemellas, Lauro, IlipulaMinor, Igabrum, Cisimbrium -> ANTEQUERA link = { autogenerated = yes imp = 1364 imp = 1354 imp = 1365 imp = 1368 imp = 1369 ck3 = 1983 } # Arunda, Carissa, Nescania, Irni, Urso -> MORON @@ -5701,21 +5662,18 @@ link = { autogenerated = yes imp = 1285 ck3 = 1975 } # Accis -> GUADIZ link = { autogenerated = yes imp = 1280 imp = 1279 ck3 = 1974 } # Tagili, Tutugi -> BAZA link = { autogenerated = yes imp = 1277 imp = 1039 imp = 1275 ck3 = 1971 } # AdMorum, Asso, Elioucroca -> CARAVACA DE LA CRUZ - link = { imp = 1252 imp = 1251 ck3 = 1973 } # Ilounon, Segisa -> HUESCAR - link = { imp = 1040 ck3 = 1970 } # Begastrum -> CIEZA - link = { autogenerated = yes imp = 12651 ck3 = 197 } # Juomo -> VEHKALAHTI + link = { autogenerated = yes imp = 1040 imp = 1251 ck3 = 1970 } # Begastrum, Segisa -> CIEZA link = { autogenerated = yes imp = 1248 ck3 = 1969 } # Setabis -> ALMANSA - link = { imp = 1253 imp = 1262 ck3 = 1968 } # Elotana, ContestaniaMeridionalis -> SEGURA + link = { autogenerated = yes imp = 1253 imp = 1252 imp = 1262 ck3 = 1968 } # Elotana, Ilounon, ContestaniaMeridionalis -> SEGURA link = { autogenerated = yes imp = 1254 imp = 1027 ck3 = 1967 } # Salika, Libisosa -> ALCARAZ - link = { imp = 1258 ck3 = 2004 } # Mariana -> REOLID - link = { imp = 1257 imp = 1026 imp = 1450 ck3 = 1966 } # Mentesa, Laminium, AdTurres -> MENTESA + link = { autogenerated = yes imp = 1257 imp = 1026 imp = 1258 imp = 1450 ck3 = 1966 } # Mentesa, Laminium, Mariana, AdTurres -> MENTESA link = { autogenerated = yes imp = 1271 ck3 = 1965 } # LobetaniaMeridionalis -> TOMELLOSO - link = { imp = 1269 imp = 1268 ck3 = 1964 } # LobetaniaCentralis, LobetaniaOrientalis -> ALCAZAR + link = { autogenerated = yes imp = 1269 imp = 1268 ck3 = 1964 } # LobetaniaCentralis, LobetaniaOrientalis -> ALCAZAR link = { autogenerated = yes imp = 1451 ck3 = 1963 } # AdMurum -> CALATRAVA link = { autogenerated = yes imp = 1455 ck3 = 1962 } # Uloquia -> LA PUEBLA DE MONTALBAN link = { autogenerated = yes imp = 1463 ck3 = 1961 } # Aeturiquia -> CABANEROS link = { autogenerated = yes imp = 1458 ck3 = 1960 } # Duniquia -> MALAGON - link = { autogenerated = yes imp = 1457 imp = 1272 imp = 1452 ck3 = 1959 } # Solicia, LobetaniaOccidentalis, Alaba -> QUINTANAR + link = { autogenerated = yes imp = 1452 imp = 1272 imp = 1457 ck3 = 1959 } # Alaba, LobetaniaOccidentalis, Solicia -> QUINTANAR link = { autogenerated = yes imp = 1024 imp = 1025 imp = 1456 ck3 = 1958 } # Toletum, Consabura, Pilonicoria -> OCANA link = { autogenerated = yes imp = 1461 imp = 1462 ck3 = 1957 } # Bocouriqua, Aelariquia -> LA JARA link = { autogenerated = yes imp = 1454 imp = 1435 ck3 = 1956 } # CalvriaMeridionalis, Lacipea -> CASTILBLANCO @@ -5728,7 +5686,7 @@ link = { autogenerated = yes imp = 1256 ck3 = 1949 } # Parietinae -> ALARCON link = { autogenerated = yes imp = 1261 ck3 = 1948 } # AdPutea -> VALERIA link = { autogenerated = yes imp = 1028 imp = 1233 ck3 = 1947 } # Valeria, ArevaciaSuperioris -> CUENCA - link = { imp = 1266 imp = 1217 ck3 = 1946 } # EdetaniaInferioris, Lobeton -> ADEMUZ + link = { autogenerated = yes imp = 1266 ck3 = 1946 } # EdetaniaInferioris -> ADEMUZ link = { autogenerated = yes imp = 1232 imp = 1229 ck3 = 1945 } # ArevaciaInferioris, Comfluenta -> ALTO TAJO link = { autogenerated = yes imp = 1210 imp = 1224 ck3 = 1944 } # Opta, Loutia -> ZURITA link = { autogenerated = yes imp = 1214 imp = 1247 ck3 = 1943 } # Carae, IlercavoniaSeptentrionalis -> SIERRA DE SAN JUST @@ -5738,7 +5696,7 @@ link = { autogenerated = yes imp = 1263 imp = 1250 imp = 1265 ck3 = 1939 } # ContestaniaSeptentrionalis, Sucro, ContestaniaCentralis -> REQUENA link = { autogenerated = yes imp = 1234 imp = 1237 imp = 1267 ck3 = 1938 } # Edeta, EdetaniaCentralis, EdetaniaSuperioris -> MONTANEJOS link = { autogenerated = yes imp = 1216 imp = 1238 ck3 = 1937 } # Urbiaca, EdetaniaSeptentrionalis -> TERUEL - link = { imp = 1231 ck3 = 1936 } # ArevaciaRelicta -> ALBARRACIN + link = { autogenerated = yes imp = 1231 imp = 1217 ck3 = 1936 } # ArevaciaRelicta, Lobeton -> ALBARRACIN link = { autogenerated = yes imp = 1230 imp = 1228 ck3 = 1935 } # ArevaciaDesolata, Colenda -> MOLINA link = { autogenerated = yes imp = 1213 ck3 = 1934 } # Segeda -> DAROCA link = { autogenerated = yes imp = 1222 ck3 = 1933 } # Okilis -> ABLANQUE @@ -5749,14 +5707,14 @@ link = { autogenerated = yes imp = 1203 ck3 = 1928 } # Titulcia -> ARGANDA link = { autogenerated = yes imp = 1225 imp = 1223 ck3 = 1927 } # Tucris, Segontia -> GUDALAJARA link = { autogenerated = yes imp = 1219 ck3 = 1926 } # UxamaArgaela -> UCEDA - link = { autogenerated = yes imp = 1184 imp = 1191 imp = 1192 ck3 = 1925 } # VaccaeiaRelicta, Rauda, Pintia -> CUELLAR + link = { autogenerated = yes imp = 1191 imp = 1184 imp = 1192 ck3 = 1925 } # Rauda, VaccaeiaRelicta, Pintia -> CUELLAR link = { autogenerated = yes imp = 1193 imp = 1022 imp = 1177 imp = 1205 ck3 = 1924 } # Confluentia, Segovia, Cauca, CarpetanaLuga -> SEGOVIA link = { autogenerated = yes imp = 1206 imp = 1195 ck3 = 1923 } # Complutum, Miaccum -> MADRID link = { autogenerated = yes imp = 1196 imp = 1194 ck3 = 1921 } # VaccaeiaCentralis, Avila -> LA ADRADA - link = { imp = 1023 imp = 1202 ck3 = 1920 } # Mantua, Vaddua -> MAQUEDA + link = { autogenerated = yes imp = 1202 imp = 1023 ck3 = 1920 } # Vaddua, Mantua -> MAQUEDA link = { autogenerated = yes imp = 1204 ck3 = 1919 } # CarpetaniaSeptentrionalis -> TOLEDO link = { autogenerated = yes imp = 1438 imp = 1200 ck3 = 1918 } # Caesarobriga, CarpetaniaSuperioris -> TALAVERA - link = { autogenerated = yes imp = 1201 imp = 1437 ck3 = 1917 } # CarpetaniaInferioris, Augustobriga -> ALMARAZ + link = { autogenerated = yes imp = 1437 imp = 1201 ck3 = 1917 } # Augustobriga, CarpetaniaInferioris -> ALMARAZ link = { autogenerated = yes imp = 1198 imp = 1199 imp = 1304 ck3 = 1916 } # Coloricum, Platanus, Caellonico -> SIERRA DE GREDOS link = { autogenerated = yes imp = 1176 ck3 = 1915 ck3 = 1922 } # Nivaria -> OLMEDO, CORACERA link = { autogenerated = yes imp = 1180 imp = 1197 ck3 = 1914 } # VettoniaDeserta, AdLippos -> MEDINA DEL CAMPO @@ -5784,8 +5742,8 @@ link = { autogenerated = yes imp = 1243 imp = 1011 ck3 = 1891 } # Sedetania, Celsa -> BELCHITE link = { autogenerated = yes imp = 1016 ck3 = 1890 } # CalagurrisIulia -> TUDELA link = { autogenerated = yes imp = 1081 ck3 = 1889 } # Carta -> TAFALLA - link = { imp = 1072 imp = 1088 ck3 = 1888 } # Gallicum, Ilurcis -> EJEA - link = { autogenerated = yes imp = 1089 imp = 1013 imp = 1015 imp = 1212 ck3 = 1887 } # Cascantum, Augusta, Bilbilis, Sermonae -> ZARAGOZA + link = { autogenerated = yes imp = 1088 imp = 1072 ck3 = 1888 } # Ilurcis, Gallicum -> EJEA + link = { autogenerated = yes imp = 1013 imp = 1015 imp = 1089 imp = 1212 ck3 = 1887 } # Augusta, Bilbilis, Cascantum, Sermonae -> ZARAGOZA link = { autogenerated = yes imp = 1071 ck3 = 1886 } # Presuina -> ZUERA link = { autogenerated = yes imp = 1070 ck3 = 1885 } # GallikaPhlaouia -> SARINENA link = { autogenerated = yes imp = 1068 ck3 = 1884 ck3 = 1869 ck3 = 8800 } # Aeso -> BALAGUER, ANDORRA, Pallars Sobira @@ -5800,7 +5758,7 @@ link = { autogenerated = yes imp = 1066 ck3 = 1874 ck3 = 8795 } # Mendiculeia -> BARBASTRO, Monzon link = { autogenerated = yes imp = 1014 imp = 1073 imp = 1065 ck3 = 1873 } # Osca, Bortina, Caum -> HUESCA link = { autogenerated = yes imp = 1067 ck3 = 1872 } # Labitolosa -> AINSA - link = { imp = 1069 ck3 = 1871 ck3 = 8799 ck3 = 1870 } # AdFines -> RIBAGORZA, Pallars Jussa, VIELHA + link = { autogenerated = yes imp = 1069 ck3 = 1871 ck3 = 8799 } # AdFines -> RIBAGORZA, Pallars Jussa link = { autogenerated = yes imp = 1059 ck3 = 1868 } # Urgellum -> PUIGCERDA link = { autogenerated = yes imp = 1008 ck3 = 1867 } # Sebendounon -> OLOT link = { autogenerated = yes imp = 2257 ck3 = 1866 } # Ruscino -> PERPIGNAN @@ -5830,6 +5788,7 @@ link = { autogenerated = yes imp = 1353 imp = 1342 imp = 1343 ck3 = 1842 } # Urgia, Hasta, Nabrissa -> JEREZ link = { autogenerated = yes imp = 1358 imp = 1341 ck3 = 1841 } # Olontigi, Tartessos -> ALMONTE link = { autogenerated = yes imp = 1340 ck3 = 1840 } # AdRubras -> HUELVA + link = { autogenerated = yes imp = 12654 ck3 = 184 ck3 = 206 } # Veapse -> TELJA, SOMERO link = { autogenerated = yes imp = 1339 ck3 = 1839 } # Praesidium -> AYAMONTE link = { autogenerated = yes imp = 1416 ck3 = 1837 ck3 = 1838 } # TurduliaCentralis -> MOURA, SERPA link = { autogenerated = yes imp = 1419 imp = 1421 ck3 = 1836 } # TurduliaSeptentrionalis, Luserium -> OLIVENZA @@ -5847,17 +5806,15 @@ link = { autogenerated = yes imp = 1045 ck3 = 1824 } # AsturicaAugusta -> VILLABLINO link = { autogenerated = yes imp = 1123 imp = 1126 ck3 = 1823 } # AsturiaCentralis, AsturiaOrientalis -> CANGAS DEL NARCEA link = { autogenerated = yes imp = 1122 imp = 1117 ck3 = 1822 } # AsturiaMeridionalis, Memoriana -> SARRIA - link = { imp = 1127 imp = 1121 ck3 = 1820 } # BergidumFlavium, InteramniumFlavium -> PONFERRADA - link = { imp = 1147 imp = 1145 ck3 = 1819 } # Equasia, Gemestarum -> MONFORTE DE LEMOS - link = { autogenerated = yes imp = 1170 ck3 = 1818 } # Relicta -> MONTERREI - link = { imp = 1113 ck3 = 1817 } # Pallontion -> RIANO + link = { autogenerated = yes imp = 1127 imp = 1121 imp = 8153 ck3 = 1820 } # BergidumFlavium, InteramniumFlavium, Hispania Impassable -> PONFERRADA + link = { autogenerated = yes imp = 1170 imp = 8152 ck3 = 1818 } # Relicta, Hispania Impassable -> MONTERREI + link = { autogenerated = yes imp = 1113 imp = 8148 ck3 = 1817 } # Pallontion, Hispania Impassable -> RIANO link = { autogenerated = yes imp = 1119 imp = 1111 ck3 = 1816 } # LegioGemina, Equosera -> LEON link = { autogenerated = yes imp = 1020 imp = 1112 ck3 = 1815 } # Iuliobriga, Caiellum -> REINOSA link = { autogenerated = yes imp = 1110 ck3 = 1814 } # Camarica -> AMAYA link = { autogenerated = yes imp = 1102 imp = 1097 imp = 1100 imp = 1103 ck3 = 1813 } # Bravum, Salionka, Tritium, SegisamaIulia -> MIRANDA DE EBRO - link = { imp = 1104 imp = 1105 ck3 = 1812 } # SegontiaParamika, OuxamaBarka -> MEDINA DE POMAR - link = { imp = 1094 ck3 = 1903 } # Auca -> ARNEDO - link = { autogenerated = yes imp = 1096 ck3 = 1811 } # Virovesca -> NAJERA + link = { autogenerated = yes imp = 1104 imp = 1105 imp = 8151 ck3 = 1812 } # SegontiaParamika, OuxamaBarka, Hispania Impassable -> MEDINA DE POMAR + link = { autogenerated = yes imp = 1096 imp = 1094 ck3 = 1811 } # Virovesca, Auca -> NAJERA link = { autogenerated = yes imp = 1086 imp = 1085 ck3 = 1810 } # TritiumMagallum, Barbariana -> LOGRONO link = { autogenerated = yes imp = 1087 imp = 1084 ck3 = 1809 } # Vareia, Beturri -> LIZARRA link = { autogenerated = yes imp = 1098 imp = 1095 imp = 1101 ck3 = 1808 } # Veleia, Atiliana, Vindeleia -> ALAVA @@ -5865,12 +5822,12 @@ link = { autogenerated = yes imp = 1082 imp = 1078 ck3 = 1806 } # Andelos, Pompelo -> PAMPLONA link = { autogenerated = yes imp = 1017 ck3 = 1805 } # Oiasso -> IRUN link = { autogenerated = yes imp = 1083 ck3 = 1804 } # Aracaeli -> IZURUM - link = { imp = 1106 imp = 1099 ck3 = 1803 } # Flaviobriga, Gebala -> BILIBIO + link = { autogenerated = yes imp = 1099 imp = 1106 ck3 = 1803 } # Gebala, Flaviobriga -> BILIBIO link = { autogenerated = yes imp = 1107 ck3 = 1802 } # Iuliobrigensium -> SANTANDER link = { autogenerated = yes imp = 1108 ck3 = 1801 } # Veseiasueca -> SANTIALLANA - link = { imp = 1152 ck3 = 1800 } # AquisQuerquennis -> LIMIA + link = { autogenerated = yes imp = 1152 imp = 8154 ck3 = 1800 } # AquisQuerquennis, Hispania Impassable -> LIMIA link = { autogenerated = yes imp = 2195 ck3 = 18 } # EblaniaOrientalis -> DUNDALK - link = { imp = 1146 ck3 = 1799 } # ForumGiguorrum -> OURENSE + link = { autogenerated = yes imp = 1147 imp = 1146 ck3 = 1799 } # Equasia, ForumGiguorrum -> OURENSE link = { autogenerated = yes imp = 1115 ck3 = 1798 } # AdMare -> VILLAVICIOSA link = { autogenerated = yes imp = 1116 ck3 = 1797 } # LucusAsturum -> OVIEDO link = { autogenerated = yes imp = 1114 ck3 = 1796 } # Gigia -> GIJON @@ -5907,10 +5864,11 @@ link = { autogenerated = yes imp = 1153 ck3 = 1766 } # Salacia -> GUIMARAES link = { autogenerated = yes imp = 1288 imp = 1050 imp = 1156 ck3 = 1765 } # Lamecum, AquaeFlaviae, VicusVagornicensis -> VILLA REAL link = { autogenerated = yes imp = 1164 imp = 1163 ck3 = 1764 } # Veniatia, Zoelarum -> MIRANDA DO DUORO - link = { imp = 1167 imp = 1048 imp = 1165 imp = 1166 imp = 1168 ck3 = 1763 } # AebocosiaMeridionalis, ForumLimicorum, Nemetobriga, AebocosiaSeptentrionalis, Pettavonium -> BRAGANCA + link = { autogenerated = yes imp = 1166 imp = 1048 imp = 1165 imp = 1167 imp = 1168 ck3 = 1763 } # AebocosiaSeptentrionalis, ForumLimicorum, Nemetobriga, AebocosiaMeridionalis, Pettavonium -> BRAGANCA link = { autogenerated = yes imp = 1154 imp = 1155 ck3 = 1762 } # AquaeOriginae, Germinae -> CHAVEZ link = { autogenerated = yes imp = 1151 ck3 = 1761 } # Limia -> BRAGA link = { autogenerated = yes imp = 1051 imp = 1289 ck3 = 1760 } # BracaraAugusta, Tongobriga -> PORTO + link = { autogenerated = yes imp = 12652 ck3 = 176 ck3 = 205 ck3 = 208 } # Nuorjo -> ESPOO, HAMEENLINNA, LAHTI link = { autogenerated = yes imp = 1291 ck3 = 1759 } # Langobriga -> AVEIRO link = { autogenerated = yes imp = 1293 imp = 1295 imp = 1296 ck3 = 1758 } # Aeminium, Areocelum, Elboconis -> COIMBRA link = { autogenerated = yes imp = 1294 ck3 = 1757 } # Conimbriga -> LEIRIA @@ -5921,30 +5879,30 @@ link = { autogenerated = yes imp = 1324 imp = 1322 imp = 1330 ck3 = 1752 } # Mirobriga, Salacia, PatulusPortus -> ALCACER DO SAL link = { autogenerated = yes imp = 1331 imp = 1326 imp = 1332 imp = 1413 ck3 = 1751 } # Arandis, MetallumVipescense, Myrtilis, TurduliaOccidentalis -> BEJA link = { autogenerated = yes imp = 1338 ck3 = 1750 } # Tartessia -> MERTOLA - link = { autogenerated = yes imp = 12652 ck3 = 175 ck3 = 176 ck3 = 208 } # Nuorjo -> PORVOO, ESPOO, LAHTI + link = { autogenerated = yes imp = 12651 ck3 = 175 ck3 = 197 } # Juomo -> PORVOO, VEHKALAHTI link = { autogenerated = yes imp = 1336 imp = 1337 ck3 = 1749 } # Mirobigensia, Couneia -> OURIQUE link = { autogenerated = yes imp = 1335 ck3 = 1748 } # Balsa -> FARO link = { autogenerated = yes imp = 1334 ck3 = 1747 } # Ossonoba -> SILVES link = { autogenerated = yes imp = 1333 ck3 = 1746 } # PortusCibilis -> LAGOS + link = { autogenerated = yes imp = 12649 ck3 = 173 } # Muore -> KOIVISTO link = { autogenerated = yes imp = 2114 ck3 = 1727 ck3 = 1730 ck3 = 1731 ck3 = 1732 } # Veluniate -> EDINBURGH, PENICUICK, LINLITHGOW, QUEENSFERRY link = { autogenerated = yes imp = 2115 ck3 = 1724 ck3 = 1725 ck3 = 1726 ck3 = 1736 } # Venicones -> DUNFERMLINE, KIRCALDY, ST ANDREWS, CLACKMANNAN - link = { imp = 2133 ck3 = 1720 ck3 = 1741 ck3 = 1742 ck3 = 1721 ck3 = 1745 ck3 = 1743 } # PinnataCastra -> DUNDEE, PERTH, COUPAR ANGUS, KIRRIEMUIR, CRIEFF, DUNKELD - link = { autogenerated = yes imp = 12650 ck3 = 172 ck3 = 182 ck3 = 181 } # Kuovcore -> KAKISALMI, VIIPURI, PARIKKALA - link = { imp = 7740 ck3 = 1718 ck3 = 1719 ck3 = 1722 ck3 = 1723 } # Taexalia Australis -> ABERDEEN, KINCARDINE, BALLATER, MAR + link = { autogenerated = yes imp = 2133 ck3 = 1720 ck3 = 1741 ck3 = 1742 ck3 = 1721 ck3 = 1745 } # PinnataCastra -> DUNDEE, PERTH, COUPAR ANGUS, KIRRIEMUIR, CRIEFF + link = { autogenerated = yes imp = 12650 ck3 = 172 ck3 = 182 ck3 = 181 ck3 = 187 } # Kuovcore -> KAKISALMI, VIIPURI, PARIKKALA, SAVITAIPALE + link = { autogenerated = yes imp = 7740 ck3 = 1718 ck3 = 1719 ck3 = 1722 } # Taexalia Australis -> ABERDEEN, KINCARDINE, BALLATER link = { autogenerated = yes imp = 2123 ck3 = 1715 } # Vacomagi -> ELGIN link = { autogenerated = yes imp = 2116 ck3 = 1714 } # Taexali -> PETERHEAD link = { autogenerated = yes imp = 2125 ck3 = 1712 ck3 = 1716 ck3 = 1713 ck3 = 1717 } # TaixalonAkron -> BANFF, KEITH, MORTLACH, GARIOCH link = { autogenerated = yes imp = 2118 ck3 = 1711 ck3 = 35 } # Creones -> GLENFINNAN, ARDNAMURCHON - link = { autogenerated = yes imp = 12649 ck3 = 171 ck3 = 173 } # Muore -> RAUTU, KOIVISTO link = { autogenerated = yes imp = 2131 ck3 = 1708 } # OuirouedroumAkron -> WICK link = { autogenerated = yes imp = 2122 ck3 = 1706 ck3 = 1707 } # Cornavii -> DURNESS, THURSO link = { autogenerated = yes imp = 7739 ck3 = 1705 ck3 = 8777 } # Lugi -> DORNOCH, Tain - link = { autogenerated = yes imp = 2117 ck3 = 1702 ck3 = 1695 } # Epidii -> LOMOND, DUMBARTON link = { autogenerated = yes imp = 6311 ck3 = 1700 ck3 = 1701 } # Creones Australis -> KILMARTEN, GLENCOE - link = { autogenerated = yes imp = 12648 ck3 = 170 } # Loaoko -> NOTEBORG + link = { autogenerated = yes imp = 12648 ck3 = 170 ck3 = 171 } # Loaoko -> NOTEBORG, RAUTU link = { autogenerated = yes imp = 2172 ck3 = 17 ck3 = 8743 } # VoluntiaOrientalis -> ARMAGH, Dungannon link = { autogenerated = yes imp = 2108 ck3 = 1698 ck3 = 1699 } # Manavia -> CASTLETOWN, RAMSEY - link = { imp = 12763 ck3 = 1696 ck3 = 1733 ck3 = 1734 ck3 = 1697 ck3 = 1735 ck3 = 1744 } # Victoria -> GLASGOW, FALKIRK, STIRLING, MENEITH, CALLANDER, ABERFELDY + link = { autogenerated = yes imp = 12763 ck3 = 1696 ck3 = 1733 ck3 = 1734 ck3 = 1697 ck3 = 1735 } # Victoria -> GLASGOW, FALKIRK, STIRLING, MENEITH, CALLANDER + link = { autogenerated = yes imp = 2117 ck3 = 1695 ck3 = 1702 } # Epidii -> DUMBARTON, LOMOND link = { autogenerated = yes imp = 2130 ck3 = 1694 } # DumnaMeridionalis -> THE UISTS link = { autogenerated = yes imp = 2129 ck3 = 1693 } # DumnaSeptentrionalis -> LEWIS link = { autogenerated = yes imp = 2128 ck3 = 1692 } # Scitis -> SKYE @@ -5957,14 +5915,13 @@ link = { autogenerated = yes imp = 2109 ck3 = 1680 ck3 = 1684 ck3 = 1685 } # Novantae -> MAYBOLE, WIGTOWN, GIRVAN link = { autogenerated = yes imp = 12645 ck3 = 168 ck3 = 5142 } # Koles -> KOPORYE, Pushkin link = { autogenerated = yes imp = 2091 ck3 = 1679 ck3 = 1681 ck3 = 1635 } # Blatobulgium -> ANNAN, DUMFRIES, CARLISLE - link = { imp = 2113 ck3 = 1677 ck3 = 1678 ck3 = 1739 ck3 = 1740 } # Trimontium -> KELSO, JEDBURGH, BIGGAR, SELKIRK + link = { autogenerated = yes imp = 2113 ck3 = 1678 ck3 = 1739 ck3 = 1740 } # Trimontium -> JEDBURGH, BIGGAR, SELKIRK link = { autogenerated = yes imp = 2111 ck3 = 1675 ck3 = 1676 ck3 = 1728 ck3 = 1729 } # Otadini -> BERWICK, DUNBAR, HADDINGTON, GALASHIELS link = { autogenerated = yes imp = 2106 ck3 = 1670 ck3 = 1671 ck3 = 1672 } # Varis -> DENBIGH, WREXHAM, RUTHIN link = { autogenerated = yes imp = 12644 ck3 = 167 } # Kavso -> YAMA link = { autogenerated = yes imp = 2105 ck3 = 1669 ck3 = 1673 ck3 = 1674 } # Seguntium -> LLANDUDNO, YNS MON, HOLYHEAD link = { autogenerated = yes imp = 2104 ck3 = 1665 ck3 = 1666 ck3 = 1667 ck3 = 1668 } # GanganonAkron -> DOLGELLAU, CORWEN, CAERNARFON, LLYN - link = { autogenerated = yes imp = 2102 ck3 = 1664 } # Levobrinta -> NEWTOWN - link = { autogenerated = yes imp = 2107 ck3 = 1663 } # Plaenium -> WELSHPOOL + link = { autogenerated = yes imp = 2102 ck3 = 1663 ck3 = 1664 } # Levobrinta -> WELSHPOOL, NEWTOWN link = { autogenerated = yes imp = 2100 ck3 = 1661 } # Magnis -> LLANDRINDOD link = { autogenerated = yes imp = 10293 imp = 10292 imp = 10297 imp = 10302 ck3 = 166 } # Asvejos, Zirnajai, Grazutes, Garais -> BRASLAU link = { autogenerated = yes imp = 2097 ck3 = 1659 } # Cicucium -> BRECON @@ -5975,9 +5932,8 @@ link = { autogenerated = yes imp = 2094 ck3 = 1650 } # Nidum -> SWANSEA link = { autogenerated = yes imp = 10289 ck3 = 165 } # Aristava -> KREVA link = { autogenerated = yes imp = 2093 ck3 = 1649 ck3 = 1651 } # Bornium -> CARDIFF, CAERPHILLY - link = { autogenerated = yes imp = 2101 ck3 = 1648 ck3 = 1662 } # Bravonium -> BISHOP'S CASTLE, RHAYADER - link = { imp = 2060 ck3 = 1647 } # Savicum -> LUDLOW - link = { autogenerated = yes imp = 2059 ck3 = 1646 } # Viroconium -> SHREWSBURY + link = { autogenerated = yes imp = 2060 ck3 = 1647 ck3 = 1648 } # Savicum -> LUDLOW, BISHOP'S CASTLE + link = { autogenerated = yes imp = 2059 imp = 2107 ck3 = 1646 } # Viroconium, Plaenium -> SHREWSBURY link = { autogenerated = yes imp = 2047 ck3 = 1643 ck3 = 1644 } # Deva -> CHESTER, NORTHWICH link = { autogenerated = yes imp = 2081 ck3 = 1642 } # Galava -> FURNESS link = { autogenerated = yes imp = 2071 ck3 = 1641 } # Coccium -> WEST DERBY @@ -5987,28 +5943,81 @@ link = { autogenerated = yes imp = 2084 ck3 = 1638 } # Brocavum -> APPLEBY link = { autogenerated = yes imp = 2080 ck3 = 1637 ck3 = 1593 } # Calunium -> KENDAL, HALIFAX link = { autogenerated = yes imp = 2082 ck3 = 1636 } # Gabrosentum -> WHITEHAVEN - link = { imp = 2098 ck3 = 1632 ck3 = 1633 ck3 = 1634 } # Gobannium -> HEREFORD, WIGMORE, CLIFFORD + link = { autogenerated = yes imp = 2101 ck3 = 1633 ck3 = 1662 } # Bravonium -> WIGMORE, RHAYADER + link = { autogenerated = yes imp = 2098 ck3 = 1632 ck3 = 1634 } # Gobannium -> HEREFORD, CLIFFORD + link = { autogenerated = yes imp = 12536 ck3 = 16316 } # Kjelj -> Shemysheyka + link = { autogenerated = yes imp = 12545 ck3 = 16315 ck3 = 5387 } # Moncen -> Penza, Mokshan + link = { autogenerated = yes imp = 6611 ck3 = 16304 ck3 = 16288 ck3 = 4344 } # Alexandria Ad Caucasum -> Kapisa, Alishang, Parwan link = { autogenerated = yes imp = 2092 ck3 = 1630 ck3 = 1631 } # Burrium -> NEWPORT, MONMOUTH link = { autogenerated = yes imp = 7806 ck3 = 163 } # Sudinoia Borealis -> SEJNY + link = { autogenerated = yes imp = 4338 ck3 = 16298 ck3 = 16303 } # Anantanaga -> Awantipora, Anantnang + link = { autogenerated = yes imp = 4335 ck3 = 16296 } # Labaka -> Loharkot + link = { autogenerated = yes imp = 4490 ck3 = 16294 ck3 = 7953 } # Baziria -> Swat, Golaghmuli + link = { autogenerated = yes imp = 4367 ck3 = 16293 ck3 = 16290 } # Arigaion -> Bajaur, Pech + link = { autogenerated = yes imp = 4370 ck3 = 16291 ck3 = 16292 } # Massaka -> Dir, Timargarha link = { autogenerated = yes imp = 2064 ck3 = 1629 } # Salinae -> STOKE-ON-TRENT + link = { autogenerated = yes imp = 6626 ck3 = 16283 ck3 = 4345 ck3 = 16287 ck3 = 4357 } # Drapsaca -> Mandol, Panjhir, Nurgaram, Munjan + link = { autogenerated = yes imp = 5596 ck3 = 16280 ck3 = 9027 } # Druzhiya -> Nagar, Askole link = { autogenerated = yes imp = 2046 ck3 = 1628 } # Mediolanum -> WOLVERHAMPTON + link = { autogenerated = yes imp = 10183 ck3 = 16279 } # Trostyanets -> Khotmyshl + link = { autogenerated = yes imp = 5927 ck3 = 16275 } # Varyr -> Karamyk + link = { autogenerated = yes imp = 5925 imp = 5923 ck3 = 16274 } # Krayn, Achtab -> Baybala + link = { autogenerated = yes imp = 5894 imp = 5895 ck3 = 16273 } # Kyta, Vynikka -> Chemrek + link = { autogenerated = yes imp = 5892 ck3 = 16272 } # Sechem -> Bashanta + link = { autogenerated = yes imp = 5890 ck3 = 16271 } # Mykon -> Medvezhye + link = { autogenerated = yes imp = 5893 imp = 5932 ck3 = 16270 } # Creasch, Manar -> Yegorlyk + link = { autogenerated = yes imp = 6212 imp = 6205 imp = 6208 imp = 6210 imp = 6218 ck3 = 16269 } # Ygrre, Uyoro, Khochy, Ghenarcha, Mennichak -> Ketchenery + link = { autogenerated = yes imp = 5900 ck3 = 16268 } # Dryna -> Dzhuruk + link = { autogenerated = yes imp = 6204 ck3 = 16267 } # Urghalat -> Amta + link = { autogenerated = yes imp = 5896 ck3 = 16266 } # Sarden -> Amtya-Nur + link = { autogenerated = yes imp = 5920 imp = 5898 imp = 5917 imp = 5919 imp = 5922 ck3 = 16265 } # Ermel, Shachel, Yonnav, Kurnsck, Kumetta -> Naryn-Khuduk + link = { autogenerated = yes imp = 5903 imp = 5902 imp = 5906 imp = 5918 ck3 = 16264 } # Gonnema, Reama, Vorena, Chroda -> Yashkul + link = { autogenerated = yes imp = 12565 ck3 = 16263 ck3 = 5236 ck3 = 5238 } # Nerkka -> Sobinka, Volochok, Yegoryevsk + link = { autogenerated = yes imp = 12540 ck3 = 16260 ck3 = 5235 ck3 = 584 } # Lovaza -> Dalneye Konstantinovo, Pavlovo, Nizhny Novgorod link = { autogenerated = yes imp = 2050 ck3 = 1626 } # Salinae -> KIDDERMINSTER + link = { autogenerated = yes imp = 12558 ck3 = 16259 ck3 = 16262 } # Karkeda -> Vasylovo, Yaropolk Zalessky + link = { autogenerated = yes imp = 12544 ck3 = 16258 ck3 = 5234 ck3 = 5362 } # Turva -> Vacha, Vyksa, Sarov + link = { autogenerated = yes imp = 5905 imp = 5904 ck3 = 16257 } # Iska, Mylla -> Zamyany + link = { autogenerated = yes imp = 7190 imp = 4530 imp = 4531 imp = 4532 ck3 = 16256 } # Kanit*, Hippolaou, Borysthenia, Karkine -> Kalanchak + link = { autogenerated = yes imp = 6200 ck3 = 16255 } # Urvel -> Tsimla link = { autogenerated = yes imp = 2049 ck3 = 1624 ck3 = 1625 } # Vertis -> WORCESTER, EVESHAM + link = { autogenerated = yes imp = 10349 imp = 10351 ck3 = 16232 } # Horyane, Volchya -> Valuiki + link = { autogenerated = yes imp = 10186 ck3 = 16231 } # Vovchansk -> Sharukan + link = { autogenerated = yes imp = 12570 ck3 = 16230 ck3 = 577 } # Kursa -> Dankov, Pronsk link = { autogenerated = yes imp = 2070 ck3 = 1623 ck3 = 1645 } # Mamucium -> CASTLETON, MACCLESFIELD - link = { imp = 5433 ck3 = 1622 } # Lutudarium -> CHESTERFIELD + link = { autogenerated = yes imp = 10343 ck3 = 16229 } # Kurennoe -> Podgorensky + link = { autogenerated = yes imp = 10350 imp = 10342 imp = 10347 imp = 10348 imp = 6160 imp = 6166 imp = 6167 ck3 = 16228 } # Kozynka, Komyshna, Bila, Kupyansk, Verhyn, Gyrones, Stetta -> Izyum + link = { autogenerated = yes imp = 12539 ck3 = 16227 ck3 = 5385 } # Pizeme -> Atemar, Alatyr + link = { autogenerated = yes imp = 12546 ck3 = 16226 ck3 = 5358 } # Kinere -> Kadom, Temnikov + link = { autogenerated = yes imp = 12555 ck3 = 16225 ck3 = 580 } # Sedej -> Erakhtur, Ryazan + link = { autogenerated = yes imp = 1656 ck3 = 16224 ck3 = 5768 ck3 = 15879 } # Zakatala -> Kaki, Zaqatala, 15879 + link = { autogenerated = yes imp = 5433 imp = 5977 ck3 = 1622 } # Lutudarium, Central British Impassable -> CHESTERFIELD + link = { autogenerated = yes imp = 1715 ck3 = 16218 ck3 = 5749 } # Archaiopolis -> Tsalenjikha, Zugdidi + link = { autogenerated = yes imp = 1748 ck3 = 16217 } # Modinakhe -> Jruchi + link = { autogenerated = yes imp = 1707 ck3 = 16215 ck3 = 601 ck3 = 15927 ck3 = 5750 } # Kotais -> Gelati, Kutaisi, 15927, Tsageri + link = { autogenerated = yes imp = 1706 ck3 = 16214 ck3 = 5756 } # Rhodopolis -> Sachino, Vartsikhe + link = { autogenerated = yes imp = 12521 ck3 = 16210 ck3 = 5398 } # Asil -> Urzhum, Arsk link = { autogenerated = yes imp = 2066 ck3 = 1621 ck3 = 1627 } # AquaeArnemetiae -> DERBY, STAFFORD + link = { autogenerated = yes imp = 12524 ck3 = 16203 ck3 = 16208 ck3 = 16209 ck3 = 5395 } # Vony -> Juma, Kukarka, Käkshär, Tsarevokokchaisk + link = { autogenerated = yes imp = 12525 ck3 = 16201 ck3 = 5473 ck3 = 16202 ck3 = 5250 ck3 = 5474 } # Kyny -> Bulaksy, Vetluga, Ukhtubuzhe, Manturovo, Yakshan link = { autogenerated = yes imp = 10276 ck3 = 162 } # Mamry -> ALITEN + link = { autogenerated = yes imp = 12462 ck3 = 16198 ck3 = 5441 ck3 = 5442 ck3 = 5443 } # Malamus -> Sukhoy, Lysva, Kutamych, Shalja + link = { autogenerated = yes imp = 12463 ck3 = 16197 ck3 = 5434 ck3 = 886 } # Kor -> Sylva, Kungur, Perm + link = { autogenerated = yes imp = 12461 ck3 = 16195 ck3 = 5452 ck3 = 5454 } # Dzudzyd -> Yarino, Krasnokamsk, Kosva + link = { autogenerated = yes imp = 12469 ck3 = 16194 ck3 = 16196 ck3 = 5458 ck3 = 5459 ck3 = 5460 } # Gad -> Zul, Glyadeno, Kasib, Koca, Karsovay link = { autogenerated = yes imp = 2067 ck3 = 1619 ck3 = 1620 } # Danum -> NEWARK, RETFORD link = { autogenerated = yes imp = 2065 ck3 = 1617 } # Derbentio -> BOSWORTH link = { autogenerated = yes imp = 9577 ck3 = 16114 ck3 = 9474 ck3 = 9475 } # Yumen -> nanhunew, Yumenguan, Akeqi link = { autogenerated = yes imp = 9578 ck3 = 16113 ck3 = 8539 } # Mingze -> GUAZHOUNEW, ANXI + link = { autogenerated = yes imp = 4534 ck3 = 16112 } # KalosLimen -> 16112 + link = { autogenerated = yes imp = 4537 ck3 = 16111 } # Parthenion -> 16111 link = { autogenerated = yes imp = 2086 ck3 = 1611 ck3 = 1612 } # Vindolanda -> HEXHAM, ROTHBURY - link = { imp = 2090 ck3 = 1610 } # Bremenium -> BAMBURGH + link = { autogenerated = yes imp = 2090 ck3 = 1610 ck3 = 1677 } # Bremenium -> BAMBURGH, KELSO link = { autogenerated = yes imp = 10277 imp = 10275 ck3 = 161 } # Dob, Sniardwy -> GRODNO link = { autogenerated = yes imp = 2089 ck3 = 1609 } # Habitancum -> MONKCHESTER link = { autogenerated = yes imp = 2085 ck3 = 1608 } # Vinovia -> DARLINGTON link = { autogenerated = yes imp = 2087 ck3 = 1606 } # Vindolava -> DURHAM - link = { imp = 10554 ck3 = 16053 ck3 = 16060 ck3 = 16055 ck3 = 16065 } # Elga -> Elgansa, Burhan, 16055, 16065 + link = { autogenerated = yes imp = 10554 ck3 = 16053 ck3 = 16060 ck3 = 16055 ck3 = 16065 ck3 = 16072 } # Elga -> Elgansa, Burhan, 16055, 16065, 16072 link = { autogenerated = yes imp = 2056 ck3 = 1605 } # Letocetum -> BIRMINGHAM link = { autogenerated = yes imp = 10535 ck3 = 16043 ck3 = 16048 } # Sagan -> 16043, 16048 link = { autogenerated = yes imp = 2055 ck3 = 1604 } # Manduessedom -> COVENTRY @@ -6016,14 +6025,15 @@ link = { autogenerated = yes imp = 2048 ck3 = 1603 } # Alauna -> WARWICK link = { autogenerated = yes imp = 10533 ck3 = 16029 ck3 = 7694 ck3 = 16024 ck3 = 16034 ck3 = 16037 } # Ivolga -> 16029, Enkhor, 16024, 16034, 16037 link = { autogenerated = yes imp = 9477 ck3 = 16027 ck3 = 16028 ck3 = 16041 ck3 = 16049 } # Ari -> 16027, 16028, 16041, 16049 - link = { autogenerated = yes imp = 9696 ck3 = 16022 ck3 = 9507 ck3 = 9548 } # Emunagaule -> 16022, Juyan, Gurinai + link = { autogenerated = yes imp = 9696 ck3 = 16022 ck3 = 9507 ck3 = 9548 } # Emunagaule -> Adun-Kora, Juyan, Gurinai link = { autogenerated = yes imp = 9579 ck3 = 16020 ck3 = 9483 ck3 = 9620 } # Kunlunzhang -> 16020, Hongliuyuan, Burgasutai - link = { autogenerated = yes imp = 2054 ck3 = 1602 ck3 = 1615 ck3 = 1616 } # Ratae -> KETTERING, LEICESTER, MELTON - link = { autogenerated = yes imp = 9571 imp = 8613 ck3 = 16016 } # Xinqinzhong, Henan -> 16016 - link = { imp = 8603 imp = 8605 ck3 = 16014 } # Shuofang, Qusou -> 16014 - link = { autogenerated = yes imp = 8604 imp = 8614 ck3 = 16013 } # Hudao, Xianyang -> 16013 - link = { autogenerated = yes imp = 9572 ck3 = 16010 ck3 = 12170 } # Qingyanze -> 16010, Ordos - link = { autogenerated = yes imp = 2062 ck3 = 1601 ck3 = 1613 } # Vernemetum -> PETERBOROUGH, OAKHAM + link = { autogenerated = yes imp = 2054 ck3 = 1602 ck3 = 1615 } # Ratae -> KETTERING, LEICESTER + link = { autogenerated = yes imp = 9571 imp = 8613 ck3 = 16016 } # Xinqinzhong, Henan -> Fengzhou + link = { autogenerated = yes imp = 8603 imp = 8605 imp = 8612 ck3 = 16014 } # Shuofang, Qusou, Xiudou -> Hengshui + link = { autogenerated = yes imp = 8604 imp = 8614 ck3 = 16013 } # Hudao, Xianyang -> Batoufeng + link = { autogenerated = yes imp = 9572 ck3 = 16010 } # Qingyanze -> Youzhou + link = { autogenerated = yes imp = 2062 ck3 = 1601 ck3 = 1613 ck3 = 1616 } # Vernemetum -> PETERBOROUGH, OAKHAM, MELTON + link = { autogenerated = yes imp = 2045 ck3 = 1600 } # Bannaventa -> NORTHAMPTON link = { autogenerated = yes imp = 10280 ck3 = 160 } # Vistytis -> MERKINE link = { autogenerated = yes imp = 2161 ck3 = 16 } # Ivernia -> BALTIMORE link = { autogenerated = yes imp = 2077 ck3 = 1599 } # Isurium -> RIPON @@ -6033,51 +6043,251 @@ link = { autogenerated = yes imp = 9517 ck3 = 15967 ck3 = 9510 } # Langshan -> 15967, Wentugaole link = { autogenerated = yes imp = 9479 ck3 = 15966 ck3 = 15968 ck3 = 15970 } # Elgek -> 15966, 15968, 15970 link = { autogenerated = yes imp = 2079 ck3 = 1596 } # Dictium -> SCARBOROUGH + link = { autogenerated = yes imp = 1750 ck3 = 15958 ck3 = 15957 ck3 = 15565 } # Klukhor Pass -> 15958, 15957, Caucasus Mountains + link = { autogenerated = yes imp = 7625 ck3 = 15949 ck3 = 15959 ck3 = 16222 } # Didai -> 15949, 15959, Nuzal + link = { autogenerated = yes imp = 1674 ck3 = 15945 ck3 = 15951 } # Cumania -> 15945, 15951 + link = { autogenerated = yes imp = 7624 ck3 = 15941 ck3 = 15954 ck3 = 15943 } # Contani -> 15941, 15954, 15943 link = { autogenerated = yes imp = 5434 ck3 = 1594 } # Rigodounon -> SHEFFIELD + link = { autogenerated = yes imp = 1739 ck3 = 15939 ck3 = 5748 ck3 = 15947 } # Tqvarcheli -> 15939, Seti, Caucasus Mountains + link = { autogenerated = yes imp = 1738 ck3 = 15938 ck3 = 5746 } # Gyenos -> 15938, Tskhumi + link = { autogenerated = yes imp = 1749 ck3 = 15935 ck3 = 15950 ck3 = 5751 ck3 = 15924 ck3 = 16220 } # Brili -> 15935, 15950, Ambrolauri, 15924, Edisa + link = { autogenerated = yes imp = 7621 ck3 = 15932 ck3 = 15937 ck3 = 15946 } # Valent -> 15932, 15937, 15946 + link = { autogenerated = yes imp = 1673 ck3 = 15921 ck3 = 15930 ck3 = 15936 } # Iberian Gates / Porta Caucasica -> 15921, 15930, 15936 link = { autogenerated = yes imp = 2069 ck3 = 1592 } # Lagentium -> DONCASTER - link = { imp = 3058 imp = 2074 ck3 = 1591 } # Calcaria, Olenacum -> LEEDS + link = { autogenerated = yes imp = 1714 imp = 1717 ck3 = 15912 } # Onogouris, Chaladidi -> 15912 + link = { autogenerated = yes imp = 3058 imp = 2074 imp = 5978 ck3 = 1591 } # Calcaria, Olenacum, Central British Impassable -> LEEDS + link = { autogenerated = yes imp = 1681 ck3 = 15906 ck3 = 15915 } # Aragvispiri -> 15906, 15915 + link = { autogenerated = yes imp = 1711 ck3 = 15902 ck3 = 16213 } # Telephis -> 15902, Surebi + link = { autogenerated = yes imp = 1694 imp = 1691 ck3 = 15901 } # Surium, Dedoplis -> 15901 + link = { autogenerated = yes imp = 11338 imp = 11334 ck3 = 15900 } # Ilicha, Sary Su -> 15900 link = { autogenerated = yes imp = 10281 ck3 = 159 } # Orija -> VALKININKAI + link = { autogenerated = yes imp = 1658 ck3 = 15897 ck3 = 15907 } # Shilda -> 15897, 15907 link = { autogenerated = yes imp = 2076 ck3 = 1589 ck3 = 1590 } # Derventio -> COTTINGHAM, BRIDLINGTON + link = { autogenerated = yes imp = 1690 imp = 1676 imp = 1679 imp = 1685 ck3 = 15889 } # Zghuderi, Meschistha-Harmozike, Kavtiskhevi, Uplistsikhe -> 15889 + link = { autogenerated = yes imp = 7604 ck3 = 15885 ck3 = 15904 ck3 = 15918 ck3 = 15925 ck3 = 674 ck3 = 15887 ck3 = 15894 } # Tzur -> 15885, 15904, 15918, 15925, Derbent, 15887, 15894 + link = { autogenerated = yes imp = 1695 imp = 1699 ck3 = 15882 } # Borjomi, Mzetamze -> 15882 + link = { autogenerated = yes imp = 1678 imp = 1687 ck3 = 15880 } # Seusamora, Jhinvali -> 15880 link = { autogenerated = yes imp = 2075 ck3 = 1588 } # Eboracum -> POCKLINGTON + link = { autogenerated = yes imp = 1677 ck3 = 15877 ck3 = 5758 } # Algeti -> 15877, Dmanisi + link = { autogenerated = yes imp = 1659 ck3 = 15875 ck3 = 5765 } # Lagodekhi -> 15875, Gavazi + link = { autogenerated = yes imp = 1611 ck3 = 15874 ck3 = 5767 } # Sagarejo -> 15874, Ujarma + link = { autogenerated = yes imp = 1701 ck3 = 15873 ck3 = 15867 } # Goderdzi pass -> 15873, 15867 link = { autogenerated = yes imp = 3057 ck3 = 1587 } # Hessulum -> GRIMSBY + link = { autogenerated = yes imp = 206 ck3 = 15868 } # Aigialos -> 15868 + link = { autogenerated = yes imp = 1812 ck3 = 15866 ck3 = 739 } # Sinope -> 15866, Sinope + link = { autogenerated = yes imp = 1697 ck3 = 15863 } # Akhaltsikhe -> 15863 link = { autogenerated = yes imp = 2068 ck3 = 1586 } # Petuaria -> BOLINGBROKE + link = { autogenerated = yes imp = 1828 ck3 = 15858 ck3 = 5592 } # Germanikopolis -> 15858, Andrapa + link = { autogenerated = yes imp = 1726 ck3 = 15856 } # Apsaros -> 15856 + link = { autogenerated = yes imp = 1702 ck3 = 15854 ck3 = 5738 } # Javakheti -> 15854, Tmogvi + link = { autogenerated = yes imp = 1660 ck3 = 15853 ck3 = 5766 } # Cambysene -> 15853, Kharnabuji + link = { autogenerated = yes imp = 1610 ck3 = 15852 ck3 = 15862 ck3 = 5760 } # Sary-tepe -> 15852, 15862, Rustavi link = { autogenerated = yes imp = 2057 ck3 = 1585 } # Bannovallum -> BOSTON + link = { autogenerated = yes imp = 6214 imp = 6206 ck3 = 15849 } # Zhuna, Ketsk -> 15849 + link = { autogenerated = yes imp = 1728 ck3 = 15847 ck3 = 15857 } # Morthoula -> 15847, 15857 + link = { autogenerated = yes imp = 1754 ck3 = 15846 ck3 = 5741 } # Artahan -> 15846, Artaani + link = { autogenerated = yes imp = 1727 ck3 = 15845 ck3 = 5696 } # Kissa -> 15845, Archabis + link = { autogenerated = yes imp = 7603 ck3 = 15843 ck3 = 15878 ck3 = 5341 ck3 = 15821 ck3 = 15842 ck3 = 15861 ck3 = 15871 } # Derbent -> 15843, 15878, Kuba, 15821, 15842, 15861, 15871 + link = { autogenerated = yes imp = 1806 ck3 = 15840 } # Themiskyra -> 15840 link = { autogenerated = yes imp = 2063 ck3 = 1584 } # Causennae -> STAMFORD + link = { autogenerated = yes imp = 1821 imp = 1824 imp = 5172 ck3 = 15839 } # Thermai Phazemoniton, Andrapa, IMPASSIBLE TERRAIN 172 -> 15839 + link = { autogenerated = yes imp = 1827 ck3 = 15838 ck3 = 5584 } # Pompeiopolis -> 15838, Pampeiopolis + link = { autogenerated = yes imp = 1586 ck3 = 15837 ck3 = 15823 ck3 = 15841 } # Hokhmik -> 15837, 15823, 15841 + link = { autogenerated = yes imp = 1643 ck3 = 15835 } # Samukh -> 15835 + link = { autogenerated = yes imp = 1734 ck3 = 15834 ck3 = 678 } # Trapezous -> 15834, Trebizond + link = { autogenerated = yes imp = 1729 ck3 = 15833 ck3 = 15826 } # Athenon Akron -> 15833, 15826 + link = { autogenerated = yes imp = 1609 ck3 = 15830 ck3 = 1013 ck3 = 15851 } # Kariglukh -> 15830, Lori, 15851 link = { autogenerated = yes imp = 2058 ck3 = 1583 ck3 = 1618 } # Lindum -> LINCOLN, NOTTINGHAM + link = { autogenerated = yes imp = 1758 ck3 = 15829 ck3 = 15808 ck3 = 15831 } # Pharangion -> 15829, 15808, 15831 + link = { autogenerated = yes imp = 1732 ck3 = 15828 ck3 = 15809 } # Hyssos -> 15828, 15809 + link = { autogenerated = yes imp = 1797 ck3 = 15827 ck3 = 5691 ck3 = 15806 } # Koralla -> 15827, Koralla, 15806 + link = { autogenerated = yes imp = 1804 ck3 = 15825 } # Boinasa -> 15825 + link = { autogenerated = yes imp = 1645 ck3 = 15824 ck3 = 5769 ck3 = 673 ck3 = 15864 } # Shaki -> 15824, Ghisi, Nukhpata, 15864 + link = { autogenerated = yes imp = 1636 ck3 = 15822 ck3 = 5774 } # Chabala -> 15822, Kabala + link = { autogenerated = yes imp = 1731 ck3 = 15820 } # Ophis -> 15820 + link = { autogenerated = yes imp = 1753 ck3 = 15819 ck3 = 15805 ck3 = 5736 } # Kola -> 15819, 15805, Taoskari + link = { autogenerated = yes imp = 1635 ck3 = 15818 } # Nyudi -> 15818 + link = { autogenerated = yes imp = 1608 ck3 = 15817 ck3 = 5780 ck3 = 5782 } # Berd -> 15817, Tovuz, Gardman + link = { autogenerated = yes imp = 1775 imp = 8000 ck3 = 15816 } # Magnana, Trapezous Mountains -> 15816 + link = { autogenerated = yes imp = 1606 ck3 = 15815 } # Berdatekh -> 15815 + link = { autogenerated = yes imp = 1634 ck3 = 15813 } # Kamachia -> 15813 + link = { autogenerated = yes imp = 1795 ck3 = 15811 } # Kotyora -> 15811 + link = { autogenerated = yes imp = 1786 ck3 = 15810 } # Sauronisena -> 15810 + link = { autogenerated = yes imp = 1757 ck3 = 15804 } # Kaballa -> 15804 + link = { autogenerated = yes imp = 1773 ck3 = 15803 ck3 = 15799 } # Tzantzakon -> 15803, 15799 + link = { autogenerated = yes imp = 6220 imp = 6213 ck3 = 15800 } # Uryennik, Achkhacsh -> 15800 link = { autogenerated = yes imp = 2040 ck3 = 1580 } # Glevum -> GLOUCESTER link = { autogenerated = yes imp = 7807 imp = 10279 ck3 = 158 } # Saloia, Utinoye -> VILKAVISKIS + link = { autogenerated = yes imp = 1655 ck3 = 15798 ck3 = 5772 ck3 = 5775 } # Kaladasht -> 15798, Maras, Kudevan + link = { autogenerated = yes imp = 1589 ck3 = 15797 } # Atarbegian -> 15797 + link = { autogenerated = yes imp = 1752 ck3 = 15796 ck3 = 5734 ck3 = 5733 } # Chorzene -> 15796, Kars, Zariskat + link = { autogenerated = yes imp = 1772 imp = 5175 ck3 = 15793 } # Longini Fossatum, IMPASSIBLE TERRAIN 175 -> 15793 + link = { autogenerated = yes imp = 1605 ck3 = 15792 ck3 = 15814 ck3 = 5783 } # Gezlu -> 15792, 15814, Parnes + link = { autogenerated = yes imp = 1633 ck3 = 15791 } # Bagawan -> 15791 + link = { autogenerated = yes imp = 1582 ck3 = 15789 } # Ani -> 15789 + link = { autogenerated = yes imp = 1783 imp = 1801 ck3 = 15788 } # Anniaca, Matuasco -> 15788 + link = { autogenerated = yes imp = 1760 ck3 = 15785 ck3 = 5694 } # Sinoria -> 15785, Baeberdon + link = { autogenerated = yes imp = 1661 ck3 = 15783 } # Arash -> 15783 + link = { autogenerated = yes imp = 1642 ck3 = 15781 ck3 = 5771 ck3 = 668 } # Absheron -> 15781, Baku, Shirvan + link = { autogenerated = yes imp = 1670 ck3 = 15780 ck3 = 15801 ck3 = 5779 ck3 = 15786 } # Partaw -> 15780, 15801, Barda, 15786 link = { autogenerated = yes imp = 2008 ck3 = 1578 } # Lindinis -> ILCHESTER + link = { autogenerated = yes imp = 6225 imp = 6222 imp = 6224 imp = 6226 ck3 = 15779 } # Monok, Arzhahk, Vhingad, Urmonok -> 15779 + link = { autogenerated = yes imp = 1776 ck3 = 15777 } # Arauraka -> 15777 + link = { autogenerated = yes imp = 1581 ck3 = 15776 ck3 = 5726 } # Eruandakert -> 15776, Bagaran + link = { autogenerated = yes imp = 1579 imp = 1570 ck3 = 15775 } # Ashnak, Armaouira -> 15775 + link = { autogenerated = yes imp = 1588 ck3 = 15774 } # Kamo -> 15774 + link = { autogenerated = yes imp = 1575 ck3 = 15773 } # Erebuni -> 15773 + link = { autogenerated = yes imp = 1576 ck3 = 15772 } # Kainepolis -> 15772 + link = { autogenerated = yes imp = 5879 ck3 = 15771 } # PASS -> 15771 + link = { autogenerated = yes imp = 6190 ck3 = 15770 } # Kichpa -> 15770 + link = { autogenerated = yes imp = 1592 ck3 = 15769 } # Akunk -> 15769 + link = { autogenerated = yes imp = 1770 ck3 = 15768 ck3 = 5699 } # Satala -> 15768, Sinoria + link = { autogenerated = yes imp = 1751 ck3 = 15763 ck3 = 15778 ck3 = 5735 } # Barantea -> 15763, 15778, Sevuki + link = { autogenerated = yes imp = 1747 ck3 = 15761 ck3 = 15782 } # Gymnias -> 15761, 15782 + link = { autogenerated = yes imp = 1663 ck3 = 15760 } # Vaykunik -> 15760 link = { autogenerated = yes imp = 2009 ck3 = 1576 ck3 = 1577 } # AquaeSulis -> BATH, WINTERSTOKE + link = { autogenerated = yes imp = 1571 ck3 = 15759 ck3 = 672 } # Artaxata -> 15759, Dvin + link = { autogenerated = yes imp = 5909 imp = 5910 imp = 6228 ck3 = 15757 } # Norom, Uvra, Arzhale -> 15757 + link = { autogenerated = yes imp = 1569 ck3 = 15756 ck3 = 5730 } # Paracata -> 15756, Tsalakert + link = { autogenerated = yes imp = 1736 ck3 = 15755 } # Chadas -> 15755 + link = { autogenerated = yes imp = 1698 ck3 = 15754 ck3 = 15766 } # Sinara -> 15754, 15766 + link = { autogenerated = yes imp = 5899 imp = 6193 imp = 6202 ck3 = 15753 } # Gura, Zhev, Irkant -> 15753 + link = { autogenerated = yes imp = 4558 imp = 7637 ck3 = 15752 } # Paniardis, Yeyata -> 15752 + link = { autogenerated = yes imp = 1664 imp = 1667 ck3 = 15751 } # Arank, Aghahechk -> 15751 + link = { autogenerated = yes imp = 1639 ck3 = 15750 ck3 = 5784 } # Amaras -> 15750, Ktis link = { autogenerated = yes imp = 2000 ck3 = 1575 } # Deventiasteno -> HELSTON + link = { autogenerated = yes imp = 1568 ck3 = 15749 } # Hariza -> 15749 + link = { autogenerated = yes imp = 1672 imp = 1651 ck3 = 15748 } # Southeast Arran, Shahargah -> 15748 + link = { autogenerated = yes imp = 1550 imp = 5214 ck3 = 15747 } # Verahram Qal'eh, IMPASSIBLE TERRAIN 214 -> 15747 + link = { autogenerated = yes imp = 1668 ck3 = 15746 ck3 = 15758 } # Vayots Dzor -> 15746, 15758 + link = { autogenerated = yes imp = 483 imp = 1764 ck3 = 15745 } # Artales, Bizana/Leontopolis -> 15745 + link = { autogenerated = yes imp = 1567 imp = 1549 ck3 = 15744 } # Bagauna, Teroua -> 15744 + link = { autogenerated = yes imp = 1644 ck3 = 15743 ck3 = 15765 } # Paytakaran -> 15743, 15765 + link = { autogenerated = yes imp = 1650 ck3 = 15742 } # Sisakan Inferior -> 15742 + link = { autogenerated = yes imp = 1665 ck3 = 15740 } # Parsakank -> 15740 link = { autogenerated = yes imp = 2002 ck3 = 1574 } # DeventiaSeptentrionalis -> TINTAGEL + link = { autogenerated = yes imp = 1544 imp = 1548 imp = 1551 ck3 = 15739 } # Catispi, Sangar Qal'eh, Hajestan Qal'eh -> 15739 + link = { autogenerated = yes imp = 5878 ck3 = 15738 ck3 = 5346 } # PASS -> 15738, Ryn + link = { autogenerated = yes imp = 1614 imp = 5213 ck3 = 15737 } # Sigan, IMPASSIBLE TERRAIN 213 -> 15737 + link = { autogenerated = yes imp = 1542 ck3 = 15736 } # Arxata -> 15736 + link = { autogenerated = yes imp = 1669 ck3 = 15735 } # Chahuk -> 15735 + link = { autogenerated = yes imp = 4559 ck3 = 15734 } # Pataroue -> 15734 + link = { autogenerated = yes imp = 1617 ck3 = 15732 } # Nakorzan -> 15732 + link = { autogenerated = yes imp = 5877 ck3 = 15731 } # PASS -> 15731 + link = { autogenerated = yes imp = 1540 ck3 = 15730 ck3 = 5787 } # Parakan -> 15730, Jugha + link = { autogenerated = yes imp = 1543 ck3 = 15728 } # Siah Qal'eh -> 15728 + link = { autogenerated = yes imp = 991 ck3 = 15727 ck3 = 5721 } # Arest -> 15727, Berkri + link = { autogenerated = yes imp = 1648 ck3 = 15726 } # Ghizil-Agaj -> 15726 + link = { autogenerated = yes imp = 1547 imp = 1535 imp = 1546 ck3 = 15725 } # Keshmesh, Qiz Chakhlu, Shawarshan -> 15725 + link = { autogenerated = yes imp = 1616 ck3 = 15723 ck3 = 671 } # Kapan -> 15723, Kapan + link = { autogenerated = yes imp = 4037 ck3 = 15722 ck3 = 4864 } # Kitharizon -> 15722, QULB + link = { autogenerated = yes imp = 1623 imp = 1615 ck3 = 15721 } # Arevik, Balaberd -> 15721 + link = { autogenerated = yes imp = 1538 ck3 = 15720 } # Sanora -> 15720 link = { autogenerated = yes imp = 2005 ck3 = 1572 ck3 = 1579 } # Iscalis -> BARNSTAPLE, TAUNTON + link = { autogenerated = yes imp = 1631 ck3 = 15719 ck3 = 5793 } # Spandaran -> 15719, Barzand + link = { autogenerated = yes imp = 993 ck3 = 15717 ck3 = 5718 ck3 = 15718 } # Calata -> 15717, Khlat, 15718 + link = { autogenerated = yes imp = 994 ck3 = 15716 ck3 = 5716 ck3 = 5715 } # Ashtishat -> 15716, Musch, Varto + link = { autogenerated = yes imp = 1630 ck3 = 15715 ck3 = 5791 ck3 = 15696 ck3 = 15708 } # Langarkanan -> 15715, Langarkanan, 15696, 15708 + link = { autogenerated = yes imp = 1533 imp = 1534 imp = 1537 imp = 1541 ck3 = 15714 } # Qara Zia Eddin tepe, Bastam, Nuarsak, Oghlu Qal'eh -> 15714 + link = { autogenerated = yes imp = 1619 ck3 = 15712 } # Dish -> 15712 + link = { autogenerated = yes imp = 995 ck3 = 15711 } # Molchia -> 15711 + link = { autogenerated = yes imp = 1559 ck3 = 15710 } # Aladagh Qal'eh -> 15710 link = { autogenerated = yes imp = 2004 ck3 = 1571 } # Nemetia -> OKEHAMPTON + link = { autogenerated = yes imp = 1622 ck3 = 15709 ck3 = 4541 } # Seqindel -> 15709, DIZMAR + link = { autogenerated = yes imp = 999 ck3 = 15707 } # Hayk -> 15707 + link = { autogenerated = yes imp = 1529 imp = 1530 imp = 1531 imp = 1539 ck3 = 15706 } # Darman, Halaqu Qal'eh, Malejin, Gavur Qal'eh -> 15706 + link = { autogenerated = yes imp = 5886 ck3 = 15705 ck3 = 5338 } # Akkei -> 15705, Tikhon + link = { autogenerated = yes imp = 4561 ck3 = 15704 } # Lebedia -> 15704 + link = { autogenerated = yes imp = 998 ck3 = 15703 } # Artemita -> 15703 + link = { autogenerated = yes imp = 7612 ck3 = 15702 ck3 = 5335 } # Maran -> 15702, Kuban + link = { autogenerated = yes imp = 997 ck3 = 15701 } # Kotorodz -> 15701 link = { autogenerated = yes imp = 2001 ck3 = 1570 ck3 = 1573 } # DeventiaMeridionalis -> TOTNES, LAUNCESTON link = { autogenerated = yes imp = 7834 ck3 = 157 } # Chrononia Borealis -> SUVALKAI + link = { autogenerated = yes imp = 1628 ck3 = 15699 ck3 = 4543 } # Piri -> 15699, ARDABIL + link = { autogenerated = yes imp = 7635 ck3 = 15697 } # Iados -> 15697 + link = { autogenerated = yes imp = 4563 ck3 = 15695 ck3 = 15698 } # Phanagoria -> 15695, 15698 + link = { autogenerated = yes imp = 1502 ck3 = 15693 } # Tasuk -> 15693 + link = { autogenerated = yes imp = 1527 imp = 5215 ck3 = 15692 } # Yanik tepe, IMPASSIBLE TERRAIN 215 -> 15692 + link = { autogenerated = yes imp = 4544 ck3 = 15691 ck3 = 561 } # Theodosia -> 15691, Theodosia link = { autogenerated = yes imp = 2006 imp = 2003 ck3 = 1569 } # Olconum, IscaDumnoniorum -> EXETER + link = { autogenerated = yes imp = 7600 imp = 4564 ck3 = 15689 } # Sabiranum, Labrys -> 15689 + link = { autogenerated = yes imp = 4550 ck3 = 15687 } # Kimmerikon -> 15687 + link = { autogenerated = yes imp = 7613 ck3 = 15686 ck3 = 15688 } # Yelsa -> 15686, 15688 + link = { autogenerated = yes imp = 1561 ck3 = 15682 ck3 = 15700 } # Mardastan -> 15682, 15700 + link = { autogenerated = yes imp = 1526 ck3 = 15680 ck3 = 4537 } # T'awrēš -> 15680, TABRIZ + link = { autogenerated = yes imp = 5933 ck3 = 15676 } # Vylda -> 15676 + link = { autogenerated = yes imp = 4562 ck3 = 15675 ck3 = 15679 ck3 = 598 } # Hermonassa -> 15675, 15679, Tmutarakan + link = { autogenerated = yes imp = 4543 ck3 = 15674 ck3 = 15684 } # Athenaion -> 15674, 15684 + link = { autogenerated = yes imp = 1627 ck3 = 15673 } # Ardabil -> 15673 + link = { autogenerated = yes imp = 5897 ck3 = 15672 } # Yrbent -> Arzgir + link = { autogenerated = yes imp = 7610 ck3 = 15668 ck3 = 15690 } # Sinad -> 15668, 15690 + link = { autogenerated = yes imp = 4566 ck3 = 15666 ck3 = 5296 } # Bata -> 15666, Bata + link = { autogenerated = yes imp = 1560 ck3 = 15665 } # Andzevatsik (Kangovar) -> 15665 + link = { autogenerated = yes imp = 1565 ck3 = 15664 } # Shahi Island -> 15664 + link = { autogenerated = yes imp = 7608 ck3 = 15663 ck3 = 15669 } # Hypanera -> 15663, 15669 + link = { autogenerated = yes imp = 4565 ck3 = 15662 } # SindikosLimen -> 15662 + link = { autogenerated = yes imp = 7614 ck3 = 15660 ck3 = 15677 ck3 = 5289 } # Salavy -> 15660, 15677, Papagia + link = { autogenerated = yes imp = 4538 ck3 = 15659 ck3 = 560 } # Chersonesos -> 15659, Chersonesus + link = { autogenerated = yes imp = 1507 imp = 1505 ck3 = 15658 } # Sormanabad tepe, Arziyayad tepe -> 15658 + link = { autogenerated = yes imp = 4540 ck3 = 15657 } # Lampas -> 15657 + link = { autogenerated = yes imp = 7609 ck3 = 15654 ck3 = 5301 } # Hypanispa -> 15654, Betzini + link = { autogenerated = yes imp = 7616 ck3 = 15651 ck3 = 15655 ck3 = 5298 } # Tmakrat -> 15651, 15655, Ulmi + link = { autogenerated = yes imp = 4541 ck3 = 15650 ck3 = 15671 } # AloustouPhrourion -> 15650, 15671 link = { autogenerated = yes imp = 2007 ck3 = 1565 ck3 = 1566 ck3 = 1568 } # Durnovaria -> WAREHAM, POOLE, LYME + link = { autogenerated = yes imp = 7620 ck3 = 15649 ck3 = 5300 } # Kalkry* -> 15649, Etzeri + link = { autogenerated = yes imp = 4539 ck3 = 15646 } # Charax -> 15646 + link = { autogenerated = yes imp = 3390 imp = 1593 ck3 = 15645 } # Farrab, Miyana -> 15645 + link = { autogenerated = yes imp = 7615 ck3 = 15643 ck3 = 5297 ck3 = 15627 ck3 = 15632 } # Elvruz* -> 15643, Zapaxi, 15627, 15632 + link = { autogenerated = yes imp = 1640 ck3 = 15642 } # Tigranakert -> 15642 + link = { autogenerated = yes imp = 4567 ck3 = 15641 ck3 = 15644 } # HeptalouLimen -> 15641, 15644 + link = { autogenerated = yes imp = 5928 imp = 5926 imp = 5929 ck3 = 15640 } # Nechek, Duzea, Zhodyn -> 15640 link = { autogenerated = yes imp = 2024 ck3 = 1564 ck3 = 1581 } # Abona -> MALMESBURY, BRISTOL + link = { autogenerated = yes imp = 1671 ck3 = 15639 ck3 = 15764 } # Southwest Arran -> 15639, 15764 + link = { autogenerated = yes imp = 7611 ck3 = 15636 ck3 = 15653 ck3 = 15656 } # Alanis -> 15636, 15653, 15656 + link = { autogenerated = yes imp = 1509 imp = 1508 ck3 = 15634 } # Siraganon, Balajuk tepe -> 15634 + link = { autogenerated = yes imp = 5868 ck3 = 15630 } # Lotin -> 15630 link = { autogenerated = yes imp = 2012 ck3 = 1563 } # Cunetio -> RAMSBURY + link = { autogenerated = yes imp = 7619 ck3 = 15628 ck3 = 15631 } # Lapra* -> 15628, 15631 + link = { autogenerated = yes imp = 1519 imp = 1511 imp = 1518 ck3 = 15626 } # Qalat, Qalatgah, Kuh-i Chorblach -> 15626 + link = { autogenerated = yes imp = 4568 ck3 = 15624 ck3 = 600 ck3 = 15618 } # PalaiaAchaia -> 15624, Nicopsia, 15618 + link = { autogenerated = yes imp = 7630 ck3 = 15620 } # Kaflur* -> 15620 + link = { autogenerated = yes imp = 5866 ck3 = 15614 ck3 = 15622 ck3 = 5307 } # Zabender -> 15614, 15622, Kizlyar + link = { autogenerated = yes imp = 5871 ck3 = 15613 ck3 = 5310 } # Zarem -> 15613, Cisterki + link = { autogenerated = yes imp = 7633 ck3 = 15611 ck3 = 5342 } # Kayit* -> 15611, Sambalut + link = { autogenerated = yes imp = 7607 ck3 = 15610 ck3 = 15633 ck3 = 15615 } # Abasgria -> 15610, 15633, 15615 link = { autogenerated = yes imp = 2011 ck3 = 1561 ck3 = 1562 } # Sorviodunum -> SALISBURY, WILTON + link = { autogenerated = yes imp = 7631 ck3 = 15603 ck3 = 15625 } # Irkat* -> 15603, 15625 link = { autogenerated = yes imp = 2039 ck3 = 1560 ck3 = 1582 } # Korinion -> WITNEY, WINCHCOMBE link = { autogenerated = yes imp = 2061 ck3 = 1559 } # Dorn -> BANBURY - link = { autogenerated = yes imp = 2025 ck3 = 1556 } # Verluccio -> NEWBURY + link = { autogenerated = yes imp = 1745 ck3 = 15585 ck3 = 15587 ck3 = 15596 ck3 = 15605 } # Masaitike -> 15585, 15587, 15596, 15605 + link = { autogenerated = yes imp = 7632 ck3 = 15584 ck3 = 5304 } # Irmana* -> 15584, Balanjar + link = { autogenerated = yes imp = 11460 imp = 11453 imp = 11454 imp = 11459 ck3 = 15583 } # Stana, Riza, Mauka, Waru -> 15583 + link = { autogenerated = yes imp = 7602 ck3 = 15581 ck3 = 15582 } # Endzhara -> 15581, 15582 + link = { autogenerated = yes imp = 7623 ck3 = 15580 ck3 = 15956 ck3 = 15933 ck3 = 15942 ck3 = 5306 } # Terekata -> 15580, 15956, 15933, 15942, Durdzukia + link = { autogenerated = yes imp = 7626 ck3 = 15578 ck3 = 15579 } # Arukai* -> 15578, 15579 + link = { autogenerated = yes imp = 7628 ck3 = 15577 ck3 = 603 } # Malyts* -> 15577, Cabarda + link = { autogenerated = yes imp = 7627 ck3 = 15576 ck3 = 15955 } # Verks* -> 15576, 15955 + link = { autogenerated = yes imp = 7629 ck3 = 15575 ck3 = 15597 ck3 = 5302 } # Gorat* -> 15575, 15597, Tatartopa + link = { autogenerated = yes imp = 7622 ck3 = 15567 ck3 = 15588 ck3 = 606 } # Skarin* -> 15567, 15588, Petigoria + link = { autogenerated = yes imp = 7606 ck3 = 15563 ck3 = 15602 ck3 = 15608 ck3 = 5299 } # Heniat -> 15563, 15602, 15608, Maghas + link = { autogenerated = yes imp = 1740 imp = 1741 ck3 = 15561 } # Tzibile, Dioscurias / Sebastopolis -> 15561 + link = { autogenerated = yes imp = 2025 ck3 = 1556 ck3 = 1557 } # Verluccio -> NEWBURY, ABINGDON + link = { autogenerated = yes imp = 1743 ck3 = 15557 ck3 = 15558 } # Pityous -> 15557, 15558 link = { autogenerated = yes imp = 2016 ck3 = 1555 } # Calleva -> READING - link = { autogenerated = yes imp = 2045 ck3 = 1553 ck3 = 1600 } # Bannaventa -> NEWPORT, NORTHAMPTON - link = { imp = 2041 ck3 = 1551 ck3 = 1552 ck3 = 1558 } # Alavna -> BUCKINGHAM, AYLESBURY, OXFORD + link = { autogenerated = yes imp = 2041 ck3 = 1551 ck3 = 1552 } # Alavna -> BUCKINGHAM, AYLESBURY link = { autogenerated = yes imp = 10285 ck3 = 155 } # Borodinskoye -> VILNIUS link = { autogenerated = yes imp = 2014 ck3 = 1549 } # Vectis -> CARISBROOKE link = { autogenerated = yes imp = 2013 ck3 = 1546 } # Venta -> PORTSMOUTH link = { autogenerated = yes imp = 2010 ck3 = 1545 ck3 = 1548 ck3 = 1567 } # Vindocladia -> SOUTHAMPTON, CHRISTCHURCH, SHAFTESBURY link = { autogenerated = yes imp = 2015 ck3 = 1544 ck3 = 1547 } # Leucomagus -> WINCHESTER, BASINGSTOKE - link = { imp = 2053 ck3 = 1541 ck3 = 1542 } # Durobrivae -> HURSTINGSTONE, NORMAN CROSS - link = { autogenerated = yes imp = 2043 ck3 = 1540 } # Magiovinium -> LUTON + link = { autogenerated = yes imp = 2053 ck3 = 1542 } # Durobrivae -> NORMAN CROSS + link = { autogenerated = yes imp = 2043 ck3 = 1540 ck3 = 1553 } # Magiovinium -> LUTON, NEWPORT link = { autogenerated = yes imp = 10288 ck3 = 154 } # Tytuvenu -> KERNAVE link = { autogenerated = yes imp = 2044 ck3 = 1538 } # Lactodorum -> BEDFORD - link = { imp = 2052 ck3 = 1536 ck3 = 1543 } # Durovigutum -> PAPWORTH, LEIGHTONSTONE + link = { autogenerated = yes imp = 2052 ck3 = 1536 ck3 = 1541 ck3 = 1543 } # Durovigutum -> PAPWORTH, HURSTINGSTONE, LEIGHTONSTONE link = { autogenerated = yes imp = 2034 ck3 = 1534 ck3 = 1535 } # Camboritum -> CAMBRIDGE, RADFIELD link = { autogenerated = yes imp = 2051 ck3 = 1533 ck3 = 1539 } # Duroliponte -> HERTFORD, AMPTHILL - link = { imp = 2027 ck3 = 1531 ck3 = 1532 ck3 = 1554 } # Verulamium -> BERKHAMSTED, SAINT ALBANS, WYCOMBE + link = { autogenerated = yes imp = 2027 ck3 = 1531 ck3 = 1532 ck3 = 1554 } # Verulamium -> BERKHAMSTED, SAINT ALBANS, WYCOMBE link = { autogenerated = yes imp = 2018 ck3 = 1528 ck3 = 1529 ck3 = 1530 } # Pontes -> WOXBRIGGE, GORE, BRENTFORD link = { autogenerated = yes imp = 2037 ck3 = 1525 ck3 = 1537 } # Denevia -> LYNN, ELY link = { autogenerated = yes imp = 2031 ck3 = 1524 } # Branodunum -> WALSINGHAM @@ -6100,7 +6310,7 @@ link = { autogenerated = yes imp = 2078 ck3 = 1500 ck3 = 1595 ck3 = 1597 } # Cataractonium -> YARLESTRE, YORK, WHITBY link = { autogenerated = yes imp = 10298 imp = 10300 imp = 10301 ck3 = 150 } # Paliene, Viku, Jekabpils -> OKNIST link = { autogenerated = yes imp = 2208 ck3 = 15 ck3 = 8741 } # DariniaMeridionalis -> DOWNPATRICK, Bangor - link = { imp = 2088 ck3 = 1499 } # Virosidum -> BOLTON + link = { autogenerated = yes imp = 2088 imp = 5979 ck3 = 1499 } # Virosidum, Central British Impassable -> BOLTON link = { autogenerated = yes imp = 12614 ck3 = 146 } # Nato -> POLTSAMAA link = { autogenerated = yes imp = 9492 imp = 9468 ck3 = 1458 } # Yanran, Yemilc -> Tarvagatai link = { autogenerated = yes imp = 9502 ck3 = 1456 } # Okur -> Ikh Bogd @@ -6113,13 +6323,13 @@ link = { autogenerated = yes imp = 7184 ck3 = 1445 ck3 = 7976 } # Kuche -> Aksu, Toksu link = { autogenerated = yes imp = 6749 ck3 = 1441 ck3 = 9600 ck3 = 9601 } # Shanshan -> Qarqan, Waxxari, Tele link = { autogenerated = yes imp = 6744 imp = 6753 ck3 = 1439 } # Shule, Toksa*** -> Kashgar - link = { autogenerated = yes imp = 6746 ck3 = 1438 ck3 = 7960 } # Shaju -> Yarkand, Yangi Hissar + link = { autogenerated = yes imp = 6746 ck3 = 1438 ck3 = 7960 ck3 = 13617 } # Shaju -> Yarkand, Yangi Hissar, Mountains link = { autogenerated = yes imp = 12338 ck3 = 1435 } # Falu -> Astana link = { autogenerated = yes imp = 12282 ck3 = 1434 ck3 = 7302 ck3 = 7303 ck3 = 7307 } # Bidaik -> Karkaraly, Altyn Su, Mautan Tas, Kent_KAZ link = { autogenerated = yes imp = 12312 imp = 12303 ck3 = 1433 } # Puscas, Haps -> Terekti link = { autogenerated = yes imp = 11395 imp = 11402 ck3 = 1432 } # Laga, Vaca -> Symbyl link = { autogenerated = yes imp = 7269 imp = 7266 imp = 7272 ck3 = 1431 } # Jaxartia*, Qaram*, Khanus* -> Otrar - link = { autogenerated = yes imp = 12357 ck3 = 1430 } # Xsaya -> Zhitikara + link = { autogenerated = yes imp = 12357 ck3 = 1430 ck3 = 5499 } # Xsaya -> Zhitikara, Orskaya link = { autogenerated = yes imp = 12262 ck3 = 1427 } # Urzhar -> Urzhar link = { autogenerated = yes imp = 6780 imp = 11553 ck3 = 1424 } # Nevaket, Impassable -> Suyab link = { autogenerated = yes imp = 7406 ck3 = 1422 } # Sitapur* -> Naimisa @@ -6141,14 +6351,14 @@ link = { autogenerated = yes imp = 8805 ck3 = 14033 } # Yeolgu -> 14033 link = { autogenerated = yes imp = 9299 ck3 = 14026 ck3 = 13421 } # Siljig -> 14026, 13421 link = { autogenerated = yes imp = 9296 ck3 = 14021 } # Geun gi -> 14021 - link = { autogenerated = yes imp = 9604 ck3 = 14019 ck3 = 14020 ck3 = 14022 } # Somun -> 14019, 14020, 14022 + link = { autogenerated = yes imp = 9604 ck3 = 14019 ck3 = 14020 } # Somun -> 14019, 14020 link = { autogenerated = yes imp = 9279 ck3 = 14016 ck3 = 14017 } # Naebiri -> 14016, 14017 link = { autogenerated = yes imp = 9592 ck3 = 14015 } # Arim -> 14015 link = { autogenerated = yes imp = 12601 ck3 = 140 } # Mendak -> GULBENE link = { autogenerated = yes imp = 2173 ck3 = 14 } # DariniaSeptentrionalis -> CARRICKFERGUS link = { autogenerated = yes imp = 9434 ck3 = 13978 ck3 = 7665 } # Efushui -> Ak Termel, Tashtyp link = { autogenerated = yes imp = 9307 ck3 = 13977 } # Zeergene -> 13977 - link = { imp = 12715 ck3 = 13969 ck3 = 13699 } # Keru -> Baga Gazrin Chuluu, Saynshand + link = { autogenerated = yes imp = 12715 ck3 = 13969 ck3 = 13699 ck3 = 11812 } # Keru -> Baga Gazrin Chuluu, Saynshand, (Unknown) link = { autogenerated = yes imp = 9325 ck3 = 13968 } # Zulzaga -> Dongoin Shire link = { autogenerated = yes imp = 12260 ck3 = 13967 ck3 = 7175 } # Dzhuz -> Deyihai, Djusagach link = { autogenerated = yes imp = 10616 ck3 = 13957 ck3 = 13960 ck3 = 13963 ck3 = 7204 } # Tekes -> Khulja, Tuzkol, 13963, Musari @@ -6157,42 +6367,40 @@ link = { autogenerated = yes imp = 9540 ck3 = 13942 ck3 = 13941 } # PASS -> Wufeng, 13941 link = { autogenerated = yes imp = 8215 ck3 = 13938 ck3 = 13934 ck3 = 1446 ck3 = 7986 } # Gaochangbi -> Turfan, Qara-Khoja, Piqan, Lemjin link = { autogenerated = yes imp = 9875 ck3 = 13919 } # Canliu -> 13919 - link = { imp = 8225 ck3 = 13918 ck3 = 13932 ck3 = 1443 } # Yuanqu -> Borhol, Karasahr, Qagan Qehe + link = { autogenerated = yes imp = 8225 ck3 = 13918 ck3 = 13932 ck3 = 1443 ck3 = 12749 } # Yuanqu -> Borhol, Karasahr, Qagan Qehe, 12749 link = { autogenerated = yes imp = 8211 ck3 = 13912 ck3 = 7988 ck3 = 1614 } # Weili -> Baghrash, Tashidan, TIANSHAN link = { autogenerated = yes imp = 8208 ck3 = 13911 ck3 = 1444 ck3 = 7975 ck3 = 7977 ck3 = 7979 ck3 = 13867 } # Yancheng -> Bay, Kucha, Kumtara, Kizilgaha, Subashi, 13867 link = { autogenerated = yes imp = 8209 ck3 = 13907 } # Luntai -> Bugur link = { autogenerated = yes imp = 8796 ck3 = 13904 ck3 = 13905 ck3 = 13922 ck3 = 13924 } # Xigaima -> Seongyeong, 13905, Cheonmunryeong, Yeongju - link = { autogenerated = yes imp = 8212 ck3 = 13903 ck3 = 13927 ck3 = 13930 ck3 = 7983 ck3 = 7984 ck3 = 1550 } # Weixu -> Shanguo, 13927, Benbutu, Hoxud, K�m�x, TIANSHAN - link = { imp = 12456 ck3 = 13902 ck3 = 7646 ck3 = 7645 ck3 = 7650 ck3 = 7661 ck3 = 8704 } # Maso -> Altyr, Itkol, Kyzykchur, Yunik, Kuztom, Uzhur + link = { autogenerated = yes imp = 8212 ck3 = 13903 ck3 = 13927 ck3 = 13930 ck3 = 7983 ck3 = 7984 ck3 = 1550 } # Weixu -> Shanguo, 13927, Benbutu, Hoxud, Kümüx, TIANSHAN link = { autogenerated = yes imp = 8798 ck3 = 13897 ck3 = 13885 } # Wandu -> Gungnae, Jeongju - link = { autogenerated = yes imp = 9515 ck3 = 13894 } # Nuoshui -> Qaraqum + link = { autogenerated = yes imp = 9515 ck3 = 13894 ck3 = 12447 } # Nuoshui -> Qaraqum, Nuozhenshuiyi link = { autogenerated = yes imp = 12449 ck3 = 13891 ck3 = 7419 ck3 = 7420 } # Tuto -> Esaulka, Tomazaq, Naryk - link = { imp = 9432 ck3 = 13889 ck3 = 7647 } # Jiankun -> Salbyk, Kemzhiket + link = { autogenerated = yes imp = 12456 ck3 = 13889 ck3 = 13902 ck3 = 7646 ck3 = 7645 ck3 = 7650 ck3 = 7661 ck3 = 8704 } # Maso -> Salbyk, Altyr, Itkol, Kyzykchur, Yunik, Kuztom, Uzhur link = { autogenerated = yes imp = 8793 ck3 = 13887 } # Gaogouli -> 13887 link = { autogenerated = yes imp = 9883 ck3 = 13886 ck3 = 13895 ck3 = 12423 } # Yaoyang -> 13886, Urkan, (Unknown) link = { autogenerated = yes imp = 8797 ck3 = 13880 ck3 = 13864 } # Chengxian -> Changam, 13864 link = { autogenerated = yes imp = 8751 ck3 = 13876 } # Zaoyang -> 13876 - link = { imp = 8760 imp = 8759 ck3 = 13871 } # Baitan, Huayan -> 13871 + link = { autogenerated = yes imp = 8760 imp = 8759 ck3 = 13871 } # Baitan, Huayan -> 13871 link = { autogenerated = yes imp = 9667 ck3 = 13870 ck3 = 13883 } # Jujiu -> Baegam, Gaimou link = { autogenerated = yes imp = 8615 ck3 = 13865 } # Jiuyuan -> Naji link = { autogenerated = yes imp = 8621 ck3 = 13857 } # Guyang -> Tungsheng link = { autogenerated = yes imp = 8791 ck3 = 13852 } # Xianping -> Bakjak link = { autogenerated = yes imp = 12455 ck3 = 13851 ck3 = 7662 ck3 = 7664 ck3 = 8705 ck3 = 7663 } # Mektut -> Balyksa, Uybat, Kabyrza, Tashtagol, Kuznetsk link = { autogenerated = yes imp = 8799 ck3 = 13835 ck3 = 13846 } # Beipeishui -> Yongbyon, Sakachu - link = { autogenerated = yes imp = 12753 ck3 = 13834 ck3 = 13830 ck3 = 13855 ck3 = 13863 } # Pirner -> Nurgan, Kherpuchi, Tyr, Takhta + link = { autogenerated = yes imp = 12753 ck3 = 13834 ck3 = 13855 } # Pirner -> Nurgan, Tyr link = { autogenerated = yes imp = 8662 imp = 8659 ck3 = 13832 } # Wucheng, Luo -> 13832 link = { autogenerated = yes imp = 8792 ck3 = 13822 } # Fanhan -> Tenju link = { autogenerated = yes imp = 9886 ck3 = 13819 ck3 = 13839 } # Zishui -> Cholsan, Yakholju link = { autogenerated = yes imp = 7651 ck3 = 1381 } # Balurghat* -> Pundravardhana link = { autogenerated = yes imp = 6775 imp = 6773 imp = 6774 ck3 = 13808 } # Kabryk, Gulka, Karamyk -> Taldyk link = { autogenerated = yes imp = 12600 ck3 = 138 } # Jauhadak -> REZEKNE - link = { autogenerated = yes imp = 12721 imp = 12725 ck3 = 13785 } # Tial, Yilig -> 13785 link = { autogenerated = yes imp = 9576 ck3 = 7998 } # Puchanghai -> Yuni link = { autogenerated = yes imp = 8214 ck3 = 13782 ck3 = 7999 } # Yixun -> 13782, Miran link = { autogenerated = yes imp = 5480 imp = 5479 imp = 5481 imp = 5482 imp = 5486 ck3 = 1378 } # Dyruzh, Moinak, Zantem, Gyesch, Sechoria -> Gurganj link = { autogenerated = yes imp = 8801 ck3 = 13778 } # Joseon -> 13778 link = { autogenerated = yes imp = 12739 ck3 = 13777 ck3 = 13805 ck3 = 13784 } # Tuksan -> Sibichi, Tatibe, Mountains - link = { autogenerated = yes imp = 12452 ck3 = 13776 ck3 = 7667 ck3 = 8706 } # Sempelanke -> 13776, Mrassu, ALTAISHAN + link = { autogenerated = yes imp = 12452 ck3 = 13776 ck3 = 7667 } # Sempelanke -> 13776, Mrassu link = { autogenerated = yes imp = 12760 ck3 = 13775 ck3 = 13812 ck3 = 13824 ck3 = 13856 ck3 = 13878 } # Gukur -> Katand, Dagi, Chayvo, Tungor, Vyrgyt link = { autogenerated = yes imp = 12716 imp = 12718 ck3 = 13772 } # Yurek, Isir -> 13772 link = { autogenerated = yes imp = 12259 ck3 = 13770 ck3 = 13781 ck3 = 1426 ck3 = 7172 } # Kulbay -> Sarkand, 13781, Sarkand, Iki-Oguz @@ -6214,16 +6422,17 @@ link = { autogenerated = yes imp = 9537 ck3 = 13694 } # PASS -> 13694 link = { autogenerated = yes imp = 12249 imp = 5966 ck3 = 13692 } # Akzhar, Steppe Impassable -> Tasmuryn link = { autogenerated = yes imp = 12255 ck3 = 13687 ck3 = 13721 } # Taldykorgan -> Qayaliq, Qarabulaq - link = { autogenerated = yes imp = 9551 ck3 = 13682 ck3 = 13715 ck3 = 13742 ck3 = 13759 ck3 = 13786 ck3 = 13791 } # Haoshi -> Miju, Kaul, Moju, Heygju, Yeongju, Dangbi link = { autogenerated = yes imp = 9461 ck3 = 13678 ck3 = 7191 } # Xilin -> Todog, Dalete link = { autogenerated = yes imp = 12756 ck3 = 13673 ck3 = 13691 ck3 = 13697 ck3 = 13723 ck3 = 13731 ck3 = 13751 } # Burbur -> Uskvo, Komrvo, Mgrach, Yrkyr, Noglvo, Viakhtu link = { autogenerated = yes imp = 4403 ck3 = 1367 ck3 = 1368 } # Usinaragiri -> Saharanpur, Hastinapura link = { autogenerated = yes imp = 5669 ck3 = 13662 ck3 = 13730 ck3 = 9609 ck3 = 13725 } # PASS -> Bugaiwilik, Mazar Tagh, Bujayi, Karadong + link = { autogenerated = yes imp = 9724 ck3 = 13661 ck3 = 12323 ck3 = 12418 } # Zadlax -> Zorgol, Olochi, Aoluguya link = { autogenerated = yes imp = 8222 ck3 = 13660 ck3 = 7466 } # Danhuan -> Changbaliq, Qutubi link = { autogenerated = yes imp = 4408 ck3 = 1366 ck3 = 3456 ck3 = 3477 } # Madrakara -> Asigarh, Narabhata, Dadrewa link = { autogenerated = yes imp = 11386 imp = 11397 imp = 11398 ck3 = 13659 } # Ganu, Asxi, Arar -> 13659 link = { autogenerated = yes imp = 9456 ck3 = 13650 ck3 = 7165 ck3 = 7169 } # Yilihe -> Besshatyr, Chilik, Altyn-Emel - link = { autogenerated = yes imp = 4406 ck3 = 1365 } # Rohtak -> Indraprastha + link = { autogenerated = yes imp = 4406 ck3 = 3475 } # Rohtak -> Rohtak + link = { autogenerated = yes imp = 4413 ck3 = 1365 } # Sonipat -> Indraprastha link = { autogenerated = yes imp = 8223 ck3 = 13647 ck3 = 7459 ck3 = 13566 } # Dong Qiemi -> Shoymogu, Saybagh, Urabo link = { autogenerated = yes imp = 12737 ck3 = 13646 ck3 = 13718 } # Irga -> Khalas, Kartun link = { autogenerated = yes imp = 9457 ck3 = 13644 ck3 = 13653 ck3 = 1425 ck3 = 7167 ck3 = 7170 ck3 = 7200 } # Gongyue -> Usek, 13653, Almaliq, Sharyn, Khorgos, Junzi @@ -6232,8 +6441,8 @@ link = { autogenerated = yes imp = 12733 ck3 = 13639 ck3 = 13676 } # Iandaku -> Charkir-Mudun, 13676 link = { autogenerated = yes imp = 9435 imp = 12672 ck3 = 7669 } # Arsilan, Impassable -> Kudyrge link = { autogenerated = yes imp = 9444 ck3 = 13632 ck3 = 7631 } # PASS -> 13632, Manjylu Arzhan - link = { autogenerated = yes imp = 12730 imp = 12728 ck3 = 13630 } # Urak, Sogik -> 13630 link = { autogenerated = yes imp = 11541 ck3 = 1363 } # Harapa -> Dipalpur + link = { autogenerated = yes imp = 7605 ck3 = 13623 ck3 = 15914 ck3 = 16311 ck3 = 15899 ck3 = 15903 } # Urtseki -> 13623, 15914, Urakhi, 15899, 15903 link = { autogenerated = yes imp = 12757 ck3 = 13620 ck3 = 7207 } # Exan -> Pilvo, Rutaka link = { autogenerated = yes imp = 4379 ck3 = 1362 } # Phegus -> Lahur link = { autogenerated = yes imp = 10618 ck3 = 13618 ck3 = 7168 } # Caspan -> Turgen, Begash @@ -6243,12 +6452,13 @@ link = { autogenerated = yes imp = 12732 ck3 = 13609 ck3 = 13610 ck3 = 13962 } # Pemun -> Jeonju, Unashi, Banju link = { autogenerated = yes imp = 12731 ck3 = 13605 ck3 = 13606 ck3 = 13607 ck3 = 13608 ck3 = 13944 ck3 = 13954 ck3 = 13974 } # Semtu -> 13605, Mogju, Suifun, Sainbar, Gyeongju, Yeonchu, 13974 link = { autogenerated = yes imp = 9544 ck3 = 13603 ck3 = 13604 ck3 = 13959 } # Baishan -> Heungju, Tongju, Noju - link = { autogenerated = yes imp = 9552 ck3 = 13601 ck3 = 13637 ck3 = 13654 ck3 = 13666 ck3 = 13681 ck3 = 13702 ck3 = 13710 } # Funie South -> Dongmo, Ningguta, Hoju, Boli, Sanggyeong, Balju, Yongju + link = { autogenerated = yes imp = 9542 ck3 = 13602 ck3 = 13627 } # Sumo -> Gugak, Jiaohe + link = { autogenerated = yes imp = 9552 ck3 = 13601 ck3 = 13637 ck3 = 13654 ck3 = 13681 ck3 = 13702 ck3 = 13710 } # Funie South -> Dongmo, Ningguta, Hoju, Sanggyeong, Balju, Yongju link = { autogenerated = yes imp = 10598 imp = 10599 imp = 10600 ck3 = 1360 } # Male, Kolhumadulu, Huvadhoo -> Maldives link = { autogenerated = yes imp = 12599 ck3 = 136 ck3 = 137 } # Niini -> JERSIKA, DAUGAVPILS - link = { autogenerated = yes imp = 12719 ck3 = 13596 ck3 = 13635 } # Yuldur -> Abaga, Diem Keer + link = { autogenerated = yes imp = 12719 ck3 = 13635 ck3 = 13596 } # Yuldur -> Diem Keer, Abaga link = { autogenerated = yes imp = 12755 ck3 = 13593 ck3 = 13594 ck3 = 13640 } # Halnozi -> Poronai, Aniva, Longari - link = { autogenerated = yes imp = 4420 ck3 = 1359 ck3 = 3461 } # Mathura -> Mathura, Govardhan + link = { autogenerated = yes imp = 4420 ck3 = 1359 ck3 = 3461 ck3 = 3968 } # Mathura -> Mathura, Govardhan, Sakarai link = { autogenerated = yes imp = 12751 ck3 = 13589 ck3 = 13695 ck3 = 13588 } # Galrala -> Datta, Kizi, Kenada link = { autogenerated = yes imp = 12749 ck3 = 13583 ck3 = 13641 ck3 = 13586 } # Bejna -> Pivan, Uktur, Khutu link = { autogenerated = yes imp = 12744 ck3 = 13581 ck3 = 13582 ck3 = 7600 ck3 = 13584 } # Jacra -> Nergen, Khungari, Taju, Oune @@ -6259,60 +6469,60 @@ link = { autogenerated = yes imp = 9555 ck3 = 13562 ck3 = 7473 ck3 = 7505 ck3 = 12184 ck3 = 13561 ck3 = 13563 } # Lanhe -> Dayan, Mergen, Keluo, Nenhe, Bute Ha, Wodu link = { autogenerated = yes imp = 4425 ck3 = 1356 } # Kanyakubja -> Kanyakubja link = { autogenerated = yes imp = 10614 ck3 = 13558 } # Aktogay -> Temerlik - link = { autogenerated = yes imp = 9724 ck3 = 13555 ck3 = 13661 ck3 = 12323 ck3 = 12418 } # Zadlax -> Qasar, Zorgol, Olochi, Aoluguya link = { autogenerated = yes imp = 10612 ck3 = 13554 ck3 = 13556 } # Issyk -> Almatau, Talkhiza link = { autogenerated = yes imp = 11407 ck3 = 13552 ck3 = 13551 ck3 = 7160 } # Adrug -> Kastek, Toqmaq, Serektas link = { autogenerated = yes imp = 11406 ck3 = 13550 ck3 = 7214 } # Krou -> Kulshub, Southern Balkash wasteland link = { autogenerated = yes imp = 7437 imp = 7439 imp = 7440 ck3 = 1355 } # Dhavagarta*, Bundi*, Khandar* -> Ranthambore - link = { imp = 11394 ck3 = 13549 ck3 = 7144 } # Savan -> 13549, Aspara - link = { imp = 11390 ck3 = 13547 ck3 = 7145 } # Lanyar -> Mirki, Argu + link = { autogenerated = yes imp = 11394 ck3 = 13549 } # Savan -> 13549 + link = { autogenerated = yes imp = 11390 ck3 = 13547 ck3 = 7144 ck3 = 7145 } # Lanyar -> Mirki, Aspara, Argu link = { autogenerated = yes imp = 11387 imp = 11388 ck3 = 13544 } # Agaie, Galage -> Akhyr-Tash link = { autogenerated = yes imp = 11389 ck3 = 13543 } # Ecavu -> 13543 link = { autogenerated = yes imp = 11378 ck3 = 13540 } # Vurun -> Juvikat - link = { imp = 11377 imp = 6793 ck3 = 13538 } # Val, Otrar -> Karatau + link = { autogenerated = yes imp = 11377 ck3 = 13538 ck3 = 7212 } # Val -> Karatau, Chimmkent mountains link = { autogenerated = yes imp = 10531 ck3 = 13537 ck3 = 7537 } # Boroo -> 13537, Boroo link = { autogenerated = yes imp = 10538 ck3 = 13536 ck3 = 7532 ck3 = 7534 ck3 = 7535 } # Bayannuur -> Tar, Noin Ula, (Unknown), Orkhontuul - link = { imp = 11376 ck3 = 13535 } # Gik -> Arpauzen + link = { autogenerated = yes imp = 11376 imp = 6793 ck3 = 13535 } # Gik, Otrar -> Arpauzen link = { autogenerated = yes imp = 10548 ck3 = 13534 ck3 = 7576 ck3 = 7604 ck3 = 14008 } # Burenhaan -> Erchu Khot, Ikh Uul, Tsagaan-Uul, Mountains link = { autogenerated = yes imp = 10546 ck3 = 13533 ck3 = 7583 ck3 = 7601 ck3 = 7602 ck3 = 7630 } # Terekhol -> 13533, Karates, Bayan_UVS, Altan Els, Samag Altay link = { autogenerated = yes imp = 10542 ck3 = 13532 ck3 = 7597 ck3 = 7629 ck3 = 7627 ck3 = 7628 } # Ulangom -> Turgen, Ulaangom, Sagly, Khindigtik Khol, Chadan link = { autogenerated = yes imp = 10822 ck3 = 13530 ck3 = 13531 } # Kokorya -> Kuray, Chuya link = { autogenerated = yes imp = 7389 ck3 = 1353 ck3 = 3479 ck3 = 3969 } # Sikar* -> Harshnath, Kuchaman, Khaluvana link = { autogenerated = yes imp = 9448 ck3 = 13528 ck3 = 13529 ck3 = 7198 ck3 = 7486 ck3 = 7488 ck3 = 1495 } # Jinshan -> 13528, 13529, Koltun, Narym_DZU, Kurguni, ALTAISHAN + link = { autogenerated = yes imp = 5601 ck3 = 13525 } # Kusta -> 13525 link = { autogenerated = yes imp = 4409 imp = 4410 imp = 4415 ck3 = 1352 } # Karanpura, Tabarhindh, Sodal -> Sarasvati link = { autogenerated = yes imp = 9314 ck3 = 13519 ck3 = 13235 } # Tosu -> 13519, 13235 - link = { autogenerated = yes imp = 5596 ck3 = 1351 ck3 = 9027 } # Druzhiya -> Gilgit, Askole + link = { autogenerated = yes imp = 5594 ck3 = 1351 ck3 = 16282 ck3 = 7955 ck3 = 16281 } # Gilgit -> Gilgit, Danyore, Naltar, Ghizer link = { autogenerated = yes imp = 10575 ck3 = 13475 ck3 = 13478 ck3 = 13479 } # Hidaka -> 13475, 13478, 13479 link = { autogenerated = yes imp = 10567 ck3 = 13473 ck3 = 13474 ck3 = 13476 } # Oshima -> 13473, 13474, 13476 link = { autogenerated = yes imp = 10558 imp = 10559 ck3 = 13469 } # Sunazawa, Sannaimaruyama -> 13469 link = { autogenerated = yes imp = 10560 ck3 = 13468 ck3 = 13471 } # Ogawara -> 13468, 13471 - link = { autogenerated = yes imp = 10562 imp = 8113 ck3 = 13464 } # Kazuno, Japan Mountain -> 13464 - link = { imp = 10557 ck3 = 13463 ck3 = 13465 ck3 = 13462 } # Dewa -> 13463, 13465, 13462 + link = { autogenerated = yes imp = 10562 ck3 = 13464 } # Kazuno -> 13464 + link = { autogenerated = yes imp = 10557 ck3 = 13462 ck3 = 13463 ck3 = 13465 } # Dewa -> 13462, 13463, 13465 link = { autogenerated = yes imp = 4484 ck3 = 1346 ck3 = 3480 ck3 = 3487 } # Pushkara -> Shakambhari, Makrana, Purnatallakapura link = { autogenerated = yes imp = 10564 ck3 = 13458 ck3 = 13460 ck3 = 13466 } # Miyako -> 13458, 13460, 13466 link = { autogenerated = yes imp = 10563 ck3 = 13456 ck3 = 13461 } # Kitakami -> 13456, 13461 link = { autogenerated = yes imp = 10556 ck3 = 13454 ck3 = 13457 } # Uzen -> 13454, 13457 - link = { autogenerated = yes imp = 10565 imp = 8112 ck3 = 13453 } # Osaki, Japan Mountain -> 13453 + link = { autogenerated = yes imp = 10565 ck3 = 13453 } # Osaki -> 13453 link = { autogenerated = yes imp = 9670 ck3 = 13452 } # Dunyu -> 13452 link = { autogenerated = yes imp = 7431 ck3 = 1345 ck3 = 3492 } # Bhindar* -> Aghata, Nagahrada - link = { imp = 8815 ck3 = 13442 ck3 = 14037 ck3 = 13443 } # Sadumal -> 13442, 14037, 13443 + link = { autogenerated = yes imp = 8815 ck3 = 13442 ck3 = 14037 ck3 = 13443 } # Sadumal -> 13442, 14037, 13443 link = { autogenerated = yes imp = 10555 ck3 = 13441 } # Sado -> 13441 link = { autogenerated = yes imp = 8809 ck3 = 13440 ck3 = 14034 ck3 = 14039 ck3 = 14036 } # Jehae -> 13440, 14034, 14039, 14036 link = { autogenerated = yes imp = 8806 ck3 = 13437 ck3 = 13447 } # Daebang -> Haeju, 13447 link = { autogenerated = yes imp = 9608 ck3 = 13435 } # Baekje -> 13435 - link = { imp = 8814 ck3 = 13432 ck3 = 14041 ck3 = 14042 ck3 = 14043 ck3 = 14038 } # Bullae -> 13432, 14041, 14042, 14043, 14038 + link = { autogenerated = yes imp = 8814 ck3 = 13432 ck3 = 14041 ck3 = 14042 ck3 = 14043 ck3 = 14038 } # Bullae -> 13432, 14041, 14042, 14043, 14038 link = { autogenerated = yes imp = 9732 ck3 = 13431 ck3 = 13438 ck3 = 13446 } # Sirakawa -> 13431, 13438, 13446 link = { autogenerated = yes imp = 12713 imp = 12714 ck3 = 13430 } # Kapuk, Topik -> 13430 link = { autogenerated = yes imp = 9721 ck3 = 13427 ck3 = 13436 ck3 = 13439 ck3 = 13445 } # Mitinooku -> 13427, 13436, 13439, 13445 link = { autogenerated = yes imp = 9283 ck3 = 13424 ck3 = 14025 } # Mosu -> 13424, 14025 link = { autogenerated = yes imp = 8808 ck3 = 13423 } # Dongi -> 13423 - link = { imp = 9596 ck3 = 13422 ck3 = 14028 ck3 = 13411 ck3 = 13434 ck3 = 14030 } # Gori -> 13422, 14028, 13411, 13434, 14030 + link = { autogenerated = yes imp = 9596 ck3 = 13422 ck3 = 14028 ck3 = 13434 ck3 = 14030 } # Gori -> 13422, 14028, 13434, 14030 link = { autogenerated = yes imp = 9309 ck3 = 13420 } # Arzgar -> 13420 link = { autogenerated = yes imp = 7657 ck3 = 1342 } # Purusapura -> Purushapura link = { autogenerated = yes imp = 10561 ck3 = 13417 ck3 = 13448 } # Mutsu -> 13417, 13448 link = { autogenerated = yes imp = 9597 ck3 = 13416 ck3 = 13428 ck3 = 14031 } # Soknobulsa -> 13416, 13428, 14031 link = { autogenerated = yes imp = 9720 ck3 = 13415 ck3 = 13426 } # Nasu -> 13415, 13426 - link = { autogenerated = yes imp = 9730 imp = 9762 ck3 = 13414 } # Kubiki, Impassable -> 13414 + link = { autogenerated = yes imp = 9730 ck3 = 13414 } # Kubiki -> 13414 link = { autogenerated = yes imp = 9731 ck3 = 13413 ck3 = 13429 ck3 = 13444 ck3 = 13450 } # Kosinofukae -> 13413, 13429, 13444, 13450 link = { autogenerated = yes imp = 9728 ck3 = 13412 ck3 = 13425 } # Noto -> 13412, 13425 link = { autogenerated = yes imp = 4320 ck3 = 1341 } # Singhapura -> Nandana @@ -6326,19 +6536,19 @@ link = { autogenerated = yes imp = 4377 ck3 = 1339 ck3 = 3407 } # Bisambritai -> Rajanpur, Dajal link = { autogenerated = yes imp = 9298 ck3 = 13389 } # U yu -> 13389 link = { autogenerated = yes imp = 9726 ck3 = 13387 ck3 = 13391 } # Kaga -> 13387, 13391 - link = { imp = 9595 ck3 = 13386 ck3 = 13407 ck3 = 14027 } # Mokji -> 13386, 13407, 14027 - link = { autogenerated = yes imp = 9294 ck3 = 13384 ck3 = 13402 ck3 = 13409 ck3 = 13455 } # Gijeo -> Sangju, 13402, 13409, 13455 + link = { autogenerated = yes imp = 9595 ck3 = 13386 ck3 = 13407 ck3 = 14027 ck3 = 13411 } # Mokji -> 13386, 13407, 14027, 13411 + link = { autogenerated = yes imp = 9294 ck3 = 13384 ck3 = 13402 ck3 = 13409 ck3 = 13455 ck3 = 14022 } # Gijeo -> Sangju, 13402, 13409, 13455, 14022 link = { autogenerated = yes imp = 9326 ck3 = 13380 } # Oki -> 13380 link = { autogenerated = yes imp = 4349 ck3 = 1338 } # Malava -> Multan link = { autogenerated = yes imp = 9281 ck3 = 13379 } # Guro -> 13379 link = { autogenerated = yes imp = 9680 ck3 = 13376 ck3 = 13388 ck3 = 13408 ck3 = 13382 } # Sinano -> 13376, 13388, 13408, 13382 - link = { autogenerated = yes imp = 9710 ck3 = 13372 ck3 = 13385 } # Simobusa -> 13372, 13385 link = { autogenerated = yes imp = 9723 imp = 9763 ck3 = 13370 } # Mikuni, Impassable -> 13370 link = { autogenerated = yes imp = 4371 ck3 = 1337 } # Alexandria (Indus) -> Uch link = { autogenerated = yes imp = 9716 ck3 = 13367 ck3 = 13377 } # Hida -> 13367, 13377 + link = { autogenerated = yes imp = 9710 ck3 = 13366 ck3 = 13372 ck3 = 13385 } # Simobusa -> 13366, 13372, 13385 link = { autogenerated = yes imp = 9293 ck3 = 13364 ck3 = 13365 } # Saro -> 13364, 13365 - link = { autogenerated = yes imp = 9707 ck3 = 13363 ck3 = 13374 ck3 = 13378 ck3 = 13392 } # Musasi -> 13363, 13374, 13378, 13392 - link = { autogenerated = yes imp = 9706 ck3 = 13362 ck3 = 13373 ck3 = 13375 } # Titibu -> 13362, 13373, 13375 + link = { autogenerated = yes imp = 9707 ck3 = 13363 ck3 = 13374 ck3 = 13378 } # Musasi -> 13363, 13374, 13378 + link = { autogenerated = yes imp = 9706 ck3 = 13362 ck3 = 13373 ck3 = 13392 ck3 = 13375 } # Titibu -> 13362, 13373, 13392, 13375 link = { autogenerated = yes imp = 9288 imp = 9606 ck3 = 13361 } # Ballo, Impassable -> 13361 link = { autogenerated = yes imp = 9714 ck3 = 13356 } # Mugetu -> 13356 link = { autogenerated = yes imp = 9290 ck3 = 13353 ck3 = 14018 } # Gamno -> 13353, 14018 @@ -6348,17 +6558,17 @@ link = { autogenerated = yes imp = 9672 ck3 = 13339 } # Toki -> 13339 link = { autogenerated = yes imp = 9590 ck3 = 13338 ck3 = 13342 } # Geunma -> 13338, 13342 link = { autogenerated = yes imp = 9713 ck3 = 13334 } # Motosu -> 13334 - link = { autogenerated = yes imp = 9319 ck3 = 13333 ck3 = 13317 } # Tsuma -> 13333, 13317 link = { autogenerated = yes imp = 9704 ck3 = 13330 ck3 = 13331 ck3 = 13345 } # Sinaga -> 13330, 13331, 13345 link = { autogenerated = yes imp = 9733 ck3 = 13329 ck3 = 13349 ck3 = 13354 } # Futakata -> 13329, 13349, 13354 link = { autogenerated = yes imp = 9322 ck3 = 13327 ck3 = 13336 ck3 = 13341 } # Houki -> 13327, 13336, 13341 link = { autogenerated = yes imp = 9600 ck3 = 13326 } # Anya -> 13326 link = { autogenerated = yes imp = 9602 ck3 = 13324 ck3 = 14052 } # Yeomhae -> 13324, 14052 link = { autogenerated = yes imp = 9291 ck3 = 13320 ck3 = 14050 } # Guya -> 13320, 14050 + link = { autogenerated = yes imp = 9319 ck3 = 13317 ck3 = 13333 ck3 = 13288 } # Tsuma -> 13317, 13333, 13288 link = { autogenerated = yes imp = 9599 ck3 = 13315 ck3 = 14051 } # Gunmi -> 13315, 14051 link = { autogenerated = yes imp = 9683 ck3 = 13314 ck3 = 13343 } # Ohmi -> 13314, 13343 link = { autogenerated = yes imp = 9676 ck3 = 13313 ck3 = 13318 ck3 = 13322 ck3 = 13335 } # Tanba -> 13313, 13318, 13322, 13335 - link = { autogenerated = yes imp = 9709 ck3 = 13312 ck3 = 13328 ck3 = 13332 ck3 = 13360 ck3 = 13366 } # Kazusa -> 13312, 13328, 13332, 13360, 13366 + link = { autogenerated = yes imp = 9709 ck3 = 13312 ck3 = 13328 ck3 = 13332 ck3 = 13360 } # Kazusa -> 13312, 13328, 13332, 13360 link = { autogenerated = yes imp = 6822 ck3 = 1331 ck3 = 3396 } # Barbarikon -> Sonda, Nasarpur link = { autogenerated = yes imp = 9717 ck3 = 13309 ck3 = 13340 ck3 = 13357 } # Suwa -> 13309, 13340, 13357 link = { autogenerated = yes imp = 9712 ck3 = 13306 ck3 = 13319 } # Yasu -> 13306, 13319 @@ -6374,9 +6584,8 @@ link = { autogenerated = yes imp = 9735 ck3 = 13290 ck3 = 13292 } # Harimanokamo -> 13290, 13292 link = { autogenerated = yes imp = 9323 ck3 = 13289 ck3 = 13303 } # Hari -> 13289, 13303 link = { autogenerated = yes imp = 9287 imp = 9292 ck3 = 13287 } # Gojamidong, Dongno -> 13287 - link = { autogenerated = yes imp = 9702 ck3 = 13286 ck3 = 13192 } # Izu -> 13286, 13192 - link = { autogenerated = yes imp = 9699 imp = 9761 ck3 = 13285 } # Soga, Impassable -> 13285 - link = { imp = 9321 ck3 = 13283 ck3 = 13308 ck3 = 13310 } # Kii -> 13283, 13308, 13310 + link = { autogenerated = yes imp = 9699 ck3 = 13285 } # Soga -> 13285 + link = { autogenerated = yes imp = 9321 ck3 = 13283 ck3 = 13308 ck3 = 13310 ck3 = 13316 } # Kii -> 13283, 13308, 13310, 13316 link = { autogenerated = yes imp = 9697 ck3 = 13282 ck3 = 13293 } # Honokuni -> 13282, 13293 link = { autogenerated = yes imp = 4428 ck3 = 1328 } # Prayaga -> Prayaga link = { autogenerated = yes imp = 9330 ck3 = 13277 ck3 = 13281 } # Igo -> 13277, 13281 @@ -6386,7 +6595,7 @@ link = { autogenerated = yes imp = 9331 ck3 = 13262 ck3 = 13266 ck3 = 13278 } # Shima -> 13262, 13266, 13278 link = { autogenerated = yes imp = 9318 ck3 = 13260 } # Awaji -> 13260 link = { autogenerated = yes imp = 9305 ck3 = 13257 } # Tsushima -> 13257 - link = { imp = 9685 ck3 = 13256 ck3 = 13261 ck3 = 13264 } # Aki -> 13256, 13261, 13264 + link = { autogenerated = yes imp = 9685 ck3 = 13256 ck3 = 13264 ck3 = 13261 ck3 = 13279 } # Aki -> 13256, 13264, 13261, 13279 link = { autogenerated = yes imp = 9316 ck3 = 13254 ck3 = 13259 } # Sanu -> 13254, 13259 link = { autogenerated = yes imp = 9598 ck3 = 13253 } # Wonji -> 13253 link = { autogenerated = yes imp = 7340 ck3 = 1325 } # Suhma -> Madhupur @@ -6403,31 +6612,33 @@ link = { autogenerated = yes imp = 12743 ck3 = 13231 ck3 = 13810 ck3 = 12773 } # Bulkr -> Edinka, Khutsin, Agzu link = { autogenerated = yes imp = 9306 ck3 = 13230 ck3 = 13232 ck3 = 13237 } # Ito -> 13230, 13232, 13237 link = { autogenerated = yes imp = 9749 ck3 = 13228 } # Kumi -> 13228 - link = { autogenerated = yes imp = 9285 ck3 = 13224 ck3 = 13399 } # Tamna -> 13224, West Jeju + link = { autogenerated = yes imp = 10594 ck3 = 13224 } # Amindivi -> Kavaratti link = { autogenerated = yes imp = 9691 ck3 = 13221 ck3 = 13227 ck3 = 13234 } # Toyo -> 13221, 13227, 13234 - link = { imp = 9692 ck3 = 13219 ck3 = 13225 ck3 = 13220 } # Tukusi -> 13219, 13225, 13220 + link = { autogenerated = yes imp = 9692 ck3 = 13219 ck3 = 13225 } # Tukusi -> 13219, 13225 link = { autogenerated = yes imp = 9313 ck3 = 13216 } # Iya -> 13216 link = { autogenerated = yes imp = 9689 ck3 = 13214 ck3 = 13205 ck3 = 13208 } # Hinokuni -> 13214, 13205, 13208 link = { autogenerated = yes imp = 9751 ck3 = 13212 ck3 = 13222 } # Hata -> 13212, 13222 - link = { imp = 9694 ck3 = 13211 ck3 = 13215 } # Ohkita -> 13211, 13215 + link = { autogenerated = yes imp = 9694 ck3 = 13211 ck3 = 13215 ck3 = 13220 } # Ohkita -> 13211, 13215, 13220 link = { autogenerated = yes imp = 9756 ck3 = 13210 } # Fuzitu -> 13210 link = { autogenerated = yes imp = 7341 ck3 = 1321 ck3 = 9155 } # Sonitapur -> Kamarupanagara, Morshing - link = { imp = 9759 ck3 = 13206 } # Amakusa -> 13206 + link = { autogenerated = yes imp = 9759 ck3 = 13206 } # Amakusa -> 13206 link = { autogenerated = yes imp = 8121 ck3 = 13203 } # Goto -> 13203 link = { autogenerated = yes imp = 9303 ck3 = 13218 ck3 = 13223 } # Matsura -> 13218, 13223 + link = { autogenerated = yes imp = 10283 imp = 10290 ck3 = 132 } # Pagramancio, Zagares -> UPYTE link = { autogenerated = yes imp = 9310 ck3 = 13198 ck3 = 13201 ck3 = 13204 ck3 = 13207 } # Himuka -> 13198, 13201, 13204, 13207 link = { autogenerated = yes imp = 9690 ck3 = 13195 ck3 = 13200 } # Kumaso -> 13195, 13200 + link = { autogenerated = yes imp = 9702 ck3 = 13192 ck3 = 13286 } # Izu -> 13192, 13286 link = { autogenerated = yes imp = 10571 ck3 = 13191 ck3 = 13193 ck3 = 13196 ck3 = 13197 } # Nayoro -> 13191, 13193, 13196, 13197 link = { autogenerated = yes imp = 7334 ck3 = 1319 ck3 = 833 } # Bikrampur -> Bikrampur, Ekdala link = { autogenerated = yes imp = 10572 ck3 = 13186 ck3 = 13187 } # Okhotsk -> 13186, 13187 link = { autogenerated = yes imp = 10573 ck3 = 13182 ck3 = 13183 ck3 = 13184 ck3 = 13190 } # Kushiro -> 13182, 13183, 13184, Kunashir link = { autogenerated = yes imp = 10574 ck3 = 13180 ck3 = 13477 ck3 = 13181 } # Tokachi -> 13180, 13477, 13181 link = { autogenerated = yes imp = 7356 ck3 = 1318 } # Karmanta -> Devaparvata - link = { autogenerated = yes imp = 10570 imp = 8114 ck3 = 13179 } # Chiu Pet, Japan Mountain -> 13179 + link = { autogenerated = yes imp = 10570 ck3 = 13179 } # Chiu Pet -> 13179 link = { autogenerated = yes imp = 10569 ck3 = 13177 ck3 = 13178 } # Ishikari -> 13177, 13178 link = { autogenerated = yes imp = 10568 ck3 = 13176 ck3 = 13480 } # Makkarinupuri -> 13176, 13480 link = { autogenerated = yes imp = 9740 ck3 = 13175 } # Osumi -> 13175 - link = { imp = 9693 imp = 9312 ck3 = 13199 } # Ohsumi, Impassable -> 13199 + link = { autogenerated = yes imp = 9693 ck3 = 13199 } # Ohsumi -> 13199 link = { autogenerated = yes imp = 7530 ck3 = 1310 ck3 = 1369 } # Dioscoridus -> Qualnsiyah, Socotra link = { autogenerated = yes imp = 10287 ck3 = 131 ck3 = 149 } # Glitu -> KEDAINIAI, VILKMERGE link = { autogenerated = yes imp = 10834 imp = 10838 ck3 = 13066 } # Peinan, Pinglin -> Doloman @@ -6449,7 +6660,7 @@ link = { autogenerated = yes imp = 8369 imp = 8670 ck3 = 12981 } # Dangyin, Neihuang -> Xiangzhou_Anyang link = { autogenerated = yes imp = 7462 ck3 = 1298 } # Chanderi* -> Chanderi link = { autogenerated = yes imp = 8477 ck3 = 12978 } # Pinglu -> Yunzhou_Xuchang - link = { autogenerated = yes imp = 8437 imp = 8439 imp = 8673 ck3 = 12977 } # Guan, Pingyi, Yinan -> Changle + link = { autogenerated = yes imp = 8439 imp = 8437 imp = 8673 ck3 = 12977 } # Pingyi, Guan, Yinan -> Changle link = { autogenerated = yes imp = 8669 ck3 = 12974 } # Zhenglu -> Tanyuan link = { autogenerated = yes imp = 8626 ck3 = 12973 } # Xuanshi -> Changpingguan link = { autogenerated = yes imp = 8259 ck3 = 12972 } # Jincheng -> Lanzhou @@ -6464,20 +6675,21 @@ link = { autogenerated = yes imp = 8435 imp = 8465 ck3 = 12951 } # Puyang, Juancheng -> Puyang link = { autogenerated = yes imp = 8275 ck3 = 12950 ck3 = 12964 } # Anwu -> Yinpan, Linjing link = { autogenerated = yes imp = 6825 imp = 6841 ck3 = 1295 } # Kanthi, Bacchav -> Kanthakota + link = { autogenerated = yes imp = 9144 imp = 9147 ck3 = 12945 } # Longchuan, Impassable -> Longchuan_Xunzhou link = { autogenerated = yes imp = 8479 imp = 8482 imp = 8485 ck3 = 12944 } # Chengyang, Gai, Qi -> Mulingguan_Yishui - link = { autogenerated = yes imp = 8440 imp = 8470 ck3 = 12941 } # Linqiu, Chui -> Puzhou_Juancheng + link = { autogenerated = yes imp = 8470 imp = 8440 ck3 = 12941 } # Chui, Linqiu -> Puzhou_Juancheng link = { autogenerated = yes imp = 9043 imp = 9640 ck3 = 12940 } # Hankuang, Yangshan -> Yingde_Zhenyang link = { autogenerated = yes imp = 7412 imp = 6857 ck3 = 1294 } # Satyapura, Detta* -> Satyapura link = { autogenerated = yes imp = 8436 ck3 = 12939 } # Yan -> Huazhou_Baima - link = { imp = 8347 imp = 8390 ck3 = 12935 } # Gaoluo, Impassable -> Jiangxian + link = { autogenerated = yes imp = 8347 ck3 = 12935 } # Gaoluo -> Jiangxian link = { autogenerated = yes imp = 9045 ck3 = 12934 } # Zhenyang -> Wengyuan_Lingchishan link = { autogenerated = yes imp = 8279 ck3 = 12932 } # Yiqu -> Pengyuan - link = { imp = 8486 imp = 8472 imp = 8478 ck3 = 12929 } # Gang, Pingyang, Rencheng -> Yanzhou_Xiaqiu + link = { autogenerated = yes imp = 8486 imp = 8472 imp = 8478 ck3 = 12929 } # Gang, Pingyang, Rencheng -> Yanzhou_Xiaqiu link = { autogenerated = yes imp = 8625 ck3 = 12925 } # Gaodu -> Zezhou link = { autogenerated = yes imp = 8350 ck3 = 12924 ck3 = 12952 } # Duanshi -> Yangcheng, Duanshi link = { autogenerated = yes imp = 8564 ck3 = 12923 } # Niyang -> Ningzhoudingan link = { autogenerated = yes imp = 8352 ck3 = 12922 } # Zuoyi -> Wenxi - link = { imp = 8533 ck3 = 12921 } # Qufu -> Zouxian + link = { autogenerated = yes imp = 8533 ck3 = 12921 } # Qufu -> Zouxian link = { autogenerated = yes imp = 8276 ck3 = 12920 } # Pengyang -> Anding link = { autogenerated = yes imp = 7415 ck3 = 1292 } # Mehsana* -> Anahilapataka link = { autogenerated = yes imp = 8290 ck3 = 12919 } # Didao -> Didao @@ -6492,13 +6704,12 @@ link = { autogenerated = yes imp = 8528 imp = 8526 imp = 9650 ck3 = 12911 } # Zuohang, Ji, Gaoxiang -> Juxian_Langya link = { autogenerated = yes imp = 7419 ck3 = 1291 ck3 = 3376 } # Simalwara** -> Mohadavasaka, Ashaval link = { autogenerated = yes imp = 8354 ck3 = 12909 ck3 = 12943 ck3 = 12959 } # Pishi -> Baoding, Jishan, Longmen - link = { imp = 8285 imp = 8284 ck3 = 12908 } # Jiequan, Eyang -> Jieting + link = { autogenerated = yes imp = 8285 imp = 8284 ck3 = 12908 } # Jiequan, Eyang -> Jieting link = { autogenerated = yes imp = 8467 imp = 8466 imp = 8468 ck3 = 12907 } # Judu, Zhuzao, Chengyang -> Shengshi_Lihu link = { autogenerated = yes imp = 10828 imp = 10827 imp = 10829 ck3 = 12904 } # Nanshikeng, Fanzaiyuan, Daqiuyuan -> zhongliuqiu link = { autogenerated = yes imp = 8345 ck3 = 12903 } # Yishi -> Yishi link = { autogenerated = yes imp = 8295 imp = 8294 ck3 = 12901 } # Angu, Daxia -> kenuo link = { autogenerated = yes imp = 6854 ck3 = 1290 } # Kheta -> Khetaka - link = { autogenerated = yes imp = 10283 ck3 = 129 } # Pagramancio -> VELIUONA link = { autogenerated = yes imp = 8277 ck3 = 12899 } # Lu -> Liangyuan link = { autogenerated = yes imp = 8349 ck3 = 12898 ck3 = 12910 } # Yuan -> Wangwu, Yuanxian link = { autogenerated = yes imp = 8375 imp = 8367 ck3 = 12897 } # Shanyang, Huai -> Wuzhi @@ -6517,13 +6728,13 @@ link = { autogenerated = yes imp = 8278 ck3 = 12882 } # Yinmi -> Chungu link = { autogenerated = yes imp = 9142 ck3 = 12880 } # Zhongsu -> Qingyuan link = { autogenerated = yes imp = 4475 ck3 = 1288 } # Ujjayini -> Ujjayini - link = { imp = 9180 ck3 = 12879 ck3 = 12947 } # Guangyu -> Tianzhou_Baise, Sicheng_Guilezhou + link = { autogenerated = yes imp = 9180 ck3 = 12879 ck3 = 12821 ck3 = 12947 } # Guangyu -> Tianzhou_Baise, Houzhou_Lunzhou, Sicheng_Guilezhou link = { autogenerated = yes imp = 9175 imp = 9174 ck3 = 12877 } # Zhongliu, Guilin -> Xiangzhou_Laibin - link = { autogenerated = yes imp = 8380 ck3 = 12876 } # Wangcheng (Henan) -> Mengjin_Boyacang link = { autogenerated = yes imp = 8538 imp = 8536 imp = 8537 ck3 = 12874 } # Ni, Hexiang, Zou -> Tengxian link = { autogenerated = yes imp = 8328 ck3 = 12871 } # Pinyang -> Fuping link = { autogenerated = yes imp = 8281 ck3 = 12870 } # Pingxiang -> Chengji link = { autogenerated = yes imp = 8446 imp = 8453 ck3 = 12869 } # Daliang, Pingqiu -> Kaifeng_Bianzhou + link = { autogenerated = yes imp = 9564 ck3 = 12867 ck3 = 13271 ck3 = 13355 ck3 = 13397 ck3 = 13807 } # Southeast Heishui -> Bogju, Saju, Miju, Mongju, Hoeju link = { autogenerated = yes imp = 9141 imp = 9146 ck3 = 12866 } # Sihui, Impassable -> Huaiji_Sihui link = { autogenerated = yes imp = 11111 ck3 = 12865 ck3 = 12948 } # Wuhua -> Xingning, Meizhou_Chengxiang link = { autogenerated = yes imp = 12709 ck3 = 12864 ck3 = 7572 ck3 = 7573 ck3 = 7523 } # Igac -> Zakhyn Bulag, Uyanga, Urmegtu, Shankh @@ -6534,57 +6745,58 @@ link = { autogenerated = yes imp = 8346 ck3 = 12852 ck3 = 12873 ck3 = 12884 } # Pufan -> Fenglingguan, Puzhou, Xiexian link = { autogenerated = yes imp = 7097 ck3 = 1285 } # Amaravati -> Acalapura link = { autogenerated = yes imp = 8388 ck3 = 12847 } # Jing -> Xingyang - link = { imp = 8475 ck3 = 12844 } # Danfu -> Chuqiu + link = { autogenerated = yes imp = 8475 imp = 8476 ck3 = 12844 } # Danfu, Anyang -> Chuqiu link = { autogenerated = yes imp = 8308 ck3 = 12842 } # Duyang -> Linyou link = { autogenerated = yes imp = 8288 imp = 8289 ck3 = 12841 } # Wangyuan, Huandao -> Fuqiang - link = { imp = 8476 imp = 8449 imp = 8450 imp = 8462 imp = 8463 imp = 8469 ck3 = 12840 } # Anyang, Waihuang, Jiyang, Dingtao, Jiyin, Shanyang -> Caozhou_Jiyin + link = { autogenerated = yes imp = 8462 imp = 8449 imp = 8450 imp = 8463 imp = 8469 ck3 = 12840 } # Dingtao, Waihuang, Jiyang, Jiyin, Shanyang -> Caozhou_Jiyin link = { autogenerated = yes imp = 7373 ck3 = 1284 } # Sringivera -> Manikpur link = { autogenerated = yes imp = 8357 ck3 = 12839 ck3 = 12859 } # Shan -> Shanxian_Shanzhou, Yaogu link = { autogenerated = yes imp = 9315 ck3 = 12838 } # Dovtlox -> Tamsag Bulag link = { autogenerated = yes imp = 8385 ck3 = 12837 } # Xingyang -> Zhengzhou_Guancheng link = { autogenerated = yes imp = 8327 ck3 = 12836 ck3 = 12851 ck3 = 12858 } # Linjin -> Xiagui, TongzhouPingyi, Pujinguan link = { autogenerated = yes imp = 8549 imp = 8546 imp = 8548 imp = 8550 ck3 = 12835 } # Xiangfen, Qiyang, Lanling, Cheng -> Yizhou_Linyi - link = { imp = 8379 ck3 = 12834 } # Chengzhou (Luoyang) -> Luoyang - link = { imp = 8381 ck3 = 12830 ck3 = 12843 } # Gong -> Yanshi_Heyang, Sishuiguan + link = { autogenerated = yes imp = 8380 ck3 = 12834 ck3 = 12876 } # Wangcheng (Henan) -> Luoyang, Mengjin_Boyacang + link = { autogenerated = yes imp = 8379 ck3 = 12830 } # Chengzhou (Luoyang) -> Yanshi_Heyang + link = { autogenerated = yes imp = 8381 ck3 = 12843 } # Gong -> Sishuiguan link = { autogenerated = yes imp = 7376 ck3 = 1283 } # Asani -> Asni - link = { imp = 8343 imp = 8342 ck3 = 12829 } # Hu, Chuansikong -> Tongguan + link = { autogenerated = yes imp = 8342 ck3 = 12829 ck3 = 12816 } # Chuansikong -> Tongguan, Huashan link = { autogenerated = yes imp = 8427 imp = 8426 imp = 8428 imp = 8539 ck3 = 12828 } # Feng, Pei, Teng, Xue -> Feixian_Fengxian - link = { imp = 8324 ck3 = 12825 } # Yunyang -> Liquan + link = { autogenerated = yes imp = 8324 ck3 = 12825 } # Yunyang -> Liquan link = { autogenerated = yes imp = 7411 imp = 7382 ck3 = 1282 } # Unnao*, Raebareli*** -> Lalganj - link = { autogenerated = yes imp = 8309 ck3 = 12819 } # Yong -> Fengxiang + link = { autogenerated = yes imp = 8309 imp = 8311 ck3 = 12819 } # Yong, Guo -> Fengxiang link = { autogenerated = yes imp = 8292 ck3 = 12818 } # Xiangwu -> Zhangxian_Weizhou - link = { autogenerated = yes imp = 8310 ck3 = 12813 ck3 = 12814 } # Chencang -> Chencangxiadao, Qianyang - link = { autogenerated = yes imp = 8287 ck3 = 12811 } # Qingshui -> Qinlingxian + link = { autogenerated = yes imp = 8287 imp = 8322 ck3 = 12811 } # Qingshui, Impassable -> Qinlingxian link = { autogenerated = yes imp = 7475 imp = 4431 ck3 = 1281 } # Mau*, Sumsumaragiri -> Chunar link = { autogenerated = yes imp = 9173 ck3 = 12808 } # Elin -> Xunzhou_Guiping link = { autogenerated = yes imp = 8455 ck3 = 12807 } # Weishi -> Chenliu link = { autogenerated = yes imp = 8312 imp = 8315 ck3 = 12806 } # Mei, Meiyang -> Qishan link = { autogenerated = yes imp = 8544 ck3 = 12805 ck3 = 12848 } # Licheng -> Haizhou_Qushan, Yuzhou_Donghai link = { autogenerated = yes imp = 8399 imp = 8400 ck3 = 12803 } # Fushu, Yangcheng -> Songshan_Dengfeng - link = { imp = 8339 ck3 = 12801 ck3 = 12816 } # Zheng -> Huazhou, Huashan + link = { autogenerated = yes imp = 8339 ck3 = 12801 } # Zheng -> Huazhou link = { autogenerated = yes imp = 8338 imp = 8337 ck3 = 12800 } # Xi, Liyi -> Weinan - link = { imp = 7810 ck3 = 128 } # Turuntia Australis -> TELSIAI + link = { autogenerated = yes imp = 7810 ck3 = 128 } # Turuntia Australis -> TELSIAI link = { autogenerated = yes imp = 8384 ck3 = 12798 } # Zheng -> Xinzheng + link = { autogenerated = yes imp = 8310 ck3 = 12797 ck3 = 12813 ck3 = 12814 } # Chencang -> Chencang, Chencangxiadao, Qianyang link = { autogenerated = yes imp = 8386 ck3 = 12796 ck3 = 12823 } # Qifeng -> Weishi, Zhongmu link = { autogenerated = yes imp = 8383 ck3 = 12795 ck3 = 12820 } # Xincheng -> Yique, LongmenCave - link = { autogenerated = yes imp = 12724 ck3 = 12794 } # Kiril -> Jerje'er Under - link = { autogenerated = yes imp = 8314 imp = 8313 ck3 = 12793 } # Huaili, Xianyang -> Xianyang - link = { imp = 8316 ck3 = 12792 } # Haozhi -> Wugong + link = { autogenerated = yes imp = 12724 ck3 = 12794 ck3 = 13722 } # Kiril -> Jerje'er Under, 13722 + link = { autogenerated = yes imp = 8313 imp = 8314 ck3 = 12793 } # Xianyang, Huaili -> Xianyang + link = { autogenerated = yes imp = 8316 ck3 = 12792 } # Haozhi -> Wugong link = { autogenerated = yes imp = 8434 ck3 = 12791 } # Xiayi -> Dangshan link = { autogenerated = yes imp = 8291 ck3 = 12790 ck3 = 12778 ck3 = 9443 } # Lintao -> Minzhouyile, Kongtongshan, Jone link = { autogenerated = yes imp = 4456 imp = 7381 ck3 = 1279 } # Nimisa (forest?), Badaun* -> Hardoi - link = { autogenerated = yes imp = 8818 ck3 = 12788 } # Gudao -> Dasanguan link = { autogenerated = yes imp = 8293 ck3 = 12787 ck3 = 12810 ck3 = 12733 ck3 = 12802 } # Xi -> Changdao, Shanggui, Chengzhoushanglu, MaijishanCave link = { autogenerated = yes imp = 9159 ck3 = 12786 ck3 = 12780 } # Xinning -> Duanzhou_Gaoyao, Tengzhou_Tanjin link = { autogenerated = yes imp = 9140 ck3 = 12784 ck3 = 12845 } # Fanyu -> Guangzhou_Nanhai, Zengcheng + link = { autogenerated = yes imp = 8317 ck3 = 12782 ck3 = 12752 ck3 = 12765 } # Wugong -> Meixian, Baoxiedao, Zhouzhi link = { autogenerated = yes imp = 7453 ck3 = 1278 ck3 = 3967 } # Kakaradika -> Gurgi, Chandrehi link = { autogenerated = yes imp = 8361 ck3 = 12779 ck3 = 12804 } # Yiyang -> Gaomenguan_Changshui, Shouan_Fuchang link = { autogenerated = yes imp = 9559 ck3 = 12777 ck3 = 13368 ck3 = 13371 ck3 = 13513 ck3 = 13783 ck3 = 13966 ck3 = 12342 ck3 = 12696 } # Suihua -> Kailing, Tiele, Suihua, Manghai, Leleyingzi, Ola, Xinli, Tongken - link = { imp = 8433 imp = 8448 imp = 8447 ck3 = 12776 } # Suiyang, Ningling, Yan -> Songzhou_Songcheng + link = { autogenerated = yes imp = 8433 imp = 8448 ck3 = 12776 } # Suiyang, Ningling -> Songzhou_Songcheng link = { autogenerated = yes imp = 9172 imp = 9171 imp = 9183 ck3 = 12775 } # Bushan, Ningpu, Anguang -> Hengzhou_Ningpu link = { autogenerated = yes imp = 9145 ck3 = 12772 ck3 = 12815 } # Jieyang -> Haifeng, Chaoyang_Swatow link = { autogenerated = yes imp = 8540 imp = 8425 imp = 8541 ck3 = 12771 } # Pengcheng, Xiao, Lyu -> Xuzhou_Pengcheng - link = { imp = 11539 ck3 = 1277 } # Bargarh -> Tummana + link = { autogenerated = yes imp = 11539 ck3 = 1277 ck3 = 1241 } # Bargarh -> Tummana, Koriya link = { autogenerated = yes imp = 8456 ck3 = 12769 ck3 = 12817 } # Yongqiu -> Xiangyi_Zhecheng, Yongqiu link = { autogenerated = yes imp = 8382 ck3 = 12768 } # Liang -> Ruzhou link = { autogenerated = yes imp = 8335 ck3 = 12762 } # Lantian -> Lantian @@ -6600,8 +6812,8 @@ link = { autogenerated = yes imp = 8552 imp = 8532 imp = 8545 imp = 8551 ck3 = 12741 } # Xiapei, Tan, Siwu, Fuyang -> Xiapi link = { autogenerated = yes imp = 8398 imp = 8397 ck3 = 12740 } # Changshe, Xu -> Xuchang link = { autogenerated = yes imp = 7467 imp = 7468 imp = 5362 ck3 = 1274 } # Damoh, Deori*, IP 363 -> Damoh - link = { imp = 8819 imp = 8322 ck3 = 12739 } # Didao, Impassable -> Fengzhouliangquan - link = { autogenerated = yes imp = 8820 ck3 = 12736 } # Hechi -> Liangdang + link = { autogenerated = yes imp = 8818 ck3 = 12739 ck3 = 12788 } # Gudao -> Fengzhouliangquan, Dasanguan + link = { autogenerated = yes imp = 8820 imp = 8819 ck3 = 12736 } # Hechi, Didao -> Liangdang link = { autogenerated = yes imp = 12717 ck3 = 12735 } # Tupkur -> Quxuewur link = { autogenerated = yes imp = 8430 ck3 = 12734 } # Mang -> Yongcheng_Mapu link = { autogenerated = yes imp = 9166 imp = 9422 ck3 = 12731 } # Zhulu, Liandao -> Yulinzhou @@ -6613,11 +6825,11 @@ link = { autogenerated = yes imp = 12720 ck3 = 12723 ck3 = 12764 } # Kunei -> Manglai_Hulusutaichahan, Khar Ul link = { autogenerated = yes imp = 8458 ck3 = 12722 } # Ku -> Taiqinggong link = { autogenerated = yes imp = 8817 ck3 = 12715 } # Xiabian -> Tonggu - link = { imp = 8432 imp = 8431 ck3 = 12710 } # Chengfu, Qiao -> Bozhou_Qiaoxian + link = { autogenerated = yes imp = 8432 imp = 8431 imp = 8447 ck3 = 12710 } # Chengfu, Qiao, Yan -> Bozhou_Qiaoxian link = { autogenerated = yes imp = 7459 ck3 = 1271 ck3 = 3966 } # Sihora* -> Tripuri, Nohta link = { autogenerated = yes imp = 8363 ck3 = 12709 ck3 = 12727 } # Shang -> Wuguan, Shangzhou_Shangluo link = { autogenerated = yes imp = 9560 ck3 = 12705 ck3 = 13720 ck3 = 13763 ck3 = 13802 } # Baicheng -> Taizhou, 13720, 13763, Baicheng - link = { autogenerated = yes imp = 8401 imp = 8395 ck3 = 12704 } # Xiangcheng, Wuyang -> Xiangcheng_Wuyang + link = { autogenerated = yes imp = 8401 ck3 = 12704 } # Xiangcheng -> Xiangcheng_Wuyang link = { autogenerated = yes imp = 7129 imp = 5448 imp = 6056 ck3 = 1270 } # Gondia, IMPASSABLE, Gondwana -> Kiranapura link = { autogenerated = yes imp = 7819 ck3 = 127 } # Careotaia Australis -> SIAULIAI link = { autogenerated = yes imp = 9143 ck3 = 12698 ck3 = 12737 ck3 = 12855 } # Boluo -> HongKong, Dongguan, Heyuan @@ -6633,19 +6845,19 @@ link = { autogenerated = yes imp = 8423 ck3 = 12675 } # Shansang -> Mengcheng_Shansang link = { autogenerated = yes imp = 8553 imp = 8561 imp = 8554 ck3 = 12672 } # Xu, Rouyou, Ling -> Sizhou_Linhuai link = { autogenerated = yes imp = 6837 ck3 = 1267 } # Vardhamane -> Vardhamana - link = { autogenerated = yes imp = 9646 imp = 8420 imp = 8560 ck3 = 12666 } # Xiaqiu, Hong, Tong -> Hongxian_Xiaqiu + link = { autogenerated = yes imp = 8560 imp = 8420 imp = 9646 ck3 = 12666 } # Tong, Hong, Xiaqiu -> Hongxian_Xiaqiu link = { autogenerated = yes imp = 9525 ck3 = 12665 } # South Gonglushui -> Azakhachi link = { autogenerated = yes imp = 8821 ck3 = 12664 ck3 = 12691 } # Ju -> Bailaoguan, XingzhouShunzheng - link = { autogenerated = yes imp = 8834 ck3 = 12662 ck3 = 12615 ck3 = 12674 ck3 = 12689 } # Xugu -> Fangshanguan, Ankang, Ziwugu3, Ziwugudao2 + link = { autogenerated = yes imp = 8834 ck3 = 12662 ck3 = 12674 ck3 = 12689 } # Xugu -> Fangshanguan, Ziwugu3, Ziwugudao2 link = { autogenerated = yes imp = 9178 ck3 = 12661 ck3 = 12708 ck3 = 12712 ck3 = 12730 } # Linchen -> Shangsizhou_Rangzhou, Yongzhou_Nanning, Luolong_Wuqin, Sitong_Zuozhou link = { autogenerated = yes imp = 6816 ck3 = 1266 } # Prabhasa -> Somnath link = { autogenerated = yes imp = 8542 imp = 8419 imp = 8421 imp = 8424 imp = 8429 ck3 = 12658 } # Wu, Qi, Ping E, Xiang, Fuli -> Fuli_Suzhou link = { autogenerated = yes imp = 9168 ck3 = 12656 ck3 = 12694 ck3 = 12720 } # Linyun -> Xinhui_Jiangmen, Yashan_Xiangshan, Xinxing_Fulin link = { autogenerated = yes imp = 9632 imp = 8956 ck3 = 12655 } # Zhi, Wan -> Nanyang - link = { imp = 9564 ck3 = 12652 ck3 = 12867 ck3 = 13271 ck3 = 13355 ck3 = 13397 ck3 = 13807 } # Southeast Heishui -> Yeolju, Bogju, Saju, Miju, Mongju, Hoeju + link = { autogenerated = yes imp = 9551 ck3 = 12652 ck3 = 13682 ck3 = 13715 ck3 = 13742 ck3 = 13759 ck3 = 13786 ck3 = 13791 } # Haoshi -> Yeolju, Miju, Kaul, Moju, Heygju, Yeongju, Dangbi link = { autogenerated = yes imp = 7092 ck3 = 1265 ck3 = 7886 ck3 = 7887 } # Katriyal -> Sagar, Bagavadi, Kembavi link = { autogenerated = yes imp = 8825 ck3 = 12648 ck3 = 12743 ck3 = 12751 } # Xunyang -> Xunyang, Ziwuguan, Zhongnanshan - link = { autogenerated = yes imp = 8558 ck3 = 12644 } # Dongyang -> Xuyi + link = { autogenerated = yes imp = 8558 imp = 9648 ck3 = 12644 } # Dongyang, Fuling -> Xuyi link = { autogenerated = yes imp = 8412 imp = 8413 imp = 8414 ck3 = 12643 } # Xinyang, Nyuyin, Qin -> Yingzhou_Ruyin link = { autogenerated = yes imp = 9167 ck3 = 12640 ck3 = 12654 ck3 = 12702 } # Gaoliang -> Gaozhou_Dianbai, Nanenzhou_Yangjiang, Kangzhou_Duanxi link = { autogenerated = yes imp = 6863 imp = 5315 ck3 = 1264 } # Nagara, IP 316 -> Nandurbar @@ -6655,10 +6867,10 @@ link = { autogenerated = yes imp = 8961 ck3 = 12632 } # Biyang -> Tangzhou_Miyang link = { autogenerated = yes imp = 9614 ck3 = 12631 } # Diandi -> Wenzhou_qushui link = { autogenerated = yes imp = 8959 imp = 8960 imp = 9630 ck3 = 12630 } # Li, Rang, Lecheng -> Dengzhou - link = { autogenerated = yes imp = 9649 ck3 = 12629 } # Gaoyou -> Gaoyou + link = { autogenerated = yes imp = 9649 ck3 = 12629 ck3 = 12676 } # Gaoyou -> Gaoyou, Huaiyin_Chuzhou link = { autogenerated = yes imp = 8411 imp = 8402 imp = 8409 imp = 8410 ck3 = 12628 } # Shen, Pingyu, Yang an, Chengyang -> Yuzhou_Ruyang - link = { autogenerated = yes imp = 8422 ck3 = 12627 } # Xiacai -> Xiacai - link = { autogenerated = yes imp = 9644 imp = 9643 ck3 = 12626 } # Fubo, Shen -> Yingshang + link = { autogenerated = yes imp = 8422 imp = 9643 ck3 = 12627 } # Xiacai, Shen -> Xiacai + link = { autogenerated = yes imp = 9644 ck3 = 12626 } # Fubo -> Yingshang link = { autogenerated = yes imp = 9628 ck3 = 12625 } # Wudang -> Wudang link = { autogenerated = yes imp = 9553 ck3 = 12624 ck3 = 13616 ck3 = 13619 ck3 = 13625 ck3 = 13657 ck3 = 13669 ck3 = 13683 ck3 = 13709 } # Meituo Nan -> Hwaju, Geonju, 13619, Ikju, Su Binshui, Solbinju, Taju, Beychi link = { autogenerated = yes imp = 9051 ck3 = 12618 } # Zhongli -> Haozhou_Zhongli_Fengyang @@ -6676,9 +6888,8 @@ link = { autogenerated = yes imp = 12738 ck3 = 12598 ck3 = 13706 ck3 = 13757 } # Xulma -> Laulyu, Tetyu, Amgu link = { autogenerated = yes imp = 12712 ck3 = 12597 ck3 = 13247 } # Urluk -> Qara-Tun, Honhor link = { autogenerated = yes imp = 9647 imp = 9057 ck3 = 12595 } # Huailing, Dongcheng -> Zhaoyi_Dingyuan - link = { autogenerated = yes imp = 9542 ck3 = 12591 ck3 = 13602 ck3 = 13627 } # Sumo -> Yongdam, Gugak, Jiaohe link = { autogenerated = yes imp = 7165 ck3 = 1259 ck3 = 7919 } # Minagana* -> Vatsagulma, Bhainsa - link = { autogenerated = yes imp = 9547 ck3 = 12588 ck3 = 13708 ck3 = 13732 ck3 = 13741 ck3 = 13753 ck3 = 13754 ck3 = 13768 } # Funie -> Boli, Sintuhe, Huligai, Yingju, Biju, Iju, Yueliji + link = { autogenerated = yes imp = 9547 ck3 = 12588 ck3 = 13666 ck3 = 13708 ck3 = 13732 ck3 = 13741 ck3 = 13753 ck3 = 13754 ck3 = 13768 } # Funie -> Boli, Boli, Sintuhe, Huligai, Yingju, Biju, Iju, Yueliji link = { autogenerated = yes imp = 9529 ck3 = 12587 ck3 = 12593 ck3 = 13599 ck3 = 13631 ck3 = 13656 ck3 = 13658 ck3 = 12645 ck3 = 13713 } # North Raoleshui -> Hongfusi, Shangjing_Linhuang, 13599, 13631, 13656, 13658, LiaoZuzhou, Urd Najai link = { autogenerated = yes imp = 8559 ck3 = 12585 } # Tang -> Liuhe link = { autogenerated = yes imp = 9629 imp = 8965 ck3 = 12584 } # Zhuyang, Zan -> Gucheng @@ -6694,12 +6905,13 @@ link = { autogenerated = yes imp = 9061 imp = 9059 ck3 = 12564 } # Liao, Lu -> Anfeng_Shaopi link = { autogenerated = yes imp = 9546 ck3 = 12561 ck3 = 12600 ck3 = 13667 ck3 = 13740 ck3 = 13756 ck3 = 13799 } # Anchegu -> Huhan, Sumo, Lalin, Makju, Qujiang, Goju link = { autogenerated = yes imp = 7149 ck3 = 1256 } # Orugallu -> Orangallu - link = { autogenerated = yes imp = 9549 ck3 = 12558 ck3 = 12622 ck3 = 12679 ck3 = 12697 } # Sumo North -> Buju, Namso, Seonju, Sokju + link = { autogenerated = yes imp = 9549 ck3 = 12558 ck3 = 12591 ck3 = 12622 ck3 = 12679 ck3 = 12697 } # Sumo North -> Buju, Yongdam, Namso, Seonju, Sokju link = { autogenerated = yes imp = 12742 ck3 = 12556 ck3 = 13369 } # Imana -> Dolmi, Ulunga link = { autogenerated = yes imp = 9075 ck3 = 12554 } # Jurong -> Gourong link = { autogenerated = yes imp = 8963 ck3 = 12551 } # Caiyang -> Zaoyang link = { autogenerated = yes imp = 7145 ck3 = 1255 } # Vemulavada -> Vemulavada link = { autogenerated = yes imp = 9076 ck3 = 12545 } # Moling -> Jiangning_Jianye + link = { autogenerated = yes imp = 8983 imp = 8982 imp = 8984 ck3 = 12544 } # Zhonglu, Qi, Xiangyang -> Xiangyang link = { autogenerated = yes imp = 9169 ck3 = 12542 ck3 = 12619 } # Xuwen -> Leizhou_Haikang, Huazhou_Shilong link = { autogenerated = yes imp = 9082 ck3 = 12539 } # Qu e -> Maoshan link = { autogenerated = yes imp = 9641 ck3 = 12538 } # Zhongwu -> Lishanuan_Yingshan @@ -6708,8 +6920,8 @@ link = { autogenerated = yes imp = 9658 imp = 9056 ck3 = 12534 } # Junqiu, Hefei -> Luzhou_Hefei link = { autogenerated = yes imp = 9530 ck3 = 12532 ck3 = 13636 ck3 = 13953 } # North Daliaoshui -> Wuzhou_Aimin, 13636, Hure link = { autogenerated = yes imp = 8992 imp = 8417 imp = 9642 ck3 = 12531 } # Xiyang, Yiyang, Dai -> Guangzhou_Dingcheng - link = { imp = 8843 ck3 = 12530 } # Langzhong -> Langzhong - link = { autogenerated = yes imp = 7039 ck3 = 1253 ck3 = 7846 } # Kantakossyla -> Nilagiri, Mutfili + link = { autogenerated = yes imp = 8843 ck3 = 12530 } # Langzhong -> Langzhong + link = { autogenerated = yes imp = 7019 ck3 = 1253 } # Andhapura -> Nilagiri link = { autogenerated = yes imp = 9538 ck3 = 12528 } # PASS -> Xilinghot link = { autogenerated = yes imp = 8854 ck3 = 12526 ck3 = 12546 } # Zitong -> Zitong, Jiange link = { autogenerated = yes imp = 9541 ck3 = 12525 ck3 = 12540 ck3 = 12486 } # Fuyu -> Jinshan, Fuzhao, Fuzhou_Liao @@ -6728,6 +6940,7 @@ link = { autogenerated = yes imp = 9611 ck3 = 12500 } # Chongguo -> Nanbu link = { autogenerated = yes imp = 4455 ck3 = 1250 } # Jaisingpur -> Ayodhya link = { autogenerated = yes imp = 9653 ck3 = 12499 } # Yangxian -> Wuxi + link = { autogenerated = yes imp = 10595 ck3 = 12490 } # Laccadives -> Androth link = { autogenerated = yes imp = 9651 ck3 = 12489 } # Wu -> Suzhou_Wuxian link = { autogenerated = yes imp = 8847 ck3 = 12484 ck3 = 12543 } # Bucao -> Tongzhou_Tongchuan, Bizhou_Nuoshui link = { autogenerated = yes imp = 8865 ck3 = 12482 ck3 = 12504 } # Chanting -> Yanting, Fucheng @@ -6742,7 +6955,7 @@ link = { autogenerated = yes imp = 8846 ck3 = 12465 } # Yufu -> Kuizhou_Fengjie link = { autogenerated = yes imp = 8870 ck3 = 12464 ck3 = 12468 ck3 = 12485 ck3 = 14005 } # Yan -> Qingchengshan, Pengzhou, Gutaoguan, Mountains link = { autogenerated = yes imp = 9876 ck3 = 12462 ck3 = 12463 ck3 = 13943 } # Houshui -> Yongan_Jiangsheng, SuizhouShanhe, Pili - link = { imp = 7344 imp = 6050 ck3 = 1246 } # Goalpara****, Meghalaya -> Goalpara + link = { autogenerated = yes imp = 7344 ck3 = 1246 } # Goalpara**** -> Goalpara link = { autogenerated = yes imp = 8785 ck3 = 12456 ck3 = 13936 } # Gaoxian -> Xincheng, Shenzhou link = { autogenerated = yes imp = 8800 ck3 = 12454 ck3 = 13914 } # Liaoshan -> Jangnyeong, Mudi link = { autogenerated = yes imp = 8783 imp = 9531 ck3 = 12453 } # Wangping, Impassable -> Hyeondo @@ -6750,14 +6963,14 @@ link = { autogenerated = yes imp = 9216 imp = 9217 imp = 9218 ck3 = 12449 } # Daner, Zhilai, Jiulong -> Danzhou_Yilun link = { autogenerated = yes imp = 9877 ck3 = 12448 } # Yiwulyushan -> Yiwulvshan_Xianzhou link = { autogenerated = yes imp = 9543 ck3 = 12446 ck3 = 13952 ck3 = 13955 ck3 = 13939 } # Tutai -> Toudao, Junggyeong, Hyeonju, Gaegyeong - link = { autogenerated = yes imp = 9882 ck3 = 12445 ck3 = 12461 } # Rushui North -> Luogui, Silangcheng - link = { autogenerated = yes imp = 9881 ck3 = 12442 ck3 = 12444 ck3 = 13935 } # Zaoyang North -> Kaiping, Goupo, Guchengzi + link = { autogenerated = yes imp = 9881 ck3 = 12444 ck3 = 13935 ck3 = 12596 } # Zaoyang North -> Goupo, Guchengzi, Chagannor_South + link = { autogenerated = yes imp = 9882 ck3 = 12442 ck3 = 12445 ck3 = 12461 } # Rushui North -> Kaiping, Luogui, Silangcheng link = { autogenerated = yes imp = 10529 ck3 = 12441 ck3 = 1457 ck3 = 7524 ck3 = 7525 } # Longcheng -> Khoshoo Tsaidam, Qarabalgasun, Doityn Balgas, Khermen Tal link = { autogenerated = yes imp = 7323 ck3 = 1244 } # Kirrhadia* -> Kamatapur link = { autogenerated = yes imp = 8776 imp = 8777 ck3 = 12439 } # Jiaoli, Qielu -> Yizhou_Yanjun link = { autogenerated = yes imp = 8790 ck3 = 12438 ck3 = 13915 } # Houcheng -> Gongyuan, Nansu link = { autogenerated = yes imp = 8766 ck3 = 12435 } # Bailang -> Huihe_Huangbailing - link = { imp = 9609 ck3 = 12432 ck3 = 12474 ck3 = 12537 } # Hanchang -> Xiangru, Pengzhou_Dayin, Bazhou_Damu + link = { autogenerated = yes imp = 9609 ck3 = 12432 ck3 = 12474 ck3 = 12537 ck3 = 12578 } # Hanchang -> Xiangru, Pengzhou_Dayin, Bazhou_Damu, Jizhou_Nanjiang link = { autogenerated = yes imp = 7398 imp = 7337 ck3 = 1243 } # Kushtia*, Aganagara -> Karnasubarna link = { autogenerated = yes imp = 9064 ck3 = 12428 } # Juchao -> Tongan_Tongcheng link = { autogenerated = yes imp = 8867 ck3 = 12426 ck3 = 12430 } # Pi -> Pixian, Xindu @@ -6772,13 +6985,13 @@ link = { autogenerated = yes imp = 9513 ck3 = 12406 } # Tuidang -> Jiushiquan link = { autogenerated = yes imp = 9512 ck3 = 12405 ck3 = 12417 ck3 = 12494 ck3 = 13921 } # Shouxiang -> Datongchuan, Langshan_Jinhe, MiEchuan, 13921 link = { autogenerated = yes imp = 9085 ck3 = 12404 ck3 = 12410 } # Wucheng -> Deqing_Wukang, Huzhou_Wucheng - link = { autogenerated = yes imp = 8986 imp = 8987 ck3 = 12403 } # Yiling, Zigui -> Yiling_Xiazhou + link = { autogenerated = yes imp = 8987 imp = 8986 ck3 = 12403 } # Zigui, Yiling -> Yiling_Xiazhou link = { autogenerated = yes imp = 8858 ck3 = 12402 } # Xindou -> Baimiaoshan link = { autogenerated = yes imp = 8991 ck3 = 12401 } # Xiling -> Huangzhou_Huanggang link = { autogenerated = yes imp = 7394 imp = 7359 ck3 = 1240 } # Fathabad*, Mukund* -> Fathabad link = { autogenerated = yes imp = 8779 ck3 = 12398 } # Xiangping -> Liaoyang link = { autogenerated = yes imp = 8652 ck3 = 12394 ck3 = 13913 } # Qieru -> Yanzicheng, 13913 - link = { imp = 9660 imp = 9659 ck3 = 12393 } # Longshu, Wan -> Shuzhou_Huaining + link = { autogenerated = yes imp = 9659 ck3 = 12393 } # Wan -> Shuzhou_Huaining link = { autogenerated = yes imp = 9610 ck3 = 12392 } # Anhan -> Guozhou_Nanchong link = { autogenerated = yes imp = 8995 ck3 = 12391 ck3 = 12433 } # Jingling -> Jingling_Tianmen, Changshou_Zhongxiang link = { autogenerated = yes imp = 8978 ck3 = 12390 } # Zhijiang -> Dangyang @@ -6811,7 +7024,7 @@ link = { autogenerated = yes imp = 8606 ck3 = 12343 } # Guangmu -> Tiandejun link = { autogenerated = yes imp = 12735 ck3 = 12341 ck3 = 13890 ck3 = 13909 ck3 = 13931 ck3 = 13937 ck3 = 13910 } # Eyiken -> Gaesimsa, 13890, Bugeo-ri, Haju, Gungsim, Tangju link = { autogenerated = yes imp = 7338 imp = 5370 imp = 5371 ck3 = 1234 } # Deoghar*, IP 371, IP 372 -> Deogarh2 - link = { imp = 8996 ck3 = 12337 ck3 = 12378 } # Zhu -> Qichun_Qizhou, Lanxi + link = { autogenerated = yes imp = 8996 ck3 = 12337 } # Zhu -> Qichun_Qizhou link = { autogenerated = yes imp = 8974 ck3 = 12336 } # Zhouling -> Mianyang_Fuzhou link = { autogenerated = yes imp = 8842 ck3 = 12334 } # Dangqu -> Quzhou_Liujiang link = { autogenerated = yes imp = 9557 ck3 = 12333 ck3 = 12488 ck3 = 12549 ck3 = 12693 ck3 = 12706 ck3 = 13217 ck3 = 13350 ck3 = 12690 } # Nanhe -> Meili, Wuyer, Hulan Errige, Kupugu, Qiqihar, Bukui, Sartu, Beizha @@ -6821,7 +7034,6 @@ link = { autogenerated = yes imp = 8749 ck3 = 12329 } # Ning -> Wende_Guihuazhou link = { autogenerated = yes imp = 9069 ck3 = 12327 } # Songzi -> Leichi_Susong_Wangjiang link = { autogenerated = yes imp = 8873 ck3 = 12322 } # Xi -> LuoyanDangma - link = { autogenerated = yes imp = 8658 ck3 = 12321 ck3 = 12437 } # Qiangyin -> Xuande_monan, Bingzhou link = { autogenerated = yes imp = 7391 imp = 7362 ck3 = 1232 } # Kharagpur, Mallabhum -> Midnapore link = { autogenerated = yes imp = 9088 ck3 = 12319 ck3 = 12358 ck3 = 12254 } # Fuchun -> Fuyang, Linan_Shijing, Muzhou_Jiande link = { autogenerated = yes imp = 9068 ck3 = 12318 } # Xunyang -> Huangmei @@ -6836,10 +7048,11 @@ link = { autogenerated = yes imp = 9661 ck3 = 12302 } # Pengze -> Pengze link = { autogenerated = yes imp = 8841 ck3 = 12300 ck3 = 12335 } # Dianjiang -> Tongliang, Hezhou_Shijing link = { autogenerated = yes imp = 7168 ck3 = 1230 ck3 = 3994 } # Suvarnapura -> Suvarnapura, Yajatinagara - link = { autogenerated = yes imp = 7808 ck3 = 123 ck3 = 124 } # Rubonia -> JURBARKAS, RASEINIAI + link = { autogenerated = yes imp = 7808 ck3 = 123 ck3 = 124 ck3 = 129 } # Rubonia -> JURBARKAS, RASEINIAI, VELIUONA link = { autogenerated = yes imp = 8744 ck3 = 12299 } # Xialuo -> Zhuolu_Yongxing link = { autogenerated = yes imp = 8794 ck3 = 12298 ck3 = 13929 } # Shangyintai -> Luotongshan, Gewu link = { autogenerated = yes imp = 8886 ck3 = 12296 ck3 = 12315 ck3 = 12360 } # Zizhong -> Zizhou_Panshi, PuzhouAnyue, Anju + link = { autogenerated = yes imp = 8658 ck3 = 12294 ck3 = 12437 } # Qiangyin -> Baideng, Bingzhou link = { autogenerated = yes imp = 8617 imp = 9588 imp = 8120 imp = 9570 ck3 = 12291 } # Guoxianyaoxi, Macheng, Shanrong Mountain, Impassable -> Xinghe link = { autogenerated = yes imp = 8976 ck3 = 12288 } # Gaocheng -> Gongan link = { autogenerated = yes imp = 8872 ck3 = 12287 ck3 = 12292 ck3 = 12354 ck3 = 12363 ck3 = 12388 } # Qingyi -> Hongya, Yazhou_Yandao, Yizheng_Qiongzhou, DongJialiangzhou, Pengluzhou @@ -6849,10 +7062,10 @@ link = { autogenerated = yes imp = 9090 ck3 = 12282 } # Juzhang -> Mingzhou link = { autogenerated = yes imp = 8975 ck3 = 12281 } # Huarong -> Jianli link = { autogenerated = yes imp = 8772 imp = 9874 imp = 9567 imp = 9587 ck3 = 12279 } # Wencheng, Guangcheng, Impassable, Impassable -> Bailangshan - link = { imp = 8757 imp = 8765 imp = 9584 ck3 = 12277 } # Guangping, Junmi, Impassable -> Zunhua + link = { autogenerated = yes imp = 8757 imp = 8765 imp = 9584 ck3 = 12277 } # Guangping, Junmi, Impassable -> Zunhua link = { autogenerated = yes imp = 9092 imp = 9096 ck3 = 12276 } # Yin, Impassable -> Fenghua link = { autogenerated = yes imp = 8767 ck3 = 12271 ck3 = 13879 } # Zi -> (Unknown), Keye - link = { imp = 8666 imp = 8663 ck3 = 12270 } # Shaling, Yunzhong -> Tuoketou + link = { autogenerated = yes imp = 8666 imp = 8663 ck3 = 12270 } # Shaling, Yunzhong -> Tuoketou link = { autogenerated = yes imp = 7134 ck3 = 1227 ck3 = 1252 } # Chakrakot -> Cakrakuta, Barasuru link = { autogenerated = yes imp = 8752 ck3 = 12268 ck3 = 12310 } # Yuyang -> TanzhouMiyun, (Unknown) link = { autogenerated = yes imp = 8874 ck3 = 12266 ck3 = 12284 } # Yandao -> Emeishan, Qionglaiguan @@ -6866,15 +7079,15 @@ link = { autogenerated = yes imp = 7085 ck3 = 1225 } # Jaugada -> Puri link = { autogenerated = yes imp = 9121 imp = 9126 ck3 = 12249 } # Fuqianyuan, Chaisang -> Xunyang_Jiangzhou link = { autogenerated = yes imp = 8651 imp = 8649 ck3 = 12248 } # Gaoliu, Yishi -> Qingsaijun - link = { imp = 8667 imp = 8622 imp = 8624 ck3 = 12247 } # Shanan, Manbai, Wudu -> Shengzhou + link = { autogenerated = yes imp = 8667 imp = 8596 imp = 8622 imp = 8624 ck3 = 12247 } # Shanan, Meiji, Manbai, Wudu -> Shengzhou link = { autogenerated = yes imp = 8787 ck3 = 12246 } # Pingguo -> Gaolicheng - link = { imp = 8656 imp = 8657 ck3 = 12244 } # Shanwu, Woyang -> Jingbianjun + link = { autogenerated = yes imp = 8656 ck3 = 12244 } # Shanwu -> Jingbianjun link = { autogenerated = yes imp = 7081 ck3 = 1224 ck3 = 9648 } # Kalinganagara -> Mandasa, Kalinganagara link = { autogenerated = yes imp = 8896 ck3 = 12239 } # Lingwan -> Qingxiguan link = { autogenerated = yes imp = 12890 ck3 = 12238 } # Xishan -> Daxing link = { autogenerated = yes imp = 9715 ck3 = 12235 } # Jebseg -> Kondui link = { autogenerated = yes imp = 9098 ck3 = 12234 ck3 = 13970 } # Shiping -> Xiangshan_Ninghai, 13970 - link = { imp = 8653 ck3 = 12232 ck3 = 12258 ck3 = 12294 } # Pingcheng -> Datong, Wuzhou, Baideng + link = { autogenerated = yes imp = 8653 ck3 = 12232 ck3 = 12258 } # Pingcheng -> Datong, Wuzhou link = { autogenerated = yes imp = 9626 ck3 = 12229 } # Xiajuan -> Baling_Yuezhou link = { autogenerated = yes imp = 8812 ck3 = 12228 ck3 = 12272 ck3 = 13842 ck3 = 13853 ck3 = 13868 } # Bujo -> Omae-ri, Chonghae, Okju, Choju, Punju link = { autogenerated = yes imp = 9561 ck3 = 12227 ck3 = 12211 ck3 = 12732 ck3 = 7991 } # PASS -> Jala Tun, Erzhan, Chaoer, Boku @@ -6889,14 +7102,14 @@ link = { autogenerated = yes imp = 9625 imp = 9008 ck3 = 12217 } # Chong, Lingyang -> Dayong link = { autogenerated = yes imp = 8646 imp = 8650 imp = 9399 ck3 = 12215 } # Dai, Dangcheng, Impassable -> Anbian link = { autogenerated = yes imp = 8771 ck3 = 12212 ck3 = 12240 } # Guzhu -> Jieshi_Changli, Yuguan_Shanhaiguan - link = { autogenerated = yes imp = 7040 imp = 7041 imp = 7019 ck3 = 1221 } # Mosali, Kottobora, Andhapura -> Vijayawada - link = { imp = 8889 ck3 = 12208 ck3 = 12141 ck3 = 12146 } # Fu -> Hejiang_Wanshou, XizhouNengzhou, Yuanshan + link = { autogenerated = yes imp = 7040 imp = 7041 ck3 = 1221 } # Mosali, Kottobora -> Vijayawada + link = { autogenerated = yes imp = 8889 ck3 = 12208 ck3 = 12141 ck3 = 12146 } # Fu -> Hejiang_Wanshou, XizhouNengzhou, Yuanshan link = { autogenerated = yes imp = 8811 ck3 = 12207 } # Tallyeol -> Yanghwasa link = { autogenerated = yes imp = 8731 ck3 = 12202 } # Zhuo -> WeihuaShikubao link = { autogenerated = yes imp = 6881 ck3 = 1220 } # Tyrannosboas -> Goa link = { autogenerated = yes imp = 9426 imp = 9006 imp = 9007 ck3 = 12192 } # Zishui, Linyuan, Suo -> Longyang link = { autogenerated = yes imp = 7001 ck3 = 1219 } # Melange -> Potapi - link = { imp = 8623 imp = 8594 imp = 9880 ck3 = 12189 } # Nanyu, Fuchang, Zhongling -> Hebin + link = { autogenerated = yes imp = 8623 imp = 8594 imp = 9880 ck3 = 12189 } # Nanyu, Fuchang, Zhongling -> Hebin link = { autogenerated = yes imp = 8802 ck3 = 12187 ck3 = 13038 } # Jeungji -> Anju, 13038 link = { autogenerated = yes imp = 8883 ck3 = 12185 ck3 = 12199 } # Bodao -> RongzhouYibin, Nixizhen link = { autogenerated = yes imp = 7120 ck3 = 1218 ck3 = 7878 ck3 = 7902 } # Raichur -> Alampur, Raichur, Yetagiri @@ -6904,22 +7117,22 @@ link = { autogenerated = yes imp = 8813 ck3 = 12175 ck3 = 13449 ck3 = 13800 } # Hwaryeo -> Namyeong, 13449, 13800 link = { autogenerated = yes imp = 9005 ck3 = 12173 ck3 = 12198 } # Wangdu -> Wuling, Taoyuan link = { autogenerated = yes imp = 9488 ck3 = 12172 ck3 = 12191 ck3 = 12548 ck3 = 7518 ck3 = 7519 ck3 = 7746 } # Yuwu -> Turuhe, Khermen Denzh, Chintolgol Balgas, Emgentiin Kherem, Bayan Nuur, Kushlagqaq - link = { imp = 8654 ck3 = 12171 ck3 = 12214 ck3 = 12183 ck3 = 12100 } # Fanzhi -> Yingzhou, Huairen, Hengshan, (Unknown) + link = { autogenerated = yes imp = 8654 ck3 = 12171 ck3 = 12183 ck3 = 12214 ck3 = 12100 } # Fanzhi -> Yingzhou, Hengshan, Huairen, (Unknown) link = { autogenerated = yes imp = 7029 ck3 = 1217 } # Bendakaluru -> Nandagiri link = { autogenerated = yes imp = 9020 ck3 = 12169 } # Luo -> Miluoshui link = { autogenerated = yes imp = 8733 imp = 8732 imp = 8746 ck3 = 12168 } # Wuyang, Qiu, Goumao -> Yizhou - link = { imp = 8888 ck3 = 12167 ck3 = 12195 } # Jiangyang -> Jingnan_Jiangan, Luzhou + link = { autogenerated = yes imp = 8888 ck3 = 12167 ck3 = 12195 } # Jiangyang -> Jingnan_Jiangan, Luzhou link = { autogenerated = yes imp = 8778 imp = 8769 ck3 = 12166 } # Haiyang, Anping -> LuanzhouYifeng_Liuchengjun link = { autogenerated = yes imp = 9019 ck3 = 12163 ck3 = 12125 } # Yiyang -> Xiangyin, Yiyang_Tanzhou link = { autogenerated = yes imp = 8761 imp = 8762 imp = 8763 imp = 8764 ck3 = 12162 } # Wuzhong, Xuwu, Xiyang, Changcheng -> Yutian_Jizhou link = { autogenerated = yes imp = 8648 ck3 = 12159 } # Lu -> Lingqiu - link = { imp = 8595 imp = 8596 ck3 = 12158 } # Guangyan, Meiji -> (Unknown) + link = { autogenerated = yes imp = 8595 ck3 = 12158 } # Guangyan -> (Unknown) link = { autogenerated = yes imp = 8647 ck3 = 12156 } # Guangchang -> Feihudao link = { autogenerated = yes imp = 4427 ck3 = 1215 } # Bhitargaon -> Etawah link = { autogenerated = yes imp = 9094 ck3 = 12149 ck3 = 12180 ck3 = 12201 } # Gumie -> Xujiang_Jianglangshan, Quzhou_Xinan, Jinhua_Wuzhou link = { autogenerated = yes imp = 8742 ck3 = 12148 ck3 = 12203 } # Ji -> ChangdaoLongshan, YouzhouJixian link = { autogenerated = yes imp = 12889 ck3 = 12145 ck3 = 12193 } # Biliu -> Shicheng, Zhuanghe - link = { imp = 8755 imp = 8724 imp = 8754 imp = 8756 ck3 = 12144 } # Yongnu, Anci, Quanzhou, Lu -> Yongnu + link = { autogenerated = yes imp = 8755 imp = 8754 imp = 8756 ck3 = 12144 } # Yongnu, Quanzhou, Lu -> Yongnu link = { autogenerated = yes imp = 9130 ck3 = 12142 } # Nanchang -> Hongzhou_Yuzhang link = { autogenerated = yes imp = 6914 imp = 6913 ck3 = 1214 } # Alaivay, Tamraparni -> Tirunelveli link = { autogenerated = yes imp = 8885 ck3 = 12139 ck3 = 12181 ck3 = 12231 ck3 = 12256 ck3 = 12260 ck3 = 13024 } # Nanan -> (Unknown), Qiongdongzhou, Qianwei, RongzhouXuchuan, JiazhouLongyou, 13024 @@ -6927,7 +7140,7 @@ link = { autogenerated = yes imp = 9708 ck3 = 12134 ck3 = 13634 } # Doxulan -> Zuun Toolroi, Tsugol link = { autogenerated = yes imp = 9698 ck3 = 12133 ck3 = 13548 ck3 = 12265 ck3 = 13542 } # Gudam -> Durulgui, Zudkheli, Ikhana, Mangut link = { autogenerated = yes imp = 9000 ck3 = 12132 } # Yuanling -> Yuanling_Chenzhou - link = { imp = 9522 ck3 = 12130 ck3 = 12194 ck3 = 13557 } # Daxianbeishan North -> Urqihan, Genhe, Kudu + link = { autogenerated = yes imp = 9522 ck3 = 12130 ck3 = 12194 ck3 = 13557 ck3 = 13628 } # Daxianbeishan North -> Urqihan, Genhe, Kudu, Dabai link = { autogenerated = yes imp = 7104 ck3 = 1213 } # Siaprava -> Kondana link = { autogenerated = yes imp = 8655 ck3 = 12123 ck3 = 12154 } # Loufan -> Loufanguan, Shuozhou link = { autogenerated = yes imp = 9125 ck3 = 12121 ck3 = 12128 } # Yugan -> Yiyang_Guixi, Shangrao @@ -6937,15 +7150,17 @@ link = { autogenerated = yes imp = 7119 ck3 = 1211 } # Kothapala -> Pannagallu link = { autogenerated = yes imp = 9018 ck3 = 12101 ck3 = 12111 } # Changsha -> Liuyang, Changsha_Tanzhou link = { autogenerated = yes imp = 7154 imp = 7053 ck3 = 1210 } # Guriprava*, Sannathi -> Manyakheta + link = { autogenerated = yes imp = 7811 ck3 = 121 } # Turuntia -> NEUENBURG link = { autogenerated = yes imp = 9484 ck3 = 12099 } # Langjuxu -> Tungglik link = { autogenerated = yes imp = 8717 imp = 8714 ck3 = 12092 } # Tang, Wangdou -> Beiping_Wangdu - link = { imp = 9521 ck3 = 12090 ck3 = 12188 ck3 = 13553 } # Upper Heishui -> Halair, Tsanbkir, Duroy - link = { imp = 7057 ck3 = 1209 } # Nagarjunikonda -> Racakonda + link = { autogenerated = yes imp = 9521 ck3 = 12090 ck3 = 12188 ck3 = 13553 ck3 = 13555 } # Upper Heishui -> Halair, Tsanbkir, Duroy, Qasar + link = { autogenerated = yes imp = 7057 ck3 = 1209 ck3 = 7904 } # Nagarjunikonda -> Racakonda, Nalgonda link = { autogenerated = yes imp = 8737 imp = 8736 ck3 = 12089 } # Yi, Yichang -> Mozhou link = { autogenerated = yes imp = 8644 ck3 = 12087 ck3 = 12126 ck3 = 12152 } # Junren -> Guoxian, Yanmen, Fanshi + link = { autogenerated = yes imp = 8723 ck3 = 12086 } # Wenan -> Pingshu link = { autogenerated = yes imp = 8716 ck3 = 12085 ck3 = 12131 } # Beiping -> Qingyuan, Suicheng_Yi link = { autogenerated = yes imp = 7044 ck3 = 1208 ck3 = 7912 } # Nanagaina -> Kambampet, Ellur - link = { autogenerated = yes imp = 9002 ck3 = 12076 ck3 = 12078 ck3 = 12088 } # Chenyang -> Wanan_Tongren, Jinzhou_Luyang, Luxi + link = { autogenerated = yes imp = 9002 ck3 = 12076 ck3 = 12078 ck3 = 12088 ck3 = 12053 } # Chenyang -> Wanan_Tongren, Jinzhou_Luyang, Luxi, Chenxi link = { autogenerated = yes imp = 9127 ck3 = 12074 } # Yichun -> Yichun_Yuanzhou link = { autogenerated = yes imp = 8890 ck3 = 12073 ck3 = 12080 ck3 = 12116 } # Nanguang -> Mangbubu, Apangbu, SiEzhou link = { autogenerated = yes imp = 9118 ck3 = 12072 ck3 = 12084 ck3 = 12095 } # Xingan -> Xingan_Qingjiang, Xinyu_Yuanzhou, Fengcheng_Hongzhou @@ -6953,20 +7168,21 @@ link = { autogenerated = yes imp = 8593 ck3 = 12069 ck3 = 12071 } # Pingding -> Yincheng, Linzhou link = { autogenerated = yes imp = 9109 imp = 11068 ck3 = 12068 } # Wuxing, Nanpu -> Tangxing_Pucheng link = { autogenerated = yes imp = 9638 ck3 = 12065 } # You -> Liling - link = { imp = 8722 ck3 = 12064 } # Pingshu -> Lucheng_Qianningjun + link = { autogenerated = yes imp = 8722 imp = 8724 ck3 = 12064 } # Pingshu, Anci -> Lucheng_Qianningjun link = { autogenerated = yes imp = 8735 imp = 8715 ck3 = 12063 } # Guangwang, Quni -> Boye_Gaoyang link = { autogenerated = yes imp = 9879 ck3 = 12061 ck3 = 12075 ck3 = 12109 ck3 = 12151 } # Linshui -> Hehe, Langu, Baodejun, Hequ - link = { autogenerated = yes imp = 7113 imp = 7111 ck3 = 1206 } # Mehdnapura*, Sonnolagi -> Taradavadi + link = { autogenerated = yes imp = 7111 imp = 7113 ck3 = 1206 } # Sonnolagi, Mehdnapura* -> Taradavadi link = { autogenerated = yes imp = 8788 ck3 = 12059 ck3 = 12129 ck3 = 12182 ck3 = 13818 } # Tashi -> Dulizhen, Beisha, Dandong, Jili link = { autogenerated = yes imp = 8689 imp = 8713 ck3 = 12058 } # Shangquyang, Xinchu -> DingzhouAnxi link = { autogenerated = yes imp = 8642 ck3 = 12051 ck3 = 12066 } # Yangqu -> Xiurong, Dingxiang - link = { autogenerated = yes imp = 9011 imp = 9015 ck3 = 12050 } # Wuyang, Impassable -> Longbiao_Wuzhou - link = { imp = 9010 ck3 = 12047 ck3 = 12094 ck3 = 12105 ck3 = 12018 ck3 = 12118 } # Sanshangu -> Chongzhou_Shiqian, Feizhou_Sinan, Sizhou_Wuchuan, Zijiang_Longdong, Yangchuan_Ningyi - link = { imp = 8711 imp = 8712 imp = 8741 ck3 = 12044 } # Anguo, Anxian, Anping -> Raoyang - link = { autogenerated = yes imp = 7002 imp = 7012 ck3 = 1204 } # Nellore, Palakka -> Nellore + link = { autogenerated = yes imp = 8999 imp = 9011 imp = 9015 ck3 = 12050 } # Xupu, Wuyang, Impassable -> Longbiao_Wuzhou + link = { autogenerated = yes imp = 9010 ck3 = 12047 ck3 = 12094 ck3 = 12105 ck3 = 12018 ck3 = 12118 ck3 = 12135 ck3 = 13021 } # Sanshangu -> Chongzhou_Shiqian, Feizhou_Sinan, Sizhou_Wuchuan, Zijiang_Longdong, Yangchuan_Ningyi, Yelang_Leyuan, 13021 + link = { autogenerated = yes imp = 8711 imp = 8712 ck3 = 12044 } # Anguo, Anxian -> Raoyang + link = { autogenerated = yes imp = 7002 ck3 = 1204 } # Nellore -> Nellore link = { autogenerated = yes imp = 9633 imp = 9022 imp = 9634 ck3 = 12038 } # Liandao, Zhaoling, Chengyang -> Shaozhou_Shaoyang - link = { autogenerated = yes imp = 9026 ck3 = 12037 } # Fuyi -> Longhuiguan + link = { autogenerated = yes imp = 9026 imp = 9016 ck3 = 12037 } # Fuyi, Impassable -> Longhuiguan link = { autogenerated = yes imp = 8738 imp = 8739 imp = 8740 ck3 = 12036 } # Guo, Ewu, Rao -> YingzhouHejian + link = { autogenerated = yes imp = 9285 ck3 = 12033 ck3 = 12316 ck3 = 12339 ck3 = 12395 ck3 = 13399 } # Tamna -> Seogwipo, Hallasan, Byeolbangjin, Jeju, Daejeong link = { autogenerated = yes imp = 8718 imp = 8721 imp = 8728 ck3 = 12032 } # Fuyang, Zhongyi, Zhangwu -> CangzhouQingchi link = { autogenerated = yes imp = 9635 ck3 = 12031 ck3 = 12070 } # Xiangnan -> Hengshan_Xiangtan, Xiangxiang link = { autogenerated = yes imp = 8686 ck3 = 12030 ck3 = 12056 } # Lingshou -> HengzhouZhending, Lingshou_Xingtang @@ -6974,7 +7190,6 @@ link = { autogenerated = yes imp = 9534 ck3 = 12029 } # Daze North -> Kholon link = { autogenerated = yes imp = 8688 imp = 9396 ck3 = 12027 } # Jingjing, Impassable -> Jingxing link = { autogenerated = yes imp = 8645 ck3 = 12025 ck3 = 12026 ck3 = 12103 ck3 = 12043 } # Fenyang -> Yifang, Hutushan, Shenwu, Jingle - link = { autogenerated = yes imp = 9664 ck3 = 12024 } # Anping -> Luling_Jizhou link = { autogenerated = yes imp = 8710 imp = 8690 imp = 8709 ck3 = 12023 } # Kujing, Nanhangtang, Lunu -> Wuji link = { autogenerated = yes imp = 9494 ck3 = 12022 ck3 = 12383 ck3 = 7517 ck3 = 7521 ck3 = 7575 } # Tiakigu -> Mumo, Khar Bukhyn Balgas, Khol-Asgat, Melkhiin Tolgol, Karakorum link = { autogenerated = yes imp = 8932 ck3 = 12021 ck3 = 12055 ck3 = 12062 ck3 = 12081 ck3 = 12082 ck3 = 12096 ck3 = 13019 } # Bi -> Xizhou_Yachihe, Yiquan_Meitan, Bozhou_Zunyi, (Unknown), Yizhou_Suiyang, Tongzi_xiaoBozhou, 13019 @@ -6983,10 +7198,9 @@ link = { autogenerated = yes imp = 8698 imp = 8729 imp = 8730 ck3 = 12012 } # Lecheng, Jiancheng, Canhu -> Nanpi_Dongguang link = { autogenerated = yes imp = 9695 ck3 = 12010 ck3 = 7679 ck3 = 7749 ck3 = 7559 } # Hasaxu -> Nartushtu, Bulun Dara, Duurlig Nars, Baljun link = { autogenerated = yes imp = 6946 imp = 6927 ck3 = 1201 } # Syurila, Kaliour -> Kongu - link = { imp = 8701 ck3 = 12009 } # Xiabo -> Hengshui + link = { autogenerated = yes imp = 8701 imp = 8741 ck3 = 12009 } # Xiabo, Anping -> Hengshui link = { autogenerated = yes imp = 8708 ck3 = 12006 } # Xiaquyang -> ShenzhouLuze link = { autogenerated = yes imp = 9021 ck3 = 12004 } # Pang -> Hengyang_Hengzhou - link = { autogenerated = yes imp = 8636 ck3 = 12003 } # Jinyang -> TianlongshanCave link = { autogenerated = yes imp = 6885 ck3 = 1200 } # Nouira -> Kanara link = { autogenerated = yes imp = 7831 ck3 = 120 ck3 = 156 } # Galindia Orientalis -> RAGNIT, PANEMUNE link = { autogenerated = yes imp = 2206 ck3 = 12 } # VoluntiaSeptentrionalis -> DERRY @@ -6994,11 +7208,13 @@ link = { autogenerated = yes imp = 9128 ck3 = 11998 ck3 = 12041 ck3 = 12077 ck3 = 12048 } # Nancheng -> Nanfeng_TaipingSilver, Nancheng_Jianchangjun, Fuzhou_Linchuan, Yihuang link = { autogenerated = yes imp = 9111 imp = 9110 imp = 8133 imp = 9114 imp = 9115 imp = 9134 ck3 = 11996 } # Jiangle, Zhaowu, Yue Mountains, Impassable, Impassable, Impassable -> Shaowu_Jiangle link = { autogenerated = yes imp = 8702 imp = 8720 ck3 = 11991 } # Guanjin, Xiushi -> Anling - link = { autogenerated = yes imp = 7014 ck3 = 1199 } # Penugonda -> Penugonda + link = { autogenerated = yes imp = 8636 ck3 = 11990 ck3 = 12003 } # Jinyang -> Taiyuan, TianlongshanCave + link = { autogenerated = yes imp = 7014 ck3 = 1199 ck3 = 7822 } # Penugonda -> Penugonda, Nandi link = { autogenerated = yes imp = 11062 imp = 11063 ck3 = 11989 } # Wenma, Fuding -> Changxi_Xiapu link = { autogenerated = yes imp = 9700 imp = 9705 ck3 = 11988 } # Amtan, Dalai -> Tsagaan Chulut link = { autogenerated = yes imp = 8719 imp = 8726 ck3 = 11987 } # Raoan, Nanpi -> Wudi_Cangzhou link = { autogenerated = yes imp = 9637 imp = 9023 imp = 9040 ck3 = 11986 } # Rongling, Chaling, Yinshan -> Chaling_Youxian + link = { autogenerated = yes imp = 8700 imp = 8699 imp = 8704 imp = 8707 ck3 = 11983 } # Xincheng, Wusui, Changcheng, Songzi -> Jizhou_Xindu link = { autogenerated = yes imp = 8640 ck3 = 11981 ck3 = 12016 } # Shang ai -> Shiai, Shouyang link = { autogenerated = yes imp = 8591 imp = 8590 imp = 8602 ck3 = 11980 } # Gaolang, Lishi, Impassable -> Lishi link = { autogenerated = yes imp = 7109 ck3 = 1198 ck3 = 1202 } # Vijayapura******* -> Vatapi, Kudalasangama @@ -7006,7 +7222,7 @@ link = { autogenerated = yes imp = 8639 ck3 = 11974 } # Yuci -> Yuci link = { autogenerated = yes imp = 9533 ck3 = 11973 ck3 = 11992 ck3 = 12263 ck3 = 12429 ck3 = 7995 } # Daze South -> Alatan, Bagedula, Buyur, Menengiin Tal, Namuguren link = { autogenerated = yes imp = 8589 imp = 8587 imp = 8600 ck3 = 11971 } # Lin, Xicheng, Impassable -> Mengmenguan - link = { autogenerated = yes imp = 8638 ck3 = 11970 ck3 = 11990 } # Pingtao -> Jiaocheng, Taiyuan + link = { autogenerated = yes imp = 8638 ck3 = 11970 } # Pingtao -> Jiaocheng link = { autogenerated = yes imp = 7004 ck3 = 1197 } # Andalapura -> Dwarasamudra link = { autogenerated = yes imp = 8574 ck3 = 11969 ck3 = 12005 } # Fushi -> Dabin, Yinzhou link = { autogenerated = yes imp = 9562 ck3 = 11968 ck3 = 12297 ck3 = 12328 ck3 = 12553 ck3 = 12589 ck3 = 12623 ck3 = 12650 ck3 = 11870 ck3 = 12522 } # Heishui -> Churki, sakachu, Humar, Giju, Jiju, Dalju, Buju, Lagar-Aul, Longyuanfu @@ -7016,9 +7232,8 @@ link = { autogenerated = yes imp = 7030 ck3 = 1196 ck3 = 1216 } # Kaveri -> Srirangapatna, Talakad link = { autogenerated = yes imp = 9129 ck3 = 11957 ck3 = 12019 } # Luling -> Taihe_Suichuan, Yongfeng link = { autogenerated = yes imp = 8516 imp = 8515 ck3 = 11954 } # Chui, Huang -> Dengzhou_Penglai - link = { autogenerated = yes imp = 9131 ck3 = 11952 } # Yudu -> Qianhua link = { autogenerated = yes imp = 8931 ck3 = 11951 ck3 = 11963 ck3 = 13015 } # Guqielan -> Jiangzhou_Kaili, Gongzhou_Manzhou, 13015 - link = { imp = 8700 imp = 8703 ck3 = 11950 } # Xincheng, Nangong -> Nangong_Jingcheng + link = { autogenerated = yes imp = 8703 ck3 = 11950 } # Nangong -> Nangong_Jingcheng link = { autogenerated = yes imp = 9617 ck3 = 11946 ck3 = 11994 } # Hanyang -> (Unknown), Momidianbu link = { autogenerated = yes imp = 9739 imp = 9738 ck3 = 11943 } # Yaeyama, Miyako -> Miyakojima link = { autogenerated = yes imp = 8567 ck3 = 11942 ck3 = 11953 ck3 = 11997 } # Xuyan -> Wenchi, YanzhouWuyuan, Lanchi @@ -7026,7 +7241,7 @@ link = { autogenerated = yes imp = 7117 ck3 = 1194 } # Satyiyani -> Sindkheda link = { autogenerated = yes imp = 9030 imp = 9028 imp = 9034 ck3 = 11939 } # Quanling, Zhongwu, Impassable -> Yongzhou_Lingling link = { autogenerated = yes imp = 11114 ck3 = 11937 ck3 = 11919 } # Yongyan -> Shaxian_Sanming, Youxi - link = { autogenerated = yes imp = 11115 imp = 8137 imp = 8138 ck3 = 11936 } # Liancheng, Fujian Mountains, Fujian Mountains -> Huanglian_Jiulongxi + link = { autogenerated = yes imp = 11115 imp = 11113 imp = 8137 imp = 8138 ck3 = 11936 } # Liancheng, Anyuan, Fujian Mountains, Fujian Mountains -> Huanglian_Jiulongxi link = { autogenerated = yes imp = 9012 ck3 = 11935 ck3 = 11901 ck3 = 13017 } # Tancheng -> Tongdao_Wuzhou, Liangzhou_Huangzhou, 13017 link = { autogenerated = yes imp = 8706 ck3 = 11934 } # Baixiang -> Julu link = { autogenerated = yes imp = 9523 ck3 = 11932 ck3 = 11961 ck3 = 12040 ck3 = 7567 ck3 = 7685 } # Daxianbeishan -> Baljuna, Qalqa, Chekcher, Erdun, Chiqurgu @@ -7036,7 +7251,7 @@ link = { autogenerated = yes imp = 8586 ck3 = 11927 ck3 = 11977 } # Huanyang -> Chengping, Yanfu link = { autogenerated = yes imp = 8576 ck3 = 11926 } # Pingdu -> Suide link = { autogenerated = yes imp = 8575 ck3 = 11964 } # Pingzhou -> Shangxian - link = { autogenerated = yes imp = 8498 imp = 8495 imp = 8501 ck3 = 11924 } # Qiansheng, Liangzou, Di -> Zouping + link = { autogenerated = yes imp = 8495 imp = 8498 imp = 8501 ck3 = 11924 } # Liangzou, Qiansheng, Di -> Zouping link = { autogenerated = yes imp = 8682 imp = 8679 imp = 8683 imp = 8691 ck3 = 11923 } # Xing, Ren, Boren, Fangzi -> XingzhouLonggang link = { autogenerated = yes imp = 8697 imp = 8705 ck3 = 11922 } # Liao, Julu -> BeizhouQinghe link = { autogenerated = yes imp = 8637 ck3 = 11921 ck3 = 11940 ck3 = 11945 } # Wu -> Jiexiu, Pingyao, Taigu @@ -7054,12 +7269,12 @@ link = { autogenerated = yes imp = 8680 imp = 8678 ck3 = 11895 } # Lieren, Guangping -> MingzhouYongnian link = { autogenerated = yes imp = 8577 ck3 = 11891 } # Yangzhou -> Jinming link = { autogenerated = yes imp = 8269 ck3 = 11890 ck3 = 11929 ck3 = 11944 ck3 = 9534 } # Xuanjuan -> Wulan, Weiruhe, Mingsha, Shapotou - link = { imp = 8933 ck3 = 11889 ck3 = 13011 ck3 = 11773 ck3 = 11913 ck3 = 11917 } # Wulian -> (Unknown), 13011, TianE_Luanzhou, Xunzhou_Nanpingzhou, Yingzhou_Dushang + link = { autogenerated = yes imp = 8933 ck3 = 11889 ck3 = 13011 ck3 = 11773 ck3 = 11913 ck3 = 11917 ck3 = 13010 } # Wulian -> (Unknown), 13011, TianE_Luanzhou, Xunzhou_Nanpingzhou, Yingzhou_Dushang, 13010 link = { autogenerated = yes imp = 8514 imp = 8520 ck3 = 11888 } # Yeyi, Xiami -> Laizhou_Donglai link = { autogenerated = yes imp = 8631 imp = 8632 ck3 = 11887 } # Ti, Xiangyuan -> Yaoguling link = { autogenerated = yes imp = 12758 ck3 = 11886 ck3 = 12493 ck3 = 13591 ck3 = 7217 ck3 = 7992 } # Loraj -> Raiti, Sairoko, Sortunai, Turu, Tarannai link = { autogenerated = yes imp = 8506 imp = 8505 imp = 8507 ck3 = 11885 } # Juding, Ju, Linqu -> Qingzhou_Yidu - link = { autogenerated = yes imp = 11113 imp = 9138 ck3 = 11884 } # Anyuan, Impassable -> Yudu_Ruijin + link = { autogenerated = yes imp = 9131 ck3 = 11884 ck3 = 11952 } # Yudu -> Yudu_Ruijin, Qianhua link = { autogenerated = yes imp = 9519 ck3 = 11882 ck3 = 12440 ck3 = 13972 } # Gonglu -> Uguurmur Tsuvraa, Bars-Hot, Naimaa Tolgoi link = { autogenerated = yes imp = 9679 ck3 = 11880 ck3 = 12157 ck3 = 13971 } # Barix -> Koko Na'ur, Ayl Kharaqana, Khorchuqui link = { autogenerated = yes imp = 7182 ck3 = 1188 ck3 = 1189 ck3 = 7899 } # Jhodga -> Erandol, Amalner, Elapura @@ -7068,10 +7283,10 @@ link = { autogenerated = yes imp = 8494 imp = 8492 ck3 = 11874 } # Lixia, Pingling -> Qizhou_Licheng link = { autogenerated = yes imp = 8633 ck3 = 11873 ck3 = 11925 } # Nie -> Xiangyuan, Yushe link = { autogenerated = yes imp = 8566 ck3 = 11872 ck3 = 11769 } # Fangqu -> Fangqu, (Unknown) - link = { autogenerated = yes imp = 7126 ck3 = 1187 } # Burhanpur****** -> Changdev + link = { autogenerated = yes imp = 7126 imp = 7423 ck3 = 1187 } # Burhanpur******, Melghat* -> Changdev link = { autogenerated = yes imp = 9639 ck3 = 11869 ck3 = 11801 } # Nanping -> Dalixian_Ningyuan, Jianghua_Mengzhuqiao link = { autogenerated = yes imp = 8445 ck3 = 11868 } # Liaocheng -> BozhouLiaocheng - link = { autogenerated = yes imp = 9119 imp = 9136 imp = 9139 ck3 = 11864 } # Shanggan, Impassable, Impassable -> Ganxian_Qianzhou + link = { autogenerated = yes imp = 9119 imp = 9136 imp = 9138 imp = 9139 ck3 = 11864 } # Shanggan, Impassable, Impassable, Impassable -> Ganxian_Qianzhou link = { autogenerated = yes imp = 9678 ck3 = 11862 ck3 = 12559 } # Doligen -> Ulaanzukh, Serven Khaalga link = { autogenerated = yes imp = 7263 ck3 = 1186 } # Jaxartes -> Chach link = { autogenerated = yes imp = 8581 ck3 = 11859 ck3 = 12150 } # Luodu -> Jincheng_Yanzhou, Kuyeganpo @@ -7090,11 +7305,11 @@ link = { autogenerated = yes imp = 8523 imp = 8525 imp = 8527 ck3 = 11841 } # Dongwu, Gumu, Langya -> Mizhou_Zhucheng link = { autogenerated = yes imp = 8524 imp = 8509 ck3 = 11840 } # Buqi, Gaomi -> Gaomi_Yiancheng link = { autogenerated = yes imp = 7316 ck3 = 1184 ck3 = 1263 } # Khargone* -> Khargone, Burhanpur - link = { imp = 9556 ck3 = 11838 ck3 = 11844 ck3 = 12007 ck3 = 12196 ck3 = 7734 } # Shiwei -> Borduo, Hefa, Laha, Kunshan, Uyan + link = { autogenerated = yes imp = 9556 ck3 = 11838 ck3 = 11844 ck3 = 12007 ck3 = 12196 ck3 = 7684 ck3 = 7734 } # Shiwei -> Borduo, Hefa, Laha, Kunshan, Arun, Uyan link = { autogenerated = yes imp = 9308 ck3 = 11836 ck3 = 13767 } # Gurvel -> Gilyu'ejid, Qanchile link = { autogenerated = yes imp = 9524 ck3 = 11834 ck3 = 11835 ck3 = 12906 ck3 = 13797 } # Daxianbeishan South -> Buiru'ut, Sumbur, Guokui, 13797 link = { autogenerated = yes imp = 8497 imp = 8496 imp = 8503 imp = 8508 ck3 = 11833 } # Banyang, Yuling, Gaowan, Changcheng -> Zizhou_Zichuan - link = { imp = 9333 ck3 = 11832 } # Maazix -> Baruun Khovdiin + link = { autogenerated = yes imp = 9333 imp = 9334 ck3 = 11832 } # Maazix, Duulax -> Baruun Khovdiin link = { autogenerated = yes imp = 8483 imp = 8487 ck3 = 11831 } # Ying, Chai -> Laiwu link = { autogenerated = yes imp = 8480 ck3 = 11830 } # Bo -> Taishan_Qianfeng link = { autogenerated = yes imp = 7125 ck3 = 1183 ck3 = 1262 } # Pandavleni****** -> Borgarh, Thalner @@ -7102,7 +7317,7 @@ link = { autogenerated = yes imp = 8484 ck3 = 11828 } # Lu -> Changqing link = { autogenerated = yes imp = 8442 ck3 = 11826 } # E -> DongE link = { autogenerated = yes imp = 10825 imp = 10826 ck3 = 11825 } # Shihsanhang, Chihwuyuen -> beiliuqiu - link = { imp = 9334 ck3 = 11824 } # Duulax -> Sharga Uul + link = { autogenerated = yes imp = 12721 ck3 = 11824 ck3 = 13785 } # Tial -> Sharga Uul, 13785 link = { autogenerated = yes imp = 12722 ck3 = 11822 ck3 = 13779 } # Tenri -> Delgerkhaan, 13779 link = { autogenerated = yes imp = 9487 ck3 = 11821 ck3 = 12678 } # Gonglu -> Bayankhutag, Idermeg link = { autogenerated = yes imp = 7315 ck3 = 1182 } # Barwani* -> Bawangaja @@ -7120,19 +7335,19 @@ link = { autogenerated = yes imp = 8677 ck3 = 11803 } # Wuan -> CizhouFuyang link = { autogenerated = yes imp = 8668 ck3 = 11802 } # Ye -> Yexian link = { autogenerated = yes imp = 8368 ck3 = 11800 } # Linlyu -> Linlv - link = { autogenerated = yes imp = 6997 imp = 4325 ck3 = 1180 } # Ora, Mardan -> Udabhanda + link = { autogenerated = yes imp = 6997 imp = 4324 imp = 4325 ck3 = 1180 } # Ora, Jamal Garhi, Mardan -> Udabhanda link = { autogenerated = yes imp = 7809 ck3 = 118 ck3 = 125 ck3 = 126 } # Rubonia Orientalis -> MEMEL, TAURAGE, MEDENIKEN link = { autogenerated = yes imp = 8674 ck3 = 11799 } # She -> Shexian link = { autogenerated = yes imp = 8634 ck3 = 11798 } # Lu -> Shangdang link = { autogenerated = yes imp = 8628 imp = 8629 imp = 8630 ck3 = 11797 } # Zhangzi, Tunliu, Yuwu -> Tunliu link = { autogenerated = yes imp = 8627 ck3 = 11796 ck3 = 11903 ck3 = 12980 } # Yishi -> Qinyuan, Mianshang, Fuchengguan link = { autogenerated = yes imp = 9158 imp = 9029 imp = 9157 imp = 9035 imp = 9160 ck3 = 11794 } # Xiemu, Yingdao, Fengcheng, Impassable, Impassable -> Yingdao_Daozhou - link = { autogenerated = yes imp = 8351 ck3 = 11791 ck3 = 11866 ck3 = 12979 ck3 = 12962 } # Pingyang -> Hongtong, Huoyi, Linfen, Zhengping + link = { autogenerated = yes imp = 8351 ck3 = 11791 ck3 = 11866 ck3 = 12962 ck3 = 12979 } # Pingyang -> Hongtong, Huoyi, Zhengping, Linfen link = { autogenerated = yes imp = 9156 ck3 = 11790 ck3 = 11792 } # Lipu -> Yangshuo_Lipu, Zhaozhou_Pingle link = { autogenerated = yes imp = 4340 ck3 = 1179 } # Sakala -> Sakala link = { autogenerated = yes imp = 9031 imp = 9017 ck3 = 11788 } # Shian, Impassable -> Guilin - link = { autogenerated = yes imp = 9182 ck3 = 11785 ck3 = 12942 ck3 = 11783 ck3 = 11899 } # Tanzhong -> Yongfu_Dingli, Liuzhou, Rongzhou_Rongshui, Longsheng_Sanjiang link = { autogenerated = yes imp = 8353 ck3 = 11784 ck3 = 11786 ck3 = 11892 ck3 = 11898 ck3 = 11789 ck3 = 12975 } # Hunie -> Wencheng, Daning, Xichuan, Yonghe, Puxian, Jichang + link = { autogenerated = yes imp = 9182 ck3 = 11783 ck3 = 11785 ck3 = 12942 ck3 = 11899 } # Tanzhong -> Rongzhou_Rongshui, Yongfu_Dingli, Liuzhou, Longsheng_Sanjiang link = { autogenerated = yes imp = 8585 ck3 = 11782 ck3 = 11897 } # Dingyang -> Wurenguan, Yanchuan link = { autogenerated = yes imp = 8578 ck3 = 11781 ck3 = 11863 ck3 = 11867 } # Gaonu -> Linzhen, Yanzhou, YanAn link = { autogenerated = yes imp = 11526 imp = 11522 imp = 11524 imp = 11525 imp = 11528 imp = 6058 ck3 = 1178 } # Chishtian, Marot, Patan Minara, Inayati, Anupgarh, Marudesa -> Karur @@ -7145,7 +7360,7 @@ link = { autogenerated = yes imp = 8272 ck3 = 11766 } # Gaoping -> Yuanzhou link = { autogenerated = yes imp = 8271 ck3 = 11871 ck3 = 11933 ck3 = 11765 } # Sanshui -> Xiaoguan, Anlechuan, (Unknown) link = { autogenerated = yes imp = 8270 ck3 = 11764 } # Zuli -> Huining - link = { autogenerated = yes imp = 8280 ck3 = 11763 ck3 = 16017 ck3 = 16019 } # Yongshi -> Longgoubao, 16017, 16019 + link = { autogenerated = yes imp = 8280 ck3 = 11763 ck3 = 16017 ck3 = 16019 } # Yongshi -> Longgoubao, Kungzhou, Qinzhou link = { autogenerated = yes imp = 9804 ck3 = 11759 ck3 = 9882 ck3 = 10092 ck3 = 10791 } # Yilumo -> Yebyu, Rew, Nong Lu, Tenasserim Hills link = { autogenerated = yes imp = 9805 ck3 = 11758 ck3 = 10664 ck3 = 9831 } # Tenasserim North -> Palaw, Kainggyaung, Amya link = { autogenerated = yes imp = 9806 ck3 = 11756 ck3 = 9828 } # Tenasserim -> Kadan, Myeik @@ -7164,15 +7379,16 @@ link = { autogenerated = yes imp = 4429 ck3 = 1163 } # Varanasi -> Varanasi link = { autogenerated = yes imp = 7369 imp = 4449 ck3 = 1162 } # Pipphalivana, Kusinagara -> Kusinagara link = { autogenerated = yes imp = 9621 ck3 = 11615 } # Jianling -> Xinxing + link = { autogenerated = yes imp = 4333 imp = 4332 ck3 = 1161 } # Huskapura, Puranadisthana/Srinagar -> Srinagara link = { autogenerated = yes imp = 7096 ck3 = 1160 } # Kosala -> Rayapura - link = { autogenerated = yes imp = 11072 ck3 = 11590 ck3 = 9863 ck3 = 9866 } # Kettha -> Mingon, Hkamti, Layshi + link = { autogenerated = yes imp = 11072 ck3 = 11590 ck3 = 9863 ck3 = 9864 ck3 = 9866 } # Kettha -> Mingon, Hkamti, Homalin, Layshi link = { autogenerated = yes imp = 7452 ck3 = 1159 } # Chhindwara* -> Ramagiri link = { autogenerated = yes imp = 9787 ck3 = 11588 ck3 = 9572 ck3 = 9574 ck3 = 9575 ck3 = 9595 } # Beikthano -> Htanpinsu, Taungnyo, Beikthano, Sinbaungwe, Swa link = { autogenerated = yes imp = 9786 ck3 = 11583 ck3 = 9560 ck3 = 9571 ck3 = 9573 ck3 = 9832 ck3 = 9835 } # Binnaka -> Natmauk, Meiktila, Yamethin, Binnaka, Shwebontha, Loi Long link = { autogenerated = yes imp = 9793 ck3 = 11582 ck3 = 9556 ck3 = 9559 ck3 = 10967 } # Maingmaw -> Myitnge, Ava, Maingmaw, Kyaukse link = { autogenerated = yes imp = 7142 ck3 = 1158 } # Manyakheta -> Bidar link = { autogenerated = yes imp = 11074 ck3 = 11575 ck3 = 9622 ck3 = 11574 ck3 = 11589 ck3 = 9623 ck3 = 9624 } # Thanbauk -> Sunle, Maukkadaw, Hakha, Paungbyin, Mingin, Kale - link = { autogenerated = yes imp = 8955 ck3 = 11572 ck3 = 9872 ck3 = 9873 ck3 = 9877 ck3 = 9879 ck3 = 9875 } # Pu -> Myitsone, Jinsheng, Lishui, Sumprabum, Mangshi, Triang Bang + link = { autogenerated = yes imp = 8955 ck3 = 11572 ck3 = 9872 ck3 = 9873 ck3 = 9875 ck3 = 9877 ck3 = 9879 } # Pu -> Myitsone, Jinsheng, Lishui, Triang Bang, Sumprabum, Mangshi link = { autogenerated = yes imp = 7155 imp = 7079 ck3 = 1157 } # Kaulas, Potana -> Balkonda link = { autogenerated = yes imp = 7100 ck3 = 1156 } # Mahdnada -> Kodalaka link = { autogenerated = yes imp = 7175 ck3 = 1155 } # Bandavala* -> Sripuri @@ -7200,7 +7416,11 @@ link = { autogenerated = yes imp = 7148 ck3 = 1144 ck3 = 1257 } # Kollipake -> Kollipake, Medak link = { autogenerated = yes imp = 11001 ck3 = 11436 ck3 = 11429 } # Mukdahan -> Khong Chiam, Khemarat link = { autogenerated = yes imp = 7143 ck3 = 1143 } # Kalyani -> Kalyani - link = { autogenerated = yes imp = 7063 imp = 7161 ck3 = 1142 } # Pratisthana, Darur -> Pratishthana + link = { autogenerated = yes imp = 7161 imp = 7063 ck3 = 1142 } # Darur, Pratisthana -> Pratishthana + link = { autogenerated = yes imp = 11117 ck3 = 11417 } # Mekong7 -> Upper Mekong + link = { autogenerated = yes imp = 11118 ck3 = 11416 } # Mekong8 -> Upper Mekong + link = { autogenerated = yes imp = 11119 ck3 = 11415 } # Mekong9 -> Upper Mekong + link = { autogenerated = yes imp = 10814 ck3 = 11411 } # Mekong6 -> Upper Mekong link = { autogenerated = yes imp = 4422 imp = 4423 ck3 = 1141 } # Antaranjiya, Soreyya -> Kol link = { autogenerated = yes imp = 7015 ck3 = 1140 ck3 = 7850 } # Vanavasi -> Banavasi, Masur link = { autogenerated = yes imp = 9822 ck3 = 11392 ck3 = 11393 ck3 = 11410 ck3 = 11633 } # Shrestrapura -> Shrestapura, Mounlapamok, Phontong, Mountains @@ -7211,14 +7431,14 @@ link = { autogenerated = yes imp = 6813 ck3 = 1136 ck3 = 3353 } # Dvaraka -> Dvaraka, Bhanvad link = { autogenerated = yes imp = 6820 ck3 = 1135 } # Valabhi -> Valabhi link = { autogenerated = yes imp = 8947 ck3 = 11347 ck3 = 9953 ck3 = 10654 } # Xisui -> Duo Yi Shu, Xieng My, Impassable - link = { autogenerated = yes imp = 8925 ck3 = 11346 ck3 = 11349 ck3 = 9942 } # Bengu -> Goje, Ami, Huili + link = { autogenerated = yes imp = 8925 ck3 = 11346 ck3 = 9942 } # Bengu -> Goje, Huili link = { autogenerated = yes imp = 8938 ck3 = 11343 ck3 = 11344 ck3 = 9938 } # Louwo -> Fu Le, Luo Xiong, Shi Tsong - link = { imp = 6818 ck3 = 1134 } # Girinagara -> Vamanasthali - link = { autogenerated = yes imp = 8924 ck3 = 11339 } # Lugao -> Zhu Yuan + link = { autogenerated = yes imp = 6818 ck3 = 1134 ck3 = 3360 } # Girinagara -> Vamanasthali, Bhumilka + link = { autogenerated = yes imp = 8924 ck3 = 11339 ck3 = 11349 } # Lugao -> Zhu Yuan, Ami link = { autogenerated = yes imp = 8941 ck3 = 11338 } # Loujiang -> Dzi Khe link = { autogenerated = yes imp = 8939 ck3 = 11337 } # Wudan -> Lu Nai link = { autogenerated = yes imp = 8927 ck3 = 11336 } # Tonglao -> Da Mo - link = { autogenerated = yes imp = 8937 ck3 = 11332 ck3 = 11333 ck3 = 9927 } # Tangao -> Zhong�an, Pingguan, U Shwi + link = { autogenerated = yes imp = 8937 ck3 = 11332 ck3 = 11333 ck3 = 9927 } # Tangao -> Zhong’an, Pingguan, U Shwi link = { autogenerated = yes imp = 8893 ck3 = 11331 ck3 = 9925 } # Cunma -> Yang Chang, Lai Bin link = { autogenerated = yes imp = 4493 ck3 = 1133 ck3 = 3378 } # Akota -> Vadodara, Darbhavati link = { autogenerated = yes imp = 8921 ck3 = 11329 ck3 = 9932 ck3 = 9934 } # Mumi -> Tang Dian, Zim Dam, Shing Ma @@ -7226,11 +7446,10 @@ link = { autogenerated = yes imp = 8880 imp = 8881 imp = 8909 ck3 = 11324 } # Maoniu, Impassable, Impassable -> Yi Hai link = { autogenerated = yes imp = 12447 ck3 = 1132 } # Tawoi -> Kirghiz link = { autogenerated = yes imp = 8953 ck3 = 11319 ck3 = 11323 ck3 = 11602 ck3 = 9851 ck3 = 9899 ck3 = 9904 ck3 = 10682 } # Yongshou -> Tuonan, Yun Xian, Changning, Kokang, Shengxiang, Khiang Lang, Nanzhao Mountains - link = { imp = 8954 ck3 = 11318 ck3 = 11402 ck3 = 11603 ck3 = 11606 ck3 = 11607 ck3 = 11609 ck3 = 11612 ck3 = 9913 ck3 = 9915 ck3 = 10273 ck3 = 11631 } # Nanfu -> Mang Xie, Menglun, Cheng Law, Meng Hing, Meng Ngaat, Meng Yang Noi, Si Mao, Mueang Hai, Chiang Hung, Mountains, Mountains - link = { autogenerated = yes imp = 8908 ck3 = 11316 ck3 = 9901 } # Qingling -> Shang Cheng, Ddi Yi + link = { autogenerated = yes imp = 8954 ck3 = 11318 ck3 = 11402 ck3 = 11603 ck3 = 11606 ck3 = 11607 ck3 = 11609 ck3 = 11612 ck3 = 9913 ck3 = 9915 ck3 = 11401 ck3 = 10273 ck3 = 11631 } # Nanfu -> Mang Xie, Menglun, Cheng Law, Meng Hing, Meng Ngaat, Meng Yang Noi, Si Mao, Mueang Hai, Chiang Hung, Monghla, Mountains, Mountains link = { autogenerated = yes imp = 8916 ck3 = 11314 ck3 = 9892 } # Buwei -> Mang Chang, Yongchang link = { autogenerated = yes imp = 7332 ck3 = 1131 ck3 = 834 ck3 = 832 } # Salariga -> Karmanta, Chandpur, Mainamati - link = { autogenerated = yes imp = 7815 imp = 7812 ck3 = 113 } # Veltaea Borealis, Turuntia Borealis -> BANDAVA + link = { autogenerated = yes imp = 7815 ck3 = 113 } # Veltaea Borealis -> BANDAVA link = { autogenerated = yes imp = 7170 ck3 = 1129 } # Magaris -> Kataka link = { autogenerated = yes imp = 7083 ck3 = 1128 ck3 = 1226 } # Sankaram -> Vizagipatam, Nandapur link = { autogenerated = yes imp = 6859 ck3 = 1127 } # Bharukaccha -> Akruresvara @@ -7238,12 +7457,12 @@ link = { autogenerated = yes imp = 6870 ck3 = 1125 } # Kalliena -> Thana link = { autogenerated = yes imp = 6884 imp = 6887 ck3 = 1124 } # Chersonesos, Pira -> Honnore link = { autogenerated = yes imp = 7045 ck3 = 1123 } # Alluru -> Vengipura - link = { autogenerated = yes imp = 7003 ck3 = 1122 } # Kottis -> Udayagiri + link = { autogenerated = yes imp = 7003 imp = 7012 ck3 = 1122 } # Kottis, Palakka -> Udayagiri link = { autogenerated = yes imp = 7037 imp = 7020 ck3 = 1121 } # Chitradurga, Isila -> Uchangidurga link = { autogenerated = yes imp = 6989 imp = 6990 ck3 = 1120 } # Tagadur, Ricavatta -> Tagadur link = { autogenerated = yes imp = 6999 ck3 = 1119 } # Mayurasattapattinam -> Kanchipuram link = { autogenerated = yes imp = 7007 ck3 = 1118 } # Nandagiri -> Manyapura - link = { imp = 6890 imp = 6892 imp = 6910 imp = 5309 ck3 = 1117 } # Naura, Coula, Tandi, IP 310 -> Qalqut + link = { autogenerated = yes imp = 6890 imp = 6892 imp = 5309 ck3 = 1117 } # Naura, Coula, IP 310 -> Qalqut link = { autogenerated = yes imp = 6942 imp = 6943 imp = 6941 ck3 = 1116 } # Tainah, Kathan, Selour -> Tenkasi link = { autogenerated = yes imp = 6929 imp = 6924 imp = 6931 imp = 6932 ck3 = 1115 } # Venni, Karukka, Nikama, Koroula -> Cholamandalam link = { autogenerated = yes imp = 11094 ck3 = 11147 ck3 = 9684 ck3 = 9692 ck3 = 9694 ck3 = 9695 ck3 = 9696 ck3 = 9697 } # Pagbilao -> Polo, Binangonan, Pangil, Tayabas, Atimunan, Buak, Katanauan @@ -7254,10 +7473,12 @@ link = { autogenerated = yes imp = 6917 imp = 6921 ck3 = 1112 } # Modoura, Perinkari -> Madurai link = { autogenerated = yes imp = 11099 ck3 = 11116 ck3 = 9710 ck3 = 9711 ck3 = 9712 } # Masbate -> Batan, Donblon, Aklan, Hantik link = { autogenerated = yes imp = 11093 ck3 = 11115 ck3 = 9689 ck3 = 9690 ck3 = 9691 ck3 = 9693 } # Balayan -> Taysan, Tangway, Taal, Balayan, Pila + link = { autogenerated = yes imp = 11077 ck3 = 11113 ck3 = 11405 } # Shweli -> 11113, Mabein link = { autogenerated = yes imp = 9209 ck3 = 11104 ck3 = 9987 } # Chu Ngo -> Bal Dil, Ulik link = { autogenerated = yes imp = 7814 ck3 = 111 ck3 = 114 } # Veltaea -> CEKLIS, GROBIN - link = { autogenerated = yes imp = 11079 ck3 = 11067 ck3 = 11068 ck3 = 11069 ck3 = 9845 ck3 = 9846 ck3 = 11395 ck3 = 9847 ck3 = 9852 } # Lashio -> namhkam, kutkai, panghseng, Hsenwi, Lashio, Tangyan, Mongyang, Hopang - link = { imp = 11078 ck3 = 11066 ck3 = 11394 ck3 = 9842 ck3 = 9844 ck3 = 9888 ck3 = 9841 } # Thanlyin -> goteik, Mantong, Hsipaw, Namhsan, Mongtung, Mongkung + link = { autogenerated = yes imp = 9427 ck3 = 11098 ck3 = 9992 ck3 = 10744 ck3 = 9994 } # An Lac -> Haripura, Dravapura, Ma Cek, Bahnar + link = { autogenerated = yes imp = 11079 ck3 = 11067 ck3 = 11068 ck3 = 11069 ck3 = 9845 ck3 = 9846 ck3 = 11395 ck3 = 9847 ck3 = 9852 ck3 = 9853 } # Lashio -> namhkam, kutkai, panghseng, Hsenwi, Lashio, Tangyan, Mongyang, Hopang, Panghsang + link = { autogenerated = yes imp = 11078 ck3 = 11066 ck3 = 11394 ck3 = 9842 ck3 = 9844 ck3 = 9888 ck3 = 9841 } # Thanlyin -> goteik, Mantong, Hsipaw, Namhsan, Mongtung, Mongkung link = { autogenerated = yes imp = 9800 ck3 = 11063 ck3 = 11531 ck3 = 11534 ck3 = 9636 ck3 = 9637 } # Shenli North -> Vaan, Bago Yoma, Thongwa, Phyu, Sittaung link = { autogenerated = yes imp = 9802 ck3 = 11062 ck3 = 11529 ck3 = 9599 } # Shenli South -> Mopi, Nyaundon, Dala link = { autogenerated = yes imp = 9801 ck3 = 11061 ck3 = 11530 ck3 = 11532 ck3 = 11533 ck3 = 9596 ck3 = 9597 ck3 = 9598 } # Shenli -> Dagon, Hlegu, Mi Chen, Ohn Hne, Pegu, Laganpahun, Syriam @@ -7268,7 +7489,7 @@ link = { autogenerated = yes imp = 9404 ck3 = 11054 ck3 = 9874 ck3 = 11512 ck3 = 11513 } # Western Pubu -> Bumhpabum, Danai, Hpakant, Kamaing link = { autogenerated = yes imp = 7816 ck3 = 110 ck3 = 117 } # Carbonia Occidentalis -> PILTENE, DUNDAGA link = { autogenerated = yes imp = 2174 ck3 = 11 } # RobogdiaOccidentalis -> FAHAN - link = { autogenerated = yes imp = 11077 ck3 = 10972 ck3 = 11113 ck3 = 11405 } # Shweli -> Myataung, 11113, Mabein + link = { autogenerated = yes imp = 9794 ck3 = 10972 ck3 = 9643 ck3 = 9644 ck3 = 9645 ck3 = 11514 ck3 = 11516 } # Taguang -> Myataung, Tagaung, Katha, Htigyaing, Indawgyi, Indaw link = { autogenerated = yes imp = 9795 ck3 = 10971 ck3 = 9646 ck3 = 11752 } # South Dalhi -> Malei, Myedu, Pinlebu link = { autogenerated = yes imp = 9791 ck3 = 10970 ck3 = 9569 } # Halin -> Shwebo, Hanlin link = { autogenerated = yes imp = 9785 ck3 = 10962 ck3 = 10963 ck3 = 10965 ck3 = 9550 ck3 = 9551 ck3 = 9552 ck3 = 9557 } # Pyu South -> Nagwe, Sale, Myinkaba, Pagan, Popa, Nyaung U, Myingyan @@ -7283,7 +7504,7 @@ link = { autogenerated = yes imp = 8891 ck3 = 10891 ck3 = 11326 ck3 = 11327 ck3 = 12034 } # Shushi -> A Bang, Long Tou, Bei Zha, Wusabu link = { autogenerated = yes imp = 9189 ck3 = 10878 ck3 = 10879 ck3 = 10868 } # Long Bien -> Hiep Hoa, Phuong Nhan, Dinh Ca link = { autogenerated = yes imp = 9188 ck3 = 10867 } # Luy Lau -> Dai La - link = { autogenerated = yes imp = 9195 ck3 = 10866 ck3 = 9971 ck3 = 9974 ck3 = 10845 } # Cau Lau -> Thanh Ba, Thach That, Duong Lam, Da Bac + link = { autogenerated = yes imp = 9195 ck3 = 10866 ck3 = 9974 ck3 = 10845 ck3 = 9971 } # Cau Lau -> Thanh Ba, Duong Lam, Da Bac, Thach That link = { autogenerated = yes imp = 9199 ck3 = 10836 ck3 = 10853 ck3 = 10865 ck3 = 10887 ck3 = 9954 ck3 = 9962 ck3 = 9963 ck3 = 10794 ck3 = 10863 ck3 = 10871 ck3 = 9955 } # Xom Ren -> Thanh Huyen, Bao Ha, Xuan Dai, Ha Hoa, Cam Duong, Nghia Lo, Tu Le, Muong Chien, Phu Yen, Oua Hinh, Thanh Qui link = { autogenerated = yes imp = 8945 ck3 = 10833 ck3 = 10846 ck3 = 11350 } # Dumeng -> Baliping, Ma Lat, Yensanh link = { autogenerated = yes imp = 9194 ck3 = 10832 ck3 = 10838 ck3 = 9967 ck3 = 10825 ck3 = 9978 } # Chu Dien -> Kim Bang, Do Dong Giang, Phu Ly, Lac Son, Duong Xam @@ -7297,7 +7518,7 @@ link = { autogenerated = yes imp = 10986 ck3 = 10807 ck3 = 9984 } # Phonsavan -> Tuong Duong, Ky Son link = { autogenerated = yes imp = 8946 ck3 = 10805 ck3 = 10877 ck3 = 11348 ck3 = 9939 ck3 = 9943 } # Jinsang -> Ma Bach, Nam Si, Wenlan, Tu Long, Kayongbu link = { autogenerated = yes imp = 11000 ck3 = 10804 ck3 = 10284 ck3 = 10800 } # Song Hieu -> Thanh Chuong, Phu Quy, Huong Son - link = { autogenerated = yes imp = 12604 ck3 = 108 ck3 = 134 } # Cina -> RIGA, LENNEWARDEN + link = { autogenerated = yes imp = 12604 ck3 = 108 ck3 = 109 ck3 = 134 } # Cina -> RIGA, VENDEN, LENNEWARDEN link = { autogenerated = yes imp = 9206 ck3 = 10798 ck3 = 10801 ck3 = 10806 ck3 = 9979 ck3 = 9980 } # Ham Hoan -> Cam Xuyen, Ha Tinh, Dien Chau, Ke Vinh, Ngang link = { autogenerated = yes imp = 11070 ck3 = 10797 ck3 = 11547 ck3 = 9585 } # Mayo -> Gwa, Shwehle, Sandoway link = { autogenerated = yes imp = 8942 ck3 = 10795 ck3 = 12875 ck3 = 12890 ck3 = 13031 ck3 = 13033 ck3 = 13034 ck3 = 10851 ck3 = 10881 ck3 = 12949 ck3 = 13009 ck3 = 13030 } # Juding -> Baisheng, Temo_Xichou_Funing, Temo_Guangnan, 13031, 13033, 13034, Nazboh Yen, Meo Vac, Xilin_Tuoniangjiang, 13009, 13030 @@ -7309,11 +7530,11 @@ link = { autogenerated = yes imp = 11084 ck3 = 10755 ck3 = 10756 ck3 = 9664 ck3 = 9665 ck3 = 9666 } # Tabuk -> Tubigarao, Nasipin, Bayag, Gatara, Bolo link = { autogenerated = yes imp = 11088 ck3 = 10750 ck3 = 9677 ck3 = 9685 ck3 = 10737 } # Subic -> Botolan, Hubek, Bataan, Sambal Mountains link = { autogenerated = yes imp = 9210 ck3 = 10748 ck3 = 11102 ck3 = 9986 ck3 = 11103 } # Lo Dong -> Kandarpapura, Lurong, Amarendrapura, Uu Tut - link = { imp = 9211 ck3 = 10745 ck3 = 10747 ck3 = 11098 ck3 = 11101 ck3 = 10746 ck3 = 11097 ck3 = 11100 ck3 = 9991 } # Tuong Lam -> Indrapura, Simhapura, Haripura, Darong, Sambhubhadresvara, Khang, Prao, Yan Kaksmindra-Lokesvara - link = { autogenerated = yes imp = 11087 ck3 = 10738 ck3 = 9662 ck3 = 9672 ck3 = 9673 ck3 = 9674 ck3 = 9675 ck3 = 9676 } # Lingayen -> Binalatongan, Agoo, Kafagway, Lingayen, Umingan, Masinlok, Bolinao - link = { autogenerated = yes imp = 8915 ck3 = 10735 ck3 = 10672 } # Bisu -> Lang Kion, Miu Lang Kion + link = { autogenerated = yes imp = 9211 ck3 = 10745 ck3 = 10747 ck3 = 11101 ck3 = 10746 ck3 = 11097 ck3 = 11100 ck3 = 9991 } # Tuong Lam -> Indrapura, Simhapura, Darong, Sambhubhadresvara, Khang, Prao, Yan Kaksmindra-Lokesvara + link = { autogenerated = yes imp = 11087 ck3 = 10738 ck3 = 9662 ck3 = 9673 ck3 = 9674 ck3 = 9675 ck3 = 9676 } # Lingayen -> Binalatongan, Agoo, Lingayen, Umingan, Masinlok, Bolinao + link = { autogenerated = yes imp = 8915 ck3 = 10735 ck3 = 10672 ck3 = 9893 } # Bisu -> Lang Kion, Miu Lang Kion, Kion Dam link = { autogenerated = yes imp = 9823 ck3 = 10729 ck3 = 10775 ck3 = 10784 } # Central Chenla -> Mlu Prey, Phnom Yong, Chhaeb - link = { autogenerated = yes imp = 11091 ck3 = 10695 ck3 = 11151 ck3 = 9667 ck3 = 9682 ck3 = 9669 } # Palanan -> Dinapigui, Dupaningan, Cauayan, Kasiguran, Kasibu + link = { autogenerated = yes imp = 11091 ck3 = 10695 ck3 = 11151 ck3 = 9667 ck3 = 9669 ck3 = 9682 } # Palanan -> Dinapigui, Dupaningan, Cauayan, Kasibu, Kasiguran link = { autogenerated = yes imp = 11090 ck3 = 10693 ck3 = 10751 ck3 = 11149 ck3 = 9678 ck3 = 9680 ck3 = 9686 ck3 = 10694 } # Tarlac -> Karanglan, Pantabangan, Kandaba, Tarlak, Pinagpanaan, Pulilan, Tuy link = { autogenerated = yes imp = 11097 ck3 = 10692 ck3 = 9698 ck3 = 9699 } # Ragay -> Naga, Talolong, Daet link = { autogenerated = yes imp = 11096 ck3 = 10691 ck3 = 10768 ck3 = 9709 ck3 = 10769 } # Palawan -> Busuanga, Irawan, Taytay, Aborlan @@ -7327,7 +7548,8 @@ link = { autogenerated = yes imp = 8904 ck3 = 10674 ck3 = 9897 } # Gufu -> Ngwu Dam, Maso link = { autogenerated = yes imp = 8907 ck3 = 10673 ck3 = 10900 } # Sanfeng -> Huichuan, Py Ly link = { autogenerated = yes imp = 8918 ck3 = 10671 ck3 = 10675 } # Yunnan -> Bwot Lung, Yunnan - link = { autogenerated = yes imp = 8917 ck3 = 10669 ck3 = 10670 ck3 = 10684 ck3 = 11141 ck3 = 11142 ck3 = 11317 ck3 = 9900 ck3 = 10890 ck3 = 9898 } # Yeyu -> Da Li, Bi Ge, Da Li, Yon Zon Mi, 11142, Ji Zu, Er Guer, Moutong, Lo Ho + link = { autogenerated = yes imp = 8908 ck3 = 10670 ck3 = 11316 ck3 = 9901 } # Qingling -> Bi Ge, Shang Cheng, Ddi Yi + link = { autogenerated = yes imp = 8917 ck3 = 10669 ck3 = 10684 ck3 = 11141 ck3 = 11142 ck3 = 11317 ck3 = 9900 ck3 = 10890 ck3 = 9898 } # Yeyu -> Da Li, Da Li, Yon Zon Mi, 11142, Ji Zu, Er Guer, Moutong, Lo Ho link = { autogenerated = yes imp = 8944 ck3 = 10668 ck3 = 11340 ck3 = 11341 } # Tanfeng -> Vunsanh, Ni Jiao, Jia Yi link = { autogenerated = yes imp = 8943 ck3 = 10667 ck3 = 11342 } # Wanwen -> Vai Mo, Pu Zhei Hei link = { autogenerated = yes imp = 10999 ck3 = 10665 ck3 = 10809 ck3 = 9985 } # Muang Kam -> Anh Son, Ban Khang, Do Luong @@ -7335,14 +7557,14 @@ link = { autogenerated = yes imp = 10965 ck3 = 10656 ck3 = 10659 ck3 = 10844 ck3 = 11549 } # Srae Ambel -> Kampong Seila, Srae Ambel, Ream, Mountains link = { autogenerated = yes imp = 10964 ck3 = 10655 ck3 = 11455 } # Phu Quoc -> Banteay Meas, Phnom Chhngok link = { autogenerated = yes imp = 11012 ck3 = 10624 ck3 = 11106 ck3 = 11108 } # Dong Nai -> Krung, Cay Gao, Da Gui - link = { imp = 10972 ck3 = 10614 ck3 = 10781 ck3 = 10787 ck3 = 11447 ck3 = 11556 } # Sra Ngue -> Meanrith, Chhmar 2, Chhmar, Khao Lon, Mountains - link = { imp = 10968 ck3 = 10612 ck3 = 10630 ck3 = 11555 } # Stoeng Dountri -> Samlout, Veal Veaeng, Mountains - link = { imp = 7818 ck3 = 106 } # Careotaia Borealis -> DOBELE + link = { autogenerated = yes imp = 10972 ck3 = 10614 ck3 = 10781 ck3 = 10787 ck3 = 10789 ck3 = 11447 ck3 = 11556 } # Sra Ngue -> Meanrith, Chhmar 2, Chhmar, Ampil, Khao Lon, Mountains + link = { autogenerated = yes imp = 10968 ck3 = 10612 ck3 = 10663 ck3 = 10630 ck3 = 11555 } # Stoeng Dountri -> Samlout, Phumi Rovieng, Veal Veaeng, Mountains + link = { autogenerated = yes imp = 7818 ck3 = 106 } # Careotaia Borealis -> DOBELE link = { autogenerated = yes imp = 10294 ck3 = 105 ck3 = 107 } # Bauska -> BAUSKA, MITAU link = { autogenerated = yes imp = 11031 ck3 = 10438 ck3 = 10439 } # Klang -> Kuala Langat, Klang link = { autogenerated = yes imp = 9810 ck3 = 10420 ck3 = 10632 ck3 = 11156 } # Pathama -> Mae Klong, Nakhon Chai Si, Kampaeng Saen link = { autogenerated = yes imp = 11054 ck3 = 10401 } # Naggadipa -> Nicobar Islands - link = { autogenerated = yes imp = 7817 ck3 = 104 ck3 = 112 } # Carbonia -> JURMALA, KANDAVA + link = { autogenerated = yes imp = 7817 ck3 = 104 } # Carbonia -> JURMALA link = { autogenerated = yes imp = 11055 ck3 = 10397 ck3 = 10398 ck3 = 10399 ck3 = 10400 } # Andaman -> Little Andaman, South Andaman, North Andaman, Middle Andaman link = { autogenerated = yes imp = 11043 ck3 = 10348 ck3 = 10355 ck3 = 10718 ck3 = 10719 ck3 = 10360 } # Mentawai -> Batu Islands, Siberut, North Mentawai, Siberut 2, Mentawai Islands link = { autogenerated = yes imp = 11060 ck3 = 10346 ck3 = 10712 ck3 = 10726 ck3 = 10940 ck3 = 10946 } # Batang Hari -> West Pelalawan, Indragiri 2, Pelalawan 2, Teluk Kuali, Lubuk Besar @@ -7350,7 +7572,7 @@ link = { autogenerated = yes imp = 11061 ck3 = 10342 ck3 = 10351 ck3 = 10359 ck3 = 11465 ck3 = 11467 ck3 = 10357 ck3 = 10358 } # Singkarak -> Kuansing, Limapuluh Kota, Sawahlunto, Agam 2, Singkarak, Solok, Dharmasraya link = { autogenerated = yes imp = 11040 ck3 = 10337 ck3 = 10713 ck3 = 10727 } # Riau -> Bengkalis, Siak 3, Siak 4 link = { autogenerated = yes imp = 11041 ck3 = 10336 ck3 = 10338 ck3 = 10339 ck3 = 10720 ck3 = 10728 ck3 = 11466 ck3 = 11625 } # Muara Takus -> Rokan Hulu, Kampar, East Kampar, Kampar 2, Kampar 3, Limapuluh Kota 2, Mountains - link = { autogenerated = yes imp = 11056 ck3 = 10335 ck3 = 10340 ck3 = 10341 ck3 = 10347 ck3 = 10404 ck3 = 10714 } # Siak -> Dumai, Siak, Meranti Islands, East Pelalawan, Karimun, Siak 2 + link = { autogenerated = yes imp = 11056 ck3 = 10335 ck3 = 10340 ck3 = 10341 ck3 = 10347 ck3 = 10404 ck3 = 10714 } # Siak -> Rupat, Siak, Meranti Islands, East Pelalawan, Karimun, Siak 2 link = { autogenerated = yes imp = 11042 ck3 = 10329 ck3 = 10349 ck3 = 10350 ck3 = 10352 ck3 = 10353 ck3 = 10330 ck3 = 11626 } # Pariaman -> Mandailing, Pasaman Barat, Pasaman, Agam, Padang Pariaman, Panyabungan, Mountains link = { autogenerated = yes imp = 11052 ck3 = 10327 ck3 = 10331 ck3 = 10332 ck3 = 10709 ck3 = 10710 } # Bahal -> South Labuhan Batu, Padang Lawas, North Padang Lawas, Dumai 4, Dumai 3 link = { autogenerated = yes imp = 11045 ck3 = 10321 ck3 = 10326 ck3 = 10334 ck3 = 10708 ck3 = 11252 } # Panai -> Asahan, Labuhan Batu, Rokan Hilir, Dumai 2, Panai @@ -7364,8 +7586,8 @@ link = { autogenerated = yes imp = 11048 ck3 = 10303 ck3 = 10304 ck3 = 10305 ck3 = 11471 ck3 = 11472 } # Lamuri -> Aceh Besar, Sampoiniet, Pedir, Lhoknga, Kutaraja link = { autogenerated = yes imp = 12603 ck3 = 103 ck3 = 135 ck3 = 139 } # Keerdak -> KOKENOIS, JEKABPILS, CESVAINE link = { autogenerated = yes imp = 10970 ck3 = 10291 ck3 = 10662 ck3 = 11461 } # Phnom Sruoch -> Phnom Sruoch, Phnom Aoral, Chum Kiri - link = { imp = 8926 ck3 = 10285 ck3 = 10837 ck3 = 10847 ck3 = 10857 ck3 = 10861 ck3 = 9951 ck3 = 10870 ck3 = 9944 ck3 = 9950 ck3 = 9952 } # Laiwei -> Muang Chan, Lai, Muang Te, Chieu Tan, Phu Phang, Na Tiat, Muang Moui, Honghe, Muong Lay, Muang Fang - link = { autogenerated = yes imp = 9179 ck3 = 10283 ck3 = 10864 ck3 = 12668 ck3 = 9968 ck3 = 10856 ck3 = 10880 ck3 = 10882 ck3 = 12729 } # Yongji -> Dong Khe, Tang, Simingzhou_Shixizhou, That Nguyen, Vu Lac, Kim Pha, Thong Nong, Jinlongzhou_Guangyuanzhou + link = { autogenerated = yes imp = 8926 ck3 = 10285 ck3 = 10837 ck3 = 10841 ck3 = 10847 ck3 = 10857 ck3 = 10861 ck3 = 9951 ck3 = 10870 ck3 = 9944 ck3 = 9950 ck3 = 9952 } # Laiwei -> Muang Chan, Lai, Khiem, Muang Te, Chieu Tan, Phu Phang, Na Tiat, Muang Moui, Honghe, Muong Lay, Muang Fang + link = { autogenerated = yes imp = 9179 ck3 = 10283 ck3 = 10864 ck3 = 12668 ck3 = 9968 ck3 = 10856 ck3 = 10875 ck3 = 10880 ck3 = 10882 ck3 = 12729 } # Yongji -> Dong Khe, Tang, Simingzhou_Shixizhou, That Nguyen, Vu Lac, Tu Lang, Kim Pha, Thong Nong, Jinlongzhou_Guangyuanzhou link = { autogenerated = yes imp = 9417 ck3 = 10282 ck3 = 10814 ck3 = 10826 ck3 = 10830 ck3 = 10835 ck3 = 10840 ck3 = 10848 ck3 = 10850 ck3 = 10859 ck3 = 10862 ck3 = 10884 ck3 = 10886 ck3 = 9961 ck3 = 10854 } # Pushui -> Thien Bao, Doan Hung, Tuyen Quang, Phong Chau, Son Duong, Van Yen, Do Kim, Luc An, Yen Binh, Vi Xuyen, Tam Duong, Thuy Vi, Trieu Le, Vi Long link = { autogenerated = yes imp = 10840 ck3 = 10278 } # Anaro -> Babuyan link = { autogenerated = yes imp = 11083 ck3 = 10753 ck3 = 10754 } # Nagsabaran -> Malolokit, Aparri @@ -7373,17 +7595,17 @@ link = { autogenerated = yes imp = 11034 ck3 = 10262 ck3 = 10267 ck3 = 10435 } # Lipis -> Raub, Gua Musang, Lipis link = { autogenerated = yes imp = 11032 ck3 = 10261 ck3 = 10266 ck3 = 10269 ck3 = 11291 ck3 = 11662 ck3 = 10264 } # Terengganu -> Kuala Dungun, Kuala Terengganu, Paya Besar, Kemaman, Besut, Terengganu link = { autogenerated = yes imp = 11033 ck3 = 10260 ck3 = 10437 } # Pahang -> Pekan, Rompin - link = { autogenerated = yes imp = 11036 ck3 = 10256 ck3 = 10257 ck3 = 10259 ck3 = 10403 ck3 = 10405 ck3 = 10436 } # Kota Gelanggi -> Johor, Singapur, Mersing, Bintan, Batam, Kota Tinggi + link = { autogenerated = yes imp = 11036 ck3 = 10256 ck3 = 10257 ck3 = 10259 ck3 = 10403 ck3 = 10405 ck3 = 10436 ck3 = 15594 } # Kota Gelanggi -> Johor, Batu Berlayer, Mersing, Bintan, Batam, Kota Tinggi, Pancur link = { autogenerated = yes imp = 11038 ck3 = 10254 ck3 = 10258 } # Kluang -> Kuala Pilah, Segamat link = { autogenerated = yes imp = 11037 ck3 = 10253 ck3 = 10255 } # Muar -> Melaka, Batu Palat link = { autogenerated = yes imp = 11030 ck3 = 10251 ck3 = 10252 ck3 = 10250 } # Beruas -> Manjung, Kuala Selangor, Kuala Kangsar link = { autogenerated = yes imp = 11027 ck3 = 10249 ck3 = 11659 ck3 = 11664 } # Sungai Batu -> Penang, Kerian, Merbau link = { autogenerated = yes imp = 9824 ck3 = 10239 } # Chenla East -> Thala Borivat - link = { imp = 11004 ck3 = 10237 ck3 = 10277 ck3 = 10609 ck3 = 10788 ck3 = 10789 ck3 = 10790 } # Dambok -> Kbal Spean, Trapeang, Khna, Varin, Ampil, Samraong - link = { autogenerated = yes imp = 11014 ck3 = 10233 ck3 = 10234 ck3 = 10615 ck3 = 10777 ck3 = 10276 } # Song Sesan -> Ban Lung, Koun Mom, Kaoh Nheaek, Dei Ey, Ploi Me + link = { autogenerated = yes imp = 11004 ck3 = 10237 ck3 = 10277 ck3 = 10609 ck3 = 10788 ck3 = 10790 } # Dambok -> Kbal Spean, Trapeang, Khna, Varin, Samraong + link = { autogenerated = yes imp = 11014 ck3 = 10233 ck3 = 10234 ck3 = 10615 ck3 = 10777 ck3 = 10235 ck3 = 10276 } # Song Sesan -> Ban Lung, Koun Mom, Kaoh Nheaek, Dei Ey, Ta Veang, Ploi Me link = { autogenerated = yes imp = 9828 ck3 = 10231 ck3 = 10243 ck3 = 10294 ck3 = 10621 ck3 = 11454 } # Vyadhapura -> Prasat S'ang, Tbong Khmum, Ou Reang Ov, Kiri Vong, Preah Theat Baray - link = { imp = 11005 ck3 = 10228 ck3 = 10229 ck3 = 10230 ck3 = 10236 ck3 = 10626 ck3 = 10779 ck3 = 11453 ck3 = 11458 ck3 = 11636 } # Stoeng Sen -> Kaoh Ker, Neak Buos, Preah Khan, Beng Mealea, Preah Vihear, Khvav, Choam Ksant, Tbaeng Meanchey, Mountains - link = { imp = 9827 ck3 = 10226 ck3 = 10232 ck3 = 11452 ck3 = 11462 ck3 = 10663 } # Tonle Sap South -> Phnom Kravanh, Pursat, Tuek Phos, Kampong Chhnang, Phumi Rovieng + link = { autogenerated = yes imp = 11005 ck3 = 10228 ck3 = 10229 ck3 = 10230 ck3 = 10236 ck3 = 10626 ck3 = 10779 ck3 = 11453 ck3 = 11458 } # Stoeng Sen -> Kaoh Ker, Neak Buos, Preah Khan, Beng Mealea, Preah Vihear, Khvav, Choam Ksant, Tbaeng Meanchey + link = { autogenerated = yes imp = 9827 ck3 = 10226 ck3 = 10232 ck3 = 11452 ck3 = 11462 } # Tonle Sap South -> Phnom Kravanh, Pursat, Tuek Phos, Kampong Chhnang link = { autogenerated = yes imp = 9821 ck3 = 10225 ck3 = 10293 ck3 = 10610 ck3 = 10611 ck3 = 10771 } # Angkor -> Srei, Bakheng, Phnom Krom, Chaw Srei Vibol, Bakong link = { autogenerated = yes imp = 11015 ck3 = 10223 ck3 = 10224 ck3 = 11087 ck3 = 9995 ck3 = 9998 ck3 = 9999 } # Dei-ey -> Senmonorom, Mondul Kiri, Yang Prong, Krong Buk, Si To, Gar link = { autogenerated = yes imp = 11010 ck3 = 10222 ck3 = 10625 ck3 = 11459 } # Rumpuk -> Chhloung, Memot, Kracheh @@ -7407,28 +7629,28 @@ link = { autogenerated = yes imp = 9812 ck3 = 10184 ck3 = 10185 ck3 = 11163 ck3 = 11565 } # Lavo -> Wiset Chai Chan, Lavapura, Bang Pahan, Singhapura link = { autogenerated = yes imp = 9811 ck3 = 10180 ck3 = 10181 ck3 = 10182 ck3 = 10183 ck3 = 11152 ck3 = 11557 ck3 = 11563 } # Suvarnabhumi Bay -> Thonburi, Phra Pradaeng, Ban Talat Khwan, Ayutthaya, Samut Prakan, Sakhonburi, Ban Pan link = { autogenerated = yes imp = 10978 ck3 = 10176 ck3 = 10178 ck3 = 10634 ck3 = 10635 } # Sing Buri -> Ka Rung, Nang Buat, Dan Chang, Chainatburi - link = { imp = 10977 ck3 = 10173 ck3 = 10287 ck3 = 10288 ck3 = 11253 } # Chansen -> Chum Saeng, Samrong Chai, Tak Pha, Phayuha Khiri + link = { autogenerated = yes imp = 10977 ck3 = 10173 ck3 = 10287 ck3 = 10288 ck3 = 11253 } # Chansen -> Chum Saeng, Samrong Chai, Tak Pha, Phayuha Khiri link = { autogenerated = yes imp = 10979 ck3 = 10171 ck3 = 10172 ck3 = 10174 ck3 = 11566 ck3 = 11567 ck3 = 11568 ck3 = 11569 } # Om Pang -> Khlong Lan, Phra Bang, U Thai, Pradu Yuen, Huai Nam Hom, Khanu, Kosamphi link = { autogenerated = yes imp = 10976 ck3 = 10168 ck3 = 11292 ck3 = 11294 ck3 = 11295 } # Kok Charoen -> Si Thep, Wang Chomphu, Nong Phai, Tha Rong link = { autogenerated = yes imp = 10995 ck3 = 10166 ck3 = 10167 ck3 = 11288 ck3 = 11290 } # Pa Sak -> Phetchabun, Lom Sak, Lom Kao, Khao Kho link = { autogenerated = yes imp = 10987 ck3 = 10162 ck3 = 10163 ck3 = 10165 ck3 = 11442 ck3 = 11444 ck3 = 11550 } # Huai Yang -> Chaiyaphum, Nong Bua Daeng, Dan Chuan, Nong Kong Kaeo, Ka Long, Mountains link = { autogenerated = yes imp = 10973 ck3 = 10159 ck3 = 10640 ck3 = 11750 ck3 = 11751 } # Sab Champa -> Nong Sarai, Chan Thuek, Mountains, Mountains link = { autogenerated = yes imp = 10982 ck3 = 10158 ck3 = 10641 ck3 = 11439 } # Ban Lum Khao -> Vimayapura, Phuttaisong, Prathai - link = { autogenerated = yes imp = 10989 ck3 = 10157 ck3 = 10160 ck3 = 10639 ck3 = 11437 ck3 = 11438 ck3 = 11749 ck3 = 11548 ck3 = 11553 } # Ratchasima -> Khorakhapura, San Thia, Dan Chapo, Tha Chang, Sema, Pho Chumphon, Mountains, Mountains + link = { autogenerated = yes imp = 10989 ck3 = 10157 ck3 = 10160 ck3 = 10161 ck3 = 10639 ck3 = 11437 ck3 = 11438 ck3 = 11749 ck3 = 11548 ck3 = 11553 } # Ratchasima -> Khorakhapura, San Thia, Khon Buri, Dan Chapo, Tha Chang, Sema, Pho Chumphon, Mountains, Mountains link = { autogenerated = yes imp = 11007 ck3 = 10152 ck3 = 10731 ck3 = 11428 ck3 = 11430 } # Kalasin -> Roi Et, Khao Din Bueng Don, Kuchinarai, Loeng Nok Tha link = { autogenerated = yes imp = 10991 ck3 = 10151 ck3 = 10648 ck3 = 11433 ck3 = 11434 ck3 = 11440 ck3 = 11638 ck3 = 11640 } # Saneng -> Tha Tum, Suang, Khukhan, Sikhoraphum, Nong Waeng, Mountains, Mountains - link = { autogenerated = yes imp = 10990 ck3 = 10150 ck3 = 10155 ck3 = 10156 ck3 = 10161 ck3 = 10649 ck3 = 11435 } # Buri Ram -> Surin, Buriram, Phanom Rung, Khon Buri, Nang Rong, Talung - link = { imp = 11006 ck3 = 10147 ck3 = 10149 ck3 = 11432 } # Si Sa Ket -> Det Udom, Khantaralak, Chanla Na Dom + link = { autogenerated = yes imp = 10990 ck3 = 10150 ck3 = 10155 ck3 = 10156 ck3 = 10649 ck3 = 11435 } # Buri Ram -> Surin, Buriram, Phanom Rung, Nang Rong, Talung + link = { autogenerated = yes imp = 11006 ck3 = 10147 ck3 = 10149 ck3 = 11432 ck3 = 11636 } # Si Sa Ket -> Det Udom, Khantaralak, Chanla Na Dom, Mountains link = { autogenerated = yes imp = 11008 ck3 = 10145 ck3 = 10146 ck3 = 10148 ck3 = 11431 ck3 = 10144 } # Se Bai -> Singh Tha, Buphupala Nikhom, Sisaket, Phibun Mangsahan, Chanuman - link = { imp = 10980 ck3 = 10138 ck3 = 10169 ck3 = 11285 ck3 = 11287 ck3 = 11293 ck3 = 11286 } # Phichit -> Phitsanulok, Tha Lo, Matum, Phum, Chon Daen, Pa Mak + link = { autogenerated = yes imp = 10980 ck3 = 10138 ck3 = 10169 ck3 = 11285 ck3 = 11287 ck3 = 11293 ck3 = 11286 } # Phichit -> Phitsanulok, Tha Lo, Matum, Phum, Chon Daen, Pa Mak link = { autogenerated = yes imp = 10988 ck3 = 10134 ck3 = 10135 ck3 = 10154 ck3 = 11441 ck3 = 11443 } # Kaeng Lawa -> Phra Lap, Phra Yuen, Patchim Sarakham, Wapi Pathum, Kanthan link = { autogenerated = yes imp = 10993 ck3 = 10133 ck3 = 10164 ck3 = 11301 ck3 = 11446 } # Non Nok That -> Nong Bua Lamphu, Khaset Sombun, Na Klang, Chum Phae link = { autogenerated = yes imp = 10983 ck3 = 10132 ck3 = 10153 ck3 = 11302 ck3 = 11427 ck3 = 11445 ck3 = 11425 } # Lam Pao -> Kumphawapi, Fa Daet, Nong Han, Sahatsakhan, Tha Wa, Kut Bak link = { autogenerated = yes imp = 10992 ck3 = 10130 ck3 = 10131 ck3 = 11299 ck3 = 11303 } # Phaniang -> Phon Phaeng, Udon Thani, Tha Bo, Phen link = { autogenerated = yes imp = 10984 ck3 = 10129 ck3 = 10140 ck3 = 10142 ck3 = 11419 ck3 = 11420 ck3 = 11421 ck3 = 11422 ck3 = 11423 ck3 = 11424 ck3 = 10141 ck3 = 10143 ck3 = 11426 } # Ban Chiang -> Chai Buri, Nakhon Phanom, Phang Phrao, Phon Charoen, Kut Ling, Song Dao Chon, Chai Rit Uttaburi, Kusuman, Marukkha Nakorn, Nong Han Luang, Mukdahan, Wan Yai - link = { imp = 10981 ck3 = 10127 ck3 = 10170 ck3 = 11255 ck3 = 11282 ck3 = 11561 } # Phi -> Sukhothai, Chakangrao, Wang Prachop, Lan Khoi, Phran Kratai + link = { autogenerated = yes imp = 10981 ck3 = 10127 ck3 = 10170 ck3 = 11255 ck3 = 11282 ck3 = 11561 ck3 = 10086 } # Phi -> Sukhothai, Chakangrao, Wang Prachop, Lan Khoi, Phran Kratai, Sam Ngao link = { autogenerated = yes imp = 11101 ck3 = 10125 ck3 = 10126 ck3 = 10128 ck3 = 11264 ck3 = 11277 } # Nann -> Phrae, Long, Si Satchanalai, Ngao, Song - link = { imp = 11100 ck3 = 10123 ck3 = 11281 ck3 = 11283 ck3 = 10124 } # Sirikit -> Uttaradit, Phichai, Sawankhalok, Saen To + link = { autogenerated = yes imp = 11100 ck3 = 10123 ck3 = 11281 ck3 = 11283 ck3 = 10124 ck3 = 10198 } # Sirikit -> Uttaradit, Phichai, Sawankhalok, Saen To, Thoen link = { autogenerated = yes imp = 11106 ck3 = 10121 ck3 = 10122 ck3 = 11279 ck3 = 11280 ck3 = 10038 ck3 = 11278 } # Phrae -> Nan, Mae Charim, Bo Kluea, Si Sa Ket, Khop, Lae link = { autogenerated = yes imp = 11028 ck3 = 10118 ck3 = 11122 ck3 = 10119 } # Pattani -> Pattani, Tiba, Yala link = { autogenerated = yes imp = 11029 ck3 = 10117 ck3 = 10265 } # Kelantan -> Narathiwat, Kelantan @@ -7440,7 +7662,7 @@ link = { autogenerated = yes imp = 11021 ck3 = 10106 } # Talat Yai -> Takola link = { autogenerated = yes imp = 11022 ck3 = 10105 ck3 = 10111 ck3 = 11134 ck3 = 11135 } # Ta Pi -> Wiang Sa, Thung Yai, Ban Na, Tha Kham link = { autogenerated = yes imp = 11019 ck3 = 10102 ck3 = 10103 ck3 = 11596 ck3 = 10104 } # Tha Chana -> Sa Ulao, Chaiya, Khao Phra Narai, Khiri Rat Nikhom - link = { autogenerated = yes imp = 12605 ck3 = 101 ck3 = 109 } # Saicen -> LEMISELE, VENDEN + link = { autogenerated = yes imp = 12605 ck3 = 101 } # Saicen -> LEMISELE link = { autogenerated = yes imp = 11017 ck3 = 10099 ck3 = 10100 ck3 = 11757 ck3 = 9830 ck3 = 11642 } # Phu Khao Thong -> Kra Buri, Ranong, Lanbi, Kawthaung, Mountains link = { autogenerated = yes imp = 11016 ck3 = 10098 ck3 = 10101 ck3 = 11137 } # Khao Sam Kaeo -> Uthomporn, Tako, Tha Sae link = { autogenerated = yes imp = 9809 ck3 = 10097 ck3 = 11139 } # Baitou -> Pribpri, Pranburi @@ -7452,13 +7674,13 @@ link = { autogenerated = yes imp = 11105 ck3 = 10080 ck3 = 10081 ck3 = 11259 ck3 = 11260 ck3 = 11265 ck3 = 11267 ck3 = 11268 ck3 = 11269 ck3 = 10075 ck3 = 10077 ck3 = 10196 ck3 = 11258 ck3 = 11262 } # Lamphun -> Phrao, Haripunjaya, Pak Bong, Tha Sop Sao, Wiang Tha Kan, Mae On, Chiang Mai, Doi Saket, Chiang Dao, Omkoi, Samoeng, Hang Dong, Chom Thong link = { autogenerated = yes imp = 11107 ck3 = 10078 ck3 = 11272 ck3 = 9860 } # Huamereng -> Fang, Chiang Saen, Mong Hsat link = { autogenerated = yes imp = 11102 ck3 = 10072 ck3 = 10073 ck3 = 10074 ck3 = 10120 ck3 = 11273 ck3 = 11275 ck3 = 11276 ck3 = 11354 } # Chiang Rai -> Chiang Rai, Phan, Chiang Khong, Phayao, Wiang Kaen, Wiang Lo, Pong, Huai Sai - link = { autogenerated = yes imp = 11002 ck3 = 10068 ck3 = 10240 ck3 = 10647 ck3 = 10785 ck3 = 10067 ck3 = 10069 ck3 = 10235 } # Xe Champhone -> Don Khong, Sandepheap, Huei Thamo, Preak Meas, Pakse, Sanamsai, Ta Veang + link = { autogenerated = yes imp = 11002 ck3 = 10068 ck3 = 10240 ck3 = 10647 ck3 = 10785 ck3 = 10067 ck3 = 10069 } # Xe Champhone -> Don Khong, Sandepheap, Huei Thamo, Preak Meas, Pakse, Sanamsai link = { autogenerated = yes imp = 11009 ck3 = 10057 ck3 = 10062 ck3 = 10280 ck3 = 11385 ck3 = 11386 ck3 = 11387 ck3 = 10058 ck3 = 11388 ck3 = 11389 } # Nong Han -> Savannakhet, Thapangthong, Sangkhone, Soum, Phonsim, Outhomphone, Assaphone, Sonburi, Khong Sedon link = { autogenerated = yes imp = 10998 ck3 = 10054 ck3 = 10055 ck3 = 11375 ck3 = 11404 ck3 = 10056 ck3 = 11382 ck3 = 11383 ck3 = 10761 } # Bueng Kan -> Tha Khek, Hineboun, Pakkading, Koun Kham, Nakai, Yommalath, Mahasay, ANNAM MOUNTAINS link = { autogenerated = yes imp = 10994 ck3 = 10052 ck3 = 10136 ck3 = 11297 ck3 = 11298 ck3 = 11300 ck3 = 10039 ck3 = 10137 ck3 = 11289 ck3 = 11367 } # Petchabun -> Xanakharm, Loei, Wang Saphung, Na Sao, Phue, Ken Thao, Dan Sai, Nam Nao, Phiang link = { autogenerated = yes imp = 10985 ck3 = 10051 ck3 = 10053 ck3 = 10071 ck3 = 11366 ck3 = 11368 ck3 = 11369 ck3 = 11370 ck3 = 11371 ck3 = 11372 ck3 = 10047 ck3 = 11364 } # Phu Lon -> Chantabuli, Xaisomboun, Kasy, Vang Vieng, Feuang, Phon Hong, Meun, Thoulakhom, Sai Thani, Phou Kout, Phou Khoun link = { autogenerated = yes imp = 10996 ck3 = 10049 ck3 = 11373 ck3 = 11365 } # Nam Ngum -> Pakxan, Borikhane, Phuan - link = { autogenerated = yes imp = 11103 ck3 = 10033 ck3 = 11403 ck3 = 9861 ck3 = 9862 ck3 = 11352 ck3 = 11353 } # Muang Sing -> Muang Sing, Mong Yawng, Tha Khilek, Mong Hpayak, Ton Pheung, Long + link = { autogenerated = yes imp = 11103 ck3 = 10033 ck3 = 11353 ck3 = 11403 ck3 = 9861 ck3 = 9862 ck3 = 11352 } # Muang Sing -> Muang Sing, Long, Mong Yawng, Tha Khilek, Mong Hpayak, Ton Pheung link = { autogenerated = yes imp = 9414 ck3 = 10031 ck3 = 10873 ck3 = 10894 ck3 = 11608 ck3 = 9907 ck3 = 9914 ck3 = 10030 ck3 = 10035 ck3 = 10666 ck3 = 9941 } # Liao -> Yot Ou, Tung Lang, Mengla, Meng Waen, Tai Dam, Linan, Khoua, Takka Sila, Phongsali, Nanzhao Mountains link = { autogenerated = yes imp = 9196 ck3 = 10029 ck3 = 10872 ck3 = 10829 } # Me Linh -> Thai Nguyen, Yen Lac, Bac Kan link = { autogenerated = yes imp = 10963 ck3 = 10025 ck3 = 9990 } # Oc Eo -> Kien Giang, Kottinagara @@ -7472,7 +7694,7 @@ link = { autogenerated = yes imp = 9833 ck3 = 10010 ck3 = 10018 ck3 = 11105 } # Baigaur -> Uu Kan, Vung Gou, Baigaur link = { autogenerated = yes imp = 9429 ck3 = 10008 ck3 = 11090 } # Kim Son -> Aia Ru, Koh Meng link = { autogenerated = yes imp = 9428 ck3 = 10007 ck3 = 10739 ck3 = 10741 ck3 = 10742 ck3 = 11095 ck3 = 11096 ck3 = 10740 ck3 = 11091 } # Tuong Pho -> Yang M'Tian, Harek Kah, Vijaya, Sa Huyen, Vidyanapura, Mahaparvata, Ceng Ko, Turong - link = { autogenerated = yes imp = 11085 ck3 = 10006 ck3 = 10752 ck3 = 10757 ck3 = 9670 ck3 = 9671 ck3 = 10758 ck3 = 9668 } # Banaue -> Karig, Gamu, Tabuk, Kalinga, Lagawe, Bugyas, Bayombong + link = { autogenerated = yes imp = 11085 ck3 = 10006 ck3 = 10752 ck3 = 10757 ck3 = 10758 ck3 = 9670 ck3 = 9671 ck3 = 9668 ck3 = 9672 } # Banaue -> Karig, Gamu, Tabuk, Bugyas, Kalinga, Lagawe, Bayombong, Kafagway link = { autogenerated = yes imp = 9836 ck3 = 10005 ck3 = 10014 ck3 = 10295 ck3 = 10623 } # Giong Ca Vo -> Malithit, Kraong, Ham Tan, Ba Ria link = { autogenerated = yes imp = 9834 ck3 = 10003 ck3 = 10019 } # Mekong North -> Trah Pung, Phsar Dek link = { autogenerated = yes imp = 9430 ck3 = 10002 ck3 = 10732 ck3 = 11114 ck3 = 10643 } # Giao Giang -> Po Nagar, Irahani, Aia Trang, Madahura diff --git a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_roa.txt b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_roa.txt index 6444dc4c6..e3ee6b6ab 100644 --- a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_roa.txt +++ b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_roa.txt @@ -331,19 +331,19 @@ game_start_date >= 1178.10.1 } character:231000 = { - save_scope_as = leader + save_scope_as = leader_1 } character:223523 = { - save_scope_as = founder + save_scope_as = founder_1 } title:b_hebron = { - save_scope_as = barony + save_scope_as = barony_1 } create_holy_order_neutral_effect = { - LEADER = scope:leader - CAPITAL = scope:barony + LEADER = scope:leader_1 + CAPITAL = scope:barony_1 NEW_HO_SCOPE = new_holy_order - FOUNDER = scope:founder + FOUNDER = scope:founder_1 } } } @@ -407,6 +407,13 @@ character:1700 = { add_legitimacy = major_legitimacy_gain } + + ## ROA ## + # I don't know why his legitimacy starts so low but anyway + character:cham012 = { + add_legitimacy = monumental_legitimacy_gain + } + ## END ROA ## } } { @@ -476,13 +483,15 @@ ## 867. if = { limit = { game_start_date = 867.1.1 } - character:japan056 = { designate_diarch = character:fujiwara0002 } + character:japan056 = { + designate_diarch = character:fujiwara0002 + try_start_diarchy = japanese_regency + } remove_generated_diarch_consequences_effect = { NEW_DIARCH = character:fujiwara0002 LIEGE = character:japan056 } character:japan056 = { - start_diarchy = japanese_regency set_diarchy_swing = 60 } } @@ -490,40 +499,44 @@ ## 936 if = { limit = { game_start_date = 936.1.1 } - character:japan061 = { designate_diarch = character:fujiwara00303 } + character:japan061 = { + designate_diarch = character:fujiwara00303 + try_start_diarchy = japanese_regency + } remove_generated_diarch_consequences_effect = { - NEW_DIARCH = character:fujiwara00303 # Fujiwara no Tadahira + NEW_DIARCH = character:fujiwara00303 LIEGE = character:japan061 } character:japan061 = { - start_diarchy = japanese_regency set_diarchy_swing = 80 # shrug emoji } - } - if = { - limit = { game_start_date = 936.1.1 } - character:yangpu_wu = { designate_diarch = character:xuzhigao_wu } + + character:yangpu_wu = { + designate_diarch = character:xuzhigao_wu + try_start_diarchy = regency + } remove_generated_diarch_consequences_effect = { NEW_DIARCH = character:xuzhigao_wu # Xu Zhigao AKA Li Bian LIEGE = character:yangpu_wu } character:yangpu_wu = { - start_diarchy = regency set_diarchy_swing = 100 } } ## 1066. if = { limit = { game_start_date = 1066.9.15 } - # Designate some regents. - character:japan070 = { designate_diarch = character:fujiwara003030203030103 } + # Designate some regents. + character:japan070 = { + designate_diarch = character:fujiwara003030203030103 + try_start_diarchy = japanese_regency + } remove_generated_diarch_consequences_effect = { NEW_DIARCH = character:fujiwara003030203030103 # Fujiwara no Yorimichi LIEGE = character:japan070 } character:japan070 = { - start_diarchy = japanese_regency set_diarchy_swing = 100 } @@ -568,7 +581,7 @@ character:3040 = { designate_diarch = character:3050 # This is a vizierate as well, so start the diarchy manually. - start_diarchy = vizierate + try_start_diarchy = vizierate # Tell Alp that he appointed Hassan so he remembers not to dismiss him. set_variable = { name = my_vizier @@ -579,7 +592,7 @@ character:1732 = { if = { limit = { has_ep3_dlc_trigger = yes } - start_diarchy = co_emperorship + try_start_diarchy = co_emperorship set_diarch = character:1736 set_designated_heir = character:1736 } @@ -636,24 +649,28 @@ # Set up some diarchs. # Fujiwara Regent - character:japan080 = { designate_diarch = character:fujiwara008 } + character:japan080 = { + designate_diarch = character:fujiwara008 + try_start_diarchy = japanese_regency + } remove_generated_diarch_consequences_effect = { NEW_DIARCH = character:fujiwara008 # Fujiwara no Motofusa LIEGE = character:japan080 } character:japan080 = { - start_diarchy = japanese_regency set_diarchy_swing = 100 } # Goryeo military dictatorship - character:goryeo019 = { designate_diarch = character:goryeo101 } + character:goryeo019 = { + designate_diarch = character:goryeo101 + try_start_diarchy = regency + } remove_generated_diarch_consequences_effect = { NEW_DIARCH = character:goryeo101 # Jeong Jung-bu LIEGE = character:goryeo019 } character:goryeo019 = { - start_diarchy = regency set_diarchy_swing = 100 } @@ -665,7 +682,7 @@ character:215530 = { if = { limit = { has_ep3_dlc_trigger = yes } - start_diarchy = junior_emperorship + try_start_diarchy = junior_emperorship set_diarch = character:215531 set_designated_heir = character:215531 } @@ -673,14 +690,19 @@ ## Henry II of England and the Young King character:204500 = { designate_diarch = character:204508 - start_diarchy = co_monarchy + try_start_diarchy = co_monarchy set_designated_heir = character:204508 } ## Teresa of Portugal for Afonso the Conqueror character:209503 = { - start_diarchy = regency + try_start_diarchy = regency set_diarch = character:209510 } + ## Kara Khitai, Wolila for Zhilugu + character:188912 = { + try_start_diarchy = nomad_regency + set_diarch = character:188909 + } # Plus remove all the generated opinions. ## Richard I and Eleanor of Aquitaine remove_generated_diarch_consequences_effect = { @@ -707,6 +729,12 @@ NEW_DIARCH = character:209510 LIEGE = character:209503 } + ## Wolila and Zhilugu + remove_generated_diarch_consequences_effect = { + NEW_DIARCH = character:188909 + LIEGE = character:188912 + } + } } { @@ -880,6 +908,32 @@ VALUE = yes } } + if = { # Temüjin + limit = { + has_mpo_dlc_trigger = yes + exists = character:125501 + this = character:125501 + } + add_achievement_global_variable_effect = { + VARIABLE = started_the_stallion_that_mounts_the_world_achievement + VALUE = yes + } + } + if = { + limit = { + government_has_flag = government_is_nomadic + save_temporary_scope_as = nomad_ruler + situation:the_great_steppe ?= { + situation_sub_region:steppe_east = { + situation_sub_region_has_county = scope:nomad_ruler.capital_county + } + } + } + add_achievement_global_variable_effect = { + VARIABLE = started_steppe_by_steppe_achievement + VALUE = yes + } + } if = { limit = { OR = { @@ -1339,6 +1393,22 @@ VALUE = yes } } + if = { + limit = { + has_mpo_dlc_trigger = yes + exists = character:125501 + character:125501 = { + is_alive = yes + } + } + character:125501 = { + create_story = story_temujin_flavor + trigger_event = { + days = { 12 30 } + id = mpo_temujin_flavor.0030 # Borte announces she's pregnant + } + } + } } } } @@ -1507,6 +1577,10 @@ title:k_england = { set_coa = k_england_norman} } } + + { + ROA_setup_tributaries_effect = yes # defined in sea_tributary_setup_effect.txt + } } "common/on_action/title_on_actions.txt" = { @@ -4516,3290 +4590,165 @@ fp3_decision.0011 = { ### --- Rajas of Asia Specific Files --- -# This removes the part of the code assigning stateless governments that often seems to cause the game to crash when converting -"common/on_action/government_assignment_on_actions.txt" = { - # Disable assignment of Nomadic government on game start. - { - if = { - limit = { - has_government = tribal_government - exists = capital_county - culture = { has_cultural_tradition = tradition_horse_lords } - NOR = { - culture = culture:tuyuhun - culture = culture:alan - culture = culture:shatuo - AND = { - top_liege.primary_title = title:k_hungary - game_start_date > 907.1.1 - } - } - } - change_government = nomadic_government - } - if = { - limit = { - exists = capital_county - OR = { - has_government = tribal_government - has_government = feudal_government - } - OR = { - culture = culture:uyghur - culture = culture:kirghiz - } - } - if = { - limit = { game_start_date < 877.1.1 } - change_government = nomadic_government - } - } - } # end of "Disable assignment of Nomadic government on game start." - { - if = { - limit = { highest_held_title_tier < tier_duchy } - - # Create a titular duchy - # scope:new_title - create_title_and_vassal_change = { - type = created - save_scope_as = change - add_claim_on_loss = no - } - create_dynamic_title = { - tier = duchy - name = ANARCHIST_TITLE_NAME - } - scope:new_title = { - set_destroy_on_gain_same_tier = yes - set_no_automatic_claims = yes - set_can_be_named_after_dynasty = no - change_title_holder = { - holder = scope:ruler - change = scope:change - } - } - resolve_title_and_vassal_change = scope:change - - # Generate a new CoA - ## We do this in a separate block so that the effect has time to see that the title has a holder, since it'll error otherwise. - scope:new_title = { - generate_coa = yes - set_color_from_title = scope:commune_capital - } - } - - add_realm_law_skip_effects = single_heir_dynasty_house - primary_title = { - add_title_law = anarchist_elective_succession_law - } - every_held_title = { - limit = { tier = tier_county } - save_scope_as = title - scope:ruler = { trigger_event = sea_title_event.2001 } - } - } - { - # Chinese Primogeniture - if = { - limit = { - OR = { - primary_title = title:e_celestia_china - primary_title.empire = title:e_celestia_china - } - OR = { - highest_held_title_tier >= tier_kingdom - is_independent_ruler = yes - } - has_government = administrative_government - } - add_realm_law_skip_effects = single_heir_succession_law - } - } # end of "Disable assignment of Primo succession to Chinese realms on game start." -} - - - # This is to get rid of the minority cultures/faiths setup in Rajas since they don't make sense anymore "common\on_action\sea_minority_game_start.txt" = { { set_minorities_game_start setup_indian_christian_minorities setup_RICE_minorities + setup_tondrakian_minorities + setup_caucasus_south_minorities + } +} # End of sea_minority_game_start + + +"common\on_action\sea_yearly_on_actions.txt" = { + { + delay = { days = { 30 330 } } + start_nanzhao_collapse } { -set_minorities_game_start = { - effect = { - every_county = { - limit = { culture = culture:basque } - add_faith_minority_effect = { - FAITH = faith:basque_pagan - SIZE = small - COUNTY = this +start_nanzhao_collapse = { + trigger = { + current_date > 895.1.1 + current_date < 950.1.1 + is_at_war = no + NOT = { + title:k_nanzhao.holder = { + any_vassal_or_below = { + owns_story_of_type = nanzhao_collapse_story + } } } - - add_culture_minority_effect = { - CULTURE = culture:kochinim - SIZE = small - COUNTY = title:c_kerala + title:k_nanzhao = { + OR = { + has_variable = nanzhao + has_variable = dachanghe + has_variable = datianxing + has_variable = dayining + } } - add_faith_minority_effect = { - FAITH = faith:malabarism - SIZE = small - COUNTY = title:c_kerala + } + effect = { + if = { + limit = { title:k_nanzhao = { has_variable = nanzhao } } + trigger_event = nanzhao_collapse.0001 } - - - # Yazidis - - add_faith_minority_effect = { - FAITH = faith:yazidi - SIZE = large - COUNTY = title:c_ninive + else_if = { + limit = { title:k_nanzhao = { has_variable = dachanghe } } + trigger_event = nanzhao_collapse.1001 } - add_faith_minority_effect = { - FAITH = faith:yazidi - SIZE = large - COUNTY = title:c_nasibin + else_if = { + limit = { title:k_nanzhao = { has_variable = datianxing } } + trigger_event = nanzhao_collapse.2001 } - add_faith_minority_effect = { - FAITH = faith:yazidi - SIZE = large - COUNTY = title:c_sinjar + else_if = { + limit = { title:k_nanzhao = { has_variable = dayining } } + trigger_event = nanzhao_collapse.3001 } + } +} +} +} # End of sea_yearly_on_actions - # Jewish - - # Middle East - - add_faith_minority_effect = { - FAITH = faith:samaritan - SIZE = large - COUNTY = title:c_tiberias - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = large - COUNTY = title:c_tiberias - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_tiberias - } - add_faith_minority_effect = { - FAITH = faith:orthodox - SIZE = large - COUNTY = title:c_jerusalem - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_jerusalem - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = large - COUNTY = title:c_jerusalem - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_jerusalem - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_acre - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = large - COUNTY = title:c_acre - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_acre - } +"common\on_action\sea_title_on_actions.txt" = { + { + usurp_nanzhao_action + establish_dali_action + } +} - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_jaffa - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = large - COUNTY = title:c_jaffa - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_jaffa - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_alexandria - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_alexandria - } - add_faith_minority_effect = { - FAITH = faith:coptic - SIZE = large - COUNTY = title:c_alexandria - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_byzantion - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = large - COUNTY = title:c_byzantion - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_byzantion - } - add_culture_minority_effect = { - CULTURE = culture:levantine - SIZE = small - COUNTY = title:c_byzantion - } - add_culture_minority_effect = { - CULTURE = culture:circassian - SIZE = small - COUNTY = title:c_byzantion - } +# Try to remove bookmark data so it defaults to the converter's bookmark +# Rajas's other bookmark file, 11_sea_bookmarks, is completely commented out and seems to be more for potential bookmarks that could be made, so that'll be left +"common\bookmarks\bookmarks\10_sea_bookmarks.txt" = { + { +bm_867_sea = { + start_date = 867.1.1 + is_playable = yes + group = bm_group_867 - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_taizz - } - add_culture_minority_effect = { - CULTURE = culture:yemenite - SIZE = small - COUNTY = title:c_taizz - } + weight = { + value = 0 + } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_mandab - } - add_culture_minority_effect = { - CULTURE = culture:yemenite - SIZE = small - COUNTY = title:c_mandab - } + # Pyinbya of Pagan + character = { + name = "bookmark_sea_pagan_pyinbya" + dynasty = 2000000 + dynasty_splendor_level = 1 + type = male + birth = 817.1.1 + title = d_pagan + government = mandala_government + culture = burmese + religion = ari + difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" + history_id = earlyburman001 + position = { 308 493 } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_dathina - } - add_culture_minority_effect = { - CULTURE = culture:yemenite - SIZE = small - COUNTY = title:c_dathina - } + animation = personality_rational + } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_sanaa - } - add_culture_minority_effect = { - CULTURE = culture:yemenite - SIZE = large - COUNTY = title:c_sanaa - } + # Indravarman I + character = { + name = "bookmark_sea_indravarman_i" + dynasty = 4200000 + dynasty_splendor_level = 3 + type = male + birth = 824.1.1 + title = d_sambhupura + government = mandala_government + culture = khmer + religion = shaivism + difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" + history_id = 420012 + position = { 524 794 } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_mahra - } - add_culture_minority_effect = { - CULTURE = culture:yemenite - SIZE = large - COUNTY = title:c_mahra - } + animation = schadenfreude - if = { - limit = { current_date <= 910.1.1 } - add_faith_minority_effect = { - FAITH = faith:ibadi - SIZE = large - COUNTY = title:c_socotra - } - } - else = { - add_faith_minority_effect = { - FAITH = faith:ibadi - SIZE = small - COUNTY = title:c_socotra - } + # Jayavarman III of Kambujadesa + character = { + name = "bookmark_sea_indravarman_i_jayavarman_iii" + relation = "BOOKMARK_RELATION_LIEGE" + dynasty = 4200000 + type = male + birth = 821.1.1 + culture = khmer + religion = shaivism + history_id = 420011 + animation = shame } + } - # East - - add_faith_minority_effect = { - FAITH = faith:manichean - SIZE = small - COUNTY = title:c_shazhou - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_shazhou - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_shazhou - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_shazhou - } - add_culture_minority_effect = { - CULTURE = culture:levantine - SIZE = small - COUNTY = title:c_shazhou - } + # Khuc Thua Du + character = { + name = "bookmark_sea_khuc_thua_du" + dynasty = viet_d001 + dynasty_splendor_level = 1 + type = male + birth = 830.1.1 + title = d_hai_dong + government = feudal_government + culture = kinh + religion = phat_giao + difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" + history_id = viet001 + position = { 1055 527 } - add_faith_minority_effect = { - FAITH = faith:manichean - SIZE = small - COUNTY = title:c_liangzhou - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_liangzhou - } - add_culture_minority_effect = { - CULTURE = culture:bedouin - SIZE = small - COUNTY = title:c_liangzhou - } - - - # Spain - - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = large - COUNTY = title:c_cordoba - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_cordoba - } - - - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = large - COUNTY = title:c_sevilla - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_sevilla - } - - - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = large - COUNTY = title:c_granada - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_granada - } - - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_toledo - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = large - COUNTY = title:c_toledo - } - - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_barcelona - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_barcelona - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_lisboa - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_lisboa - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_malaga - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = large - COUNTY = title:c_malaga - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_cabra - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_cabra - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_almeria - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_almeria - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_cadiz - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_cadiz - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_algeciras - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_algeciras - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_andujar - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_andujar - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_almader - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_almader - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_calatrava - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_calatrava - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_niebla - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_niebla - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_moura - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_moura - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_avila - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_avila - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_leon - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_leon - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_soria - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_soria - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_salamanca - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_salamanca - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_cuellar - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_cuellar - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_burgos - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_burgos - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_tangiers - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_tangiers - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_fes - } - add_culture_minority_effect = { - CULTURE = culture:sephardi - SIZE = small - COUNTY = title:c_fes - } - - # France - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_carcassonne - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_carcassonne - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_troyes - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_troyes - } - - - # Germany - - if = { - limit = { game_start_date <= 1066.1.1 } - - add_culture_minority_effect = { - CULTURE = culture:saxon - SIZE = small - COUNTY = title:c_magdeburg - } - - add_culture_minority_effect = { - CULTURE = culture:saxon - SIZE = small - COUNTY = title:c_mersenburg - } - - add_culture_minority_effect = { - CULTURE = culture:saxon - SIZE = small - COUNTY = title:c_stendal - } - - add_culture_minority_effect = { - CULTURE = culture:saxon - SIZE = small - COUNTY = title:c_dannenberg - } - - add_culture_minority_effect = { - CULTURE = culture:franconian - SIZE = small - COUNTY = title:c_orlamunde - } - - add_culture_minority_effect = { - CULTURE = culture:franconian - SIZE = small - COUNTY = title:c_lobdaburg - } - } - - if = { - limit = { game_start_date >= 1066.1.1 } - - add_culture_minority_effect = { - CULTURE = culture:saxon - SIZE = large - COUNTY = title:c_magdeburg - } - - add_culture_minority_effect = { - CULTURE = culture:saxon - SIZE = large - COUNTY = title:c_mersenburg - } - - add_culture_minority_effect = { - CULTURE = culture:saxon - SIZE = large - COUNTY = title:c_stendal - } - - add_culture_minority_effect = { - CULTURE = culture:saxon - SIZE = large - COUNTY = title:c_dannenberg - } - - add_culture_minority_effect = { - CULTURE = culture:saxon - SIZE = small - COUNTY = title:c_wittenberg - } - - add_culture_minority_effect = { - CULTURE = culture:franconian - SIZE = large - COUNTY = title:c_orlamunde - } - - add_culture_minority_effect = { - CULTURE = culture:franconian - SIZE = large - COUNTY = title:c_lobdaburg - } - - add_culture_minority_effect = { - CULTURE = culture:franconian - SIZE = small - COUNTY = title:c_osterland - } - - add_culture_minority_effect = { - CULTURE = culture:franconian - SIZE = small - COUNTY = title:c_naumburg - } - - add_culture_minority_effect = { - CULTURE = culture:franconian - SIZE = small - COUNTY = title:c_vogtland - } - } - - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_metz - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_metz - } - - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_speyer - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_speyer - } - - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_worms - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_worms - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_cologne - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_cologne - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_magdeburg - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_magdeburg - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_magdeburg - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_magdeburg - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_praha - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_praha - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_trier - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_trier - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_regensburg - } - add_culture_minority_effect = { - CULTURE = culture:ashkenazi - SIZE = small - COUNTY = title:c_regensburg - } - - # Insular Christians - - add_faith_minority_effect = { - FAITH = faith:insular_celtic - SIZE = large - COUNTY = title:c_dublin - } - add_culture_minority_effect = { - CULTURE = culture:irish - SIZE = large - COUNTY = title:c_dublin - } - - - # Egypt - - add_faith_minority_effect = { - FAITH = faith:coptic - SIZE = large - COUNTY = title:c_cairo - } - - # Baghdad - - add_faith_minority_effect = { - FAITH = faith:karaism - SIZE = large - COUNTY = title:c_baghdad - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_baghdad - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = large - COUNTY = title:c_baghdad - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_baghdad - } - - add_faith_minority_effect = { - FAITH = faith:karaism - SIZE = large - COUNTY = title:c_samarra - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_samarra - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_samarra - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_anbar - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_anbar - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_badaraya - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_badaraya - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_iskaf - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_iskaf - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_karbala - } - add_culture_minority_effect = { - CULTURE = culture:bavlim - SIZE = large - COUNTY = title:c_karbala - } - - # Persia - - if = { - limit = { game_start_date <= 1060.1.1 } - - add_faith_minority_effect = { - FAITH = faith:mazdayasna - SIZE = large - COUNTY = title:c_yazd - } - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_isfahan - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = large - COUNTY = title:c_isfahan - } - - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_herat - } - add_culture_minority_effect = { - CULTURE = culture:bukharim - SIZE = small - COUNTY = title:c_herat - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_kabul - } - add_culture_minority_effect = { - CULTURE = culture:bukharim - SIZE = small - COUNTY = title:c_kabul - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_merv - } - add_culture_minority_effect = { - CULTURE = culture:bukharim - SIZE = small - COUNTY = title:c_merv - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_bukhara - } - add_culture_minority_effect = { - CULTURE = culture:bukharim - SIZE = large - COUNTY = title:c_bukhara - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = large - COUNTY = title:c_samarkand - } - add_culture_minority_effect = { - CULTURE = culture:bukharim - SIZE = large - COUNTY = title:c_samarkand - } - - - #Radhanim - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_kiev - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_kiev - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_peremyshl - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_peremyshl - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_taraz - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_taraz - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_dunhuang - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_dunhuang - } - - add_faith_minority_effect = { - FAITH = faith:haymanot - SIZE = large - COUNTY = title:c_lasta - } - - - # Parsees - - if = { - limit = { game_start_date <= 1066.1.1 } - - add_faith_minority_effect = { - FAITH = faith:zurvanism - SIZE = large - COUNTY = title:c_daman - } - add_culture_minority_effect = { - CULTURE = culture:persian - SIZE = large - COUNTY = title:c_daman - } - } - - # Roma - - if = { - limit = { - # game_start_date >= 800.1.1 - game_start_date <= 900.1.1 - } - - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_panjgur - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_kiz - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_turan - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_bhakkar - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_ranikot - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_siwistan - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_aror - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_vijnot - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_rajanpur - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_uch - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_multan - } - } - else_if = { - limit = { - game_start_date >= 900.1.1 - game_start_date <= 1000.1.1 - } - - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_bailaqan - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_maragha - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_dinawar - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_hamadan - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_nihawand - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_qom - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_ardestan - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_isfahan - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_luristan - } - } - else_if = { - limit = { - game_start_date >= 1000.1.1 - # game_start_date <= 1100.1.1 - } - - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_cerasus - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_colonea - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_trebizond - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_acampse - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_theodosiopolis - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_tao - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_turuberan - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_bagrewand - } - add_culture_minority_effect = { - CULTURE = culture:romani - SIZE = small - COUNTY = title:c_apahunik - } - } - - #Vlachs (Aromanians, Megleno-Romanians, Istroromanians) - - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = large - COUNTY = title:c_pula - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_aetolia - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = large - COUNTY = title:c_strumica - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = large - COUNTY = title:c_pirin - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = large - COUNTY = title:c_antipatreia - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_arbanon - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_ohrid - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_metzovo - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = large - COUNTY = title:c_thessalia - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_thessaliotis - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_veria - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_epeiros - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_philippopolis - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_skopje - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_velbazhd - } - add_culture_minority_effect = { - CULTURE = culture:vlach - SIZE = small - COUNTY = title:c_serres - } - - #Armenians - - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_zela - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_sebasteia - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_azysia - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_ablastha - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_trebizond - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_satala - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_colonea - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_cilicia - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_seleucia - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_seleucia - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = large - COUNTY = title:c_tall_hamid - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = small - COUNTY = title:c_alexandretta - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = small - COUNTY = title:c_antiocheia - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = small - COUNTY = title:c_tripoli - } - - #Greeks - add_culture_minority_effect = { - CULTURE = culture:greek - SIZE = small - COUNTY = title:c_tripoli - } - add_culture_minority_effect = { - CULTURE = culture:greek - SIZE = small - COUNTY = title:c_beirut - } - - #Syriacs - - #Rus - - - ## India and it's religious diversity - #======================== - every_county = { - limit = { - title_province = { geographical_region = world_india } - faith = { - has_doctrine = eastern_hostility_doctrine - NOT = { has_doctrine = tenet_communal_identity } - } - } - this = { save_temporary_scope_as = the_county_temp } - every_neighboring_county = { - if = { - limit = { - faith = { - has_doctrine = eastern_hostility_doctrine - NOT = { has_doctrine = tenet_communal_identity } - NOT = { this = scope:the_county_temp.faith } - } - } - faith = { add_to_list = neighboring_faiths } - } - } - every_in_list = { - list = neighboring_faiths - this = { save_temporary_scope_as = the_faith_temp } - scope:the_county_temp = { - add_to_variable_list = { - name = faith_minorities_small - target = scope:the_faith_temp - } - } - this = { remove_from_list = neighboring_faiths } - } - scope:the_county_temp.holder.faith = { - if = { - limit = { - has_doctrine = eastern_hostility_doctrine - NOT = { has_doctrine = tenet_communal_identity } - NOT = { this = scope:the_county_temp.faith } - } - add_to_variable_list = { - name = faith_minorities_small - target = scope:the_faith_temp - } - } - } - } - - ### RICE Sri Lanka Struggle-related minorities - if = { - limit = { has_global_variable = is_RICE_loaded_global_variable } - - # Veddas - - add_culture_minority_effect = { - CULTURE = culture:vedda - SIZE = large - COUNTY = title:c_dakhina_desa - } - - add_culture_minority_effect = { - CULTURE = culture:vedda - SIZE = large - COUNTY = title:c_kandy - } - - add_culture_minority_effect = { - CULTURE = culture:vedda - SIZE = large - COUNTY = title:c_rohana - } - - add_culture_minority_effect = { - CULTURE = culture:vedda - SIZE = large - COUNTY = title:c_batticaloa - } - - add_culture_minority_effect = { - CULTURE = culture:vedda - SIZE = large - COUNTY = title:c_phiti - } - - add_culture_minority_effect = { - CULTURE = culture:vedda - SIZE = large - COUNTY = title:c_trincomalee - } - - add_culture_minority_effect = { - CULTURE = culture:vedda - SIZE = large - COUNTY = title:c_jaffna - } - - add_culture_minority_effect = { - CULTURE = culture:vedda - SIZE = large - COUNTY = title:c_kotte - } - - add_faith_minority_effect = { - FAITH = faith:vedda_pagan - SIZE = large - COUNTY = title:c_dakhina_desa - } - - add_faith_minority_effect = { - FAITH = faith:vedda_pagan - SIZE = large - COUNTY = title:c_kandy - } - - add_faith_minority_effect = { - FAITH = faith:vedda_pagan - SIZE = large - COUNTY = title:c_rohana - } - - add_faith_minority_effect = { - FAITH = faith:vedda_pagan - SIZE = large - COUNTY = title:c_batticaloa - } - - add_faith_minority_effect = { - FAITH = faith:vedda_pagan - SIZE = large - COUNTY = title:c_phiti - } - - add_faith_minority_effect = { - FAITH = faith:vedda_pagan - SIZE = large - COUNTY = title:c_trincomalee - } - - add_faith_minority_effect = { - FAITH = faith:vedda_pagan - SIZE = large - COUNTY = title:c_jaffna - } - - add_faith_minority_effect = { - FAITH = faith:vedda_pagan - SIZE = large - COUNTY = title:c_kotte - } - } - - ### ROA ### - - if = { - limit = { game_start_date >= 1050.1.1 } - - add_culture_minority_effect = { - CULTURE = culture:sheren - SIZE = large - COUNTY = title:c_qianzhou_jiangxi_china - } - } - - - add_faith_minority_effect = { - FAITH = faith:manichean - SIZE = small - COUNTY = title:c_lanzhou_longxi_china - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_lanzhou_longxi_china - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_lanzhou_longxi_china - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_lanzhou_longxi_china - } - add_culture_minority_effect = { - CULTURE = culture:levantine - SIZE = small - COUNTY = title:c_lanzhou_longxi_china - } - - - add_faith_minority_effect = { - FAITH = faith:manichean - SIZE = small - COUNTY = title:c_changan_china - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_changan_china - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_changan_china - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_changan_china - } - add_culture_minority_effect = { - CULTURE = culture:levantine - SIZE = small - COUNTY = title:c_lanzhou_longxi_china - } - - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_bianzhou_china - } - add_culture_minority_effect = { - CULTURE = culture:kaifengim - SIZE = small - COUNTY = title:c_bianzhou_china - } - - - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_zhangzhou_min_china - } - - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_nanhai_china - } - add_faith_minority_effect = { - FAITH = faith:nestorian - SIZE = small - COUNTY = title:c_nanhai_china - } - add_faith_minority_effect = { - FAITH = faith:mazdayasna - SIZE = small - COUNTY = title:c_nanhai_china - } - add_culture_minority_effect = { - CULTURE = culture:bedouin - SIZE = small - COUNTY = title:c_lanzhou_longxi_china - } - - - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_pasai - } - add_culture_minority_effect = { - CULTURE = culture:bedouin - SIZE = small - COUNTY = title:c_pasai - } - - - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_lamuri - } - add_culture_minority_effect = { - CULTURE = culture:bedouin - SIZE = small - COUNTY = title:c_lamuri - } - - if = { - limit = { game_start_date >= 986.1.1 } - - add_culture_minority_effect = { - CULTURE = culture:cham - SIZE = small - COUNTY = title:c_zhenzhou_zhuyajun_china - } - add_faith_minority_effect = { - FAITH = faith:chamic_shaivism - SIZE = small - COUNTY = title:c_zhenzhou_zhuyajun_china - } - } - - if = { - limit = { - game_start_date >= 1030.1.1 - game_start_date <= 1066.12.31 - } - - add_culture_minority_effect = { - CULTURE = culture:tamil - SIZE = small - COUNTY = title:c_lamuri - } - add_faith_minority_effect = { - FAITH = faith:shaivism - SIZE = small - COUNTY = title:c_lamuri - } - - add_culture_minority_effect = { - CULTURE = culture:tamil - SIZE = small - COUNTY = title:c_pasai - } - add_faith_minority_effect = { - FAITH = faith:shaivism - SIZE = small - COUNTY = title:c_pasai - } - - add_culture_minority_effect = { - CULTURE = culture:tamil - SIZE = small - COUNTY = title:c_perlak - } - add_faith_minority_effect = { - FAITH = faith:shaivism - SIZE = small - COUNTY = title:c_perlak - } - - add_culture_minority_effect = { - CULTURE = culture:tamil - SIZE = small - COUNTY = title:c_siak - } - add_faith_minority_effect = { - FAITH = faith:shaivism - SIZE = small - COUNTY = title:c_siak - } - - add_culture_minority_effect = { - CULTURE = culture:tamil - SIZE = small - COUNTY = title:c_palembang - } - add_faith_minority_effect = { - FAITH = faith:shaivism - SIZE = small - COUNTY = title:c_palembang - } - - add_culture_minority_effect = { - CULTURE = culture:tamil - SIZE = large - COUNTY = title:c_barus - } - add_faith_minority_effect = { - FAITH = faith:shaivism - SIZE = large - COUNTY = title:c_barus - } - } - - title:k_chenla = { - every_de_jure_county = { - limit = { - culture = culture:khmer - } - - add_faith_minority_effect = { - FAITH = faith:theravada - SIZE = small - COUNTY = this - } - add_faith_minority_effect = { - FAITH = faith:mahayana - SIZE = large - COUNTY = this - } - } - } - - # Goryeo - if = { - limit = { - game_start_date = 936.1.1 - } - - add_culture_minority_effect = { - CULTURE = culture:balhae - SIZE = large - COUNTY = title:c_kaeseong - } - add_culture_minority_effect = { - CULTURE = culture:goguryeo - SIZE = large - COUNTY = title:c_kaeseong - } - - add_culture_minority_effect = { - CULTURE = culture:balhae - SIZE = large - COUNTY = title:c_pyongyang - } - add_culture_minority_effect = { - CULTURE = culture:goguryeo - SIZE = large - COUNTY = title:c_pyongyang - } - - add_culture_minority_effect = { - CULTURE = culture:balhae - SIZE = large - COUNTY = title:c_seohae - } - add_culture_minority_effect = { - CULTURE = culture:goguryeo - SIZE = large - COUNTY = title:c_seohae - } - } - - # Crimea - if = { - limit = { - game_start_date <= 1346.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:greek - SIZE = large - COUNTY = title:c_kerch - } - add_culture_minority_effect = { - CULTURE = culture:circassian - SIZE = large - COUNTY = title:c_kerch - } - } - if = { - limit = { - game_start_date >= 1346.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:greek - SIZE = small - COUNTY = title:c_kerch - } - } - - # Caucasus Steppe - if = { - limit = { - game_start_date >= 700.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:khazar - SIZE = large - COUNTY = title:c_khumar - } - add_faith_minority_effect = { - FAITH = faith:tengri_pagan - SIZE = large - COUNTY = title:c_khumar - } - add_culture_minority_effect = { - CULTURE = culture:circassian - SIZE = large - COUNTY = title:c_azov - } - add_culture_minority_effect = { - CULTURE = culture:khazar - SIZE = large - COUNTY = title:c_papagia - } - add_faith_minority_effect = { - FAITH = faith:tengri_pagan - SIZE = large - COUNTY = title:c_papagia - } - add_culture_minority_effect = { - CULTURE = culture:khazar - SIZE = small - COUNTY = title:c_samiran - } - add_culture_minority_effect = { - CULTURE = culture:circassian - SIZE = small - COUNTY = title:c_maghas - } - add_faith_minority_effect = { - FAITH = faith:tengri_pagan - SIZE = small - COUNTY = title:c_samiran - } - } - - # North-East Caucasus - if = { - limit = { - game_start_date >= 734.1.1 - game_start_date <= 1236.1.1 - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_avaria - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_samanderia - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_kuba - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = small - COUNTY = title:c_balanjar - } - add_faith_minority_effect = { - FAITH = faith:ashari - SIZE = large - COUNTY = title:c_derbent - } - } - if = { - limit = { - game_start_date >= 700.1.1 - game_start_date <= 900.1.1 - } - add_faith_minority_effect = { - FAITH = faith:tengri_pagan - SIZE = small - COUNTY = title:c_cabardinia - } - add_culture_minority_effect = { - CULTURE = culture:tawlu - SIZE = small - COUNTY = title:c_cabardinia - } - } - if = { - limit = { - game_start_date >= 900.1.1 - game_start_date <= 1000.1.1 - } - add_faith_minority_effect = { - FAITH = faith:tengri_pagan - SIZE = large - COUNTY = title:c_cabardinia - } - add_culture_minority_effect = { - CULTURE = culture:tawlu - SIZE = large - COUNTY = title:c_cabardinia - } - } - - # North-West Caucasus - if = { - limit = { - game_start_date >= 1000.1.1 - game_start_date <= 1239.1.1 - } - add_faith_minority_effect = { - FAITH = faith:apsuara - SIZE = small - COUNTY = title:c_kassogia - } - add_culture_minority_effect = { - CULTURE = culture:abasgi - SIZE = small - COUNTY = title:c_kassogia - } - } - if = { - limit = { - game_start_date >= 1239.1.1 - } - add_faith_minority_effect = { - FAITH = faith:orthodox - SIZE = large - COUNTY = title:c_kassogia - } - add_culture_minority_effect = { - CULTURE = culture:abasgi - SIZE = large - COUNTY = title:c_kassogia - } - } - if = { - limit = { - game_start_date >= 100.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:alan - SIZE = small - COUNTY = title:c_kassogia - } - add_faith_minority_effect = { - FAITH = faith:alan_pagan - SIZE = small - COUNTY = title:c_kassogia - } - add_culture_minority_effect = { - CULTURE = culture:ubykh - SIZE = small - COUNTY = title:c_abkhazia - } - add_culture_minority_effect = { - CULTURE = culture:ubykh - SIZE = large - COUNTY = title:c_zichia - } - add_culture_minority_effect = { - CULTURE = culture:afrabasgi - SIZE = small - COUNTY = title:c_abkhazia - } - } - if = { - limit = { - game_start_date >= 500.1.1 - game_start_date <= 1000.1.1 - } - add_faith_minority_effect = { - FAITH = faith:orthodox - SIZE = large - COUNTY = title:c_abkhazia - } - } - if = { - limit = { - game_start_date >= 500.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:georgian - SIZE = large - COUNTY = title:c_abkhazia - } - } - if = { - limit = { - game_start_date >= 700.1.1 - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_zichia - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_zichia - } - } - if = { - limit = { - game_start_date >= 700.1.1 - game_start_date <= 990.1.1 - } - add_faith_minority_effect = { - FAITH = faith:orthodox - SIZE = large - COUNTY = title:c_tmutarakan - } - } - if = { - limit = { - game_start_date >= 700.1.1 - } - add_faith_minority_effect = { - FAITH = faith:rabbinism - SIZE = small - COUNTY = title:c_tmutarakan - } - add_culture_minority_effect = { - CULTURE = culture:radhanite - SIZE = small - COUNTY = title:c_tmutarakan - } - add_culture_minority_effect = { - CULTURE = culture:greek - SIZE = large - COUNTY = title:c_tmutarakan - } - add_culture_minority_effect = { - CULTURE = culture:georgian - SIZE = small - COUNTY = title:c_tmutarakan - } - add_culture_minority_effect = { - CULTURE = culture:russian - SIZE = small - COUNTY = title:c_tmutarakan - } - add_culture_minority_effect = { - CULTURE = culture:alan - SIZE = small - COUNTY = title:c_tmutarakan - } - add_faith_minority_effect = { - FAITH = faith:armenian_apostolic - SIZE = small - COUNTY = title:c_tmutarakan - } - add_culture_minority_effect = { - CULTURE = culture:armenian - SIZE = small - COUNTY = title:c_tmutarakan - } - add_culture_minority_effect = { - CULTURE = culture:lezgic - SIZE = small - COUNTY = title:c_tmutarakan - } - add_culture_minority_effect = { - CULTURE = culture:circassian - SIZE = large - COUNTY = title:c_tmutarakan - } - add_faith_minority_effect = { - FAITH = faith:circassian_christianity - SIZE = large - COUNTY = title:c_tmutarakan - } - } - - # Kingdom of Vladimir-Opolye - if = { - limit = { - game_start_date >= 1050.1.1 - game_start_date <= 1337.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:merya - SIZE = small - COUNTY = title:c_yaroslavl - } - add_faith_minority_effect = { - FAITH = faith:mari_pagan - SIZE = small - COUNTY = title:c_yaroslavl - } - } - if = { - limit = { - game_start_date >= 1000.1.1 - game_start_date <= 1108.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:russian - SIZE = large - COUNTY = title:c_vladimir - } - add_faith_minority_effect = { - FAITH = faith:orthodox - SIZE = small - COUNTY = title:c_vladimir - } - } - if = { - limit = { - game_start_date >= 1000.1.1 - game_start_date <= 1150.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:russian - SIZE = large - COUNTY = title:c_suzdal - } - add_faith_minority_effect = { - FAITH = faith:orthodox - SIZE = small - COUNTY = title:c_suzdal - } - } - if = { - limit = { - game_start_date >= 1135.1.1 - game_start_date <= 1337.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:merya - SIZE = small - COUNTY = title:c_tver - } - add_faith_minority_effect = { - FAITH = faith:mari_pagan - SIZE = small - COUNTY = title:c_tver - } - } - if = { - limit = { - game_start_date >= 1100.1.1 - game_start_date <= 1337.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:meshchera - SIZE = large - COUNTY = title:c_moskva - } - add_faith_minority_effect = { - FAITH = faith:erzya_pagan - SIZE = large - COUNTY = title:c_moskva - } - } - if = { - limit = { - game_start_date >= 1150.1.1 - game_start_date <= 1337.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:meshchera - SIZE = large - COUNTY = title:c_ryazan - } - add_faith_minority_effect = { - FAITH = faith:erzya_pagan - SIZE = large - COUNTY = title:c_ryazan - } - } - if = { - limit = { - game_start_date >= 1150.1.1 - game_start_date <= 1337.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:meshchera - SIZE = large - COUNTY = title:c_tula - } - add_faith_minority_effect = { - FAITH = faith:moksha_pagan - SIZE = large - COUNTY = title:c_tula - } - } - if = { - limit = { - game_start_date >= 1150.1.1 - game_start_date <= 1337.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:muroma - SIZE = large - COUNTY = title:c_murom - } - add_faith_minority_effect = { - FAITH = faith:erzya_pagan - SIZE = large - COUNTY = title:c_murom - } - } - if = { - limit = { - game_start_date >= 1150.1.1 - game_start_date <= 1337.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:mari - SIZE = large - COUNTY = title:c_nizhny_novgorod - } - add_faith_minority_effect = { - FAITH = faith:mari_pagan - SIZE = large - COUNTY = title:c_nizhny_novgorod - } - } - if = { - limit = { - game_start_date >= 1150.1.1 - game_start_date <= 1337.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:merya - SIZE = large - COUNTY = title:c_plyos - } - add_faith_minority_effect = { - FAITH = faith:mari_pagan - SIZE = large - COUNTY = title:c_plyos - } - } - if = { - limit = { - game_start_date >= 1150.1.1 - game_start_date <= 1337.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:merya - SIZE = large - COUNTY = title:c_manturovo - } - add_faith_minority_effect = { - FAITH = faith:mari_pagan - SIZE = large - COUNTY = title:c_manturovo - } - } - - # Pamir - if = { - limit = { - game_start_date >= 100.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:burusho - SIZE = large - COUNTY = title:c_gilgit - } - } - if = { - limit = { - game_start_date >= 100.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:burusho - SIZE = large - COUNTY = title:c_yasin - } - } - if = { - limit = { - game_start_date >= 100.1.1 - } - add_culture_minority_effect = { - CULTURE = culture:burusho - SIZE = large - COUNTY = title:c_golaghmuli - } - } - } -} -} - -{ -setup_indian_christian_minorities = { - effect = { - title:c_kerala = { - save_scope_as = county - promote_faith_minority_effect = { FAITH = faith:indian_catholic } - } - title:c_jaffna = { - save_scope_as = county - promote_faith_minority_effect = { FAITH = faith:indian_catholic } - } - title:c_kotte = { - save_scope_as = county - promote_faith_minority_effect = { FAITH = faith:indian_catholic } - } - title:c_venadu = { - save_scope_as = county - promote_faith_minority_effect = { FAITH = faith:indian_catholic } - } - title:c_kanara = { - save_scope_as = county - promote_faith_minority_effect = { FAITH = faith:indian_catholic } - } - # Also setting up deactivated holy sites here since it's related - faith:indian_catholic = { - deactivate_holy_site = rome_nasrani - deactivate_holy_site = constantinople_nasrani - } - } -} - - - -setup_RICE_minorities = { - trigger = { - has_global_variable = is_RICE_loaded_global_variable - } - effect = { - every_county_in_region = { - region = RICE_pamir_region - save_scope_as = county - add_culture_minority_effect = { - CULTURE = culture:burusho - COUNTY = scope:county - SIZE = small - } - } - every_county_in_region = { - region = RICE_pamir_full_region - save_scope_as = county - add_culture_minority_effect = { - CULTURE = culture:nuristani - COUNTY = scope:county - SIZE = small - } - add_faith_minority_effect = { - FAITH = faith:nuristani_pagan - COUNTY = scope:county - SIZE = small - } - } - every_county = { - limit = { - has_county_modifier = RICE_pamir_brahui_tribes - } - save_scope_as = county - add_culture_minority_effect = { - CULTURE = culture:brahui - COUNTY = scope:county - SIZE = small - } - } - title:c_socotra = { - save_scope_as = county - if = { - limit = { current_date <= 1000.1.1 } - promote_faith_minority_effect = { FAITH = faith:arabic_pagan } - promote_faith_minority_effect = { FAITH = faith:south_arabian_pagan } - } - promote_faith_minority_effect = { FAITH = faith:malagasy_pagan } - promote_faith_minority_effect = { FAITH = faith:shona_pagan } - promote_culture_minority_effect = { CULTURE = culture:malagasy } - promote_culture_minority_effect = { CULTURE = culture:shona } - promote_culture_minority_effect = { CULTURE = culture:swahili } - } - title:c_zabid = { - save_scope_as = county - if = { - limit = { current_date <= 1000.1.1 } - promote_culture_minority_effect = { CULTURE = culture:himyarite } - } - } - title:c_taizz = { - save_scope_as = county - if = { - limit = { current_date <= 1000.1.1 } - promote_culture_minority_effect = { CULTURE = culture:himyarite } - } - } - title:c_mandab = { - save_scope_as = county - if = { - limit = { current_date <= 1000.1.1 } - promote_culture_minority_effect = { CULTURE = culture:himyarite } - } - } - add_culture_minority_effect = { - COUNTY = title:c_sanaa - CULTURE = culture:teimani - SIZE = large - } - add_culture_minority_effect = { - COUNTY = title:c_taizz - CULTURE = culture:teimani - SIZE = large - } - add_culture_minority_effect = { - COUNTY = title:c_tihamat-al-yamani - CULTURE = culture:teimani - SIZE = small - } - add_culture_minority_effect = { - COUNTY = title:c_zabid - CULTURE = culture:teimani - SIZE = small - } - add_culture_minority_effect = { - COUNTY = title:c_mandab - CULTURE = culture:teimani - SIZE = small - } - add_culture_minority_effect = { - COUNTY = title:c_dathina - CULTURE = culture:teimani - SIZE = small - } - add_faith_minority_effect = { - COUNTY = title:c_hamadan - FAITH = faith:rabbinism - SIZE = large - } - title:c_hamadan = { - every_neighboring_county = { - save_scope_as = county - promote_faith_minority_effect = { FAITH = faith:rabbinism } - } - } - add_culture_minority_effect = { - COUNTY = title:c_tustar - CULTURE = culture:parsim - SIZE = small - } - add_faith_minority_effect = { - COUNTY = title:c_tustar - FAITH = faith:rabbinism - SIZE = small - } - every_county = { - limit = { - kingdom = title:k_persia - county_has_specific_minority_faith_trigger = { FAITH = faith:rabbinism } - } - save_scope_as = county - if = { - limit = { - county_has_specific_small_minority_faith_trigger = { FAITH = faith:rabbinism } - } - add_culture_minority_effect = { - CULTURE = culture:parsim - COUNTY = scope:county - SIZE = small - } - } - else_if = { - limit = { - county_has_specific_large_minority_faith_trigger = { FAITH = faith:rabbinism } - } - add_culture_minority_effect = { - CULTURE = culture:parsim - COUNTY = scope:county - SIZE = large - } - } - } - add_culture_minority_effect = { - COUNTY = title:c_gamo - CULTURE = culture:aari - SIZE = small - } - add_culture_minority_effect = { - COUNTY = title:c_burji - CULTURE = culture:aari - SIZE = small - } - add_faith_minority_effect = { - COUNTY = title:c_gamo - FAITH = faith:south_omotic_pagan - SIZE = small - } - add_faith_minority_effect = { - COUNTY = title:c_burji - FAITH = faith:south_omotic_pagan - SIZE = small - } - #Sicily - #gonna just rip off India's religious diversity schtick for RICE Sicily's faiths and cultures - every_county = { - limit = { - title_province = { geographical_region = custom_sicily } - } - this = { save_temporary_scope_as = the_county_temp } - every_neighboring_county = { - if = { - limit = { - faith = { - NOT = { this = scope:the_county_temp.faith } - } - } - faith = { add_to_list = neighboring_faiths } - } - if = { - limit = { - culture = { - NOT = { this = scope:the_county_temp.culture } - } - } - culture = { add_to_list = neighboring_cultures } - } - } - if = { - limit = { NOT = { faith = holder.faith } } - holder.faith = { add_to_list = neighboring_faiths } - } - if = { - limit = { NOT = { culture = holder.culture } } - holder.faith = { add_to_list = neighboring_cultures } - } - every_in_list = { - list = neighboring_faiths - this = { save_temporary_scope_as = the_faith_temp } - scope:the_county_temp = { - add_to_variable_list = { - name = faith_minorities_small - target = scope:the_faith_temp - } - } - this = { remove_from_list = neighboring_faiths } - } - every_in_list = { - list = neighboring_cultures - this = { save_temporary_scope_as = the_culture_temp } - scope:the_county_temp = { - add_to_variable_list = { - name = culture_minorities_small - target = scope:the_culture_temp - } - } - this = { remove_from_list = neighboring_cultures } - } - } - } -} -} - -} # End of sea_minority_game_start - - - -# Remove various story/historical events that dont really make sense because of conversion. (Only removing content inside on_actions since trying to remove the initial call to the on_action at the start of the file caused some issues, I probably did it wrong.) -"common\on_action\sea_game_start.txt" = { - -# assign_nanzhao_state code - - { - if = { - limit = { - current_date < 902.1.1 - } - title:k_nanzhao = { - set_variable = nanzhao - } - } - else_if = { - limit = { - current_date >= 902.1.1 - current_date < 928.1.1 - } - title:k_nanzhao = { - set_variable = dachanghe - } - } - else_if = { - limit = { - current_date >= 928.1.1 - current_date < 929.1.1 - } - title:k_nanzhao = { - set_variable = datianxing - } - } - else_if = { - limit = { - current_date >= 929.1.1 - current_date < 937.1.1 - } - title:k_nanzhao = { - set_variable = dayining - } - } - } - -# sea_historical_artifacts code - - { - if = { - limit = { - has_dlc_feature = royal_court - exists = title:e_kambujadesa.holder - } - - if = { # Emerald Buddha - limit = { current_date >= 1432.1.1 } - title:e_kambujadesa.holder = { - create_artifact_emerald_buddha = { OWNER = this } - } - } - - if = { # Laguna Copperplate - limit = { current_date >= 900.1.1 } - title:c_tondo.holder = { - create_artifact_laguna_copperplate = { OWNER = this } - } - } - - if = { # Heirloom Seal of the Realm - limit = { current_date <= 907.1.1 } - title:e_celestia_china.holder = { - create_artifact_heirloom_seal = { OWNER = this } - } - } - - if = { # Kavirajamarga - The Royal Path for Poets written by Amoghavarsha - limit = { current_date < 1000.1.1 } #Only generated for early start - title:k_karnata.holder = { - create_artifact_kavirajamarga_effect = { OWNER = this } - } - } - - if = { # Wujing Zongyao / 武經總要 - limit = { current_date > 1044.1.1 } - title:e_celestia_china.holder = { - create_artifact_wujing_zongyao_effect = { OWNER = this } - } - } - } - } - -# sea_historical_chinese_vassal_contracts code - - { - title:e_celestia_china.holder = { - - if = { - limit = { - game_start_date <= 900.1.1 # Tang Dynasty - has_government = chinese_government - } - - if = { - limit = { NOT = { has_realm_law = bureaucratic_authority_1 } } - add_realm_law_skip_effects = bureaucratic_authority_1 - } - - # Set all vassals to military - every_vassal = { - limit = { - primary_title.tier >= tier_county - has_government = chinese_government - } - - vassal_contract_set_obligation_level = { - type = chinese_administration_type - level = chinese_administration_type_military - } - - if = { - limit = { - OR = { - # Three Fanzhen of Hebei - this = character:tangv017 - this = character:tangv018 - this = character:tangv019 - } - } - vassal_contract_set_obligation_level = { - type = chinese_centralization_level - level = chinese_centralization_level_1 - } - vassal_contract_set_obligation_level = { - type = chinese_centralization_level - level = chinese_centralization_level_0 - } - } - } - } - else_if = { - limit = { - game_start_date >= 960.1.1 # Song Dynasty - } - - if = { - limit = { NOT = { has_realm_law = bureaucratic_authority_2 } } - add_realm_law_skip_effects = bureaucratic_authority_2 - } - } - } - } - -# set_court_languages code - - { - if = { - limit = { exists = title:e_nanzhao.holder } - title:e_nanzhao.holder = { set_court_language = language_chinese } - } - if = { - limit = { exists = title:k_nanzhao.holder } - title:k_nanzhao.holder = { set_court_language = language_chinese } - } - if = { - limit = { exists = title:k_annam.holder } - title:k_annam.holder = { set_court_language = language_chinese } - } - } - -# nerf_japan code - - { - title:k_yamato.holder = { - every_vassal = { - limit = { highest_held_title_tier > tier_barony } - vassal_contract_set_obligation_level = { - type = title_revocation_rights - level = 1 - } - vassal_contract_set_obligation_level = { - type = feudal_government_taxes - level = 0 - } - vassal_contract_set_obligation_level = { - type = feudal_government_levies - level = 0 - } - } - } - } - -# sea_936_conquerors code - - { - # Otto the Great - character:1282 = { - if = { limit = { is_alive = yes } } - create_story = story_conqueror - } - # Taizong of Great Liao - character:194326 = { - if = { limit = { is_alive = yes } } - create_story = story_conqueror - } - } - -} # End of sea_game_start - - - -"common\on_action\sea_yearly_on_actions.txt" = { - { - delay = { days = { 30 330 } } - start_nanzhao_collapse - } - -{ -start_nanzhao_collapse = { - trigger = { - current_date > 895.1.1 - current_date < 950.1.1 - is_at_war = no - NOT = { - title:k_nanzhao.holder = { - any_vassal_or_below = { - owns_story_of_type = nanzhao_collapse_story - } - } - } - title:k_nanzhao = { - OR = { - has_variable = nanzhao - has_variable = dachanghe - has_variable = datianxing - has_variable = dayining - } - } - } - effect = { - if = { - limit = { title:k_nanzhao = { has_variable = nanzhao } } - trigger_event = nanzhao_collapse.0001 - } - else_if = { - limit = { title:k_nanzhao = { has_variable = dachanghe } } - trigger_event = nanzhao_collapse.1001 - } - else_if = { - limit = { title:k_nanzhao = { has_variable = datianxing } } - trigger_event = nanzhao_collapse.2001 - } - else_if = { - limit = { title:k_nanzhao = { has_variable = dayining } } - trigger_event = nanzhao_collapse.3001 - } - } -} -} - -} # End of sea_yearly_on_actions - - - -"common\on_action\sea_title_on_actions.txt" = { - { - usurp_nanzhao_action - establish_dali_action - } -} - - - -"common\on_action\sea_tributaries_game_start.txt" = { - -# set_tributaries_on_game_start code - - { - # 867 - if = { - limit = { - game_start_date >= 867.1.1 - game_start_date <= 867.12.31 - } - - ## Set tributaries - # Srivijaya - title:e_srivijaya.holder = { - set_relation_tributary = title:d_tanjungpura.holder - set_relation_tributary = title:c_panai.holder - set_relation_tributary = title:d_tanjungpura.holder - set_relation_tributary = title:c_nagur.holder - set_relation_tributary = title:d_lamuri.holder - set_relation_tributary = title:d_wijayapura.holder - } - - # Nanzhao - # Lishui - title:d_myitkyina.holder = { - set_relation_tributary = title:c_mongyang.holder - } - - # Yongchang - title:d_yongchang.holder = { - set_relation_tributary = title:c_putao.holder - } - - # Beikthano - title:c_beikthano.holder = { - set_relation_tributary = title:c_magwe.holder - } - - # Yinsheng - title:d_kainan.holder = { - set_relation_tributary = title:d_kengtung.holder - set_relation_tributary = title:d_phongsali.holder - set_relation_tributary = title:c_chiang_hung.holder - set_relation_tributary = title:c_meng_laa.holder - } - - # Tonghai - title:c_tonghai.holder = { - set_relation_tributary = title:c_hohoxe.holder - set_relation_tributary = title:c_tu_long.holder - set_relation_tributary = title:c_bao_lac.holder - } - - # Shan - title:d_yawnghwe.holder = { - set_relation_tributary = title:c_yawnghwe.holder - } - title:c_laikha.holder = { - set_relation_tributary = title:c_mongkung.holder - } - title:d_north_shan.holder = { - set_relation_tributary = title:c_manglon.holder - } - title:d_kengtung.holder = { - set_relation_tributary = title:c_chiang_hung.holder - } - title:c_chiang_hung.holder = { - set_relation_tributary = title:c_meng_laa.holder - } - - # Mon - title:d_thaton.holder = { - set_relation_tributary = title:c_pegu.holder - set_relation_tributary = title:c_hpapun.holder - } - title:c_hpa_an.holder = { - set_relation_tributary = title:c_kawkareik.holder - } - - # Annam - title:k_jinghai.holder = { - set_relation_tributary = title:d_nong.holder - set_relation_tributary = title:c_tu_long.holder - set_relation_tributary = title:c_thuy_vi.holder - set_relation_tributary = title:c_lo.holder - set_relation_tributary = title:c_tra_lan.holder - set_relation_tributary = title:c_quynh_nhai.holder - set_relation_tributary = title:c_yen_lo.holder - } - - # China - title:e_celestia_china.holder = { - set_relation_tributary = title:k_guiyi.holder - } - } - - # 867 - if = { - limit = { - game_start_date >= 867.1.1 - game_start_date <= 930.1.1 - } - - ## Set tributaries - # Srivijaya - title:e_srivijaya.holder = { - set_relation_tributary = title:d_sunda.holder - } - } - - # 936 - if = { - limit = { - game_start_date >= 936.1.1 - game_start_date < 937.1.1 - } - - ## Set tributaries - - # Jin - title:e_liao.holder = { - set_relation_tributary = title:k_jin_china.holder - } - - title:e_celestia_china.holder = { - set_relation_tributary = title:d_liangzhou.holder - set_relation_tributary = title:d_dingnan_china.holder - set_relation_tributary = title:k_guiyi.holder - } - - # Sri Gotapura - title:e_kambujadesa.holder = { - set_relation_tributary = title:d_nakhon_phanom.holder - } - - } - - # 1066 - if = { - limit = { - game_start_date >= 1066.1.1 - game_start_date <= 1066.12.31 - } - - ## Set tributaries - # Pagan - title:k_pagan.holder = { - set_relation_tributary = title:d_arakan.holder - set_relation_tributary = title:c_hsipaw.holder - set_relation_tributary = title:d_north_shan.holder - set_relation_tributary = title:d_mongpai.holder - set_relation_tributary = title:c_kale.holder - set_relation_tributary = title:c_bhamo.holder - } - title:c_kale.holder = { - set_relation_tributary = title:c_thaungdut.holder - } - title:c_takon.holder = { - set_relation_tributary = title:c_mongyang.holder - } - - # Liao - # Chanyuan Treaty from 1005 to 1125 - title:e_liao.holder = { - set_relation_tributary = title:e_celestia_china.holder - } - - # Chola hold over Srivijaya - title:k_tamilakam.holder = { - set_relation_tributary = title:e_srivijaya.holder - } - - title:e_srivijaya.holder = { - set_relation_tributary = title:d_tambralinga.holder - } - - # Dai Viet - title:e_dai_viet.holder = { - set_relation_tributary = title:d_muong.holder - set_relation_tributary = title:c_van_ban.holder - } - - # Dali - title:k_nanzhao.holder = { - set_relation_tributary = title:d_muang_thaeng.holder - } - - # Caucasus - title:e_cumania.holder = { - set_relation_tributary = title:c_kassogia.holder - set_relation_tributary = title:c_zichia.holder - set_relation_tributary = title:c_samander.holder - set_relation_tributary = title:c_samiran.holder - set_relation_tributary = title:k_caucasus.holder - set_relation_tributary = title:k_dagestan.holder - } - } - - # 1178 - if = { - limit = { - game_start_date >= 1178.1.1 - game_start_date <= 1178.12.31 - } - title:k_melayu.holder = { - set_relation_tributary = title:d_batak.holder - set_relation_tributary = title:d_pahang.holder - set_relation_tributary = title:d_kedah.holder - set_relation_tributary = title:d_lampung.holder - set_relation_tributary = title:k_sunda.holder - set_relation_tributary = title:d_aru.holder - } - - } - } - -} # End of sea_tributaries_game_start - - - -# Try to remove bookmark data so it defaults to the converter's bookmark -# Rajas's other bookmark file, 11_sea_bookmarks, is completely commented out and seems to be more for potential bookmarks that could be made, so that'll be left -"common\bookmarks\bookmarks\10_sea_bookmarks.txt" = { - { -bm_867_sea = { - start_date = 867.1.1 - is_playable = yes - group = bm_group_867 - - weight = { - value = 1000 - } - - # Pyinbya of Pagan - character = { - name = "bookmark_sea_pagan_pyinbya" - dynasty = 2000000 - dynasty_splendor_level = 1 - type = male - birth = 817.1.1 - title = d_pagan - government = mandala_government - culture = burmese - religion = ari - difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" - history_id = earlyburman001 - position = { 258 493 } - - animation = personality_rational - } - - # Jayavarman III of Kambujadesa - character = { - name = "bookmark_sea_jayavarman_iii" - dynasty = 4200000 - dynasty_splendor_level = 1 - type = male - birth = 821.1.1 - title = e_kambujadesa - government = mandala_government - culture = khmer - religion = shaivism - difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" - history_id = 420011 - position = { 424 834 } - - animation = shame - } - - # Indravarman I - character = { - name = "bookmark_sea_indravarman_i" - dynasty = 4200000 - dynasty_splendor_level = 2 - type = male - birth = 824.1.1 - title = d_sambhupura - government = mandala_government - culture = khmer - religion = shaivism - difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" - history_id = 420012 - position = { 624 534 } - - animation = schadenfreude - } - - # Khuc Thua Du - character = { - name = "bookmark_sea_khuc_thua_du" - dynasty = viet_d001 - dynasty_splendor_level = 1 - type = male - birth = 830.1.1 - title = d_hai_dong - government = feudal_government - culture = kinh - religion = phat_giao - difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" - history_id = viet001 - position = { 1055 527 } - - animation = scheme - } + animation = scheme + } # Indravarman II of Champa character = { name = "bookmark_sea_indravarman_ii" dynasty = 4210009 - dynasty_splendor_level = 2 + dynasty_splendor_level = 1 type = male birth = 835.1.1 title = k_champa @@ -7808,7 +4757,7 @@ bm_867_sea = { religion = mahayana difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" history_id = cham012 - position = { 1112 819 } + position = { 1052 839 } animation = personality_bold } @@ -7826,7 +4775,7 @@ bm_867_sea = { religion = azhaliism difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" history_id = 421011 - position = { 866 251 } + position = { 936 221 } animation = war_over_win } @@ -7844,9 +4793,22 @@ bm_867_sea = { religion = azhaliism difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" history_id = zheng0005 - position = { 346 261 } + position = { 346 180 } animation = war_over_win + + # Jayavarman III of Kambujadesa + character = { + name = "bookmark_sea_zheng_maisi" + relation = "BOOKMARK_RELATION_SON" + dynasty = d_zheng + type = male + birth = 861.1.1 + culture = han + religion = azhaliism + history_id = 421200 + animation = shame + } } } @@ -7856,14 +4818,14 @@ bm_867_nusantara = { group = bm_group_867 weight = { - value = 1000 + value = 0 } # Sri Maharaja Balaputradewa of Srivijaya character = { name = "bookmark_nusantara_balaputradewa" dynasty = dynn_sailendra - dynasty_splendor_level = 4 + dynasty_splendor_level = 3 type = male birth = 818.1.1 title = e_srivijaya @@ -7899,7 +4861,7 @@ bm_867_nusantara = { character = { name = "bookmark_nusantara_gajah_kulon" dynasty = dynn_galuh - dynasty_splendor_level = 3 + dynasty_splendor_level = 2 type = male birth = 800.1.1 title = d_galuh @@ -7917,7 +4879,7 @@ bm_867_nusantara = { character = { name = "bookmark_nusantara_indra_warmandewa" dynasty = dynn_warman - dynasty_splendor_level = 3 + dynasty_splendor_level = 2 type = male birth = 800.1.1 title = d_kutai @@ -7932,184 +4894,20 @@ bm_867_nusantara = { } } -#bm_867_sea_india = { -# start_date = 867.1.1 -# is_playable = yes -# group = bm_group_867 -# -# weight = { -# value = 100 -# } -# -# # Bhoja Pratihara -# character = { -# name = "bookmark_sea_india_pratihara" -# dynasty = 1042066 -# dynasty_splendor_level = 5 -# type = male -# birth = 816.4.13 -# title = k_kosala -# government = mandala_government -# culture = rajput -# religion = vaishnavism -# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" -# history_id = 188008 -# position = { 588 293 } -# -# animation = personality_bold -# } -# -# # Amoghavarsha Rashtrakuta -# character = { -# name = "bookmark_sea_india_rashtrakuta" -# dynasty = 1043003 -# dynasty_splendor_level = 3 -# type = male -# birth = 800.1.1 -# title = k_karnata -# government = mandala_government -# culture = kannada -# religion = digambara -# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" -# history_id = 175030 -# position = { 558 743 } -# -# animation = personality_zealous -# } -# -# # Narayanapala Pala -# character = { -# name = "bookmark_sea_india_pala" -# dynasty = 1043000 -# dynasty_splendor_level = 2 -# type = male -# birth = 839.1.1 -# title = k_bengal -# government = mandala_government -# culture = bengali -# religion = mahayana -# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" -# history_id = 190009 -# position = { 1158 693 } -# -# animation = worry -# } -#} -# -#bm_867_sea_tibet = { -# start_date = 867.1.1 -# is_playable = yes -# group = bm_group_867 -# -# weight = { -# value = 100 -# } -# -# # Vikarma Vijaya of Khotan -# character = { -# name = "bookmark_sea_tibet_khotan" -# dynasty = 1040024 -# dynasty_splendor_level = 5 -# type = male -# birth = 847.1.1 -# title = k_khotan -# government = feudal_government -# culture = saka -# religion = mahayana -# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" -# history_id = 166681 -# position = { 288 603 } -# -# animation = personality_rational -# } -# -# # Bokut Bilga of Qocho -# character = { -# name = "bookmark_sea_tibet_qocho" -# dynasty = 1040065 -# dynasty_splendor_level = 1 -# type = male -# birth = 839.6.5 -# title = k_qocho -# government = feudal_government -# culture = uyghur -# religion = manichean -# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" -# history_id = 302972 -# position = { 458 233 } -# -# animation = personality_bold -# } -# -# # Zhang Huaishen of Guiyi -# character = { -# name = "bookmark_sea_tibet_guiyi" -# dynasty = 1055006 -# dynasty_splendor_level = 1 -# type = male -# birth = 820.1.1 -# title = k_guiyi -# government = chinese_government -# culture = han -# religion = zhengyi -# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" -# history_id = 244004 -# position = { 1100 203 } -# -# animation = personality_honorable -# } -# -# # Mande Osung of Guge -# character = { -# name = "bookmark_sea_tibet_guge" -# dynasty = 105800 -# dynasty_splendor_level = 5 -# type = male -# birth = 840.1.1 -# title = k_guge -# government = feudal_government -# culture = bodpa -# religion = lamaism -# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_HARD" -# history_id = 247131 -# position = { 388 833 } -# -# animation = war_attacker -# } -# -# # Tride Yumten of U -# character = { -# name = "bookmark_sea_tibet_u" -# dynasty = 105800 -# dynasty_splendor_level = 5 -# type = male -# birth = 842.1.1 -# title = k_u -# government = feudal_government -# culture = bodpa -# religion = old_bon -# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_HARD" -# history_id = 247132 -# position = { 1200 700 } -# -# animation = personality_vengeful -# } -#} - bm_867_sea_china = { start_date = 867.1.1 is_playable = yes group = bm_group_867 weight = { - value = 1000 + value = 0 } # tang character = { name = "bookmark_sea_china_tang" dynasty = tang_d01 - dynasty_splendor_level = 5 + dynasty_splendor_level = 3 type = male birth = 833.1.1 title = e_tang @@ -8128,7 +4926,7 @@ bm_867_sea_china = { character = { name = "bookmark_sea_china_balhae" dynasty = balhae_d01 - dynasty_splendor_level = 5 + dynasty_splendor_level = 2 type = male birth = 812.1.1 title = k_balhae @@ -8146,7 +4944,7 @@ bm_867_sea_china = { character = { name = "bookmark_sea_china_muege" dynasty = 4210003 - dynasty_splendor_level = 5 + dynasty_splendor_level = 2 type = male birth = 843.1.1 title = d_bozhou_qian_china @@ -8164,7 +4962,7 @@ bm_867_sea_china = { character = { name = "bookmark_sea_china_lulong" dynasty = tang_d03 - dynasty_splendor_level = 0 + dynasty_splendor_level = 1 type = male birth = 785.1.1 title = d_lulong_china @@ -8182,7 +4980,7 @@ bm_867_sea_china = { character = { name = "bookmark_sea_china_yamato" dynasty = yamatod001 - dynasty_splendor_level = 5 + dynasty_splendor_level = 2 type = male birth = 850.5.10 title = k_yamato @@ -8200,7 +4998,7 @@ bm_867_sea_china = { character = { name = "bookmark_sea_china_silla" dynasty_house = house_silla_kim - dynasty_splendor_level = 5 + dynasty_splendor_level = 1 type = male birth = 846.1.1 title = k_silla @@ -8215,6 +5013,107 @@ bm_867_sea_china = { } } +bm_867_sea_caucasus = { + start_date = 867.1.1 + is_playable = yes + group = bm_group_867 + + weight = { + value = 1000 + } + + # Abu Ishaq + character = { + name = "bookmark_sea_caucasus_abu_ishaq" + dynasty = abu_ishaq_dynasty + dynasty_splendor_level = 1 + type = male + birth = 822.1.1 + title = d_laamp_abu_ishaq + government = landless_adventurer_government + culture = persian + religion = ashari + difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" + history_id = abu_ishaq_adventurer + position = { 700 150 } + # requires_dlc_flag = landless_adventurer + + animation = personality_zealous + } + + # Ashot + character = { + name = "bookmark_sea_caucasus_ashot" + dynasty = 507 + dynasty_splendor_level = 3 + type = male + birth = 820.1.1 + title = k_armenian_principality + government = feudal_government + culture = armenian + religion = armenian_apostolic + difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" + history_id = 41505 + position = { 500 800 } + + animation = personality_zealous + } + + # Abkhazia + character = { + name = "bookmark_sea_caucasus_abkhazia" + dynasty_house = house_achba + dynasty_splendor_level = 3 + type = male + birth = 805.1.1 + title = k_abkhazia + government = feudal_government + culture = abkhaz + religion = orthodox + difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" + history_id = 70471 + position = { 400 550 } + + animation = personality_zealous + } + + # Derbent + character = { + name = "bookmark_sea_caucasus_derbent" + dynasty = 7326 + dynasty_splendor_level = 1 + type = male + birth = 835.1.1 + title = d_derbent + government = clan_government + culture = persian + religion = ashari + difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" + history_id = 93010 + position = { 1050 550 } + + animation = personality_zealous + } + + # Tuahy + character = { + name = "bookmark_sea_caucasus_tuahy" + dynasty = berzeg_dynasty + dynasty_splendor_level = 1 + type = male + birth = 830.1.1 + title = c_tuahy + government = tribal_government + culture = ubykh + religion = circassian_pagan + difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" + history_id = qermisha_berzeg + position = { 300 300 } + + animation = personality_zealous + } +} + bm_936_sea_five_dynasties = { start_date = 936.1.1 is_playable = yes @@ -8232,12 +5131,12 @@ bm_936_sea_five_dynasties = { type = male birth = 902.11.25 title = e_liao - government = nomadic_government + government = nomad_government culture = khitan religion = mahayana difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" history_id = 194326 - position = { 356 294 } + position = { 256 294 } animation = dismissal } @@ -8256,7 +5155,7 @@ bm_936_sea_five_dynasties = { religion = shangqing difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" history_id = licongke_tang - position = { 666 804 } + position = { 766 704 } animation = worry } @@ -8274,7 +5173,7 @@ bm_936_sea_five_dynasties = { religion = shangqing difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" history_id = shijingtang_jin - position = { 276 624 } + position = { 426 524 } animation = rage } @@ -8310,10 +5209,41 @@ bm_936_sea_five_dynasties = { religion = mahayana difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" history_id = goryeo001 - position = { 1056 724 } + position = { 1156 724 } animation = personality_compassionate } + + # Song + character = { + name = "bookmark_five_dynasties_song" + dynasty = song_d01 + dynasty_splendor_level = 1 + type = male + birth = 899.1.1 + title = d_nf_zhao + government = administrative_government + fallback_government = chinese_government + culture = han + religion = zhengyi + difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" + history_id = song000 + position = { 320 804 } + + animation = personality_honorable + + character = { + name = "bookmark_five_dynasties_song_taizu" + relation = "BOOKMARK_RELATION_SON" + dynasty = song_d01 + type = male + birth = 927.3.21 + culture = han + religion = zhengyi + history_id = song001 + animation = personality_bold + } + } } bm_936_sea_ten_kingdoms = { @@ -8514,8 +5444,8 @@ bm_1066_sea_china = { dynasty_splendor_level = 3 type = male birth = 1032.9.14 - title = e_liao_dynasty - government = nomadic_government + title = e_liao + government = nomad_government culture = khitan religion = mahayana difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" @@ -8707,11 +5637,127 @@ bm_1066_southeast_asia = { } } - -#bm_1271_sea = { -# start_date = 1271.12.18 -# is_playable = yes -# group = bm_group_867 +#bm_1178_caucasus = { +# start_date = 1178.10.1 +# is_playable = yes +# group = bm_group_1178 +# +# weight = { +# value = 0 +# } +# +# character = { +# name = "bookmark_caucasus_new_england" +# dynasty = 744 +# dynasty_splendor_level = 1 +# type = male +# birth = 1128.4.1 +# title = c_zichia +# government = feudal_government +# culture = anglo_saxon +# religion = catholic +# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_HARD" +# history_id = siward_3 +# position = { 350 200 } +# +# animation = survey +# } +# +# character = { +# name = "bookmark_caucasus_tuqar_of_zichia" +# dynasty = tuqariqo +# dynasty_splendor_level = 1 +# type = male +# birth = 1165.4.1 +# title = d_zichia +# government = tribal_government +# culture = circassian +# religion = circassian_christianity +# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_HARD" +# history_id = circassian_tuqar +# position = { 500 350 } +# +# animation = thinking +# } +# +# character = { +# name = "bookmark_caucasus_jahan_pahlavan" +# dynasty = 101876 +# dynasty_splendor_level = 2 +# type = male +# birth = 1137.4.1 +# title = k_adurbadagan +# government = clan_government +# culture = turkish +# religion = maturidi +# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_EASY" +# history_id = 144052 +# position = { 520 700 } +# +# animation = personality_honorable +# } +# +# character = { +# name = "bookmark_caucasus_vladislav_suarny" +# dynasty_house = house_tzarason +# dynasty_splendor_level = 4 +# type = male +# birth = 1160.4.1 +# title = d_alania +# government = tribal_government +# culture = alan +# religion = mtielta +# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_HARD" +# history_id = 93036 +# position = { 800 425 } +# +# animation = disapproval +# +# character = { +# name = "bookmark_caucasus_vladislav_suarny_alania" +# relation = "BOOKMARK_RELATION_LIEGE" +# dynasty_house = house_bagrationi +# type = male +# birth = 1120.1.2 +# title = k_caucasus +# government = tribal_government +# culture = alan +# religion = mtielta +# history_id = 216524 +# animation = dismissal +# } +# } +# +# character = { +# name = "bookmark_caucasus_khour_of_ogra" +# dynasty = khasi_dynasty +# dynasty_splendor_level = 1 +# type = male +# birth = 1172.4.1 +# title = c_orga +# government = tribal_government +# culture = nakh +# religion = NEC_orthodox +# difficulty = "BOOKMARK_CHARACTER_DIFFICULTY_MEDIUM" +# history_id = khasi_3 +# position = { 1000 150 } +# +# animation = admiration +# +# character = { +# name = "bookmark_caucasus_khour_of_ogra_dzurdzuketia" +# relation = "BOOKMARK_RELATION_FATHER" +# dynasty = khasi_dynasty +# type = male +# birth = 1155.1.2 +# title = d_chechnya +# government = tribal_government +# culture = nakh +# religion = NEC_orthodox +# history_id = khasi_1 +# animation = boredom +# } +# } #} } diff --git a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_roa.txt b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_roa.txt index 2348e6f40..b5c75e1d3 100644 --- a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_roa.txt +++ b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_roa.txt @@ -163,6 +163,7 @@ NOT = { this = culture:muong has_cultural_parameter = heritage_group_austronesian + has_cultural_pillar = heritage_aghvank } } AND = { @@ -191,6 +192,7 @@ NOT = { this = culture:muong has_cultural_parameter = heritage_group_austronesian + has_cultural_pillar = heritage_aghvank } } AND = { @@ -272,4 +274,118 @@ non_roman_administrative_gov_trigger = { } } } -} \ No newline at end of file +} + + +"common\on_action\sea_game_start.txt" = { + ## Because of the way this file is formatted, to disable some of the game_start stuff, it is easier to just remove the calls to the specific on_actions this way + replace = { # Begin on_game_start + before = { +on_game_start = { + on_actions = { + # holy_site_buildings_on_game_start + # holy_site_descriptions_on_game_start + assign_nanzhao_state + acculturate_steppelads + #holy_site_fix + lock_indo_greek + EEE_sea_setup_on_actions + fix_government_types + #generate_shangshu + nerf_japan + misc_ROA_stuff + + # Optional admin realms via gamerules; PDX does it before and after lobby, so will we. + sea_optional_admin_realms + + # update title CoAs + sea_title_coa_on_start + + fragment_cumania + } +} + } # end of before + + after = { +on_game_start = { + on_actions = { + # holy_site_buildings_on_game_start + # holy_site_descriptions_on_game_start + #assign_nanzhao_state # IRToCK3: Disabled + #acculturate_steppelads # IRToCK3: Disabled + #holy_site_fix + lock_indo_greek + EEE_sea_setup_on_actions + fix_government_types + #generate_shangshu + #nerf_japan # IRToCK3: Disabled + #misc_ROA_stuff # IRToCK3: Disabled + + # Optional admin realms via gamerules; PDX does it before and after lobby, so will we. + #sea_optional_admin_realms # IRToCK3: Disabled + + # update title CoAs + #sea_title_coa_on_start # IRToCK3: Disabled + + #fragment_cumania # IRToCK3: Disabled + } +} + } # end of after + } # End on_game_start + + + replace = { # Begin on_game_start_after_lobby + before = { +on_game_start_after_lobby = { + on_actions = { + #ruler_popup_events + sea_set_cultural_acceptance + on_yearly_assign_culture_faith + sea_historical_artifacts + set_tai_language + # assign_varnas + set_court_languages + + # Chinese gov setup + sea_historical_chinese_vassal_contracts + + # Set + sea_give_gunpowder_innos + + # 930 conquerors + sea_936_conquerors + + # Optional admin realms via gamerules + sea_optional_admin_realms + } +} + } # end of before + + after = { +on_game_start_after_lobby = { + on_actions = { + #ruler_popup_events + #sea_set_cultural_acceptance # IRToCK3: Disabled + on_yearly_assign_culture_faith + #sea_historical_artifacts # IRToCK3: Disabled + #set_tai_language # IRToCK3: Disabled + # assign_varnas + #set_court_languages # IRToCK3: Disabled + + # Chinese gov setup + #sea_historical_chinese_vassal_contracts # IRToCK3: Disabled + + # Set + #sea_give_gunpowder_innos # IRToCK3: Disabled + + # 930 conquerors + #sea_936_conquerors # IRToCK3: Disabled + + # Optional admin realms via gamerules + #sea_optional_admin_realms # IRToCK3: Disabled + } +} + } # end of after + } # End on_game_start_after_lobby + +} # End of sea_game_start.txt diff --git a/ImperatorToCK3/Outputter/CulturesOutputter.cs b/ImperatorToCK3/Outputter/CulturesOutputter.cs index a697870ec..8721fcdd9 100644 --- a/ImperatorToCK3/Outputter/CulturesOutputter.cs +++ b/ImperatorToCK3/Outputter/CulturesOutputter.cs @@ -111,8 +111,8 @@ private static void OutputCCUParameters(string outputModPath, ModFilesystem ck3M OutputHeritageGroupParameters(ck3ModFlags, nodes, heritageGroupParameters, scriptedEffectsPath, fileName, fileText); OutputLanguageFamilyParameters(ck3ModFlags, nodes, languageFamilyParameters, scriptedEffectsPath, fileName, fileText); - // As of 2025-01-16, only WtWSMS uses the language_branch parameter type. - if (ck3ModFlags["wtwsms"]) { + // As of 2025-06-18, only WtWSMS and ROA use the language_branch parameter type. + if (ck3ModFlags["wtwsms"] || ck3ModFlags["roa"]) { OutputLanguageBranchParameters(nodes, languageBranchParameters, scriptedEffectsPath, fileName); } OutputLanguageGroupParameters(ck3ModFlags, nodes, languageGroupParameters, scriptedEffectsPath, fileName, fileText); @@ -147,6 +147,7 @@ private static void OutputCCUParameters(string outputModPath, ModFilesystem ck3M private static void OutputLanguageBranchParameters(Node[] nodes, OrderedSet<string> languageBranchParameters, string scriptedEffectsPath, string fileName) { + // Effect name is the same for both WtWSMS and ROA var branchEffectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_language_branch_effect"); if (branchEffectNode is null) { Logger.Warn("Failed to find the scripted effect for CCU language branch parameters!"); @@ -166,10 +167,8 @@ private static void OutputLanguageGroupParameters(OrderedDictionary<string, bool OrderedSet<string> languageGroupParameters, string scriptedEffectsPath, string fileName, string fileText) { Node? groupEffectNode = null; - if (ck3ModFlags["wtwsms"]) { + if (ck3ModFlags["wtwsms"] || ck3ModFlags["roa"]) { groupEffectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_language_group_effect"); - } else if (ck3ModFlags["roa"]) { - groupEffectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_language_group"); } else if (ck3ModFlags["tfe"]) { groupEffectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_culture"); } @@ -214,10 +213,8 @@ private static void OutputLanguageGroupParameters(OrderedDictionary<string, bool private static void OutputLanguageFamilyParameters(OrderedDictionary<string, bool> ck3ModFlags, Node[] nodes, OrderedSet<string> languageFamilyParameters, string scriptedEffectsPath, string fileName, string fileText) { Node? effectNode = null; - if (ck3ModFlags["wtwsms"]) { + if (ck3ModFlags["wtwsms"] || ck3ModFlags["roa"]) { effectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_language_family_effect"); - } else if (ck3ModFlags["roa"]) { - effectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_language_family"); } else if (ck3ModFlags["tfe"]) { effectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_culture"); } @@ -264,10 +261,8 @@ private static void OutputHeritageGroupParameters(OrderedDictionary<string, bool OrderedSet<string> heritageGroupParameters, string scriptedEffectsPath, string fileName, string fileText) { Node? effectNode = null; - if (ck3ModFlags["wtwsms"]) { + if (ck3ModFlags["wtwsms"] || ck3ModFlags["roa"]) { effectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_heritage_group_effect"); - } else if (ck3ModFlags["roa"]) { - effectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_heritage_group"); } else if (ck3ModFlags["tfe"]) { effectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_culture"); } @@ -277,9 +272,9 @@ private static void OutputHeritageGroupParameters(OrderedDictionary<string, bool return; } - // There is a difference in the heritage group effect formats between WtWSMS and RoA. + // WtWSMS and RoA use variable lists, TFE sets a single variable. string[] heritageGroupEffectNodeStrings; - if (ck3ModFlags["wtwsms"]) { + if (ck3ModFlags["wtwsms"] || ck3ModFlags["roa"]) { heritageGroupEffectNodeStrings = heritageGroupParameters.Select(param => $$""" if = { @@ -287,14 +282,6 @@ private static void OutputHeritageGroupParameters(OrderedDictionary<string, bool add_to_variable_list = { name = heritage_group target = flag:{{param}} } } """).ToArray(); - } else if (ck3ModFlags["roa"]) { - heritageGroupEffectNodeStrings = heritageGroupParameters.Select(param => - $$""" - else_if = { - limit = { has_cultural_parameter = {{param}} } - set_variable = { name = heritage_group value = flag:{{param}} } - } - """).ToArray(); } else if (ck3ModFlags["tfe"]) { // Only start searching for available numbers from 100, because there are some existing entries in the file. int newVariableValue = 100; @@ -324,10 +311,8 @@ private static void OutputHeritageFamilyParameters(OrderedDictionary<string, boo { // There is a difference in the heritage group effect formats between WtWSMS and RoA/TFE. Node? effectNode = null; - if (ck3ModFlags["wtwsms"]) { + if (ck3ModFlags["wtwsms"] || ck3ModFlags["roa"]) { effectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_heritage_family_effect"); - } else if (ck3ModFlags["roa"]) { - effectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_heritage_family"); } else if (ck3ModFlags["tfe"]) { effectNode = nodes.FirstOrDefault(n => n.Key == "ccu_initialize_culture"); } @@ -337,8 +322,9 @@ private static void OutputHeritageFamilyParameters(OrderedDictionary<string, boo return; } + // WtWSMS and RoA use variable lists, TFE sets a single variable. string[] heritageFamilyEffectNodeStrings; - if (ck3ModFlags["wtwsms"]) { + if (ck3ModFlags["wtwsms"] || ck3ModFlags["roa"]) { heritageFamilyEffectNodeStrings = heritageFamilyParameters.Select(param => $$""" if = { @@ -346,14 +332,6 @@ private static void OutputHeritageFamilyParameters(OrderedDictionary<string, boo add_to_variable_list = { name = heritage_family target = flag:{{param}} } } """).ToArray(); - } else if (ck3ModFlags["roa"]) { - heritageFamilyEffectNodeStrings = heritageFamilyParameters.Select(param => - $$""" - else_if = { - limit = { has_cultural_parameter = {{param}} } - set_variable = { name = heritage_family value = flag:{{param}} } - } - """).ToArray(); } else if (ck3ModFlags["tfe"]) { // Only start searching for available numbers from 100, because there are some existing entries in the file. int newVariableValue = 100; From 2ea8671b74912ae6732d58d2b2916d5b4277accb Mon Sep 17 00:00:00 2001 From: tanner918 <30297148+tanner918@users.noreply.github.com> Date: Sat, 21 Jun 2025 22:32:13 -0700 Subject: [PATCH 6/6] TFE + India Fixes - Moved 00_mongol_invasion_effects.txt edit from the TFE versions of replaceable/removable_file_blocks to vanilla version of files. - Modified become_chakravarti_decision and unite_india_decision_effect so that they can only be taken if e_india has no holder or de jure land, and instead of requiring the three normal Indian Empire titles, it instead requires you to control the entire world_india region (pretty much the same thing as what it required before), and it de jure drifts the kingdoms of all empires that are 80% inside that india region. - Changed title mappings so that BHA maps to e_india instead of MRY. e_india and BHA both represent a united India title/tag in their respective games, so it makes more sense to have those mapped together. - Made HIB map to k_ireland instead of IVE since HIB actually represents a united Ireland. - Updated some of the replaceable/removable_file_blocks for ROA and TFE. --- .../configurables/removable_file_blocks.txt | 299 +++++++ .../removable_file_blocks_tfe.txt | 445 +--------- .../configurables/replaceable_file_blocks.txt | 540 ++++++++++++ .../replaceable_file_blocks_roa.txt | 171 ++-- .../replaceable_file_blocks_tfe.txt | 830 ++---------------- .../Data_Files/configurables/title_map.txt | 11 +- 6 files changed, 1037 insertions(+), 1259 deletions(-) diff --git a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt index 24c47ebbe..3284c1fc2 100644 --- a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt +++ b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt @@ -15007,3 +15007,302 @@ apply_historic_administrative_game_rule_effect = { } } } + + +"common/scripted_effects/00_mongol_invasion_effects.txt" = { + # Character 125501 (Temujin) won't exist, so just removing this part + { + if = { + limit = { + exists = character:125501 + character:125501 = { + is_ai = no + } + } + character:125501 = { + save_scope_as = temujin + } + if = { + limit = { + #The DLC has our own BECOME GENGHIS stuff for players + has_mpo_dlc_trigger = no + } + scope:temujin = { + give_temujin_land_effect = yes + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + trigger_event = conqueror.0001 + } + } + else = { + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + trigger_event = conqueror.0001 + } + } + } + else_if = { + limit = { + exists = character:125501 + character:125501 = { is_physically_able_ai_adult = yes } + } + character:125501 = { + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + remove_trait = education_diplomacy_1 + remove_trait = education_diplomacy_2 + remove_trait = education_diplomacy_3 + remove_trait = education_diplomacy_4 + remove_trait = education_diplomacy_5 + remove_trait = education_intrigue_1 + remove_trait = education_intrigue_2 + remove_trait = education_intrigue_3 + remove_trait = education_intrigue_4 + remove_trait = education_intrigue_5 + remove_trait = education_stewardship_1 + remove_trait = education_stewardship_2 + remove_trait = education_stewardship_3 + remove_trait = education_stewardship_4 + remove_trait = education_stewardship_5 + remove_trait = education_learning_1 + remove_trait = education_learning_2 + remove_trait = education_learning_3 + remove_trait = education_learning_4 + remove_trait = education_learning_5 + remove_trait = education_martial_1 + remove_trait = education_martial_2 + remove_trait = education_martial_3 + remove_trait = education_martial_4 + add_trait = education_martial_5 + add_trait = flexible_leader + add_trait = athletic + if = { + limit = { has_dlc_feature = tours_and_tournaments } + add_trait = tourney_participant + add_random_tiered_trait_track_xp_effect = { + TRAIT = lifestyle_hunter + TRACK = hunter + LEVEL_1 = yes + LEVEL_3 = no + } + add_random_tiered_trait_track_xp_effect = { + TRAIT = tourney_participant + TRACK = horse + LEVEL_1 = yes + LEVEL_3 = yes + } + add_random_tiered_trait_track_xp_effect = { + TRAIT = tourney_participant + TRACK = bow + LEVEL_1 = yes + LEVEL_3 = yes + } + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + give_nickname = nick_genghis_khan + } + } + else_if = { + limit = { + exists = character:125501.dynasty + character:125501.dynasty = { + any_dynasty_member = { + is_ai = no + is_landed = yes + } + } + } + character:125501.dynasty = { + random_dynasty_member = { + limit = { + is_ai = no + is_landed = yes + } + save_scope_as = temujin + } + } + if = { + limit = { has_mpo_dlc_trigger = no } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + trigger_event = conqueror.0001 + } + } + else = { + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + trigger_event = conqueror.0001 + } + } + } + else_if = { + limit = { + exists = character:125501.dynasty + character:125501.dynasty = { + any_dynasty_member = { + is_physically_able_ai_adult = yes + } + } + } + character:125501.dynasty = { + random_dynasty_member = { + limit = { + is_physically_able_ai_adult = yes + is_landed = yes + } + alternative_limit = { + is_physically_able_ai_adult = yes + } + save_scope_as = temujin + } + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + remove_trait = education_diplomacy_1 + remove_trait = education_diplomacy_2 + remove_trait = education_diplomacy_3 + remove_trait = education_diplomacy_4 + remove_trait = education_diplomacy_5 + remove_trait = education_intrigue_1 + remove_trait = education_intrigue_2 + remove_trait = education_intrigue_3 + remove_trait = education_intrigue_4 + remove_trait = education_intrigue_5 + remove_trait = education_stewardship_1 + remove_trait = education_stewardship_2 + remove_trait = education_stewardship_3 + remove_trait = education_stewardship_4 + remove_trait = education_stewardship_5 + remove_trait = education_learning_1 + remove_trait = education_learning_2 + remove_trait = education_learning_3 + remove_trait = education_learning_4 + remove_trait = education_learning_5 + remove_trait = education_martial_1 + remove_trait = education_martial_2 + remove_trait = education_martial_3 + remove_trait = education_martial_4 + add_trait = education_martial_5 + add_trait = flexible_leader + add_trait = athletic + if = { + limit = { has_dlc_feature = tours_and_tournaments } + add_trait = tourney_participant + add_random_tiered_trait_track_xp_effect = { + TRAIT = lifestyle_hunter + TRACK = hunter + LEVEL_1 = yes + LEVEL_3 = no + } + add_random_tiered_trait_track_xp_effect = { + TRAIT = tourney_participant + TRACK = horse + LEVEL_1 = yes + LEVEL_3 = yes + } + add_random_tiered_trait_track_xp_effect = { + TRAIT = tourney_participant + TRACK = bow + LEVEL_1 = yes + LEVEL_3 = yes + } + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + give_nickname = nick_genghis_khan + } + } + } +} diff --git a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_tfe.txt b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_tfe.txt index 17789e150..b1a08a404 100644 --- a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_tfe.txt +++ b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks_tfe.txt @@ -882,6 +882,7 @@ garamantes_flavour_effect = { } } +# Can probably move this to replaceable_file_blocks_tfe.txt once that is working properly so this file isn't as long, and just have the call to the set_minorities_game_start on_action get removed "common/on_action/sea_minority_game_start.txt" = { # Anachronistic { @@ -30056,14 +30057,6 @@ icelandic = { } -"common/decisions/80_major_decisions_south_asia.txt" = { - # No e_rajastan in TFE as of the 'After The Pharaohs' update - { - completely_controls = title:e_rajastan - } -} - - "common/decisions/80_major_decisions.txt" = { # innovation_ledger is not in TFE as of the 'After the Pharaohs' update. { @@ -30081,18 +30074,6 @@ icelandic = { "common/scripted_effects/00_decisions_effects.txt" = { - # No e_rajastan in TFE as of the 'After The Pharaohs' update - { - title:e_rajastan = { add_to_list = indian_empire } - } - - { - if = { - limit = { has_title = title:e_rajastan } - destroy_title = title:e_rajastan - } - } - # No k_sorbia in TFE as of the 'After The Pharaohs' update { title:k_sorbia = { add_to_list = west_slavic_kingdoms } @@ -30650,305 +30631,6 @@ on_yearly_sevenhouses = { } -"common/scripted_effects/00_mongol_invasion_effects.txt" = { - # Character 125501 (Temujin) is not in TFE as of the 'After The Pharaohs' update. - { - if = { - limit = { - exists = character:125501 - character:125501 = { - is_ai = no - } - } - character:125501 = { - save_scope_as = temujin - } - if = { - limit = { - #The DLC has our own BECOME GENGHIS stuff for players - has_mpo_dlc_trigger = no - } - scope:temujin = { - give_temujin_land_effect = yes - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - trigger_event = conqueror.0001 - } - } - else = { - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - trigger_event = conqueror.0001 - } - } - } - else_if = { - limit = { - exists = character:125501 - character:125501 = { is_physically_able_ai_adult = yes } - } - character:125501 = { - save_scope_as = temujin - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - remove_trait = education_diplomacy_1 - remove_trait = education_diplomacy_2 - remove_trait = education_diplomacy_3 - remove_trait = education_diplomacy_4 - remove_trait = education_diplomacy_5 - remove_trait = education_intrigue_1 - remove_trait = education_intrigue_2 - remove_trait = education_intrigue_3 - remove_trait = education_intrigue_4 - remove_trait = education_intrigue_5 - remove_trait = education_stewardship_1 - remove_trait = education_stewardship_2 - remove_trait = education_stewardship_3 - remove_trait = education_stewardship_4 - remove_trait = education_stewardship_5 - remove_trait = education_learning_1 - remove_trait = education_learning_2 - remove_trait = education_learning_3 - remove_trait = education_learning_4 - remove_trait = education_learning_5 - remove_trait = education_martial_1 - remove_trait = education_martial_2 - remove_trait = education_martial_3 - remove_trait = education_martial_4 - add_trait = education_martial_5 - add_trait = flexible_leader - add_trait = athletic - if = { - limit = { has_dlc_feature = tours_and_tournaments } - add_trait = tourney_participant - add_random_tiered_trait_track_xp_effect = { - TRAIT = lifestyle_hunter - TRACK = hunter - LEVEL_1 = yes - LEVEL_3 = no - } - add_random_tiered_trait_track_xp_effect = { - TRAIT = tourney_participant - TRACK = horse - LEVEL_1 = yes - LEVEL_3 = yes - } - add_random_tiered_trait_track_xp_effect = { - TRAIT = tourney_participant - TRACK = bow - LEVEL_1 = yes - LEVEL_3 = yes - } - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - give_nickname = nick_genghis_khan - } - } - else_if = { - limit = { - exists = character:125501.dynasty - character:125501.dynasty = { - any_dynasty_member = { - is_ai = no - is_landed = yes - } - } - } - character:125501.dynasty = { - random_dynasty_member = { - limit = { - is_ai = no - is_landed = yes - } - save_scope_as = temujin - } - } - if = { - limit = { has_mpo_dlc_trigger = no } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - trigger_event = conqueror.0001 - } - } - else = { - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - trigger_event = conqueror.0001 - } - } - } - else_if = { - limit = { - exists = character:125501.dynasty - character:125501.dynasty = { - any_dynasty_member = { - is_physically_able_ai_adult = yes - } - } - } - character:125501.dynasty = { - random_dynasty_member = { - limit = { - is_physically_able_ai_adult = yes - is_landed = yes - } - alternative_limit = { - is_physically_able_ai_adult = yes - } - save_scope_as = temujin - } - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - remove_trait = education_diplomacy_1 - remove_trait = education_diplomacy_2 - remove_trait = education_diplomacy_3 - remove_trait = education_diplomacy_4 - remove_trait = education_diplomacy_5 - remove_trait = education_intrigue_1 - remove_trait = education_intrigue_2 - remove_trait = education_intrigue_3 - remove_trait = education_intrigue_4 - remove_trait = education_intrigue_5 - remove_trait = education_stewardship_1 - remove_trait = education_stewardship_2 - remove_trait = education_stewardship_3 - remove_trait = education_stewardship_4 - remove_trait = education_stewardship_5 - remove_trait = education_learning_1 - remove_trait = education_learning_2 - remove_trait = education_learning_3 - remove_trait = education_learning_4 - remove_trait = education_learning_5 - remove_trait = education_martial_1 - remove_trait = education_martial_2 - remove_trait = education_martial_3 - remove_trait = education_martial_4 - add_trait = education_martial_5 - add_trait = flexible_leader - add_trait = athletic - if = { - limit = { has_dlc_feature = tours_and_tournaments } - add_trait = tourney_participant - add_random_tiered_trait_track_xp_effect = { - TRAIT = lifestyle_hunter - TRACK = hunter - LEVEL_1 = yes - LEVEL_3 = no - } - add_random_tiered_trait_track_xp_effect = { - TRAIT = tourney_participant - TRACK = horse - LEVEL_1 = yes - LEVEL_3 = yes - } - add_random_tiered_trait_track_xp_effect = { - TRAIT = tourney_participant - TRACK = bow - LEVEL_1 = yes - LEVEL_3 = yes - } - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - give_nickname = nick_genghis_khan - } - } - } -} - - "common/coat_of_arms/coat_of_arms/new_landed_titles.txt" = { # No ce_gaetulia.dds in TFE as of the 'After The Pharaohs' update. { @@ -32814,78 +32496,6 @@ tfe_struggle_compromise_ender_effect = { } -"events/T4N_tributaries.txt" = { - # Unused event; from error.log: "Unknown effect random_war at file: events/T4N_tributaries.txt line: 223" - { -#Suzerain is called to permanent tributary war -#on_war_started -#Root is suzerain -#call_to_arms_tribute is defender -tributaries.6 = { - type = character_event - theme = realm - title = tributary_6_tit - desc = tributary_6_desc - right_portrait = { - character = scope:call_to_arms_tribute - animation = war_defender - - } - left_portrait = { - character = root - animation = personality_rational - } - - option = { - name = suzerain_joins_the_war - add_piety = minor_piety_value - scope:call_to_arms_tribute = { - random_war = { - limit = { - root = { - NOR = { - is_at_war_as_defender = yes - is_at_war_with = scope:call_to_arms_tribute - } - } - } - if = { - limit = { - scope:call_to_arms_tribute = { - is_at_war_as_attacker = yes - } - } - add_attacker = root - } - else_if = { - limit = { - scope:call_to_arms_tribute = { - is_at_war_as_defender = yes - } - } - add_defender = root - } - else = { - debug_log = "Something broke, report to typical" - } - } - trigger_event = { id = tributaries.8 } #tributary gets a positive response - } - } - - option = { - name = suzerain_refuses_to_join_war - add_prestige = major_prestige_loss - save_scope_as = former_suzerain - scope:call_to_arms_tribute = { - trigger_event = { id = tributaries.7 } #tributary gets a negative response - } - } -} - } -} - - "history/cultures/heritage_pictish.txt" = { # innovation_pictish_warbands not in TFE as of the 'After The Pharaohs' update. { @@ -33956,7 +33566,7 @@ mx_cue_succession_instrumental = { # play every time } } -} +} # End of "music/in_game/TFE_music.txt" "music/music_player_categories/TFE_music_categories.txt" = { @@ -34404,18 +34014,6 @@ feudal_government_or_dynastic_realm = { } -"common/buildings/00_temple_buildings.txt" = { - # from error.log: - # Error: "Trigger section already read earlier: can_construct_showing_failures_only, near line: 637" in file: "common/buildings/00_temple_buildings.txt" near line: 640 - { - can_construct_showing_failures_only = { - building_requirement_tribal = no - building_requirement_tribal_holding_in_county = yes - } - } -} - - "common/modifiers/TFE_religion_modifiers.txt" = { # from error.log: # Error: "Unexpected token: forest_movement_speed, near line: 15" in file: "common/modifiers/TFE_religion_modifiers.txt" near line: 15 @@ -34663,49 +34261,28 @@ restore_palmyrene_empire_decision = { } -"common/vassal_contracts/eranshar.txt" = { - # from error.log: - # Error: "Unexpected token: liege_opinion, near line: 126" in file: "common/vassal_contracts/eranshar.txt" near line: 126 +"common/council_tasks/00_steward_tasks.txt" = { + # No k_sorbia in TFE as of the 'After the Pharaohs' update. { - liege_opinion = -30 + capital_county.kingdom = title:k_sorbia } } -"common/vassal_contracts/gupta.txt" = { +# TFE includes liege_opinion modifiers in various subject contracts, which aren't valid to have in contracts +"common/subject_contracts/contracts/eranshar.txt" = { # from error.log: - # Error: "Unexpected token: liege_opinion, near line: 89" in file: "common/vassal_contracts/gupta.txt" near line: 89 + # Error: "Unexpected token: liege_opinion, near line: 126" in file: "common/vassal_contracts/eranshar.txt" near line: 126 { liege_opinion = -30 } } -"common/vassal_contracts/islamic.txt" = { +"common/subject_contracts/contracts/gupta.txt" = { # from error.log: - # Error: "Unexpected token: if, near line: 91" in file: "common/vassal_contracts/islamic.txt" near line: 104 - { - if = { - limit = { - AND = { - NOT = { - scope:vassal.faith = scope:liege.faith - } - scope:liege = { - has_religion = religion:islam_religion - } - } - } - tax = 0.2 - vassal_opinion = -20 - } - } -} - - -"common/council_tasks/00_steward_tasks.txt" = { - # No k_sorbia in TFE as of the 'After the Pharaohs' update. + # Error: "Unexpected token: liege_opinion, near line: 89" in file: "common/vassal_contracts/gupta.txt" near line: 89 { - capital_county.kingdom = title:k_sorbia + liege_opinion = -30 } } \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks.txt b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks.txt index 27493b543..901fb4fc4 100644 --- a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks.txt +++ b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks.txt @@ -2635,3 +2635,543 @@ custom_ep3_restore_rome_eastern_empire = { } +"common\decisions\80_major_decisions_south_asia.txt" = { + ################## + ## become_chakravarti_decision + ################## + # is_shown block + replace = { + before = { + NOT = { + is_target_in_global_variable_list = { + name = unavailable_unique_decisions + target = flag:become_chakravarti_decision + } + } + } # end of before + + after = { + NOT = { + is_target_in_global_variable_list = { + name = unavailable_unique_decisions + target = flag:become_chakravarti_decision + } + } + # IRToCK3: Added this so that the decision will require that e_india has no holder or de jure land, so it can only be taken when it makes sense. + title:e_india = { + AND = { + NOT = { exists = holder } + any_de_jure_county = { + count < 1 + } + } + } + } # end of after + } + + # is_valid block + replace = { + before = { + completely_controls = title:e_rajastan + completely_controls = title:e_deccan + completely_controls = title:e_bengal + } # end of before + + after = { + completely_controls_region = world_india # IRToCK3: Normally this decision requires you to completely control the empires of Rajastan, Deccan, and Bengal, but since they will likely not exist in a converted save game, this is being changed to just require controlling all of the india region + } # end of after + } +} # End of 80_major_decisions_south_asia.txt + + +"common\scripted_effects\00_decisions_effects.txt" = { + ################## + ## unite_india_decision_effect + ################## + replace = { + before = { + title:e_rajastan = { add_to_list = indian_empire } + title:e_deccan = { add_to_list = indian_empire } + title:e_bengal = { add_to_list = indian_empire } + } # end of before + + after = { + # IRToCK3: This effect normally adds the Empires of Rajastan, Deccan, and Bengal to a list, and then they have all of their kingdoms made de jure vassals of e_india. This is being changed to instead take all empires that are 80% in the india region. + every_county_in_region = { + region = world_india + limit = { + NOT = { + empire ?= { is_in_list = indian_empire } + } + } + + if = { + limit = { + empire = { + any_de_jure_county = { + percent >= 0.8 + title_province = { geographical_region = world_india } + } + } + } + + empire = { add_to_list = indian_empire } + } + } + } # end of after + } + + replace = { + before = { + hidden_effect = { + if = { + limit = { has_title = title:e_rajastan } + destroy_title = title:e_rajastan + } + if = { + limit = { has_title = title:e_deccan } + destroy_title = title:e_deccan + } + if = { + limit = { has_title = title:e_bengal } + destroy_title = title:e_bengal + } + } + } # end of before + + after = { + hidden_effect = { + # IRToCK3: The effect normally destroys Rajastan, Deccan, and/or Bengal if you have them while taking this decision. This was instead changed to destroy any title you hold that had its kingdoms drifted to be under e_india + every_held_title = { + limit = { is_in_list = indian_empire } + save_scope_as = destroy_empire_title + root = { destroy_title = scope:destroy_empire_title } + } + } + } # end of after + } +} # End of 00_decisions_effects.txt + + +"common/scripted_effects/00_mongol_invasion_effects.txt" = { + # spawn_temujin_character_effect; Character 125501 (Temujin) won't exist, and converter removed part of this effect, but the part that remains needs to be modified to start with an "if" instead of "else_if" in order to work properly. + replace = { + before = { + else_if = { + limit = { + #Generate Temujin if there has BEEN NO Temujin + NOT = { + has_global_variable = temujin_was_born + } + } + if = { + limit = { has_game_rule = inversed_gender_equality } + create_character = { + name = "Borte" # AKA: Genghis Khan's wife + gender = female + location = scope:temujins_birthplace + template = borte_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + else_if = { + limit = { has_game_rule = full_gender_equality } + random_list = { + #Female Ghengis Khan. + 50 = { + create_character = { + name = "Borte" # AKA: Genghis Khan's wife + gender = female + location = scope:temujins_birthplace + template = borte_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + #Male Ghengis Khan. + 50 = { + create_character = { + name = "Temujin" # AKA: Genghis Khan + location = scope:temujins_birthplace + template = genghis_khan_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + } + } + else = { + create_character = { + name = "Temujin" # AKA: Genghis Khan + location = scope:temujins_birthplace + template = genghis_khan_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + set_global_variable = { + name = temujin_was_born + value = scope:temujin + } + } + } # End of before + + after = { + if = { + limit = { + #Generate Temujin if there has BEEN NO Temujin + NOT = { + has_global_variable = temujin_was_born + } + } + if = { + limit = { has_game_rule = inversed_gender_equality } + create_character = { + name = "Borte" # AKA: Genghis Khan's wife + gender = female + location = scope:temujins_birthplace + template = borte_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + else_if = { + limit = { has_game_rule = full_gender_equality } + random_list = { + #Female Ghengis Khan. + 50 = { + create_character = { + name = "Borte" # AKA: Genghis Khan's wife + gender = female + location = scope:temujins_birthplace + template = borte_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + #Male Ghengis Khan. + 50 = { + create_character = { + name = "Temujin" # AKA: Genghis Khan + location = scope:temujins_birthplace + template = genghis_khan_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + } + } + else = { + create_character = { + name = "Temujin" # AKA: Genghis Khan + location = scope:temujins_birthplace + template = genghis_khan_character_template + save_scope_as = temujin + } + scope:temujin = { + # Make temporarily immune to disease + add_character_flag = { + flag = immune_to_disease + years = 15 + } + + add_trait = greatest_of_khans + give_temujin_land_effect = yes + add_gold = 5000 + add_dread = high_dread + spawn_temujins_court_effect = yes + form_the_mongol_empire_effect = yes + add_prestige = 25000 + give_nickname = nick_genghis_khan + if = { + limit = { + has_mpo_dlc_trigger = no + NOT = { has_perk = peacemaker_perk } + } + add_perk = peacemaker_perk + } + dynasty = { + add_dynasty_prestige_level = 5 + add_dynasty_prestige = 10000 + add_dynasty_perk = warfare_legacy_1 + add_dynasty_perk = warfare_legacy_2 + add_dynasty_perk = warfare_legacy_3 + add_dynasty_perk = warfare_legacy_4 + add_dynasty_perk = warfare_legacy_5 + if = { + limit = { + has_dlc_feature = hybridize_culture + } + add_dynasty_perk = ep1_culture_legacy_1 + } + } + } + } + set_global_variable = { + name = temujin_was_born + value = scope:temujin + } + } + } # End of after + } +} # End of "common/scripted_effects/00_mongol_invasion_effects.txt" diff --git a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_roa.txt b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_roa.txt index b5c75e1d3..c00244741 100644 --- a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_roa.txt +++ b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_roa.txt @@ -25,59 +25,6 @@ # ASIDE FROM THE CURLY BRACKETS SURROUNDING THE BLOCK, IT MUST MATCH THE ORIGINAL FILE. # OTHERWISE THE BLOCKS WON'T BE MODIFIED! - -"common/script_values/ccu_culture_values.txt" = { - # Fix RoA's CCU system to actually use language groups/families/unions - replace = { - before = { - # Increase base acceptance for sharing same language - if = { - limit = { - has_same_culture_language = scope:culture - } - add = { - value = 10 # please update CULTURE_PILLAR_TOOLTIP_LANGUAGE_EFFECT if this number changes - desc = ACCEPTANCE_BASELINE_LANGUAGE - } - } - } # end of before - - after = { - # Increase base acceptance for sharing same language - if = { - limit = { - has_same_culture_language = scope:culture - } - add = { - value = 10 # please update CULTURE_PILLAR_TOOLTIP_LANGUAGE_EFFECT if this number changes - desc = ACCEPTANCE_BASELINE_LANGUAGE - } - } - else_if = { - limit = { has_same_language_group_as = { TARGET = scope:culture } } - add = { - value = same_language_group_cultural_acceptance - desc = ACCEPTANCE_BASELINE_LANGUAGE_GROUP - } - } - else_if = { - limit = { has_same_language_family_as = { TARGET = scope:culture } } - add = { - value = same_language_family_cultural_acceptance - desc = ACCEPTANCE_BASELINE_LANGUAGE_FAMILY - } - } - else_if = { - limit = { is_in_language_union_with = { TARGET = scope:culture } } - add = { - value = same_language_union_cultural_acceptance - desc = ACCEPTANCE_BASELINE_LANGUAGE_UNION - } - } - } # end of after - } -} # end of ccu_culture_values block - "common/decisions/dlc_decisions/bp3/sea_bp3_other_decisions.txt" = { # In form_bosporan_kingdom_decision, make sure the kingdom doesn't have a holder or de jure land. replace = { @@ -91,6 +38,7 @@ } culture = { OR = { + has_cultural_pillar = heritage_east_germanic has_cultural_pillar = heritage_central_germanic has_cultural_pillar = heritage_byzantine } @@ -99,11 +47,17 @@ any_held_title = { OR = { de_jure_liege = title:d_crimea + de_jure_liege = title:d_klimata de_jure_liege = title:d_azov de_jure_liege = title:d_tmutarakan + de_jure_liege = title:d_eudusia + de_jure_liege = title:d_khegayk this = title:d_crimea + this = title:d_klimata this = title:d_azov this = title:d_tmutarakan + this = title:d_eudusia + this = title:d_khegayk } } } @@ -119,6 +73,7 @@ } culture = { OR = { + has_cultural_pillar = heritage_east_germanic has_cultural_pillar = heritage_central_germanic has_cultural_pillar = heritage_byzantine } @@ -127,11 +82,17 @@ any_held_title = { OR = { de_jure_liege = title:d_crimea + de_jure_liege = title:d_klimata de_jure_liege = title:d_azov de_jure_liege = title:d_tmutarakan + de_jure_liege = title:d_eudusia + de_jure_liege = title:d_khegayk this = title:d_crimea + this = title:d_klimata this = title:d_azov this = title:d_tmutarakan + this = title:d_eudusia + this = title:d_khegayk } } # IRToCK3: "Added this just making sure the kingdom doesn't have a holder or de jure land" ~~tanner918 @@ -389,3 +350,107 @@ on_game_start_after_lobby = { } # End on_game_start_after_lobby } # End of sea_game_start.txt + + +"common\decisions\80_major_decisions_south_asia.txt" = { + ################## + ## become_chakravarti_decision + ################## + # ROA slightly modifies this decision and it requires its own separate changes + + # is_valid block + replace = { + before = { + completely_controls = title:e_dravida + piety_level >= 5 + } # end of before + + after = { + # IRToCK3: ROA adds in that it requires you to also completely control the empire of Dravida, so that was removed as well + piety_level >= 5 + } # end of after + } +} # End of 80_major_decisions_south_asia.txt + + +"common\scripted_effects\zz_vanilla_override.txt" = { + ################## + ## unite_india_decision_effect + ################## + # ROA slightly modifies this effect and it requires its own separate changes + replace = { + before = { + title:e_rajastan = { add_to_list = indian_empire } + title:e_deccan = { add_to_list = indian_empire } + title:e_bengal = { add_to_list = indian_empire } + if = { + limit = { + NOT = { + is_titular = title:e_hindustan + } + } + title:e_hindustan = { add_to_list = indian_empire } + } + } # end of before + + after = { + # IRToCK3: This effect normally adds the Empires of Rajastan, Deccan, Bengal, and Hindustan to a list, and then they have all of their kingdoms made de jure vassals of e_india. This is being changed to instead take all empires that are 80% in the india region. + every_county_in_region = { + region = world_india + limit = { + NOT = { + empire ?= { is_in_list = indian_empire } + } + } + + if = { + limit = { + empire = { + any_de_jure_county = { + percent >= 0.8 + title_province = { geographical_region = world_india } + } + } + } + + empire = { add_to_list = indian_empire } + } + } + } # end of after + } + + replace = { + before = { + hidden_effect = { + if = { + limit = { has_title = title:e_rajastan } + destroy_title = title:e_rajastan + } + if = { + limit = { has_title = title:e_deccan } + destroy_title = title:e_deccan + } + if = { + limit = { has_title = title:e_bengal } + destroy_title = title:e_bengal + } + if = { + limit = { has_title = title:e_hindustan } + destroy_title = title:e_hindustan + } + } + } # end of before + + after = { + hidden_effect = { + # IRToCK3: The effect normally destroys Rajastan, Deccan, Bengal and/or Hindustan if you have them while taking this decision. This was instead changed to destroy any title you hold that had its kingdoms drifted to be under e_india + every_held_title = { + limit = { is_in_list = indian_empire } + save_scope_as = destroy_empire_title + root = { destroy_title = scope:destroy_empire_title } + } + } + } # end of after + } +} # End of 00_decisions_effects.txt + diff --git a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_tfe.txt b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_tfe.txt index 9e40a490d..7aed0d69e 100644 --- a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_tfe.txt +++ b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks_tfe.txt @@ -83,119 +83,6 @@ } -"map_data/geographical_regions/geographical_region.txt" = { - # No c_reggio in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_reggio - c_camarda - } - after = { - c_camarda - } - } - - # No c_san in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_san - c_parma - } - after = { - c_parma - } - } - - # No c_sankt in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_sankt - c_zurich - } - after = { - c_zurich - } - } - - # No c_sankt in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_sankt - c_amstetten - } - after = { - c_amstetten - } - } - - # No c_french in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_french - c_penthievre - } - after = { - c_penthievre - } - } - - # No c_west in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_west - c_mahdiya - } - after = { - c_mahdiya - } - } - - # No c_alcacer in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_alcacer - c_alcacer_do_sal - } - after = { - c_alcacer_do_sal - } - } - - # No c_asturias in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_asturias - c_asturias_de_santillana - } - after = { - c_asturias_de_santillana - } - } - - # No c_alto in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_alto - c_alto_aragon - } - after = { - c_alto_aragon - } - } - - # No c_castelo in TFE as of the 'After The Pharaohs' update. - replace = { - before = { - c_castelo - c_castelo_branco - } - after = { - c_castelo_branco - } - } -} - - "events/TFE_flavour_events.txt" = { # from error.log as of TFE 'After The Pharaohs' update # [01:35:44][E][jomini_script_system.cpp:284]: Script system error! @@ -269,12 +156,23 @@ TFE_General_Cue = { weak_traits_looked_down_upon = yes accolade_glory_gain_mult = 0.1 light_cavalry_max_size_add = 2 + } + parameters = { + culture_can_raid_over_land_even_if_feudal = yes + blademaster_trait_bonuses = yes } } after = { character_modifier = { accolade_glory_gain_mult = 0.1 light_cavalry_max_size_add = 2 + } + parameters = { + culture_can_raid_over_land_even_if_feudal = yes + blademaster_trait_bonuses = yes + strong_traits_more_valued = yes + strong_traits_more_common = yes + weak_traits_looked_down_upon = yes } } } @@ -818,7 +716,7 @@ TFE_General_Cue = { } -"common/vassal_contracts/gupta.txt" = { +"common/subject_contracts/contracts/gupta.txt" = { # from error.log: # Obligation level 'gupta_governance_samarajya' in 'gupta_governance' is marked as default but has an is_valid, the default cannot be conditionally valid it must always be valid replace = { @@ -859,6 +757,59 @@ TFE_General_Cue = { } } # end of after } + + # TFE has vassal_opinion being used in the subject contracts, which aren't valid + replace = { + before = { + vassal_opinion + } + + after = { + subject_opinion + } + } +} + + +"common/subject_contracts/contracts/islamic.txt" = { + # TFE has vassal_opinion being used in the subject contracts, which aren't valid + replace = { + before = { + vassal_opinion + } + + after = { + subject_opinion + } + } +} + + +"common/subject_contracts/contracts/imperial.txt" = { + # TFE has vassal_opinion being used in the subject contracts, which aren't valid + replace = { + before = { + vassal_opinion + } + + after = { + subject_opinion + } + } +} + + +"common/subject_contracts/contracts/eranshar.txt" = { + # TFE has vassal_opinion being used in the subject contracts, which aren't valid + replace = { + before = { + vassal_opinion + } + + after = { + subject_opinion + } + } } @@ -1263,75 +1214,6 @@ texture = "gfx/portraits/accessory_variations/textures/color_palette_fp2_iberian } -"common/men_at_arms_types/TFE_cultural_maa_types.txt" = { - # from error.log: - # Error: "Malformed token: provisions_cost_infantry_bankrupting, near line: 91" in file: "common/men_at_arms_types/TFE_cultural_maa_types.txt" near line: 91 - replace = { - before = { - provision_cost = provisions_cost_infantry_bankrupting - } - after = { - provision_cost = @provisions_cost_infantry_bankrupting - } - } - - # from error.log: - # Error: "Malformed token: provisions_cost_cavalry_bankrupting, near line: 133" in file: "common/men_at_arms_types/TFE_cultural_maa_types.txt" near line: 133 - replace = { - before = { - provision_cost = provisions_cost_cavalry_bankrupting - } - after = { - provision_cost = @provisions_cost_cavalry_bankrupting - } - } - - # from error.log: - # Error: "Malformed token: provisions_cost_infantry_expensive, near line: 54" in file: "common/men_at_arms_types/TFE_cultural_maa_types.txt" near line: 54 - replace = { - before = { - provision_cost = provisions_cost_infantry_expensive - } - after = { - provision_cost = @provisions_cost_infantry_expensive - } - } - - # from error.log: - # Error: "Malformed token: provisions_cost_infantry_cheap, near line: 163" in file: "common/men_at_arms_types/TFE_cultural_maa_types.txt" near line: 163 - replace = { - before = { - provision_cost = provisions_cost_infantry_cheap - } - after = { - provision_cost = @provisions_cost_infantry_cheap - } - } - - # from error.log: - # Error: "Malformed token: provisions_cost_infantry_moderate, near line: 515" in file: "common/men_at_arms_types/TFE_cultural_maa_types.txt" near line: 515 - replace = { - before = { - provision_cost = provisions_cost_infantry_moderate - } - after = { - provision_cost = @provisions_cost_infantry_moderate - } - } - - # from error.log: - # Error: "Malformed token: provisions_cost_cavalry_cheap, near line: 722" in file: "common/men_at_arms_types/TFE_cultural_maa_types.txt" near line: 722 - replace = { - before = { - provision_cost = provisions_cost_cavalry_cheap - } - after = { - provision_cost = @provisions_cost_cavalry_cheap - } - } -} - - "common/dynasties/TFE_dynasties.txt" = { # No gaetuli culture in TFE as of the 'After the Pharaohs' update. replace = { @@ -1450,46 +1332,6 @@ gaetuli_dynasty = { } -"common/culture/name_lists/00_magyar.txt" = { - # Name lists should not contain commas. - replace = { - before = { - male_names = { - Agg, Agmánd, Álmos, Árpád, Ákos, Apor, Atyás, Bahatur, Bal, Beled, Bika, Bodor, Bogát, Botond, Bugardi, Büvész, Bölcs, Bulcsu, Csanád, Csalka, Csep, - Csepke, Chepke, Chunad, Churba, Csák, Csoma, Csomó, Csongor, Csök, Cusid, Doboka, Elek, Elemér, Előd, Ellenes, Endre, Édes, Erős, Ete, Farcas, Fekete, - Feketédi, Feketeydi, Fehér, Fehérsa, Fene, Fényes, Fergudi, File, Fitos, Fodor, Fakó, Gonosz, Guta, Gyula, Gyejcsa, Halaldi, Hamar, Haragos Hokus, Hóka, - Hyduand, Hős, Jenő, Joember, Jovlegen, Kacs, Kalán, Kálmán, Karuly, Kese, Kond, Koppány, Keserő, Kosid, Lél, Levente, Maglód, Markos, Mauog, Medeu, Medue, - Mocskos, Nagod, Nagy, Nagyod, Nagyos, Nemze, Nogiud, Numel, Numwog, Ond, Ögyek, Őse, Puha, Ruoz, Siket, Szabolcs, Szalók, Szög, Szoárd, Szőke, Táltos, Taksony, - Tas, Turul, Urkond, Urkún, Vad, Vas, Vazul, Vrvmedi, Zacal, Zemdy, Zoltán - } - female_names = { - Agg, Angyalka, Anyás, Aranka, Bal, Banya, Bölcs, Bodor, Bugardi, Büvész, Chunad, Churba, Chepke, Csalka, Csep, Csepke, Csillag, Csoma, Csomó, Csök, Cusid, Draga, - Edlelmes, Édes, Ellenes, Emse, Erős, Feketédi, Feketeydi, Fekete, Fehér, Fehérsa, Fene, Fergudi, File, Fényes, Fitos, Fodor, Genuruch, Gonosz, Guta, Gyöngy, Hajnal, - Halaldi, Hamar, haragos, Hóka, Hős, Hyduand, Jolyan, Kacs, Kese, Keserő, Markos, Mauog, Medeu, Mocskos, Nagy, Nagyod, Nagyos, Nesta, Nogiud, Nuuz, Numel, Numwog, Ördöng, - Puha, Sarolt, Scepa, Siket, Szög, Szőke, Táltos, Tündér, Turul, Vad, Vas, Virág, Vnee, Vrumes, Vrvmedi, Zemdy - } - } # end of before - - after = { - male_names = { - Agg Agmánd Álmos Árpád Ákos Apor Atyás Bahatur Bal Beled Bika Bodor Bogát Botond Bugardi Büvész Bölcs Bulcsu Csanád Csalka Csep - Csepke Chepke Chunad Churba Csák Csoma Csomó Csongor Csök Cusid Doboka Elek Elemér Előd Ellenes Endre Édes Erős Ete Farcas Fekete - Feketédi Feketeydi Fehér Fehérsa Fene Fényes Fergudi File Fitos Fodor Fakó Gonosz Guta Gyula Gyejcsa Halaldi Hamar Haragos Hokus Hóka - Hyduand Hős Jenő Joember Jovlegen Kacs Kalán Kálmán Karuly Kese Kond Koppány Keserő Kosid Lél Levente Maglód Markos Mauog Medeu Medue - Mocskos Nagod Nagy Nagyod Nagyos Nemze Nogiud Numel Numwog Ond Ögyek Őse Puha Ruoz Siket Szabolcs Szalók Szög Szoárd Szőke Táltos Taksony - Tas Turul Urkond Urkún Vad Vas Vazul Vrvmedi Zacal Zemdy Zoltán - } - female_names = { - Agg Angyalka Anyás Aranka Bal Banya Bölcs Bodor Bugardi Büvész Chunad Churba Chepke Csalka Csep Csepke Csillag Csoma Csomó Csök Cusid Draga - Edlelmes Édes Ellenes Emse Erős Feketédi Feketeydi Fekete Fehér Fehérsa Fene Fergudi File Fényes Fitos Fodor Genuruch Gonosz Guta Gyöngy Hajnal - Halaldi Hamar haragos Hóka Hős Hyduand Jolyan Kacs Kese Keserő Markos Mauog Medeu Mocskos Nagy Nagyod Nagyos Nesta Nogiud Nuuz Numel Numwog Ördöng - Puha Sarolt Scepa Siket Szög Szőke Táltos Tündér Turul Vad Vas Virág Vnee Vrumes Vrvmedi Zemdy - } - } # end of after - } -} - - "common/culture/traditions/TFE_combat_traditions.txt" = { # from ck3-tiger: # file or directory gfx/interface/icons/culture_tradition/1-pattern/medi does not exist @@ -1510,545 +1352,3 @@ gaetuli_dynasty = { } } } - - -"common/laws/imperial_laws.txt" = { - - # imperial_authority_3 can_pass block (this fixes an error where you can't pass this law in converted TFE games) - replace = { - before = { - can_pass = { - OR = { - trigger_if = { - limit = { - AND = { - game_start_date = 361.11.17 - current_date >= 361.11.22 - NOT = { has_realm_law = imperial_authority_4 } - NOT = { has_realm_law = imperial_authority_5 } - } - } - has_realm_law = imperial_authority_2 - } - trigger_if = { - limit = { - AND = { - game_start_date = 361.11.17 - current_date >= 361.11.22 - NOT = { has_realm_law = imperial_authority_4 } - NOT = { has_realm_law = imperial_authority_5 } - } - } - has_realm_law = imperial_authority_2 - } - trigger_if = { - limit = { - AND = { - game_start_date = 395.1.17 - current_date >= 395.1.22 - NOT = { has_realm_law = imperial_authority_4 } - NOT = { has_realm_law = imperial_authority_5 } - } - } - has_realm_law = imperial_authority_2 - } - trigger_if = { - limit = { - AND = { - game_start_date = 476.9.4 - current_date >= 476.9.9 - NOT = { has_realm_law = imperial_authority_4 } - NOT = { has_realm_law = imperial_authority_5 } - } - } - has_realm_law = imperial_authority_2 - } - trigger_if = { - limit = { - AND = { - game_start_date = 532.2.1 - current_date >= 532.2.6 - NOT = { has_realm_law = imperial_authority_4 } - NOT = { has_realm_law = imperial_authority_5 } - } - } - has_realm_law = imperial_authority_2 - } - trigger_if = { - limit = { - AND = { - game_start_date = 632.6.8 - current_date >= 632.6.14 - NOT = { has_realm_law = imperial_authority_4 } - NOT = { has_realm_law = imperial_authority_5 } - } - } - has_realm_law = imperial_authority_2 - } - } - custom_description = { - subject = root - text = "has_crown_authority_cooldown" - NAND = { - has_variable = crown_authority_cooldown - NOT = { - culture = { has_innovation = innovation_all_things } - } - } - } - } - } # end of before - - after = { - can_pass = { - trigger_if = { - limit = { - AND = { - NOT = { has_realm_law = imperial_authority_4 } - NOT = { has_realm_law = imperial_authority_5 } - } - } - custom_description = { # IRToCK3: TFE manually checks if at least 5/6 days has passed since the game start, but checks each of its start dates individually, making it incompatible with converted save games unless they start exactly on one of those start dates. This will make it work regardless of the start date, but does come with a longer delay than TFE does, and sets up a description to notify the player in game. - text = "irtock3_tfe_imperial_authority_3_time_trigger" - years_from_game_start >= 1 - } - has_realm_law = imperial_authority_2 - } - custom_description = { - subject = root - text = "has_crown_authority_cooldown" - NAND = { - has_variable = crown_authority_cooldown - NOT = { - culture = { has_innovation = innovation_all_things } - } - } - } - } - } # end of after - } -} - - -"common/scripted_effects/00_mongol_invasion_effects.txt" = { - # spawn_temujin_character_effect; Character 125501 (Temujin) is not in TFE as of the 'After The Pharaohs' update. Converter removed part of this effect, but the part that remains needs to be modified to start with an "if" instead of "else_if" in order to work properly. - replace = { - before = { - else_if = { - limit = { - #Generate Temujin if there has BEEN NO Temujin - NOT = { - has_global_variable = temujin_was_born - } - } - if = { - limit = { has_game_rule = inversed_gender_equality } - create_character = { - name = "Borte" # AKA: Genghis Khan's wife - gender = female - location = scope:temujins_birthplace - template = borte_character_template - save_scope_as = temujin - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - } - } - else_if = { - limit = { has_game_rule = full_gender_equality } - random_list = { - #Female Ghengis Khan. - 50 = { - create_character = { - name = "Borte" # AKA: Genghis Khan's wife - gender = female - location = scope:temujins_birthplace - template = borte_character_template - save_scope_as = temujin - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - } - } - #Male Ghengis Khan. - 50 = { - create_character = { - name = "Temujin" # AKA: Genghis Khan - location = scope:temujins_birthplace - template = genghis_khan_character_template - save_scope_as = temujin - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - } - } - } - } - else = { - create_character = { - name = "Temujin" # AKA: Genghis Khan - location = scope:temujins_birthplace - template = genghis_khan_character_template - save_scope_as = temujin - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - } - } - set_global_variable = { - name = temujin_was_born - value = scope:temujin - } - } - } # End of before - - after = { - if = { - limit = { - #Generate Temujin if there has BEEN NO Temujin - NOT = { - has_global_variable = temujin_was_born - } - } - if = { - limit = { has_game_rule = inversed_gender_equality } - create_character = { - name = "Borte" # AKA: Genghis Khan's wife - gender = female - location = scope:temujins_birthplace - template = borte_character_template - save_scope_as = temujin - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - } - } - else_if = { - limit = { has_game_rule = full_gender_equality } - random_list = { - #Female Ghengis Khan. - 50 = { - create_character = { - name = "Borte" # AKA: Genghis Khan's wife - gender = female - location = scope:temujins_birthplace - template = borte_character_template - save_scope_as = temujin - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - } - } - #Male Ghengis Khan. - 50 = { - create_character = { - name = "Temujin" # AKA: Genghis Khan - location = scope:temujins_birthplace - template = genghis_khan_character_template - save_scope_as = temujin - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - } - } - } - } - else = { - create_character = { - name = "Temujin" # AKA: Genghis Khan - location = scope:temujins_birthplace - template = genghis_khan_character_template - save_scope_as = temujin - } - scope:temujin = { - # Make temporarily immune to disease - add_character_flag = { - flag = immune_to_disease - years = 15 - } - - add_trait = greatest_of_khans - give_temujin_land_effect = yes - add_gold = 5000 - add_dread = high_dread - spawn_temujins_court_effect = yes - form_the_mongol_empire_effect = yes - add_prestige = 25000 - give_nickname = nick_genghis_khan - if = { - limit = { - has_mpo_dlc_trigger = no - NOT = { has_perk = peacemaker_perk } - } - add_perk = peacemaker_perk - } - dynasty = { - add_dynasty_prestige_level = 5 - add_dynasty_prestige = 10000 - add_dynasty_perk = warfare_legacy_1 - add_dynasty_perk = warfare_legacy_2 - add_dynasty_perk = warfare_legacy_3 - add_dynasty_perk = warfare_legacy_4 - add_dynasty_perk = warfare_legacy_5 - if = { - limit = { - has_dlc_feature = hybridize_culture - } - add_dynasty_perk = ep1_culture_legacy_1 - } - } - } - } - set_global_variable = { - name = temujin_was_born - value = scope:temujin - } - } - } # End of after - } -} # End of "common/scripted_effects/00_mongol_invasion_effects.txt" \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/title_map.txt b/ImperatorToCK3/Data_Files/configurables/title_map.txt index ed97bb565..83e917bea 100644 --- a/ImperatorToCK3/Data_Files/configurables/title_map.txt +++ b/ImperatorToCK3/Data_Files/configurables/title_map.txt @@ -99,9 +99,9 @@ link = { ir = NRC ck3 = k_austria rank = k } #India/Tibet -link = { ir = MRY ck3 = e_india rank = e } -link = { ir = MRY ck3 = e_india rank = k } -link = { ir = MRY ck3 = e_india rank = d } +link = { ir = BHA ck3 = e_india rank = e } +link = { ir = BHA ck3 = e_india rank = k } # e_india and BHA represent the same thing (a united India) that you get from conquering all of india and taking the relevant decision. Having MRY map to e_india sometimes causes issues with the CK3 decision to unite India. +link = { ir = BHA ck3 = e_india rank = d } link = { ir = KHT ck3 = k_khotan rank = k } link = { ir = ANU ck3 = k_lanka rank = k } link = { ir = ANH ck3 = k_andhra rank = k } @@ -136,7 +136,7 @@ link = { ir = DAN ck3 = k_denmark rank = k } link = { ir = RGG ck3 = k_pomerania rank = k } #Extra Ireland -link = { ir = IVE ck3 = k_ireland rank = k } +link = { ir = HIB ck3 = k_ireland rank = k } # HIB represents a united Ireland # Extra Baltic link = { ir = VND ck3 = e_wendish_empire rank = e } @@ -170,9 +170,6 @@ link = { ir = SLA ck3 = e_slavia rank = k } # Decision in Terra-Indomita, requir link = { ir = SLA ck3 = e_slavia rank = d } #link = { ir = HY7 ck3 = k_sapmi rank = k } # Tag added in Terra-Indomita. This tag is the only Sapmi culture tag in Terra-Indomita. Not sure if this is great mapping, but figured I'd include it as a recommendation -# Tibet -link = { ir = KHT ck3 = k_khotan rank = k } # Would this make sense/necessary? - # China # Need to figure out what to do for china mappings. Should tags be mapped to e_celestia_china? I would assume mapping a chinese tag that should convert as an empire would make sense to be mapped to e_celestia_china, but if so what order? Would order really matter as what are the chances there'd be multiple empire conversions? # Mappings here are mainly done based off names. I don't really know Chinese history so guessing whether one tag in Imperator "becomes" a title in CK3 is kind of hard. Not even sure if the named tags in Imperator are actually supposed to represent these titles in CK3 just because they have the same name.