From d6a43312e7059c9add21d37fe0a0385794230bce Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 13:19:45 +0100 Subject: [PATCH 01/12] Code for reading encounter slots from gen 3 and 4 --- PKHeX/Legality/Structures/EncounterArea.cs | 415 +++++++++++++++++++++ PKHeX/Legality/Structures/SlotType.cs | 1 + 2 files changed, 416 insertions(+) diff --git a/PKHeX/Legality/Structures/EncounterArea.cs b/PKHeX/Legality/Structures/EncounterArea.cs index 77c56a24b..90fdf6926 100644 --- a/PKHeX/Legality/Structures/EncounterArea.cs +++ b/PKHeX/Legality/Structures/EncounterArea.cs @@ -224,6 +224,361 @@ private static IEnumerable getAreas2_H(byte[] data, ref int ofs) return head.Concat(rock); } + private static IEnumerable getSlots3(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new List(); + int Ratio = data[ofs]; + //1 byte padding + if (Ratio > 0) + { + for (int i = 0; i < numslots; i++) + { + int levelmin = data[ofs + 2 + i * 4]; + int levelmax = data[ofs + 3 + i * 4]; + int Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4); + if (Species > 0) + slots.Add(new EncounterSlot() + { + LevelMin = data[ofs + 2 + i * 4], + LevelMax = data[ofs + 3 + i * 4], + Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4), + Type = t + }); + } + } + ofs += 2 + numslots * 4; + return slots; + } + private static IEnumerable getSlots3_F(byte[] data, ref int ofs, int numslots) + { + var slots = new List(); + int Ratio = data[ofs]; + //1 byte padding + if (Ratio > 0) + { + for (int i = 0; i < numslots; i++) + { + SlotType t = i < 2 ? SlotType.Old_Rod : i < 5 ? SlotType.Good_Rod : SlotType.Super_Rod; + int levelmin = data[ofs + 2 + i * 4]; + int levelmax = data[ofs + 3 + i * 4]; + int Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4); + if (Species > 0) + slots.Add(new EncounterSlot() + { + LevelMin = data[ofs + 2 + i * 4], + LevelMax = data[ofs + 3 + i * 4], + Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4), + Type = t + }); + } + } + ofs += 2 + numslots * 4; + return slots; + } + + private static EncounterSlot[] getSlots4_DPPt_G(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new EncounterSlot[numslots]; + + for (int i = 0; i < numslots; i++) + { + int levelmin = data[ofs + 2 + i * 4]; + int levelmax = data[ofs + 3 + i * 4]; + int Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4); + + int level = (int)BitConverter.ToUInt32(data, ofs + i * 8); + int species = (int)BitConverter.ToUInt32(data, ofs + i * 8); + + slots[i] = new EncounterSlot() + { + LevelMax = level, + LevelMin = level, + Species = species, + Type = SlotType.Grass + }; + } + + ofs += numslots * 8; + return slots; + } + private static EncounterSlot[] getSlots4_HGSS_G(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new EncounterSlot[numslots * 3]; + // First 36 slots are morning, day and night grass slots + // The order is 12 level values, 12 morning species, 12 day species and 12 night species + for (int i = 0; i < numslots; i++) + { + int level = data[ofs + i]; + int species = BitConverter.ToUInt16(data, ofs + numslots + i * 2); + slots[i] = new EncounterSlot() + { + LevelMin = level, + LevelMax = level, + Species = species, + Type = SlotType.Grass + }; + } + for (int i = 0; i < numslots; i++) + { + slots[numslots + i] = slots[i].Clone(); + slots[numslots + i].Species = (int)BitConverter.ToUInt16(data, ofs + numslots * 3 + i * 2); + slots[numslots + i].Type = SlotType.Grass; + } + for (int i = 0; i < numslots; i++) + { + slots[numslots * 2 + i] = slots[i].Clone(); + slots[numslots * 2 + i].Species = (int)BitConverter.ToUInt16(data, ofs + numslots * 5 + i * 2); + slots[numslots * 2 + i].Type = SlotType.Grass; + } + + ofs += numslots * 7; + return slots; + } + private static IEnumerable getSlots4_G_Replace(byte[] data, ref int ofs, int numslots, EncounterSlot[] ReplacedSlots, int StartReplace, SlotType t) + { + //Special slots like GBA Dual Slot. Those slot only contain the info the species, the level is copy from one of the first grass slots + var slots = new List(); + + for (int i = 0; i < numslots; i++) + { + if(ReplacedSlots[StartReplace + i].LevelMin > 0) + { + var Species = (int)BitConverter.ToUInt32(data, ofs + i * 4); + if(Species > 0) + { + var slot = ReplacedSlots[StartReplace + i].Clone(); + slot.Type = t; + slot.Species = Species; + slots.Add(slot); + } + } + } + + ofs += numslots * 4; + return slots; + } + private static IEnumerable getSlots4_G_TimeReplace(byte[] data, ref int ofs, EncounterSlot[] GrassSlots, SlotType t) + { + var slots = new List(); + + int[] CountReplaced = new int[2]; + + // Slots for day, morning and night slots IN DPPt. Only contain species data, level is copy from grass slot + for (int i = 0; i < 3; i++) + { + for (int j = 0; j < 2; j++) + { + var slot = GrassSlots[2 + j].Clone(); + slot.Type = t; + slot.Species = (int)BitConverter.ToUInt32(data, ofs + i * 4); + if (slot.Species > 0) + { + CountReplaced[j] += 1; + slots.Add(slot); + } + } + ofs += 8; + } + + // If the grass slot is replaced by all the time slots that means the species in the grass slot will never be used + // Unlike raid slot and gba dual slot the time of the day is always day, morning or night + if (CountReplaced[0] == 3) + GrassSlots[2].Species = 0; + if (CountReplaced[1] == 3) + GrassSlots[3].Species = 0; + + return GrassSlots.Where(s => s.Species > 0).Concat(slots); + } + private static IEnumerable getSlots4_WFR(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new List(); + for (int i = 0; i < numslots; i++) + { + int levelmin = data[ofs + 0 + i * 8]; + int levelmax = data[ofs + 1 + i * 8]; + //2 bytes padding + int Species = (int)BitConverter.ToUInt32(data, ofs + 4 + i * 8); + if (Species > 0) + slots.Add(new EncounterSlot() + { + LevelMin = levelmin, + LevelMax = levelmax, + Species = Species, + Type = t + }); + + } + ofs += numslots * 8; + return slots; + } + + private static EncounterArea getArea3(byte[] data) + { + EncounterArea Area3 = new EncounterArea(); + bool HaveGrassSlots = false; + bool HaveSurfSlots = false; + bool HaveRockSmashSlots = false; + bool HaveFishingSlots = false; + + if (data.Length < 6) + { Area3.Location = 0; Area3.Slots = new EncounterSlot[0]; return Area3; } + + Area3.Location = data[0]; + HaveGrassSlots = data[1] == 1; + HaveSurfSlots = data[2] == 1; + HaveRockSmashSlots = data[3] == 1; + HaveFishingSlots = data[4] == 1; + + int offset = 5; + var slots = new List(); + if (HaveGrassSlots) + slots.AddRange(getSlots3(data, ref offset, 12, SlotType.Grass)); + if (HaveSurfSlots) + slots.AddRange(getSlots3(data, ref offset, 5, SlotType.Surf)); + if (HaveRockSmashSlots) + slots.AddRange(getSlots3(data, ref offset, 5, SlotType.Rock_Smash)); + if (HaveFishingSlots) + slots.AddRange(getSlots3_F(data, ref offset, 10)); + Area3.Slots = slots.ToArray(); + return Area3; + } + + private static EncounterArea getArea4DPPt(byte[] data) + { + int ofs = 0; + int GrassRatio = 0; + int SurfRatio = 0; + int OldRodRatio = 0; + int GoodRodRatio = 0; + int SuperRodRatio = 0; + EncounterArea Area4 = new EncounterArea(); + if (data.Length != 426) + { Area4.Location = 0; Area4.Slots = new EncounterSlot[0]; return Area4; } + + var Slots = new List(); + Area4.Location = BitConverter.ToUInt16(data, 0); + + GrassRatio = (int)BitConverter.ToUInt32(data, 2); + ofs = 4; + if (GrassRatio > 0) + { + EncounterSlot[] GrassSlots = getSlots4_DPPt_G(data, ref ofs, 12, SlotType.Grass); + //Morning, Day and Night slots replace slots 2 and 3 + Slots.AddRange(getSlots4_G_TimeReplace(data, ref ofs, GrassSlots, SlotType.Grass)); + //Pokéradar slots replace slots 6,7,10 and 11 + //Pokeradar is marked with different slot type because it have different PID-IV generation + Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 6, SlotType.Pokeradar)); + Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 10, SlotType.Pokeradar)); + ofs += 24; //24 bytes padding + //Dual Slots replace slots 8 and 9 + Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Ruby + Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Sapphire + Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Emerald + Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_FireRed + Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_LeafGreen + } + else + ofs = 206; + + SurfRatio = (int)BitConverter.ToUInt32(data, ofs); + ofs += 2; + if (SurfRatio > 0) + Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Surf)); + else + ofs += 40; + + ofs += 44; //44 bytes padding + OldRodRatio = (int)BitConverter.ToUInt32(data, 294); + ofs += 4; + if (OldRodRatio > 0) + Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Old_Rod)); + else + ofs += 40; + + GoodRodRatio = (int)BitConverter.ToUInt32(data, 338); + ofs += 4; + if (GoodRodRatio > 0) + Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Good_Rod)); + else + ofs += 40; + + SuperRodRatio = (int)BitConverter.ToUInt32(data, 382); + ofs += 4; + if (SuperRodRatio > 0) + Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Super_Rod)); + else + ofs += 40; + + Area4.Slots = Slots.ToArray(); + return Area4; + } + + private static EncounterArea getArea4HGSS(byte[] data) + { + int GrassRatio = 0; + int SurfRatio = 0; + int OldRodRatio = 0; + int GoodRodRatio = 0; + int SuperRodRatio = 0; + int RockSmashRatio = 0; + EncounterArea Area4 = new EncounterArea(); + if (data.Length != 202) + { Area4.Location = 0; Area4.Slots = new EncounterSlot[0]; return Area4; } + + var Slots = new List(); + Area4.Location = BitConverter.ToUInt16(data, 0); + + GrassRatio = data[2]; + SurfRatio = data[3]; + RockSmashRatio = data[4]; + OldRodRatio = data[5]; + GoodRodRatio = data[6]; + SuperRodRatio = data[7]; + // 2 bytes padding + int ofs = 10; + + if (GrassRatio > 0) + { + // First 36 slots are morning, day and night grass slots + // The order is 12 level values, 12 morning species, 12 day species and 12 night species + EncounterSlot[] GrassSlots = getSlots4_HGSS_G(data, ref ofs, 12, SlotType.Grass); + Slots.AddRange(GrassSlots.Where(s => s.Species > 0)); + // Hoeen Sound and Shinno Soundreplace slots 4 and 5 + Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); + Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); + } + else + ofs = -1; + + if (SurfRatio > 0) + Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Surf)); + else + ofs += 40; + + if (RockSmashRatio > 0) + Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Rock_Smash)); + else + ofs += 40; + + if (OldRodRatio > 0) + Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Old_Rod)); + else + ofs += 40; + + if (GoodRodRatio > 0) + Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Good_Rod)); + else + ofs += 40; + + if (SuperRodRatio > 0) + Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Super_Rod)); + else + ofs += 40; + + Area4.Slots = Slots.ToArray(); + return Area4; + } + /// /// RBY Format Slot Getter from data. /// @@ -375,6 +730,66 @@ public static EncounterArea[] getArray2_H(byte[] data) return getAreas2_H(data, ref ofs).ToArray(); } + /// + /// Gets the encounter areas with information from Generation 3 data. + /// + /// Raw data, one byte array per encounter area + /// Array of encounter areas. + public static EncounterArea[] getArray3(byte[][] entries) + { + if (entries == null) + return null; + + var Areas = new List(); + for (int i = 0; i < entries.Length; i++) + { + EncounterArea Area = getArea3(entries[i]); + if (Area.Slots.Any()) + Areas.Add(Area); + } + return Areas.ToArray(); + } + + /// + /// Gets the encounter areas with information from Generation 4 Diamond, Pearl and Platinum data. + /// + /// Raw data, one byte array per encounter area + /// Array of encounter areas. + public static EncounterArea[] getArray4DPPt(byte[][] entries) + { + if (entries == null) + return null; + + var Areas = new List(); + for (int i = 0; i < entries.Length; i++) + { + EncounterArea Area = getArea4DPPt(entries[i]); + if (Area.Slots.Any()) + Areas.Add(Area); + } + return Areas.ToArray(); + } + + /// + /// Gets the encounter areas with information from Generation 4 Hearth Gold and Soul Silver data. + /// + /// Raw data, one byte array per encounter area + /// Array of encounter areas. + public static EncounterArea[] getArray4HGSS(byte[][] entries) + { + if (entries == null) + return null; + + var Areas = new List(); + for (int i = 0; i < entries.Length; i++) + { + EncounterArea Area = getArea4HGSS(entries[i]); + if (Area.Slots.Any()) + Areas.Add(Area); + } + return Areas.ToArray(); + } + public static EncounterArea[] getArray(byte[][] entries) { if (entries == null) diff --git a/PKHeX/Legality/Structures/SlotType.cs b/PKHeX/Legality/Structures/SlotType.cs index e96316d77..51db6a38f 100644 --- a/PKHeX/Legality/Structures/SlotType.cs +++ b/PKHeX/Legality/Structures/SlotType.cs @@ -19,5 +19,6 @@ public enum SlotType SOS, Swarm, Headbutt, + Pokeradar } } From 407e35d834c18eadb42d33d1b7c9403642bea9d3 Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 13:27:23 +0100 Subject: [PATCH 02/12] Evolutions gen 3, 4 and 5 --- PKHeX/Legality/Structures/EvolutionTree.cs | 167 +++++++++++++++++++++ PKHeX/Legality/Tables3.cs | 1 + PKHeX/Legality/Tables4.cs | 2 + PKHeX/Legality/Tables5.cs | 2 + 4 files changed, 172 insertions(+) diff --git a/PKHeX/Legality/Structures/EvolutionTree.cs b/PKHeX/Legality/Structures/EvolutionTree.cs index 02afdbb98..dd740ada8 100644 --- a/PKHeX/Legality/Structures/EvolutionTree.cs +++ b/PKHeX/Legality/Structures/EvolutionTree.cs @@ -25,6 +25,15 @@ public EvolutionTree(byte[][] data, GameVersion game, PersonalTable personal, in case GameVersion.GSC: Entries = EvolutionSet2.getArray(data[0], maxSpeciesTree); break; + case GameVersion.E: + Entries = EvolutionSet3.getArray(data[0]); + break; + case GameVersion.Pt: + Entries = EvolutionSet4.getArray(data[0]); + break; + case GameVersion.B2W2: + Entries = EvolutionSet5.getArray(data[0]); + break; case GameVersion.ORAS: Entries.AddRange(data.Select(d => new EvolutionSet6(d))); break; @@ -256,6 +265,164 @@ public static List getArray(byte[] data, int maxSpecies) return evos; } } + public class EvolutionSet3 : EvolutionSet + { + private static EvolutionMethod getMethod(byte[] data, int offset) + { + int method = BitConverter.ToUInt16(data, offset + 0); + int arg = BitConverter.ToUInt16(data, offset + 2); + int species = PKX.getG4Species(BitConverter.ToUInt16(data, offset + 4)); + //2 bytes padding + + switch (method) + { + case 1: /* Friendship*/ + case 2: /* Friendship day*/ + case 3: /* Friendship night*/ + case 5: /* Trade */ + case 6: /* Trade while holding */ + return new EvolutionMethod { Method = method, Species = species, Argument = arg }; + case 4: /* Level Up */ + return new EvolutionMethod { Method = 4, Species = species, Level = arg, Argument = arg }; + case 7: /* Use item */ + case 15: /* Beauty evolution*/ + return new EvolutionMethod { Method = method + 1, Species = species, Argument = arg }; + case 8: /* Tyrogue -> Hitmonchan */ + case 9: /* Tyrogue -> Hitmonlee */ + case 10: /* Tyrogue -> Hitmontop*/ + case 11: /* Wurmple -> Silcoon evolution */ + case 12: /* Wurmple -> Cascoon evolution */ + case 13: /* Nincada -> Ninjask evolution */ + case 14: /* Shedinja spawn in Nincada -> Ninjask evolution */ + return new EvolutionMethod { Method = method + 1, Species = species, Level = arg, Argument = arg }; + } + return null; + } + public static List getArray(byte[] data) + { + EvolutionSet[] evos = new EvolutionSet[Legal.MaxSpeciesID_3 + 1]; + evos[0] = new EvolutionSet3 { PossibleEvolutions = new EvolutionMethod[0] }; + for (int i = 0; i <= Legal.MaxSpeciesIndex_3; i++) + { + int g4species = PKX.getG4Species(i); + if (g4species == 0) + continue; + + int offset = i * 40; + var m_list = new List(); + for (int j = 0; j < 5; j++) + { + EvolutionMethod m = getMethod(data, offset); + if(m!=null) + m_list.Add(m); + else + break; + offset += 8; + } + evos[g4species] = new EvolutionSet3 { PossibleEvolutions = m_list.ToArray() }; + } + return evos.ToList(); + } + } + public class EvolutionSet4 : EvolutionSet + { + private static EvolutionMethod getMethod(byte[] data, int offset) + { + int[] argEvos = { 6, 8, 16, 17, 18, 19, 20, 21, 22 }; + int method = BitConverter.ToUInt16(data, offset + 0); + int arg = BitConverter.ToUInt16(data, offset + 2); + int species = BitConverter.ToUInt16(data, offset + 4); + + if (method == 0) + return null; + // To have the same estructure as gen 6 + // Gen 4 Method 6 is Gen 6 Method 7, G4 7 = G6 8, and so on + if (method > 6) + method++; + + var evo = new EvolutionMethod + { + Method = method, + Argument = arg, + Species = species, + Level = arg, + }; + + if (argEvos.Contains(evo.Method)) + evo.Level = 0; + return evo; + } + public static List getArray(byte[] data) + { + var evos = new List(); + for (int i = 0; i <= Legal.MaxSpeciesIndex_4_HGSSPt; i++) + { + /* 44 bytes per species, + * for every species 7 evolutions with 6 bytes per evolution, + * last 2 bytes of every specie is padding*/ + int offset = i * 44; + var m_list = new List(); + for (int j = 0; j < 7; j++) + { + EvolutionMethod m = getMethod(data, offset); + if (m != null) + m_list.Add(m); + else + break; + offset += 6; + } + evos.Add(new EvolutionSet4 { PossibleEvolutions = m_list.ToArray() }); + } + return evos.ToList(); + } + } + public class EvolutionSet5 : EvolutionSet + { + private static EvolutionMethod getMethod(byte[] data, int offset) + { + int[] argEvos = { 6, 8, 16, 17, 18, 19, 20, 21, 22 }; + int method = BitConverter.ToUInt16(data, offset + 0); + int arg = BitConverter.ToUInt16(data, offset + 2); + int species = BitConverter.ToUInt16(data, offset + 4); + + if (method == 0) + return null; + + var evo = new EvolutionMethod + { + Method = method, + Argument = arg, + Species = species, + Level = arg, + }; + + if (argEvos.Contains(evo.Method)) + evo.Level = 0; + return evo; + } + public static List getArray(byte[] data) + { + var evos = new List(); + for (int i = 0; i <= Legal.MaxSpeciesIndex_5_B2W2; i++) + { + /* 42 bytes per species, + * for every species 7 evolutions with 6 bytes per evolution*/ + int offset = i * 42; + var m_list = new List(); + for (int j = 0; j < 7; j++) + { + EvolutionMethod m = getMethod(data, offset); + if (m != null) + m_list.Add(m); + else + break; + offset += 6; + } + evos.Add(new EvolutionSet5 { PossibleEvolutions = m_list.ToArray() }); + } + return evos.ToList(); + } + } public class EvolutionSet6 : EvolutionSet { private const int SIZE = 6; diff --git a/PKHeX/Legality/Tables3.cs b/PKHeX/Legality/Tables3.cs index 5775ee0a1..695ba62fe 100644 --- a/PKHeX/Legality/Tables3.cs +++ b/PKHeX/Legality/Tables3.cs @@ -4,6 +4,7 @@ namespace PKHeX.Core { public static partial class Legal { + internal const int MaxSpeciesIndex_3 = 412; internal const int MaxSpeciesID_3 = 386; internal const int MaxMoveID_3 = 354; internal const int MaxItemID_3 = 374; diff --git a/PKHeX/Legality/Tables4.cs b/PKHeX/Legality/Tables4.cs index ac7de901d..74ea6f381 100644 --- a/PKHeX/Legality/Tables4.cs +++ b/PKHeX/Legality/Tables4.cs @@ -4,6 +4,8 @@ namespace PKHeX.Core { public static partial class Legal { + internal const int MaxSpeciesIndex_4_DP = 500; + internal const int MaxSpeciesIndex_4_HGSSPt = 507; internal const int MaxSpeciesID_4 = 493; internal const int MaxMoveID_4 = 467; internal const int MaxItemID_4_DP = 464; diff --git a/PKHeX/Legality/Tables5.cs b/PKHeX/Legality/Tables5.cs index 5264d5fdd..d0c348700 100644 --- a/PKHeX/Legality/Tables5.cs +++ b/PKHeX/Legality/Tables5.cs @@ -4,6 +4,8 @@ namespace PKHeX.Core { public static partial class Legal { + internal const int MaxSpeciesIndex_5_BW = 667; + internal const int MaxSpeciesIndex_5_B2W2 = 708; internal const int MaxSpeciesID_5 = 649; internal const int MaxMoveID_5 = 559; internal const int MaxItemID_5_BW = 632; From 994a6844aa4a89e4925126d05e11b35675c2915e Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 13:29:18 +0100 Subject: [PATCH 03/12] File for encounters 3 and 5 and evos 3 to 5 --- PKHeX/Properties/Resources.Designer.cs | 5590 ++++++++++++------------ PKHeX/Properties/Resources.resx | 39 + PKHeX/Resources/byte/encounter_d.pkl | Bin 0 -> 66228 bytes PKHeX/Resources/byte/encounter_e.pkl | Bin 0 -> 9442 bytes PKHeX/Resources/byte/encounter_fr.pkl | Bin 0 -> 10354 bytes PKHeX/Resources/byte/encounter_hg.pkl | Bin 0 -> 27278 bytes PKHeX/Resources/byte/encounter_lg.pkl | Bin 0 -> 10354 bytes PKHeX/Resources/byte/encounter_p.pkl | Bin 0 -> 66228 bytes PKHeX/Resources/byte/encounter_pt.pkl | Bin 0 -> 66228 bytes PKHeX/Resources/byte/encounter_r.pkl | Bin 0 -> 7763 bytes PKHeX/Resources/byte/encounter_s.pkl | Bin 0 -> 7763 bytes PKHeX/Resources/byte/encounter_ss.pkl | Bin 0 -> 27278 bytes PKHeX/Resources/byte/evos_g3.pkl | Bin 0 -> 16480 bytes PKHeX/Resources/byte/evos_g4.pkl | Bin 0 -> 22352 bytes PKHeX/Resources/byte/evos_g5.pkl | Bin 0 -> 29778 bytes 15 files changed, 2899 insertions(+), 2730 deletions(-) create mode 100644 PKHeX/Resources/byte/encounter_d.pkl create mode 100644 PKHeX/Resources/byte/encounter_e.pkl create mode 100644 PKHeX/Resources/byte/encounter_fr.pkl create mode 100644 PKHeX/Resources/byte/encounter_hg.pkl create mode 100644 PKHeX/Resources/byte/encounter_lg.pkl create mode 100644 PKHeX/Resources/byte/encounter_p.pkl create mode 100644 PKHeX/Resources/byte/encounter_pt.pkl create mode 100644 PKHeX/Resources/byte/encounter_r.pkl create mode 100644 PKHeX/Resources/byte/encounter_s.pkl create mode 100644 PKHeX/Resources/byte/encounter_ss.pkl create mode 100644 PKHeX/Resources/byte/evos_g3.pkl create mode 100644 PKHeX/Resources/byte/evos_g4.pkl create mode 100644 PKHeX/Resources/byte/evos_g5.pkl diff --git a/PKHeX/Properties/Resources.Designer.cs b/PKHeX/Properties/Resources.Designer.cs index 2d029d417..c422427f8 100644 --- a/PKHeX/Properties/Resources.Designer.cs +++ b/PKHeX/Properties/Resources.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Este código fue generado por una herramienta. +// Versión de runtime:4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si +// se vuelve a generar el código. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace PKHeX.Core.Properties { /// - /// A strongly-typed resource class, for looking up localized strings, etc. + /// Clase de recurso fuertemente tipado, para buscar cadenas traducidas, etc. /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. + // StronglyTypedResourceBuilder generó automáticamente esta clase + // a través de una herramienta como ResGen o Visual Studio. + // Para agregar o quitar un miembro, edite el archivo .ResX y, a continuación, vuelva a ejecutar ResGen + // con la opción /str o recompile su proyecto de VS. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ public class Resources { } /// - /// Returns the cached ResourceManager instance used by this class. + /// Devuelve la instancia de ResourceManager almacenada en caché utilizada por esta clase. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ public class Resources { } /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. + /// Reemplaza la propiedad CurrentUICulture del subproceso actual para todas las + /// búsquedas de recursos mediante esta clase de recurso fuertemente tipado. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _0 { get { @@ -71,7 +71,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _1 { get { @@ -81,7 +81,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _10 { get { @@ -91,7 +91,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _100 { get { @@ -101,7 +101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _101 { get { @@ -111,7 +111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _102 { get { @@ -121,7 +121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _103 { get { @@ -131,7 +131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _103_1 { get { @@ -141,7 +141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _104 { get { @@ -151,7 +151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _105 { get { @@ -161,7 +161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _105_1 { get { @@ -171,7 +171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _106 { get { @@ -181,7 +181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _107 { get { @@ -191,7 +191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _108 { get { @@ -201,7 +201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _109 { get { @@ -211,7 +211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _11 { get { @@ -221,7 +221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _110 { get { @@ -231,7 +231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _111 { get { @@ -241,7 +241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _112 { get { @@ -251,7 +251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _113 { get { @@ -261,7 +261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _114 { get { @@ -271,7 +271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _115 { get { @@ -281,7 +281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _115_1 { get { @@ -291,7 +291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _116 { get { @@ -301,7 +301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _117 { get { @@ -311,7 +311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _118 { get { @@ -321,7 +321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _119 { get { @@ -331,7 +331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _12 { get { @@ -341,7 +341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _120 { get { @@ -351,7 +351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _121 { get { @@ -361,7 +361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _122 { get { @@ -371,7 +371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _123 { get { @@ -381,7 +381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _124 { get { @@ -391,7 +391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _125 { get { @@ -401,7 +401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _126 { get { @@ -411,7 +411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _127 { get { @@ -421,7 +421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _127_1 { get { @@ -431,7 +431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _128 { get { @@ -441,7 +441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _129 { get { @@ -451,7 +451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _13 { get { @@ -461,7 +461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _130 { get { @@ -471,7 +471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _130_1 { get { @@ -481,7 +481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _131 { get { @@ -491,7 +491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _132 { get { @@ -501,7 +501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _133 { get { @@ -511,7 +511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _134 { get { @@ -521,7 +521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _135 { get { @@ -531,7 +531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _136 { get { @@ -541,7 +541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _137 { get { @@ -551,7 +551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _138 { get { @@ -561,7 +561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _139 { get { @@ -571,7 +571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _14 { get { @@ -581,7 +581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _140 { get { @@ -591,7 +591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _141 { get { @@ -601,7 +601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _142 { get { @@ -611,7 +611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _142_1 { get { @@ -621,7 +621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _143 { get { @@ -631,7 +631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _144 { get { @@ -641,7 +641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _145 { get { @@ -651,7 +651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _146 { get { @@ -661,7 +661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _147 { get { @@ -671,7 +671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _148 { get { @@ -681,7 +681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _149 { get { @@ -691,7 +691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _15 { get { @@ -701,7 +701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _15_1 { get { @@ -711,7 +711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150 { get { @@ -721,7 +721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150_1 { get { @@ -731,7 +731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150_2 { get { @@ -741,7 +741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _151 { get { @@ -751,7 +751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _152 { get { @@ -761,7 +761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _153 { get { @@ -771,7 +771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _154 { get { @@ -781,7 +781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _155 { get { @@ -791,7 +791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _156 { get { @@ -801,7 +801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _157 { get { @@ -811,7 +811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _158 { get { @@ -821,7 +821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _159 { get { @@ -831,7 +831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _16 { get { @@ -841,7 +841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _160 { get { @@ -851,7 +851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _161 { get { @@ -861,7 +861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _162 { get { @@ -871,7 +871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _163 { get { @@ -881,7 +881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _164 { get { @@ -891,7 +891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _165 { get { @@ -901,7 +901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _166 { get { @@ -911,7 +911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _167 { get { @@ -921,7 +921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _168 { get { @@ -931,7 +931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _169 { get { @@ -941,7 +941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _17 { get { @@ -951,7 +951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _170 { get { @@ -961,7 +961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _171 { get { @@ -971,7 +971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _172 { get { @@ -981,7 +981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _172_1 { get { @@ -991,7 +991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _173 { get { @@ -1001,7 +1001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _174 { get { @@ -1011,7 +1011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _175 { get { @@ -1021,7 +1021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _176 { get { @@ -1031,7 +1031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _177 { get { @@ -1041,7 +1041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _178 { get { @@ -1051,7 +1051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _179 { get { @@ -1061,7 +1061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _18 { get { @@ -1071,7 +1071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _18_1 { get { @@ -1081,7 +1081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _180 { get { @@ -1091,7 +1091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _181 { get { @@ -1101,7 +1101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _181_1 { get { @@ -1111,7 +1111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _182 { get { @@ -1121,7 +1121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _183 { get { @@ -1131,7 +1131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _184 { get { @@ -1141,7 +1141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _185 { get { @@ -1151,7 +1151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _186 { get { @@ -1161,7 +1161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _187 { get { @@ -1171,7 +1171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _188 { get { @@ -1181,7 +1181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _189 { get { @@ -1191,7 +1191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _19 { get { @@ -1201,7 +1201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _19_1 { get { @@ -1211,7 +1211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _190 { get { @@ -1221,7 +1221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _191 { get { @@ -1231,7 +1231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _192 { get { @@ -1241,7 +1241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _193 { get { @@ -1251,7 +1251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _194 { get { @@ -1261,7 +1261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _195 { get { @@ -1271,7 +1271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _196 { get { @@ -1281,7 +1281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _197 { get { @@ -1291,7 +1291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _198 { get { @@ -1301,7 +1301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _199 { get { @@ -1311,7 +1311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _2 { get { @@ -1321,7 +1321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _20 { get { @@ -1331,7 +1331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _20_1 { get { @@ -1341,7 +1341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _200 { get { @@ -1351,7 +1351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201 { get { @@ -1361,7 +1361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_1 { get { @@ -1371,7 +1371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_10 { get { @@ -1381,7 +1381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_11 { get { @@ -1391,7 +1391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_12 { get { @@ -1401,7 +1401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_13 { get { @@ -1411,7 +1411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_14 { get { @@ -1421,7 +1421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_15 { get { @@ -1431,7 +1431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_16 { get { @@ -1441,7 +1441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_17 { get { @@ -1451,7 +1451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_18 { get { @@ -1461,7 +1461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_19 { get { @@ -1471,7 +1471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_2 { get { @@ -1481,7 +1481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_20 { get { @@ -1491,7 +1491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_21 { get { @@ -1501,7 +1501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_22 { get { @@ -1511,7 +1511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_23 { get { @@ -1521,7 +1521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_24 { get { @@ -1531,7 +1531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_25 { get { @@ -1541,7 +1541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_26 { get { @@ -1551,7 +1551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_27 { get { @@ -1561,7 +1561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_3 { get { @@ -1571,7 +1571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_4 { get { @@ -1581,7 +1581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_5 { get { @@ -1591,7 +1591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_6 { get { @@ -1601,7 +1601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_7 { get { @@ -1611,7 +1611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_8 { get { @@ -1621,7 +1621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_9 { get { @@ -1631,7 +1631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _202 { get { @@ -1641,7 +1641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _203 { get { @@ -1651,7 +1651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _204 { get { @@ -1661,7 +1661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _205 { get { @@ -1671,7 +1671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _206 { get { @@ -1681,7 +1681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _207 { get { @@ -1691,7 +1691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _208 { get { @@ -1701,7 +1701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _208_1 { get { @@ -1711,7 +1711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _209 { get { @@ -1721,7 +1721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _21 { get { @@ -1731,7 +1731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _210 { get { @@ -1741,7 +1741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _211 { get { @@ -1751,7 +1751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _212 { get { @@ -1761,7 +1761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _212_1 { get { @@ -1771,7 +1771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _213 { get { @@ -1781,7 +1781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _214 { get { @@ -1791,7 +1791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _214_1 { get { @@ -1801,7 +1801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _215 { get { @@ -1811,7 +1811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _216 { get { @@ -1821,7 +1821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _217 { get { @@ -1831,7 +1831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _218 { get { @@ -1841,7 +1841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _219 { get { @@ -1851,7 +1851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _22 { get { @@ -1861,7 +1861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _220 { get { @@ -1871,7 +1871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _221 { get { @@ -1881,7 +1881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _222 { get { @@ -1891,7 +1891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _223 { get { @@ -1901,7 +1901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _224 { get { @@ -1911,7 +1911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _225 { get { @@ -1921,7 +1921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _226 { get { @@ -1931,7 +1931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _227 { get { @@ -1941,7 +1941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _228 { get { @@ -1951,7 +1951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _229 { get { @@ -1961,7 +1961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _229_1 { get { @@ -1971,7 +1971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _23 { get { @@ -1981,7 +1981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _230 { get { @@ -1991,7 +1991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _231 { get { @@ -2001,7 +2001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _232 { get { @@ -2011,7 +2011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _233 { get { @@ -2021,7 +2021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _234 { get { @@ -2031,7 +2031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _235 { get { @@ -2041,7 +2041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _236 { get { @@ -2051,7 +2051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _237 { get { @@ -2061,7 +2061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _238 { get { @@ -2071,7 +2071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _239 { get { @@ -2081,7 +2081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _24 { get { @@ -2091,7 +2091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _240 { get { @@ -2101,7 +2101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _241 { get { @@ -2111,7 +2111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _242 { get { @@ -2121,7 +2121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _243 { get { @@ -2131,7 +2131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _244 { get { @@ -2141,7 +2141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _245 { get { @@ -2151,7 +2151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _246 { get { @@ -2161,7 +2161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _247 { get { @@ -2171,7 +2171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _248 { get { @@ -2181,7 +2181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _248_1 { get { @@ -2191,7 +2191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _249 { get { @@ -2201,7 +2201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25 { get { @@ -2211,7 +2211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_1 { get { @@ -2221,7 +2221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_1c { get { @@ -2231,7 +2231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_2 { get { @@ -2241,7 +2241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_2c { get { @@ -2251,7 +2251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_3 { get { @@ -2261,7 +2261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_3c { get { @@ -2271,7 +2271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_4 { get { @@ -2281,7 +2281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_4c { get { @@ -2291,7 +2291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_5 { get { @@ -2301,7 +2301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_5c { get { @@ -2311,7 +2311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_6 { get { @@ -2321,7 +2321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_6c { get { @@ -2331,7 +2331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _250 { get { @@ -2341,7 +2341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _251 { get { @@ -2351,7 +2351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _252 { get { @@ -2361,7 +2361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _253 { get { @@ -2371,7 +2371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _254 { get { @@ -2381,7 +2381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _254_1 { get { @@ -2391,7 +2391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _255 { get { @@ -2401,7 +2401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _256 { get { @@ -2411,7 +2411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _257 { get { @@ -2421,7 +2421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _257_1 { get { @@ -2431,7 +2431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _258 { get { @@ -2441,7 +2441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _259 { get { @@ -2451,7 +2451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _26 { get { @@ -2461,7 +2461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _26_1 { get { @@ -2471,7 +2471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _260 { get { @@ -2481,7 +2481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _260_1 { get { @@ -2491,7 +2491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _261 { get { @@ -2501,7 +2501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _262 { get { @@ -2511,7 +2511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _263 { get { @@ -2521,7 +2521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _264 { get { @@ -2531,7 +2531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _265 { get { @@ -2541,7 +2541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _266 { get { @@ -2551,7 +2551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _267 { get { @@ -2561,7 +2561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _268 { get { @@ -2571,7 +2571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _269 { get { @@ -2581,7 +2581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _27 { get { @@ -2591,7 +2591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _27_1 { get { @@ -2601,7 +2601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _270 { get { @@ -2611,7 +2611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _271 { get { @@ -2621,7 +2621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _272 { get { @@ -2631,7 +2631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _273 { get { @@ -2641,7 +2641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _274 { get { @@ -2651,7 +2651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _275 { get { @@ -2661,7 +2661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _276 { get { @@ -2671,7 +2671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _277 { get { @@ -2681,7 +2681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _278 { get { @@ -2691,7 +2691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _279 { get { @@ -2701,7 +2701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _28 { get { @@ -2711,7 +2711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _28_1 { get { @@ -2721,7 +2721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _280 { get { @@ -2731,7 +2731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _281 { get { @@ -2741,7 +2741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _282 { get { @@ -2751,7 +2751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _282_1 { get { @@ -2761,7 +2761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _283 { get { @@ -2771,7 +2771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _284 { get { @@ -2781,7 +2781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _285 { get { @@ -2791,7 +2791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _286 { get { @@ -2801,7 +2801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _287 { get { @@ -2811,7 +2811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _288 { get { @@ -2821,7 +2821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _289 { get { @@ -2831,7 +2831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _29 { get { @@ -2841,7 +2841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _290 { get { @@ -2851,7 +2851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _291 { get { @@ -2861,7 +2861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _292 { get { @@ -2871,7 +2871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _293 { get { @@ -2881,7 +2881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _294 { get { @@ -2891,7 +2891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _295 { get { @@ -2901,7 +2901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _296 { get { @@ -2911,7 +2911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _297 { get { @@ -2921,7 +2921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _298 { get { @@ -2931,7 +2931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _299 { get { @@ -2941,7 +2941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _3 { get { @@ -2951,7 +2951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _3_1 { get { @@ -2961,7 +2961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _30 { get { @@ -2971,7 +2971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _300 { get { @@ -2981,7 +2981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _301 { get { @@ -2991,7 +2991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _302 { get { @@ -3001,7 +3001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _302_1 { get { @@ -3011,7 +3011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _303 { get { @@ -3021,7 +3021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _303_1 { get { @@ -3031,7 +3031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _304 { get { @@ -3041,7 +3041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _305 { get { @@ -3051,7 +3051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _306 { get { @@ -3061,7 +3061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _306_1 { get { @@ -3071,7 +3071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _307 { get { @@ -3081,7 +3081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _308 { get { @@ -3091,7 +3091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _308_1 { get { @@ -3101,7 +3101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _309 { get { @@ -3111,7 +3111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _31 { get { @@ -3121,7 +3121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _310 { get { @@ -3131,7 +3131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _310_1 { get { @@ -3141,7 +3141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _311 { get { @@ -3151,7 +3151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _312 { get { @@ -3161,7 +3161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _313 { get { @@ -3171,7 +3171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _314 { get { @@ -3181,7 +3181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _315 { get { @@ -3191,7 +3191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _316 { get { @@ -3201,7 +3201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _317 { get { @@ -3211,7 +3211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _318 { get { @@ -3221,7 +3221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _319 { get { @@ -3231,7 +3231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _319_1 { get { @@ -3241,7 +3241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _32 { get { @@ -3251,7 +3251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _320 { get { @@ -3261,7 +3261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _321 { get { @@ -3271,7 +3271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _322 { get { @@ -3281,7 +3281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _323 { get { @@ -3291,7 +3291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _323_1 { get { @@ -3301,7 +3301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _324 { get { @@ -3311,7 +3311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _325 { get { @@ -3321,7 +3321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _326 { get { @@ -3331,7 +3331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _327 { get { @@ -3341,7 +3341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _328 { get { @@ -3351,7 +3351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _329 { get { @@ -3361,7 +3361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _33 { get { @@ -3371,7 +3371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _330 { get { @@ -3381,7 +3381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _331 { get { @@ -3391,7 +3391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _332 { get { @@ -3401,7 +3401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _333 { get { @@ -3411,7 +3411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _334 { get { @@ -3421,7 +3421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _334_1 { get { @@ -3431,7 +3431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _335 { get { @@ -3441,7 +3441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _336 { get { @@ -3451,7 +3451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _337 { get { @@ -3461,7 +3461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _338 { get { @@ -3471,7 +3471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _339 { get { @@ -3481,7 +3481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _34 { get { @@ -3491,7 +3491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _340 { get { @@ -3501,7 +3501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _341 { get { @@ -3511,7 +3511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _342 { get { @@ -3521,7 +3521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _343 { get { @@ -3531,7 +3531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _344 { get { @@ -3541,7 +3541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _345 { get { @@ -3551,7 +3551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _346 { get { @@ -3561,7 +3561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _347 { get { @@ -3571,7 +3571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _348 { get { @@ -3581,7 +3581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _349 { get { @@ -3591,7 +3591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _35 { get { @@ -3601,7 +3601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _350 { get { @@ -3611,7 +3611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351 { get { @@ -3621,7 +3621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_1 { get { @@ -3631,7 +3631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_2 { get { @@ -3641,7 +3641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_3 { get { @@ -3651,7 +3651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _352 { get { @@ -3661,7 +3661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _353 { get { @@ -3671,7 +3671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _354 { get { @@ -3681,7 +3681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _354_1 { get { @@ -3691,7 +3691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _355 { get { @@ -3701,7 +3701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _356 { get { @@ -3711,7 +3711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _357 { get { @@ -3721,7 +3721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _358 { get { @@ -3731,7 +3731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _359 { get { @@ -3741,7 +3741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _359_1 { get { @@ -3751,7 +3751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _36 { get { @@ -3761,7 +3761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _360 { get { @@ -3771,7 +3771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _361 { get { @@ -3781,7 +3781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _362 { get { @@ -3791,7 +3791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _362_1 { get { @@ -3801,7 +3801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _363 { get { @@ -3811,7 +3811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _364 { get { @@ -3821,7 +3821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _365 { get { @@ -3831,7 +3831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _366 { get { @@ -3841,7 +3841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _367 { get { @@ -3851,7 +3851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _368 { get { @@ -3861,7 +3861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _369 { get { @@ -3871,7 +3871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _37 { get { @@ -3881,7 +3881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _37_1 { get { @@ -3891,7 +3891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _370 { get { @@ -3901,7 +3901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _371 { get { @@ -3911,7 +3911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _372 { get { @@ -3921,7 +3921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _373 { get { @@ -3931,7 +3931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _373_1 { get { @@ -3941,7 +3941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _374 { get { @@ -3951,7 +3951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _375 { get { @@ -3961,7 +3961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _376 { get { @@ -3971,7 +3971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _376_1 { get { @@ -3981,7 +3981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _377 { get { @@ -3991,7 +3991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _378 { get { @@ -4001,7 +4001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _379 { get { @@ -4011,7 +4011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _38 { get { @@ -4021,7 +4021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _38_1 { get { @@ -4031,7 +4031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _380 { get { @@ -4041,7 +4041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _380_1 { get { @@ -4051,7 +4051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _381 { get { @@ -4061,7 +4061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _381_1 { get { @@ -4071,7 +4071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _382 { get { @@ -4081,7 +4081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _382_1 { get { @@ -4091,7 +4091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _383 { get { @@ -4101,7 +4101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _383_1 { get { @@ -4111,7 +4111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _384 { get { @@ -4121,7 +4121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _384_1 { get { @@ -4131,7 +4131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _385 { get { @@ -4141,7 +4141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386 { get { @@ -4151,7 +4151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_1 { get { @@ -4161,7 +4161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_2 { get { @@ -4171,7 +4171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_3 { get { @@ -4181,7 +4181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _387 { get { @@ -4191,7 +4191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _388 { get { @@ -4201,7 +4201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _389 { get { @@ -4211,7 +4211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _39 { get { @@ -4221,7 +4221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _390 { get { @@ -4231,7 +4231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _391 { get { @@ -4241,7 +4241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _392 { get { @@ -4251,7 +4251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _393 { get { @@ -4261,7 +4261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _394 { get { @@ -4271,7 +4271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _395 { get { @@ -4281,7 +4281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _396 { get { @@ -4291,7 +4291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _397 { get { @@ -4301,7 +4301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _398 { get { @@ -4311,7 +4311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _399 { get { @@ -4321,7 +4321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _4 { get { @@ -4331,7 +4331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _40 { get { @@ -4341,7 +4341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _400 { get { @@ -4351,7 +4351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _401 { get { @@ -4361,7 +4361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _402 { get { @@ -4371,7 +4371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _403 { get { @@ -4381,7 +4381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _404 { get { @@ -4391,7 +4391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _405 { get { @@ -4401,7 +4401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _406 { get { @@ -4411,7 +4411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _407 { get { @@ -4421,7 +4421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _408 { get { @@ -4431,7 +4431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _409 { get { @@ -4441,7 +4441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _41 { get { @@ -4451,7 +4451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _410 { get { @@ -4461,7 +4461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _411 { get { @@ -4471,7 +4471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412 { get { @@ -4481,7 +4481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412_1 { get { @@ -4491,7 +4491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412_2 { get { @@ -4501,7 +4501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413 { get { @@ -4511,7 +4511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413_1 { get { @@ -4521,7 +4521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413_2 { get { @@ -4531,7 +4531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _414 { get { @@ -4541,7 +4541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _415 { get { @@ -4551,7 +4551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _416 { get { @@ -4561,7 +4561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _417 { get { @@ -4571,7 +4571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _418 { get { @@ -4581,7 +4581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _419 { get { @@ -4591,7 +4591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _42 { get { @@ -4601,7 +4601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _420 { get { @@ -4611,7 +4611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _421 { get { @@ -4621,7 +4621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _421_1 { get { @@ -4631,7 +4631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _422 { get { @@ -4641,7 +4641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _422_1 { get { @@ -4651,7 +4651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _423 { get { @@ -4661,7 +4661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _423_1 { get { @@ -4671,7 +4671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _424 { get { @@ -4681,7 +4681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _425 { get { @@ -4691,7 +4691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _426 { get { @@ -4701,7 +4701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _427 { get { @@ -4711,7 +4711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _428 { get { @@ -4721,7 +4721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _428_1 { get { @@ -4731,7 +4731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _429 { get { @@ -4741,7 +4741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _43 { get { @@ -4751,7 +4751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _430 { get { @@ -4761,7 +4761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _431 { get { @@ -4771,7 +4771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _432 { get { @@ -4781,7 +4781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _433 { get { @@ -4791,7 +4791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _434 { get { @@ -4801,7 +4801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _435 { get { @@ -4811,7 +4811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _436 { get { @@ -4821,7 +4821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _437 { get { @@ -4831,7 +4831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _438 { get { @@ -4841,7 +4841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _439 { get { @@ -4851,7 +4851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _44 { get { @@ -4861,7 +4861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _440 { get { @@ -4871,7 +4871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _441 { get { @@ -4881,7 +4881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _442 { get { @@ -4891,7 +4891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _443 { get { @@ -4901,7 +4901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _444 { get { @@ -4911,7 +4911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _445 { get { @@ -4921,7 +4921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _445_1 { get { @@ -4931,7 +4931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _446 { get { @@ -4941,7 +4941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _447 { get { @@ -4951,7 +4951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _448 { get { @@ -4961,7 +4961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _448_1 { get { @@ -4971,7 +4971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _449 { get { @@ -4981,7 +4981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _45 { get { @@ -4991,7 +4991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _450 { get { @@ -5001,7 +5001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _451 { get { @@ -5011,7 +5011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _452 { get { @@ -5021,7 +5021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _453 { get { @@ -5031,7 +5031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _454 { get { @@ -5041,7 +5041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _455 { get { @@ -5051,7 +5051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _456 { get { @@ -5061,7 +5061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _457 { get { @@ -5071,7 +5071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _458 { get { @@ -5081,7 +5081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _459 { get { @@ -5091,7 +5091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _46 { get { @@ -5101,7 +5101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _460 { get { @@ -5111,7 +5111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _460_1 { get { @@ -5121,7 +5121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _461 { get { @@ -5131,7 +5131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _462 { get { @@ -5141,7 +5141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _463 { get { @@ -5151,7 +5151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _464 { get { @@ -5161,7 +5161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _465 { get { @@ -5171,7 +5171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _466 { get { @@ -5181,7 +5181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _467 { get { @@ -5191,7 +5191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _468 { get { @@ -5201,7 +5201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _469 { get { @@ -5211,7 +5211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _47 { get { @@ -5221,7 +5221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _470 { get { @@ -5231,7 +5231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _471 { get { @@ -5241,7 +5241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _472 { get { @@ -5251,7 +5251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _473 { get { @@ -5261,7 +5261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _474 { get { @@ -5271,7 +5271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _475 { get { @@ -5281,7 +5281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _475_1 { get { @@ -5291,7 +5291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _476 { get { @@ -5301,7 +5301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _477 { get { @@ -5311,7 +5311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _478 { get { @@ -5321,7 +5321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479 { get { @@ -5331,7 +5331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_1 { get { @@ -5341,7 +5341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_2 { get { @@ -5351,7 +5351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_3 { get { @@ -5361,7 +5361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_4 { get { @@ -5371,7 +5371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_5 { get { @@ -5381,7 +5381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _48 { get { @@ -5391,7 +5391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _480 { get { @@ -5401,7 +5401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _481 { get { @@ -5411,7 +5411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _482 { get { @@ -5421,7 +5421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _483 { get { @@ -5431,7 +5431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _484 { get { @@ -5441,7 +5441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _485 { get { @@ -5451,7 +5451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _486 { get { @@ -5461,7 +5461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _487 { get { @@ -5471,7 +5471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _487_1 { get { @@ -5481,7 +5481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _488 { get { @@ -5491,7 +5491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _489 { get { @@ -5501,7 +5501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _49 { get { @@ -5511,7 +5511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _490 { get { @@ -5521,7 +5521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _491 { get { @@ -5531,7 +5531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _492 { get { @@ -5541,7 +5541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _492_1 { get { @@ -5551,7 +5551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _493 { get { @@ -5561,7 +5561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _494 { get { @@ -5571,7 +5571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _495 { get { @@ -5581,7 +5581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _496 { get { @@ -5591,7 +5591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _497 { get { @@ -5601,7 +5601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _498 { get { @@ -5611,7 +5611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _499 { get { @@ -5621,7 +5621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _5 { get { @@ -5631,7 +5631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _50 { get { @@ -5641,7 +5641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _50_1 { get { @@ -5651,7 +5651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _500 { get { @@ -5661,7 +5661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _501 { get { @@ -5671,7 +5671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _502 { get { @@ -5681,7 +5681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _503 { get { @@ -5691,7 +5691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _504 { get { @@ -5701,7 +5701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _505 { get { @@ -5711,7 +5711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _506 { get { @@ -5721,7 +5721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _507 { get { @@ -5731,7 +5731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _508 { get { @@ -5741,7 +5741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _509 { get { @@ -5751,7 +5751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _51 { get { @@ -5761,7 +5761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _51_1 { get { @@ -5771,7 +5771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _510 { get { @@ -5781,7 +5781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _511 { get { @@ -5791,7 +5791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _512 { get { @@ -5801,7 +5801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _513 { get { @@ -5811,7 +5811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _514 { get { @@ -5821,7 +5821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _515 { get { @@ -5831,7 +5831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _516 { get { @@ -5841,7 +5841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _517 { get { @@ -5851,7 +5851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _518 { get { @@ -5861,7 +5861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _519 { get { @@ -5871,7 +5871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _52 { get { @@ -5881,7 +5881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _52_1 { get { @@ -5891,7 +5891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _520 { get { @@ -5901,7 +5901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _521 { get { @@ -5911,7 +5911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _521_1 { get { @@ -5921,7 +5921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _522 { get { @@ -5931,7 +5931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _523 { get { @@ -5941,7 +5941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _524 { get { @@ -5951,7 +5951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _525 { get { @@ -5961,7 +5961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _526 { get { @@ -5971,7 +5971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _527 { get { @@ -5981,7 +5981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _528 { get { @@ -5991,7 +5991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _529 { get { @@ -6001,7 +6001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _53 { get { @@ -6011,7 +6011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _53_1 { get { @@ -6021,7 +6021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _530 { get { @@ -6031,7 +6031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _531 { get { @@ -6041,7 +6041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _531_1 { get { @@ -6051,7 +6051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _532 { get { @@ -6061,7 +6061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _533 { get { @@ -6071,7 +6071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _534 { get { @@ -6081,7 +6081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _535 { get { @@ -6091,7 +6091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _536 { get { @@ -6101,7 +6101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _537 { get { @@ -6111,7 +6111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _538 { get { @@ -6121,7 +6121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _539 { get { @@ -6131,7 +6131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _54 { get { @@ -6141,7 +6141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _540 { get { @@ -6151,7 +6151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _541 { get { @@ -6161,7 +6161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _542 { get { @@ -6171,7 +6171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _543 { get { @@ -6181,7 +6181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _544 { get { @@ -6191,7 +6191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _545 { get { @@ -6201,7 +6201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _546 { get { @@ -6211,7 +6211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _547 { get { @@ -6221,7 +6221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _548 { get { @@ -6231,7 +6231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _549 { get { @@ -6241,7 +6241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _55 { get { @@ -6251,7 +6251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _550 { get { @@ -6261,7 +6261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _550_1 { get { @@ -6271,7 +6271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _551 { get { @@ -6281,7 +6281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _552 { get { @@ -6291,7 +6291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _553 { get { @@ -6301,7 +6301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _554 { get { @@ -6311,7 +6311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _555 { get { @@ -6321,7 +6321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _555_1 { get { @@ -6331,7 +6331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _556 { get { @@ -6341,7 +6341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _557 { get { @@ -6351,7 +6351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _558 { get { @@ -6361,7 +6361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _559 { get { @@ -6371,7 +6371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _56 { get { @@ -6381,7 +6381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _560 { get { @@ -6391,7 +6391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _561 { get { @@ -6401,7 +6401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _562 { get { @@ -6411,7 +6411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _563 { get { @@ -6421,7 +6421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _564 { get { @@ -6431,7 +6431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _565 { get { @@ -6441,7 +6441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _566 { get { @@ -6451,7 +6451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _567 { get { @@ -6461,7 +6461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _568 { get { @@ -6471,7 +6471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _569 { get { @@ -6481,7 +6481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _57 { get { @@ -6491,7 +6491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _570 { get { @@ -6501,7 +6501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _571 { get { @@ -6511,7 +6511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _572 { get { @@ -6521,7 +6521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _573 { get { @@ -6531,7 +6531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _574 { get { @@ -6541,7 +6541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _575 { get { @@ -6551,7 +6551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _576 { get { @@ -6561,7 +6561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _577 { get { @@ -6571,7 +6571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _578 { get { @@ -6581,7 +6581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _579 { get { @@ -6591,7 +6591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _58 { get { @@ -6601,7 +6601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _580 { get { @@ -6611,7 +6611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _581 { get { @@ -6621,7 +6621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _582 { get { @@ -6631,7 +6631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _583 { get { @@ -6641,7 +6641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _584 { get { @@ -6651,7 +6651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585 { get { @@ -6661,7 +6661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_1 { get { @@ -6671,7 +6671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_2 { get { @@ -6681,7 +6681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_3 { get { @@ -6691,7 +6691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586 { get { @@ -6701,7 +6701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_1 { get { @@ -6711,7 +6711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_2 { get { @@ -6721,7 +6721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_3 { get { @@ -6731,7 +6731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _587 { get { @@ -6741,7 +6741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _588 { get { @@ -6751,7 +6751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _589 { get { @@ -6761,7 +6761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _59 { get { @@ -6771,7 +6771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _590 { get { @@ -6781,7 +6781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _591 { get { @@ -6791,7 +6791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _592 { get { @@ -6801,7 +6801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _592_1 { get { @@ -6811,7 +6811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _593 { get { @@ -6821,7 +6821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _593_1 { get { @@ -6831,7 +6831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _594 { get { @@ -6841,7 +6841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _595 { get { @@ -6851,7 +6851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _596 { get { @@ -6861,7 +6861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _597 { get { @@ -6871,7 +6871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _598 { get { @@ -6881,7 +6881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _599 { get { @@ -6891,7 +6891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6 { get { @@ -6901,7 +6901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6_1 { get { @@ -6911,7 +6911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6_2 { get { @@ -6921,7 +6921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _60 { get { @@ -6931,7 +6931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _600 { get { @@ -6941,7 +6941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _601 { get { @@ -6951,7 +6951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _602 { get { @@ -6961,7 +6961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _603 { get { @@ -6971,7 +6971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _604 { get { @@ -6981,7 +6981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _605 { get { @@ -6991,7 +6991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _606 { get { @@ -7001,7 +7001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _607 { get { @@ -7011,7 +7011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _608 { get { @@ -7021,7 +7021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _609 { get { @@ -7031,7 +7031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _61 { get { @@ -7041,7 +7041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _610 { get { @@ -7051,7 +7051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _611 { get { @@ -7061,7 +7061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _612 { get { @@ -7071,7 +7071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _613 { get { @@ -7081,7 +7081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _614 { get { @@ -7091,7 +7091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _615 { get { @@ -7101,7 +7101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _616 { get { @@ -7111,7 +7111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _617 { get { @@ -7121,7 +7121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _618 { get { @@ -7131,7 +7131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _619 { get { @@ -7141,7 +7141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _62 { get { @@ -7151,7 +7151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _620 { get { @@ -7161,7 +7161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _621 { get { @@ -7171,7 +7171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _622 { get { @@ -7181,7 +7181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _623 { get { @@ -7191,7 +7191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _624 { get { @@ -7201,7 +7201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _625 { get { @@ -7211,7 +7211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _626 { get { @@ -7221,7 +7221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _627 { get { @@ -7231,7 +7231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _628 { get { @@ -7241,7 +7241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _629 { get { @@ -7251,7 +7251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _63 { get { @@ -7261,7 +7261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _630 { get { @@ -7271,7 +7271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _631 { get { @@ -7281,7 +7281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _632 { get { @@ -7291,7 +7291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _633 { get { @@ -7301,7 +7301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _634 { get { @@ -7311,7 +7311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _635 { get { @@ -7321,7 +7321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _636 { get { @@ -7331,7 +7331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _637 { get { @@ -7341,7 +7341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _638 { get { @@ -7351,7 +7351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _639 { get { @@ -7361,7 +7361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _64 { get { @@ -7371,7 +7371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _640 { get { @@ -7381,7 +7381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _641 { get { @@ -7391,7 +7391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _641_1 { get { @@ -7401,7 +7401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _642 { get { @@ -7411,7 +7411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _642_1 { get { @@ -7421,7 +7421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _643 { get { @@ -7431,7 +7431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _644 { get { @@ -7441,7 +7441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _645 { get { @@ -7451,7 +7451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _645_1 { get { @@ -7461,7 +7461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646 { get { @@ -7471,7 +7471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646_1 { get { @@ -7481,7 +7481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646_2 { get { @@ -7491,7 +7491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _647 { get { @@ -7501,7 +7501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _647_1 { get { @@ -7511,7 +7511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _648 { get { @@ -7521,7 +7521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _648_1 { get { @@ -7531,7 +7531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649 { get { @@ -7541,7 +7541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_1 { get { @@ -7551,7 +7551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_2 { get { @@ -7561,7 +7561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_3 { get { @@ -7571,7 +7571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_4 { get { @@ -7581,7 +7581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _65 { get { @@ -7591,7 +7591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _65_1 { get { @@ -7601,7 +7601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _650 { get { @@ -7611,7 +7611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _651 { get { @@ -7621,7 +7621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _652 { get { @@ -7631,7 +7631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _653 { get { @@ -7641,7 +7641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _654 { get { @@ -7651,7 +7651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _655 { get { @@ -7661,7 +7661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _656 { get { @@ -7671,7 +7671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _657 { get { @@ -7681,7 +7681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658 { get { @@ -7691,7 +7691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658_1 { get { @@ -7701,7 +7701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658_2 { get { @@ -7711,7 +7711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _659 { get { @@ -7721,7 +7721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _66 { get { @@ -7731,7 +7731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _660 { get { @@ -7741,7 +7741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _661 { get { @@ -7751,7 +7751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _662 { get { @@ -7761,7 +7761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _663 { get { @@ -7771,7 +7771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _664 { get { @@ -7781,7 +7781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _665 { get { @@ -7791,7 +7791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666 { get { @@ -7801,7 +7801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_1 { get { @@ -7811,7 +7811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_10 { get { @@ -7821,7 +7821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_11 { get { @@ -7831,7 +7831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_12 { get { @@ -7841,7 +7841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_13 { get { @@ -7851,7 +7851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_14 { get { @@ -7861,7 +7861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_15 { get { @@ -7871,7 +7871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_16 { get { @@ -7881,7 +7881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_17 { get { @@ -7891,7 +7891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_18 { get { @@ -7901,7 +7901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_19 { get { @@ -7911,7 +7911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_2 { get { @@ -7921,7 +7921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_3 { get { @@ -7931,7 +7931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_4 { get { @@ -7941,7 +7941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_5 { get { @@ -7951,7 +7951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_6 { get { @@ -7961,7 +7961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_7 { get { @@ -7971,7 +7971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_8 { get { @@ -7981,7 +7981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_9 { get { @@ -7991,7 +7991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _667 { get { @@ -8001,7 +8001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _668 { get { @@ -8011,7 +8011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _668_1 { get { @@ -8021,7 +8021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669 { get { @@ -8031,7 +8031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_1 { get { @@ -8041,7 +8041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_2 { get { @@ -8051,7 +8051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_3 { get { @@ -8061,7 +8061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_4 { get { @@ -8071,7 +8071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _67 { get { @@ -8081,7 +8081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670 { get { @@ -8091,7 +8091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_1 { get { @@ -8101,7 +8101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_2 { get { @@ -8111,7 +8111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_3 { get { @@ -8121,7 +8121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_4 { get { @@ -8131,7 +8131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_5 { get { @@ -8141,7 +8141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671 { get { @@ -8151,7 +8151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_1 { get { @@ -8161,7 +8161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_2 { get { @@ -8171,7 +8171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_3 { get { @@ -8181,7 +8181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_4 { get { @@ -8191,7 +8191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _672 { get { @@ -8201,7 +8201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _673 { get { @@ -8211,7 +8211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _674 { get { @@ -8221,7 +8221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _675 { get { @@ -8231,7 +8231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676 { get { @@ -8241,7 +8241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_1 { get { @@ -8251,7 +8251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_2 { get { @@ -8261,7 +8261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_3 { get { @@ -8271,7 +8271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_4 { get { @@ -8281,7 +8281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_5 { get { @@ -8291,7 +8291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_6 { get { @@ -8301,7 +8301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_7 { get { @@ -8311,7 +8311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_8 { get { @@ -8321,7 +8321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_9 { get { @@ -8331,7 +8331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _677 { get { @@ -8341,7 +8341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _678 { get { @@ -8351,7 +8351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _678_1 { get { @@ -8361,7 +8361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _679 { get { @@ -8371,7 +8371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _68 { get { @@ -8381,7 +8381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _680 { get { @@ -8391,7 +8391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _681 { get { @@ -8401,7 +8401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _681_1 { get { @@ -8411,7 +8411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _682 { get { @@ -8421,7 +8421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _683 { get { @@ -8431,7 +8431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _684 { get { @@ -8441,7 +8441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _685 { get { @@ -8451,7 +8451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _686 { get { @@ -8461,7 +8461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _687 { get { @@ -8471,7 +8471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _688 { get { @@ -8481,7 +8481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _689 { get { @@ -8491,7 +8491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _69 { get { @@ -8501,7 +8501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _690 { get { @@ -8511,7 +8511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _691 { get { @@ -8521,7 +8521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _692 { get { @@ -8531,7 +8531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _693 { get { @@ -8541,7 +8541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _694 { get { @@ -8551,7 +8551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _695 { get { @@ -8561,7 +8561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _696 { get { @@ -8571,7 +8571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _697 { get { @@ -8581,7 +8581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _698 { get { @@ -8591,7 +8591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _699 { get { @@ -8601,7 +8601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6th { get { @@ -8611,7 +8611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _7 { get { @@ -8621,7 +8621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _70 { get { @@ -8631,7 +8631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _700 { get { @@ -8641,7 +8641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _701 { get { @@ -8651,7 +8651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _702 { get { @@ -8661,7 +8661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _703 { get { @@ -8671,7 +8671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _704 { get { @@ -8681,7 +8681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _705 { get { @@ -8691,7 +8691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _706 { get { @@ -8701,7 +8701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _707 { get { @@ -8711,7 +8711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _708 { get { @@ -8721,7 +8721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _709 { get { @@ -8731,7 +8731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _71 { get { @@ -8741,7 +8741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710 { get { @@ -8751,7 +8751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_1 { get { @@ -8761,7 +8761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_2 { get { @@ -8771,7 +8771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_3 { get { @@ -8781,7 +8781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711 { get { @@ -8791,7 +8791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_1 { get { @@ -8801,7 +8801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_2 { get { @@ -8811,7 +8811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_3 { get { @@ -8821,7 +8821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _712 { get { @@ -8831,7 +8831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _713 { get { @@ -8841,7 +8841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _714 { get { @@ -8851,7 +8851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _715 { get { @@ -8861,7 +8861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _716 { get { @@ -8871,7 +8871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _716_1 { get { @@ -8881,7 +8881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _717 { get { @@ -8891,7 +8891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718 { get { @@ -8901,7 +8901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_1 { get { @@ -8911,7 +8911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_2 { get { @@ -8921,7 +8921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_3 { get { @@ -8931,7 +8931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_4 { get { @@ -8941,7 +8941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _719 { get { @@ -8951,7 +8951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _719_1 { get { @@ -8961,7 +8961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _72 { get { @@ -8971,7 +8971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _720 { get { @@ -8981,7 +8981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _720_1 { get { @@ -8991,7 +8991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _721 { get { @@ -9001,7 +9001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _722 { get { @@ -9011,7 +9011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _723 { get { @@ -9021,7 +9021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _724 { get { @@ -9031,7 +9031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _725 { get { @@ -9041,7 +9041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _726 { get { @@ -9051,7 +9051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _727 { get { @@ -9061,7 +9061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _728 { get { @@ -9071,7 +9071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _729 { get { @@ -9081,7 +9081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _73 { get { @@ -9091,7 +9091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _730 { get { @@ -9101,7 +9101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _731 { get { @@ -9111,7 +9111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _732 { get { @@ -9121,7 +9121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _733 { get { @@ -9131,7 +9131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _734 { get { @@ -9141,7 +9141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _735 { get { @@ -9151,7 +9151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _736 { get { @@ -9161,7 +9161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _737 { get { @@ -9171,7 +9171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _738 { get { @@ -9181,7 +9181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _739 { get { @@ -9191,7 +9191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _74 { get { @@ -9201,7 +9201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _74_1 { get { @@ -9211,7 +9211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _740 { get { @@ -9221,7 +9221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741 { get { @@ -9231,7 +9231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_1 { get { @@ -9241,7 +9241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_2 { get { @@ -9251,7 +9251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_3 { get { @@ -9261,7 +9261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _742 { get { @@ -9271,7 +9271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _743 { get { @@ -9281,7 +9281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _744 { get { @@ -9291,7 +9291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _745 { get { @@ -9301,7 +9301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _745_1 { get { @@ -9311,7 +9311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _746 { get { @@ -9321,7 +9321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _746_1 { get { @@ -9331,7 +9331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _747 { get { @@ -9341,7 +9341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _748 { get { @@ -9351,7 +9351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _749 { get { @@ -9361,7 +9361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _75 { get { @@ -9371,7 +9371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _75_1 { get { @@ -9381,7 +9381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _750 { get { @@ -9391,7 +9391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _751 { get { @@ -9401,7 +9401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _752 { get { @@ -9411,7 +9411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _753 { get { @@ -9421,7 +9421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _754 { get { @@ -9431,7 +9431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _755 { get { @@ -9441,7 +9441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _756 { get { @@ -9451,7 +9451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _757 { get { @@ -9461,7 +9461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _758 { get { @@ -9471,7 +9471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _759 { get { @@ -9481,7 +9481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _76 { get { @@ -9491,7 +9491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _76_1 { get { @@ -9501,7 +9501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _760 { get { @@ -9511,7 +9511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _761 { get { @@ -9521,7 +9521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _762 { get { @@ -9531,7 +9531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _763 { get { @@ -9541,7 +9541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _764 { get { @@ -9551,7 +9551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _765 { get { @@ -9561,7 +9561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _766 { get { @@ -9571,7 +9571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _767 { get { @@ -9581,7 +9581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _768 { get { @@ -9591,7 +9591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _769 { get { @@ -9601,7 +9601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _77 { get { @@ -9611,7 +9611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _770 { get { @@ -9621,7 +9621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _771 { get { @@ -9631,7 +9631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _772 { get { @@ -9641,7 +9641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _773 { get { @@ -9651,7 +9651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774 { get { @@ -9661,7 +9661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_1 { get { @@ -9671,7 +9671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_10 { get { @@ -9681,7 +9681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_11 { get { @@ -9691,7 +9691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_12 { get { @@ -9701,7 +9701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_13 { get { @@ -9711,7 +9711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_2 { get { @@ -9721,7 +9721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_3 { get { @@ -9731,7 +9731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_4 { get { @@ -9741,7 +9741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_5 { get { @@ -9751,7 +9751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_6 { get { @@ -9761,7 +9761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_7 { get { @@ -9771,7 +9771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_8 { get { @@ -9781,7 +9781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_9 { get { @@ -9791,7 +9791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _775 { get { @@ -9801,7 +9801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _776 { get { @@ -9811,7 +9811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _777 { get { @@ -9821,7 +9821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _778 { get { @@ -9831,7 +9831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _779 { get { @@ -9841,7 +9841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _78 { get { @@ -9851,7 +9851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _780 { get { @@ -9861,7 +9861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _781 { get { @@ -9871,7 +9871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _782 { get { @@ -9881,7 +9881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _783 { get { @@ -9891,7 +9891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _784 { get { @@ -9901,7 +9901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _785 { get { @@ -9911,7 +9911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _786 { get { @@ -9921,7 +9921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _787 { get { @@ -9931,7 +9931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _788 { get { @@ -9941,7 +9941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _789 { get { @@ -9951,7 +9951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _79 { get { @@ -9961,7 +9961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _790 { get { @@ -9971,7 +9971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _791 { get { @@ -9981,7 +9981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _792 { get { @@ -9991,7 +9991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _793 { get { @@ -10001,7 +10001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _794 { get { @@ -10011,7 +10011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _795 { get { @@ -10021,7 +10021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _796 { get { @@ -10031,7 +10031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _797 { get { @@ -10041,7 +10041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _798 { get { @@ -10051,7 +10051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _799 { get { @@ -10061,7 +10061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _8 { get { @@ -10071,7 +10071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _80 { get { @@ -10081,7 +10081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _80_1 { get { @@ -10091,7 +10091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _800 { get { @@ -10101,7 +10101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _801 { get { @@ -10111,7 +10111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _801_1 { get { @@ -10121,7 +10121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _802 { get { @@ -10131,7 +10131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _81 { get { @@ -10141,7 +10141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _82 { get { @@ -10151,7 +10151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _83 { get { @@ -10161,7 +10161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _84 { get { @@ -10171,7 +10171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _85 { get { @@ -10181,7 +10181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _86 { get { @@ -10191,7 +10191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _87 { get { @@ -10201,7 +10201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _88 { get { @@ -10211,7 +10211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _88_1 { get { @@ -10221,7 +10221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _89 { get { @@ -10231,7 +10231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _89_1 { get { @@ -10241,7 +10241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _9 { get { @@ -10251,7 +10251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _9_1 { get { @@ -10261,7 +10261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _90 { get { @@ -10271,7 +10271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _91 { get { @@ -10281,7 +10281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _92 { get { @@ -10291,7 +10291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _93 { get { @@ -10301,7 +10301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _94 { get { @@ -10311,7 +10311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _94_1 { get { @@ -10321,7 +10321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _95 { get { @@ -10331,7 +10331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _96 { get { @@ -10341,7 +10341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _97 { get { @@ -10351,7 +10351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _98 { get { @@ -10361,7 +10361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _99 { get { @@ -10371,7 +10371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball1 { get { @@ -10381,7 +10381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball10 { get { @@ -10391,7 +10391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball11 { get { @@ -10401,7 +10401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball12 { get { @@ -10411,7 +10411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball13 { get { @@ -10421,7 +10421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball14 { get { @@ -10431,7 +10431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball15 { get { @@ -10441,7 +10441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball16 { get { @@ -10451,7 +10451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball17 { get { @@ -10461,7 +10461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball18 { get { @@ -10471,7 +10471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball19 { get { @@ -10481,7 +10481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball2 { get { @@ -10491,7 +10491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball20 { get { @@ -10501,7 +10501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball21 { get { @@ -10511,7 +10511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball22 { get { @@ -10521,7 +10521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball23 { get { @@ -10531,7 +10531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball24 { get { @@ -10541,7 +10541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball25 { get { @@ -10551,7 +10551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball26 { get { @@ -10561,7 +10561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball3 { get { @@ -10571,7 +10571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball4 { get { @@ -10581,7 +10581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball5 { get { @@ -10591,7 +10591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball6 { get { @@ -10601,7 +10601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball7 { get { @@ -10611,7 +10611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball8 { get { @@ -10621,7 +10621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball9 { get { @@ -10631,7 +10631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap about { get { @@ -10641,7 +10641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap alora { get { @@ -10651,7 +10651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap anti_pokerus_icon { get { @@ -10661,7 +10661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_01 { get { @@ -10671,7 +10671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_02 { get { @@ -10681,7 +10681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_03 { get { @@ -10691,7 +10691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_04 { get { @@ -10701,7 +10701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_05 { get { @@ -10711,7 +10711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_06 { get { @@ -10721,7 +10721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_07 { get { @@ -10731,7 +10731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_08 { get { @@ -10741,7 +10741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_1 { get { @@ -10751,7 +10751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_2 { get { @@ -10761,7 +10761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_3 { get { @@ -10771,7 +10771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_4 { get { @@ -10781,7 +10781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_5 { get { @@ -10791,7 +10791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_6 { get { @@ -10801,7 +10801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_7 { get { @@ -10811,7 +10811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_8 { get { @@ -10821,7 +10821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_Free { get { @@ -10831,7 +10831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_PCItems { get { @@ -10841,7 +10841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_Z { get { @@ -10851,7 +10851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap bak { get { @@ -10861,7 +10861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_01 { get { @@ -10871,7 +10871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_02 { get { @@ -10881,7 +10881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_03 { get { @@ -10891,7 +10891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_04 { get { @@ -10901,7 +10901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_05 { get { @@ -10911,7 +10911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_06 { get { @@ -10921,7 +10921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01bw { get { @@ -10931,7 +10931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01dp { get { @@ -10941,7 +10941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01e { get { @@ -10951,7 +10951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01rs { get { @@ -10961,7 +10961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01xy { get { @@ -10971,7 +10971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02bw { get { @@ -10981,7 +10981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02dp { get { @@ -10991,7 +10991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02e { get { @@ -11001,7 +11001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02rs { get { @@ -11011,7 +11011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02xy { get { @@ -11021,7 +11021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03bw { get { @@ -11031,7 +11031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03dp { get { @@ -11041,7 +11041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03e { get { @@ -11051,7 +11051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03rs { get { @@ -11061,7 +11061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03xy { get { @@ -11071,7 +11071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04bw { get { @@ -11081,7 +11081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04dp { get { @@ -11091,7 +11091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04e { get { @@ -11101,7 +11101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04rs { get { @@ -11111,7 +11111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04xy { get { @@ -11121,7 +11121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05bw { get { @@ -11131,7 +11131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05dp { get { @@ -11141,7 +11141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05e { get { @@ -11151,7 +11151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05rs { get { @@ -11161,7 +11161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05xy { get { @@ -11171,7 +11171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06bw { get { @@ -11181,7 +11181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06dp { get { @@ -11191,7 +11191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06e { get { @@ -11201,7 +11201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06rs { get { @@ -11211,7 +11211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06xy { get { @@ -11221,7 +11221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07bw { get { @@ -11231,7 +11231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07dp { get { @@ -11241,7 +11241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07e { get { @@ -11251,7 +11251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07rs { get { @@ -11261,7 +11261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07xy { get { @@ -11271,7 +11271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08bw { get { @@ -11281,7 +11281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08dp { get { @@ -11291,7 +11291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08e { get { @@ -11301,7 +11301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08rs { get { @@ -11311,7 +11311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08xy { get { @@ -11321,7 +11321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09bw { get { @@ -11331,7 +11331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09dp { get { @@ -11341,7 +11341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09e { get { @@ -11351,7 +11351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09rs { get { @@ -11361,7 +11361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09xy { get { @@ -11371,7 +11371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10bw { get { @@ -11381,7 +11381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10dp { get { @@ -11391,7 +11391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10e { get { @@ -11401,7 +11401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10rs { get { @@ -11411,7 +11411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10xy { get { @@ -11421,7 +11421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11bw { get { @@ -11431,7 +11431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11dp { get { @@ -11441,7 +11441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11e { get { @@ -11451,7 +11451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11rs { get { @@ -11461,7 +11461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11xy { get { @@ -11471,7 +11471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12bw { get { @@ -11481,7 +11481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12dp { get { @@ -11491,7 +11491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12e { get { @@ -11501,7 +11501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12rs { get { @@ -11511,7 +11511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12xy { get { @@ -11521,7 +11521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13bw { get { @@ -11531,7 +11531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13dp { get { @@ -11541,7 +11541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13e { get { @@ -11551,7 +11551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13frlg { get { @@ -11561,7 +11561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13rs { get { @@ -11571,7 +11571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13xy { get { @@ -11581,7 +11581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14bw { get { @@ -11591,7 +11591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14dp { get { @@ -11601,7 +11601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14e { get { @@ -11611,7 +11611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14frlg { get { @@ -11621,7 +11621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14rs { get { @@ -11631,7 +11631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14xy { get { @@ -11641,7 +11641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15bw { get { @@ -11651,7 +11651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15dp { get { @@ -11661,7 +11661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15e { get { @@ -11671,7 +11671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15frlg { get { @@ -11681,7 +11681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15rs { get { @@ -11691,7 +11691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15xy { get { @@ -11701,7 +11701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16bw { get { @@ -11711,7 +11711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16dp { get { @@ -11721,7 +11721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16e { get { @@ -11731,7 +11731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16frlg { get { @@ -11741,7 +11741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16rs { get { @@ -11751,7 +11751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16xy { get { @@ -11761,7 +11761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17ao { get { @@ -11771,7 +11771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17b2w2 { get { @@ -11781,7 +11781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17bw { get { @@ -11791,7 +11791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17dp { get { @@ -11801,7 +11801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17hgss { get { @@ -11811,7 +11811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17pt { get { @@ -11821,7 +11821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17xy { get { @@ -11831,7 +11831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18ao { get { @@ -11841,7 +11841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18b2w2 { get { @@ -11851,7 +11851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18bw { get { @@ -11861,7 +11861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18dp { get { @@ -11871,7 +11871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18hgss { get { @@ -11881,7 +11881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18pt { get { @@ -11891,7 +11891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18xy { get { @@ -11901,7 +11901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19ao { get { @@ -11911,7 +11911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19b2w2 { get { @@ -11921,7 +11921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19bw { get { @@ -11931,7 +11931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19dp { get { @@ -11941,7 +11941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19hgss { get { @@ -11951,7 +11951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19pt { get { @@ -11961,7 +11961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19xy { get { @@ -11971,7 +11971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20ao { get { @@ -11981,7 +11981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20b2w2 { get { @@ -11991,7 +11991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20bw { get { @@ -12001,7 +12001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20dp { get { @@ -12011,7 +12011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20hgss { get { @@ -12021,7 +12021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20pt { get { @@ -12031,7 +12031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20xy { get { @@ -12041,7 +12041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21ao { get { @@ -12051,7 +12051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21b2w2 { get { @@ -12061,7 +12061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21bw { get { @@ -12071,7 +12071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21dp { get { @@ -12081,7 +12081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21hgss { get { @@ -12091,7 +12091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21pt { get { @@ -12101,7 +12101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21xy { get { @@ -12111,7 +12111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22ao { get { @@ -12121,7 +12121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22b2w2 { get { @@ -12131,7 +12131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22bw { get { @@ -12141,7 +12141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22dp { get { @@ -12151,7 +12151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22hgss { get { @@ -12161,7 +12161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22pt { get { @@ -12171,7 +12171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22xy { get { @@ -12181,7 +12181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23ao { get { @@ -12191,7 +12191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23b2w2 { get { @@ -12201,7 +12201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23bw { get { @@ -12211,7 +12211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23dp { get { @@ -12221,7 +12221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23hgss { get { @@ -12231,7 +12231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23pt { get { @@ -12241,7 +12241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23xy { get { @@ -12251,7 +12251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24ao { get { @@ -12261,7 +12261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24b2w2 { get { @@ -12271,7 +12271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24bw { get { @@ -12281,7 +12281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24dp { get { @@ -12291,7 +12291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24hgss { get { @@ -12301,7 +12301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24pt { get { @@ -12311,7 +12311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24xy { get { @@ -12321,7 +12321,7 @@ public class Resources { } /// - /// Looks up a localized string similar to PKHeX - By Kaphotics + /// Busca una cadena traducida similar a PKHeX - By Kaphotics ///http://projectpokemon.org/pkhex /// ///17/03/18 - New Update: @@ -12332,7 +12332,7 @@ public class Resources { /// - Fixed: Colosseum/XD Purification value editing. Thanks ArcticLoveBunny! /// - Fixed: Joyful Game Corner now editable by Emerald saves. /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string changelog { get { @@ -12341,7 +12341,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 60 Ash + /// Busca una cadena traducida similar a 60 Ash ///21 Test1 ///22 Test2 ///24 Test3. @@ -12353,7 +12353,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 148 Starter 00:Rowlet,01:Litten,02:Popplio + /// Busca una cadena traducida similar a 148 Starter 00:Rowlet,01:Litten,02:Popplio ///432 Tapu Koku 03:Battleable,04:Defeated,05:Captured ///433 Tapu Lele 01:Battleable,02:Defeated,03:Captured ///434 Tapu Bulu 01:Battleable,02:Defeated,03:Captured @@ -12366,7 +12366,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Country ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Country ID,JP,EN,FR,DE,IT,ES,ZH,KO ///1,日本,Japan,Japon,Japan,Giappone,Japón,日本,일본 ///8,アンギラ,Anguilla,Anguilla,Anguilla,Anguilla,Anguila,安圭拉,앵귈라 ///9,アンティグア・バーブーダ,Antigua and Barbuda,Antigua-et-Barbuda,Antigua und Barbuda,Antigua e Barbuda,Antigua y Barbuda,安提瓜和巴布达,앤티가 바부다 @@ -12374,7 +12374,7 @@ public class Resources { ///11,アルバ,Aruba,Aruba,Aruba,Aruba,Aruba,阿鲁巴,아루바 ///12,バハマ,Bahamas,Bahamas,Bahamas,Bahamas,Bahamas,巴哈马,바하마 ///13,バルバドス,Barbados,Barbade,Barbados,Barbados,Barbados,巴巴多斯,바베이도스 - ///14,ベリーズ,Beli [rest of string was truncated]";. + ///14,ベリーズ,Beli [resto de la cadena truncado]";. /// public static string countries { get { @@ -12383,7 +12383,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap data { get { @@ -12393,7 +12393,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap database { get { @@ -12403,7 +12403,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap dump { get { @@ -12413,7 +12413,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap egg { get { @@ -12423,7 +12423,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_ao { get { @@ -12433,7 +12433,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_bw { get { @@ -12443,7 +12443,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_c { get { @@ -12453,7 +12453,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_dppt { get { @@ -12463,7 +12463,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_gs { get { @@ -12473,7 +12473,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_hgss { get { @@ -12483,7 +12483,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_rs { get { @@ -12493,7 +12493,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_sm { get { @@ -12503,7 +12503,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_xy { get { @@ -12513,7 +12513,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_a { get { @@ -12523,7 +12523,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_b { get { @@ -12533,7 +12533,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_b2 { get { @@ -12543,7 +12543,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_blue { get { @@ -12553,7 +12553,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_crystal { get { @@ -12563,7 +12563,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_crystal_h { get { @@ -12573,7 +12573,37 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_d { + get { + object obj = ResourceManager.GetObject("encounter_d", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_e { + get { + object obj = ResourceManager.GetObject("encounter_e", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_fr { + get { + object obj = ResourceManager.GetObject("encounter_fr", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_gold { get { @@ -12583,7 +12613,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_gold_h { get { @@ -12593,7 +12623,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_gsc_f { get { @@ -12603,7 +12633,27 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_hg { + get { + object obj = ResourceManager.GetObject("encounter_hg", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_lg { + get { + object obj = ResourceManager.GetObject("encounter_lg", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_mn { get { @@ -12613,7 +12663,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_mn_sos { get { @@ -12623,7 +12673,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_o { get { @@ -12633,7 +12683,37 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_p { + get { + object obj = ResourceManager.GetObject("encounter_p", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_pt { + get { + object obj = ResourceManager.GetObject("encounter_pt", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_r { + get { + object obj = ResourceManager.GetObject("encounter_r", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_rb_f { get { @@ -12643,7 +12723,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_red { get { @@ -12653,7 +12733,17 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_s { + get { + object obj = ResourceManager.GetObject("encounter_s", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_silver { get { @@ -12663,7 +12753,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_silver_h { get { @@ -12673,7 +12763,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_sn { get { @@ -12683,7 +12773,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_sn_sos { get { @@ -12693,7 +12783,17 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_ss { + get { + object obj = ResourceManager.GetObject("encounter_ss", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_w { get { @@ -12703,7 +12803,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_w2 { get { @@ -12713,7 +12813,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_x { get { @@ -12723,7 +12823,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_y { get { @@ -12733,7 +12833,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_yellow { get { @@ -12743,7 +12843,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_yellow_f { get { @@ -12753,7 +12853,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] evos_ao { get { @@ -12763,7 +12863,37 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] evos_g3 { + get { + object obj = ResourceManager.GetObject("evos_g3", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] evos_g4 { + get { + object obj = ResourceManager.GetObject("evos_g4", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] evos_g5 { + get { + object obj = ResourceManager.GetObject("evos_g5", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] evos_gsc { get { @@ -12773,7 +12903,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] evos_rby { get { @@ -12783,7 +12913,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] evos_sm { get { @@ -12793,7 +12923,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap exit { get { @@ -12803,7 +12933,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap export { get { @@ -12813,7 +12943,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] fashion_f_sm { get { @@ -12823,7 +12953,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] fashion_f_sm_illegal { get { @@ -12833,7 +12963,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] fashion_m_sm { get { @@ -12843,7 +12973,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] fashion_m_sm_illegal { get { @@ -12853,7 +12983,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 0648 (OR) Groudon Defeated + /// Busca una cadena traducida similar a 0648 (OR) Groudon Defeated ///2839 (OR) Groudon Captured ///0647 (AS) Kyogre Defeated ///2840 (AS) Kyogre Captured @@ -12871,7 +13001,7 @@ public class Resources { ///0183 (AS) Zekrom Defeated ///2831 (AS) Zekrom Captured ///0419 (OR) Latias Defeated - ///2834 (OR) Latias Captu [rest of string was truncated]";. + ///2834 (OR) Latias Captu [resto de la cadena truncado]";. /// public static string flags_oras { get { @@ -12880,7 +13010,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 3100 Is Alolan Champion + Magearna Event Active + /// Busca una cadena traducida similar a 3100 Is Alolan Champion + Magearna Event Active ///3487 Received Magearna Gift ///1216 Received Gift Cosmog ///0499 Received Gift Type:Null @@ -12893,7 +13023,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 2237 2237 + /// Busca una cadena traducida similar a 2237 2237 ///2238 2238 ///2239 2239 ///0963 Mewtwo Defeated @@ -12920,7 +13050,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap folder { get { @@ -12930,7 +13060,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap gift { get { @@ -12940,7 +13070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap helditem { get { @@ -12950,7 +13080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] hmtm_g3 { get { @@ -12960,7 +13090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap horohoro { get { @@ -12970,7 +13100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap icon { get { @@ -12980,7 +13110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap import { get { @@ -12990,7 +13120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_1 { get { @@ -13000,7 +13130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_10 { get { @@ -13010,7 +13140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_100 { get { @@ -13020,7 +13150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_101 { get { @@ -13030,7 +13160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_102 { get { @@ -13040,7 +13170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_103 { get { @@ -13050,7 +13180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_104 { get { @@ -13060,7 +13190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_105 { get { @@ -13070,7 +13200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_106 { get { @@ -13080,7 +13210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_107 { get { @@ -13090,7 +13220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_108 { get { @@ -13100,7 +13230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_109 { get { @@ -13110,7 +13240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_11 { get { @@ -13120,7 +13250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_110 { get { @@ -13130,7 +13260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_112 { get { @@ -13140,7 +13270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_116 { get { @@ -13150,7 +13280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_117 { get { @@ -13160,7 +13290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_118 { get { @@ -13170,7 +13300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_119 { get { @@ -13180,7 +13310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_12 { get { @@ -13190,7 +13320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_13 { get { @@ -13200,7 +13330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_134 { get { @@ -13210,7 +13340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_135 { get { @@ -13220,7 +13350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_136 { get { @@ -13230,7 +13360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_14 { get { @@ -13240,7 +13370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_149 { get { @@ -13250,7 +13380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_15 { get { @@ -13260,7 +13390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_150 { get { @@ -13270,7 +13400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_151 { get { @@ -13280,7 +13410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_152 { get { @@ -13290,7 +13420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_153 { get { @@ -13300,7 +13430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_154 { get { @@ -13310,7 +13440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_155 { get { @@ -13320,7 +13450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_156 { get { @@ -13330,7 +13460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_157 { get { @@ -13340,7 +13470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_158 { get { @@ -13350,7 +13480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_159 { get { @@ -13360,7 +13490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_16 { get { @@ -13370,7 +13500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_160 { get { @@ -13380,7 +13510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_161 { get { @@ -13390,7 +13520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_162 { get { @@ -13400,7 +13530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_163 { get { @@ -13410,7 +13540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_164 { get { @@ -13420,7 +13550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_165 { get { @@ -13430,7 +13560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_166 { get { @@ -13440,7 +13570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_167 { get { @@ -13450,7 +13580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_168 { get { @@ -13460,7 +13590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_169 { get { @@ -13470,7 +13600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_17 { get { @@ -13480,7 +13610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_170 { get { @@ -13490,7 +13620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_171 { get { @@ -13500,7 +13630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_172 { get { @@ -13510,7 +13640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_173 { get { @@ -13520,7 +13650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_174 { get { @@ -13530,7 +13660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_175 { get { @@ -13540,7 +13670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_176 { get { @@ -13550,7 +13680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_177 { get { @@ -13560,7 +13690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_178 { get { @@ -13570,7 +13700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_179 { get { @@ -13580,7 +13710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_18 { get { @@ -13590,7 +13720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_180 { get { @@ -13600,7 +13730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_181 { get { @@ -13610,7 +13740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_182 { get { @@ -13620,7 +13750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_183 { get { @@ -13630,7 +13760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_184 { get { @@ -13640,7 +13770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_185 { get { @@ -13650,7 +13780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_186 { get { @@ -13660,7 +13790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_187 { get { @@ -13670,7 +13800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_188 { get { @@ -13680,7 +13810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_189 { get { @@ -13690,7 +13820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_19 { get { @@ -13700,7 +13830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_190 { get { @@ -13710,7 +13840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_191 { get { @@ -13720,7 +13850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_192 { get { @@ -13730,7 +13860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_193 { get { @@ -13740,7 +13870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_194 { get { @@ -13750,7 +13880,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_195 { get { @@ -13760,7 +13890,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_196 { get { @@ -13770,7 +13900,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_197 { get { @@ -13780,7 +13910,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_198 { get { @@ -13790,7 +13920,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_199 { get { @@ -13800,7 +13930,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_2 { get { @@ -13810,7 +13940,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_20 { get { @@ -13820,7 +13950,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_200 { get { @@ -13830,7 +13960,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_201 { get { @@ -13840,7 +13970,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_202 { get { @@ -13850,7 +13980,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_203 { get { @@ -13860,7 +13990,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_204 { get { @@ -13870,7 +14000,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_205 { get { @@ -13880,7 +14010,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_206 { get { @@ -13890,7 +14020,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_207 { get { @@ -13900,7 +14030,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_208 { get { @@ -13910,7 +14040,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_209 { get { @@ -13920,7 +14050,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_21 { get { @@ -13930,7 +14060,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_210 { get { @@ -13940,7 +14070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_211 { get { @@ -13950,7 +14080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_212 { get { @@ -13960,7 +14090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_213 { get { @@ -13970,7 +14100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_214 { get { @@ -13980,7 +14110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_215 { get { @@ -13990,7 +14120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_217 { get { @@ -14000,7 +14130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_218 { get { @@ -14010,7 +14140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_219 { get { @@ -14020,7 +14150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_22 { get { @@ -14030,7 +14160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_220 { get { @@ -14040,7 +14170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_221 { get { @@ -14050,7 +14180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_222 { get { @@ -14060,7 +14190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_223 { get { @@ -14070,7 +14200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_224 { get { @@ -14080,7 +14210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_225 { get { @@ -14090,7 +14220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_226 { get { @@ -14100,7 +14230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_227 { get { @@ -14110,7 +14240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_228 { get { @@ -14120,7 +14250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_229 { get { @@ -14130,7 +14260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_23 { get { @@ -14140,7 +14270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_230 { get { @@ -14150,7 +14280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_231 { get { @@ -14160,7 +14290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_232 { get { @@ -14170,7 +14300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_233 { get { @@ -14180,7 +14310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_234 { get { @@ -14190,7 +14320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_235 { get { @@ -14200,7 +14330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_236 { get { @@ -14210,7 +14340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_237 { get { @@ -14220,7 +14350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_238 { get { @@ -14230,7 +14360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_239 { get { @@ -14240,7 +14370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_24 { get { @@ -14250,7 +14380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_240 { get { @@ -14260,7 +14390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_241 { get { @@ -14270,7 +14400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_242 { get { @@ -14280,7 +14410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_243 { get { @@ -14290,7 +14420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_244 { get { @@ -14300,7 +14430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_245 { get { @@ -14310,7 +14440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_246 { get { @@ -14320,7 +14450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_247 { get { @@ -14330,7 +14460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_248 { get { @@ -14340,7 +14470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_249 { get { @@ -14350,7 +14480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_25 { get { @@ -14360,7 +14490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_250 { get { @@ -14370,7 +14500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_251 { get { @@ -14380,7 +14510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_252 { get { @@ -14390,7 +14520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_253 { get { @@ -14400,7 +14530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_254 { get { @@ -14410,7 +14540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_255 { get { @@ -14420,7 +14550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_256 { get { @@ -14430,7 +14560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_257 { get { @@ -14440,7 +14570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_258 { get { @@ -14450,7 +14580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_259 { get { @@ -14460,7 +14590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_26 { get { @@ -14470,7 +14600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_260 { get { @@ -14480,7 +14610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_261 { get { @@ -14490,7 +14620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_262 { get { @@ -14500,7 +14630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_263 { get { @@ -14510,7 +14640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_264 { get { @@ -14520,7 +14650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_265 { get { @@ -14530,7 +14660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_266 { get { @@ -14540,7 +14670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_267 { get { @@ -14550,7 +14680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_268 { get { @@ -14560,7 +14690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_269 { get { @@ -14570,7 +14700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_27 { get { @@ -14580,7 +14710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_270 { get { @@ -14590,7 +14720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_271 { get { @@ -14600,7 +14730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_272 { get { @@ -14610,7 +14740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_273 { get { @@ -14620,7 +14750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_274 { get { @@ -14630,7 +14760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_275 { get { @@ -14640,7 +14770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_276 { get { @@ -14650,7 +14780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_277 { get { @@ -14660,7 +14790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_278 { get { @@ -14670,7 +14800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_279 { get { @@ -14680,7 +14810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_28 { get { @@ -14690,7 +14820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_280 { get { @@ -14700,7 +14830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_281 { get { @@ -14710,7 +14840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_282 { get { @@ -14720,7 +14850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_283 { get { @@ -14730,7 +14860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_284 { get { @@ -14740,7 +14870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_285 { get { @@ -14750,7 +14880,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_286 { get { @@ -14760,7 +14890,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_287 { get { @@ -14770,7 +14900,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_288 { get { @@ -14780,7 +14910,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_289 { get { @@ -14790,7 +14920,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_29 { get { @@ -14800,7 +14930,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_290 { get { @@ -14810,7 +14940,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_291 { get { @@ -14820,7 +14950,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_292 { get { @@ -14830,7 +14960,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_293 { get { @@ -14840,7 +14970,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_294 { get { @@ -14850,7 +14980,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_295 { get { @@ -14860,7 +14990,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_296 { get { @@ -14870,7 +15000,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_297 { get { @@ -14880,7 +15010,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_298 { get { @@ -14890,7 +15020,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_299 { get { @@ -14900,7 +15030,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_3 { get { @@ -14910,7 +15040,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_30 { get { @@ -14920,7 +15050,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_300 { get { @@ -14930,7 +15060,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_301 { get { @@ -14940,7 +15070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_302 { get { @@ -14950,7 +15080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_303 { get { @@ -14960,7 +15090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_304 { get { @@ -14970,7 +15100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_305 { get { @@ -14980,7 +15110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_306 { get { @@ -14990,7 +15120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_307 { get { @@ -15000,7 +15130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_308 { get { @@ -15010,7 +15140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_309 { get { @@ -15020,7 +15150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_31 { get { @@ -15030,7 +15160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_310 { get { @@ -15040,7 +15170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_311 { get { @@ -15050,7 +15180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_312 { get { @@ -15060,7 +15190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_313 { get { @@ -15070,7 +15200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_314 { get { @@ -15080,7 +15210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_315 { get { @@ -15090,7 +15220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_316 { get { @@ -15100,7 +15230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_317 { get { @@ -15110,7 +15240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_318 { get { @@ -15120,7 +15250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_319 { get { @@ -15130,7 +15260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_32 { get { @@ -15140,7 +15270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_320 { get { @@ -15150,7 +15280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_321 { get { @@ -15160,7 +15290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_322 { get { @@ -15170,7 +15300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_323 { get { @@ -15180,7 +15310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_324 { get { @@ -15190,7 +15320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_325 { get { @@ -15200,7 +15330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_326 { get { @@ -15210,7 +15340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_327 { get { @@ -15220,7 +15350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_33 { get { @@ -15230,7 +15360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_34 { get { @@ -15240,7 +15370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_35 { get { @@ -15250,7 +15380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_36 { get { @@ -15260,7 +15390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_37 { get { @@ -15270,7 +15400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_38 { get { @@ -15280,7 +15410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_39 { get { @@ -15290,7 +15420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_4 { get { @@ -15300,7 +15430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_40 { get { @@ -15310,7 +15440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_41 { get { @@ -15320,7 +15450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_42 { get { @@ -15330,7 +15460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_43 { get { @@ -15340,7 +15470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_44 { get { @@ -15350,7 +15480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_45 { get { @@ -15360,7 +15490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_46 { get { @@ -15370,7 +15500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_47 { get { @@ -15380,7 +15510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_48 { get { @@ -15390,7 +15520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_49 { get { @@ -15400,7 +15530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_5 { get { @@ -15410,7 +15540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_50 { get { @@ -15420,7 +15550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_504 { get { @@ -15430,7 +15560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_51 { get { @@ -15440,7 +15570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_52 { get { @@ -15450,7 +15580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_53 { get { @@ -15460,7 +15590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_534 { get { @@ -15470,7 +15600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_535 { get { @@ -15480,7 +15610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_537 { get { @@ -15490,7 +15620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_538 { get { @@ -15500,7 +15630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_539 { get { @@ -15510,7 +15640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_54 { get { @@ -15520,7 +15650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_540 { get { @@ -15530,7 +15660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_541 { get { @@ -15540,7 +15670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_542 { get { @@ -15550,7 +15680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_543 { get { @@ -15560,7 +15690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_544 { get { @@ -15570,7 +15700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_545 { get { @@ -15580,7 +15710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_546 { get { @@ -15590,7 +15720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_547 { get { @@ -15600,7 +15730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_548 { get { @@ -15610,7 +15740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_549 { get { @@ -15620,7 +15750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_55 { get { @@ -15630,7 +15760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_550 { get { @@ -15640,7 +15770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_551 { get { @@ -15650,7 +15780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_552 { get { @@ -15660,7 +15790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_553 { get { @@ -15670,7 +15800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_554 { get { @@ -15680,7 +15810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_555 { get { @@ -15690,7 +15820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_556 { get { @@ -15700,7 +15830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_557 { get { @@ -15710,7 +15840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_558 { get { @@ -15720,7 +15850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_559 { get { @@ -15730,7 +15860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_56 { get { @@ -15740,7 +15870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_560 { get { @@ -15750,7 +15880,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_561 { get { @@ -15760,7 +15890,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_562 { get { @@ -15770,7 +15900,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_563 { get { @@ -15780,7 +15910,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_564 { get { @@ -15790,7 +15920,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_57 { get { @@ -15800,7 +15930,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_571 { get { @@ -15810,7 +15940,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_572 { get { @@ -15820,7 +15950,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_573 { get { @@ -15830,7 +15960,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_577 { get { @@ -15840,7 +15970,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_58 { get { @@ -15850,7 +15980,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_580 { get { @@ -15860,7 +15990,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_581 { get { @@ -15870,7 +16000,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_582 { get { @@ -15880,7 +16010,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_583 { get { @@ -15890,7 +16020,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_584 { get { @@ -15900,7 +16030,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_585 { get { @@ -15910,7 +16040,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_586 { get { @@ -15920,7 +16050,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_587 { get { @@ -15930,7 +16060,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_588 { get { @@ -15940,7 +16070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_589 { get { @@ -15950,7 +16080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_59 { get { @@ -15960,7 +16090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_590 { get { @@ -15970,7 +16100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_591 { get { @@ -15980,7 +16110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_6 { get { @@ -15990,7 +16120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_60 { get { @@ -16000,7 +16130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_61 { get { @@ -16010,7 +16140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_62 { get { @@ -16020,7 +16150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_63 { get { @@ -16030,7 +16160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_639 { get { @@ -16040,7 +16170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_64 { get { @@ -16050,7 +16180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_640 { get { @@ -16060,7 +16190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_644 { get { @@ -16070,7 +16200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_645 { get { @@ -16080,7 +16210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_646 { get { @@ -16090,7 +16220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_647 { get { @@ -16100,7 +16230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_648 { get { @@ -16110,7 +16240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_649 { get { @@ -16120,7 +16250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_65 { get { @@ -16130,7 +16260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_650 { get { @@ -16140,7 +16270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_652 { get { @@ -16150,7 +16280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_653 { get { @@ -16160,7 +16290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_654 { get { @@ -16170,7 +16300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_655 { get { @@ -16180,7 +16310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_656 { get { @@ -16190,7 +16320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_657 { get { @@ -16200,7 +16330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_658 { get { @@ -16210,7 +16340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_659 { get { @@ -16220,7 +16350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_66 { get { @@ -16230,7 +16360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_660 { get { @@ -16240,7 +16370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_661 { get { @@ -16250,7 +16380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_662 { get { @@ -16260,7 +16390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_663 { get { @@ -16270,7 +16400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_664 { get { @@ -16280,7 +16410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_665 { get { @@ -16290,7 +16420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_666 { get { @@ -16300,7 +16430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_667 { get { @@ -16310,7 +16440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_668 { get { @@ -16320,7 +16450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_669 { get { @@ -16330,7 +16460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_67 { get { @@ -16340,7 +16470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_670 { get { @@ -16350,7 +16480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_671 { get { @@ -16360,7 +16490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_672 { get { @@ -16370,7 +16500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_673 { get { @@ -16380,7 +16510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_674 { get { @@ -16390,7 +16520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_675 { get { @@ -16400,7 +16530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_676 { get { @@ -16410,7 +16540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_677 { get { @@ -16420,7 +16550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_678 { get { @@ -16430,7 +16560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_679 { get { @@ -16440,7 +16570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_68 { get { @@ -16450,7 +16580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_680 { get { @@ -16460,7 +16590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_681 { get { @@ -16470,7 +16600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_682 { get { @@ -16480,7 +16610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_683 { get { @@ -16490,7 +16620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_684 { get { @@ -16500,7 +16630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_685 { get { @@ -16510,7 +16640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_686 { get { @@ -16520,7 +16650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_687 { get { @@ -16530,7 +16660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_688 { get { @@ -16540,7 +16670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_69 { get { @@ -16550,7 +16680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_699 { get { @@ -16560,7 +16690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_7 { get { @@ -16570,7 +16700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_70 { get { @@ -16580,7 +16710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_704 { get { @@ -16590,7 +16720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_708 { get { @@ -16600,7 +16730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_709 { get { @@ -16610,7 +16740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_71 { get { @@ -16620,7 +16750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_710 { get { @@ -16630,7 +16760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_711 { get { @@ -16640,7 +16770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_715 { get { @@ -16650,7 +16780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_72 { get { @@ -16660,7 +16790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_73 { get { @@ -16670,7 +16800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_74 { get { @@ -16680,7 +16810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_75 { get { @@ -16690,7 +16820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_752 { get { @@ -16700,7 +16830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_753 { get { @@ -16710,7 +16840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_754 { get { @@ -16720,7 +16850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_755 { get { @@ -16730,7 +16860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_756 { get { @@ -16740,7 +16870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_757 { get { @@ -16750,7 +16880,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_758 { get { @@ -16760,7 +16890,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_759 { get { @@ -16770,7 +16900,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_76 { get { @@ -16780,7 +16910,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_760 { get { @@ -16790,7 +16920,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_761 { get { @@ -16800,7 +16930,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_762 { get { @@ -16810,7 +16940,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_763 { get { @@ -16820,7 +16950,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_764 { get { @@ -16830,7 +16960,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_767 { get { @@ -16840,7 +16970,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_768 { get { @@ -16850,7 +16980,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_769 { get { @@ -16860,7 +16990,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_77 { get { @@ -16870,7 +17000,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_770 { get { @@ -16880,7 +17010,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_776 { get { @@ -16890,7 +17020,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_777 { get { @@ -16900,7 +17030,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_778 { get { @@ -16910,7 +17040,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_779 { get { @@ -16920,7 +17050,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_78 { get { @@ -16930,7 +17060,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_780 { get { @@ -16940,7 +17070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_781 { get { @@ -16950,7 +17080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_782 { get { @@ -16960,7 +17090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_783 { get { @@ -16970,7 +17100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_784 { get { @@ -16980,7 +17110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_785 { get { @@ -16990,7 +17120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_786 { get { @@ -17000,7 +17130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_787 { get { @@ -17010,7 +17140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_788 { get { @@ -17020,7 +17150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_789 { get { @@ -17030,7 +17160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_79 { get { @@ -17040,7 +17170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_790 { get { @@ -17050,7 +17180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_791 { get { @@ -17060,7 +17190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_792 { get { @@ -17070,7 +17200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_793 { get { @@ -17080,7 +17210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_794 { get { @@ -17090,7 +17220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_795 { get { @@ -17100,7 +17230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_796 { get { @@ -17110,7 +17240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_798 { get { @@ -17120,7 +17250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_799 { get { @@ -17130,7 +17260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_8 { get { @@ -17140,7 +17270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_80 { get { @@ -17150,7 +17280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_800 { get { @@ -17160,7 +17290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_801 { get { @@ -17170,7 +17300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_802 { get { @@ -17180,7 +17310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_803 { get { @@ -17190,7 +17320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_804 { get { @@ -17200,7 +17330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_805 { get { @@ -17210,7 +17340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_806 { get { @@ -17220,7 +17350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_81 { get { @@ -17230,7 +17360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_82 { get { @@ -17240,7 +17370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_83 { get { @@ -17250,7 +17380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_836 { get { @@ -17260,7 +17390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_84 { get { @@ -17270,7 +17400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_846 { get { @@ -17280,7 +17410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_849 { get { @@ -17290,7 +17420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_85 { get { @@ -17300,7 +17430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_851 { get { @@ -17310,7 +17440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_852 { get { @@ -17320,7 +17450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_853 { get { @@ -17330,7 +17460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_854 { get { @@ -17340,7 +17470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_855 { get { @@ -17350,7 +17480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_856 { get { @@ -17360,7 +17490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_86 { get { @@ -17370,7 +17500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_87 { get { @@ -17380,7 +17510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_879 { get { @@ -17390,7 +17520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_88 { get { @@ -17400,7 +17530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_880 { get { @@ -17410,7 +17540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_881 { get { @@ -17420,7 +17550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_882 { get { @@ -17430,7 +17560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_883 { get { @@ -17440,7 +17570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_884 { get { @@ -17450,7 +17580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_89 { get { @@ -17460,7 +17590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_9 { get { @@ -17470,7 +17600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_90 { get { @@ -17480,7 +17610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_904 { get { @@ -17490,7 +17620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_905 { get { @@ -17500,7 +17630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_906 { get { @@ -17510,7 +17640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_907 { get { @@ -17520,7 +17650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_908 { get { @@ -17530,7 +17660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_909 { get { @@ -17540,7 +17670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_91 { get { @@ -17550,7 +17680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_910 { get { @@ -17560,7 +17690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_911 { get { @@ -17570,7 +17700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_912 { get { @@ -17580,7 +17710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_913 { get { @@ -17590,7 +17720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_914 { get { @@ -17600,7 +17730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_915 { get { @@ -17610,7 +17740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_916 { get { @@ -17620,7 +17750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_917 { get { @@ -17630,7 +17760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_918 { get { @@ -17640,7 +17770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_919 { get { @@ -17650,7 +17780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_92 { get { @@ -17660,7 +17790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_920 { get { @@ -17670,7 +17800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_93 { get { @@ -17680,7 +17810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_94 { get { @@ -17690,7 +17820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_95 { get { @@ -17700,7 +17830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_96 { get { @@ -17710,7 +17840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_97 { get { @@ -17720,7 +17850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_98 { get { @@ -17730,7 +17860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_99 { get { @@ -17740,7 +17870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_tm { get { @@ -17750,7 +17880,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17764,7 +17894,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_de { get { @@ -17773,7 +17903,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17787,7 +17917,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_en { get { @@ -17796,7 +17926,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = Inglés ///! lang_jp.txt = Japonés @@ -17810,7 +17940,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THIS [rest of string was truncated]";. + ///- DO NOT CHANGE THIS [resto de la cadena truncado]";. /// public static string lang_es { get { @@ -17819,7 +17949,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17833,7 +17963,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_fr { get { @@ -17842,7 +17972,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17856,7 +17986,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_it { get { @@ -17865,7 +17995,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17879,7 +18009,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_ja { get { @@ -17888,7 +18018,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17902,7 +18032,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_ko { get { @@ -17911,7 +18041,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17925,7 +18055,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_pt { get { @@ -17934,7 +18064,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17948,7 +18078,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_zh { get { @@ -17957,7 +18087,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap language { get { @@ -17967,7 +18097,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ID,Language + /// Busca una cadena traducida similar a ID,Language ///1,JPN (日本語) ///2,ENG (English) ///3,FRE (Français) @@ -17985,7 +18115,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap load { get { @@ -17995,7 +18125,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap locked { get { @@ -18005,7 +18135,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_ao { get { @@ -18015,7 +18145,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_b2w2 { get { @@ -18025,7 +18155,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_bw { get { @@ -18035,7 +18165,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_c { get { @@ -18045,7 +18175,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_dp { get { @@ -18055,7 +18185,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_e { get { @@ -18065,7 +18195,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_fr { get { @@ -18075,7 +18205,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_gs { get { @@ -18085,7 +18215,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_hgss { get { @@ -18095,7 +18225,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_lg { get { @@ -18105,7 +18235,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_pt { get { @@ -18115,7 +18245,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_rb { get { @@ -18125,7 +18255,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_rs { get { @@ -18135,7 +18265,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_sm { get { @@ -18145,7 +18275,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_xy { get { @@ -18155,7 +18285,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_y { get { @@ -18165,7 +18295,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap main { get { @@ -18175,7 +18305,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap nocheck { get { @@ -18185,7 +18315,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap open { get { @@ -18195,7 +18325,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap other { get { @@ -18205,7 +18335,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap party { get { @@ -18215,7 +18345,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_ao { get { @@ -18225,7 +18355,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_b2w2 { get { @@ -18235,7 +18365,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_bw { get { @@ -18245,7 +18375,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_c { get { @@ -18255,7 +18385,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_dp { get { @@ -18265,7 +18395,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_e { get { @@ -18275,7 +18405,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_fr { get { @@ -18285,7 +18415,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_gs { get { @@ -18295,7 +18425,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_hgss { get { @@ -18305,7 +18435,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_lg { get { @@ -18315,7 +18445,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_pt { get { @@ -18325,7 +18455,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_rb { get { @@ -18335,7 +18465,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_rs { get { @@ -18345,7 +18475,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_sm { get { @@ -18355,7 +18485,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_xy { get { @@ -18365,7 +18495,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_y { get { @@ -18375,7 +18505,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] pgldings_normalregular { get { @@ -18385,7 +18515,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 20170318. + /// Busca una cadena traducida similar a 20170318. /// public static string ProgramVersion { get { @@ -18394,7 +18524,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap rare_icon { get { @@ -18404,7 +18534,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap rare_icon_alt { get { @@ -18414,7 +18544,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ID,3DS Region + /// Busca una cadena traducida similar a ID,3DS Region ///0,Japan (日本) ///1,Americas (NA/SA) ///2,Europe (EU/AU) @@ -18429,7 +18559,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap report { get { @@ -18439,7 +18569,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonability { get { @@ -18449,7 +18579,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitydouble { get { @@ -18459,7 +18589,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitygreat { get { @@ -18469,7 +18599,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitymulti { get { @@ -18479,7 +18609,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitypair { get { @@ -18489,7 +18619,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilityworld { get { @@ -18499,7 +18629,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonalert { get { @@ -18509,7 +18639,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonartist { get { @@ -18519,7 +18649,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattlerexpert { get { @@ -18529,7 +18659,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattleroyale { get { @@ -18539,7 +18669,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattlerskillful { get { @@ -18549,7 +18679,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattletreegreat { get { @@ -18559,7 +18689,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattletreemaster { get { @@ -18569,7 +18699,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbestfriends { get { @@ -18579,7 +18709,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbirthday { get { @@ -18589,7 +18719,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncareless { get { @@ -18599,7 +18729,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionalola { get { @@ -18609,7 +18739,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionbattle { get { @@ -18619,7 +18749,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampiong3hoenn { get { @@ -18629,7 +18759,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampiong6hoenn { get { @@ -18639,7 +18769,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionkalos { get { @@ -18649,7 +18779,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionnational { get { @@ -18659,7 +18789,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionregional { get { @@ -18669,7 +18799,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionsinnoh { get { @@ -18679,7 +18809,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionworld { get { @@ -18689,7 +18819,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonclassic { get { @@ -18699,7 +18829,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonconteststar { get { @@ -18709,7 +18839,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorybattle { get { @@ -18719,7 +18849,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorybattle2 { get { @@ -18729,7 +18859,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorycontest { get { @@ -18739,7 +18869,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorycontest2 { get { @@ -18749,7 +18879,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountry { get { @@ -18759,7 +18889,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbondowncast { get { @@ -18769,7 +18899,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonearth { get { @@ -18779,7 +18909,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboneffort { get { @@ -18789,7 +18919,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonevent { get { @@ -18799,7 +18929,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonfootprint { get { @@ -18809,7 +18939,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beauty { get { @@ -18819,7 +18949,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautyhyper { get { @@ -18829,7 +18959,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautymaster { get { @@ -18839,7 +18969,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautysuper { get { @@ -18849,7 +18979,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cool { get { @@ -18859,7 +18989,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolhyper { get { @@ -18869,7 +18999,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolmaster { get { @@ -18879,7 +19009,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolsuper { get { @@ -18889,7 +19019,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cute { get { @@ -18899,7 +19029,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutehyper { get { @@ -18909,7 +19039,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutemaster { get { @@ -18919,7 +19049,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutesuper { get { @@ -18929,7 +19059,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smart { get { @@ -18939,7 +19069,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smarthyper { get { @@ -18949,7 +19079,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smartmaster { get { @@ -18959,7 +19089,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smartsuper { get { @@ -18969,7 +19099,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3tough { get { @@ -18979,7 +19109,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughhyper { get { @@ -18989,7 +19119,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughmaster { get { @@ -18999,7 +19129,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughsuper { get { @@ -19009,7 +19139,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beauty { get { @@ -19019,7 +19149,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautygreat { get { @@ -19029,7 +19159,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautymaster { get { @@ -19039,7 +19169,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautyultra { get { @@ -19049,7 +19179,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cool { get { @@ -19059,7 +19189,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolgreat { get { @@ -19069,7 +19199,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolmaster { get { @@ -19079,7 +19209,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolultra { get { @@ -19089,7 +19219,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cute { get { @@ -19099,7 +19229,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cutegreat { get { @@ -19109,7 +19239,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cutemaster { get { @@ -19119,7 +19249,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cuteultra { get { @@ -19129,7 +19259,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smart { get { @@ -19139,7 +19269,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartgreat { get { @@ -19149,7 +19279,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartmaster { get { @@ -19159,7 +19289,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartultra { get { @@ -19169,7 +19299,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4tough { get { @@ -19179,7 +19309,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughgreat { get { @@ -19189,7 +19319,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughmaster { get { @@ -19199,7 +19329,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughultra { get { @@ -19209,7 +19339,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbongorgeous { get { @@ -19219,7 +19349,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbongorgeousroyal { get { @@ -19229,7 +19359,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonlegend { get { @@ -19239,7 +19369,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmasterbeauty { get { @@ -19249,7 +19379,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercleverness { get { @@ -19259,7 +19389,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercoolness { get { @@ -19269,7 +19399,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercuteness { get { @@ -19279,7 +19409,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastertoughness { get { @@ -19289,7 +19419,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonnational { get { @@ -19299,7 +19429,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonpremier { get { @@ -19309,7 +19439,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonrecord { get { @@ -19319,7 +19449,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonrelax { get { @@ -19329,7 +19459,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonroyal { get { @@ -19339,7 +19469,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonshock { get { @@ -19349,7 +19479,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsmile { get { @@ -19359,7 +19489,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsnooze { get { @@ -19369,7 +19499,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsouvenir { get { @@ -19379,7 +19509,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonspecial { get { @@ -19389,7 +19519,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbontraining { get { @@ -19399,7 +19529,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonvictory { get { @@ -19409,7 +19539,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonwinning { get { @@ -19419,7 +19549,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonwishing { get { @@ -19429,7 +19559,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonworld { get { @@ -19439,7 +19569,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap savePKM { get { @@ -19449,7 +19579,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap saveSAV { get { @@ -19459,7 +19589,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap settings { get { @@ -19469,7 +19599,7 @@ public class Resources { } /// - /// Looks up a localized string similar to If you are having issues viewing certain symbols/text: Options -> Unicode + /// Busca una cadena traducida similar a If you are having issues viewing certain symbols/text: Options -> Unicode /// ///// Main Window /// @@ -19489,7 +19619,7 @@ public class Resources { ///Control + Click on... ///- Species: Import Showdown/Smogon set from Clipboard. ///- Nickname/OT box: Bring up the ingame-special characters. - ///- Individual [rest of string was truncated]";. + ///- Individual [resto de la cadena truncado]";. /// public static string shortcuts { get { @@ -19498,7 +19628,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap showdown { get { @@ -19508,7 +19638,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDel { get { @@ -19518,7 +19648,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDel1 { get { @@ -19528,7 +19658,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDrag { get { @@ -19538,7 +19668,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotSet { get { @@ -19548,7 +19678,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotSet1 { get { @@ -19558,7 +19688,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotTrans { get { @@ -19568,7 +19698,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotTrans1 { get { @@ -19578,7 +19708,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotView { get { @@ -19588,7 +19718,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotView1 { get { @@ -19598,7 +19728,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,東京都,Tokyo,Tokyo,Tokio,Tokyo,Tokio,东京都,도쿄 도, ///003,北海道,Hokkaido,Hokkaido,Hokkaido,Hokkaido,Hokaido,北海道,홋카이도, @@ -19607,7 +19737,7 @@ public class Resources { ///006,宮城県,Miyagi,Miyagi,Miyagi,Miyagi,Miyagi,宫城县,미야기 현, ///007,秋田県,Akita,Akita,Akita,Akita,Akita,秋田县,아키타 현, ///008,山形県,Yamagata,Yamagata,Yamagata,Yamagata,Yamagata,山形县,야마가타 현, - ///009,福島県,Fukushima,Fukushima,Fukushima,Fukushima,Fukushima,福岛县,후쿠 [rest of string was truncated]";. + ///009,福島県,Fukushima,Fukushima,Fukushima,Fukushima,Fukushima,福岛县,후쿠 [resto de la cadena truncado]";. /// public static string sr_001 { get { @@ -19616,7 +19746,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アンギラ,Anguilla,Anguilla,Anguilla,Anguilla,Anguila,安圭拉,앵귈라,. /// @@ -19627,14 +19757,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セント・ジョン,Saint John,Saint-Jean,Saint John's,Saint John,Saint John,圣约翰区,세인트존, ///003,バーブーダ島,Barbuda,Barbuda,Barbuda,Barbuda,Barbuda,巴布达岛,바부다, ///004,セント・ジョージ,Saint George,Saint-Georges,Saint George,Saint George,Saint George,圣乔治区,세인트조지, ///005,セント・メアリー,Saint Mary,Sainte-Marie,Saint Mary,Saint Mary,Saint Mary,圣玛丽区,세인트메리, ///006,セント・ポール,Saint Paul,Saint-Paul,Saint Paul,Saint Paul,Saint Paul,圣保罗区,세인트폴, - ///007,セント・ピーター,Saint Peter,Saint-Pierre,Saint Peter,Saint [rest of string was truncated]";. + ///007,セント・ピーター,Saint Peter,Saint-Pierre,Saint Peter,Saint [resto de la cadena truncado]";. /// public static string sr_009 { get { @@ -19643,14 +19773,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,特別区,Distrito Federal,District Fédéral,Autonome Stadt Buenos Aires,Capitale Federale,Ciudad de Buenos Aires,联邦首都区,아르헨티나 연방구, ///003,ブエノスアイレス州,Buenos Aires,Buenos Aires,Buenos Aires,Buenos Aires,Provincia de Buenos Aires,布宜诺斯艾利斯省,부에노스아이레스 주, ///004,カタマルカ州,Catamarca,Catamarca,Catamarca,Catamarca,Catamarca,卡塔马卡省,카타마르카 주, ///005,チャコ州,Chaco,Chaco,Chaco,Chaco,Chaco,查科省,차코 주, ///006,チュブト州,Chubut,Chubut,Chubut,Chubut,Chubut,丘布特省,추부트 주, - ///007,コルドバ州,Córdoba,Córdoba [rest of string was truncated]";. + ///007,コルドバ州,Córdoba,Córdoba [resto de la cadena truncado]";. /// public static string sr_010 { get { @@ -19659,7 +19789,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アルバ,Aruba,Aruba,Aruba,Aruba,Aruba,阿鲁巴,아루바,. /// @@ -19670,7 +19800,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バハマ,Bahamas,Bahamas,Bahamas,Bahamas,Bahamas,巴哈马,바하마,. /// @@ -19681,7 +19811,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バルバドス,Barbados,Barbade,Barbados,Barbados,Barbados,巴巴多斯,바베이도스,. /// @@ -19692,7 +19822,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,カヨー州,Cayo,Cayo,Cayo,Cayo,Cayo,卡约区,카요 주, ///003,ベリーズ州,Belize,Belize,Belize,Belize,Belice,伯利兹城,벨리즈 주, @@ -19708,7 +19838,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ラパス県,La Paz,La Paz,La Paz,La Paz,La Paz,拉巴斯省,라파스 주, ///003,チュキサカ県,Chuquisaca,Chuquisaca,Chuquisaca,Chuquisaca,Chuquisaca,丘基萨卡省,추키사카 주, @@ -19717,7 +19847,7 @@ public class Resources { ///006,オルロ県,Oruro,Oruro,Oruro,Oruro,Oruro,奥鲁罗省,오루로 주, ///007,パンド県,Pando,Pando,Pando,Pando,Pando,潘多省,판도 주, ///008,ポトシ県,Potosí,Potosí,Potosí,Potosí,Potosí,波托西省,포토시 주, - ///009,サンタ・クルス県,Santa Cruz [rest of string was truncated]";. + ///009,サンタ・クルス県,Santa Cruz [resto de la cadena truncado]";. /// public static string sr_015 { get { @@ -19726,7 +19856,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・フェデラル州,Distrito Federal,District Fédéral,Distrito Federal,Distretto Federale,Distrito Federal,联邦区,브라질 연방구, ///003,アクレ州,Acre,Acre,Acre,Acre,Acre,阿克里州,아크리 주, @@ -19734,7 +19864,7 @@ public class Resources { ///005,アマパー州,Amapá,Amapá,Amapá,Amapá,Amapá,阿马帕州,아마파 주, ///006,アマゾナス州,Amazonas,Amazonas,Amazonas,Amazonas,Amazonas,亚马孙州,아마조나스 주, ///007,バイア州,Bahia,Bahia,Bahia,Bahia,Bahía,巴伊亚州,바이아 주, - ///008,セアラ州,Ceará,Ceará,Ceará,Ceará,Ceará,塞阿拉州, [rest of string was truncated]";. + ///008,セアラ州,Ceará,Ceará,Ceará,Ceará,Ceará,塞阿拉州, [resto de la cadena truncado]";. /// public static string sr_016 { get { @@ -19743,7 +19873,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,英領ヴァージン諸島,British Virgin Islands,Îles Vierges britanniques,Britische Jungferninseln,Isole Vergini Britanniche,Islas Vírgenes Británicas,英属维尔京群岛,영국령 버진아일랜드,. /// @@ -19754,14 +19884,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,オンタリオ州,Ontario,Ontario,Ontario,Ontario,Ontario,安大略省,온타리오 주, ///003,アルバータ州,Alberta,Alberta,Alberta,Alberta,Alberta,艾伯塔省,앨버타 주, ///004,ブリティッシュ・コロンビア州,British Columbia,Colombie-Britannique,Britisch-Kolumbien,Columbia Britannica,Columbia Británica,不列颠哥伦比亚省,브리티시컬럼비아 주, ///005,マニトバ州,Manitoba,Manitoba,Manitoba,Manitoba,Manitoba,马尼托巴省,매니토바 주, ///006,ニュー・ブランズウィック州,New Brunswick,Nouveau-Brunswick,Neubraunschweig,Nuovo Brunswick,Nuevo Brunswick,新不伦瑞克省,뉴브런즈윅 주, - ///00 [rest of string was truncated]";. + ///00 [resto de la cadena truncado]";. /// public static string sr_018 { get { @@ -19770,7 +19900,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ケイマン諸島,Cayman Islands,Îles Caïmans,Kaimaninseln,Isole Cayman,Islas Caimán,开曼群岛,케이맨 제도,. /// @@ -19781,11 +19911,11 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,レジョン・メトロポリタナ州,Región Metropolitana,Région Métropolitaine de Santiago,Región Metropolitana,Regione Metropolitana di Santiago,Región Metropolitana,圣地亚哥首都区,산티아고 수도주, ///003,バルパライソ州,Valparaíso,Valparaiso,Valparaíso (Region V),Valparaíso,Valparaíso,瓦尔帕莱索大区,발파라이소 주, - ///004,アイセン・デル・G・カルロス・イバニェス・デル・カンポ州,Aisén del General Carlos Ibáñez del Campo,Aisén del General Carlos Ibáñez del Campo,Aisén (Region XI),Aisén del General Carlos Ibáñez del Campo,Aisén del Ge [rest of string was truncated]";. + ///004,アイセン・デル・G・カルロス・イバニェス・デル・カンポ州,Aisén del General Carlos Ibáñez del Campo,Aisén del General Carlos Ibáñez del Campo,Aisén (Region XI),Aisén del General Carlos Ibáñez del Campo,Aisén del Ge [resto de la cadena truncado]";. /// public static string sr_020 { get { @@ -19794,14 +19924,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・キャピタル,Distrito Capital,District Capital de Santa Fe de Bogotá,Bogotá D.C.,Distretto Capitale,Distrito Capital,波哥大首都区,콜롬비아 수도주, ///003,クンディナマルカ県,Cundinamarca,Cundinamarca,Cundinamarca,Cundinamarca,Cundinamarca,昆迪纳马卡省,쿤디나마르카 주, ///004,アマソナス県,Amazonas,Amazone,Amazonas,Amazonas,Amazonas,亚马孙省,아마소나스 주, ///005,アンティオキア県,Antioquia,Antioquia,Antioquia,Antioquia,Antioquia,安提奥基亚省,안티오키아 주, ///006,アラウカ県,Arauca,Arauca,Arauca,Arauca,Arauca,阿劳卡省,아라우카 주, - ///007,アトラン [rest of string was truncated]";. + ///007,アトラン [resto de la cadena truncado]";. /// public static string sr_021 { get { @@ -19810,7 +19940,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,サン・ホセ州,San José,San José,San José,San José,San José,圣何塞省,산호세 주, ///003,アラフエラ州,Alajuela,Alajuela,Alajuela,Alajuela,Alajuela,阿拉胡埃拉省,알라후엘라 주, @@ -19818,7 +19948,7 @@ public class Resources { ///005,グアナカステ州,Guanacaste,Guanacaste,Guanacaste,Guanacaste,Guanacaste,瓜纳卡斯特省,과나카스테 주, ///006,エレディア州,Heredia,Heredia,Heredia,Heredia,Heredia,埃雷迪亚省,에레디아 주, ///007,リモン州,Limón,Limón,Limón,Limón,Limón,利蒙省,리몬 주, - ///008,プンタレナス州,Puntarenas,Puntarenas,Puntarenas,Pu [rest of string was truncated]";. + ///008,プンタレナス州,Puntarenas,Puntarenas,Puntarenas,Pu [resto de la cadena truncado]";. /// public static string sr_022 { get { @@ -19827,7 +19957,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ドミニカ国,Dominica,Dominique,Dominica,Dominica,Dominica,多米尼克,도미니카 연방,. /// @@ -19838,7 +19968,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・ナショナル首都圏,Distrito Nacional,District National,Distrito Nacional,Distretto Nazionale,Distrito Nacional,国家区,도미니카 행정구, ///003,アスア,Azua,Azua,Azua,Azua,Azua,阿苏阿省,아수아, @@ -19846,7 +19976,7 @@ public class Resources { ///005,バラオナ,Barahona,Barahona,Barahona,Barahona,Barahona,巴拉奥纳省,바라오나, ///006,ダハボン,Dajabón,Dajabón,Dajabón,Dajabón,Dajabón,达哈朋省,다하본, ///007,ドゥアルテ,Duarte,Duarte,Duarte,Duarte,Duarte,杜华德省,두아르테, - ///008,エスパイジャト,Espaillat,Espaillat,Espa [rest of string was truncated]";. + ///008,エスパイジャト,Espaillat,Espaillat,Espa [resto de la cadena truncado]";. /// public static string sr_024 { get { @@ -19855,7 +19985,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ピチンチャ,Pichincha,Pichincha,Pichincha,Pichincha,Pichincha,皮钦查省,피친차, ///003,ガラパゴス,Galápagos,Galápagos,Galapagosinseln,Galápagos,Galápagos,加拉帕戈斯省,갈라파고스, @@ -19864,7 +19994,7 @@ public class Resources { ///006,カニャル,Cañar,Cañar,Cañar,Cañar,Cañar,卡尼亚尔省,카냐르, ///007,カルチ,Carchi,Carchi,Carchi,Carchi,Carchi,卡尔奇省,카르치, ///008,チンボラソ,Chimborazo,Chimborazo,Chimborazo,Chimborazo,Chimborazo,钦博拉索省,침보라소, - ///009, [rest of string was truncated]";. + ///009, [resto de la cadena truncado]";. /// public static string sr_025 { get { @@ -19873,14 +20003,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,サン・サルバドル県,San Salvador,San Salvador,San Salvador,San Salvador,San Salvador,圣萨尔瓦多省,산살바도르 주, ///003,アワチャパン県,Ahuachapán,Ahuachapán,Ahuachapán,Ahuachapán,Ahuachapán,阿瓦查潘省,아우아차판 주, ///004,カバニャス県,Cabañas,Cabañas,Cabañas,Cabañas,Cabañas,卡瓦尼亚斯省,카바냐스 주, ///005,チャラテナンゴ県,Chalatenango,Chalatenango,Chalatenango,Chalatenango,Chalatenango,查拉特南戈省,찰라테낭고 주, ///006,クスカトラン県,Cuscatlán,Cuscatlán,Cuscatlán,Cuscatlán,Cuscatlán,库斯卡特兰省,쿠스카틀란 주, - ///007,ラ・リベルター県,La Libertad,La Liber [rest of string was truncated]";. + ///007,ラ・リベルター県,La Libertad,La Liber [resto de la cadena truncado]";. /// public static string sr_026 { get { @@ -19889,7 +20019,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,フランス領ギアナ,French Guiana,Guyane,Französisch-Guyana,Guyana Francese,Guayana Francesa,法属圭亚那,프랑스령 기아나,. /// @@ -19900,7 +20030,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,グレナダ,Grenada,Grenade,Grenada,Grenada,Granada,格林纳达,그레나다,. /// @@ -19911,7 +20041,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,グアドループ,Guadeloupe,Guadeloupe,Guadeloupe,Guadalupa,Guadalupe,瓜德罗普,과들루프,. /// @@ -19922,14 +20052,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,グアテマラ県,Guatemala,Guatemala,Guatemala,Guatemala,Guatemala,危地马拉省,과테말라 주, ///003,アルタ・べラパス県,Alta Verapaz,Alta Verapaz,Alta Verapaz,Alta Verapaz,Alta Verapaz,上韦拉帕斯省,알타베라파스 주, ///004,バハ・べラパス県,Baja Verapaz,Baja Verapaz,Baja Verapaz,Baja Verapaz,Baja Verapaz,下韦拉帕斯省,바하베라파스 주, ///005,チマルテナンゴ県,Chimaltenango,Chimaltenango,Chimaltenango,Chimaltenango,Chimaltenango,奇马尔特南戈省,치말테낭고 주, ///006,チキムラ県,Chiquimula,Chiquimula,Chiquimula,Chiquimula,Chiquimula,奇基穆拉省,치키물라 주, - ///007 [rest of string was truncated]";. + ///007 [resto de la cadena truncado]";. /// public static string sr_030 { get { @@ -19938,12 +20068,12 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,デメララ・マハイカ州,Demerara-Mahaica,Demerara-Mahaica,Demerara-Mahaica,Demerara-Mahaica,Demerara-Mahaica,德梅拉拉-马海卡区,데메라라-마하이카 주, ///003,バリマ・ワイニ州,Barima-Waini,Barima-Waini,Barima-Waini,Barima-Waini,Barima-Waini,巴里马-瓦伊尼区,바리마-와이니 주, ///004,クユニ・マザルニ州,Cuyuni-Mazaruni,Cuyuni-Mazaruni,Cuyuni-Mazaruni,Cuyuni-Mazaruni,Cuyuni-Mazaruni,库尤尼-马扎鲁尼区,쿠유니-마자루니 주, - ///005,東ベルビセ・コレンティネ州,East Berbice-Corentyne,Berbice Oriental-Courantyne,East Berbice-Corentyne,Berbice Orientale-Cor [rest of string was truncated]";. + ///005,東ベルビセ・コレンティネ州,East Berbice-Corentyne,Berbice Oriental-Courantyne,East Berbice-Corentyne,Berbice Orientale-Cor [resto de la cadena truncado]";. /// public static string sr_031 { get { @@ -19952,7 +20082,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,西県,Ouest,Ouest,Ouest,Ovest,Oeste,西部省,서부, ///003,北西県,Nord-Ouest,Nord-Ouest,Nord-Ouest,Nord-Ovest,Noroeste,西北省,북서부, @@ -19961,7 +20091,7 @@ public class Resources { ///006,湾岸県,Grand'Anse,Grande-Anse,Grand'Anse,Grande Anse,Grand'Anse,大湾省,그랑당스, ///007,北県,Nord,Nord,Nord,Nord,Norte,北部省,북부, ///008,北東県,Nord-Est,Nord-Est,Nord-Est,Nord-Est,Noreste,东北省,북동부, - ///009,南県,Sud,Sud,Sud [rest of string was truncated]";. + ///009,南県,Sud,Sud,Sud [resto de la cadena truncado]";. /// public static string sr_032 { get { @@ -19970,7 +20100,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,フランシスコ・モラサン,Francisco Morazán,Francisco Morazán,Francisco Morazán,Francisco Morazán,Francisco Morazán,弗朗西斯科-莫拉桑省,프란시스코모라산, ///003,アトランティダ,Atlántida,Atlántida,Atlántida,Atlántida,Atlántida,阿特兰蒂达省,아틀란티다, @@ -19978,7 +20108,7 @@ public class Resources { ///005,コロン,Colón,Colón,Colón,Colón,Colón,科隆省,콜론, ///006,コマヤグア,Comayagua,Comayagua,Comayagua,Comayagua,Comayagua,科马亚瓜省,코마야과, ///007,コパン,Copán,Copán,Copán,Copán,Copán,科潘省,코판, - ///008,コルテス [rest of string was truncated]";. + ///008,コルテス [resto de la cadena truncado]";. /// public static string sr_033 { get { @@ -19987,14 +20117,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セント・トーマス,Saint Thomas,Saint-Thomas,Saint Thomas,Saint Thomas,Saint Thomas,圣托马斯区,세인트토머스, ///003,クラレンドン,Clarendon,Clarendon,Clarendon,Clarendon,Clarendon,克拉伦登区,클래런던, ///004,ハノーバー,Hanover,Hanover,Hanover,Hanover,Hanover,汉诺威区,해노버, ///005,マンチェスター,Manchester,Manchester,Manchester,Manchester,Manchester,曼彻斯特区,맨체스터, ///006,ポートランド,Portland,Portland,Portland,Portland,Portland,波特兰区,포틀랜드, - ///007,セント・アンドリュー,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andr [rest of string was truncated]";. + ///007,セント・アンドリュー,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andr [resto de la cadena truncado]";. /// public static string sr_034 { get { @@ -20003,7 +20133,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マルティニーク,Martinique,Martinique,Martinique,Martinica,Martinica,马提尼克,마르티니크,. /// @@ -20014,12 +20144,12 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・フェデラル連邦区,Distrito Federal,District Fédéral,México D.F.,Distretto Federale,Distrito Federal,联邦区,멕시코 연방구, ///003,アグアスカリエンテス州,Aguascalientes,Aguascalientes,Aguascalientes,Aguascalientes,Aguascalientes,阿瓜斯卡连特斯州,아과스칼리엔테스 주, ///004,バハ・カリフォルニア州,Baja California,Basse-Californie,Niederkalifornien,Bassa California,Baja California,下加里福尼亚州,바하칼리포르니아 주, - ///005,バハ・カリフォルニア・スル州,Baja California Sur,Basse-Californie du Sud,Süd-Niederkalifornien,Bassa California d [rest of string was truncated]";. + ///005,バハ・カリフォルニア・スル州,Baja California Sur,Basse-Californie du Sud,Süd-Niederkalifornien,Bassa California d [resto de la cadena truncado]";. /// public static string sr_036 { get { @@ -20028,7 +20158,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モントセラト,Montserrat,Montserrat,Montserrat,Montserrat,Montserrat,蒙特塞拉特,몬트세랫,. /// @@ -20039,7 +20169,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,オランダ領アンティル,Netherlands Antilles,Antilles néerlandaises,Niederländische Antillen,Antille Olandesi,Antillas Neerlandesas,荷属安的列斯,네덜란드령 앤틸리스,. /// @@ -20050,7 +20180,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マナグア,Managua,Managua,Managua,Managua,Managua,马那瓜省,마나과, ///003,ボアコ,Boaco,Boaco,Boaco,Boaco,Boaco,博阿科省,보아코, @@ -20059,7 +20189,7 @@ public class Resources { ///006,チョンタレス,Chontales,Chontales,Chontales,Chontales,Chontales,琼塔莱斯省,촌탈레스, ///007,エステリ,Estelí,Estelí,Estelí,Estelí,Estelí,埃斯特利省,에스텔리, ///008,グラナダ,Granada,Granada,Granada,Granada,Granada,格拉纳达省,그라나다, - ///009,ヒノテガ,Jinotega,J [rest of string was truncated]";. + ///009,ヒノテガ,Jinotega,J [resto de la cadena truncado]";. /// public static string sr_039 { get { @@ -20068,7 +20198,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,パナマ,Panamá,Panama,Panama,Panamá,Panamá,巴拿马省,파나마, ///003,ボカズ・デル・トーロ,Bocas del Toro,Bocas del Toro,Bocas del Toro,Bocas del Toro,Bocas del Toro,博卡斯-德尔托罗省,보카스델토로, @@ -20077,7 +20207,7 @@ public class Resources { ///006,コロン,Colón,Colón,Colón,Colón,Colón,科隆省,콜론, ///007,ダリエン,Darién,Darién,Darién,Darién,Darién,达连省,다리엔, ///008,エレーラ,Herrera,Herrera,Herrera,Herrera,Herrera,埃雷拉省,에레라, - ///009,ロス・サントス,Los [rest of string was truncated]";. + ///009,ロス・サントス,Los [resto de la cadena truncado]";. /// public static string sr_040 { get { @@ -20086,7 +20216,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セントラル県,Central,Central,Central,Central,Central,中央省,센트랄 주, ///003,アルト・パラナ県,Alto Paraná,Alto Paraná,Alto Paraná,Alto Paraná,Alto Paraná,上巴拉那省,알토파라나 주, @@ -20094,7 +20224,7 @@ public class Resources { ///005,カアグアスー県,Caaguazú,Caaguazú,Caaguazú,Caaguazú,Caaguazú,卡瓜苏省,카아과수 주, ///006,カアサパ県,Caazapá,Caazapá,Caazapá,Caazapá,Caazapá,卡萨帕省,카아사파 주, ///007,コンセプシオン県,Concepción,Concepción,Concepción,Concepción,Concepción,康塞普西翁省,콘셉시온 주, - ///008,コルディリェラ県,Cord [rest of string was truncated]";. + ///008,コルディリェラ県,Cord [resto de la cadena truncado]";. /// public static string sr_041 { get { @@ -20103,7 +20233,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,リマ,Lima,Province de Lima,Lima Metropolitana,Lima,Lima,利马省,리마, ///003,アマソナス,Amazonas,Amazone,Amazonas,Amazonas,Amazonas,亚马孙省,아마소나스, @@ -20111,7 +20241,7 @@ public class Resources { ///005,アプリマック,Apurímac,Apurímac,Apurímac,Apurímac,Apurímac,阿普里马克省,아푸리막, ///006,アレキパ,Arequipa,Arequipa,Arequipa,Arequipa,Arequipa,阿雷基帕省,아레키파, ///007,アヤクーチョ,Ayacucho,Ayacucho,Ayacucho,Ayacucho,Ayacucho,阿亚库乔省,아야쿠초, - ///008,カハマルカ,Cajamarca,Cajamarca,Cajamarca,Cajamarca,Cajama [rest of string was truncated]";. + ///008,カハマルカ,Cajamarca,Cajamarca,Cajamarca,Cajamarca,Cajama [resto de la cadena truncado]";. /// public static string sr_042 { get { @@ -20120,11 +20250,11 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セント・ジョージ・バセテール,Saint George Basseterre,Saint George Basseterre,Saint George Basseterre,Saint George Basseterre,Saint George Basseterre,圣乔治巴斯特尔区,세인트조지바스테르, ///003,クライスト・チャーチ・ニコラタウン,Christ Church Nichola Town,Christ Church Nichola Town,Christ Church Nichola Town,Christ Church Nichola Town,Christ Church Nichola Town,克赖斯特彻奇尼古拉镇区,크라이스트처치니콜라타운, - ///004,セント・アン・サンディ・ポイント,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Po [rest of string was truncated]";. + ///004,セント・アン・サンディ・ポイント,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Po [resto de la cadena truncado]";. /// public static string sr_043 { get { @@ -20133,7 +20263,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セントルシア,St. Lucia,Sainte-Lucie,St. Lucia,Santa Lucia,Santa Lucía,圣卢西亚,세인트루시아,. /// @@ -20144,7 +20274,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セントビンセント・グレナディーン,St. Vincent and the Grenadines,Saint-Vincent-et-les-Grenadines,St. Vincent und die Grenadinen,Saint Vincent e Grenadine,San Vicente y las Granadinas,圣文森特和格林纳丁斯,세인트빈센트 그레나딘,. /// @@ -20155,7 +20285,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,パラマリボ,Paramaribo,Paramaribo,Paramaribo,Paramaribo,Paramaribo,帕拉马里博市,파라마리보, ///003,ブロコポンド,Brokopondo,Brokopondo,Brokopondo,Brokopondo,Brokopondo,布罗科蓬多区,브로코폰도, @@ -20163,7 +20293,7 @@ public class Resources { ///005,コロニー,Coronie,Coronie,Coronie,Coronie,Coronie,科罗尼区,코로니, ///006,マロウィネ,Marowijne,Marowijne,Marowijne,Marowijne,Marowijne,马罗韦讷区,마로베이너, ///007,ニッケリー,Nickerie,Nickerie,Nickerie,Nickerie,Nickerie,尼克里区,니케리, - ///008,パラ,Para,P [rest of string was truncated]";. + ///008,パラ,Para,P [resto de la cadena truncado]";. /// public static string sr_046 { get { @@ -20172,7 +20302,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ポート・オブ・スペイン,Port-of-Spain,Port d'Espagne,Port-of-Spain,Port of Spain,Puerto España,西班牙港市,포트오브스페인, ///003,アリマ,Arima,Arima,Arima,Arima,Arima,阿里马市,아리마, @@ -20180,7 +20310,7 @@ public class Resources { ///005,マジャロ州,Mayaro,Mayaro,Mayaro,Mayaro,Mayaro,马亚罗郡,마야로 주, ///006,ナリバ州,Nariva,Nariva,Nariva,Nariva,Nariva,纳里瓦郡,나리바 주, ///007,セント・アンドリュー州,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,圣安德鲁郡,세인트앤드루 주, - ///008,セント・デビッド州,Saint David,Saint [rest of string was truncated]";. + ///008,セント・デビッド州,Saint David,Saint [resto de la cadena truncado]";. /// public static string sr_047 { get { @@ -20189,7 +20319,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,タークス・カイコス諸島,Turks and Caicos Islands,Îles Turques-et-Caïques,Turks- und Caicosinseln,Isole Turks e Caicos,Islas Turcas y Caicos,特克斯和凯科斯群岛,터크스 케이커스 제도,. /// @@ -20200,14 +20330,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,コロンビア特別区,District of Columbia,Washington (District de Columbia),District of Columbia,Distretto di Columbia,Distrito de Columbia,哥伦比亚特区,컬럼비아 특별구, ///003,アラスカ州,Alaska,Alaska,Alaska,Alaska,Alaska,阿拉斯加州,알래스카 주, ///004,アラバマ州,Alabama,Alabama,Alabama,Alabama,Alabama,亚拉巴马州,앨라배마 주, ///005,アーカンソー州,Arkansas,Arkansas,Arkansas,Arkansas,Arkansas,阿肯色州,아칸소 주, ///006,アリゾナ州,Arizona,Arizona,Arizona,Arizona,Arizona,亚利桑那州,애리조나 주, - ///007,カリフォルニア州,California,Californie,Kaliforn [rest of string was truncated]";. + ///007,カリフォルニア州,California,Californie,Kaliforn [resto de la cadena truncado]";. /// public static string sr_049 { get { @@ -20216,7 +20346,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,モンテビデオ,Montevideo,Montevideo,Montevideo,Montevideo,Montevideo,蒙得维的亚省,몬테비데오, ///003,アルティガス,Artigas,Artigas,Artigas,Artigas,Artigas,阿蒂加斯省,아르티가스, @@ -20224,7 +20354,7 @@ public class Resources { ///005,セロ・ラルゴ,Cerro Largo,Cerro Largo,Cerro Largo,Cerro Largo,Cerro Largo,塞罗拉尔戈省,세로라르고, ///006,コロニア,Colonia,Colonia,Colonia,Colonia,Colonia,科洛尼亚省,콜로니아, ///007,ドゥラスノ,Durazno,Durazno,Durazno,Durazno,Durazno,杜拉斯诺省,두라스노, - ///008,フロレス,Flores,Flore [rest of string was truncated]";. + ///008,フロレス,Flores,Flore [resto de la cadena truncado]";. /// public static string sr_050 { get { @@ -20233,7 +20363,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,米領バージン諸島,US Virgin Islands,Îles Vierges américaines,Amerikanische Jungferninseln,Isole Vergini Statunitensi,Islas Vírgenes de los EE. UU.,美属维尔京群岛,미국령 버진아일랜드,. /// @@ -20244,7 +20374,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト首都地区,Distrito Federal,District Fédéral,Caracas D.F.,Distretto Capitale,Distrito Capital,首都区,베네수엘라 연방구, ///003,アマソナス,Amazonas,Amazone,Amazonas,Amazonas,Amazonas,亚马孙边疆区,아마소나스, @@ -20252,7 +20382,7 @@ public class Resources { ///005,アプレ,Apure,Apure,Apure,Apure,Apure,阿普雷州,아푸레, ///006,アラグア,Aragua,Aragua,Aragua,Aragua,Aragua,阿拉瓜州,아라과, ///007,バリナス,Barinas,Barinas,Barinas,Barinas,Barinas,巴里纳斯州,바리나스, - ///008,ボリーバル,Bolívar,Bolív [rest of string was truncated]";. + ///008,ボリーバル,Bolívar,Bolív [resto de la cadena truncado]";. /// public static string sr_052 { get { @@ -20261,7 +20391,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ティラナ州,Tirana,Tirana,Tirana,Tirana,Tirana,地拉那州,티라나 주, ///003,ベラト州,Berat,Berat,Berat,Berat,Berat,培拉特州,베라트 주, @@ -20270,7 +20400,7 @@ public class Resources { ///006,エルバサン州,Elbasan,Elbasan,Elbasan,Elbasan,Elbasan,爱尔巴桑州,엘바산 주, ///007,フィエル州,Fier,Fier,Fier,Fier,Fier,费里州,피에르 주, ///008,ギロカストラ州,Gjirokastër,Gjirokastër,Gjirokastra,Argirocastro,Gjirokastra,吉诺卡斯特州,지로카스터르 주, - ///009,コルチャ州,Korçë,Korçë,Korça, [rest of string was truncated]";. + ///009,コルチャ州,Korçë,Korçë,Korça, [resto de la cadena truncado]";. /// public static string sr_064 { get { @@ -20279,11 +20409,11 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,オーストラリア首都特別地域,Australian Capital Territory,Territoire de la capitale australienne,Australisches Hauptstadtterritorium,Territorio della Capitale Australiana,Territorio de la Capital Australiana,澳大利亚首都直辖区,오스트레일리아캐피털테리토리, ///003,ニューサウスウェールズ州,New South Wales,Nouvelle-Galles du Sud,Neusüdwales,Nuovo Galles del Sud,Nueva Gales del Sur,新南威尔士州,뉴사우스웨일스 주, - ///004,ノーザンテリトリー,Northern Territory,Territoire du Nord,Nördliches Territorium,Territorio del Nord,Territ [rest of string was truncated]";. + ///004,ノーザンテリトリー,Northern Territory,Territoire du Nord,Nördliches Territorium,Territorio del Nord,Territ [resto de la cadena truncado]";. /// public static string sr_065 { get { @@ -20292,14 +20422,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ウィーン,Vienna,Vienne,Wien,Vienna,Viena,维也纳州,빈, ///003,ブルゲンラント州,Burgenland,Burgenland,Burgenland,Burgenland,Burgenland,布尔根兰州,부르겐란트 주, ///004,ケルンテン州,Carinthia,Carinthie,Kärnten,Carinzia,Carintia,克恩顿州,케른텐 주, ///005,ニーダー・エスターライヒ州,Lower Austria,Basse-Autriche,Niederösterreich,Bassa Austria,Baja Austria,下奥地利州,니더외스터라이히 주, ///006,オーバー・エスターライヒ州,Upper Austria,Haute-Autriche,Oberösterreich,Alta Austria,Alta Austria,上奥地利州,오버외스터라이히 주, - ///007,ザルツブルク州,Salzburg,Salzbourg,S [rest of string was truncated]";. + ///007,ザルツブルク州,Salzburg,Salzbourg,S [resto de la cadena truncado]";. /// public static string sr_066 { get { @@ -20308,7 +20438,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブリュッセル首都地域圏,Brussels Region,Région de Bruxelles-Capitale,Region Brüssel-Hauptstadt,Regione di Bruxelles,Región de Bruselas-Capital,布鲁塞尔首都大区,브뤼셀 지역, ///003,フランデレン地域圏,Flanders,Région flamande,Flandern,Fiandre,Región de Flandes,佛兰德大区,플랑드르 지역, @@ -20321,11 +20451,11 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ボスニア・ヘルツェゴビナ連邦,Federation of Bosnia and Herzegovina,Fédération de Bosnie-Herzégovine,Föderation Bosnien und Herzegowina,Federazione di Bosnia-Erzegovina,Federación de Bosnia-Herzegovina,波黑联邦,보스니아헤르체고비나 연방, ///003,セルビア人共和国,Republika Srpska,République serbe de Bosnie,Serbische Republik,Repubblica Serba di Bosnia-Erzegovina,República Srpska,塞族共和国,스릅스카 공화국, - ///004,ブルチュコ,Brčko District,Brčko (district),Brčko-Distrikt,Distretto di Brčko,Distrito de Brčko, [rest of string was truncated]";. + ///004,ブルチュコ,Brčko District,Brčko (district),Brčko-Distrikt,Distretto di Brčko,Distrito de Brčko, [resto de la cadena truncado]";. /// public static string sr_068 { get { @@ -20334,7 +20464,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ボツワナ,Botswana,Botswana,Botsuana,Botswana,Botsuana,博茨瓦纳,보츠와나,. /// @@ -20345,7 +20475,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ソフィア市,Sofia City,Sofia (ville),Sofia (Stadt),Sofia,Ciudad de Sofía,索非亚市,소피아, ///003,ソフィア州,Sofia Province,Sofia (oblast),Sofia (Region),Regione di Sofia,Provincia de Sofía,索非亚州,소피아 주, @@ -20353,7 +20483,7 @@ public class Resources { ///005,プレベン州,Pleven,Pleven,Plewen,Pleven,Pleven,普列文州,플레벤 주, ///006,ビディン州,Vidin,Vidin,Widin,Vidin,Vidin,维丁州,비딘 주, ///007,バルナ州,Varna,Varna,Warna,Varna,Varna,瓦尔纳州,바르나 주, - ///008,ブルガス州, [rest of string was truncated]";. + ///008,ブルガス州, [resto de la cadena truncado]";. /// public static string sr_070 { get { @@ -20362,12 +20492,12 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///006,ザグレブ直轄市,Zagreb,Zagreb (ville),Zagreb (Stadt),Zagabria,Ciudad de Zagreb,萨格勒布市,자그레브, ///007,ビェロヴァル=ビロゴラ郡,Bjelovar-Bilogora County,Bjelovar-Bilogora,Bjelovar-Bilogora,Regione di Bjelovar e della Bilogora,Condado de Bjelovar-Bilogora,别洛瓦尔-比洛戈拉县,벨로바르-빌로고라 군, ///008,ブロド=ポサヴィナ郡,Brod-Posavina County,Brod-Posavina,Brod-Posavina,Regione di Brod e della Posavina,Condado de Brod-Posavina,布罗德-波萨维纳县,브로드-포사비나 군, - ///009,ドゥブロヴニク=ネレトヴァ郡,Dubrovnik-Neretva County,Dubrovn [rest of string was truncated]";. + ///009,ドゥブロヴニク=ネレトヴァ郡,Dubrovnik-Neretva County,Dubrovn [resto de la cadena truncado]";. /// public static string sr_071 { get { @@ -20376,7 +20506,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,キプロス,Cyprus,Chypre,Zypern,Cipro,Chipre,塞浦路斯,키프로스,. /// @@ -20387,13 +20517,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,プラハ,Prague,Prague,Prag,Praga,Praga,布拉格市,프라하, ///003,中部ボヘミア地方,Central Bohemian Region,Bohême centrale,Mittelböhmische Region,Boemia Centrale,Región de Bohemia Central,中捷克州,스트르제도체스키 지방, ///004,南ボヘミア地方,South Bohemian Region,Bohême du Sud,Südböhmische Region,Boemia Meridionale,Región de Bohemia Meridional,南捷克州,이호체스키 지방, ///005,プルゼニ地方,Plzeň Region,Région de Pilsen,Region Pilsen,Regione di Plseň,Región de Pilsen,比尔森州,플젠 지방, - ///006,カールスバート地方,Karlovy Vary Regio [rest of string was truncated]";. + ///006,カールスバート地方,Karlovy Vary Regio [resto de la cadena truncado]";. /// public static string sr_073 { get { @@ -20402,13 +20532,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///018,グリーンランド,Greenland,Groenland,Grönland,Groenlandia,Groenlandia,格陵兰,그린란드, ///019,デンマーク首都地域,Capital Region of Denmark,Hovedstaden,Hauptstadtregion,Hovedstaden,Hovedstaden,首都大区,덴마크 수도권 지역, ///020,中央ユラン地域,Central Denmark Region,Jutland-Central,Mitteljütland,Jutland Centrale,Jutlandia Central,中日德兰大区,중부 덴마크 지역, ///021,北ユラン地域,North Denmark Region,Jutland-du-Nord,Nordjütland,Jutland Settentrionale,Jutlandia Septentrional,北日德兰大区,북부 덴마크 지역, - ///022,シェラン地域,Region Zea [rest of string was truncated]";. + ///022,シェラン地域,Region Zea [resto de la cadena truncado]";. /// public static string sr_074 { get { @@ -20417,7 +20547,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,エストニア,Estonia,Estonie,Estland,Estonia,Estonia,爱沙尼亚,에스토니아,. /// @@ -20428,13 +20558,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///008,ウーシマー県,Uusimaa / Nyland,Uusimaa,Uusimaa,Uusimaa,Uusimaa,新地区,우시마 주, ///009,ラッピ州,Lappi / Lapland,Laponie,Lappland,Lapponia,Laponia finlandesa,拉普兰省,라피 주, ///010,北ポフヤンマー県,Pohjois-Pohjanmaa / Norra Österbotten,Ostrobotnie du Nord,Nordösterbotten,Ostrobotnia Settentrionale,Ostrobothnia del Norte,北博滕区,북오스트로보트니아 주, ///011,カイヌー県,Kainuu / Kajanaland,Kainuu,Kainuu,Kainuu,Kainuu,凯努区,카이누 주, - ///012,北カレリア県,Pohjois-Karjala / Norra Karelen,Carélie du Nord,Nordkarelien,C [rest of string was truncated]";. + ///012,北カレリア県,Pohjois-Karjala / Norra Karelen,Carélie du Nord,Nordkarelien,C [resto de la cadena truncado]";. /// public static string sr_076 { get { @@ -20443,14 +20573,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,イール・ド・フランス,Île-de-France,Île-de-France,Île-de-France,Île-de-France,Isla de Francia,法兰西岛大区,일드프랑스, ///003,アルザス,Alsace,Alsace,Elsass,Alsazia,Alsacia,阿尔萨斯大区,알자스, ///004,アキテーヌ,Aquitaine,Aquitaine,Aquitanien,Aquitania,Aquitania,阿基坦大区,아키텐, ///005,オーベルニュ,Auvergne,Auvergne,Auvergne,Alvernia,Auvernia,奥弗涅大区,오베르뉴, ///006,バス・ノルマンディ,Lower Normandy,Basse-Normandie,Basse-Normandie,Bassa Normandia,Baja Normandía,下诺曼底大区,바스노르망디, - ///007,ブルゴーニュ,Burgundy,Bourgogne,Burgund,Borg [rest of string was truncated]";. + ///007,ブルゴーニュ,Burgundy,Bourgogne,Burgund,Borg [resto de la cadena truncado]";. /// public static string sr_077 { get { @@ -20459,7 +20589,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ベルリン,Berlin,Berlin,Berlin,Berlino,Berlín,柏林市,베를린, ///003,ヘッセン州,Hesse,Hesse,Hessen,Assia,Hesse,黑森州,헤센 주, @@ -20467,7 +20597,7 @@ public class Resources { ///005,バイエルン州,Bavaria,Bavière,Bayern,Baviera,Baviera,巴伐利亚州,바이에른 주, ///006,ブランデンブルク州,Brandenburg,Brandebourg,Brandenburg,Brandeburgo,Brandeburgo,勃兰登堡州,브란덴부르크 주, ///007,ブレーメン,Bremen,Brême,Bremen,Brema,Bremen,不来梅市,브레멘 주, - ///008,ハンブ [rest of string was truncated]";. + ///008,ハンブ [resto de la cadena truncado]";. /// public static string sr_078 { get { @@ -20476,13 +20606,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アッティカ,Attica,Attique,Attika,Attica,Ática,阿提卡大区,아티카, ///003,中央ギリシャ,Central Greece,Grèce-Centrale,Mittelgriechenland,Grecia Centrale,Grecia Central,中希腊大区,중부 그리스, ///004,中央マケドニア,Central Macedonia,Macédoine-Centrale,Zentralmakedonien,Macedonia Centrale,Macedonia Central,中马其顿大区,중부 마케도니아, ///005,クレタ,Crete,Crète,Kreta,Creta,Creta,克里特大区,크레타, - ///006,東マケドニア・トラキア,East Macedonia and Thrace,Macédoine-Orientale-et-Thrace,Ostmakedonien und Thrakien,Macedonia Orientale [rest of string was truncated]";. + ///006,東マケドニア・トラキア,East Macedonia and Thrace,Macédoine-Orientale-et-Thrace,Ostmakedonien und Thrakien,Macedonia Orientale [resto de la cadena truncado]";. /// public static string sr_079 { get { @@ -20491,13 +20621,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブダペスト,Budapest,Budapest,Budapest,Budapest,Budapest,布达佩斯市,부다페스트, ///003,バーチ・キシュクン州,Bács-Kiskun County,Bács-Kiskun,Bács-Kiskun,Bács-Kiskun,Bács-Kiskun,巴奇-基什孔州,바치키슈쿤 주, ///004,バラニャ州,Baranya County,Baranya,Baranya,Baranya,Baranya,巴兰尼亚州,버러녀 주, ///005,ベーケーシュ州,Békés County,Békés,Békés,Békés,Békés,贝凯什州,베케시 주, - ///006,ボルショド・アバウーイ・ゼンプレーン州,Borsod-Abaúj-Zemplén County,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,包尔绍德-奥包乌伊-曾普伦州, [rest of string was truncated]";. + ///006,ボルショド・アバウーイ・ゼンプレーン州,Borsod-Abaúj-Zemplén County,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,包尔绍德-奥包乌伊-曾普伦州, [resto de la cadena truncado]";. /// public static string sr_080 { get { @@ -20506,7 +20636,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アイスランド,Iceland,Islande,Island,Islanda,Islandia,冰岛,아이슬란드,. /// @@ -20517,7 +20647,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ダブリン州,Dublin,Dublin,Dublin,Dublino,Dublín,都柏林地区,더블린, ///010,カーロウ州,County Carlow,Carlow,Carlow,Carlow,Carlow,卡洛郡,칼로우 주, @@ -20526,7 +20656,7 @@ public class Resources { ///013,コーク州,County Cork,Cork,Cork,Cork,Cork,科克郡,코크 주, ///014,ドニゴール州,County Donegal,Donegal,Donegal,Donegal,Donegal,多内加尔郡,도니골 주, ///015,ゴールウェイ州,County Galway,Galway,Galway,Galway,Galway,戈尔韦郡,골웨이 주, - ///016,ケリー州,County Kerry,K [rest of string was truncated]";. + ///016,ケリー州,County Kerry,K [resto de la cadena truncado]";. /// public static string sr_082 { get { @@ -20535,14 +20665,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ラツィオ州,Lazio,Latium,Latium,Lazio,Lacio,拉齐奥大区,라치오 주, ///003,バッレ・ダオスタ州,Aosta Valley,Vallée d'Aoste,Aostatal,Valle d'Aosta,Valle de Aosta,瓦莱-达奥斯塔大区,발레다오스타 주, ///004,ピエモンテ州,Piedmont,Piémont,Piemont,Piemonte,Piamonte,皮埃蒙特大区,피에몬테 주, ///005,リグリア州,Liguria,Ligurie,Ligurien,Liguria,Liguria,利古里亚大区,리구리아 주, ///006,ロンバルディア州,Lombardy,Lombardie,Lombardei,Lombardia,Lombardía,伦巴第大区,롬바르디아 주, - ///007,トレンティノ・アルト・アディジェ州,Trentino-Alto Adige,Trentin-Haut-Adige,Trentino-Südtirol,Tr [rest of string was truncated]";. + ///007,トレンティノ・アルト・アディジェ州,Trentino-Alto Adige,Trentin-Haut-Adige,Trentino-Südtirol,Tr [resto de la cadena truncado]";. /// public static string sr_083 { get { @@ -20551,7 +20681,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ラトビア,Latvia,Lettonie,Lettland,Lettonia,Letonia,拉脱维亚,라트비아,. /// @@ -20562,7 +20692,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マセル県,Maseru,Maseru,Maseru,Maseru,Maseru,马塞卢区,마세루 주, ///003,べレア県,Berea,Berea,Berea,Berea,Berea,伯里亚区,베레아 주, @@ -20570,7 +20700,7 @@ public class Resources { ///005,レリベ県,Leribe,Leribe,Leribe,Leribe,Leribe,莱里贝区,레리베 주, ///006,マフェテング県,Mafeteng,Mafeteng,Mafeteng,Mafeteng,Mafeteng,马费滕区,마페텡 주, ///007,モハーレスフーク県,Mohale's Hoek,Mohale's Hoek,Mohale's Hoek,Mohale's Hoek,Mohale's Hoek,莫哈莱斯胡克区,모할레스후크 주, - ///008,モコトロング県,Mokhotlong,Mok [rest of string was truncated]";. + ///008,モコトロング県,Mokhotlong,Mok [resto de la cadena truncado]";. /// public static string sr_085 { get { @@ -20579,7 +20709,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,リヒテンシュタイン,Liechtenstein,Liechtenstein,Liechtenstein,Liechtenstein,Liechtenstein,列支敦士登,리히텐슈타인,. /// @@ -20590,14 +20720,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ヴィリニュス州,Vilnius,Vilnius,Vilnius,Vilnius,Condado de Vilna,维尔纽斯县,빌뉴스 주, ///003,アリートゥス州,Alytus,Alytus,Alytus,Alytus,Condado de Alytus,阿利图斯县,알리투스 주, ///004,カウナス州,Kaunas,Kaunas,Kaunas,Kaunas,Condado de Kaunas,考纳斯县,카우나스 주, ///005,クライペダ州,Klaipėda,Klaipėda,Klaipėda,Klaipėda,Condado de Klaipėda,克莱佩达县,클라이페다 주, ///006,マリヤンポレ州,Marijampolė,Marijampolė,Marijampolė,Marijampolė,Condado de Marijampolė,马里扬泊列县,마리얌폴레 주, - ///007,パネベジス州,Panevėžys,Panevėžys,Panevėžys,Panevėžys,C [rest of string was truncated]";. + ///007,パネベジス州,Panevėžys,Panevėžys,Panevėžys,Panevėžys,C [resto de la cadena truncado]";. /// public static string sr_087 { get { @@ -20606,7 +20736,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ルクセンブルク,Luxembourg,Luxembourg,Luxemburg,Lussemburgo,Luxemburgo,卢森堡,룩셈부르크,. /// @@ -20617,7 +20747,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マケドニア,Macedonia (Republic of),Macédoine (République),Mazedonien (Republik),Macedonia (Repubblica di),Macedonia (República),马其顿,마케도니아 공화국,. /// @@ -20628,7 +20758,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マルタ,Malta,Malte,Malta,Malta,Malta,马耳他,몰타,. /// @@ -20639,7 +20769,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モンテネグロ,Montenegro,Monténégro,Montenegro,Montenegro,Montenegro,黑山,몬테네그로,. /// @@ -20650,7 +20780,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モザンビーク,Mozambique,Mozambique,Mosambik,Mozambico,Mozambique,莫桑比克,모잠비크,. /// @@ -20661,7 +20791,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ナミビア,Namibia,Namibie,Namibia,Namibia,Namibia,纳米比亚,나미비아,. /// @@ -20672,14 +20802,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ノールト・ホラント州,North Holland,Hollande-Septentrionale,Nordholland,Olanda Settentrionale,Holanda Septentrional,北荷兰省,노르트홀란트 주, ///003,ドレンテ州,Drenthe,Drenthe,Drenthe,Drenthe,Drente,德伦特省,드렌터 주, ///004,フレボラント州,Flevoland,Flevoland,Flevoland,Flevoland,Flevoland,弗莱福兰省,플레볼란트 주, ///005,フリースラント州,Friesland,Frise,Friesland,Frisia,Frisia,弗里斯兰省,프리슬란트 주, ///006,ヘルデンラント州,Gelderland,Gueldre,Gelderland,Gheldria,Güeldres,海尔德兰省,헬데를란트 주, - ///007,フローニンゲン州,Groningen,Groningue,Groningen [rest of string was truncated]";. + ///007,フローニンゲン州,Groningen,Groningue,Groningen [resto de la cadena truncado]";. /// public static string sr_094 { get { @@ -20688,14 +20818,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ウェリントン,Wellington,Wellington,Wellington,Wellington,Región de Wellington,惠灵顿大区,웰링턴, ///003,オークランド,Auckland,Auckland,Auckland,Auckland,Región de Auckland,奥克兰大区,오클랜드, ///004,ベイ・オブ・プレンティ,Bay of Plenty,Bay of Plenty,Bay of Plenty,Bay of Plenty,Bahía de Plenty,普伦蒂湾大区,베이오브플렌티, ///005,カンタベリー,Canterbury,Canterbury,Canterbury,Canterbury,Canterbury,坎特伯雷大区,캔터베리, ///006,ダニーデン,Otago,Otago,Otago,Otago,Otago,奥塔戈大区,오타고, - ///007,ホークスベイ,Hawke's Bay,Hawke's Bay,Hawke's Bay,Ha [rest of string was truncated]";. + ///007,ホークスベイ,Hawke's Bay,Hawke's Bay,Hawke's Bay,Ha [resto de la cadena truncado]";. /// public static string sr_095 { get { @@ -20704,7 +20834,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///007,オスロ,Oslo,Oslo,Oslo,Oslo,Oslo,奥斯陆,오슬로, ///008,アーケシュフース県,Akershus,Akershus,Akershus,Akershus,Akershus,阿克什胡斯郡,아케르스후스 주, @@ -20712,7 +20842,7 @@ public class Resources { ///010,ブスケルー県,Buskerud,Buskerud,Buskerud,Buskerud,Buskerud,布斯克吕郡,부스케루 주, ///011,フィンマルク県,Finnmark,Finnmark,Finnmark,Finnmark,Finnmark,芬马克郡,핀마르크 주, ///012,ヘードマルク県,Hedmark,Hedmark,Hedmark,Hedmark,Hedmark,海德马克郡,헤드마르크 주, - ///013,ホルダラン県,Hordaland,Hordaland,Ho [rest of string was truncated]";. + ///013,ホルダラン県,Hordaland,Hordaland,Ho [resto de la cadena truncado]";. /// public static string sr_096 { get { @@ -20721,14 +20851,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マゾフシェ,Masovia,Mazovie,Masowien,Masovia,Mazovia,马佐夫舍省,마조프셰, ///003,ドルヌィ・シロンスク,Lower Silesia,Basse-Silésie,Niederschlesien,Bassa Slesia,Baja Silesia,下西里西亚省,하슐레지엔, ///004,クヤヴィ・ポモージェ,Kuyavian-Pomeranian Voivodeship,Cujavie-Poméranie,Kujawien-Pommern,Cuiavia-Pomerania,Cuyavia y Pomerania,库亚瓦滨海省,쿠야비아포메라니아, ///005,ウッジ,Lodz,Łódź,Lodsch,Łódź,Lodz,罗兹省,우치, ///006,ルブリン,Lublin,Lublin,Lublin,Lublino,Lublin,卢布林省,루블린, - ///007,ルブシュ,Lubusz,Lubusz,Lebus,Lebus,Lubus,鲁布斯卡省,루부쉬 [rest of string was truncated]";. + ///007,ルブシュ,Lubusz,Lubusz,Lebus,Lebus,Lubus,鲁布斯卡省,루부쉬 [resto de la cadena truncado]";. /// public static string sr_097 { get { @@ -20737,7 +20867,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,リスボン県,Lisbon,Lisbonne,Lissabon,Lisbona,Distrito de Lisboa,里斯本区,리스보아 주, ///007,マディラ自治州,Madeira,Madère,Madeira,Madera,Madeira,马德拉自治区,마데이라 주, @@ -20745,7 +20875,7 @@ public class Resources { ///009,アヴェイロ県,Aveiro,Aveiro,Aveiro,Aveiro,Distrito de Aveiro,阿威罗区,아베이루 주, ///010,ベージャ県,Beja,Beja,Beja,Beja,Distrito de Beja,贝雅区,베자 주, ///011,ブラガ県,Braga,Braga,Braga,Braga,Distrito de Braga,布拉加区,브라가 주, - ///012,ブラガンサ県,Bragança,Bragança,Bragança,Bragança,Distri [rest of string was truncated]";. + ///012,ブラガンサ県,Bragança,Bragança,Bragança,Bragança,Distri [resto de la cadena truncado]";. /// public static string sr_098 { get { @@ -20754,7 +20884,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブカレスト州,Bucharest,Bucarest,Bukarest,Bucarest,Bucarest,布加勒斯特市,부쿠레슈티 주, ///003,アルバ州,Alba,Alba,Alba,Alba,Alba,阿尔巴县,알바 주, @@ -20763,7 +20893,7 @@ public class Resources { ///006,バカウ州,Bacau,Bacău,Bacău,Bacău,Bacău,巴克乌县,바커우 주, ///007,ビホル州,Bihor,Bihor,Bihor,Bihor,Bihor,比霍尔县,비호르 주, ///008,ビストリツァ・ナサウド州,Bistrita-Nasaud,Bistrita-Năsăud,Bistrita-Năsăud,Bistrita-Năsăud,Bistrita-Năsăud,比斯特里察-讷瑟乌德县,비스트리차너서우드 주, - ///00 [rest of string was truncated]";. + ///00 [resto de la cadena truncado]";. /// public static string sr_099 { get { @@ -20772,13 +20902,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///009,モスクワ市,Moscow City,Moscou (ville),Moskau (Stadt),Mosca,Ciudad de Moscú,莫斯科市,모스크바, ///010,アディゲ共和国,Adygey,Adyguée,Republik Adygeja,Repubblica di Adigezia,República de Adigueya,阿迪格共和国,아디게야 공화국, ///011,アルタイ共和国,Gorno-Altay,Altaï (république),Republik Altai,Repubblica dell'Altaj,República de Altái,阿尔泰共和国,고르노알타이 공화국, ///012,アルタイ地方,Altay,Altaï (kraï),Region Altai,Territorio dell'Altaj,Territorio de Altái,阿尔泰边疆区,알타이 지방, - ///013,アムール州,Amur,Amour,Oblast Amur,Regione [rest of string was truncated]";. + ///013,アムール州,Amur,Amour,Oblast Amur,Regione [resto de la cadena truncado]";. /// public static string sr_100 { get { @@ -20787,7 +20917,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セルビア・コソヴォ,Serbia and Kosovo,Serbie et Kosovo,Serbien und Kosovo,Serbia e Kosovo,Serbia y Kosovo,塞尔维亚及科索沃,세르비아 코소보,. /// @@ -20798,7 +20928,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブラティスラバ,Bratislava,Bratislava,Bratislava,Bratislava,Bratislava,布拉迪斯拉发州,브라티슬라바, ///003,バンスカ・ビストリツァ,Banská Bystrica,Banská Bystrica,Banská Bystrica,Banská Bystrica,Banská Bystrica,班斯卡-比斯特里察州,반스카비스트리차, @@ -20806,7 +20936,7 @@ public class Resources { ///005,二トラ,Nitra,Nitra,Nitra,Nitra,Nitra,尼特拉州,니트라, ///006,プレショフ,Prešov,Prešov,Prešov,Prešov,Prešov,普雷绍夫州,프레쇼프, ///007,トレンチーン,Trencín,Trenčín,Trenčín,Trenčín,Trenčín,特伦钦州,트렌친, - ///008,トルナバ,Trnava,Trnava,Trna [rest of string was truncated]";. + ///008,トルナバ,Trnava,Trnava,Trna [resto de la cadena truncado]";. /// public static string sr_102 { get { @@ -20815,7 +20945,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,スロベニア,Slovenia,Slovénie,Slowenien,Slovenia,Eslovenia,斯洛文尼亚,슬로베니아,. /// @@ -20826,13 +20956,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ハウテン州,Gauteng,Gauteng,Gauteng,Gauteng,Gauteng,豪登省,하우텡 주, ///003,ウェスタン・ケープ州,Western Cape,Cap-Occidental,Westkap,Capo Occidentale,Cabo Occidental,西开普省,웨스턴케이프 주, ///004,ノーザン・ケープ州,Northern Cape,Cap-du-Nord,Nordkap,Capo Settentrionale,Cabo Septentrional,北开普省,노던케이프 주, ///005,イースタン・ケープ州,Eastern Cape,Cap-Oriental,Ostkap,Capo Orientale,Cabo Oriental,东开普省,이스턴케이프 주, - ///006,クワズールー・ナタール州,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,夸祖鲁-纳塔尔省, [rest of string was truncated]";. + ///006,クワズールー・ナタール州,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,夸祖鲁-纳塔尔省, [resto de la cadena truncado]";. /// public static string sr_104 { get { @@ -20841,14 +20971,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マドリード州,Madrid,Madrid,Madrid,Madrid,Madrid,马德里自治区,마드리드 주, ///003,アンダルシーア州,Andalusia,Andalousie,Andalusien,Andalusia,Andalucía,安达卢西亚自治区,안달루시아 주, ///004,アラゴン州,Aragon,Aragon,Aragonien,Aragona,Aragón,阿拉贡自治区,아라곤 주, ///005,アストゥーリアス州,Principality of Asturias,Asturies,Asturien,Principato delle Asturie,Asturias,阿斯图利亚斯自治区,아스투리아스 주, ///006,バレアーレス諸島,Balearic Islands,Îles Baléares,Balearische Inseln,Baleari,Illes Balears,巴利阿里自治区,발레아레스 제도, - ///007,カナリア諸島,Canary Islands,Î [rest of string was truncated]";. + ///007,カナリア諸島,Canary Islands,Î [resto de la cadena truncado]";. /// public static string sr_105 { get { @@ -20857,7 +20987,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ホホ,Hhohho,Hhohho,Hhohho,Hhohho,Hhohho,霍霍区,호호, ///003,ルボンボ,Lubombo,Lubombo,Lubombo,Lubombo,Lubombo,卢邦博区,로밤바, @@ -20871,13 +21001,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ストックホルム州,Stockholm County,Stockholm,Stockholms län,Stoccolma,Estocolmo,斯德哥尔摩省,스톡홀름 주, ///003,スコーネ州,Skåne County,Skåne,Skåne län,Scania,Escania,斯科耐省,스코네 주, ///004,ヴェストラ・イェータランド州,Västra Götaland County,Västra Götaland,Västra Götalands län,Västra Götaland,Västra Götaland,西约特兰省,베스트라예탈란드 주, ///005,エステルイェトランド州,Östergötland County,Östergötland,Östergötlands län,Östergötland,Östergötland,东约特兰省,외스테르예틀란드 주, - ///006,セーデルマンランド州,Södermanland County,Södermanland,Söder [rest of string was truncated]";. + ///006,セーデルマンランド州,Södermanland County,Södermanland,Söder [resto de la cadena truncado]";. /// public static string sr_107 { get { @@ -20886,7 +21016,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ベルン州,Bern,Berne,Bern,Berna,Berna,伯尔尼州,베른 주, ///004,アールガウ州,Aargau,Argovie,Aargau,Argovia,Argovia,阿尔高州,아르가우 주, @@ -20894,7 +21024,7 @@ public class Resources { ///006,フリブール州,Fribourg,Fribourg,Freiburg,Friburgo,Friburgo,弗里堡州,프리부르 주, ///007,ジュネーヴ州,Geneva,Genève,Genf,Ginevra,Ginebra,日内瓦州,제네바 주, ///008,グラールス州,Glarus,Glaris,Glarus,Glarona,Glaris,格拉鲁斯州,글라루스 주, - ///009,グラウビュンデン州,Graubünden,Grisons,Graubünden,Grigioni,Gris [rest of string was truncated]";. + ///009,グラウビュンデン州,Graubünden,Grisons,Graubünden,Grigioni,Gris [resto de la cadena truncado]";. /// public static string sr_108 { get { @@ -20903,7 +21033,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アンカラ県,Ankara,Ankara,Ankara,Ankara,Ankara,安卡拉省,앙카라 주, ///003,イスタンブル県,İstanbul,İstanbul,İstanbul,Istanbul,Estambul,伊斯坦布尔省,이스탄불 주, @@ -20912,7 +21042,7 @@ public class Resources { ///006,アダナ県,Adana,Adana,Adana,Adana,Adana,阿达纳省,아다나 주, ///007,ガジアンテプ県,Gaziantep,Gaziantep,Gaziantep,Gaziantep,Gaziantep,加济安泰普省,가지안테프 주, ///008,コニヤ県,Konya,Konya,Konya,Konya,Konya,科尼亚省,코니아 주, - ///009,アンタリヤ県,Antalya,Antalya,Anta [rest of string was truncated]";. + ///009,アンタリヤ県,Antalya,Antalya,Anta [resto de la cadena truncado]";. /// public static string sr_109 { get { @@ -20921,7 +21051,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,イングランド,England,Angleterre,England,Inghilterra,Inglaterra,英格兰,잉글랜드, ///004,スコットランド,Scotland,Écosse,Schottland,Scozia,Escocia,苏格兰,스코틀랜드, @@ -20935,7 +21065,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ザンビア,Zambia,Zambie,Sambia,Zambia,Zambia,赞比亚,잠비아,. /// @@ -20946,7 +21076,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジンバブエ,Zimbabwe,Zimbabwe,Simbabwe,Zimbabwe,Zimbabue,津巴布韦,짐바브웨,. /// @@ -20957,7 +21087,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アゼルバイジャン,Azerbaijan,Azerbaïdjan,Aserbaidschan,Azerbaigian,Azerbaiyán,阿塞拜疆,아제르바이잔,. /// @@ -20968,7 +21098,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モーリタニア,Mauritania,Mauritanie,Mauretanien,Mauritania,Mauritania,毛里塔尼亚,모리타니,. /// @@ -20979,7 +21109,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マリ,Mali,Mali,Mali,Mali,Malí,马里,말리,. /// @@ -20990,7 +21120,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ニジェール,Niger,Niger,Niger,Niger,Níger,尼日尔,니제르,. /// @@ -21001,7 +21131,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,チャド,Chad,Tchad,Tschad,Ciad,Chad,乍得,차드,. /// @@ -21012,7 +21142,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,スーダン,Sudan,Soudan,Sudan,Sudan,Sudán,苏丹,수단,. /// @@ -21023,7 +21153,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,エリトリア,Eritrea,Érythrée,Eritrea,Eritrea,Eritrea,厄立特里亚,에리트레아,. /// @@ -21034,7 +21164,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジブチ,Djibouti,Djibouti,Dschibuti,Gibuti,Yibuti,吉布提,지부티,. /// @@ -21045,7 +21175,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ソマリア,Somalia,Somalie,Somalia,Somalia,Somalia,索马里,소말리아,. /// @@ -21056,7 +21186,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アンドラ,Andorra,Andorre,Andorra,Andorra,Andorra,安道尔,안도라,. /// @@ -21067,7 +21197,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジブラルタル,Gibraltar,Gibraltar,Gibraltar,Gibilterra,Gibraltar,直布罗陀,지브롤터,. /// @@ -21078,7 +21208,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ガーンジー島,Guernsey,Guernesey,Guernsey,Guernsey,Guernsey,根西,건지 섬,. /// @@ -21089,7 +21219,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マン島,Isle of Man,Île de Man,Isle of Man,Isola di Man,Isla de Man,马恩岛,맨 섬,. /// @@ -21100,7 +21230,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジャージー島,Jersey,Jersey,Jersey,Jersey,Jersey,泽西,저지 섬,. /// @@ -21111,7 +21241,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モナコ,Monaco,Monaco,Monaco,Monaco (Principato di),Mónaco,摩纳哥,모나코,. /// @@ -21122,7 +21252,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,台北市,Taipei City,Taipei,Taipeh,Taipei,Taipéi,-,타이베이, ///003,高雄市,Kaohsiung City,Kaohsiung,Kaohsiung,Kaohsiung,Condado de Kaohsiung,-,가오슝, @@ -21131,7 +21261,7 @@ public class Resources { ///006,台中市,Taichung City,Taichung,Taichung,Taichung,Taichung,-,타이중, ///007,嘉義市,Chiayi City,Chiayi,Chiayi,Chiayi,Chiayi,-,자이, ///008,台南市,Tainan City,Tainan,Tainan,Tainan,Tainan,-,타이난, - ///009,新北市,New Taipe [rest of string was truncated]";. + ///009,新北市,New Taipe [resto de la cadena truncado]";. /// public static string sr_128 { get { @@ -21140,7 +21270,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ソウル特別市,Seoul-teukbyeolsi,Séoul,Seoul,Seoul,Seúl,首尔特别市,서울특별시, ///003,プサン広域市,Busan-gwangyeoksi,Pusan,Busan,Busan,Busán,釜山广域市,부산광역시, @@ -21148,7 +21278,7 @@ public class Resources { ///005,インチョン広域市,Incheon-gwangyeoksi,Incheon,Incheon,Incheon,Incheon,仁川广域市,인천광역시, ///006,クァンジュ広域市,Gwangju-gwangyeoksi,Gwangju,Gwangju,Gwangju,Gwangju,光州广域市,광주광역시, ///007,テジョン広域市,Daejeon-gwangyeoksi,Daejeon,Daejeon,Daejeon,Daejeon,大田广域市,대전광역시, - ///008,ウルサン広域市,Ulsan- [rest of string was truncated]";. + ///008,ウルサン広域市,Ulsan- [resto de la cadena truncado]";. /// public static string sr_136 { get { @@ -21157,7 +21287,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ホンコン,Hong Kong,Hong Kong,Hongkong,Hong Kong,Hong Kong,中国 香港,홍콩,. /// @@ -21168,7 +21298,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,シンガポール,Singapore,Singapour,Singapur,Singapore,Singapur,新加坡,싱가포르,. /// @@ -21179,7 +21309,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,クアラ・ルンプール,Kuala Lumpur,Kuala Lumpur,Kuala Lumpur,Kuala Lumpur,Kuala Lumpur,吉隆坡联邦直辖区,쿠알라룸푸르, ///003,ジョホール州,Johor,Johor,Johor,Johor,Johor,柔佛州,조호르 주, @@ -21187,7 +21317,7 @@ public class Resources { ///005,ケランタン州,Kelantan,Kelantan,Kelantan,Kelantan,Kelantan,吉兰丹州,켈란탄 주, ///006,マラッカ州,Melaka,Malacca,Malakka,Malacca,Melaka,马六甲州,믈라카 주, ///007,ヌグリ・センビラン州,Negeri Sembilan,Negeri Sembilan,Negeri Sembilan,Negeri Sembilan,Negeri Sembilan,森美兰州,느그리슴빌란 주, - ///008,パハン州,Paha [rest of string was truncated]";. + ///008,パハン州,Paha [resto de la cadena truncado]";. /// public static string sr_156 { get { @@ -21196,7 +21326,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,北京市,Beijing,Pékin,Peking,Pechino,Pekín,北京市,베이징, ///003,重慶市,Chongqing,Chongqing,Chongqing,Chongqing,Chongqing,重庆市,충칭, @@ -21205,7 +21335,7 @@ public class Resources { ///006,安徽省,Anhui,Anhui,Anhui,Anhui,Anhui,安徽省,안후이 성, ///007,福建省,Fujian,Fujian,Fujian,Fujian,Fujian,福建省,푸젠 성, ///008,甘粛省,Gansu,Gansu,Gansu,Gansu,Gansu,甘肃省,간쑤 성, - ///009,広東省,Guangdong,Guangdong,Guangdong,Guangdong,Cantón,广东省, [rest of string was truncated]";. + ///009,広東省,Guangdong,Guangdong,Guangdong,Guangdong,Cantón,广东省, [resto de la cadena truncado]";. /// public static string sr_160 { get { @@ -21214,7 +21344,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アブダビ,Abu Dhabi,Abu Dhabi,Abu Dhabi,Abu Dhabi,Abu Dabi,阿布扎比,아부다비, ///003,アジュマン,Ajman,Ajman,Adschman,Ajman,Ajmán,阿治曼,아지만, @@ -21222,7 +21352,7 @@ public class Resources { ///005,ラアス・アル・カイマー,Ras al-Khaimah,Ras al-Khaïmah,Ras al-Chaima,Ras al-Khaimah,Ras el Jaima,哈伊马角,라스알카이마, ///006,ドゥバイ,Dubai,Dubaï,Dubai,Dubai,Dubái,迪拜,두바이, ///007,フジャイラー,Al Fujayrah,Fujaïrah,Fudschaira,Fujayrah,Fujaira,富查伊拉,알푸자이라, - ///008,ウム・アル・カイワイン,Umm al Qaywayn,Umm al-Qaiw [rest of string was truncated]";. + ///008,ウム・アル・カイワイン,Umm al Qaywayn,Umm al-Qaiw [resto de la cadena truncado]";. /// public static string sr_168 { get { @@ -21231,13 +21361,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,デリー,Delhi,Delhi,Delhi,Delhi,Delhi,德里中央直辖区,델리, ///003,アンダマン・ニコバル諸島,Andaman and Nicobar Islands,Îles Andaman-et-Nicobar,Andamanen und Nikobaren,Andamane e Nicobare,Islas Andamán y Nicobar,安达曼和尼科巴群岛中央直辖区,안다만 니코바르 제도, ///004,アーンドラ・プラデーシュ州,Andhra Pradesh,Andhra Pradesh,Andhra Pradesh,Andhra Pradesh,Andhra Pradesh,安得拉邦,안드라프라데시 주, ///005,アッサム州,Assam,Assam,Assam,Assam,Assam,阿萨姆邦,아삼 주, - ///006,チャンディーガル州,Chandīgarh,Chandigarh,Chandigarh,Chandigarh,Chandigarh,昌迪加尔中 [rest of string was truncated]";. + ///006,チャンディーガル州,Chandīgarh,Chandigarh,Chandigarh,Chandigarh,Chandigarh,昌迪加尔中 [resto de la cadena truncado]";. /// public static string sr_169 { get { @@ -21246,7 +21376,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,リヤド州,Ar Riyad,Riyad,Riad,Al-Riyad,Riad,利雅得地区,리야드 주, ///003,バーハ州,Al Bahah,Al Bâhah,Baha,Al-Bahah,Al Bahah,巴哈地区,알바하 주, @@ -21255,7 +21385,7 @@ public class Resources { ///006,カスィーム州,Al Qasim,Al Qasim,Qasim,Al-Qasim,Al Qasim,卡西姆地区,카심 주, ///007,アシール州,'Asir,Assir,Asir,'Asir,Asir,阿西尔地区,아시르 주, ///008,ハーイル州,Ha'il,Haïl,Hail,Ha'il,Hail,哈伊勒地区,하일 주, - ///009,メッカ [rest of string was truncated]";. + ///009,メッカ [resto de la cadena truncado]";. /// public static string sr_174 { get { @@ -21264,7 +21394,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,サンマリノ,San Marino,Saint-Marin,San Marino,San Marino,San Marino,圣马力诺,산마리노,. /// @@ -21275,7 +21405,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バチカン,Vatican City,Vatican,Vatikanstadt,Vaticano (Città del),Vaticano,梵蒂冈,바티칸,. /// @@ -21286,7 +21416,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バーミューダ,Bermuda,Bermudes,Bermuda,Bermude,Bermudas,百慕大,버뮤다,. /// @@ -21297,7 +21427,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap swapBox { get { @@ -21307,7 +21437,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap team { get { @@ -21317,7 +21447,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Duftnote ///Niesel ///Temposchub @@ -21360,7 +21490,7 @@ public class Resources { ///Magmapanzer ///Aquahülle ///Magnetfalle - ///Lärmschutz [rest of string was truncated]";. + ///Lärmschutz [resto de la cadena truncado]";. /// public static string text_abilities_de { get { @@ -21369,7 +21499,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Duftnote ///Niesel ///Temposchub @@ -21412,7 +21542,7 @@ public class Resources { ///Magmapanzer ///Aquahülle ///Magnetfalle - ///Lärmschutz [rest of string was truncated]";. + ///Lärmschutz [resto de la cadena truncado]";. /// public static string text_Abilities_de1 { get { @@ -21421,7 +21551,7 @@ public class Resources { } /// - /// Looks up a localized string similar to — + /// Busca una cadena traducida similar a — ///Stench ///Drizzle ///Speed Boost @@ -21465,7 +21595,7 @@ public class Resources { ///Water Veil ///Magnet Pull ///Soundproof - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_abilities_en { get { @@ -21474,7 +21604,7 @@ public class Resources { } /// - /// Looks up a localized string similar to — + /// Busca una cadena traducida similar a — ///Stench ///Drizzle ///Speed Boost @@ -21518,7 +21648,7 @@ public class Resources { ///Water Veil ///Magnet Pull ///Soundproof - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_Abilities_en1 { get { @@ -21527,7 +21657,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Hedor ///Llovizna ///Impulso @@ -21569,7 +21699,7 @@ public class Resources { ///Foco Interno ///Escudo Magma ///Velo Agua - ///Imá [rest of string was truncated]";. + ///Imá [resto de la cadena truncado]";. /// public static string text_abilities_es { get { @@ -21578,7 +21708,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Hedor ///Llovizna ///Impulso @@ -21620,7 +21750,7 @@ public class Resources { ///Foco Interno ///Escudo Magma ///Velo Agua - ///Imá [rest of string was truncated]";. + ///Imá [resto de la cadena truncado]";. /// public static string text_Abilities_es1 { get { @@ -21629,7 +21759,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Puanteur ///Crachin ///Turbo @@ -21674,7 +21804,7 @@ public class Resources { ///Magnépiège ///Anti-Bruit ///Cuvette - ///Sable Vol [rest of string was truncated]";. + ///Sable Vol [resto de la cadena truncado]";. /// public static string text_abilities_fr { get { @@ -21683,7 +21813,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Puanteur ///Crachin ///Turbo @@ -21728,7 +21858,7 @@ public class Resources { ///Magnépiège ///Anti-Bruit ///Cuvette - ///Sable Vol [rest of string was truncated]";. + ///Sable Vol [resto de la cadena truncado]";. /// public static string text_Abilities_fr1 { get { @@ -21737,7 +21867,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Tanfo ///Piovischio ///Acceleratore @@ -21781,7 +21911,7 @@ public class Resources { ///Idrovelo ///Magnetismo ///Antisuono - ///C [rest of string was truncated]";. + ///C [resto de la cadena truncado]";. /// public static string text_abilities_it { get { @@ -21790,7 +21920,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Tanfo ///Piovischio ///Acceleratore @@ -21834,7 +21964,7 @@ public class Resources { ///Idrovelo ///Magnetismo ///Antisuono - ///C [rest of string was truncated]";. + ///C [resto de la cadena truncado]";. /// public static string text_Abilities_it1 { get { @@ -21843,7 +21973,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ― + /// Busca una cadena traducida similar a ― ///あくしゅう ///あめふらし ///かそく @@ -21918,7 +22048,7 @@ public class Resources { ///やるき ///しろいけむり ///ヨガパワー - ///シェルアーマー [rest of string was truncated]";. + ///シェルアーマー [resto de la cadena truncado]";. /// public static string text_abilities_ja { get { @@ -21927,7 +22057,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ― + /// Busca una cadena traducida similar a ― ///あくしゅう ///あめふらし ///かそく @@ -22002,7 +22132,7 @@ public class Resources { ///やるき ///しろいけむり ///ヨガパワー - ///シェルアーマー [rest of string was truncated]";. + ///シェルアーマー [resto de la cadena truncado]";. /// public static string text_Abilities_ja1 { get { @@ -22011,7 +22141,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///악취 ///잔비 ///가속 @@ -22108,7 +22238,7 @@ public class Resources { ///선파워 ///속보 ///노말스킨 - ///스나이퍼 [rest of string was truncated]";. + ///스나이퍼 [resto de la cadena truncado]";. /// public static string text_abilities_ko { get { @@ -22117,7 +22247,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///악취 ///잔비 ///가속 @@ -22214,7 +22344,7 @@ public class Resources { ///선파워 ///속보 ///노말스킨 - ///스나이퍼 [rest of string was truncated]";. + ///스나이퍼 [resto de la cadena truncado]";. /// public static string text_Abilities_ko1 { get { @@ -22223,7 +22353,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ― + /// Busca una cadena traducida similar a ― ///恶臭 ///降雨 ///加速 @@ -22331,7 +22461,7 @@ public class Resources { ///超幸运 ///引爆 ///危险预知 - ///预知梦 /// [rest of string was truncated]";. + ///预知梦 /// [resto de la cadena truncado]";. /// public static string text_abilities_zh { get { @@ -22340,7 +22470,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ― + /// Busca una cadena traducida similar a ― ///恶臭 ///降雨 ///加速 @@ -22448,7 +22578,7 @@ public class Resources { ///超幸运 ///引爆 ///危险预知 - ///预知梦 /// [rest of string was truncated]";. + ///预知梦 /// [resto de la cadena truncado]";. /// public static string text_Abilities_zh1 { get { @@ -22457,7 +22587,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Mysteriöser Ort ///Entfernter Ort ///\xf000ą\x0001\x0001 von \xf000Ā\x0001\x0000 @@ -22498,7 +22628,7 @@ public class Resources { ///Wendelberg ///Drachenstiege ///Siegesstraße - ///Tessera [rest of string was truncated]";. + ///Tessera [resto de la cadena truncado]";. /// public static string text_bw2_00000_de { get { @@ -22507,7 +22637,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Mystery Zone ///Faraway place ///\xf000Ā\x0001\x0000’s \xf000ą\x0001\x0001 @@ -22546,7 +22676,7 @@ public class Resources { ///PWT ///Chargestone Cave ///Twist Mountain - ///Dragonspiral [rest of string was truncated]";. + ///Dragonspiral [resto de la cadena truncado]";. /// public static string text_bw2_00000_en { get { @@ -22555,7 +22685,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Lugar misterioso ///Lugar lejano ///\xf000ą\x0001\x0001 de \xf000Ā\x0001\x0000 @@ -22594,7 +22724,7 @@ public class Resources { ///PWT ///Cueva Electrorroca ///Monte Tuerca - ///Torre [rest of string was truncated]";. + ///Torre [resto de la cadena truncado]";. /// public static string text_bw2_00000_es { get { @@ -22603,7 +22733,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Endroit Mystérieux ///Endroit Lointain ///\xf000ą\x0001\x0001 de \xf000Ā\x0001\x0000 @@ -22644,7 +22774,7 @@ public class Resources { ///Mont Foré ///Tour Dragospire ///Route Victoire - ///En [rest of string was truncated]";. + ///En [resto de la cadena truncado]";. /// public static string text_bw2_00000_fr { get { @@ -22653,7 +22783,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Zona Misteriosa ///Luogo Remoto ///\xf000ą\x0001\x0001 di \xf000Ā\x0001\x0000 @@ -22688,7 +22818,7 @@ public class Resources { ///Cantiere dei Sogni ///Bosco Girandola ///Deserto della Quiete - ///Castello [rest of string was truncated]";. + ///Castello [resto de la cadena truncado]";. /// public static string text_bw2_00000_it { get { @@ -22697,7 +22827,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///なぞのばしょ ///とおいばしょ ///\xf000Ā\x0001\x0000の\xf000ą\x0001\x0001 @@ -22750,7 +22880,7 @@ public class Resources { ///ブラックシティ ///ホワイトフォレスト ///ユナイテッドタワー - ///ちかすいみゃく [rest of string was truncated]";. + ///ちかすいみゃく [resto de la cadena truncado]";. /// public static string text_bw2_00000_ja { get { @@ -22759,7 +22889,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///수수께끼의 장소 ///먼 곳 ///\xf000Ā\x0001\x0000의 \xf000ą\x0001\x0001 @@ -22827,7 +22957,7 @@ public class Resources { ///물풍경도개교 ///실린더 브리지 ///빌리지 브리지 - ///원더 [rest of string was truncated]";. + ///원더 [resto de la cadena truncado]";. /// public static string text_bw2_00000_ko { get { @@ -22836,7 +22966,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///神秘的地方 ///遥远的地方 ///\xf000Ā\x0001\x0000的\xf000ą\x0001\x0001 @@ -22914,7 +23044,7 @@ public class Resources { ///潜入连接 ///雷文市 ///帆巴市 - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_bw2_00000_zh { get { @@ -22923,7 +23053,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Linktausch ///Linktausch ///Kanto @@ -22946,7 +23076,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Link Trade ///Link Trade ///Kanto @@ -22969,7 +23099,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Intercambio ///Intercambio ///Kanto @@ -22992,7 +23122,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Échange Link ///Échange Link ///Kanto @@ -23015,7 +23145,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Scambio in link ///Scambio in link ///Kanto @@ -23038,7 +23168,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///つうしんこうかん ///つうしんこうかん ///カントーちほう @@ -23061,7 +23191,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///통신교환 ///통신교환 ///관동지방 @@ -23084,7 +23214,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///连接交换 ///连接交换 ///关都地区 @@ -23107,7 +23237,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Idyll + /// Busca una cadena traducida similar a Idyll ///Entfernter Ort ///Pokémon Movie ///Pokémon Film 10 @@ -23146,7 +23276,7 @@ public class Resources { ///Worlds 2011 ///Worlds 2012 ///Worlds 2013 - ///Worlds 2014 [rest of string was truncated]";. + ///Worlds 2014 [resto de la cadena truncado]";. /// public static string text_bw2_40000_de { get { @@ -23155,7 +23285,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lovely place + /// Busca una cadena traducida similar a Lovely place ///Faraway place ///Pokémon Movie ///Pokémon Movie 10 @@ -23193,7 +23323,7 @@ public class Resources { ///Worlds 2010 ///Worlds 2011 ///Worlds 2012 - ///Worlds [rest of string was truncated]";. + ///Worlds [resto de la cadena truncado]";. /// public static string text_bw2_40000_en { get { @@ -23202,7 +23332,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar encantador + /// Busca una cadena traducida similar a Lugar encantador ///Lugar lejano ///Película Pokémon ///Película PKMN 10 @@ -23232,7 +23362,7 @@ public class Resources { ///Camp. Mundial 2014 ///Camp. Mundial 2015 ///Camp. Mundial 2016 - ///Camp [rest of string was truncated]";. + ///Camp [resto de la cadena truncado]";. /// public static string text_bw2_40000_es { get { @@ -23241,7 +23371,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit superbe + /// Busca una cadena traducida similar a Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 10 @@ -23279,7 +23409,7 @@ public class Resources { ///Worlds 2010 ///Worlds 2011 ///Worlds 2012 - ///Worlds 2 [rest of string was truncated]";. + ///Worlds 2 [resto de la cadena truncado]";. /// public static string text_bw2_40000_fr { get { @@ -23288,7 +23418,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Luogo grazioso + /// Busca una cadena traducida similar a Luogo grazioso ///Luogo Remoto ///Film Pokémon ///Film Pokémon 10 @@ -23327,7 +23457,7 @@ public class Resources { ///Worlds 2011 ///Worlds 2012 ///Worlds 2013 - ///World [rest of string was truncated]";. + ///World [resto de la cadena truncado]";. /// public static string text_bw2_40000_it { get { @@ -23336,7 +23466,7 @@ public class Resources { } /// - /// Looks up a localized string similar to すてきなばしょ + /// Busca una cadena traducida similar a すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが10 @@ -23388,7 +23518,7 @@ public class Resources { ///VGE2012 ///VGE2013 ///VGE2014 - ///VGE2 [rest of string was truncated]";. + ///VGE2 [resto de la cadena truncado]";. /// public static string text_bw2_40000_ja { get { @@ -23397,7 +23527,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 근사한 장소 + /// Busca una cadena traducida similar a 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화10 @@ -23453,7 +23583,7 @@ public class Resources { ///VGE2016 ///VGE2017 ///VGE2018 - ///VGE2 [rest of string was truncated]";. + ///VGE2 [resto de la cadena truncado]";. /// public static string text_bw2_40000_ko { get { @@ -23462,7 +23592,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 美妙的地方 + /// Busca una cadena traducida similar a 美妙的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影10 @@ -23519,7 +23649,7 @@ public class Resources { ///VGE2017 ///VGE2018 ///VGE2019 - ///VG [rest of string was truncated]";. + ///VG [resto de la cadena truncado]";. /// public static string text_bw2_40000_zh { get { @@ -23528,7 +23658,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Entfernte Person + /// Busca una cadena traducida similar a Entfernte Person ///Betreuerpärchen ///Züchter. /// @@ -23539,7 +23669,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Stranger + /// Busca una cadena traducida similar a Stranger ///Day-Care Couple ///PKMN Breeder. /// @@ -23550,7 +23680,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lejana + /// Busca una cadena traducida similar a Persona lejana ///Pareja guardería ///Criapokémon. /// @@ -23561,7 +23691,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Personne lointaine + /// Busca una cadena traducida similar a Personne lointaine ///Couple de la Pension ///Éleveuse. /// @@ -23572,7 +23702,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lontana + /// Busca una cadena traducida similar a Persona lontana ///Coppia Pensione ///AllevaPKMN. /// @@ -23583,7 +23713,7 @@ public class Resources { } /// - /// Looks up a localized string similar to とおくにいるひと + /// Busca una cadena traducida similar a とおくにいるひと ///そだてやふうふ ///トレジャーハンター. /// @@ -23594,7 +23724,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 멀리 있는 사람 + /// Busca una cadena traducida similar a 멀리 있는 사람 ///키우미집부부 ///브리더. /// @@ -23605,7 +23735,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 远处的人 + /// Busca una cadena traducida similar a 远处的人 ///饲育屋夫妇 ///寻宝猎人. /// @@ -23616,7 +23746,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Liebt es zu essen. + /// Busca una cadena traducida similar a Liebt es zu essen. ///Nickt oft ein. ///Schläft gern. ///Macht oft Unordnung. @@ -23640,7 +23770,7 @@ public class Resources { ///Hinterhältig. ///Äußerst gerissen. ///Ist oft in Gedanken. - ///Sehr pedantis [rest of string was truncated]";. + ///Sehr pedantis [resto de la cadena truncado]";. /// public static string text_character_de { get { @@ -23649,7 +23779,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Loves to eat. + /// Busca una cadena traducida similar a Loves to eat. ///Takes plenty of siestas. ///Nods off a lot. ///Scatters things often. @@ -23675,7 +23805,7 @@ public class Resources { ///Often lost in thought. ///Very finicky. ///Strong willed. - ///Somewhat vai [rest of string was truncated]";. + ///Somewhat vai [resto de la cadena truncado]";. /// public static string text_character_en { get { @@ -23684,7 +23814,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Le encanta comer. + /// Busca una cadena traducida similar a Le encanta comer. ///A menudo se duerme. ///Duerme mucho. ///Suele desordenar cosas. @@ -23705,7 +23835,7 @@ public class Resources { ///Es un poco payaso. ///Huye rápido. ///Es extremadamente curioso. - ///Le gusta hacer [rest of string was truncated]";. + ///Le gusta hacer [resto de la cadena truncado]";. /// public static string text_character_es { get { @@ -23714,7 +23844,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Adore manger. + /// Busca una cadena traducida similar a Adore manger. ///S’assoupit souvent. ///Dort beaucoup. ///Éparpille des choses. @@ -23741,7 +23871,7 @@ public class Resources { ///Très particulier. ///Très volontaire. ///Un peu vaniteux. - ///Esprit [rest of string was truncated]";. + ///Esprit [resto de la cadena truncado]";. /// public static string text_character_fr { get { @@ -23750,7 +23880,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Adora mangiare. + /// Busca una cadena traducida similar a Adora mangiare. ///Si addormenta spesso. ///Dorme a lungo. ///Lascia cose in giro. @@ -23773,7 +23903,7 @@ public class Resources { ///È un grande ficcanaso. ///È alquanto vivace. ///È estremamente sagace. - ///Si perde nel suo mo [rest of string was truncated]";. + ///Si perde nel suo mo [resto de la cadena truncado]";. /// public static string text_character_it { get { @@ -23782,7 +23912,7 @@ public class Resources { } /// - /// Looks up a localized string similar to たべるのが だいすき. + /// Busca una cadena traducida similar a たべるのが だいすき. ///ひるねを よくする. ///いねむりが おおい. ///ものを よく ちらかす. @@ -23820,7 +23950,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 먹는 것을 제일 좋아함. + /// Busca una cadena traducida similar a 먹는 것을 제일 좋아함. ///낮잠을 잘 잠. ///말뚝잠이 많음. ///물건을 잘 어지름. @@ -23858,7 +23988,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 非常喜欢吃东西。 + /// Busca una cadena traducida similar a 非常喜欢吃东西。 ///经常睡午觉。 ///常常打瞌睡。 ///经常乱扔东西。 @@ -23896,7 +24026,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///Outskirt Stand (C) Cipher Lab (XD) ///Outskirt Stand (C) ///Phenac City (C) @@ -23915,7 +24045,7 @@ public class Resources { ///Pyrite Town (C) Mt. Battle (XD) ///Pyrite Town (C) Mt. Battle (XD) ///Pyrite Town (C) Mt. Battle (XD) - ///P [rest of string was truncated]";. + ///P [resto de la cadena truncado]";. /// public static string text_cxd_00000_en { get { @@ -23924,7 +24054,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Kein + /// Busca una cadena traducida similar a Kein ///Zertrümmerer (HGSS) ///Hohes Graß /// @@ -23958,7 +24088,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -23991,7 +24121,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Golpe roca (HGSS) ///Hierba Alta /// @@ -24024,7 +24154,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24057,7 +24187,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24090,7 +24220,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24123,7 +24253,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24156,7 +24286,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 无 + /// Busca una cadena traducida similar a 无 ///碎岩 (HGSS) ///高草丛 /// @@ -24189,7 +24319,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -24440,7 +24570,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_de { get { @@ -24449,7 +24579,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -24702,7 +24832,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_en { get { @@ -24711,7 +24841,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Picoreja + /// Busca una cadena traducida similar a Picoreja /// /// /// @@ -24963,7 +25093,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_forms_es { get { @@ -24972,7 +25102,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Picoreja + /// Busca una cadena traducida similar a Picoreja /// /// /// @@ -25224,7 +25354,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_Forms_es1 { get { @@ -25233,7 +25363,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -25483,7 +25613,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_fr { get { @@ -25492,7 +25622,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -25742,7 +25872,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_Forms_fr1 { get { @@ -25751,7 +25881,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -26002,7 +26132,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_it { get { @@ -26011,7 +26141,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -26262,7 +26392,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_Forms_it1 { get { @@ -26271,7 +26401,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -26522,7 +26652,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_forms_ja { get { @@ -26531,7 +26661,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -26781,7 +26911,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_ko { get { @@ -26790,7 +26920,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 刺刺耳皮丘 + /// Busca una cadena traducida similar a 刺刺耳皮丘 /// /// /// @@ -27041,7 +27171,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_zh { get { @@ -27050,7 +27180,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Saphir ///Rubin ///Smaragd @@ -27097,7 +27227,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Sapphire ///Ruby ///Emerald @@ -27144,7 +27274,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Zafiro ///Rubí ///Esmeralda @@ -27191,7 +27321,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Saphir ///Rubis ///Émeraude @@ -27238,7 +27368,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Zaffiro ///Rubino ///Smeraldo @@ -27285,7 +27415,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///サファイア ///ルビー ///エメラルド @@ -27332,7 +27462,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///사파이어 ///루비 ///에메랄드 @@ -27379,7 +27509,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///蓝宝石 ///红宝石 ///绿宝石 @@ -27426,7 +27556,7 @@ public class Resources { } /// - /// Looks up a localized string similar to irgendwo + /// Busca una cadena traducida similar a irgendwo ///in der ersten Stadt ///in [VAR GENDBR(00FF,0506,0000)]dessenderen Zuhause ///im Zuhause eines Freundes @@ -27447,7 +27577,7 @@ public class Resources { ///in einer Stadt an einem Abhang ///in einer prachtvollen Stadt ///in einer Pokémon-Arena - ///in [rest of string was truncated]";. + ///in [resto de la cadena truncado]";. /// public static string text_genloc_de { get { @@ -27456,7 +27586,7 @@ public class Resources { } /// - /// Looks up a localized string similar to somewhere + /// Busca una cadena traducida similar a somewhere ///the first town ///home ///a friend’s house @@ -27490,7 +27620,7 @@ public class Resources { ///a restaurant ///a high-class restaurant ///a seaside city - ///the inside of a tall bu [rest of string was truncated]";. + ///the inside of a tall bu [resto de la cadena truncado]";. /// public static string text_genloc_en { get { @@ -27499,7 +27629,7 @@ public class Resources { } /// - /// Looks up a localized string similar to algún lugar + /// Busca una cadena traducida similar a algún lugar ///el pueblo de partida ///casa ///casa de un amigo @@ -27528,7 +27658,7 @@ public class Resources { ///un museo ///un estudio de grabación ///una estación - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_genloc_es { get { @@ -27537,7 +27667,7 @@ public class Resources { } /// - /// Looks up a localized string similar to quelque part + /// Busca una cadena traducida similar a quelque part ///dans la ville de départ ///dans sa maison ///chez un ami @@ -27560,7 +27690,7 @@ public class Resources { ///dans une Arène Pokémon ///dans une école ///dans une ville immense - ///dans un imm [rest of string was truncated]";. + ///dans un imm [resto de la cadena truncado]";. /// public static string text_genloc_fr { get { @@ -27569,7 +27699,7 @@ public class Resources { } /// - /// Looks up a localized string similar to da qualche parte + /// Busca una cadena traducida similar a da qualche parte ///nella città iniziale ///a casa ///a casa di amici @@ -27594,7 +27724,7 @@ public class Resources { ///in una grande città ///in un edificio ///in un caffè elegante - ///in un c [rest of string was truncated]";. + ///in un c [resto de la cadena truncado]";. /// public static string text_genloc_it { get { @@ -27603,7 +27733,7 @@ public class Resources { } /// - /// Looks up a localized string similar to どこか + /// Busca una cadena traducida similar a どこか ///さいしょのまち ///うち ///ともだちのいえ @@ -27666,7 +27796,7 @@ public class Resources { ///すいどう ///サファリ ///ひみつきち - ///コンテストライブかい [rest of string was truncated]";. + ///コンテストライブかい [resto de la cadena truncado]";. /// public static string text_genloc_ja { get { @@ -27675,7 +27805,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 어딘가 + /// Busca una cadena traducida similar a 어딘가 ///최초의 마을 ///집 ///친구의 집 @@ -27754,7 +27884,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 某处 + /// Busca una cadena traducida similar a 某处 ///第一个城镇 ///家 ///朋友的家 @@ -27833,7 +27963,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///New Bark Town ///Route 29 ///Cherrygrove City @@ -27878,7 +28008,7 @@ public class Resources { ///Dragon's Den ///Route 45 ///Dark Cave - ///Rout [rest of string was truncated]";. + ///Rout [resto de la cadena truncado]";. /// public static string text_gsc_00000_en { get { @@ -27887,7 +28017,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (Ninguno) + /// Busca una cadena traducida similar a (Ninguno) ///Pueblo Primavera ///Ruta 29 ///Ciudad Cerezo @@ -27932,7 +28062,7 @@ public class Resources { ///Guarida Dragón ///Ruta 45 ///Cueva Oscura - ///Rut [rest of string was truncated]";. + ///Rut [resto de la cadena truncado]";. /// public static string text_gsc_00000_es { get { @@ -27941,7 +28071,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///若叶镇 ///29号道路 ///吉花市 @@ -28062,7 +28192,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_gsc_00000_zh { get { @@ -28071,7 +28201,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Mysteriöser Ort + /// Busca una cadena traducida similar a Mysteriöser Ort ///Zweiblattdorf ///Sandgemme ///Flori @@ -28117,7 +28247,7 @@ public class Resources { ///Route 228 ///Route 229 ///Route 230 - ///Erze [rest of string was truncated]";. + ///Erze [resto de la cadena truncado]";. /// public static string text_hgss_00000_de { get { @@ -28126,7 +28256,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Mystery Zone + /// Busca una cadena traducida similar a Mystery Zone ///Twinleaf Town ///Sandgem Town ///Floaroma Town @@ -28166,7 +28296,7 @@ public class Resources { ///Route 222 ///Route 223 ///Route 224 - ///Route 2 [rest of string was truncated]";. + ///Route 2 [resto de la cadena truncado]";. /// public static string text_hgss_00000_en { get { @@ -28175,7 +28305,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar misterioso + /// Busca una cadena traducida similar a Lugar misterioso ///Pueblo Hojaverde ///Pueblo Arena ///Pueblo Aromaflor @@ -28216,7 +28346,7 @@ public class Resources { ///Ruta 223 ///Ruta 224 ///Ruta 225 - ///Rut [rest of string was truncated]";. + ///Rut [resto de la cadena truncado]";. /// public static string text_hgss_00000_es { get { @@ -28225,7 +28355,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit mystér. + /// Busca una cadena traducida similar a Endroit mystér. ///Bonaugure ///Littorella ///Floraville @@ -28270,7 +28400,7 @@ public class Resources { ///Route 227 ///Route 228 ///Route 229 - ///Chenal [rest of string was truncated]";. + ///Chenal [resto de la cadena truncado]";. /// public static string text_hgss_00000_fr { get { @@ -28279,7 +28409,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Zona Misteriosa + /// Busca una cadena traducida similar a Zona Misteriosa ///Duefoglie ///Sabbiafine ///Giardinfiorito @@ -28318,7 +28448,7 @@ public class Resources { ///Percorso 221 ///Percorso 222 ///Percorso 223 - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_hgss_00000_it { get { @@ -28327,7 +28457,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---- + /// Busca una cadena traducida similar a ---- ///フタバタウン ///マサゴタウン ///ソノオタウン @@ -28381,7 +28511,7 @@ public class Resources { ///やりのはしら ///だいしつげん ///ズイのいせき - ///チャンピ [rest of string was truncated]";. + ///チャンピ [resto de la cadena truncado]";. /// public static string text_hgss_00000_ja { get { @@ -28390,7 +28520,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 수수께끼의 장소 + /// Busca una cadena traducida similar a 수수께끼의 장소 ///떡잎마을 ///잔모래마을 ///꽃향기마을 @@ -28460,7 +28590,7 @@ public class Resources { ///마니아터널 ///자랑의 뒷마당 ///갖철섬 - ///숲의 양옥집 /// [rest of string was truncated]";. + ///숲의 양옥집 /// [resto de la cadena truncado]";. /// public static string text_hgss_00000_ko { get { @@ -28469,7 +28599,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---- + /// Busca una cadena traducida similar a ---- ///双叶镇 ///真砂镇 ///苑之镇 @@ -28546,7 +28676,7 @@ public class Resources { ///睿智湖畔 ///隐泉之路 ///心齐湖 - ///立志湖 /// [rest of string was truncated]";. + ///立志湖 /// [resto de la cadena truncado]";. /// public static string text_hgss_00000_zh { get { @@ -28555,7 +28685,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Betreuerpärchen + /// Busca una cadena traducida similar a Betreuerpärchen ///Linktausch ///Linktausch ///Kanto @@ -28578,7 +28708,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Day-Care Couple + /// Busca una cadena traducida similar a Day-Care Couple ///Link trade ///Link trade ///Kanto @@ -28601,7 +28731,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pareja guardería + /// Busca una cadena traducida similar a Pareja guardería ///Intercambio ///Intercambio ///Kanto @@ -28624,7 +28754,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Couple Pension + /// Busca una cadena traducida similar a Couple Pension ///Echange Link ///Echange Link ///Kanto @@ -28647,7 +28777,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Coppia Pensione + /// Busca una cadena traducida similar a Coppia Pensione ///Scambio in link ///Scambio in link ///Kanto @@ -28670,7 +28800,7 @@ public class Resources { } /// - /// Looks up a localized string similar to そだてやふうふ + /// Busca una cadena traducida similar a そだてやふうふ ///つうしんこうかん ///つうしんこうかん ///カント-ちほう @@ -28693,7 +28823,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 키우미집부부 + /// Busca una cadena traducida similar a 키우미집부부 ///통신교환 ///통신교환 ///관동지방 @@ -28716,7 +28846,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 饲育屋夫妇 + /// Busca una cadena traducida similar a 饲育屋夫妇 ///连接交换 ///连接交换 ///关都地区 @@ -28739,7 +28869,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Idyll + /// Busca una cadena traducida similar a Idyll ///Pokémon Ranger ///Entfernter Ort ///Pokémon Movie @@ -28770,7 +28900,7 @@ public class Resources { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Pokémon Festa [rest of string was truncated]";. + ///Pokémon Festa [resto de la cadena truncado]";. /// public static string text_hgss_03000_de { get { @@ -28779,7 +28909,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lovely place + /// Busca una cadena traducida similar a Lovely place ///Pokémon Ranger ///Faraway place ///Pokémon Movie @@ -28809,7 +28939,7 @@ public class Resources { ///Space World 16 ///Pokémon Festa ///Pokémon Festa 06 - ///Pokémon Festa 0 [rest of string was truncated]";. + ///Pokémon Festa 0 [resto de la cadena truncado]";. /// public static string text_hgss_03000_en { get { @@ -28818,7 +28948,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar encantador + /// Busca una cadena traducida similar a Lugar encantador ///Pokémon Ranger ///Lugar lejano ///Película Pokémon @@ -28848,7 +28978,7 @@ public class Resources { ///Space World 16 ///Pokémon Festa ///Pokémon Festa 06 - ///Pokémon Fe [rest of string was truncated]";. + ///Pokémon Fe [resto de la cadena truncado]";. /// public static string text_hgss_03000_es { get { @@ -28857,7 +28987,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit superbe + /// Busca una cadena traducida similar a Endroit superbe ///Pokémon Ranger ///Endroit lointain ///Film Pokémon @@ -28888,7 +29018,7 @@ public class Resources { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Po [rest of string was truncated]";. + ///Po [resto de la cadena truncado]";. /// public static string text_hgss_03000_fr { get { @@ -28897,7 +29027,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Luogo grazioso + /// Busca una cadena traducida similar a Luogo grazioso ///Pokémon Ranger ///Luogo Remoto ///Film Pokémon @@ -28928,7 +29058,7 @@ public class Resources { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Pokémon [rest of string was truncated]";. + ///Pokémon [resto de la cadena truncado]";. /// public static string text_hgss_03000_it { get { @@ -28937,7 +29067,7 @@ public class Resources { } /// - /// Looks up a localized string similar to すてきなばしょ + /// Busca una cadena traducida similar a すてきなばしょ ///ポケモンレンジャ- ///とおいばしょ ///ポケモンえいが @@ -28984,7 +29114,7 @@ public class Resources { ///ポケパ-ク09 ///ポケパ-ク10 ///ポケパ-ク11 - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_hgss_03000_ja { get { @@ -28993,7 +29123,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 근사한 장소 + /// Busca una cadena traducida similar a 근사한 장소 ///다른 지방 ///먼 곳 ///포켓몬영화 @@ -29051,7 +29181,7 @@ public class Resources { ///PC후쿠오카 ///PC나고야 ///PC삿포로 - ///PC요코하 [rest of string was truncated]";. + ///PC요코하 [resto de la cadena truncado]";. /// public static string text_hgss_03000_ko { get { @@ -29060,7 +29190,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 美丽的地方 + /// Busca una cadena traducida similar a 美丽的地方 ///宝可梦保育家 ///遥远的地方 ///宝可梦电影 @@ -29123,7 +29253,7 @@ public class Resources { ///宝可梦活动 ///宝可梦活动06 ///宝可梦活动07 - ///宝可梦活动08 [rest of string was truncated]";. + ///宝可梦活动08 [resto de la cadena truncado]";. /// public static string text_hgss_03000_zh { get { @@ -29132,7 +29262,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Kein Item + /// Busca una cadena traducida similar a Kein Item ///Meisterball ///Hyperball ///Superball @@ -29177,7 +29307,7 @@ public class Resources { ///Lavakeks ///Beerensaft ///Zauberasche - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_items_de { get { @@ -29186,7 +29316,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Kein Item + /// Busca una cadena traducida similar a Kein Item ///Meisterball ///Hyperball ///Superball @@ -29231,7 +29361,7 @@ public class Resources { ///Lavakeks ///Beerensaft ///Zauberasche - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_Items_de1 { get { @@ -29240,7 +29370,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Master Ball ///Ultra Ball ///Great Ball @@ -29283,7 +29413,7 @@ public class Resources { ///Elixir ///Max Elixir ///Lava Cookie - ///Berry Juice [rest of string was truncated]";. + ///Berry Juice [resto de la cadena truncado]";. /// public static string text_items_en { get { @@ -29292,7 +29422,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ninguno + /// Busca una cadena traducida similar a Ninguno ///Master Ball ///Ultra Ball ///Super Ball @@ -29333,7 +29463,7 @@ public class Resources { ///Éter ///Éter Máximo ///Elixir - ///Elixir Máximo /// [rest of string was truncated]";. + ///Elixir Máximo /// [resto de la cadena truncado]";. /// public static string text_items_es { get { @@ -29342,7 +29472,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Aucun objet + /// Busca una cadena traducida similar a Aucun objet ///Master Ball ///Hyper Ball ///Super Ball @@ -29385,7 +29515,7 @@ public class Resources { ///Élixir ///Max Élixir ///Lava Cookie - ///Jus de Baie [rest of string was truncated]";. + ///Jus de Baie [resto de la cadena truncado]";. /// public static string text_items_fr { get { @@ -29394,7 +29524,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Niente + /// Busca una cadena traducida similar a Niente ///Master Ball ///Ultra Ball ///Mega Ball @@ -29437,7 +29567,7 @@ public class Resources { ///Elisir ///Elisir Max ///Lavottino - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_items_it { get { @@ -29446,7 +29576,7 @@ public class Resources { } /// - /// Looks up a localized string similar to なし + /// Busca una cadena traducida similar a なし ///マスターボール ///ハイパーボール ///スーパーボール @@ -29505,7 +29635,7 @@ public class Resources { ///クリティカット ///プラスパワー ///ディフェンダー - ///スピーダー /// [rest of string was truncated]";. + ///スピーダー /// [resto de la cadena truncado]";. /// public static string text_items_ja { get { @@ -29514,7 +29644,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 없음 + /// Busca una cadena traducida similar a 없음 ///마스터볼 ///하이퍼볼 ///수퍼볼 @@ -29593,7 +29723,7 @@ public class Resources { ///실버스프레이 ///골드스프레이 ///동굴탈출로프 - ///벌레회피스프레이 /// [rest of string was truncated]";. + ///벌레회피스프레이 /// [resto de la cadena truncado]";. /// public static string text_items_ko { get { @@ -29602,7 +29732,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 无 + /// Busca una cadena traducida similar a 无 ///大师球 ///高级球 ///超级球 @@ -29690,7 +29820,7 @@ public class Resources { ///叶之石 ///小蘑菇 ///大蘑菇 - ///珍珠 [rest of string was truncated]";. + ///珍珠 [resto de la cadena truncado]";. /// public static string text_items_zh { get { @@ -29699,7 +29829,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///Master Ball ///Ultra Ball ///Great Ball @@ -29747,7 +29877,7 @@ public class Resources { ///Bike Voucher ///X Accuracy ///Leaf Stone - ///Card Ke [rest of string was truncated]";. + ///Card Ke [resto de la cadena truncado]";. /// public static string text_ItemsG1_en { get { @@ -29756,7 +29886,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ningún + /// Busca una cadena traducida similar a Ningún ///Master Ball ///Ultra Ball ///Super Ball @@ -29800,7 +29930,7 @@ public class Resources { ///Fósil domo ///Fósil hélix ///Llave secreta - ///? [rest of string was truncated]";. + ///? [resto de la cadena truncado]";. /// public static string text_ItemsG1_es { get { @@ -29809,7 +29939,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (无) + /// Busca una cadena traducida similar a (无) ///大师球 ///高级球 ///超级球 @@ -29982,7 +30112,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_ItemsG1_zh { get { @@ -29991,7 +30121,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///Master Ball ///Ultra Ball ///BrightPowder @@ -30036,7 +30166,7 @@ public class Resources { ///Super Repel ///Max Repel ///Dire Hit - ///Ter [rest of string was truncated]";. + ///Ter [resto de la cadena truncado]";. /// public static string text_ItemsG2_en { get { @@ -30045,7 +30175,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ningún + /// Busca una cadena traducida similar a Ningún ///Master Ball ///Ultra Ball ///Polvo brillo @@ -30086,7 +30216,7 @@ public class Resources { ///Cura Total ///Revivir ///Revivir Máximo - ///Prote [rest of string was truncated]";. + ///Prote [resto de la cadena truncado]";. /// public static string text_ItemsG2_es { get { @@ -30095,7 +30225,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (无) + /// Busca una cadena traducida similar a (无) ///大师球 ///高级球 ///光粉 @@ -30179,7 +30309,7 @@ public class Resources { ///毒针 ///王者之证 ///苦涩的果实 - ///薄荷的果 [rest of string was truncated]";. + ///薄荷的果 [resto de la cadena truncado]";. /// public static string text_ItemsG2_zh { get { @@ -30188,7 +30318,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///Master Ball ///Ultra Ball ///Great Ball @@ -30235,7 +30365,7 @@ public class Resources { ///Berry Juice ///Sacred Ash ///Shoal Salt - ///Shoal S [rest of string was truncated]";. + ///Shoal S [resto de la cadena truncado]";. /// public static string text_ItemsG3_en { get { @@ -30244,7 +30374,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ningún + /// Busca una cadena traducida similar a Ningún ///Master Ball ///Ultra Ball ///Super Ball @@ -30288,7 +30418,7 @@ public class Resources { ///Flauta Roja ///Flauta Negra ///Flauta Blanca - ///Zumo d [rest of string was truncated]";. + ///Zumo d [resto de la cadena truncado]";. /// public static string text_ItemsG3_es { get { @@ -30297,7 +30427,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (无) + /// Busca una cadena traducida similar a (无) ///大师球 ///高级球 ///超级球 @@ -30407,7 +30537,7 @@ public class Resources { ///大珍珠 ///星星沙子 ///星星碎片 - ///金 [rest of string was truncated]";. + ///金 [resto de la cadena truncado]";. /// public static string text_ItemsG3_zh { get { @@ -30416,7 +30546,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Jail Key + /// Busca una cadena traducida similar a Jail Key ///Elevator Key ///Small Tablet ///F-Disk @@ -30463,7 +30593,7 @@ public class Resources { ///Excite Scent ///Vivid Scent ///Powerup Part - ///Ein [rest of string was truncated]";. + ///Ein [resto de la cadena truncado]";. /// public static string text_ItemsG3Colosseum_en { get { @@ -30472,7 +30602,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Safe Key + /// Busca una cadena traducida similar a Safe Key ///Elevator Key ///Bonsly Card ///Machine Part @@ -30515,7 +30645,7 @@ public class Resources { ///Battle CD 07 ///Battle CD 08 ///Battle CD 09 - ///Battle CD 1 [rest of string was truncated]";. + ///Battle CD 1 [resto de la cadena truncado]";. /// public static string text_ItemsG3XD_en { get { @@ -30524,7 +30654,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///Es erinnert sich daran, ///Es erinnert sich daran, @@ -30544,7 +30674,7 @@ public class Resources { ///dass es feuchte Augen bekommen hat ///wie sehr es sich amüsiert hat ///wie nervös es war - ///wie wohl es si [rest of string was truncated]";. + ///wie wohl es si [resto de la cadena truncado]";. /// public static string text_memories_de { get { @@ -30553,7 +30683,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///The Pokémon remembers ///The Pokémon remembers @@ -30579,7 +30709,7 @@ public class Resources { ///it felt sorry ///it got emotional ///it felt nostalgic - ///it had some diffi [rest of string was truncated]";. + ///it had some diffi [resto de la cadena truncado]";. /// public static string text_memories_en { get { @@ -30588,7 +30718,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///El Pokémon recuerda muy vagamente ///El Pokémon recuerda vagamente @@ -30607,7 +30737,7 @@ public class Resources { ///lo mucho que le agradó ///las lágrimas que le vinieron a los ojos ///la ilusión que le hizo - ///lo nervioso que se pu [rest of string was truncated]";. + ///lo nervioso que se pu [resto de la cadena truncado]";. /// public static string text_memories_es { get { @@ -30616,7 +30746,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///se souvient vaguement que ///se souvient vaguement que @@ -30639,7 +30769,7 @@ public class Resources { ///c’était apaisant ///ça chatouillait ///ça ne lui a laissé aucun regret - ///ça lui a laissé un [rest of string was truncated]";. + ///ça lui a laissé un [resto de la cadena truncado]";. /// public static string text_memories_fr { get { @@ -30648,7 +30778,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///Il Pokémon ricorda ancora ///Il Pokémon ricorda ancora @@ -30671,7 +30801,7 @@ public class Resources { ///quella bella sensazione ///che non riusciva a star fermo ///il suo entusiasmo - ///il suo dispiacere [rest of string was truncated]";. + ///il suo dispiacere [resto de la cadena truncado]";. /// public static string text_memories_it { get { @@ -30680,7 +30810,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///おもいで らしいわ ///おもいで らしいわ @@ -30720,7 +30850,7 @@ public class Resources { ///だれか ///いい おもいでが あるようだけど ちょっと おもいおこせないみたい…… ///{0}は {1}に {2}で であい  モンスターボールを なげられて いっしょに たびする ことになり  {3}ことが {4} - ///{0}は {2}で  タマゴの からをやぶって [rest of string was truncated]";. + ///{0}は {2}で  タマゴの からをやぶって [resto de la cadena truncado]";. /// public static string text_memories_ja { get { @@ -30729,7 +30859,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///추억인 것 같아 ///추억인 것 같아 @@ -30770,7 +30900,7 @@ public class Resources { ///좋은 추억이 있는 것 같은데 기억이 잘 떠오르지 않는 것 같아... ///{0} {1} {2}에서 만나 몬스터볼에 들어가게 되고 함께 여행하게 되어 {3} 게 {4} ///{0} {2}에서 알의 껍데기를 깨고 나왔을 때 처음 {1} 만나서 {3} 게 {4} - ///{0} {1} {2}에 [rest of string was truncated]";. + ///{0} {1} {2}에 [resto de la cadena truncado]";. /// public static string text_memories_ko { get { @@ -30779,7 +30909,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///宝可梦记得 ///宝可梦记得 @@ -30824,7 +30954,7 @@ public class Resources { ///{0}在{2}通过通讯交换遇见了{1},他们随后成了朋友。 ///{0}和{1}一起去了宝可梦中心/友好商店,购买了{2}。 ///{0}和{1}一起去了{2}的宝可梦中心并且恢复了它疲惫的身体。 - ///{0}和{1}一起垂钓,之 [rest of string was truncated]";. + ///{0}和{1}一起垂钓,之 [resto de la cadena truncado]";. /// public static string text_memories_zh { get { @@ -30833,7 +30963,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ----- + /// Busca una cadena traducida similar a ----- ///Pfund ///Karateschlag ///Duplexhieb @@ -30879,7 +31009,7 @@ public class Resources { ///Silberblick ///Biss ///Heuler - ///Brül [rest of string was truncated]";. + ///Brül [resto de la cadena truncado]";. /// public static string text_moves_de { get { @@ -30888,7 +31018,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ——— + /// Busca una cadena traducida similar a ——— ///Pound ///Karate Chop ///Double Slap @@ -30938,7 +31068,7 @@ public class Resources { ///Sing ///Supersonic ///Sonic Boom - ///Dis [rest of string was truncated]";. + ///Dis [resto de la cadena truncado]";. /// public static string text_moves_en { get { @@ -30947,7 +31077,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Destructor ///Golpe Kárate ///Doble Bofetón @@ -30992,7 +31122,7 @@ public class Resources { ///Pin Misil ///Malicioso ///Mordisco - ///Gr [rest of string was truncated]";. + ///Gr [resto de la cadena truncado]";. /// public static string text_moves_es { get { @@ -31001,7 +31131,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ――――― + /// Busca una cadena traducida similar a ――――― ///Écras’Face ///Poing-Karaté ///Torgnoles @@ -31046,7 +31176,7 @@ public class Resources { ///Dard-Nuée ///Groz’Yeux ///Morsure - ///Rugissement /// [rest of string was truncated]";. + ///Rugissement /// [resto de la cadena truncado]";. /// public static string text_moves_fr { get { @@ -31055,7 +31185,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ----- + /// Busca una cadena traducida similar a ----- ///Botta ///Colpokarate ///Doppiasberla @@ -31101,7 +31231,7 @@ public class Resources { ///Fulmisguardo ///Morso ///Ruggito - ///B [rest of string was truncated]";. + ///B [resto de la cadena truncado]";. /// public static string text_moves_it { get { @@ -31110,7 +31240,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ――――― + /// Busca una cadena traducida similar a ――――― ///はたく ///からてチョップ ///おうふくビンタ @@ -31179,7 +31309,7 @@ public class Resources { ///じごくぐるま ///けたぐり ///カウンター - ///ちきゅうなげ /// [rest of string was truncated]";. + ///ちきゅうなげ /// [resto de la cadena truncado]";. /// public static string text_moves_ja { get { @@ -31188,7 +31318,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ――――― + /// Busca una cadena traducida similar a ――――― ///막치기 ///태권당수 ///연속뺨치기 @@ -31275,7 +31405,7 @@ public class Resources { ///전기쇼크 ///10만볼트 ///전기자석파 - ///번개 /// [rest of string was truncated]";. + ///번개 /// [resto de la cadena truncado]";. /// public static string text_moves_ko { get { @@ -31284,7 +31414,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ――――― + /// Busca una cadena traducida similar a ――――― ///拍击 ///空手劈 ///连环巴掌 @@ -31390,7 +31520,7 @@ public class Resources { ///刺耳声 ///影子分身 ///自我再生 - ///变硬 /// [rest of string was truncated]";. + ///变硬 /// [resto de la cadena truncado]";. /// public static string text_moves_zh { get { @@ -31399,7 +31529,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Robust + /// Busca una cadena traducida similar a Robust ///Solo ///Mutig ///Hart @@ -31432,7 +31562,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Hardy + /// Busca una cadena traducida similar a Hardy ///Lonely ///Brave ///Adamant @@ -31465,7 +31595,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Fuerte + /// Busca una cadena traducida similar a Fuerte ///Huraña ///Audaz ///Firme @@ -31498,7 +31628,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Hardi + /// Busca una cadena traducida similar a Hardi ///Solo ///Brave ///Rigide @@ -31531,7 +31661,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ardita + /// Busca una cadena traducida similar a Ardita ///Schiva ///Audace ///Decisa @@ -31564,7 +31694,7 @@ public class Resources { } /// - /// Looks up a localized string similar to がんばりや + /// Busca una cadena traducida similar a がんばりや ///さみしがり ///ゆうかん ///いじっぱり @@ -31597,7 +31727,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 노력 + /// Busca una cadena traducida similar a 노력 ///외로움 ///용감 ///고집 @@ -31630,7 +31760,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 勤奋 + /// Busca una cadena traducida similar a 勤奋 ///怕寂寞 ///勇敢 ///固执 @@ -31663,7 +31793,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pokériegelbox + /// Busca una cadena traducida similar a Pokériegelbox ///Beerenmixer ///Pokériegel geben ///Geben @@ -31682,7 +31812,7 @@ public class Resources { ///Gib mindestens zwei Beeren in den Mixer. ///[~ 17] ///Du hast [VAR NUM1(0001)] [VAR 01A3(0000)] hergestellt![VAR BE05(0000)][VAR BE05(0001)] - ///Willst du [VAR PK [rest of string was truncated]";. + ///Willst du [VAR PK [resto de la cadena truncado]";. /// public static string text_pokeblock_de { get { @@ -31691,7 +31821,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pokéblock Case + /// Busca una cadena traducida similar a Pokéblock Case ///Berry Blender ///Give a Pokéblock ///Give @@ -31711,7 +31841,7 @@ public class Resources { ///[~ 17] ///You created [VAR NUM1(0001)] [VAR 01A3(0000)]![VAR BE05(0000)][VAR BE05(0001)] ///Give the Pokéblock to [VAR PKNICK(0000)]? - ///An Egg can’t ea [rest of string was truncated]";. + ///An Egg can’t ea [resto de la cadena truncado]";. /// public static string text_pokeblock_en { get { @@ -31720,7 +31850,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Tubo Pokécubos + /// Busca una cadena traducida similar a Tubo Pokécubos ///Licuabayas ///Dar un Pokécubo ///Dar @@ -31740,7 +31870,7 @@ public class Resources { ///[~ 17] ///¡Has conseguido [VAR NUM1(0001)] [VAR 01A3(0000)]![VAR BE05(0000)][VAR BE05(0001)] ///¿Quieres darle el Pokécubo a [VAR PKNICK(0000)]? - ///¡Los Huev [rest of string was truncated]";. + ///¡Los Huev [resto de la cadena truncado]";. /// public static string text_pokeblock_es { get { @@ -31749,7 +31879,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Boîte Pokéblocs + /// Busca una cadena traducida similar a Boîte Pokéblocs ///Mixeur à Baies ///Donner un Pokébloc ///Donner @@ -31769,7 +31899,7 @@ public class Resources { ///[~ 17] ///Vous avez concocté [VAR NUM1(0001)] [VAR 01A3(0000)] ![VAR BE05(0000)][VAR BE05(0001)] ///Donner un Pokébloc à [VAR PKNICK(0000)] ? - ///Un Œuf [rest of string was truncated]";. + ///Un Œuf [resto de la cadena truncado]";. /// public static string text_pokeblock_fr { get { @@ -31778,7 +31908,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Portapokémelle + /// Busca una cadena traducida similar a Portapokémelle ///Mixer bacche ///Dai una Pokémella ///Dai @@ -31798,7 +31928,7 @@ public class Resources { ///[~ 17] ///Hai preparato [VAR NUM1(0001)] [VAR 01A3(0000)]![VAR BE05(0000)][VAR BE05(0001)] ///Vuoi dare la Pokémella a [VAR PKNICK(0000)]? - ///Un Uovo non può mangiare Pokémelle [rest of string was truncated]";. + ///Un Uovo non può mangiare Pokémelle [resto de la cadena truncado]";. /// public static string text_pokeblock_it { get { @@ -31807,7 +31937,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ポロックケース + /// Busca una cadena traducida similar a ポロックケース ///きのみブレンダー ///ポロックを あげる ///あげる @@ -31838,7 +31968,7 @@ public class Resources { ///ブレンドスタート ///きのみを もどす ///ポケモンにあげる - ///やめる [rest of string was truncated]";. + ///やめる [resto de la cadena truncado]";. /// public static string text_pokeblock_ja { get { @@ -31847,7 +31977,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 포켓몬스넥케이스 + /// Busca una cadena traducida similar a 포켓몬스넥케이스 ///나무열매블렌더 ///포켓몬스넥을 준다 ///준다 @@ -31877,7 +32007,7 @@ public class Resources { ///노랑으로 추려냈습니다 ///블렌드 스타트 ///되돌려 둔다 - ///포켓몬에게 준 [rest of string was truncated]";. + ///포켓몬에게 준 [resto de la cadena truncado]";. /// public static string text_pokeblock_ko { get { @@ -31886,7 +32016,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 宝可方块盒 + /// Busca una cadena traducida similar a 宝可方块盒 ///树果混合器 ///给与一个宝可方块 ///给与 @@ -31937,7 +32067,7 @@ public class Resources { ///[~ 48] ///[~ 49] ///[~ 50] - ///[VAR 01A3(0000)] /// [rest of string was truncated]";. + ///[VAR 01A3(0000)] /// [resto de la cadena truncado]";. /// public static string text_pokeblock_zh { get { @@ -31946,7 +32076,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Zucker-Pofflé + /// Busca una cadena traducida similar a Zucker-Pofflé ///Minz-Pofflé ///Zitrus-Pofflé ///Bitter-Pofflé @@ -31971,7 +32101,7 @@ public class Resources { ///Frühlingsdeko-Pofflé ///Sommerdeko-Pofflé ///Herbstdeko-Pofflé - ///Winterdeko [rest of string was truncated]";. + ///Winterdeko [resto de la cadena truncado]";. /// public static string text_puff_de { get { @@ -31980,7 +32110,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Sweet Poké Puff + /// Busca una cadena traducida similar a Sweet Poké Puff ///Mint Poké Puff ///Citrus Poké Puff ///Mocha Poké Puff @@ -32002,7 +32132,7 @@ public class Resources { ///Deluxe Spice Poké Puff ///Supreme Wish Poké Puff ///Supreme Honor Poké Puff - ///Supreme Spring Pok [rest of string was truncated]";. + ///Supreme Spring Pok [resto de la cadena truncado]";. /// public static string text_puff_en { get { @@ -32011,7 +32141,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pokélito Dulce + /// Busca una cadena traducida similar a Pokélito Dulce ///Pokélito Menta ///Pokélito Ácido ///Pokélito Amargo @@ -32034,7 +32164,7 @@ public class Resources { ///Pokélito de Cumpleaños ///Pokélito de Celebración ///Pokélito Primaveral - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_puff_es { get { @@ -32043,7 +32173,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pofiterole Sucrée + /// Busca una cadena traducida similar a Pofiterole Sucrée ///Pofiterole Mentholée ///Pofiterole Aigre ///Pofiterole Amère @@ -32063,7 +32193,7 @@ public class Resources { ///Pofiterole Deluxe Aigre ///Pofiterole Deluxe Amère ///Pofiterole Deluxe Épicée - ///Pofiterole Anniversaire [rest of string was truncated]";. + ///Pofiterole Anniversaire [resto de la cadena truncado]";. /// public static string text_puff_fr { get { @@ -32072,7 +32202,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pokébignè dolce + /// Busca una cadena traducida similar a Pokébignè dolce ///Pokébignè fresco ///Pokébignè agro ///Pokébignè amaro @@ -32094,7 +32224,7 @@ public class Resources { ///Pokéb. speziato deluxe ///Pokébignè di compleanno ///Pokébignè celebrativo - ///Pokébignè p [rest of string was truncated]";. + ///Pokébignè p [resto de la cadena truncado]";. /// public static string text_puff_it { get { @@ -32103,7 +32233,7 @@ public class Resources { } /// - /// Looks up a localized string similar to スイートポフレ + /// Busca una cadena traducida similar a スイートポフレ ///フレッシュポフレ ///サワーポフレ ///ビターポフレ @@ -32137,7 +32267,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 스위트포플레 + /// Busca una cadena traducida similar a 스위트포플레 ///프레시포플레 ///사워포플레 ///비터포플레 @@ -32171,7 +32301,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 甘甜泡芙 + /// Busca una cadena traducida similar a 甘甜泡芙 ///清新泡芙 ///酸涩泡芙 ///苦甜泡芙 @@ -32205,7 +32335,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Littleroot Town + /// Busca una cadena traducida similar a Littleroot Town ///Oldale Town ///Dewford Town ///Lavaridge Town @@ -32248,7 +32378,7 @@ public class Resources { ///Route 125 ///Route 126 ///Route 127 - ///Route 1 [rest of string was truncated]";. + ///Route 1 [resto de la cadena truncado]";. /// public static string text_rsefrlg_00000_en { get { @@ -32257,7 +32387,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Villa Raíz + /// Busca una cadena traducida similar a Villa Raíz ///Pueblo Escaso ///Pueblo Azuliza ///Pueblo Lavacalda @@ -32303,7 +32433,7 @@ public class Resources { ///Ruta 128 ///Ruta 129 ///Ruta 130 - ///Ruta [rest of string was truncated]";. + ///Ruta [resto de la cadena truncado]";. /// public static string text_rsefrlg_00000_es { get { @@ -32312,7 +32442,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 未白镇 + /// Busca una cadena traducida similar a 未白镇 ///古辰镇 ///武斗镇 ///釜炎镇 @@ -32389,7 +32519,7 @@ public class Resources { ///热焰小径 ///热焰小径 (2) ///凹凸山道 - ///凹 [rest of string was truncated]";. + ///凹 [resto de la cadena truncado]";. /// public static string text_rsefrlg_00000_zh { get { @@ -32398,7 +32528,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Mysteriöser Ort /// @@ -32446,7 +32576,7 @@ public class Resources { /// ///Vegetationshöhle ///Prüfungsbereich - ///Vegetati [rest of string was truncated]";. + ///Vegetati [resto de la cadena truncado]";. /// public static string text_sm_00000_de { get { @@ -32455,7 +32585,7 @@ public class Resources { } /// - /// Looks up a localized string similar to —————— + /// Busca una cadena traducida similar a —————— /// ///Mystery Zone /// @@ -32507,7 +32637,7 @@ public class Resources { ///Totem’s Den ///Route 4 /// - ///Rou [rest of string was truncated]";. + ///Rou [resto de la cadena truncado]";. /// public static string text_sm_00000_en { get { @@ -32516,7 +32646,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - /// ///Lugar misterioso /// @@ -32564,7 +32694,7 @@ public class Resources { /// ///Cueva Sotobosque ///Sala de la Prueba - ///Cueva [rest of string was truncated]";. + ///Cueva [resto de la cadena truncado]";. /// public static string text_sm_00000_es { get { @@ -32573,7 +32703,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Endroit mystérieux /// @@ -32621,7 +32751,7 @@ public class Resources { /// ///Grotte Verdoyante ///Zone de l’Épreuve - ///Grotte Verdoyant [rest of string was truncated]";. + ///Grotte Verdoyant [resto de la cadena truncado]";. /// public static string text_sm_00000_fr { get { @@ -32630,7 +32760,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Zona misteriosa /// @@ -32677,7 +32807,7 @@ public class Resources { ///Orto delle Bacche /// ///Grotta Sottobosco - ///Luogo dell [rest of string was truncated]";. + ///Luogo dell [resto de la cadena truncado]";. /// public static string text_sm_00000_it { get { @@ -32686,7 +32816,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///なぞのばしょ /// @@ -32768,7 +32898,7 @@ public class Resources { /// ///[~ 80] /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_sm_00000_ja { get { @@ -32777,7 +32907,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///수수께끼의 장소 /// @@ -32871,7 +33001,7 @@ public class Resources { /// ///생명의 유적 /// - ///아칼라외 [rest of string was truncated]";. + ///아칼라외 [resto de la cadena truncado]";. /// public static string text_sm_00000_ko { get { @@ -32880,7 +33010,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///神秘的地方 /// @@ -32984,7 +33114,7 @@ public class Resources { /// ///豪诺豪诺度假地 /// - ///皇家巨蛋 [rest of string was truncated]";. + ///皇家巨蛋 [resto de la cadena truncado]";. /// public static string text_sm_00000_zh { get { @@ -32993,7 +33123,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Link-Tausch + /// Busca una cadena traducida similar a Link-Tausch ///Link-Tausch ///Kanto-Region ///Johto-Region @@ -33017,7 +33147,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a Link Trade + /// Busca una cadena traducida similar a a Link Trade ///a Link Trade ///the Kanto region ///the Johto region @@ -33041,7 +33171,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Intercambio en conexión + /// Busca una cadena traducida similar a Intercambio en conexión ///Intercambio en conexión ///Kanto ///Johto @@ -33065,7 +33195,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Échanges Link + /// Busca una cadena traducida similar a Échanges Link ///Échanges Link ///Kanto ///Johto @@ -33089,7 +33219,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Scambio in link + /// Busca una cadena traducida similar a Scambio in link ///Scambio in link ///Kanto ///Johto @@ -33113,7 +33243,7 @@ public class Resources { } /// - /// Looks up a localized string similar to つうしんこうかん + /// Busca una cadena traducida similar a つうしんこうかん ///つうしんこうかん ///カントーちほう ///ジョウトちほう @@ -33137,7 +33267,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 통신교환 + /// Busca una cadena traducida similar a 통신교환 ///통신교환 ///관동지방 ///성도지방 @@ -33161,7 +33291,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 连接交换 + /// Busca una cadena traducida similar a 连接交换 ///连接交换 ///关都地区 ///城都地区 @@ -33185,7 +33315,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Netter Ort + /// Busca una cadena traducida similar a Netter Ort ///Ferner Ort ///Pokémon-Film ///Pokémon-Film 2016 @@ -33211,7 +33341,7 @@ public class Resources { ///WCS ///WCS 2016 ///WCS 2017 - ///WCS 2018 [rest of string was truncated]";. + ///WCS 2018 [resto de la cadena truncado]";. /// public static string text_sm_40000_de { get { @@ -33220,7 +33350,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a lovely place + /// Busca una cadena traducida similar a a lovely place ///a faraway place ///a Pokémon movie ///2016 Pokémon Movie @@ -33244,7 +33374,7 @@ public class Resources { ///Pokémon Ctr. SKYTREE TOWN ///a Pokémon Store ///a WCS - ///WCS 20 [rest of string was truncated]";. + ///WCS 20 [resto de la cadena truncado]";. /// public static string text_sm_40000_en { get { @@ -33253,7 +33383,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar encantador + /// Busca una cadena traducida similar a Lugar encantador ///Lugar lejano ///Película Pokémon ///Película Pokémon 2016 @@ -33275,7 +33405,7 @@ public class Resources { ///Pokémon Center Hiroshima ///Pokémon Center Kyoto ///Pokémon Ctr. SKYTREE TOWN - ///Pokémon Store [rest of string was truncated]";. + ///Pokémon Store [resto de la cadena truncado]";. /// public static string text_sm_40000_es { get { @@ -33284,7 +33414,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit superbe + /// Busca una cadena traducida similar a Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 2016 @@ -33310,7 +33440,7 @@ public class Resources { ///WCS ///WCS 2016 ///WCS 2017 - ///WC [rest of string was truncated]";. + ///WC [resto de la cadena truncado]";. /// public static string text_sm_40000_fr { get { @@ -33319,7 +33449,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Luogo grazioso + /// Busca una cadena traducida similar a Luogo grazioso ///Luogo remoto ///Film Pokémon ///Film Pokémon 2016 @@ -33345,7 +33475,7 @@ public class Resources { ///WCS ///WCS 2016 ///WCS 2017 - ///WCS [rest of string was truncated]";. + ///WCS [resto de la cadena truncado]";. /// public static string text_sm_40000_it { get { @@ -33354,7 +33484,7 @@ public class Resources { } /// - /// Looks up a localized string similar to すてきなばしょ + /// Busca una cadena traducida similar a すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが16 @@ -33408,7 +33538,7 @@ public class Resources { ///PGL ///ポケモンイベント16 ///ポケモンイベント17 - ///ポケモ [rest of string was truncated]";. + ///ポケモ [resto de la cadena truncado]";. /// public static string text_sm_40000_ja { get { @@ -33417,7 +33547,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 근사한 장소 + /// Busca una cadena traducida similar a 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화16 @@ -33473,7 +33603,7 @@ public class Resources { ///포켓몬이벤트17 ///포켓몬이벤트18 ///포켓몬이벤트19 - ///포켓몬이벤 [rest of string was truncated]";. + ///포켓몬이벤 [resto de la cadena truncado]";. /// public static string text_sm_40000_ko { get { @@ -33482,7 +33612,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 美丽的地方 + /// Busca una cadena traducida similar a 美丽的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影16 @@ -33544,7 +33674,7 @@ public class Resources { ///宝可梦庆典16 ///宝可梦庆典17 ///宝可梦庆典18 - ///宝可梦庆典19 [rest of string was truncated]";. + ///宝可梦庆典19 [resto de la cadena truncado]";. /// public static string text_sm_40000_zh { get { @@ -33553,7 +33683,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ferne Person + /// Busca una cadena traducida similar a Ferne Person ///Hortleiterinnen ///Schatzsucher ///Dame der Heißen Quellen. @@ -33565,7 +33695,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a stranger + /// Busca una cadena traducida similar a a stranger ///Nursery helpers ///a treasure hunter ///an old hot-springs visitor. @@ -33577,7 +33707,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lejana + /// Busca una cadena traducida similar a Persona lejana ///Cuidados Pokémon ///Buscatesoros ///Anciana del Balneario. @@ -33589,7 +33719,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Personne lointaine + /// Busca una cadena traducida similar a Personne lointaine ///Responsable de la Garderie ///Chercheur de Trésors ///Dame des Eaux Thermales. @@ -33601,7 +33731,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lontana + /// Busca una cadena traducida similar a Persona lontana ///Ostello Pokémon ///Cercatesori ///Vecchina delle terme. @@ -33613,7 +33743,7 @@ public class Resources { } /// - /// Looks up a localized string similar to とおくにいるひと + /// Busca una cadena traducida similar a とおくにいるひと ///あずかりやさん ///トレジャーハンター ///おんせんばあさん. @@ -33625,7 +33755,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 멀리 있는 사람 + /// Busca una cadena traducida similar a 멀리 있는 사람 ///맡기미집 ///트레져헌터 ///온천할머니. @@ -33637,7 +33767,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 远处的人 + /// Busca una cadena traducida similar a 远处的人 ///寄放屋 ///寻宝猎人 ///温泉婆婆. @@ -33649,7 +33779,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ei + /// Busca una cadena traducida similar a Ei ///Bisasam ///Bisaknosp ///Bisaflor @@ -33708,7 +33838,7 @@ public class Resources { ///Menki ///Rasaff ///Fukano - ///Arka [rest of string was truncated]";. + ///Arka [resto de la cadena truncado]";. /// public static string text_species_de { get { @@ -33717,7 +33847,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Egg + /// Busca una cadena traducida similar a Egg ///Bulbasaur ///Ivysaur ///Venusaur @@ -33771,7 +33901,7 @@ public class Resources { ///Dugtrio ///Meowth ///Persian - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_species_en { get { @@ -33780,7 +33910,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Huevo + /// Busca una cadena traducida similar a Huevo ///Bulbasaur ///Ivysaur ///Venusaur @@ -33833,7 +33963,7 @@ public class Resources { ///Diglett ///Dugtrio ///Meowth - ///Persian [rest of string was truncated]";. + ///Persian [resto de la cadena truncado]";. /// public static string text_species_es { get { @@ -33842,7 +33972,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Œuf + /// Busca una cadena traducida similar a Œuf ///Bulbizarre ///Herbizarre ///Florizarre @@ -33892,7 +34022,7 @@ public class Resources { ///Parasect ///Mimitoss ///Aéromite - ///Taupiqu [rest of string was truncated]";. + ///Taupiqu [resto de la cadena truncado]";. /// public static string text_species_fr { get { @@ -33901,7 +34031,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Uovo + /// Busca una cadena traducida similar a Uovo ///Bulbasaur ///Ivysaur ///Venusaur @@ -33954,7 +34084,7 @@ public class Resources { ///Diglett ///Dugtrio ///Meowth - ///Persian /// [rest of string was truncated]";. + ///Persian /// [resto de la cadena truncado]";. /// public static string text_species_it { get { @@ -33963,7 +34093,7 @@ public class Resources { } /// - /// Looks up a localized string similar to タマゴ + /// Busca una cadena traducida similar a タマゴ ///フシギダネ ///フシギソウ ///フシギバナ @@ -34042,7 +34172,7 @@ public class Resources { ///ゴローニャ ///ポニータ ///ギャロップ - ///ヤ [rest of string was truncated]";. + ///ヤ [resto de la cadena truncado]";. /// public static string text_species_ja { get { @@ -34051,7 +34181,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 알 + /// Busca una cadena traducida similar a 알 ///이상해씨 ///이상해풀 ///이상해꽃 @@ -34153,7 +34283,7 @@ public class Resources { ///킹크랩 ///찌리리공 ///붐볼 - ///아라리 /// [rest of string was truncated]";. + ///아라리 /// [resto de la cadena truncado]";. /// public static string text_species_ko { get { @@ -34162,7 +34292,7 @@ public class Resources { } /// - /// Looks up a localized string similar to  + /// Busca una cadena traducida similar a  /// /// /// @@ -34266,7 +34396,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_species_zh { get { @@ -34275,7 +34405,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 蛋 + /// Busca una cadena traducida similar a 蛋 ///妙蛙种子 ///妙蛙草 ///妙蛙花 @@ -34379,7 +34509,7 @@ public class Resources { ///顽皮雷弹 ///蛋蛋 ///椰蛋树 - ///卡拉卡拉 [rest of string was truncated]";. + ///卡拉卡拉 [resto de la cadena truncado]";. /// public static string text_species_zh_alt { get { @@ -34388,7 +34518,7 @@ public class Resources { } /// - /// Looks up a localized string similar to  + /// Busca una cadena traducida similar a  /// /// /// @@ -34492,7 +34622,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_species_zh2 { get { @@ -34501,7 +34631,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 蛋 + /// Busca una cadena traducida similar a 蛋 ///妙蛙種子 ///妙蛙草 ///妙蛙花 @@ -34605,7 +34735,7 @@ public class Resources { ///頑皮雷彈 ///蛋蛋 ///椰蛋樹 - ///卡拉卡拉 [rest of string was truncated]";. + ///卡拉卡拉 [resto de la cadena truncado]";. /// public static string text_species_zh2_alt { get { @@ -34614,7 +34744,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Probetraining mit Purmel! + /// Busca una cadena traducida similar a Probetraining mit Purmel! ///Zeig’s Puponcho mit einem Fokusschuss! ///Spezial-Angriffs-Training mit Magnetilo! ///KP-Training mit Wailmer! @@ -34628,7 +34758,7 @@ public class Resources { ///Tentoxa und die Bit-Ballons! ///Gib Aerodactyl mit Temposchüssen zu denken! ///Zerstöre Georoks Schutzschild! - ///Wehr [rest of string was truncated]";. + ///Wehr [resto de la cadena truncado]";. /// public static string text_supertraining_de { get { @@ -34637,7 +34767,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Practice against Scatterbug! + /// Busca una cadena traducida similar a Practice against Scatterbug! ///Get Spewpa with an Energy Shot! ///Hone Sp. Atk with Magnemite! ///Raise Your HP with Wailmer! @@ -34653,7 +34783,7 @@ public class Resources { ///Break Down Graveler’s Barrier! ///Shake Off That Uncanny Magnezone! ///Shoot Back! Get the Giant Wailord! - ///C [rest of string was truncated]";. + ///C [resto de la cadena truncado]";. /// public static string text_supertraining_en { get { @@ -34662,7 +34792,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ¡Practica contra Scatterbug! + /// Busca una cadena traducida similar a ¡Practica contra Scatterbug! ///¡Tiro con ímpetu contra Spewpa! ///¡Mejora tu Ataque Especial contra Magnemite! ///¡Mejora tus PS contra Wailmer! @@ -34675,7 +34805,7 @@ public class Resources { ///¡Ráfaga de tiros de Fraxure! ///¡Tentacruel y sus globos de bits! ///¡Dale a Aerodactyl con tiros rápidos! - ///¡Destruye la barrera de Graveler! /// [rest of string was truncated]";. + ///¡Destruye la barrera de Graveler! /// [resto de la cadena truncado]";. /// public static string text_supertraining_es { get { @@ -34684,7 +34814,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Entraînez-vous contre Lépidonille! + /// Busca una cadena traducida similar a Entraînez-vous contre Lépidonille! ///Tir Volonté sur Pérégrain! ///À l’assaut de Magnéti! ///À l’assaut de Wailmer! @@ -34701,7 +34831,7 @@ public class Resources { ///Débarrassez-vous de Magnézone! ///Répliquez aux tirs de Wailord! ///Évitez les tirs de Tranchodon! - ///T [rest of string was truncated]";. + ///T [resto de la cadena truncado]";. /// public static string text_supertraining_fr { get { @@ -34710,7 +34840,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Allenamento di prova contro Scatterbug! + /// Busca una cadena traducida similar a Allenamento di prova contro Scatterbug! ///Sconfiggi Spewpa con un tiro vigoroso! ///Aumenta l’Attacco Speciale con Magnemite! ///Aumenta i PS con Wailmer! @@ -34724,7 +34854,7 @@ public class Resources { ///Tentacruel e i palloncini Bit! ///Tempesta di tiri Aerodactyl! ///Abbatti la barriera di Graveler! - ///Sbarazzati di [rest of string was truncated]";. + ///Sbarazzati di [resto de la cadena truncado]";. /// public static string text_supertraining_it { get { @@ -34733,7 +34863,7 @@ public class Resources { } /// - /// Looks up a localized string similar to おためしトレーニング! コフキムシ + /// Busca una cadena traducida similar a おためしトレーニング! コフキムシ ///コフーライ! きめろ ガッツシュート ///とくこうトレーニング VSコイル ///HPトレーニング VSホエルコ @@ -34761,7 +34891,7 @@ public class Resources { ///はんげきの こうはんせん! ///そっこうの ぜんはんせん! ///じゅうおう むじん ロングシュート! - ///ぎゃくしゅう [rest of string was truncated]";. + ///ぎゃくしゅう [resto de la cadena truncado]";. /// public static string text_supertraining_ja { get { @@ -34770,7 +34900,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 맛보기트레이닝! 분이벌레 + /// Busca una cadena traducida similar a 맛보기트레이닝! 분이벌레 ///분떠도리에게 거츠 슛을 날려라! ///특수공격트레이닝 VS 코일 ///HP트레이닝 VS 고래왕자 @@ -34807,7 +34937,7 @@ public class Resources { ///무쇠팔 강철팔의 협공! ///염동력! 스푼 난무 ///인생역전! 출세 잉어킹 - ///경 [rest of string was truncated]";. + ///경 [resto de la cadena truncado]";. /// public static string text_supertraining_ko { get { @@ -34816,7 +34946,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 试验训练!粉蛹 + /// Busca una cadena traducida similar a 试验训练!粉蛹 ///粉蝶蛹!精力射门 ///特攻训练 VS小磁怪 ///HP训练 VS吼吼鲸 @@ -34862,7 +34992,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Makuhipsta + /// Busca una cadena traducida similar a Makuhipsta ///Conec ///Coraso ///Maik @@ -34876,7 +35006,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Makit + /// Busca una cadena traducida similar a Makit ///Skitit ///Coroso ///Darrell @@ -34890,7 +35020,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Makit + /// Busca una cadena traducida similar a Makit ///Skitit ///Coroso ///Evelio @@ -34904,7 +35034,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Edmond + /// Busca una cadena traducida similar a Edmond ///Minetou ///Rosie ///Allan @@ -34918,7 +35048,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Maku + /// Busca una cadena traducida similar a Maku ///Pucci ///Corsolina ///Marchetto @@ -34932,7 +35062,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ポテマル + /// Busca una cadena traducida similar a ポテマル ///ベルベル ///モモちゃん ///モーリン @@ -34946,7 +35076,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 감자군 + /// Busca una cadena traducida similar a 감자군 ///베르베르 ///분홍이 ///모린 @@ -34960,7 +35090,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Karpiranha + /// Busca una cadena traducida similar a Karpiranha ///Ravioli ///Rentata ///Stadida @@ -34986,7 +35116,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Carpe Diem + /// Busca una cadena traducida similar a Carpe Diem ///Stevie ///Quacklin’ ///Thumper @@ -35012,7 +35142,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Karpirinha + /// Busca una cadena traducida similar a Karpirinha ///Fortunyet ///Sr.Puerró ///Titanix @@ -35038,7 +35168,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ouïe-Ouïe + /// Busca una cadena traducida similar a Ouïe-Ouïe ///Décorum ///Insp. Magret ///Megascolide @@ -35064,7 +35194,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Karkarp + /// Busca una cadena traducida similar a Karkarp ///Ottolnarg ///Rosto ///Rock @@ -35090,7 +35220,7 @@ public class Resources { } /// - /// Looks up a localized string similar to こいこい + /// Busca una cadena traducida similar a こいこい ///アマヤル ///マー ///カッチ @@ -35116,7 +35246,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 맞고 + /// Busca una cadena traducida similar a 맞고 ///달고나 ///마 ///카치 @@ -35142,7 +35272,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///KP-Sack S ///KP-Sack M ///KP-Sack L @@ -35177,7 +35307,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///HP Bag S ///HP Bag M ///HP Bag L @@ -35212,7 +35342,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Saco PS S ///Saco PS M ///Saco PS L @@ -35247,7 +35377,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Sac PV ///Sac PV + ///Sac PV ++ @@ -35282,7 +35412,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Sacco PS S ///Sacco PS M ///Sacco PS L @@ -35317,7 +35447,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///HPバッグS ///HPバッグM ///HPバッグL @@ -35352,7 +35482,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///HP백S ///HP백M ///HP백L @@ -35387,7 +35517,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///HP沙袋S ///HP沙袋M ///HP沙袋L @@ -35422,7 +35552,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normal + /// Busca una cadena traducida similar a Normal ///Kampf ///Flug ///Gift @@ -35448,7 +35578,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normal + /// Busca una cadena traducida similar a Normal ///Fighting ///Flying ///Poison @@ -35474,7 +35604,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normal + /// Busca una cadena traducida similar a Normal ///Lucha ///Volador ///Veneno @@ -35500,7 +35630,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normal + /// Busca una cadena traducida similar a Normal ///Combat ///Vol ///Poison @@ -35526,7 +35656,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normale + /// Busca una cadena traducida similar a Normale ///Lotta ///Volante ///Veleno @@ -35552,7 +35682,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ノーマル + /// Busca una cadena traducida similar a ノーマル ///かくとう ///ひこう ///どく @@ -35578,7 +35708,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 노말 + /// Busca una cadena traducida similar a 노말 ///격투 ///비행 ///독 @@ -35604,7 +35734,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 一般 + /// Busca una cadena traducida similar a 一般 ///格斗 ///飞行 ///毒 @@ -35630,7 +35760,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Wald + /// Busca una cadena traducida similar a Wald ///Stadt ///Wüste ///Steppe @@ -35662,7 +35792,7 @@ public class Resources { } /// - /// Looks up a localized string similar to FOREST + /// Busca una cadena traducida similar a FOREST ///CITY ///DESERT ///SAVANNA @@ -35694,7 +35824,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Bosque + /// Busca una cadena traducida similar a Bosque ///Ciudad ///Desierto ///Sabana @@ -35726,7 +35856,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Forêt + /// Busca una cadena traducida similar a Forêt ///Ville ///Désert ///Savane @@ -35758,7 +35888,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Foresta + /// Busca una cadena traducida similar a Foresta ///Città ///Deserto ///Savana @@ -35790,7 +35920,7 @@ public class Resources { } /// - /// Looks up a localized string similar to もり + /// Busca una cadena traducida similar a もり ///シティ ///さばく ///サバンナ @@ -35822,7 +35952,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 숲 + /// Busca una cadena traducida similar a 숲 ///시티 ///사막 ///사바나 @@ -35854,7 +35984,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 森林 + /// Busca una cadena traducida similar a 森林 ///城市 ///沙漠 ///热带草原 @@ -35886,7 +36016,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Mysteriöser Ort /// @@ -35938,7 +36068,7 @@ public class Resources { /// ///Route 10 ///Menhir-Weg - ///Cromlexia /// [rest of string was truncated]";. + ///Cromlexia /// [resto de la cadena truncado]";. /// public static string text_xy_00000_de { get { @@ -35947,7 +36077,7 @@ public class Resources { } /// - /// Looks up a localized string similar to —————— + /// Busca una cadena traducida similar a —————— /// ///Mystery Zone /// @@ -35999,7 +36129,7 @@ public class Resources { /// ///Route 10 ///Menhir Trail - ///Geo [rest of string was truncated]";. + ///Geo [resto de la cadena truncado]";. /// public static string text_xy_00000_en { get { @@ -36008,7 +36138,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - /// ///Lugar misterioso /// @@ -36056,7 +36186,7 @@ public class Resources { /// ///Ruta 9 ///Paso de Rhyhorn - ///Bastión Batalla [rest of string was truncated]";. + ///Bastión Batalla [resto de la cadena truncado]";. /// public static string text_xy_00000_es { get { @@ -36065,7 +36195,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Endroit Mystérieux /// @@ -36113,7 +36243,7 @@ public class Resources { /// ///Route 9 ///Piste Piquante - ///Château de [rest of string was truncated]";. + ///Château de [resto de la cadena truncado]";. /// public static string text_xy_00000_fr { get { @@ -36122,7 +36252,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Zona Misteriosa /// @@ -36170,7 +36300,7 @@ public class Resources { /// ///Percorso 9 ///Sentiero Punzoni - ///Castell [rest of string was truncated]";. + ///Castell [resto de la cadena truncado]";. /// public static string text_xy_00000_it { get { @@ -36179,7 +36309,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///なぞのばしょ /// @@ -36253,7 +36383,7 @@ public class Resources { /// ///ボールこうじょう /// - ///15ばん [rest of string was truncated]";. + ///15ばん [resto de la cadena truncado]";. /// public static string text_xy_00000_ja { get { @@ -36262,7 +36392,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///수수께끼의 장소 /// @@ -36351,7 +36481,7 @@ public class Resources { ///향전시티 /// ///18번도로 - ///에뜨르와 발레 [rest of string was truncated]";. + ///에뜨르와 발레 [resto de la cadena truncado]";. /// public static string text_xy_00000_ko { get { @@ -36360,7 +36490,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///神秘的地方 /// @@ -36461,7 +36591,7 @@ public class Resources { ///神奇宝贝村庄 /// ///21号道路 - ///最后通道 [rest of string was truncated]";. + ///最后通道 [resto de la cadena truncado]";. /// public static string text_xy_00000_zh { get { @@ -36470,7 +36600,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Linktausch + /// Busca una cadena traducida similar a Linktausch ///Linktausch ///Kanto-Region ///Johto-Region @@ -36489,7 +36619,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a Link Trade + /// Busca una cadena traducida similar a a Link Trade ///a Link Trade ///the Kanto region ///the Johto region @@ -36508,7 +36638,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Intercambio + /// Busca una cadena traducida similar a Intercambio ///Intercambio en conexión ///Kanto ///Johto @@ -36527,7 +36657,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Échanges Link + /// Busca una cadena traducida similar a Échanges Link ///Échanges Link ///Kanto ///Johto @@ -36546,7 +36676,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Scambio in link + /// Busca una cadena traducida similar a Scambio in link ///Scambio in link ///Kanto ///Johto @@ -36565,7 +36695,7 @@ public class Resources { } /// - /// Looks up a localized string similar to つうしんこうかん + /// Busca una cadena traducida similar a つうしんこうかん ///つうしんこうかん ///カントーちほう ///ジョウトちほう @@ -36584,7 +36714,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 통신교환 + /// Busca una cadena traducida similar a 통신교환 ///통신교환 ///관동지방 ///성도지방 @@ -36603,7 +36733,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 连接交换 + /// Busca una cadena traducida similar a 连接交换 ///连接交换 ///关都地区 ///城都地区 @@ -36622,7 +36752,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Netter Ort + /// Busca una cadena traducida similar a Netter Ort ///Entfernter Ort ///Pokémon-Film ///Pokémon-Film 2013 @@ -36661,7 +36791,7 @@ public class Resources { ///VGE 2014 ///VGE 2015 ///VGE 2016 - ///VGE 2017 /// [rest of string was truncated]";. + ///VGE 2017 /// [resto de la cadena truncado]";. /// public static string text_xy_40000_de { get { @@ -36670,7 +36800,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a lovely place + /// Busca una cadena traducida similar a a lovely place ///a faraway place ///a Pokémon movie ///Pokémon Movie 13 @@ -36709,7 +36839,7 @@ public class Resources { ///VGE 2014 ///VGE 2015 ///VGE 2016 - ///VGE 2 [rest of string was truncated]";. + ///VGE 2 [resto de la cadena truncado]";. /// public static string text_xy_40000_en { get { @@ -36718,7 +36848,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar encantador + /// Busca una cadena traducida similar a Lugar encantador ///Lugar lejano ///Película Pokémon ///Película Pokémon 2013 @@ -36741,7 +36871,7 @@ public class Resources { ///Campeonato Mundial ///Campeonato Mundial 2013 ///Campeonato Mundial 2014 - ///Campeo [rest of string was truncated]";. + ///Campeo [resto de la cadena truncado]";. /// public static string text_xy_40000_es { get { @@ -36750,7 +36880,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit superbe + /// Busca una cadena traducida similar a Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 2013 @@ -36780,7 +36910,7 @@ public class Resources { ///Worlds ///Worlds 2013 ///Worlds 2014 - ///Worlds 2 [rest of string was truncated]";. + ///Worlds 2 [resto de la cadena truncado]";. /// public static string text_xy_40000_fr { get { @@ -36789,7 +36919,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Luogo Grazioso + /// Busca una cadena traducida similar a Luogo Grazioso ///Luogo Remoto ///Film Pokémon ///Film Pokémon 2013 @@ -36817,7 +36947,7 @@ public class Resources { ///Mondiali 2017 ///Mondiali 2018 ///Mondiali - ///Mondi [rest of string was truncated]";. + ///Mondi [resto de la cadena truncado]";. /// public static string text_xy_40000_it { get { @@ -36826,7 +36956,7 @@ public class Resources { } /// - /// Looks up a localized string similar to すてきなばしょ + /// Busca una cadena traducida similar a すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが13 @@ -36879,7 +37009,7 @@ public class Resources { ///ポケモンイベント14 ///ポケモンイベント15 ///ポケモンイベント16 - ///ポケモンイベント [rest of string was truncated]";. + ///ポケモンイベント [resto de la cadena truncado]";. /// public static string text_xy_40000_ja { get { @@ -36888,7 +37018,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 근사한 장소 + /// Busca una cadena traducida similar a 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화13 @@ -36946,7 +37076,7 @@ public class Resources { ///포켓몬페스타 ///포켓몬페스타13 ///포켓몬페스타14 - ///포켓몬페스 [rest of string was truncated]";. + ///포켓몬페스 [resto de la cadena truncado]";. /// public static string text_xy_40000_ko { get { @@ -36955,7 +37085,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 美妙的地方 + /// Busca una cadena traducida similar a 美妙的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影13 @@ -37017,7 +37147,7 @@ public class Resources { ///宝可梦庆典16 ///宝可梦庆典17 ///宝可梦庆典18 - ///宝可 [rest of string was truncated]";. + ///宝可 [resto de la cadena truncado]";. /// public static string text_xy_40000_zh { get { @@ -37026,7 +37156,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ferne Person + /// Busca una cadena traducida similar a Ferne Person ///Pensionsleiter ///Schatzsucher ///Dame der Heißen Quellen. @@ -37038,7 +37168,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a stranger + /// Busca una cadena traducida similar a a stranger ///Day Care helpers ///a treasure hunter ///an old hot-springs visitor. @@ -37050,7 +37180,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lejana + /// Busca una cadena traducida similar a Persona lejana ///Pareja de la Guardería ///Buscatesoros ///Anciana del Balneario. @@ -37062,7 +37192,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Personne lointaine + /// Busca una cadena traducida similar a Personne lointaine ///Responsable de la Pension ///Chercheur de Trésors ///Dame des Eaux Thermales. @@ -37074,7 +37204,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona Lontana + /// Busca una cadena traducida similar a Persona Lontana ///Pensione Pokémon ///Cercatesori ///Vecchina delle terme. @@ -37086,7 +37216,7 @@ public class Resources { } /// - /// Looks up a localized string similar to とおくにいるひと + /// Busca una cadena traducida similar a とおくにいるひと ///そだてやさん ///トレジャーハンター ///おんせんばあさん. @@ -37098,7 +37228,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 멀리 있는 사람 + /// Busca una cadena traducida similar a 멀리 있는 사람 ///키우미집 ///트레져헌터 ///온천할머니. @@ -37110,7 +37240,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 远处的人 + /// Busca una cadena traducida similar a 远处的人 ///饲育屋爷爷 ///寻宝猎人 ///温泉婆婆. @@ -37122,7 +37252,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_00 { get { @@ -37132,7 +37262,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_01 { get { @@ -37142,7 +37272,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_02 { get { @@ -37152,7 +37282,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_03 { get { @@ -37162,7 +37292,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_04 { get { @@ -37172,7 +37302,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_05 { get { @@ -37182,7 +37312,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_06 { get { @@ -37192,7 +37322,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_07 { get { @@ -37202,7 +37332,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_08 { get { @@ -37212,7 +37342,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_09 { get { @@ -37222,7 +37352,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_10 { get { @@ -37232,7 +37362,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_11 { get { @@ -37242,7 +37372,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_12 { get { @@ -37252,7 +37382,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_128 { get { @@ -37262,7 +37392,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_129 { get { @@ -37272,7 +37402,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_13 { get { @@ -37282,7 +37412,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_14 { get { @@ -37292,7 +37422,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_15 { get { @@ -37302,7 +37432,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_16 { get { @@ -37312,7 +37442,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_17 { get { @@ -37322,7 +37452,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_18 { get { @@ -37332,7 +37462,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_19 { get { @@ -37342,7 +37472,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_20 { get { @@ -37352,7 +37482,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_21 { get { @@ -37362,7 +37492,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_22 { get { @@ -37372,7 +37502,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_23 { get { @@ -37382,7 +37512,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_24 { get { @@ -37392,7 +37522,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_25 { get { @@ -37402,7 +37532,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_26 { get { @@ -37412,7 +37542,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_27 { get { @@ -37422,7 +37552,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_28 { get { @@ -37432,7 +37562,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_29 { get { @@ -37442,7 +37572,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_30 { get { @@ -37452,7 +37582,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_31 { get { @@ -37462,7 +37592,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_32 { get { @@ -37472,7 +37602,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_33 { get { @@ -37482,7 +37612,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_34 { get { @@ -37492,7 +37622,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_35 { get { @@ -37502,7 +37632,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_36 { get { @@ -37512,7 +37642,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_37 { get { @@ -37522,7 +37652,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_38 { get { @@ -37532,7 +37662,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_39 { get { @@ -37542,7 +37672,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_40 { get { @@ -37552,7 +37682,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_41 { get { @@ -37562,7 +37692,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_42 { get { @@ -37572,7 +37702,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_43 { get { @@ -37582,7 +37712,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_44 { get { @@ -37592,7 +37722,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_45 { get { @@ -37602,7 +37732,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_46 { get { @@ -37612,7 +37742,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_47 { get { @@ -37622,7 +37752,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_48 { get { @@ -37632,7 +37762,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_49 { get { @@ -37642,7 +37772,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_50 { get { @@ -37652,7 +37782,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_51 { get { @@ -37662,7 +37792,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_52 { get { @@ -37672,7 +37802,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_53 { get { @@ -37682,7 +37812,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_54 { get { @@ -37692,7 +37822,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_55 { get { @@ -37702,7 +37832,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_56 { get { @@ -37712,7 +37842,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_57 { get { @@ -37722,7 +37852,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_58 { get { @@ -37732,7 +37862,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_59 { get { @@ -37742,7 +37872,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_60 { get { @@ -37752,7 +37882,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_61 { get { @@ -37762,7 +37892,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_62 { get { @@ -37772,7 +37902,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_63 { get { @@ -37782,7 +37912,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_64 { get { @@ -37792,7 +37922,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_65 { get { @@ -37802,7 +37932,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_66 { get { @@ -37812,7 +37942,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_67 { get { @@ -37822,7 +37952,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_68 { get { @@ -37832,7 +37962,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_69 { get { @@ -37842,7 +37972,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_70 { get { @@ -37852,7 +37982,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_71 { get { @@ -37862,7 +37992,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_72 { get { @@ -37872,7 +38002,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_73 { get { @@ -37882,7 +38012,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] tutors_g3 { get { @@ -37892,7 +38022,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] tutors_g4 { get { @@ -37902,7 +38032,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_00 { get { @@ -37912,7 +38042,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_01 { get { @@ -37922,7 +38052,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_02 { get { @@ -37932,7 +38062,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_03 { get { @@ -37942,7 +38072,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_04 { get { @@ -37952,7 +38082,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_05 { get { @@ -37962,7 +38092,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_06 { get { @@ -37972,7 +38102,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_07 { get { @@ -37982,7 +38112,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_08 { get { @@ -37992,7 +38122,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_09 { get { @@ -38002,7 +38132,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_10 { get { @@ -38012,7 +38142,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_11 { get { @@ -38022,7 +38152,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_12 { get { @@ -38032,7 +38162,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_13 { get { @@ -38042,7 +38172,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_14 { get { @@ -38052,7 +38182,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_15 { get { @@ -38062,7 +38192,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_16 { get { @@ -38072,7 +38202,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_17 { get { @@ -38082,7 +38212,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap unknown { get { @@ -38092,7 +38222,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap valid { get { @@ -38102,7 +38232,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap vc { get { @@ -38112,7 +38242,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap warn { get { @@ -38122,7 +38252,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] wc6 { get { @@ -38132,7 +38262,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] wc6full { get { @@ -38142,7 +38272,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] wc7 { get { @@ -38152,7 +38282,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] wc7full { get { diff --git a/PKHeX/Properties/Resources.resx b/PKHeX/Properties/Resources.resx index e1e6b309e..7cfe64be7 100644 --- a/PKHeX/Properties/Resources.resx +++ b/PKHeX/Properties/Resources.resx @@ -7510,4 +7510,43 @@ ..\Resources\byte\encounter_w2.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\Resources\byte\encounter_d.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_e.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_fr.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_hg.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_lg.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_p.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_pt.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_r.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_s.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_ss.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\evos_g3.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\evos_g4.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\evos_g5.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/PKHeX/Resources/byte/encounter_d.pkl b/PKHeX/Resources/byte/encounter_d.pkl new file mode 100644 index 0000000000000000000000000000000000000000..89099af4ed2ecd61158714d4d14349295751feec GIT binary patch literal 66228 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 literal 0 HcmV?d00001 diff --git a/PKHeX/Resources/byte/encounter_e.pkl b/PKHeX/Resources/byte/encounter_e.pkl new file mode 100644 index 0000000000000000000000000000000000000000..22d03e7d465bc9577c62337ca20b25856f3c3bf4 GIT binary patch literal 9442 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 literal 0 HcmV?d00001 diff --git a/PKHeX/Resources/byte/encounter_hg.pkl b/PKHeX/Resources/byte/encounter_hg.pkl new file mode 100644 index 0000000000000000000000000000000000000000..c45893dcb58e63fbe5f1ed95c5d7db19edb790b7 GIT binary patch literal 27278 zcmeHQ3y@RSdHx0a5c0BDyQ_U@A42T%kOT|Mk}jA+LLoS?1cPl1nA(A?N$h0eq^3MP z9>--F+N5cl7pa@3X&M_ETqjLUOyeZDal)pA*r|=}Hl#MSGZ{~laXOv0)1jSCr_=8{ z=lu6dLJNCYNzO2w<4;HWbyl43p4b04_xkR;J|eTGh`a$jK2>C2jmYv^ktuZ|XMm5_ zi)@aHbWRib3Gk(u$OowZ{XY0MGiHJ40|H+xX6!y&o_yTG>c?fME(^xkr27R zRb*wGNL{#+&lQPfM9u;aWkqh!iS*7B`8n{_`67GzMV2iPk%c0sf!`kx zxp|RD$Dqioz|qAb?|+NPz^{m00G=8WIk-e*?NX7(>qY(^_}ns)oxdtFXSv9~0AE`n za^G7;-ugC?nw28Y0H6Fdku9r4x>t+*6nOOQA|G5M@|GJ!{s;KZJ4AkGt;jpqi8K$3 z{22JcdXZi46v=H6`8VL}H;O#4QDoI7k?2h#&jFvgS!DYyBI(T{{|tQPR*~IXM3!z9 z`9I)$+eAKgo5-f^B5l7eavpf(c9Fa95Lxgpk^cm~wL|2kjZIE*Jhg1Q9r5%bPU zmPD3D4kNpNqU=Sj`{jpx7GzLcTOX~D)z`$(YT`QN2IM9=2E>d^) zo+Jk`gD1nH6)Xt0-LkVRW=EotM=TPol>32E{G0obN9B+GzL<{Gi22>n*w7f4H5f01&2JN%$CJ+!o7doP<|AwUO7{h} z8;B>0rMpmLHWnuqxeQ`iyJTGSnw3J))qznDnQ?i1Ma; z)2DkTEya~3T9MfoZF0TA<>cCL3DhTaM0uW_wVtBldSb3#K)K1s-FN(PR!U-x;B$I0;nH&Sw`OtqT*ekeatTnLv#agUU0Wz7jSepp0 zQ7@Si`Y`gnk%#>e)sB=*wzYM1bR<(UQwYxGlYYL}$Sx)4%;t!)`CflsREovDhQ%oK zJRMP%MMpW={JGDfyQ{marze%_N%y4N zWE)o2Z6>$j-OF;D0pAh)CSPuA+Sl7$UH(m_S-_|@=}SI~&aTd`?(UwRu2fgba5ZXO_`}_+<-jbutuJS^l4wd z26AEmIxV5~*T^Es7v-_2jAp*ZY36@fz#RCE9q?sSZpMDG9V6nCkws?^_2zpV9(<|yv|2?SnQ6F#p6DUxtY0{OeUAh&dbi*jW!cMN4^nx zv+0LhjqGyrb8^o74gXGA(5mU{qh+(gM`;$}X7_G4yN?SThbB##N=MF=DK$uOB!}|1+D-6BTCTSFtsPIUELfj? zq5V=V7AJfb^a<86p=4W#Cy=Srs=w)Cxg9^JP=g=~{>>?PbqHk<tWRU5T&zeG$7Zc3ne5EH)ikZ93X{+{IetkU?0v_JxPN!uE&li=LkG`eFoH$Ou+r zdevAGubMKG89{%%3b4G>lpT?^avxUOCw&$TNR5p#Zru%O=@CL%#K9si-!-y{$d91@ z5!4S@z!#Mm!f0AzFk=S779~eixRv(1&L8y+e?*Z5J!|lUc*=rn5j{C?pd>Dq^Sfof zoU_{2KLYuYijSzYyAt2@S+MntU(l6f+st-b7QsrZe5||)Z6=PP&4jWzhEL3uo)@}b ze9LEHy&v&7yQ2kK1VJCjEy({a2Y?rh>~eC>Z>?Wx7B9HII2o`o{-}7IeNmdlfpJ(A z$^#Y$D&80B;rzC*N6|Hicvzec&ZSuM39huvCtSXqTvu4FAIxs}{NTm+lJE^WxXV~% zC57`1E_L?B)4qMdK4@yfoIszPkY~~EXEElR%q}*7k|>sIYgJAk2yK!l90C@w%^S_J@4WKR=J6jkH)_!(H>xFn8`De)MT@EW(7GBc! z#T3}sif}BHfsI>e{9;4I_QffGc0;9Qm=%ic)S6+;1%fkm*uCSY@#Xx^Y9Fl6_e7=F zD1_rp`dC%`w0(WFR@cH(TIZv5UlePDm$q2xr=_j;dsSgkDNhbgA(+|y2RPbc{ZV>t zDp6J{#)|V4CdT>+^hL%*iYw82{moJ%s$=$`r2GD%Xr&E1qS}o2;FBCt6;Fx8Huyk@ z+kBMgAGJQtPgP}J&|dJcq{h3-Kp-~u*(bc{rF52=KCRIE|l_~mTkol= z^hK#%uXJC89Z^;T`J1Y-uo0M_!lPqRn#GlksONnjNDPU7bGrUDUT4o_2fk*NKaKMT zl=79(2v~7hX&;E5(0);3E;`9LQf+Nb4MR%9(gjaUmx%|_Ka-Um24UrQMKX~Sk>inA z;uQK|3_D(c(tQ!m!#Rw&8_zcXEu057(LdYL0)Kf&OV6Mb=EY)jp>)tm7Z=qI2W9hMN#cQuKPu) zc@b?KmZ_M5g?o26E9p4q1%2i}f;ZmXxlmVY=65YhU5mIzaYSVu_?elJd}fvFX?gZr ze*HC(Rgs4x-^c96X?c$kN}QH=aF=mXEMhJ?`D6TwWx=>!BU8N5(`X7ul=V2%d;BEY zX!AtnI-XqQtSExK^Vj@z@wub7I9WAMq~?e&LON^Sy&BZ5B7{Ju~_%yMeX;%tHy}^ zUQ>=hkJ^KI@rpm9a`SWZ=grGy`xE`%4xEc3H2#v43t)1=$im2#MGAM|^!4wDZL!Z_ zaB#ohErqkYc-PzS{DZuM=ODl`c)vsT8{go0pM^c!j95~8vfb_$Srb8eMwoL3Vdcs~ zV|tgj^@>?s`o5%L^aJ^DaL7!yJdwvcpR~CBR%U!A-^%Gx@a(95%*Vph4Q0~w9cYr2gha}y;ZRPg< zPb<&2D;T*yin@gE-Q{k*{@$k|_8sm|aT-WpU+>KHjP#7&88b6HzjDas`G^>|VU8s5 zc|7^iaq6ocW%r9M*e~w$p)DyKQQ>U8L(cC098$wZ>Ht)n%OzyX9?;7dP=w(~y7 zWjIMOh}V;ljVE6=PW?*TdIwzFUqqzJ>QOK*qV@GSXQK$?S%`_h-Y!ArU)}Cdt$XdS4i?m-2FP9>?<{ptdHQEiO2&M8?nM} zguNG_9J8D4x_Y!h>a-biS*oqmcBF?THB+@x?U`_;{`E_~PTShv+TPOA+Dbbk7&q** zjnJno!pe(Bl$YFuk+lhDr8fD^oy@$@5fwbu#5fLcs1~;tH|o<%?lDg{p@;K9gM9ge zMy5}muunlLu3xQ{_UiB+1T5%1;Q2?6sPTLn#qwVkAIR0g0-hW<&noH3@uzZ`-;B85 ztCl}XeNlU{M(xEKwb$oUxJH$Vh+WDbwa56Q;Nf(?XKuaVoeRkHmRs0Uvh5Rfu9y;UV6ri6ho}A=~u&Rvl^`)Hdfv$>=;B?xw4?2HjyIW|8P)3g?$lD zk6Q11AOQ=;lJp)7-QB2V)3Z!2L|Az~i%OjNS5MBXRf(~xZ?M)o42{sDbYG|^M^8So zJZwBV_Qd01cyag)iqDvmrymakZ&c-EQ6hB;Bk2@;v|~Od&Vs%vJtePC`mz2gJlzf) zMsb&p9;dZ;P1@HVNO`lixZLFr+zvTrEB78jIkX zU+as>%oV*y?AnOBHlijoj)K3vHll)&r0?GBHR^R}=JqK}Z7m7>*9^~pdwUML--z4^ zJ#Yv1_%Wl)o|UuEYA-L(${EyKjoN4Zh*&TNf_I6|5#c$`$)ue7<7fCRuU)%#;TgMm zNw4u_%lb$?o?nS4SRy`G3~fDi-77^4bSU0m^$_%Jn_NU}LeE6yX*>I@RNm?O=06kl zsL!HY&yPBdr#|Xavnm}+(&tBA9cR@}SH-^IGjdX?QN+9h`17JUf)T%MR`UTLECHd4>1JtOeU6P4R2e$HQ`N=5B2&0=Cv`;{(gADlf{ z(7&+1zkk8Pg^Lz0Ds1h|;Pi|^Sh?EWrC5~X?18f2=|{Ut@kDSuj^}|O=_yAWN6pIn zWj($X5#Pl^kZ;>BHi2Fo9^wwL5i+Up6ePiC%fzkiY4w0 zMOgWzSWLXF)tqt+D_0h&%occX_Tbdr zCK(*uWJ=e7q8MwwpLPgZ5uf&>ep;R;%0D-_7h`^lJ2$9LP3#}&A6U3B)jyCJ@Xn## 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 literal 0 HcmV?d00001 diff --git a/PKHeX/Resources/byte/encounter_p.pkl b/PKHeX/Resources/byte/encounter_p.pkl new file mode 100644 index 0000000000000000000000000000000000000000..eb0d7a4c87c1deb75ebbb52fd63313b0d4ce78c4 GIT binary patch literal 66228 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 F{|}=vr@jCH literal 0 HcmV?d00001 diff --git a/PKHeX/Resources/byte/encounter_pt.pkl b/PKHeX/Resources/byte/encounter_pt.pkl new file mode 100644 index 0000000000000000000000000000000000000000..dc4542abbe9b2aaf4fddd8061ff7d9e7c761c17c GIT binary patch literal 66228 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 literal 0 HcmV?d00001 diff --git a/PKHeX/Resources/byte/encounter_s.pkl b/PKHeX/Resources/byte/encounter_s.pkl new file mode 100644 index 0000000000000000000000000000000000000000..3431a43d1b380c08397b2a4134da7aad0ccc6329 GIT binary patch literal 7763 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 CI}x1# literal 0 HcmV?d00001 diff --git a/PKHeX/Resources/byte/evos_g3.pkl b/PKHeX/Resources/byte/evos_g3.pkl new file mode 100644 index 0000000000000000000000000000000000000000..84a89ae6e112721083e5aaf71065ad0835f3c150 GIT binary patch literal 16480 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 literal 0 HcmV?d00001 From 2cf81deed12034d52a90efda046c537291dc59a8 Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 13:33:20 +0100 Subject: [PATCH 04/12] Load evolves 3 to 5 --- PKHeX/Legality/Core.cs | 10 +++------- PKHeX/Legality/Structures/EvolutionTree.cs | 6 +++--- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 8949840b0..8e08c0d41 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -278,7 +278,7 @@ private static EncounterArea[] getTables2() SlotsFR = getEncounterTables(GameVersion.FR); SlotsLG = getEncounterTables(GameVersion.LG); - //Evolves3 = new EvolutionTree(Data.unpackMini(Resources.evos_rs, "rs"), GameVersion.RS, PersonalTable.RS, MaxSpeciesID_3); + Evolves3 = new EvolutionTree(new[] { Resources.evos_g3 }, GameVersion.RS, PersonalTable.RS, MaxSpeciesID_3); // Update Personal Entries with TM/Tutor Data var TMHM = Data.unpackMini(Resources.hmtm_g3, "g3"); @@ -302,7 +302,7 @@ private static EncounterArea[] getTables2() SlotsHG = getEncounterTables(GameVersion.HG); SlotsSS = getEncounterTables(GameVersion.SS); - //Evolves4 = new EvolutionTree(Data.unpackMini(Resources.evos_dp, "dp"), GameVersion.DP, PersonalTable.DP, MaxSpeciesID_4); + Evolves4 = new EvolutionTree(new[] { Resources.evos_g4 }, GameVersion.DP, PersonalTable.DP, MaxSpeciesID_4); // Update Personal Entries with Tutor Data var tutors = Data.unpackMini(Resources.tutors_g4, "g4"); @@ -325,7 +325,7 @@ private static EncounterArea[] getTables2() MarkG5Slots(ref SlotsB2); MarkG5Slots(ref SlotsW2); - //Evolves5 = new EvolutionTree(Data.unpackMini(Resources.evos_bw, "bw"), GameVersion.BW, PersonalTable.BW, MaxSpeciesID_5); + Evolves5 = new EvolutionTree(new[] { Resources.evos_g5 }, GameVersion.BW, PersonalTable.BW, MaxSpeciesID_5); } // Gen 6 { @@ -363,10 +363,6 @@ private static EncounterArea[] getTables2() Evolves7 = new EvolutionTree(Data.unpackMini(Resources.evos_sm, "sm"), GameVersion.SM, PersonalTable.SM, MaxSpeciesID_7); } - - // Temp - - Evolves3 = Evolves4 = Evolves5 = Evolves6; } // Moves diff --git a/PKHeX/Legality/Structures/EvolutionTree.cs b/PKHeX/Legality/Structures/EvolutionTree.cs index dd740ada8..f57fa94c1 100644 --- a/PKHeX/Legality/Structures/EvolutionTree.cs +++ b/PKHeX/Legality/Structures/EvolutionTree.cs @@ -25,13 +25,13 @@ public EvolutionTree(byte[][] data, GameVersion game, PersonalTable personal, in case GameVersion.GSC: Entries = EvolutionSet2.getArray(data[0], maxSpeciesTree); break; - case GameVersion.E: + case GameVersion.RS: Entries = EvolutionSet3.getArray(data[0]); break; - case GameVersion.Pt: + case GameVersion.DP: Entries = EvolutionSet4.getArray(data[0]); break; - case GameVersion.B2W2: + case GameVersion.BW: Entries = EvolutionSet5.getArray(data[0]); break; case GameVersion.ORAS: From 394ef9063ed8e326ee7e6f650b1f84b5ea73e12f Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 13:37:30 +0100 Subject: [PATCH 05/12] Load g3 and 4 encounter slots --- PKHeX/Legality/Core.cs | 10 ++++++++++ PKHeX/PKHeX.Core.csproj | 13 +++++++++++++ 2 files changed, 23 insertions(+) diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 8e08c0d41..790c9751c 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -127,6 +127,16 @@ private static EncounterArea[] getEncounterTables(GameVersion Game) byte[] tables = null; switch (Game) { + case GameVersion.R: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_r, "ru")); + case GameVersion.S: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_s, "sa")); + case GameVersion.E: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_e, "em")); + case GameVersion.FR: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_fr, "fr")); + case GameVersion.LG: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_lg, "lg")); + case GameVersion.D: return EncounterArea.getArray4DPPt(Data.unpackMini(Resources.encounter_d, "da")); + case GameVersion.P: return EncounterArea.getArray4DPPt(Data.unpackMini(Resources.encounter_p, "pe")); + case GameVersion.Pt: return EncounterArea.getArray4DPPt(Data.unpackMini(Resources.encounter_pt, "pt")); + case GameVersion.HG: return EncounterArea.getArray4HGSS(Data.unpackMini(Resources.encounter_hg, "hg")); + case GameVersion.SS: return EncounterArea.getArray4HGSS(Data.unpackMini(Resources.encounter_ss, "ss")); case GameVersion.B: ident = "51"; tables = Resources.encounter_b; break; case GameVersion.W: ident = "51"; tables = Resources.encounter_w; break; case GameVersion.B2: ident = "52"; tables = Resources.encounter_b2; break; diff --git a/PKHeX/PKHeX.Core.csproj b/PKHeX/PKHeX.Core.csproj index 3ce1a863d..7bdc98c97 100644 --- a/PKHeX/PKHeX.Core.csproj +++ b/PKHeX/PKHeX.Core.csproj @@ -272,21 +272,34 @@ + + + + + + + + + + + + + From 99d0a56cba4ab8aabf1a16d0d2bc88969db21771 Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 13:42:59 +0100 Subject: [PATCH 06/12] Alt slots for gen 3, feebas and unown forms --- PKHeX/Legality/Core.cs | 42 ++++++++++++++++++--- PKHeX/Legality/Tables3.cs | 78 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 115 insertions(+), 5 deletions(-) diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 790c9751c..1127592d9 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -166,7 +166,27 @@ private static EncounterArea[] addExtraTableSlots(EncounterArea[] GameSlots, Enc } return GameSlots; } + private static void MarkG3Slots_FRLG(ref EncounterArea[] Areas) + { + // Remove slots for unown, those slots does not contains alt form info, it will be added manually in SlotsRFLGAlt + // Group areas by location id, the raw data have areas with different slots but the same location id + Areas = Areas.Where(a => (a.Location < 188 || a.Location > 194)). + GroupBy(a => a.Location). + Select(a => + new EncounterArea() + { Location = a.First().Location, Slots = a.SelectMany(m => m.Slots).ToArray() }). + ToArray(); + } + private static void MarkG3Slots_RSE(ref EncounterArea[] Areas) + { + // Group areas by location id, the raw data have areas with different slots but the same location id + Areas = Areas.GroupBy(a => a.Location). + Select(a => + new EncounterArea() + { Location = a.First().Location, Slots = a.SelectMany(m => m.Slots).ToArray() }). + ToArray(); + } private static void MarkG5Slots(ref EncounterArea[] Areas) { foreach (var area in Areas) @@ -282,11 +302,23 @@ private static EncounterArea[] getTables2() StaticFR = getStaticEncounters(GameVersion.FR); StaticLG = getStaticEncounters(GameVersion.LG); - SlotsR = getEncounterTables(GameVersion.R); - SlotsS = getEncounterTables(GameVersion.S); - SlotsE = getEncounterTables(GameVersion.E); - SlotsFR = getEncounterTables(GameVersion.FR); - SlotsLG = getEncounterTables(GameVersion.LG); + var R_Slots = getEncounterTables(GameVersion.R); + var S_Slots = getEncounterTables(GameVersion.S); + var E_Slots = getEncounterTables(GameVersion.E); + var FR_Slots = getEncounterTables(GameVersion.FR); + var LG_Slots = getEncounterTables(GameVersion.LG); + + MarkG3Slots_RSE(ref R_Slots); + MarkG3Slots_RSE(ref S_Slots); + MarkG3Slots_RSE(ref E_Slots); + MarkG3Slots_FRLG(ref FR_Slots); + MarkG3Slots_FRLG(ref LG_Slots); + + SlotsR = addExtraTableSlots(R_Slots, SlotsRSEAlt); + SlotsS = addExtraTableSlots(S_Slots, SlotsRSEAlt); + SlotsE = addExtraTableSlots(E_Slots, SlotsRSEAlt); + SlotsFR = addExtraTableSlots(FR_Slots, SlotsFRLGAlt); + SlotsLG = addExtraTableSlots(LG_Slots, SlotsFRLGAlt); Evolves3 = new EvolutionTree(new[] { Resources.evos_g3 }, GameVersion.RS, PersonalTable.RS, MaxSpeciesID_3); diff --git a/PKHeX/Legality/Tables3.cs b/PKHeX/Legality/Tables3.cs index 695ba62fe..bacf8d4ae 100644 --- a/PKHeX/Legality/Tables3.cs +++ b/PKHeX/Legality/Tables3.cs @@ -144,5 +144,83 @@ public static partial class Legal //todo }; + #region AltSlots + private static readonly EncounterArea[] SlotsRSEAlt = + { + new EncounterArea { + Location = 34, // Route 119 + Slots = new[] + { + new EncounterSlot { Species = 349, LevelMin = 20, LevelMax = 25, Type = SlotType.Super_Rod, Form = 25 }, // Feebas + },} + }; + private static readonly EncounterArea[] SlotsFRLGAlt = + { + new EncounterArea { + Location = 188, // Monean Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 0 }, // Unown A + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 26 }, // Unown ? + },}, + new EncounterArea { + Location = 189, // Liptoo Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 2 }, // Unown C + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 3 }, // Unown D + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 7 }, // Unown H + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 14 }, // Unown O + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 20 }, // Unown U + },}, + new EncounterArea { + Location = 190, // Weepth Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 4 }, // Unown E + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 8 }, // Unown I + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 13 }, // Unown N + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 18 }, // Unown S + },}, + new EncounterArea { + Location = 191, // Dilford Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 9 }, // Unown J + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 11 }, // Unown L + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 15 }, // Unown P + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 16 }, // Unown Q + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 17 }, // Unown R + },}, + new EncounterArea { + Location = 192, // Scufib Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 5 }, // Unown F + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 6 }, // Unown G + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 10 }, // Unown K + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 19 }, // Unown T + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 24 }, // Unown Y + },}, + new EncounterArea { + Location = 193, // Rixy Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 1 }, // Unown B + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 12 }, // Unown M + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 21 }, // Unown V + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 22 }, // Unown W + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 23 }, // Unown X + },}, + new EncounterArea { + Location = 193, // Viapois Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 25 }, // Unown Z + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 27 }, // Unown ! + },} + }; + #endregion + } } From cacb5fdfa0a2983c2572e5f51c5afcdadfffb7d3 Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 14:38:30 +0100 Subject: [PATCH 07/12] Fix gen4 read slots, HGSS has wrong offset G4 Extra Slots Transform gen 3 encounter species into gen 4 species index --- PKHeX/Legality/Core.cs | 31 ++++- PKHeX/Legality/Structures/EncounterArea.cs | 132 ++++++++++++++------- PKHeX/Legality/Tables4.cs | 82 +++++++++++++ 3 files changed, 200 insertions(+), 45 deletions(-) diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 1127592d9..ca8550651 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -187,6 +187,15 @@ private static void MarkG3Slots_RSE(ref EncounterArea[] Areas) { Location = a.First().Location, Slots = a.SelectMany(m => m.Slots).ToArray() }). ToArray(); } + private static void MarkG4Slots(ref EncounterArea[] Areas) + { + // Group areas by location id, the raw data have areas with different slots but the same location id + Areas = Areas.GroupBy(a => a.Location). + Select(a => + new EncounterArea() + { Location = a.First().Location, Slots = a.SelectMany(m => m.Slots).ToArray() }). + ToArray(); + } private static void MarkG5Slots(ref EncounterArea[] Areas) { foreach (var area in Areas) @@ -338,11 +347,23 @@ private static EncounterArea[] getTables2() StaticHG = getStaticEncounters(GameVersion.HG); StaticSS = getStaticEncounters(GameVersion.SS); - SlotsD = getEncounterTables(GameVersion.D); - SlotsP = getEncounterTables(GameVersion.P); - SlotsPt = getEncounterTables(GameVersion.Pt); - SlotsHG = getEncounterTables(GameVersion.HG); - SlotsSS = getEncounterTables(GameVersion.SS); + var D_Slots = getEncounterTables(GameVersion.D); + var P_Slots = getEncounterTables(GameVersion.P); + var Pt_Slots = getEncounterTables(GameVersion.Pt); + var HG_Slots = getEncounterTables(GameVersion.HG); + var SS_Slots = getEncounterTables(GameVersion.SS); + + MarkG4Slots(ref D_Slots); + MarkG4Slots(ref P_Slots); + MarkG4Slots(ref Pt_Slots); + MarkG4Slots(ref HG_Slots); + MarkG4Slots(ref SS_Slots); + + SlotsD = addExtraTableSlots(D_Slots, SlotsDPPPtAlt); + SlotsP = addExtraTableSlots(P_Slots, SlotsDPPPtAlt); + SlotsPt = addExtraTableSlots(Pt_Slots, SlotsDPPPtAlt); + SlotsHG = addExtraTableSlots(HG_Slots, SlotsHGSSAlt); + SlotsSS = addExtraTableSlots(SS_Slots, SlotsHGSSAlt); Evolves4 = new EvolutionTree(new[] { Resources.evos_g4 }, GameVersion.DP, PersonalTable.DP, MaxSpeciesID_4); diff --git a/PKHeX/Legality/Structures/EncounterArea.cs b/PKHeX/Legality/Structures/EncounterArea.cs index 90fdf6926..5d66a15e7 100644 --- a/PKHeX/Legality/Structures/EncounterArea.cs +++ b/PKHeX/Legality/Structures/EncounterArea.cs @@ -235,13 +235,13 @@ private static IEnumerable getSlots3(byte[] data, ref int ofs, in { int levelmin = data[ofs + 2 + i * 4]; int levelmax = data[ofs + 3 + i * 4]; - int Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4); + int Species = PKX.getG4Species(BitConverter.ToUInt16(data, ofs + 4 + i * 4)); if (Species > 0) slots.Add(new EncounterSlot() { - LevelMin = data[ofs + 2 + i * 4], - LevelMax = data[ofs + 3 + i * 4], - Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4), + LevelMin = levelmin, + LevelMax = levelmax, + Species = Species, Type = t }); } @@ -261,13 +261,13 @@ private static IEnumerable getSlots3_F(byte[] data, ref int ofs, SlotType t = i < 2 ? SlotType.Old_Rod : i < 5 ? SlotType.Good_Rod : SlotType.Super_Rod; int levelmin = data[ofs + 2 + i * 4]; int levelmax = data[ofs + 3 + i * 4]; - int Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4); + int Species = PKX.getG4Species(BitConverter.ToUInt16(data, ofs + 4 + i * 4)); if (Species > 0) slots.Add(new EncounterSlot() { - LevelMin = data[ofs + 2 + i * 4], - LevelMax = data[ofs + 3 + i * 4], - Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4), + LevelMin = levelmin, + LevelMax = levelmax, + Species = Species, Type = t }); } @@ -288,7 +288,6 @@ private static EncounterSlot[] getSlots4_DPPt_G(byte[] data, ref int ofs, int nu int level = (int)BitConverter.ToUInt32(data, ofs + i * 8); int species = (int)BitConverter.ToUInt32(data, ofs + i * 8); - slots[i] = new EncounterSlot() { LevelMax = level, @@ -334,7 +333,7 @@ private static EncounterSlot[] getSlots4_HGSS_G(byte[] data, ref int ofs, int nu ofs += numslots * 7; return slots; } - private static IEnumerable getSlots4_G_Replace(byte[] data, ref int ofs, int numslots, EncounterSlot[] ReplacedSlots, int StartReplace, SlotType t) + private static IEnumerable getSlots4DPPt_G_Replace(byte[] data, ref int ofs, int numslots, EncounterSlot[] ReplacedSlots, int StartReplace, SlotType t) { //Special slots like GBA Dual Slot. Those slot only contain the info the species, the level is copy from one of the first grass slots var slots = new List(); @@ -344,7 +343,7 @@ private static IEnumerable getSlots4_G_Replace(byte[] data, ref i if(ReplacedSlots[StartReplace + i].LevelMin > 0) { var Species = (int)BitConverter.ToUInt32(data, ofs + i * 4); - if(Species > 0) + if (Species > 0) { var slot = ReplacedSlots[StartReplace + i].Clone(); slot.Type = t; @@ -357,6 +356,29 @@ private static IEnumerable getSlots4_G_Replace(byte[] data, ref i ofs += numslots * 4; return slots; } + private static IEnumerable getSlots4HGSS_G_Replace(byte[] data, ref int ofs, int numslots, EncounterSlot[] ReplacedSlots, int StartReplace, SlotType t) + { + //Special slots like GBA Dual Slot. Those slot only contain the info the species, the level is copy from one of the first grass slots + var slots = new List(); + + for (int i = 0; i < numslots; i++) + { + if (ReplacedSlots[StartReplace + i].LevelMin > 0) + { + var Species = (int)BitConverter.ToUInt16(data, ofs + i * 2); + if (Species > 0) + { + var slot = ReplacedSlots[StartReplace + i].Clone(); + slot.Type = t; + slot.Species = Species; + slots.Add(slot); + } + } + } + + ofs += numslots * 2; + return slots; + } private static IEnumerable getSlots4_G_TimeReplace(byte[] data, ref int ofs, EncounterSlot[] GrassSlots, SlotType t) { var slots = new List(); @@ -389,7 +411,7 @@ private static IEnumerable getSlots4_G_TimeReplace(byte[] data, r return GrassSlots.Where(s => s.Species > 0).Concat(slots); } - private static IEnumerable getSlots4_WFR(byte[] data, ref int ofs, int numslots, SlotType t) + private static IEnumerable getSlots4DPPt_WFR(byte[] data, ref int ofs, int numslots, SlotType t) { var slots = new List(); for (int i = 0; i < numslots; i++) @@ -411,6 +433,27 @@ private static IEnumerable getSlots4_WFR(byte[] data, ref int ofs ofs += numslots * 8; return slots; } + private static IEnumerable getSlots4HGSS_WFR(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new List(); + for (int i = 0; i < numslots; i++) + { + int levelmin = data[ofs + 0 + i * 4]; + int levelmax = data[ofs + 1 + i * 4]; + int Species = (int)BitConverter.ToUInt16(data, ofs + 2 + i * 4); + if (Species > 0) + slots.Add(new EncounterSlot() + { + LevelMin = levelmin, + LevelMax = levelmax, + Species = Species, + Type = t + }); + + } + ofs += numslots * 4; + return slots; + } private static EncounterArea getArea3(byte[] data) { @@ -459,7 +502,7 @@ private static EncounterArea getArea4DPPt(byte[] data) Area4.Location = BitConverter.ToUInt16(data, 0); GrassRatio = (int)BitConverter.ToUInt32(data, 2); - ofs = 4; + ofs = 6; if (GrassRatio > 0) { EncounterSlot[] GrassSlots = getSlots4_DPPt_G(data, ref ofs, 12, SlotType.Grass); @@ -467,23 +510,23 @@ private static EncounterArea getArea4DPPt(byte[] data) Slots.AddRange(getSlots4_G_TimeReplace(data, ref ofs, GrassSlots, SlotType.Grass)); //Pokéradar slots replace slots 6,7,10 and 11 //Pokeradar is marked with different slot type because it have different PID-IV generation - Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 6, SlotType.Pokeradar)); - Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 10, SlotType.Pokeradar)); + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 6, SlotType.Pokeradar)); + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 10, SlotType.Pokeradar)); ofs += 24; //24 bytes padding //Dual Slots replace slots 8 and 9 - Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Ruby - Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Sapphire - Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Emerald - Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_FireRed - Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_LeafGreen + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Ruby + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Sapphire + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Emerald + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_FireRed + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_LeafGreen } else ofs = 206; SurfRatio = (int)BitConverter.ToUInt32(data, ofs); - ofs += 2; + ofs += 4; if (SurfRatio > 0) - Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Surf)); + Slots.AddRange(getSlots4DPPt_WFR(data, ref ofs, 5, SlotType.Surf)); else ofs += 40; @@ -491,21 +534,21 @@ private static EncounterArea getArea4DPPt(byte[] data) OldRodRatio = (int)BitConverter.ToUInt32(data, 294); ofs += 4; if (OldRodRatio > 0) - Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Old_Rod)); + Slots.AddRange(getSlots4DPPt_WFR(data, ref ofs, 5, SlotType.Old_Rod)); else ofs += 40; GoodRodRatio = (int)BitConverter.ToUInt32(data, 338); ofs += 4; if (GoodRodRatio > 0) - Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Good_Rod)); + Slots.AddRange(getSlots4DPPt_WFR(data, ref ofs, 5, SlotType.Good_Rod)); else ofs += 40; SuperRodRatio = (int)BitConverter.ToUInt32(data, 382); ofs += 4; if (SuperRodRatio > 0) - Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Super_Rod)); + Slots.AddRange(getSlots4DPPt_WFR(data, ref ofs, 5, SlotType.Super_Rod)); else ofs += 40; @@ -522,7 +565,7 @@ private static EncounterArea getArea4HGSS(byte[] data) int SuperRodRatio = 0; int RockSmashRatio = 0; EncounterArea Area4 = new EncounterArea(); - if (data.Length != 202) + if (data.Length != 198) { Area4.Location = 0; Area4.Slots = new EncounterSlot[0]; return Area4; } var Slots = new List(); @@ -537,43 +580,52 @@ private static EncounterArea getArea4HGSS(byte[] data) // 2 bytes padding int ofs = 10; + EncounterSlot[] GrassSlots = null; + if (GrassRatio > 0) { // First 36 slots are morning, day and night grass slots // The order is 12 level values, 12 morning species, 12 day species and 12 night species - EncounterSlot[] GrassSlots = getSlots4_HGSS_G(data, ref ofs, 12, SlotType.Grass); + GrassSlots = getSlots4_HGSS_G(data, ref ofs, 12, SlotType.Grass); Slots.AddRange(GrassSlots.Where(s => s.Species > 0)); // Hoeen Sound and Shinno Soundreplace slots 4 and 5 - Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); - Slots.AddRange(getSlots4_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); + Slots.AddRange(getSlots4HGSS_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); + Slots.AddRange(getSlots4HGSS_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); } else - ofs = -1; + ofs = 102; if (SurfRatio > 0) - Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Surf)); + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 5, SlotType.Surf)); else - ofs += 40; + ofs += 20; if (RockSmashRatio > 0) - Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Rock_Smash)); + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 2, SlotType.Rock_Smash)); else - ofs += 40; + ofs += 8; if (OldRodRatio > 0) - Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Old_Rod)); + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 5, SlotType.Old_Rod)); else - ofs += 40; + ofs += 20; if (GoodRodRatio > 0) - Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Good_Rod)); + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 5, SlotType.Good_Rod)); else - ofs += 40; + ofs += 20; if (SuperRodRatio > 0) - Slots.AddRange(getSlots4_WFR(data, ref ofs, 5, SlotType.Super_Rod)); + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 5, SlotType.Super_Rod)); else - ofs += 40; + ofs += 20; + + if (GrassRatio > 0) + { + // National Radio replaces slots 4 and 5 + Slots.AddRange(getSlots4HGSS_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); + } + // 4 bytes padding Area4.Slots = Slots.ToArray(); return Area4; diff --git a/PKHeX/Legality/Tables4.cs b/PKHeX/Legality/Tables4.cs index 74ea6f381..caf50de1b 100644 --- a/PKHeX/Legality/Tables4.cs +++ b/PKHeX/Legality/Tables4.cs @@ -389,5 +389,87 @@ public static partial class Legal { //todo }; + + #region Alt Slots + private static readonly EncounterArea[] SlotsDPPPtAlt = + { + new EncounterArea { + Location = 50, // Mount Coronet + Slots = new[] + { + new EncounterSlot { Species = 349, LevelMin = 10, LevelMax = 20, Type = SlotType.Old_Rod }, // Feebas + new EncounterSlot { Species = 349, LevelMin = 10, LevelMax = 20, Type = SlotType.Good_Rod }, // Feebas + new EncounterSlot { Species = 349, LevelMin = 10, LevelMax = 20, Type = SlotType.Super_Rod }, // Feebas + },}, + new EncounterArea { + Location = 53, //Solaceon Ruins + Slots = new[] + { + //new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 0 }, // Unown A + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 1 }, // Unown B + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 2 }, // Unown C + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 3 }, // Unown D + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 4 }, // Unown E + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 5 }, // Unown F + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 6 }, // Unown G + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 7 }, // Unown H + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 8 }, // Unown I + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 9 }, // Unown J + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 10 }, // Unown K + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 11 }, // Unown L + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 12 }, // Unown M + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 13 }, // Unown N + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 14 }, // Unown O + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 15 }, // Unown P + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 16 }, // Unown Q + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 17 }, // Unown R + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 18 }, // Unown S + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 19 }, // Unown T + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 20 }, // Unown U + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 21 }, // Unown V + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 22 }, // Unown W + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 23 }, // Unown X + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 24 }, // Unown Y + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 25 }, // Unown ! + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 26 }, // Unown ? + },}, + }; + + private static readonly EncounterArea[] SlotsHGSSAlt = + { + new EncounterArea { + Location = 209, // Ruins of Alph + Slots = new[] + { + //new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 0 }, // Unown A + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 1 }, // Unown B + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 2 }, // Unown C + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 3 }, // Unown D + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 4 }, // Unown E + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 5 }, // Unown F + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 6 }, // Unown G + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 7 }, // Unown H + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 8 }, // Unown I + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 9 }, // Unown J + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 10 }, // Unown K + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 11 }, // Unown L + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 12 }, // Unown M + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 13 }, // Unown N + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 14 }, // Unown O + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 15 }, // Unown P + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 16 }, // Unown Q + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 17 }, // Unown R + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 18 }, // Unown S + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 19 }, // Unown T + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 20 }, // Unown U + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 21 }, // Unown V + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 22 }, // Unown W + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 23 }, // Unown X + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 24 }, // Unown Y + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 25 }, // Unown ! + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 26 }, // Unown ? + },}, + }; + #endregion } } From b0fc485eb58f35db4cd8da2547b4016e13ca3a32 Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 15:10:28 +0100 Subject: [PATCH 08/12] Replace hard coded grass type slot for the slot type parameter --- PKHeX/Legality/Structures/EncounterArea.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PKHeX/Legality/Structures/EncounterArea.cs b/PKHeX/Legality/Structures/EncounterArea.cs index 5d66a15e7..b328980aa 100644 --- a/PKHeX/Legality/Structures/EncounterArea.cs +++ b/PKHeX/Legality/Structures/EncounterArea.cs @@ -293,7 +293,7 @@ private static EncounterSlot[] getSlots4_DPPt_G(byte[] data, ref int ofs, int nu LevelMax = level, LevelMin = level, Species = species, - Type = SlotType.Grass + Type = t }; } @@ -314,20 +314,20 @@ private static EncounterSlot[] getSlots4_HGSS_G(byte[] data, ref int ofs, int nu LevelMin = level, LevelMax = level, Species = species, - Type = SlotType.Grass + Type = t }; } for (int i = 0; i < numslots; i++) { slots[numslots + i] = slots[i].Clone(); slots[numslots + i].Species = (int)BitConverter.ToUInt16(data, ofs + numslots * 3 + i * 2); - slots[numslots + i].Type = SlotType.Grass; + slots[numslots + i].Type = t; } for (int i = 0; i < numslots; i++) { slots[numslots * 2 + i] = slots[i].Clone(); slots[numslots * 2 + i].Species = (int)BitConverter.ToUInt16(data, ofs + numslots * 5 + i * 2); - slots[numslots * 2 + i].Type = SlotType.Grass; + slots[numslots * 2 + i].Type = t; } ofs += numslots * 7; From 2515e5a4803f9801e400e78558858db32a34b7cf Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 16:23:46 +0100 Subject: [PATCH 09/12] Gen 4 headbutt encounters --- PKHeX/Legality/Core.cs | 14 ++++++- PKHeX/Legality/Structures/EncounterArea.cs | 49 ++++++++++++++++++++++ PKHeX/PKHeX.Core.csproj | 2 + PKHeX/Properties/Resources.Designer.cs | 20 +++++++++ PKHeX/Properties/Resources.resx | 6 +++ 5 files changed, 89 insertions(+), 2 deletions(-) diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index ca8550651..930fc7765 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -226,6 +226,12 @@ private static void MarkG5Slots(ref EncounterArea[] Areas) } while (ctr != area.Slots.Length); area.Slots = area.Slots.Where(slot => slot.Species != 0).ToArray(); } + // Group areas by location id, the raw data have areas with different slots but the same location id + Areas = Areas.GroupBy(a => a.Location). + Select(a => + new EncounterArea() + { Location = a.First().Location, Slots = a.SelectMany(m => m.Slots).ToArray() }). + ToArray(); } private static void MarkG6XYSlots(ref EncounterArea[] Areas) { @@ -352,18 +358,22 @@ private static EncounterArea[] getTables2() var Pt_Slots = getEncounterTables(GameVersion.Pt); var HG_Slots = getEncounterTables(GameVersion.HG); var SS_Slots = getEncounterTables(GameVersion.SS); + var HG_Headbutt_Slots = EncounterArea.getArray4HGSS_Headbutt(Data.unpackMini(Resources.encunters_hb_hg, "hg")); + var SS_Headbutt_Slots = EncounterArea.getArray4HGSS_Headbutt(Data.unpackMini(Resources.encunters_hb_ss, "ss")); MarkG4Slots(ref D_Slots); MarkG4Slots(ref P_Slots); MarkG4Slots(ref Pt_Slots); MarkG4Slots(ref HG_Slots); MarkG4Slots(ref SS_Slots); + MarkG4Slots(ref HG_Headbutt_Slots); + MarkG4Slots(ref SS_Headbutt_Slots); SlotsD = addExtraTableSlots(D_Slots, SlotsDPPPtAlt); SlotsP = addExtraTableSlots(P_Slots, SlotsDPPPtAlt); SlotsPt = addExtraTableSlots(Pt_Slots, SlotsDPPPtAlt); - SlotsHG = addExtraTableSlots(HG_Slots, SlotsHGSSAlt); - SlotsSS = addExtraTableSlots(SS_Slots, SlotsHGSSAlt); + SlotsHG = addExtraTableSlots(addExtraTableSlots(HG_Slots, HG_Headbutt_Slots), SlotsHGSSAlt); + SlotsSS = addExtraTableSlots(addExtraTableSlots(SS_Slots, SS_Headbutt_Slots), SlotsHGSSAlt); Evolves4 = new EvolutionTree(new[] { Resources.evos_g4 }, GameVersion.DP, PersonalTable.DP, MaxSpeciesID_4); diff --git a/PKHeX/Legality/Structures/EncounterArea.cs b/PKHeX/Legality/Structures/EncounterArea.cs index b328980aa..6b50ee57a 100644 --- a/PKHeX/Legality/Structures/EncounterArea.cs +++ b/PKHeX/Legality/Structures/EncounterArea.cs @@ -631,6 +631,35 @@ private static EncounterArea getArea4HGSS(byte[] data) return Area4; } + private static EncounterArea getArea4HGSS_Headbutt(byte[] data) + { + EncounterArea Area4 = new EncounterArea(); + if (data.Length < 78) + { Area4.Location = 0; Area4.Slots = new EncounterSlot[0]; return Area4; } + Area4.Location = BitConverter.ToUInt16(data, 0); + //4 bytes padding + var Slots = new List(); + + // 00-11 Normal trees + // 12-17 Special trees + for (int i = 0; i < 18; i++) + { + int Species = BitConverter.ToUInt16(data, 6 + i * 4); + if (Species > 0) + { + Slots.Add(new EncounterSlot() + { + Species = Species, + LevelMin = data[8 + i * 4], + LevelMax = data[9 + i * 4], + Type = SlotType.Headbutt + }); + } + } + Area4.Slots = Slots.ToArray(); + return Area4; + } + /// /// RBY Format Slot Getter from data. /// @@ -842,6 +871,26 @@ public static EncounterArea[] getArray4HGSS(byte[][] entries) return Areas.ToArray(); } + /// + /// Gets the encounter areas with information from Generation 4 Hearth Gold and Soul Silver Headbutt tree data. + /// + /// Raw data, one byte array per encounter area + /// Array of encounter areas. + public static EncounterArea[] getArray4HGSS_Headbutt(byte[][] entries) + { + if (entries == null) + return null; + + var Areas = new List(); + for (int i = 0; i < entries.Length; i++) + { + EncounterArea Area = getArea4HGSS_Headbutt(entries[i]); + if (Area.Slots.Any()) + Areas.Add(Area); + } + return Areas.ToArray(); + } + public static EncounterArea[] getArray(byte[][] entries) { if (entries == null) diff --git a/PKHeX/PKHeX.Core.csproj b/PKHeX/PKHeX.Core.csproj index 7bdc98c97..54130c2ad 100644 --- a/PKHeX/PKHeX.Core.csproj +++ b/PKHeX/PKHeX.Core.csproj @@ -297,6 +297,8 @@ + + diff --git a/PKHeX/Properties/Resources.Designer.cs b/PKHeX/Properties/Resources.Designer.cs index c422427f8..4490613b4 100644 --- a/PKHeX/Properties/Resources.Designer.cs +++ b/PKHeX/Properties/Resources.Designer.cs @@ -12852,6 +12852,26 @@ public class Resources { } } + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encunters_hb_hg { + get { + object obj = ResourceManager.GetObject("encunters_hb_hg", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encunters_hb_ss { + get { + object obj = ResourceManager.GetObject("encunters_hb_ss", resourceCulture); + return ((byte[])(obj)); + } + } + /// /// Busca un recurso adaptado de tipo System.Byte[]. /// diff --git a/PKHeX/Properties/Resources.resx b/PKHeX/Properties/Resources.resx index 7cfe64be7..d478b5762 100644 --- a/PKHeX/Properties/Resources.resx +++ b/PKHeX/Properties/Resources.resx @@ -7549,4 +7549,10 @@ ..\Resources\byte\evos_g5.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\Resources\byte\encunters_hb_hg.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encunters_hb_ss.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file From 771cb88589fbb101ea61fc74b744e2a190578f77 Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 16:44:36 +0100 Subject: [PATCH 10/12] Gen 4 Honey Trees Slots --- PKHeX/Legality/Core.cs | 10 ++-- PKHeX/Legality/Structures/EncounterArea.cs | 22 +++++++++ PKHeX/Legality/Structures/SlotType.cs | 3 +- PKHeX/Legality/Tables4.cs | 54 ++++++++++++++++++++++ 4 files changed, 85 insertions(+), 4 deletions(-) diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 930fc7765..ef6117af9 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -361,6 +361,10 @@ private static EncounterArea[] getTables2() var HG_Headbutt_Slots = EncounterArea.getArray4HGSS_Headbutt(Data.unpackMini(Resources.encunters_hb_hg, "hg")); var SS_Headbutt_Slots = EncounterArea.getArray4HGSS_Headbutt(Data.unpackMini(Resources.encunters_hb_ss, "ss")); + var D_HoneyTrees_Slots = SlotsD_HoneyTree.Clone(HoneyTreesLocation); + var P_HoneyTrees_Slots = SlotsP_HoneyTree.Clone(HoneyTreesLocation); + var Pt_HoneyTrees_Slots = SlotsPt_HoneyTree.Clone(HoneyTreesLocation); + MarkG4Slots(ref D_Slots); MarkG4Slots(ref P_Slots); MarkG4Slots(ref Pt_Slots); @@ -369,9 +373,9 @@ private static EncounterArea[] getTables2() MarkG4Slots(ref HG_Headbutt_Slots); MarkG4Slots(ref SS_Headbutt_Slots); - SlotsD = addExtraTableSlots(D_Slots, SlotsDPPPtAlt); - SlotsP = addExtraTableSlots(P_Slots, SlotsDPPPtAlt); - SlotsPt = addExtraTableSlots(Pt_Slots, SlotsDPPPtAlt); + SlotsD = addExtraTableSlots(addExtraTableSlots(D_Slots, D_HoneyTrees_Slots), SlotsDPPPtAlt); + SlotsP = addExtraTableSlots(addExtraTableSlots(P_Slots, P_HoneyTrees_Slots), SlotsDPPPtAlt); + SlotsPt = addExtraTableSlots(addExtraTableSlots(Pt_Slots, Pt_HoneyTrees_Slots), SlotsDPPPtAlt); SlotsHG = addExtraTableSlots(addExtraTableSlots(HG_Slots, HG_Headbutt_Slots), SlotsHGSSAlt); SlotsSS = addExtraTableSlots(addExtraTableSlots(SS_Slots, SS_Headbutt_Slots), SlotsHGSSAlt); diff --git a/PKHeX/Legality/Structures/EncounterArea.cs b/PKHeX/Legality/Structures/EncounterArea.cs index 6b50ee57a..9c18d50ec 100644 --- a/PKHeX/Legality/Structures/EncounterArea.cs +++ b/PKHeX/Legality/Structures/EncounterArea.cs @@ -27,6 +27,28 @@ private EncounterArea(byte[] data) } } + public EncounterArea Clone(int location) + { + EncounterArea Areas = new EncounterArea(); + Areas.Location = location; + Areas.Slots = new EncounterSlot[Slots.Length]; + for (int i = 0; i < Slots.Length; i++) + { + Areas.Slots[i] = Slots[i].Clone(); + } + return Areas; + } + + public EncounterArea[] Clone(int[] locations) + { + EncounterArea[] Areas = new EncounterArea[locations.Length]; + for(int i=0;i Date: Sun, 19 Mar 2017 16:45:05 +0100 Subject: [PATCH 11/12] Ups, i forgot to add the headbutt encounters files --- PKHeX/Resources/byte/encunters_hb_hg.pkl | Bin 0 -> 25736 bytes PKHeX/Resources/byte/encunters_hb_ss.pkl | Bin 0 -> 25736 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 PKHeX/Resources/byte/encunters_hb_hg.pkl create mode 100644 PKHeX/Resources/byte/encunters_hb_ss.pkl diff --git a/PKHeX/Resources/byte/encunters_hb_hg.pkl b/PKHeX/Resources/byte/encunters_hb_hg.pkl new file mode 100644 index 0000000000000000000000000000000000000000..339ecbdc2a561c387a66949ad6296ce4af4eaf18 GIT binary patch literal 25736 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 G>3;$DxASKJ literal 0 HcmV?d00001 From 4252438e75cabf7e8182bdb09f0dc7fe71cb8f09 Mon Sep 17 00:00:00 2001 From: javierhimura Date: Sun, 19 Mar 2017 16:53:37 +0100 Subject: [PATCH 12/12] Fix honeey trees encounter species --- PKHeX/Legality/Tables4.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKHeX/Legality/Tables4.cs b/PKHeX/Legality/Tables4.cs index 8e11b1c88..6efb25ac5 100644 --- a/PKHeX/Legality/Tables4.cs +++ b/PKHeX/Legality/Tables4.cs @@ -479,7 +479,7 @@ public static partial class Legal new EncounterSlot { Species = 190, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Aipom new EncounterSlot { Species = 214, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Heracross new EncounterSlot { Species = 265, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Wurmple - new EncounterSlot { Species = 412, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Burmy + new EncounterSlot { Species = 412, LevelMin = 5, LevelMax = 15, Form = 0, Type = SlotType.HoneyTree }, // Burmy Plant Cloak new EncounterSlot { Species = 415, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Combee new EncounterSlot { Species = 420, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Cheruby new EncounterSlot { Species = 446, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Munchlax @@ -499,7 +499,7 @@ public static partial class Legal { Slots = SlotsPt_HoneyTree.Slots.Concat(new EncounterSlot[] { - new EncounterSlot { Species = 267, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Cascoon + new EncounterSlot { Species = 268, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Cascoon }).ToArray() };