BEGIN TRANSACTION ;
CREATE TABLE IF NOT EXISTS provinces (
" id " TEXT ,
" name " TEXT ,
" development " TEXT ,
" BT " TEXT ,
" BP " TEXT ,
" BM " TEXT ,
" trade_good " TEXT ,
" trade_node " TEXT ,
" modifiers " TEXT ,
" typ " TEXT ,
" continent " TEXT ,
" superregion " TEXT ,
" region " TEXT ,
" area " TEXT ,
UNIQUE ( id , ' name ' )
) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1 ' , ' Stockholm ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Baltic Sea ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Östra Svealand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2 ' , ' Östergötland ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Östra Götaland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 3 ' , ' Kalmar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Östra Götaland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4 ' , ' Bergslagen ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Östra Svealand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 5 ' , ' Värmland ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Västra Svealand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 6 ' , ' Lund ' , ' 20 ' , ' 7 ' , ' 7 ' , ' 6 ' , ' ' , ' Lübeck ' , ' Skåne Market ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Skåneland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 7 ' , ' Skaraborg ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Västra Götaland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 8 ' , ' Dalaskogen ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' Stora Kopparberget ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Västra Svealand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 9 ' , ' Hälsingland ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Norrland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 10 ' , ' Jämtland ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Trøndelag ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 11 ' , ' Västerbotten ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Norrland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 12 ' , ' Sjælland ' , ' 20 ' , ' 8 ' , ' 8 ' , ' 4 ' , ' ' , ' Lübeck ' , ' Sound Toll ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Denmark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 13 ' , ' Slesvig ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Schleswig-Holstein ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 14 ' , ' Fyn ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Denmark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 15 ' , ' Vestjylland ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' North Jutland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 16 ' , ' Bohuslän ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Västra Götaland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 17 ' , ' Akershus ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lübeck ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Østlandet ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 18 ' , ' Lappland ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Norrland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 19 ' , ' Österbotten ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Ostrobothnia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 20 ' , ' Trøndelag ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Trøndelag ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 21 ' , ' Hålogaland ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Trøndelag ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 22 ' , ' Opplanda ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Østlandet ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 23 ' , ' Bergenhus ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' North Sea ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Vestlandet ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 24 ' , ' Stavanger ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Vestlandet ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 25 ' , ' Gotland ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Östra Götaland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 26 ' , ' Halland ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Skåneland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 27 ' , ' Åbo ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Finland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 28 ' , ' Nyland ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Finland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 29 ' , ' Tavastland ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Finland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 30 ' , ' Viborg ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' South Karelia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 31 ' , ' Savolax ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Finland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 32 ' , ' Kexholm ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' North Karelia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 33 ' , ' Neva ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Novgorod ' , replace ( ' Natural Harbor\nNeva Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' South Karelia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 34 ' , ' Ingermanland ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' South Karelia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 35 ' , ' Ösel ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Curonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 36 ' , ' Reval ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Estonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 37 ' , ' Livland ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Livonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 38 ' , ' Riga ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Baltic Sea ' , replace ( ' Natural Harbor\nDaugava Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Livonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 39 ' , ' Goldingen ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Curonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 40 ' , ' Memel ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Baltic Sea ' , ' Neman Estuary ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' East Prussia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 41 ' , ' Königsberg ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Baltic Sea ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' East Prussia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 42 ' , ' Warmia ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' East Prussia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 43 ' , ' Danzig ' , ' 16 ' , ' 7 ' , ' 7 ' , ' 2 ' , ' ' , ' Baltic Sea ' , replace ( ' Entrepot\nVistula Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' West Prussia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 44 ' , ' Hamburg ' , ' 19 ' , ' 7 ' , ' 7 ' , ' 5 ' , ' ' , ' Lübeck ' , replace ( ' Entrepot\nElbe Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lower Saxony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 45 ' , ' Lübeck ' , ' 17 ' , ' 7 ' , ' 7 ' , ' 3 ' , ' ' , ' Lübeck ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mecklenburg ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 46 ' , ' Rostock ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mecklenburg ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 47 ' , ' Stralsund ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lübeck ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Vorpommern ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 48 ' , ' Kolberg ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Hinterpommern ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 49 ' , ' Neumark ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Neumark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 50 ' , ' Berlin ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Saxony ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mittelmark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 51 ' , ' Ruppin ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mittelmark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 52 ' , ' Magdeburg ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Saxony ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Saxony-Anhalt ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 53 ' , ' Lüneburg ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lower Saxony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 54 ' , ' Stade ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Weser ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 55 ' , ' Oldenburg ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Weser ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 56 ' , ' Osnabrück ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' North Westphalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 57 ' , ' Brunswick ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Braunschweig ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 58 ' , ' Anhalt ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Saxony-Anhalt ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 59 ' , ' Wittenberg ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Saxony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 60 ' , ' Bautzen ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lusatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 61 ' , ' Dresden ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Saxony ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Saxony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 62 ' , ' Leipzig ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Saxony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 63 ' , ' Erfurt ' , ' 12 ' , ' 5 ' , ' 4 ' , ' 3 ' , ' ' , ' Saxony ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Thuringia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 64 ' , ' Landshut ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Lower Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 65 ' , ' München ' , ' 15 ' , ' 6 ' , ' 5 ' , ' 4 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Upper Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 66 ' , ' Bamberg ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Upper Franconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 67 ' , ' Nürnberg ' , ' 19 ' , ' 8 ' , ' 8 ' , ' 3 ' , ' ' , ' Rheinland ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Upper Franconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 68 ' , ' Memmingen ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' East Swabia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 69 ' , ' Dortmund ' , ' 12 ' , ' 6 ' , ' 5 ' , ' 1 ' , ' ' , ' Rheinland ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' North Westphalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 70 ' , ' Stuttgart ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' West Swabia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 71 ' , ' Ansbach ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Lower Franconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 72 ' , ' Breisgau ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Baden ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 73 ' , ' Inntal ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Tirol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 74 ' , ' Baden ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Baden ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 75 ' , ' Straßburg ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Rheinland ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Alsace ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 76 ' , ' Salzburg ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Wien ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' East Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 77 ' , ' Heidelberg ' , ' 13 ' , ' 5 ' , ' 4 ' , ' 4 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Palatinate ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 78 ' , ' Mainz ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Rheinland ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Hesse ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 79 ' , ' Würzburg ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Lower Franconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 80 ' , ' Trier ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lower Rhineland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 81 ' , ' Oberhessen ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Hesse ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 82 ' , ' Westfalen ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' South Westphalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 83 ' , ' Nassau ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' North Rhine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 84 ' , ' Berg ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' North Rhine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 85 ' , ' Köln ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Rheinland ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' North Rhine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 86 ' , ' Münster ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' North Westphalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 87 ' , ' Calais ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' English Channel ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Picardy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 88 ' , ' Artois ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Picardy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 89 ' , ' Picardie ' , ' 17 ' , ' 6 ' , ' 6 ' , ' 5 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Picardy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 90 ' , ' Bruges ' , ' 18 ' , ' 7 ' , ' 7 ' , ' 4 ' , ' ' , ' English Channel ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Flanders ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 91 ' , ' Hainaut ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Wallonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 92 ' , ' Brussels ' , ' 18 ' , ' 7 ' , ' 7 ' , ' 4 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' South Brabant ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 93 ' , ' Liège ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Wallonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 94 ' , ' Luxemburg ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Wallonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 95 ' , ' Breda ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' North Brabant ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 96 ' , ' Zeeland ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Holland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 97 ' , ' Amsterdam ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' English Channel ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Holland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 98 ' , ' Utrecht ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Holland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 99 ' , ' Gelre ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Frisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 100 ' , ' Friesland ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Frisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 101 ' , ' Genoa ' , ' 25 ' , ' 10 ' , ' 10 ' , ' 5 ' , ' ' , ' Genoa ' , ' World Port ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Liguria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 102 ' , ' Nice ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Liguria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 103 ' , ' Turin ' , ' 17 ' , ' 7 ' , ' 7 ' , ' 3 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Piedmont ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 104 ' , ' Milan ' , ' 21 ' , ' 8 ' , ' 7 ' , ' 6 ' , ' ' , ' Genoa ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Lombardy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 105 ' , ' Parma ' , ' 15 ' , ' 6 ' , ' 5 ' , ' 4 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Emilia-Romagna ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 106 ' , ' Modena ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Emilia-Romagna ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 107 ' , ' Brescia ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Po Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 108 ' , ' Verona ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Venice ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Venetia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 109 ' , ' Mantua ' , ' 19 ' , ' 8 ' , ' 8 ' , ' 3 ' , ' ' , ' Venice ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Po Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 110 ' , ' Trentino ' , ' 8 ' , ' 4 ' , ' 3 ' , ' 1 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Tirol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 111 ' , ' Friuli ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Venetia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 112 ' , ' Venezia ' , ' 27 ' , ' 10 ' , ' 12 ' , ' 5 ' , ' ' , ' Venice ' , ' World Port ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Venetia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 113 ' , ' Ferrara ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Venice ' , ' Po Estuary ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Emilia-Romagna ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 114 ' , ' Ravenna ' , ' 11 ' , ' 4 ' , ' 5 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Emilia-Romagna ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 115 ' , ' Pisa ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Genoa ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Tuscany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 116 ' , ' Firenze ' , ' 28 ' , ' 10 ' , ' 12 ' , ' 6 ' , ' ' , ' Genoa ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Tuscany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 117 ' , ' Siena ' , ' 20 ' , ' 8 ' , ' 8 ' , ' 4 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Tuscany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 118 ' , ' Roma ' , ' 25 ' , ' 9 ' , ' 9 ' , ' 7 ' , ' ' , ' Genoa ' , replace ( ' Religious Center\nThe Conquest of Rome\nNatural Harbor ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Lazio-Umbria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 119 ' , ' Ancona ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Marche-Abruzzo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 120 ' , ' Abruzzi ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Marche-Abruzzo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 121 ' , ' Napoli ' , ' 22 ' , ' 8 ' , ' 8 ' , ' 6 ' , ' ' , ' Genoa ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Campania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 122 ' , ' Salento ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Apulia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 123 ' , ' Calabria ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Calabria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 124 ' , ' Messina ' , ' 17 ' , ' 6 ' , ' 6 ' , ' 5 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Eastern Sicily ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 125 ' , ' Palermo ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Genoa ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Western Sicily ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 126 ' , ' Malta ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Eastern Sicily ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 127 ' , ' Sassari ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Western Mediterranean Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 128 ' , ' Unterkärnten ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Inner Austria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 129 ' , ' Krain ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Carniola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 130 ' , ' Istria ' , ' 8 ' , ' 2 ' , ' 3 ' , ' 3 ' , ' ' , ' Venice ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Carniola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 131 ' , ' Zagreb ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Croatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 132 ' , ' Steiermark ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Inner Austria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 133 ' , ' Ob der Enns ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Austria Proper ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 134 ' , ' Wien ' , ' 18 ' , ' 6 ' , ' 6 ' , ' 6 ' , ' ' , ' Wien ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Austria Proper ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 135 ' , ' Sopron ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Transdanubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 136 ' , ' Split ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Dalmatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 137 ' , ' Ragusa ' , ' 14 ' , ' 5 ' , ' 6 ' , ' 3 ' , ' ' , ' Ragusa ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Dalmatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 138 ' , ' Zeta ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Rascia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 139 ' , ' Hum ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bosnia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 140 ' , ' Bosnia ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bosnia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 141 ' , ' Smederevo ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Serbia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 142 ' , ' Corfu ' , ' 6 ' , ' 2 ' , ' 1 ' , ' 3 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Northern Greece ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 143 ' , ' Vlorë ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Albania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 144 ' , ' Epirus ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Northern Greece ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 145 ' , ' Morea ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Morea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 146 ' , ' Athens ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Ragusa ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Morea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 147 ' , ' Thessaly ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Northern Greece ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 148 ' , ' Macedonia ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Ragusa ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Macedonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 149 ' , ' Edirne ' , ' 14 ' , ' 6 ' , ' 5 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Thrace ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 150 ' , ' Nikopol ' , ' 8 ' , ' 2 ' , ' 4 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bulgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 151 ' , ' Constantinople ' , ' 20 ' , ' 8 ' , ' 8 ' , ' 4 ' , ' ' , ' Constantinople ' , replace ( ' Bosphorus Sound Toll\nEntrepot ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Thrace ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 152 ' , ' Varasd ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Slavonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 153 ' , ' Pest ' , ' 11 ' , ' 5 ' , ' 4 ' , ' 2 ' , ' ' , ' Pest ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Transdanubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 154 ' , ' Hont ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Slovakia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 155 ' , ' Békés ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Alföld ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 156 ' , ' Temes ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Southern Transylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 157 ' , ' Bihar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Northern Transylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 158 ' , ' Maros ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Northern Transylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 159 ' , ' Silistria ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Silistria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 160 ' , ' Oltenia ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Wallachia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 161 ' , ' Tîrgoviste ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Pest ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Wallachia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 162 ' , ' Zemplén ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Slovakia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 163 ' , ' Crete ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Morea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 164 ' , ' Naxos ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aegean Archipelago ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 165 ' , ' Bern ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Champagne ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Romandie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 166 ' , ' Waldstätte ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Switzerland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 167 ' , ' Caux ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' English Channel ' , ' Seine Estuary ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Normandy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 168 ' , ' Caen ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Normandy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 169 ' , ' Armor ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Brittany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 170 ' , ' Finistère ' , ' 10 ' , ' 3 ' , ' 3 ' , ' 4 ' , ' ' , ' Bordeaux ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Brittany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 171 ' , ' Vannetais ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Brittany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 172 ' , ' Nantais ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Bordeaux ' , ' Loire Estuary ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Brittany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 173 ' , ' Labourd ' , ' 10 ' , ' 3 ' , ' 3 ' , ' 4 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Gascony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 174 ' , ' Bordeaux ' , ' 21 ' , ' 8 ' , ' 8 ' , ' 5 ' , ' ' , ' Bordeaux ' , replace ( ' Natural Harbor\nGironde Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Guyenne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 175 ' , ' Armagnac ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Gascony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 176 ' , ' Béarn ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Gascony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 177 ' , ' Maine ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Loire Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 178 ' , ' Anjou ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Loire Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 179 ' , ' Berry ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Orléanais ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 180 ' , ' Haut-Poitou ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Poitou ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 181 ' , ' Rethel ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Champagne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 182 ' , ' Valois ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Île-de-France ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 183 ' , ' Paris ' , ' 23 ' , ' 8 ' , ' 8 ' , ' 7 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Île-de-France ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 184 ' , ' Orleanais ' , ' 17 ' , ' 6 ' , ' 6 ' , ' 5 ' , ' ' , ' Champagne ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Orléanais ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 185 ' , ' Nemours ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Île-de-France ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 186 ' , ' Reims ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Champagne ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Champagne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 187 ' , ' Barrois ' , ' 10 ' , ' 3 ' , ' 4 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Lorraine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 188 ' , ' Metz ' , ' 17 ' , ' 6 ' , ' 6 ' , ' 5 ' , ' ' , ' Champagne ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Lorraine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 189 ' , ' Lothringen ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Lorraine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 190 ' , ' Bourbonnais ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Auvergne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 191 ' , ' Nivernais ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Western Burgundy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 192 ' , ' Dijonnais ' , ' 20 ' , ' 7 ' , ' 7 ' , ' 6 ' , ' ' , ' Champagne ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Eastern Burgundy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 193 ' , ' Franche-Comté ' , ' 10 ' , ' 3 ' , ' 4 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Eastern Burgundy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 194 ' , ' Périgord ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Guyenne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 195 ' , ' Limousin ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Auvergne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 196 ' , ' Toulouse ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Languedoc ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 197 ' , ' Roussillon ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Catalonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 198 ' , ' Rouergue ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Guyenne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 199 ' , ' Auvergne ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Auvergne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 200 ' , ' Montpellier ' , ' 16 ' , ' 6 ' , ' 5 ' , ' 5 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Languedoc ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 201 ' , ' Aix ' , ' 20 ' , ' 7 ' , ' 7 ' , ' 6 ' , ' ' , ' Genoa ' , replace ( ' Natural Harbor\nRhône Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Provence ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 202 ' , ' Avignon ' , ' 11 ' , ' 4 ' , ' 3 ' , ' 4 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Provence ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 203 ' , ' Lyonnais ' , ' 18 ' , ' 6 ' , ' 6 ' , ' 6 ' , ' ' , ' Champagne ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Savoy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 204 ' , ' Dauphiné ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Savoy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 205 ' , ' Chambery ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Savoy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 206 ' , ' Corunna ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Galicia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 207 ' , ' Asturias ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Asturias ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 208 ' , ' León ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Sevilla ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Leon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 209 ' , ' Vizcaya ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Vasconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 210 ' , ' Navarra ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Vasconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 211 ' , ' Huesca ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Aragon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 212 ' , ' Girona ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Catalonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 213 ' , ' Barcelona ' , ' 14 ' , ' 6 ' , ' 5 ' , ' 3 ' , ' ' , ' Valencia ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Catalonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 214 ' , ' Zaragoza ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Valencia ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Aragon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 215 ' , ' Valladolid ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Castille ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 216 ' , ' Salamanca ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Leon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 217 ' , ' Madrid ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Castille ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 218 ' , ' Badajoz ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Extremadura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 219 ' , ' Toledo ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Sevilla ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Toledo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 220 ' , ' València ' , ' 15 ' , ' 6 ' , ' 5 ' , ' 4 ' , ' ' , ' Valencia ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Valencia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 221 ' , ' Murcia ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Toledo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 222 ' , ' Almería ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Upper Andalucia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 223 ' , ' Granada ' , ' 14 ' , ' 6 ' , ' 4 ' , ' 4 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Upper Andalucia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 224 ' , ' Sevilla ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Sevilla ' , replace ( ' Entrepot\nGuadalquivir Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Lower Andalucia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 225 ' , ' Córdoba ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Lower Andalucia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 226 ' , ' Gibraltar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Upper Andalucia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 227 ' , ' Lisboa ' , ' 16 ' , ' 6 ' , ' 7 ' , ' 3 ' , ' ' , ' Sevilla ' , replace ( ' Entrepot\nTagus Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Alentejo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 228 ' , ' Beira ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Beiras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 229 ' , ' Beja ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Alentejo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 230 ' , ' Algarve ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Alentejo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 231 ' , ' Porto ' , ' 19 ' , ' 7 ' , ' 7 ' , ' 5 ' , ' ' , ' Sevilla ' , replace ( ' Natural Harbor\nDouro Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Beiras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 232 ' , ' Bragança ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Beiras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 233 ' , ' Cornwall ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Wessex ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 234 ' , ' Hampshire ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Wessex ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 235 ' , ' Kent ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' London ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 236 ' , ' London ' , ' 20 ' , ' 7 ' , ' 7 ' , ' 6 ' , ' ' , ' English Channel ' , replace ( ' Entrepot\nThames Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' London ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 237 ' , ' Oxford ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' London ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 238 ' , ' Essex ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' East Anglia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 239 ' , ' Gloucester ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' English Channel ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' West Midlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 240 ' , ' Shrewsbury ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' West Midlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 241 ' , ' Glamorgan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Wales ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 242 ' , ' Gwynedd ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Wales ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 243 ' , ' Lincolnshire ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' English Channel ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' East Midlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 244 ' , ' Lancashire ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Northern England ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 245 ' , ' York ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' English Channel ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Yorkshire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 246 ' , ' Northumberland ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Northern England ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 247 ' , ' Cumbria ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Northern England ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 248 ' , ' Lothian ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' North Sea ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 249 ' , ' Ayrshire ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' North Sea ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 250 ' , ' Perth ' , ' 10 ' , ' 3 ' , ' 3 ' , ' 4 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Highlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 251 ' , ' Aberdeen ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 252 ' , ' Inverness ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Highlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 253 ' , ' Outer Hebrides ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' The Isles ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 254 ' , ' Poznan ' , ' 17 ' , ' 6 ' , ' 6 ' , ' 5 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Wielkopolska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 255 ' , ' Kalisz ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Wielkopolska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 256 ' , ' Plock ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Mazovia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 257 ' , ' Warszawa ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Krakow ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Mazovia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 258 ' , ' Sieradz ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Central Poland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 259 ' , ' Sandomierz ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Sandomierz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 260 ' , ' Lublin ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Krakow ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Sandomierz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 261 ' , ' Halicz ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Red Ruthenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 262 ' , ' Krakow ' , ' 20 ' , ' 7 ' , ' 7 ' , ' 6 ' , ' ' , ' Krakow ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Malopolska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 263 ' , ' Ratibor ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Silesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 264 ' , ' Breslau ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Krakow ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Silesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 265 ' , ' Brno ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Moravia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 266 ' , ' Prague ' , ' 22 ' , ' 8 ' , ' 8 ' , ' 6 ' , ' ' , ' Saxony ' , replace ( ' Religious Center\nMarket Town ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Bohemia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 267 ' , ' Plzen ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Erzgebirge ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 268 ' , ' Suceava ' , ' 11 ' , ' 5 ' , ' 4 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Moldavia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 269 ' , ' Podlasie ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Podlasie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 270 ' , ' Trakai ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Samogitia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 271 ' , ' Samogitia ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Samogitia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 272 ' , ' Vilna ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Kiev ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Aukstaitija ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 273 ' , ' Latgalia ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Livonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 274 ' , ' Pskov ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Novgorod ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Pskov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 275 ' , ' Polotsk ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Pskov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 276 ' , ' Minsk ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Minsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 277 ' , ' Brest ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Podlasie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 278 ' , ' Pinsk ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Pripyat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 279 ' , ' Volhynia ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Volhynia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 280 ' , ' Kiev ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Kiev ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' West Dniepr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 281 ' , ' Podolia ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Podolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 282 ' , ' Yedisan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Crimea ' , ' Dnestr Estuary ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Yedisan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 283 ' , ' Zaporozhia ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Zaporizhia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 284 ' , ' Crimea ' , ' 18 ' , ' 6 ' , ' 6 ' , ' 6 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Crimea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 285 ' , ' Caffa ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Crimea ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Crimea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 286 ' , ' Azov ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Crimea ' , ' Don Estuary ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Azov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 287 ' , ' Kuban ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Azov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 288 ' , ' Lower Don ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Lower Don ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 289 ' , ' Chernigov ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Chernigov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 290 ' , ' Poltava ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' East Dniepr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 291 ' , ' Kharkov ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Sloboda Ukraine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 292 ' , ' Mogilev ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' White Ruthenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 293 ' , ' Smolensk ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Kiev ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Smolensk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 294 ' , ' Tver ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Tver ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 295 ' , ' Moskva ' , ' 17 ' , ' 6 ' , ' 6 ' , ' 5 ' , ' ' , ' Novgorod ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Moscow ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 296 ' , ' Kaluga ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Oka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 297 ' , ' Bryansk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Smolensk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 298 ' , ' Kursk ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Sloboda Ukraine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 299 ' , ' Voronezh ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Sloboda Ukraine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 300 ' , ' Tula ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Oka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 301 ' , ' Ryazan ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Ryazan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 302 ' , ' Tambov ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Tambov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 303 ' , ' Saratov ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Saratov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 304 ' , ' Penza ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Tambov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 305 ' , ' Perm ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Kama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 306 ' , ' Nizhny Novgorod ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Kazan ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Galich ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 307 ' , ' Vladimir ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Vladimir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 308 ' , ' Yaroslavl ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Novgorod ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Yaroslavl ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 309 ' , ' Olonets ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' North Karelia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 310 ' , ' Novgorod ' , ' 20 ' , ' 7 ' , ' 7 ' , ' 6 ' , ' ' , ' Novgorod ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Novgorod ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 311 ' , ' Kholm ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Novgorod ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 312 ' , ' Beloozero ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Beloozero ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 313 ' , ' Soroka ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Pomorye ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 314 ' , ' Vologda ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Vologda ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 315 ' , ' Finnmark ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Laponia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 316 ' , ' Kocaeli ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Hüdavendigar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 317 ' , ' Hüdavendigar ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Constantinople ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Hüdavendigar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 318 ' , ' Sugla ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Constantinople ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aydin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 319 ' , ' Mentese ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aydin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 320 ' , ' Rhodes ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aegean Archipelago ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 321 ' , ' Cyprus ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Çukurova ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 322 ' , ' Kütahya ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Germiyan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 323 ' , ' Konya ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Karaman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 324 ' , ' Karaman ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Karaman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 325 ' , ' Kastamonu ' , ' 10 ' , ' 3 ' , ' 5 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Karadeniz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 326 ' , ' Ankara ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Ankara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 327 ' , ' Adana ' , ' 10 ' , ' 3 ' , ' 3 ' , ' 4 ' , ' ' , ' Aleppo ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Çukurova ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 328 ' , ' Sinop ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Constantinople ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Karadeniz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 329 ' , ' Sivas ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Rum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 330 ' , ' Trebizond ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Crimea ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Erzurum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 331 ' , ' Erzurum ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Erzurum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 332 ' , ' Marash ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Dulkadir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 333 ' , ' Mallorca ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Baleares ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 334 ' , ' Tangiers ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Sevilla ' , ' Entrepot ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 335 ' , ' Melilla ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 336 ' , ' Tlemcen ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Safi ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Algiers ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 337 ' , ' Oran ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Barbary Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 338 ' , ' Mitidja ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Safi ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Barbary Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 339 ' , ' Kabylia ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Kabylia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 340 ' , ' Constantine ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Kabylia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 341 ' , ' Tunis ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Tunis ' , ' Entrepot ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tunisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 342 ' , ' Gharb ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Safi ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Gharb ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 343 ' , ' Fez ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Central Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 344 ' , ' Marrakech ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Central Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 345 ' , ' Abda ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Gharb ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 346 ' , ' Tafilalt ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Safi ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tafilalt ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 347 ' , ' Ifni ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Southern Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 348 ' , ' Sus ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Sus ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 349 ' , ' Figuig ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tafilalt ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 350 ' , ' Laghouat ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Ouled Nail ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 351 ' , ' Biskra ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Ouled Nail ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 352 ' , ' Gafsa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 353 ' , ' Tataouine ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Djerba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 354 ' , ' Tripoli ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Tunis ' , ' Entrepot ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tripolitania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 355 ' , ' Sirt ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tripolitania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 356 ' , ' Benghazi ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Alexandria ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Cyrenaica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 357 ' , ' Darnah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Cyrenaica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 358 ' , ' Alexandria ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Alexandria ' , replace ( ' Conquest of Alexandria\nNatural Harbor ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Delta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 359 ' , ' Fayyum ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Vostani ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 360 ' , ' Qus ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Said ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 361 ' , ' Cairo ' , ' 24 ' , ' 9 ' , ' 9 ' , ' 6 ' , ' ' , ' Alexandria ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Bahari ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 362 ' , ' Rosetta ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Alexandria ' , replace ( ' Granary of the Mediterranean\nNatural Harbor\nThe Nile Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Delta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 363 ' , ' Damietta ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Alexandria ' , replace ( ' Granary of the Mediterranean\nThe Nile Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Delta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 364 ' , ' Gaza ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Palestine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 365 ' , ' Sinai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Red Sea Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 366 ' , ' Gran Canaria ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Northern Africa ' , ' Maghreb ' , ' Macaronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 367 ' , ' The Azores ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Northern Africa ' , ' Maghreb ' , ' Macaronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 368 ' , ' Madeira ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Northern Africa ' , ' Maghreb ' , ' Macaronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 369 ' , ' Orkney ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Highlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 370 ' , ' Reykjavik ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' North Atlantic Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 371 ' , ' Akureyri ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' North Atlantic Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 372 ' , ' Tyrone ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Ulster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 373 ' , ' Pale ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Leinster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 374 ' , ' Leinster ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Leinster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 375 ' , ' Limerick ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Connacht ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 376 ' , ' Connaught ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Connacht ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 377 ' , ' Aleppo ' , ' 22 ' , ' 9 ' , ' 9 ' , ' 4 ' , ' ' , ' Aleppo ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Aleppo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 378 ' , ' Tarabulus ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Aleppo ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Syria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 379 ' , ' Jerusalem ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Alexandria ' , replace ( ' Promised Land\nThe Conquest of Jerusalem ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Palestine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 380 ' , ' Al Karak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Transjordan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 381 ' , ' Ajlun ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Transjordan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 382 ' , ' Damascus ' , ' 20 ' , ' 7 ' , ' 7 ' , ' 6 ' , ' ' , ' Aleppo ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Syria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 383 ' , ' Tabuk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Tabuk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 384 ' , ' Medina ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Medina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 385 ' , ' Mecca ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Alexandria ' , replace ( ' Religious Center\nThe Conquest of Mecca ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Mecca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 386 ' , ' Bishah ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Asir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 387 ' , ' Mokha ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' Coffea Arabica ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Tihama al-Yemen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 388 ' , ' Aden ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Gulf of Aden ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Lower Yemen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 389 ' , ' Mukalla ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Hadramut ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 390 ' , ' Sana '' a ' , ' 11 ' , ' 4 ' , ' 3 ' , ' 4 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Upper Yemen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 391 ' , ' Najran ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Asir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 392 ' , ' Al-Arid ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' al-Qasim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 393 ' , ' Jabal Shammar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' An Nafud ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 394 ' , ' Al-Qatif ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Bahrain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 395 ' , ' Qatar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Bahrain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 396 ' , ' Bahrain ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Bahrain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 397 ' , ' Bani Yas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Pirate Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 398 ' , ' Qawasim ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Pirate Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 399 ' , ' Batinah ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Muscat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 400 ' , ' Muscat ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Hormuz ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Muscat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 401 ' , ' Dhofar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Dhofar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 402 ' , ' Qishn ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Mahra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 403 ' , ' Nizwa ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Oman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 404 ' , ' Liwa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Pirate Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 405 ' , ' Tadmor ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Syrian Desert ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 406 ' , ' Haditha ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Iraq Arabi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 407 ' , ' Ar Raqqa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Al Jazira ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 408 ' , ' Basra ' , ' 11 ' , ' 3 ' , ' 3 ' , ' 5 ' , ' ' , ' Basra ' , replace ( ' Natural Harbor\nEuphrates Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Basra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 409 ' , ' Karbala ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Basra ' , ' Religious Center ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Iraq Arabi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 410 ' , ' Baghdad ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Basra ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Iraq Arabi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 411 ' , ' Mosul ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Al Jazira ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 412 ' , ' Ahvaz ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Khuzestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 413 ' , ' Khorramabad ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Luristan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 414 ' , ' Hamadan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Luristan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 415 ' , ' Kirkuk ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Shahrizor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 416 ' , ' Tabriz ' , ' 17 ' , ' 7 ' , ' 7 ' , ' 3 ' , ' ' , ' Persia ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Tabriz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 417 ' , ' Lahijan ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Tabarestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 418 ' , ' Diyarbakir ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Aleppo ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Levant ' , ' Anatolia ' , ' Kurdistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 419 ' , ' Yerevan ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Persia ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Armenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 420 ' , ' Ganja ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Armenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 421 ' , ' Shirvan ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Persia ' , ' Kura Estuary ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Shirvan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 422 ' , ' Imereti ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Imereti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 423 ' , ' Tbilisi ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Crimea ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Kartli-Kakheti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 424 ' , ' Ardabil ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Shirvan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 425 ' , ' Dagestan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Dagestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 426 ' , ' Amol ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Tabarestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 427 ' , ' Qumis ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Iraq-e-Ajam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 428 ' , ' Teheran ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Persia ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Iraq-e-Ajam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 429 ' , ' Isfahan ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Persia ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Isfahan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 430 ' , ' Dashtistan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Gulf Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 431 ' , ' Mogostan ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Hormuz ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Mogostan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 432 ' , ' Kerman ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Kerman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 433 ' , ' Yazd ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Isfahan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 434 ' , ' Quhistan ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Makran ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 435 ' , ' Zaranj ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Sistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 436 ' , ' Birjand ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Birjand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 437 ' , ' Kopet Dag ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Transcaspia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 438 ' , ' Karakum ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Transcaspia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 439 ' , ' Mangyshlak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Transcaspia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 440 ' , ' Qaraqalpak ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Khiva ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 441 ' , ' Khiva ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Samarkand ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Khiva ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 442 ' , ' Bukhara ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Transoxiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 443 ' , ' Ustyurt ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Transcaspia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 444 ' , ' Charjuy ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Merv ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 445 ' , ' Merv ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Samarkand ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Merv ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 446 ' , ' Herat ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Persia ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Herat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 447 ' , ' Kandahar ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Ghor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 448 ' , ' Gazni ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Kabulistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 449 ' , ' Ghor ' , ' 8 ' , ' 2 ' , ' 2 ' , ' 4 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Ghor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 450 ' , ' Balkh ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Balkh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 451 ' , ' Kabul ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Lahore ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Kabulistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 452 ' , ' Badakhshan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Kabulistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 453 ' , ' Qarshi ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Transoxiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 454 ' , ' Samarkand ' , ' 21 ' , ' 7 ' , ' 7 ' , ' 7 ' , ' ' , ' Samarkand ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Transoxiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 455 ' , ' Kyzylkum ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kyzylkum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 456 ' , ' Turkestan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Syr Darya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 457 ' , ' Tashkent ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Arys ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 458 ' , ' Kokand ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Ferghana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 459 ' , ' Taraz ' , ' 5 ' , ' 1 ' , ' 1 ' , ' 3 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Jetysuu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 460 ' , ' Uzkend ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Ferghana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 461 ' , ' Almaty ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Jetysuu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 462 ' , ' Odishi ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Crimea ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Imereti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 463 ' , ' Circassia ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Circassia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 464 ' , ' Astrakhan ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Astrakhan ' , ' Volga Estuary ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Astrakhan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 465 ' , ' Nogay ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Nogai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 466 ' , ' Sarai ' , ' 17 ' , ' 6 ' , ' 6 ' , ' 5 ' , ' ' , ' Astrakhan ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Astrakhan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 467 ' , ' Borisoglebsk ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Lower Don ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 468 ' , ' Manych ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Astrakhan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 469 ' , ' Ryn ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Lower Yik ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 470 ' , ' Bayuly ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Nogai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 471 ' , ' Alimuly ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Nogai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 472 ' , ' Zhetyru ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Nogai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 473 ' , ' Samara ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Samara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 474 ' , ' Yaik ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Lower Yik ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 475 ' , ' Bashkortostan ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Bashkiria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 476 ' , ' Kypshak ' , ' 18 ' , ' 6 ' , ' 6 ' , ' 6 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kazakhstan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 477 ' , ' Nadym ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Balchash ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 478 ' , ' Argyn ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Balchash ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 479 ' , ' Kerey ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Aqmola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 480 ' , ' Pegaya Orda ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Ob ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 481 ' , ' Bermuda ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Greater Antilles ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 482 ' , ' Bahamas ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Lucayan Archipelago ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 483 ' , ' Turks Islands ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Lucayan Archipelago ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 484 ' , ' Havana ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' West Cuba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 485 ' , ' Moron ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' West Cuba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 486 ' , ' Guantanamo ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' East Cuba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 487 ' , ' Jamaica ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Greater Antilles ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 488 ' , ' Zui ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Haiti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 489 ' , ' Tortuga ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Haiti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 490 ' , ' Bani ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Dominica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 491 ' , ' Aruba ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Greater Antilles ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 492 ' , ' Borikén ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Greater Antilles ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 493 ' , ' St. Thomas ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Leeward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 494 ' , ' St. Kitts ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Leeward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 495 ' , ' Antigua ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Leeward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 496 ' , ' Guadelupe ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Leeward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 497 ' , ' Dominica ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Windward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 498 ' , ' Martinique ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Windward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 499 ' , ' St. Lucia ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Windward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 500 ' , ' St. Vincent ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Windward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 501 ' , ' Barbados ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Windward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 502 ' , ' Trinidad ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 503 ' , ' Kutch ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Patan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 504 ' , ' Thatta ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Gujarat ' , ' Indus Estuary ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Southern Sindh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 505 ' , ' Sehwan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Northern Sindh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 506 ' , ' Multan ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Lahore ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Multan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 507 ' , ' Lahore ' , ' 23 ' , ' 10 ' , ' 10 ' , ' 3 ' , ' ' , ' Lahore ' , ' Market Town ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Lahore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 508 ' , ' Kashmir ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Kashmir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 509 ' , ' Kangra ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Himalayan Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 510 ' , ' Sirhind ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Lahore ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Sirhind ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 511 ' , ' Garhwal ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Himalayan Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 512 ' , ' Jangladesh ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Jangladesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 513 ' , ' Jaisalmer ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Marwar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 514 ' , ' Marwar ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Marwar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 515 ' , ' Girnar ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Saurashtra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 516 ' , ' Baroda ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Ahmedabad ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 517 ' , ' Surat ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Gujarat ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Tapti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 518 ' , ' Chittor ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Mewar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 519 ' , ' Dhundar ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Doab ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Jaipur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 520 ' , ' Mewat ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Jaipur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 521 ' , ' Rajkot ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Saurashtra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 522 ' , ' Delhi ' , ' 22 ' , ' 9 ' , ' 9 ' , ' 4 ' , ' ' , ' Doab ' , ' Market Town ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Upper Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 523 ' , ' Lucknow ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Oudh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 524 ' , ' Central Doab ' , ' 24 ' , ' 10 ' , ' 10 ' , ' 4 ' , ' ' , ' Doab ' , ' Market Town ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Lower Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 525 ' , ' Gird ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Gird ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 526 ' , ' Mandu ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Malwa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 527 ' , ' Burhanpur ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Deccan ' , ' Market Town ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Khandesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 528 ' , ' Hadoti ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Gird ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 529 ' , ' Thana ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Gujarat ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Konkan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 530 ' , ' Dabhol ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Konkan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 531 ' , ' North Kanara ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Kanara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 532 ' , ' Raichur ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Raichur Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 533 ' , ' Mysore ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Mysore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 534 ' , ' Calicut ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Malabar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 535 ' , ' Kochin ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Malabar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 536 ' , ' Madurai ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Coromandel ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Madura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 537 ' , ' Venad ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Malabar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 538 ' , ' Kongu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Kongu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 539 ' , ' Tondainadu ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Coromandel ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' South Carnatic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 540 ' , ' Cuddalore ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Coromandel ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' South Carnatic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 541 ' , ' Vijayanagar ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Coromandel ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Rayalaseema ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 542 ' , ' Golconda ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Deccan ' , replace ( ' Diamonds of Golconda\nEmporium ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' South Telingana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 543 ' , ' Velanadu ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Coromandel ' , replace ( ' Natural Harbor\nKrishna Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Andhra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 544 ' , ' Ahmadnagar ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Ahmednagar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 545 ' , ' Daulatabad ' , ' 8 ' , ' 4 ' , ' 3 ' , ' 1 ' , ' ' , ' Deccan ' , ' Market Town ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Ahmednagar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 546 ' , ' East Berar ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Berar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 547 ' , ' Bastar ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Garjat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 548 ' , ' Illichpur ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Berar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 549 ' , ' Kalingandhra ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Andhra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 550 ' , ' Mahakoshal ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Gondwana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 551 ' , ' Mandla ' , ' 8 ' , ' 3 ' , ' 2 ' , ' 3 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Gondwana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 552 ' , ' Cuttack ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Bengal ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Orissa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 553 ' , ' Sambalpur ' , ' 8 ' , ' 2 ' , ' 3 ' , ' 3 ' , ' ' , ' Bengal ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Upper Mahanadi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 554 ' , ' Baisi Rajya ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Baisi Rajya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 555 ' , ' Jaunpur ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Purvanchal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 556 ' , ' Lower Doab ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Doab ' , ' Market Town ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Lower Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 557 ' , ' Katmandu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lhasa ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Nepal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 558 ' , ' Pataliputra ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Bengal ' , replace ( ' The Conquest of Bodh Gaya\nMarket Town ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Bihar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 559 ' , ' Jhansi ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Bundelkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 560 ' , ' Jharkhand ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Jharkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 561 ' , ' Bengal Delta ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Bengal ' , replace ( ' Natural Harbor\nGanges Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' West Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 562 ' , ' Koch ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' North Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 563 ' , ' Gauda ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Bengal ' , ' Market Town ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Gaur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 564 ' , ' Dhaka ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Bengal ' , replace ( ' Natural Harbor\nGanges Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' East Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 565 ' , ' Paro ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Bhutan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 566 ' , ' Assam ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Assam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 567 ' , ' Silhet ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Tripura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 568 ' , ' Chittagong ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Bengal ' , ' World Port ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Rakhine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 569 ' , ' Bijapur ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Deccan ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Maidan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 570 ' , ' Naga ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Naga Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 571 ' , ' Darrang ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Assam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 572 ' , ' Kotte ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Coromandel ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' South Lanka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 573 ' , ' Cachar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Naga Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 574 ' , ' The Andamans ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Indian Ocean Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 575 ' , ' Gwadar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Makran ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 576 ' , ' Kalat ' , ' 10 ' , ' 3 ' , ' 3 ' , ' 4 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Kalat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 577 ' , ' Quetta ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Kalat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 578 ' , ' Roh ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Lahore ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Kabulistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 579 ' , ' Mrauk U ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Bengal ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Rakhine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 580 ' , ' Kale ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Chindwin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 581 ' , ' Sagaing ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Upper Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 582 ' , ' Mong Yang ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Kachin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 583 ' , ' Hsenwi ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Shan Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 584 ' , ' Ava ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Burma ' , ' Market Town ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Upper Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 585 ' , ' Taungoo ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Central Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 586 ' , ' Pegu ' , ' 12 ' , ' 5 ' , ' 4 ' , ' 3 ' , ' ' , ' Burma ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Lower Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 587 ' , ' Kengtung ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Karenni ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 588 ' , ' Mong Nai ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Shan Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 589 ' , ' Chiang Mai ' , ' 17 ' , ' 7 ' , ' 5 ' , ' 5 ' , ' ' , ' Siam ' , ' The Emerald Buddha ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Chiang Mai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 590 ' , ' Martaban ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Lower Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 591 ' , ' Tavoy ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' North Tenasserim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 592 ' , ' Ratchaburi ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' North Tenasserim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 593 ' , ' Nakhon Si Thammarat ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Central Tenasserim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 594 ' , ' Pattani ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Malacca ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' North Malaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 595 ' , ' Perak ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Malacca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 596 ' , ' Malacca ' , ' 17 ' , ' 7 ' , ' 7 ' , ' 3 ' , ' ' , ' Malacca ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Malacca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 597 ' , ' Johor ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Johor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 598 ' , ' Pahang ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Malaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 599 ' , ' Kelantan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Malaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 600 ' , ' Ayutthaya ' , ' 20 ' , ' 8 ' , ' 8 ' , ' 4 ' , ' ' , ' Siam ' , ' Market Town ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Central Thailand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 601 ' , ' Sukhothai ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sukhothai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 602 ' , ' Chiang Rai ' , ' 12 ' , ' 5 ' , ' 4 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Chiang Mai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 603 ' , ' Nakhon Thung Yai ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Central Thailand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 604 ' , ' Oudong ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Cambodia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 605 ' , ' Prey Nokor ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Mekong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 606 ' , ' Panduranga ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 607 ' , ' Vijaya ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Siam ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 608 ' , ' Attapeu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champasak ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 609 ' , ' Angkor ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Angkor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 610 ' , ' Thanh Hoa ' , ' 15 ' , ' 7 ' , ' 4 ' , ' 4 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Annam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 611 ' , ' Sikhottabong ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Vientiane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 612 ' , ' Khorat ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Khorat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 613 ' , ' Dong Kinh ' , ' 20 ' , ' 9 ' , ' 7 ' , ' 4 ' , ' ' , ' Canton ' , ' Emporium ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sông Hông ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 614 ' , ' Vientiane ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Siam ' , ' Emporium ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Vientiane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 615 ' , ' Luang Prabang ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Luang Prabang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 616 ' , ' Cao Bang ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sông Hông ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 617 ' , ' Kutaraja ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Malacca ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Aceh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 618 ' , ' Riau ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Riau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 619 ' , ' Batak ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Batak ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 620 ' , ' Siak ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Malacca ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Riau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 621 ' , ' Bengkulu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Lampung ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 622 ' , ' Palembang ' , ' 13 ' , ' 6 ' , ' 5 ' , ' 2 ' , ' ' , ' Malacca ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Lampung ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 623 ' , ' Tulangbewang ' , ' 7 ' , ' 1 ' , ' 5 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Lampung ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 624 ' , ' Banten ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Banten ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 625 ' , ' Kawali ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' West Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 626 ' , ' Karta ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Central Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 627 ' , ' Blambangan ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' East Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 628 ' , ' Surabaya ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Surabaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 629 ' , ' Demak ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Surabaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 630 ' , ' Kalapa ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Banten ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 631 ' , ' Bali ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Lesser Sunda Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 632 ' , ' Sumbawa ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Lesser Sunda Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 633 ' , ' Flores ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Timor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 634 ' , ' Sumba ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Lesser Sunda Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 635 ' , ' West Timor ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Timor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 636 ' , ' Brunei ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Malacca ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Brunei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 637 ' , ' Api-Api ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Sabah ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 638 ' , ' Kutai ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kutai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 639 ' , ' Banjar ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Banjar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 640 ' , ' Sambas ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kalimantan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 641 ' , ' Makassar ' , ' 14 ' , ' 5 ' , ' 6 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Makassar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 642 ' , ' Kolaka ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' South Sulawesi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 643 ' , ' Poso ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' North Sulawesi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 644 ' , ' Manado ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' North Sulawesi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 645 ' , ' Buru ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Moluccas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 646 ' , ' Ambon ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Moluccas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 647 ' , ' Ceram ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Moluccas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 648 ' , ' Halmahera ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Spice Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 649 ' , ' Ternate ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Spice Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 650 ' , ' Tidore ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Spice Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 651 ' , ' Sulu ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Philippines ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Palawan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 652 ' , ' Maguindanao ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' West Mindanao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 653 ' , ' Lanao ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' West Mindanao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 654 ' , ' Samar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Visayas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 655 ' , ' Palawan ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Palawan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 656 ' , ' Manila ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Philippines ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Southern Luzon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 657 ' , ' Ilocos ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Northern Luzon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 658 ' , ' Cagayan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Northern Luzon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 659 ' , ' Lingga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Jambi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 660 ' , ' Sibsongbanna ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Frontier ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 661 ' , ' Dali ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Frontier ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 662 ' , ' Yunnan ' , ' 14 ' , ' 6 ' , ' 5 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Hinterland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 663 ' , ' Guangnan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Hinterland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 664 ' , ' Lingyun ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Guangxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 665 ' , ' Shiuhing ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' West Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 666 ' , ' Kingchow ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' West Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 667 ' , ' Canton ' , ' 27 ' , ' 12 ' , ' 12 ' , ' 3 ' , ' ' , ' Canton ' , replace ( ' World Port\nPearl Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' East Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 668 ' , ' Macau ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Canton ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' East Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 669 ' , ' Fuzhou ' , ' 19 ' , ' 8 ' , ' 8 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Fujian ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 670 ' , ' Ganzhou ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Jiangxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 671 ' , ' Changsha ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Hunan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 672 ' , ' Wuling ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Canton ' , ' Emporium ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Hunan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 673 ' , ' Zhenyuan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Hinterland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 674 ' , ' Guiyang ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Hinterland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 675 ' , ' Umung ' , ' 5 ' , ' 1 ' , ' 1 ' , ' 3 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Chuannan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 676 ' , ' Shigatse ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Tsang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 677 ' , ' Lhasa ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Lhasa ' , replace ( ' Conquest of Lhasa\nReligious Center\nMarket Town ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' U ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 678 ' , ' Tachienlu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Kham ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 679 ' , ' Chengdu ' , ' 21 ' , ' 9 ' , ' 9 ' , ' 3 ' , ' ' , ' Chengdu ' , ' Market Town ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Sichuan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 680 ' , ' Chongqing ' , ' 20 ' , ' 8 ' , ' 8 ' , ' 4 ' , ' ' , ' Chengdu ' , ' Emporium ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Sichuan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 681 ' , ' Yichang ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Hubei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 682 ' , ' Wuchang ' , ' 19 ' , ' 8 ' , ' 8 ' , ' 3 ' , ' ' , ' Xi '' an ' , ' Emporium ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Hubei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 683 ' , ' Nanchang ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Jiangxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 684 ' , ' Hangzhou ' , ' 27 ' , ' 12 ' , ' 12 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Zhejiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 685 ' , ' Yangzhou ' , ' 26 ' , ' 12 ' , ' 12 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' South Jiangsu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 686 ' , ' Anqing ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' South Anhui ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 687 ' , ' Nanyang ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' South Henan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 688 ' , ' Kaifeng ' , ' 20 ' , ' 8 ' , ' 8 ' , ' 4 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Henan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 689 ' , ' Hanzhong ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shaanxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 690 ' , ' Qingzhou ' , ' 12 ' , ' 5 ' , ' 4 ' , ' 3 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shandong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 691 ' , ' Jinan ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shandong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 692 ' , ' Huaiqing ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Henan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 693 ' , ' Taiyuan ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shanxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 694 ' , ' Pingyang ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shanxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 695 ' , ' Hejian ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' South Hebei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 696 ' , ' Baoding ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' South Hebei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 697 ' , ' Datong ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shanxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 698 ' , ' Ningxia ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' East Gansu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 699 ' , ' Lanzhou ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' East Gansu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 700 ' , ' Xi '' an ' , ' 17 ' , ' 7 ' , ' 7 ' , ' 3 ' , ' ' , ' Xi '' an ' , ' Market Town ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shaanxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 701 ' , ' Ordos ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Ordos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 702 ' , ' Hohhot ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Inner Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 703 ' , ' Chengde ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Hebei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 704 ' , ' Ningyuan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Liaoning ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 705 ' , ' Gyegu ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Amdo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 706 ' , ' Tsaidam ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Amdo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 707 ' , ' Yumen ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Yumen ' , ' Market Town ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' West Gansu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 708 ' , ' Zhangye ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' West Gansu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 709 ' , ' Alxa ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Ordos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 710 ' , ' Hotan ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Yumen ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Shanshan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 711 ' , ' Qarqan ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Shanshan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 712 ' , ' Aksu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Central Altishahr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 713 ' , ' Bechbaliq ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' South Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 714 ' , ' Hoboksar ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' North Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 715 ' , ' Urumqi ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' South Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 716 ' , ' Tannu Uriankhai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Tannu Uriankhai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 717 ' , ' Kherlen ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Outer Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 718 ' , ' Kobdo ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Kobdo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 719 ' , ' Uliastai ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Uliastai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 720 ' , ' Dornogovi ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Gobi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 721 ' , ' Setsen ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Outer Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 722 ' , ' Jirem ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Chahar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 723 ' , ' Xilin Gol ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Xilin Gol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 724 ' , ' Hulunbuir ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' West Heilongjiangord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 725 ' , ' Cicigar ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Cicigar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 726 ' , ' Shenyang ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Liaoning ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 727 ' , ' Aigun ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Central Heilongjiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 728 ' , ' Tuwan ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Central Heilongjiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 729 ' , ' Bohori ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 730 ' , ' Girin ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Girin ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Jilin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 731 ' , ' Ilan Hala ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 732 ' , ' Hamheung ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Hamgyeong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 733 ' , ' Hwangju ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Western Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 734 ' , ' Wonju ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Eastern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 735 ' , ' Hanseong ' , ' 25 ' , ' 9 ' , ' 10 ' , ' 6 ' , ' ' , ' Nippon ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Western Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 736 ' , ' Sangju ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Eastern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 737 ' , ' Jeonju ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Southern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 738 ' , ' Sakam ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Taiwan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 739 ' , ' Kashgar ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kashgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 740 ' , ' Chanderi ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Gird ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 741 ' , ' Cumana ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Venezuela ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 742 ' , ' Angostura ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Upper Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 743 ' , ' Essequibo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 744 ' , ' Demerara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 745 ' , ' Paramaribo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Suriname ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 746 ' , ' Cayenne ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Suriname ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 747 ' , ' Amapa ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Amapá ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 748 ' , ' Belem ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Grao Para ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 749 ' , ' Maranhao ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Maranhao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 750 ' , ' Crato ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Ceará ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 751 ' , ' Ceara ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Ceará ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 752 ' , ' Oeiras ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Piauí ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 753 ' , ' Rio Grande ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Ceará ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 754 ' , ' Paraiba ' , ' 7 ' , ' 2 ' , ' 4 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Pernambuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 755 ' , ' Pernambuco ' , ' 10 ' , ' 3 ' , ' 5 ' , ' 2 ' , ' ' , ' Brazil ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Pernambuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 756 ' , ' Bahia ' , ' 10 ' , ' 3 ' , ' 5 ' , ' 2 ' , ' ' , ' Brazil ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Bahia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 757 ' , ' Ilheus ' , ' 7 ' , ' 2 ' , ' 4 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Bahia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 758 ' , ' Goias ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Goias ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 759 ' , ' Diamantina ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Diamantina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 760 ' , ' Porto Seguro ' , ' 7 ' , ' 2 ' , ' 4 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Bahia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 761 ' , ' Espirito Santo ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Rio de Janeiro ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 762 ' , ' Sao Tome ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Rio de Janeiro ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 763 ' , ' Rio de Janeiro ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Brazil ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Rio de Janeiro ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 764 ' , ' Santo Amaro ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Rio de Janeiro ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 765 ' , ' Minas Gerais ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Minas Gerais ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 766 ' , ' Sao Vicente ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Sao Paulo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 767 ' , ' Ortelsburg ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' East Prussia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 768 ' , ' Guayra ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Guayra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 769 ' , ' Curitiba ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Sao Paulo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 770 ' , ' Braslaw ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Aukstaitija ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 771 ' , ' Vitebsk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' White Ruthenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 772 ' , ' Uruguay ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Banda Oriental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 773 ' , ' Banda Oriental ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Banda Oriental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 774 ' , ' Al-Junaynah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Central Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 775 ' , ' Asuncion ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' Emporium ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Paraguay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 776 ' , ' Concepcion ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Paraguay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 777 ' , ' Corrientes ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Mesopotamia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 778 ' , ' Rio de la Plata ' , ' 7 ' , ' 4 ' , ' 1 ' , ' 2 ' , ' ' , ' Rio de La Plata ' , replace ( ' Natural Harbor\nParana Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Buenos Aires ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 779 ' , ' Tandil ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Southern Pampas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 780 ' , ' Candelaria ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Bahiá Blanca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 781 ' , ' Puerto Deseado ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Patagonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 782 ' , ' Tierra del Fuego ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Patagonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 783 ' , ' Kawesqar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Southern Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 784 ' , ' Huillimapu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Central Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 785 ' , ' Pehuenmapu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Neheunken ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 786 ' , ' Carmen ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Bahiá Blanca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 787 ' , ' Picunmapu ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Central Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 788 ' , ' Angoche ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mozambique ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 789 ' , ' Mtetwa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Natal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 790 ' , ' Chaco Austral ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Chaco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 791 ' , ' Catamarca ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Tucuman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 792 ' , ' Copiapo ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Northern Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 793 ' , ' Iquique ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Northern Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 794 ' , ' Jujuy ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' Emporium ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Jujuy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 795 ' , ' Potosi ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Cuiaba ' , ' Cerro Rico ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Potosí ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 796 ' , ' Arica ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Northern Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 797 ' , ' Oruro ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Potosí ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 798 ' , ' Mbwila ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 799 ' , ' Chaco Boreal ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Paraguay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 800 ' , ' Chiquitos ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Beni ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 801 ' , ' Cochabamba ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Beni ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 802 ' , ' Chuquiabo ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' Market Town ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Antisuyu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 803 ' , ' Moxos ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Moxos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 804 ' , ' Puno ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Antisuyu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 805 ' , ' Arequipa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Peruan Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 806 ' , ' Nazca ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Peruan Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 807 ' , ' Abancay ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Kuntisuyu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 808 ' , ' Cuzco ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Lima ' , ' Emporium ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Kuntisuyu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 809 ' , ' Lima ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Lima ' , replace ( ' Conquest of Pachacamac\nOracle of Pachacamac\nEntrepot ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Huanuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 810 ' , ' Huancavelica ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Huanuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 811 ' , ' Jauja ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Huanuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 812 ' , ' Chanchan ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Lima ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Chimor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 813 ' , ' Cajamarca ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Cajamarca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 814 ' , ' Huanuco ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Huanuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 815 ' , ' Iquitos ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Iquitos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 816 ' , ' Tumbes ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Quito ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 817 ' , ' Canari ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Quito ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 818 ' , ' Canelos ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Iquitos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 819 ' , ' Guayaquil ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Lima ' , ' Guayas Estuary ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Quito ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 820 ' , ' Quito ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Lima ' , ' Emporium ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Quito ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 821 ' , ' Quijos ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Iquitos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 822 ' , ' Caqueta ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Colombian Amazonas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 823 ' , ' Cauca ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Popayan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 824 ' , ' Mariquita ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Cordillera Occidental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 825 ' , ' Bogota ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Panama ' , ' Emporium ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Bogota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 826 ' , ' Choco ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Popayan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 827 ' , ' Antioquía ' , ' 7 ' , ' 2 ' , ' 4 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Cordillera Occidental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 828 ' , ' Cartagena ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Panama ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Coquivacoa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 829 ' , ' Magdalena ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Coquivacoa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 830 ' , ' Maracaibo ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Maracaibo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 831 ' , ' Caracas ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Venezuela ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 832 ' , ' Tunja ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Bogota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 833 ' , ' Algoa Bay ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Cape of Good Hope ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 834 ' , ' Barinas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Central Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 835 ' , ' Panama ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Amazonia ' , ' Colombia ' , ' Panama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 836 ' , ' Chorotega ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Costa Rica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 837 ' , ' Nicaragua ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Nicaragua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 838 ' , ' Mosquito ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Nicaragua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 839 ' , ' Pipil ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Guatemala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 840 ' , ' Honduras ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Honduras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 841 ' , ' Guatemala ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Guatemala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 842 ' , ' Petén ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Guatemala Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 843 ' , ' Belize ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Guatemala Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 844 ' , ' Zapotec ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Oaxaca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 845 ' , ' Campeche ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Campeche ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 846 ' , ' Sotuta ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' The Conquest of Chichen Itza ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' West Yucatan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 847 ' , ' Mixtec ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Mixteca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 848 ' , ' Tohancapan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Huasteca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 849 ' , ' Tlapanec ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Mixteca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 850 ' , ' Tlaxcala ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Puebla ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 851 ' , ' Zacatula ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Tierra Caliente ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 852 ' , ' Mexico ' , ' 16 ' , ' 7 ' , ' 7 ' , ' 2 ' , ' ' , ' Mexico ' , ' Emporium ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 853 ' , ' Tlapacoyan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Guanajuato ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 854 ' , ' Sayultecas ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Mexico ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Jalisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 855 ' , ' Totorames ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Nayarit ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 856 ' , ' Zacatecas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Zacatecas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 857 ' , ' Guachichil ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Gran Chichimeca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 858 ' , ' Tamaulipas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Tamaulipas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 859 ' , ' Sinaloa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Nayarit ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 860 ' , ' Tepehuan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Durango ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 861 ' , ' Coahuila ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Coahuila ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 862 ' , ' Yaqui ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Sonora ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 863 ' , ' Suma ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Chihuahua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 864 ' , ' Concho ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Chihuahua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 865 ' , ' Cochimi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Baja California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 866 ' , ' Guaycura ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Baja California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 867 ' , ' Cahuilla ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Arizona ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 868 ' , ' Chumash ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Alta California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 869 ' , ' T '' epot '' aha '' l ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Alta California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 870 ' , ' Lakisamni ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Central Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 871 ' , ' Pomo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' North California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 872 ' , ' Shayuusht '' la ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Oregon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 873 ' , ' Tsinuk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' Columbia Estuary ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Columbia River ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 874 ' , ' Duwamish ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Puget Sound ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 875 ' , ' Tachii '' nii ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Colorado Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 876 ' , ' Yavapé ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Arizona ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 877 ' , ' Akimel ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Arizona ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 878 ' , ' Kinyaa '' aanii ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Colorado Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 879 ' , ' Ndee ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Apacheria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 880 ' , ' Ohkay Owingeh ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' Emporium ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' New Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 881 ' , ' Tsiahahéndé ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' New Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 882 ' , ' Mashgaléndé ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Llano Estacado ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 883 ' , ' Tche Sha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Texas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 884 ' , ' Auia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Coastal Prairie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 885 ' , ' Gulgahén ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Llano Estacado ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 886 ' , ' Waco ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Texas Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 887 ' , ' Tickanwa '' tic ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Texas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 888 ' , ' Atakapa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Coastal Prairie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 889 ' , ' Nawunena ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' High Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 890 ' , ' Tokinahyup ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Kansas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 891 ' , ' Naisha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Southern Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 892 ' , ' Kitkit '' ish ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Southern Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 893 ' , ' Chitimacha ' , ' 10 ' , ' 5 ' , ' 3 ' , ' 2 ' , ' ' , ' Mississippi River ' , replace ( ' Natural Harbor\nMississippi Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Louisiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 894 ' , ' Kadohadacho ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Arkansas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 895 ' , ' Anilco ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Arkansas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 896 ' , ' Yscani ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Southern Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 897 ' , ' Casqui ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Arkansas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 898 ' , ' Kanza ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Kansas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 899 ' , ' Pahatsi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Ozarks ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 900 ' , ' Tamaroa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' Emporium ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Upper Louisiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 901 ' , ' Tsawi ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Central Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 902 ' , ' Niuachi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Upper Louisiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 903 ' , ' Omaha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Central Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 904 ' , ' Wahpetunwan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Minnesota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 905 ' , ' Baxoje ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Iowa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 906 ' , ' Ithanktunwanna ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' North Dakota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 907 ' , ' Ithanktunwan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' South Dakota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 908 ' , ' Sisithunwan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Minnesota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 909 ' , ' Nueta ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' North Dakota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 910 ' , ' Makoua ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Lake Superior ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 911 ' , ' Baawitigon ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Lake Superior ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 912 ' , ' Osaakiiwaki ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Wisconsin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 913 ' , ' Meskwaki ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Wisconsin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 914 ' , ' Ho-Chunk ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Wisconsin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 915 ' , ' Peewareewa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Illinois ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 916 ' , ' Kaskankaham ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Illinois ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 917 ' , ' Cahokia ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Illinois ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 918 ' , ' Chucalissa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Tennessee ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 919 ' , ' Chickasha ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Mississippi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 920 ' , ' Chahta ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Mississippi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 921 ' , ' Ishenoca ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' West Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 922 ' , ' Tohome ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' West Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 923 ' , ' Pensacola ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' West Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 924 ' , ' Tawasa ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Alabama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 925 ' , ' Coweta ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Alabama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 926 ' , ' Ais ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 927 ' , ' Timucua ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' East Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 928 ' , ' Apalachee ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' East Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 929 ' , ' Guale ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 930 ' , ' Kasihta ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Upper Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 931 ' , ' Coosa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Upper Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 932 ' , ' Issati ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' Santee Estuary ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' South Carolina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 933 ' , ' Iswa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' South Carolina Piedmont ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 934 ' , ' Tsoyaha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Tennessee ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 935 ' , ' Chiaha ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Overmountain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 936 ' , ' Joara ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Overmountain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 937 ' , ' Skarureh ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' North Carolina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 938 ' , ' Pomouik ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' North Carolina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 939 ' , ' Kaskinampo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Tennessee ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 940 ' , ' Kentahke ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Western Kentucky ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 941 ' , ' Ouasioto ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Kentucky ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 942 ' , ' Waayaanthanwa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Indiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 943 ' , ' Atchakangouen ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Indiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 944 ' , ' Bodewadmik ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Ohio ' , ' Market Town ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Michigan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 945 ' , ' Michigami ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Michigan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 946 ' , ' Hotaawathipi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Ohio ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 947 ' , ' Kentaientonga ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Ohio ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 948 ' , ' Ohiyo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Ohio ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 949 ' , ' Monacan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Great Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 950 ' , ' Chesapeake ' , ' 10 ' , ' 5 ' , ' 3 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' James Estuary ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Virginia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 951 ' , ' Kanawha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Vandalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 952 ' , ' Powhatan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Virginia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 953 ' , ' Piscataway ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Maryland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 954 ' , ' Erielhonan ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Alleghenies ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 955 ' , ' Conestoga ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Westsylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 956 ' , ' Sakimauchheening ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' Delaware Estuary ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Delaware Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 957 ' , ' Wicontiss ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Delaware Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 958 ' , ' Onodowaga ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Iroquoisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 959 ' , ' Gayogohono ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Iroquoisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 960 ' , ' Onondagaono ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Iroquoisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 961 ' , ' Onyo '' taaka ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Hudson Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 962 ' , ' Unami ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Delaware Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 963 ' , ' Machkantowoon ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Hudson Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 964 ' , ' Kanien '' kehaka ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Hudson Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 965 ' , ' Manahahttan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' Hudson Estuary ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' New York ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 966 ' , ' Nipmuc ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Massachusetts ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 967 ' , ' Narraganset ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Connecticut ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 968 ' , ' Massachusett ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Massachusetts ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 969 ' , ' Mahican ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Lake Champlain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 970 ' , ' Amoskeag ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' New Hampshire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 971 ' , ' Penapawsket ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Eastern Maine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 972 ' , ' Nuu-chah-nulth ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Straits of Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 973 ' , ' Skwxwu '' mesh ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Straits of Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 974 ' , ' Kwakwaka '' wakw ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Straits of Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 975 ' , ' Tsimshian ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Hecate Strait ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 976 ' , ' Tlingit ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Alaska Panhandle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 977 ' , ' Yakutat ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Alaska Panhandle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 978 ' , ' Kenai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Western Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 979 ' , ' Unangan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Western Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 980 ' , ' Beothuk ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Newfoundland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 981 ' , ' Taqamkuk ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Newfoundland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 982 ' , ' Onamagag ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Lower Acadia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 983 ' , ' Epagoitgnag ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Acadia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 984 ' , ' Segepenegatic ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Lower Acadia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 985 ' , ' Petkootkweak ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Acadia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 986 ' , ' Gespegeogag ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Québec ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 987 ' , ' Onguhiara ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Canada ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 988 ' , ' Attignawantan ' , ' 8 ' , ' 2 ' , ' 2 ' , ' 4 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Huronia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 989 ' , ' Attigneenongnahac ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Huronia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 990 ' , ' Maisouna ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Trois-Rivieres ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 991 ' , ' Odishkwaagamiig ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Ontario ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 992 ' , ' Weskarini ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Laurentia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 993 ' , ' Osheaga ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' Emporium ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Lower Canada ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 994 ' , ' Stadacona ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Gulf of St. Lawrence ' , ' Saint Lawrence Estuary ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Québec ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 995 ' , ' Toutouskak ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Québec ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 996 ' , ' Oumamiwek ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Cote Nord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 997 ' , ' Chisedec ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Labrador ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 998 ' , ' Qikirmiut ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' James Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 999 ' , ' Cisasipi ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' James Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1000 ' , ' Iyiyiw ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' James Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1001 ' , ' Marameg ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Ontario ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1002 ' , ' Abitibi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Abitibi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1003 ' , ' Mosoni ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' James Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1004 ' , ' Attawapiskat ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' James Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1005 ' , ' Mushkegowuk ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' Nelson Estuary ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Hudson Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1006 ' , ' Ahiarmiut ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Hudson Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1007 ' , ' Gojijiwininiwag ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Ontario ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1008 ' , ' Wiinibig ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' Emporium ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Manitoba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1009 ' , ' Atikaki ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Hudson Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1010 ' , ' Manitowapow ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Manitoba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1011 ' , ' Kinougeoulini ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Manitoba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1012 ' , ' Satsuma ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Southern Kyushu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1013 ' , ' Cheongju ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Southern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1014 ' , ' Bungo ' , ' 9 ' , ' 4 ' , ' 2 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Northern Kyushu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1015 ' , ' Okinawa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Southern Kyushu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1016 ' , ' Ha Tinh ' , ' 11 ' , ' 5 ' , ' 3 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Annam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1017 ' , ' Suo ' , ' 9 ' , ' 4 ' , ' 2 ' , ' 3 ' , ' ' , ' Nippon ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Sanyodo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1018 ' , ' Izumo ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' San '' indo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1019 ' , ' Harima ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Sanyodo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1020 ' , ' Kyoto ' , ' 13 ' , ' 6 ' , ' 5 ' , ' 2 ' , ' ' , ' Nippon ' , ' Heian-kyo ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Kinai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1021 ' , ' Settsu ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Nippon ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Kinai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1022 ' , ' Indrapura ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1023 ' , ' Echizen ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Hokuriku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1024 ' , ' Echigo ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Hokuriku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1025 ' , ' Uzen ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Tohoku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1026 ' , ' Rikuzen ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Tohoku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1027 ' , ' Hitachi ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Eastern Kanto ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1028 ' , ' Musashi ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Nippon ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Western Kanto ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1029 ' , ' Kai ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Eastern Chubu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1030 ' , ' Owari ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Western Chubu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1031 ' , ' Kamikawa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Hokkaido ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1032 ' , ' The Kurils ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Hokkaido ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1033 ' , ' Enchiw ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Sakhalin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1034 ' , ' Kamchatka ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kamchatka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1035 ' , ' Penzhina ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kamchatka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1036 ' , ' Kolyma ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kolyma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1037 ' , ' Omolon ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kolyma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1038 ' , ' Karalveyem ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kamchatka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1039 ' , ' Verkhoyansk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kolyma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1040 ' , ' Suntar Khayata ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kolyma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1041 ' , ' Gizhiga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kamchatka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1042 ' , ' Sakha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Sakha ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1043 ' , ' Okhotsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1044 ' , ' Tauisk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1045 ' , ' Yakut ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Yakutia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1046 ' , ' Maya ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Sakha ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1047 ' , ' Jugjur ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1048 ' , ' Miyoo Gasan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' North Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1049 ' , ' Haiilanboo ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' East Heilongjiangord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1050 ' , ' Tyr ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Girin ' , ' Amur Estuary ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' North Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1051 ' , ' Aldan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Yakutia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1052 ' , ' Stanovoy ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1053 ' , ' Hinggan ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' West Heilongjiangord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1054 ' , ' Mukhtuya ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Yakutia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1055 ' , ' Kirenga ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Buryatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1056 ' , ' Barguzin ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Buryatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1057 ' , ' Ude ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Buryatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1058 ' , ' Onan Gol ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Buryatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1059 ' , ' East Tunguska ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Tunguska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1060 ' , ' Irkutsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Irkutsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1061 ' , ' West Tunguska ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Tunguska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1062 ' , ' Angara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Irkutsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1063 ' , ' Sayan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Irkutsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1064 ' , ' Tomsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Central Siberia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1065 ' , ' Kuznetsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Tannu Uriankhai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1066 ' , ' Altai Uriankhai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Tannu Uriankhai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1067 ' , ' Turukhan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Central Siberia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1068 ' , ' Ket ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Central Siberia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1069 ' , ' Surgut ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Kara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1070 ' , ' Narim ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Central Siberia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1071 ' , ' Irtesh ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Yrtesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1072 ' , ' Obdorsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Kara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1073 ' , ' Berezov ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Kara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1074 ' , ' Sibir ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Ishim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1075 ' , ' Tyumen ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Ishim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1076 ' , ' Kurgan ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Ishim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1077 ' , ' Solikamsk ' , ' 9 ' , ' 3 ' , ' 5 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Perm ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1078 ' , ' Tura ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Ural ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1079 ' , ' Viatka ' , ' 10 ' , ' 3 ' , ' 3 ' , ' 4 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Galich ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1080 ' , ' Pelym ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Ural ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1081 ' , ' Simbirsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Samara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1082 ' , ' Kazan ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Kazan ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Kazan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1083 ' , ' Vetluga ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Galich ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1084 ' , ' Wadjuk ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Australia ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Perth ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1085 ' , ' Paredarerme ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Tasmania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1086 ' , ' Kaurna ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Australia ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Princeland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1087 ' , ' Wurundjeri ' , ' 11 ' , ' 4 ' , ' 5 ' , ' 2 ' , ' ' , ' Australia ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Victoria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1088 ' , ' Wergaia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Victoria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1089 ' , ' Wiradjuri ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Victoria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1090 ' , ' Eora ' , ' 11 ' , ' 5 ' , ' 4 ' , ' 2 ' , ' ' , ' Australia ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Illawara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1091 ' , ' Kamilaroi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' New South Wales ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1092 ' , ' Gubbi-Gubbi ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' New South Wales ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1093 ' , ' Yagalingu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Queensland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1094 ' , ' Turrbal ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Queensland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1095 ' , ' Falklands ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' South Atlantic Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1096 ' , ' Cape Verde ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Cap Verde ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1097 ' , ' Fernando Po ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Sao Tome ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1098 ' , ' St. Helena ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Angola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1099 ' , ' Socotra ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Mahra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1100 ' , ' Mahe ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mascarenes ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1101 ' , ' Hollhavai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Indian Ocean Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1102 ' , ' Mauritius ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mascarenes ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1103 ' , ' Île Bourbon ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mascarenes ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1104 ' , ' Eiriksfjord ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Greenland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1105 ' , ' Vestbygden ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Greenland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1106 ' , ' Te Tai Tokerau ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Te Ika a Maui Hauauru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1107 ' , ' Taranaki ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Te Ika a Maui Hauauru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1108 ' , ' Te Moana a Toi ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Te Ika a Maui Waho ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1109 ' , ' Timaru ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Te Waipounamu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1110 ' , ' Agadir ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Safi ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Southern Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1111 ' , ' Arguin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Cap Verde ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1112 ' , ' Trarza ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Jolof ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1113 ' , ' Cayor ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Ivory Coast ' , ' Senegal Estuary ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Jolof ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1114 ' , ' Gabu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Ivory Coast ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Futa Jallon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1115 ' , ' Brakna ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Tekrur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1116 ' , ' Wolof ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Jolof ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1117 ' , ' Futa Jallon ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Futa Jallon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1118 ' , ' Sierra Leone ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Guinea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1119 ' , ' Grain Coast ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Guinea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1120 ' , ' Bambuk ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Manding ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1121 ' , ' Bure ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Manding ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1122 ' , ' Bagoe ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Kong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1123 ' , ' Segu ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Massina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1124 ' , ' Joma ' , ' 16 ' , ' 4 ' , ' 4 ' , ' 8 ' , ' ' , ' Timbuktu ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Manding ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1125 ' , ' Kong ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Kong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1126 ' , ' Ivory Coast ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' West African Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1127 ' , ' Tuat ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Western Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1128 ' , ' Taudeni ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Western Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1129 ' , ' Azawad ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Western Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1130 ' , ' Tadmekka ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Western Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1131 ' , ' Massina ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Massina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1132 ' , ' Timbuktu ' , ' 18 ' , ' 8 ' , ' 8 ' , ' 2 ' , ' ' , ' Timbuktu ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Niger Bend ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1133 ' , ' Gao ' , ' 16 ' , ' 7 ' , ' 7 ' , ' 2 ' , ' ' , ' Timbuktu ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Niger Bend ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1134 ' , ' Jenne ' , ' 17 ' , ' 7 ' , ' 7 ' , ' 3 ' , ' ' , ' Timbuktu ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Jenne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1135 ' , ' Yatenga ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Upper Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1136 ' , ' Gurma ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Upper Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1137 ' , ' Wagadugu ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Upper Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1138 ' , ' Kumasi ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1139 ' , ' Gold Coast ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' West African Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1140 ' , ' Abomey ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Atacora Oueme ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1141 ' , ' Whydah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' West African Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1142 ' , ' Dendi ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Dendi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1143 ' , ' Borgu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Atacora Oueme ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1144 ' , ' Oyo ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Niger ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1145 ' , ' Nupe ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Niger ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1146 ' , ' Ife ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Katsina ' , ' City of Four Hundred and One Deities ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Niger ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1147 ' , ' Benin ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Ivory Coast ' , replace ( ' Natural Harbor\nNiger Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Benin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1148 ' , ' Gobir ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Katsina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1149 ' , ' Katsina ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Katsina ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Katsina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1150 ' , ' Zamfara ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Zazzau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1151 ' , ' Bonny ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Gulf of Guinea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1152 ' , ' Idah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Niger ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1153 ' , ' Pindinga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Niger ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1154 ' , ' Zazzau ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Zazzau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1155 ' , ' Kano ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Kano ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1156 ' , ' Damagaram ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' West Azbin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1157 ' , ' Borno ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Katsina ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Bornu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1158 ' , ' Kanem ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Katsina ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Kanem ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1159 ' , ' Bagirmi ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Kanem ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1160 ' , ' Mandara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Bornu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1161 ' , ' Bauchi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Adamawa Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1162 ' , ' Wukari ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Adamawa Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1163 ' , ' Calabar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Gulf of Guinea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1164 ' , ' Cameroon ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Gulf of Guinea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1165 ' , ' Gabon ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Gulf of Guinea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1166 ' , ' Loango ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongolese Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1167 ' , ' Luanda ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Angola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1168 ' , ' Mbamba ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongolese Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1169 ' , ' Anziku ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1170 ' , ' Mpemba ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Congo ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1171 ' , ' Ndongo ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Ivory Coast ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Angola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1172 ' , ' Benguela ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Ivory Coast ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Angola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1173 ' , ' Namibia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1174 ' , ' Ezorongondo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Angola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1175 ' , ' Lesser Namaqualand ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Cape of Good Hope ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1176 ' , ' Roggeveld ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' South African Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1177 ' , ' Cape ' , ' 15 ' , ' 7 ' , ' 7 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Cape of Good Hope ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1178 ' , ' Great Karoo ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' South African Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1179 ' , ' Swellendam ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Cape of Good Hope ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1180 ' , ' Xhosa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Cape of Good Hope ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1181 ' , ' Natal ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Natal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1182 ' , ' Matsolo ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Natal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1183 ' , ' Inhambane ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Quelimane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1184 ' , ' Zimbabwe ' , ' 14 ' , ' 5 ' , ' 4 ' , ' 5 ' , ' ' , ' Zambezi ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Zimbabwe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1185 ' , ' Butua ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Butua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1186 ' , ' Sofala ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Quelimane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1187 ' , ' Sena ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Lower Zambezi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1188 ' , ' Massapa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Butua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1189 ' , ' Shangwe ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Butua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1190 ' , ' Zumbo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Lower Zambezi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1191 ' , ' Tete ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zambezi ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Lower Zambezi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1192 ' , ' Quelimane ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' Zambezi Estuary ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Quelimane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1193 ' , ' Menabe ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Zanzibar ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Sakalava ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1194 ' , ' Besalampy ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Sakalava ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1195 ' , ' Mozambique ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mozambique ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1196 ' , ' Kilwa ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Central Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1197 ' , ' Mzizima ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Central Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1198 ' , ' Lindi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Central Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1199 ' , ' Bagamoyo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Central Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1200 ' , ' Tanga ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mombasa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1201 ' , ' Zanzibar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' Entrepot ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Central Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1202 ' , ' Mombasa ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' Entrepot ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mombasa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1203 ' , ' Malindi ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mombasa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1204 ' , ' Lamu ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Northern Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1205 ' , ' Mogadishu ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' Entrepot ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Mogadishu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1206 ' , ' Qardho ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Majeerteen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1207 ' , ' Ogaden ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ogaden ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1208 ' , ' Degehabur ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ogaden ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1209 ' , ' Berbera ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Somaliland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1210 ' , ' Dawaro ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ogaden ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1211 ' , ' Harer ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Gulf of Aden ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ifat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1212 ' , ' Zeila ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Gulf of Aden ' , ' Entrepot ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ifat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1213 ' , ' Shewa ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Shewa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1214 ' , ' Wollo ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Central Ethiopia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1215 ' , ' Tajura ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Aussa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1216 ' , ' Tegali ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Kurdufan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1217 ' , ' Fazughli ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Sennar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1218 ' , ' Sidamo ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Hadiya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1219 ' , ' Darfur ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Central Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1220 ' , ' Bayuda ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Dongola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1221 ' , ' El Obeid ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Kurdufan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1222 ' , ' Gezira ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Upper Nubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1223 ' , ' Gojjam ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Central Ethiopia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1224 ' , ' Gonder ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Central Ethiopia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1225 ' , ' Butana ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Upper Nubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1226 ' , ' Beja ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Upper Nubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1227 ' , ' Aksum ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Tigray ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1228 ' , ' Dongola ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Dongola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1229 ' , ' Berber ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Dongola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1230 ' , ' Massawa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Red Sea Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1231 ' , ' Aswan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Said ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1232 ' , ' Suakin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Red Sea Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1233 ' , ' Kharga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' al-Wahat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1234 ' , ' Qasr Ibrim ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Lower Nubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1235 ' , ' Guam ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' West Micronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1236 ' , ' Rabaul ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Melanesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1237 ' , ' Hanuabada ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Oceania ' , ' East Indies ' , ' Moluccas ' , ' Papuan Peninsula ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1238 ' , ' Solomon Islands ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Melanesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1239 ' , ' Vanuatu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Melanesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1240 ' , ' Hawaii ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Northern Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1241 ' , ' Kiribati ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' East Micronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1242 ' , ' Viti Levu ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Fiji ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1243 ' , ' Samoa ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1244 ' , ' Tuamotu Islands ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Eastern Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1245 ' , ' Manokwari ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Oceania ' , ' East Indies ' , ' Moluccas ' , ' Vogelkop Peninsula ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1246 ' , ' Ata Whenua ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Te Waipounamu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1247 ' , ' Corsica ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Western Mediterranean Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1248 ' , ' Maldives ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Indian Ocean Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1249 ' , ' Yola ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Adamawa Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1250 ' , ' Vänern ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1251 ' , ' Vättern ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1252 ' , ' Gulf of Bothnia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Baltic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1253 ' , ' Eastern Sea of Åland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Baltic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1254 ' , ' Gulf of Finland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Baltic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1255 ' , ' Western Baltic Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Baltic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1256 ' , ' Gulf of Riga ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Baltic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1257 ' , ' Southern Baltic Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Baltic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1258 ' , ' Öresund ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Kattegat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1259 ' , ' Kattegat ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Kattegat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1260 ' , ' Lake Peipus ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1261 ' , ' Ladoga ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1262 ' , ' Onega ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1263 ' , ' Barents Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' White Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1264 ' , ' Lofoten Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' White Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1265 ' , ' Northern Norwegian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Norwegian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1266 ' , ' Southern Norwegian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1267 ' , ' Skagerrak ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Kattegat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1268 ' , ' Helgoland Bight ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1269 ' , ' Coast of Holland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1270 ' , ' Dogger Bank ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1271 ' , ' Straits of Dover ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' English Channel ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1272 ' , ' The Channel ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' English Channel ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1273 ' , ' Taveta ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Kenya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1274 ' , ' Coast of Brittany ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Bay of Biscay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1275 ' , ' Quiberon Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Bay of Biscay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1276 ' , ' Cote D '' Argent ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Europe ' , ' North Atlantic ' , ' North Atlantic ' , ' Bay of Biscay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1277 ' , ' Bay of Biscay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Bay of Biscay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1278 ' , ' Cantabrian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Bay of Biscay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1279 ' , ' Tyne ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1280 ' , ' Firth of Forth ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1281 ' , ' Coast of Shetland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Europe ' , ' North Atlantic ' , ' North Atlantic ' , ' North Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1282 ' , ' Moray Firth ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1283 ' , ' North Channel ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1284 ' , ' Irish Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Celtic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1285 ' , ' St. George '' s Channel ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Celtic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1286 ' , ' Donegal Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1287 ' , ' Dingle Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1288 ' , ' Celtic Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Celtic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1289 ' , ' Western Approaches ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Celtic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1290 ' , ' Cape Finisterre ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1291 ' , ' Lusitanian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1292 ' , ' Gulf of Cadiz ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1293 ' , ' Straits of Gibraltar ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Europe ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1294 ' , ' Gulf of Almeria ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1295 ' , ' Gulf of Valencia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1296 ' , ' Gulf of Lion ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1297 ' , ' Cote D '' Azur ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Europe ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1298 ' , ' Ligurian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1299 ' , ' Coast of the Faeroes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Norwegian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1300 ' , ' Western Mediterranean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1301 ' , ' Barbary Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1302 ' , ' Cape Bon ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1303 ' , ' Tyrrenean Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1304 ' , ' Bay of Napoli ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1305 ' , ' Gulf of Gabes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1306 ' , ' Sao Tome ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Sao Tome ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1307 ' , ' Straits of Messina ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Western Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1308 ' , ' Gulf of Venice ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Europe ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1309 ' , ' Adriatic Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1310 ' , ' Straits of Otranto ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1311 ' , ' Gulf of Taranto ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1312 ' , ' Ionian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1313 ' , ' Gulf of Sirte ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1314 ' , ' Gulf of Bomba ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1315 ' , ' Bay of Alexandria ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1316 ' , ' Palestinian Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1317 ' , ' Gulf of Cyprus ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1318 ' , ' Spiš ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Slovakia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1319 ' , ' Aegean Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1320 ' , ' Sea of Marmara ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Europe ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1321 ' , ' Gulf of Varna ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Black Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1322 ' , ' Gulf of Odessa ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Black Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1323 ' , ' Sea of Azov ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Europe ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Black Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1324 ' , ' Eastern Black Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Black Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1325 ' , ' Lake Balaton ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1326 ' , ' Caspian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1327 ' , ' Aral Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1328 ' , ' Gulf of Suez ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Red Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1329 ' , ' Red Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Red Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1330 ' , ' Bab el Mandeb ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Red Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1331 ' , ' Gulf of Aden ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Africa ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1332 ' , ' Gulf of Oman ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Persian Gulf ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1333 ' , ' Gulf of Masirah ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1334 ' , ' Straits of Hormuz ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Persian Gulf ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1335 ' , ' Persian Gulf ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Asia ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Persian Gulf ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1336 ' , ' Coast of Makran ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Persian Gulf ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1337 ' , ' Coast of Gujarat ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1338 ' , ' Konkan Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1339 ' , ' Malabar Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1340 ' , ' Comorin Cape ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Asia ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1341 ' , ' Coast of Coromandel ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Bay of Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1342 ' , ' Coast of Orissa ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Bay of Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1343 ' , ' Ganges Delta ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Asia ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Bay of Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1344 ' , ' Arakan Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Bay of Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1345 ' , ' Irrawady Delta ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Andaman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1346 ' , ' Eastern Bay of Bengal ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Bay of Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1347 ' , ' Andaman Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Andaman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1348 ' , ' Straits of Malacca ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Andaman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1349 ' , ' Nicobar Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Andaman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1350 ' , ' Coast of Aceh ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1351 ' , ' Coast of Sumatra ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1352 ' , ' Sunda Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1353 ' , ' Coast of Java ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1354 ' , ' Coast of Blambangan ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1355 ' , ' Straits of Lombok ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Java Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1356 ' , ' Sawu Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Banda & Arafura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1357 ' , ' Flores Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Banda & Arafura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1358 ' , ' Java Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Java Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1359 ' , ' Straits of Makassar ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Celebes Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1360 ' , ' Karimata Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Java Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1361 ' , ' Straits of Johor ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Asia ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1362 ' , ' Malayan Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1363 ' , ' Coast of Sarawak ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1364 ' , ' Cape Cà Mau ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1365 ' , ' Gulf of Siam ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Asia ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1366 ' , ' Cam Ranh Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1367 ' , ' South China Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1368 ' , ' Palawan Passage ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1369 ' , ' Coast of Annam ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1370 ' , ' Gulf of Tonkin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1371 ' , ' Guangzhou Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Asia ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1372 ' , ' Taiwan Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' East China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1373 ' , ' Yang Tse Delta ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' East China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1374 ' , ' Eastern Yellow Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' East China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1375 ' , ' Korea Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' East China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1376 ' , ' South Korean Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Asia ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1377 ' , ' North Korean Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1378 ' , ' Olga Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1379 ' , ' Tatar Straits ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1380 ' , ' Shantar Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1381 ' , ' Tauisk Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1382 ' , ' Bay of Komenskoie ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1383 ' , ' Coast of Kamchatka ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1384 ' , ' Okhotsk Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1385 ' , ' Coast of Sakhalin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1386 ' , ' Soya Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1387 ' , ' Tsugaru Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1388 ' , ' Yamato Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1389 ' , ' Amakusa Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' East China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1390 ' , ' Seto Inland Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1391 ' , ' Kii Channel ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1392 ' , ' Ryukyu Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' East China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1393 ' , ' Luzon Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1394 ' , ' Paracel Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1395 ' , ' Manila Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' South China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1396 ' , ' Coast of Luzon ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1397 ' , ' Visayan Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1398 ' , ' Sulu Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Celebes Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1399 ' , ' Sea of Celebes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Celebes Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1400 ' , ' Halmaheran Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Asia ' , ' Indian Ocean ' , ' South China Sea ' , ' Celebes Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1401 ' , ' Banda Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Banda & Arafura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1402 ' , ' Mindanao Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1403 ' , ' Palau Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1404 ' , ' Cenderawasih Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1405 ' , ' Vitiaz Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Coral Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1406 ' , ' Trobrian Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Coral Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1407 ' , ' Torres Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Coral Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1408 ' , ' Timor Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Banda & Arafura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1409 ' , ' Arafura Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Banda & Arafura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1410 ' , ' Gulf of Carpentaria ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Indian Ocean ' , ' South China Sea ' , ' Banda & Arafura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1411 ' , ' Great Barrier Reef ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Coral Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1412 ' , ' Coral Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' Oceania ' , ' Indian Ocean ' , ' South West Pacific ' , ' Coral Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1413 ' , ' Flinders Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Great Australian Bight ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1414 ' , ' Bass Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Great Australian Bight ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1415 ' , ' Kangaroo Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Great Australian Bight ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1416 ' , ' Great Australian Bight ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Great Australian Bight ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1417 ' , ' Cape Leeuwin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1418 ' , ' Houtman Abrolhos ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1419 ' , ' Northwest Cape ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1420 ' , ' Roebuck Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1421 ' , ' Western Tasman Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Tasman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1422 ' , ' Macquarie Harbour ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Great Australian Bight ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1423 ' , ' Cook Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Tasman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1424 ' , ' Lord Howe Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Tasman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1425 ' , ' Northern Tasman Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Tasman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1426 ' , ' Coast of New Zealand ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Tasman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1427 ' , ' Southern Tasman Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Tasman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1428 ' , ' Canterbury Bight ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Tasman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1429 ' , ' New Caledonian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Tasman Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1430 ' , ' Vanuatu Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1431 ' , ' Fiji Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1432 ' , ' Solomon Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1433 ' , ' Tuvalu Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1434 ' , ' Melanesia Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1435 ' , ' Mariana Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1436 ' , ' Philippine Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1437 ' , ' Northern Philippine Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1438 ' , ' Volcano Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1439 ' , ' Izu Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1440 ' , ' Sanriku Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1441 ' , ' Kuril Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Okhotsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1442 ' , ' Kamchatka Trench ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1443 ' , ' Ulakhan Fault ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1444 ' , ' Bay of Anadyr ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1445 ' , ' Bering Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Bering Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1446 ' , ' Horn of Africa ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1447 ' , ' Coast of Pepper ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1448 ' , ' Zanzibar Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Africa ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1449 ' , ' Mozambique Channel ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1450 ' , ' Diego Suarez Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1451 ' , ' Southwestern Arabian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1452 ' , ' Northern Arabian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1453 ' , ' The Seychelles ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1454 ' , ' Coast of Tamatave ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1455 ' , ' The Mascareignes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1456 ' , ' Coast of Menabe ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1457 ' , ' Coast of Sofala ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1458 ' , ' Coast of Natal ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1459 ' , ' Coast of Ciskei ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' Cape of Storms ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1460 ' , ' Cape of Good Hope ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Africa ' , ' East Atlantic ' , ' South Atlantic ' , ' Cape of Storms ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1461 ' , ' Coast of Namibia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' Skeleton Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1462 ' , ' Coast of Angola ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' Skeleton Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1463 ' , ' Gulf of Kongo ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Africa ' , ' East Atlantic ' , ' South Atlantic ' , ' Skeleton Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1464 ' , ' Coast of Cameroon ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' West African Sea ' , ' Gulf of Guinea Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1465 ' , ' Gulf of Guinea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' West African Sea ' , ' Gulf of Guinea Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1466 ' , ' Ivory Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Africa ' , ' East Atlantic ' , ' West African Sea ' , ' Gulf of Guinea Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1467 ' , ' Grain Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' West African Sea ' , ' West African Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1468 ' , ' Coast of Gambia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' West African Sea ' , ' West African Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1469 ' , ' Bay of Arguin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' West African Sea ' , ' West African Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1470 ' , ' Mauretanian Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Africa ' , ' East Atlantic ' , ' West African Sea ' , ' West African Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1471 ' , ' Cape Bojador ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' West African Sea ' , ' West African Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1472 ' , ' Coast of Morocco ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' West African Sea ' , ' West African Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1473 ' , ' Jan Mayen Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Norwegian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1474 ' , ' Spitzberg Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Norwegian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1475 ' , ' Icelandic Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Norwegian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1476 ' , ' Eastern Coast of Iceland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Norwegian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1477 ' , ' Western Coast of Iceland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Denmark Strait ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1478 ' , ' Northeastern Atlantic ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1479 ' , ' Rockall ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1480 ' , ' Denmark Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Denmark Strait ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1481 ' , ' Eastern Coast of Greenland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Denmark Strait ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1482 ' , ' Western Coast of Greenland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Denmark Strait ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1483 ' , ' Labrador Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Labrador Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1484 ' , ' Baffin Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Labrador Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1485 ' , ' Hudson Straits ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Hudson Bay Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1486 ' , ' James Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' North America ' , ' West Atlantic ' , ' American East Coast ' , ' Hudson Bay Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1487 ' , ' Western Hudson Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Hudson Bay Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1488 ' , ' Eastern Hudson Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Hudson Bay Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1489 ' , ' Foxe Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Hudson Bay Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1490 ' , ' Gulf of St. Lawrence ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf of St Lawrence ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1491 ' , ' Cabot Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf of St Lawrence ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1492 ' , ' Bay of Fundy ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf Stream ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1493 ' , ' Strait of Belle Isle ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Labrador Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1494 ' , ' Fortune Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Labrador Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1495 ' , ' Notre Dame Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Labrador Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1496 ' , ' Labrador Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Labrador Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1497 ' , ' Greenland Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1498 ' , ' Northern Atlantic ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1499 ' , ' Massachusetts Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf Stream ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1500 ' , ' Delaware Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' North America ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf Stream ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1501 ' , ' Cape Hatteras ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf Stream ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1502 ' , ' Sea Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf Stream ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1503 ' , ' Bahama Banks ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Bahama Channel ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1504 ' , ' Western Sargasso Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf Stream ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1505 ' , ' Florida Straits ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Bahama Channel ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1506 ' , ' Apalachee Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Gulf of Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1507 ' , ' Mobile Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' North America ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Gulf of Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1508 ' , ' Galveston Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Gulf of Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1509 ' , ' Tampico Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Gulf of Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1510 ' , ' Bay of Campeche ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Gulf of Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1511 ' , ' Gulf of Mexico ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Gulf of Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1512 ' , ' Yucatan Channel ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1513 ' , ' Gulf of Honduras ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1514 ' , ' Mosquito Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1515 ' , ' Gulf of Darien ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1516 ' , ' Jamaica Channel ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' North America ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1517 ' , ' Central Caribbean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1518 ' , ' Northwestern Caribbean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1519 ' , ' Venezuelan Gulf ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1520 ' , ' Venezuelan Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1521 ' , ' Eastern Caribbean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1522 ' , ' Windward Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1523 ' , ' Lesser Antilles ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Caribbean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1524 ' , ' Turks & Caicos Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Bahama Channel ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1525 ' , ' Bahama Channel ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Bahama Channel ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1526 ' , ' Mona Passage ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1527 ' , ' Guyana Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Coast of Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1528 ' , ' Cape Orange ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Coast of Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1529 ' , ' Amazonas Gulf ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Coast of Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1530 ' , ' Coast of Brazil ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1531 ' , ' Coast of Pernambuco ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' South America ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1532 ' , ' Coast of Porto Seguro ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1533 ' , ' Costa Verde ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1534 ' , ' Coast of Santa Catarina ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1535 ' , ' Patos Lagoon ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1536 ' , ' La Plata River ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1537 ' , ' Northern Coast of Patagonia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1538 ' , ' Southern Coast of Patagonia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1539 ' , ' Magellan Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Chilean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1540 ' , ' Gulf of Penas ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Chilean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1541 ' , ' Coast of Chile ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Chilean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1542 ' , ' Atacama Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Chilean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1543 ' , ' Coast of Antofagasta ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Chilean Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1544 ' , ' Arica Bend ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' South America ' , ' East Pacific ' , ' Pacific South America ' , ' Sea of Grau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1545 ' , ' Coast of Peru ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Sea of Grau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1546 ' , ' Gulf of Guayaquil ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Sea of Grau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1547 ' , ' Coast of Ecuador ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Gulf of Panama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1548 ' , ' Gulf of Panama ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Gulf of Panama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1549 ' , ' Costa Rica ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Gulf of Panama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1550 ' , ' Gulf of Tehuantepec ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' Pacific South America ' , ' Gulf of Panama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1551 ' , ' Manzanillo Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' North America ' , ' East Pacific ' , ' North East Pacific ' , ' Pacific Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1552 ' , ' Mazatlan Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Pacific Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1553 ' , ' Gulf of California ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Pacific Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1554 ' , ' Cape San Lucas ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Pacific Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1555 ' , ' Gulf of Catalina ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Pacific Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1556 ' , ' San Francisco Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Pacific Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1557 ' , ' Cape Blanco ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Pacific Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1558 ' , ' Salish Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Gulf of Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1559 ' , ' Hecate Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Gulf of Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1560 ' , ' Glacier Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Gulf of Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1561 ' , ' Cook Inlet ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Gulf of Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1562 ' , ' Norton Sound ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Bering Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1563 ' , ' Hatton Bank ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1564 ' , ' Eastern Gibbs Fracture ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1565 ' , ' Western Gibbs Fracture ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1566 ' , ' Iberian Shelf ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1567 ' , ' Sea of Azores ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1568 ' , ' Corner Seamounts ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1569 ' , ' Sable Island Bank ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1570 ' , ' New England Seamounts ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf Stream ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1571 ' , ' Blake Plateau ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' American East Coast ' , ' Gulf Stream ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1572 ' , ' West Bermuda Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1573 ' , ' East Bermuda Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1574 ' , ' Antilles Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1575 ' , ' Northern Guiana Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1576 ' , ' Guiana Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Coast of Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1577 ' , ' Southern Guiana Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Coast of Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1578 ' , ' Canary Approach ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' West African Sea ' , ' West African Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1579 ' , ' Cape Verde Approach ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' West African Sea ' , ' West African Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1580 ' , ' Central North Atlantic ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1581 ' , ' North Equatorial Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1582 ' , ' Northeast Sargasso Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1583 ' , ' Southeast Sargasso Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Caribbean Sea ' , ' Sargasso Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1584 ' , ' Romanche Gap ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1585 ' , ' East Guinea Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1586 ' , ' West Guinea Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1587 ' , ' Coast of Falklands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1588 ' , ' Scotia Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1589 ' , ' Brazil-Malvinas Confluence Zone ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1590 ' , ' South Brazil Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1591 ' , ' Brazil Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1592 ' , ' Rio Grande Rise ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1593 ' , ' Argentine Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1594 ' , ' South Orkney Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1595 ' , ' East of Magellans ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1596 ' , ' North Brazil Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Coast of Brazil ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1597 ' , ' South Equatorial Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1598 ' , ' Central South Atlantic ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1599 ' , ' Brazil Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1600 ' , ' Saint Helena Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1601 ' , ' Benguela Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1602 ' , ' Walvis Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1603 ' , ' Bouvet Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1604 ' , ' Tristan da Cunha Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1605 ' , ' Southern Mid-Atlantic Ridget ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1606 ' , ' South Atlantic Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1607 ' , ' South Sandwich Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Atlantic ' , ' Atlantic South America ' , ' Argentine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1608 ' , ' South Atlantic ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1609 ' , ' South Atlantic Roaring Forties ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Atlantic ' , ' South Atlantic ' , ' South Atlantic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1610 ' , ' Denmark Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Denmark Strait ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1611 ' , ' Northern Bay of Bengal ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Bay of Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1612 ' , ' Western Bay of Bengal ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Bay of Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1613 ' , ' Southern Bay of Bengal ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Bay of Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1614 ' , ' Ceylon Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Bay of Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1615 ' , ' Southeastern Arabian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1616 ' , ' North Indian Ocean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1617 ' , ' Mascarene Plateau ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1618 ' , ' Western Equatorial Counter Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1619 ' , ' Coast of Maldives ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1620 ' , ' Central Indian Ocean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1621 ' , ' Chagos Archipelago ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1622 ' , ' Eastern Equatorial Counter Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1623 ' , ' Ninetyeast Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1624 ' , ' Northeast Indian Ocean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1625 ' , ' Marion Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1626 ' , ' Natal Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1627 ' , ' Taolagnaro Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1628 ' , ' Crozet Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1629 ' , ' Crozet Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1630 ' , ' Madagascar Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' , ' Western Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1631 ' , ' Kerguelen Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1632 ' , ' Heard and McDonald Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1633 ' , ' South Indian Ocean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1634 ' , ' Indian Ocean Raging Fifties ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1635 ' , ' South Australian Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South West Pacific ' , ' Great Australian Bight ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1636 ' , ' Southwestern Indian Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1637 ' , ' St Paul and Amsterdam Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1638 ' , ' Southeastern Indian Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1639 ' , ' Naturaliste Plateau ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1640 ' , ' Broken Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1641 ' , ' East Indian Ocean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1642 ' , ' Zenith Plateau ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1643 ' , ' Wallaby Plateau ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1644 ' , ' West Australian Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Indian Ocean ' , ' Eastern Indian Ocean ' , ' Eastern Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1645 ' , ' Eastern Indian Ocean South Equatorial Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1646 ' , ' Indian Ocean South Equatorial Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1647 ' , ' Western Indian Ocean South Equatorial Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' Indian Ocean ' , ' South Indian Ocean ' , ' South Indian Ocean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1648 ' , ' Lake Tchad ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1649 ' , ' Lake Victoria ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1650 ' , ' Lake Tanganyika ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1651 ' , ' Lake Malawi ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1652 ' , ' White Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' Europe ' , ' North Atlantic ' , ' North Atlantic ' , ' White Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1653 ' , ' Lake Balchasj ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1654 ' , ' Lake Bajkal ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1655 ' , ' Poyang Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1656 ' , ' Lake Titicaca ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1657 ' , ' Lake Nicaragua ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1658 ' , ' Lake Okeechobee ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1659 ' , ' Lake Ontario ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1660 ' , ' Lake Erie ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1661 ' , ' Lake Huron ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1662 ' , ' Lake Michigan ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1663 ' , ' Lake Superior ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1664 ' , ' Lake Nipigon ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1665 ' , ' Lake Winnipeg ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1666 ' , ' Commander Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1667 ' , ' Emperor Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1668 ' , ' Northwestern Pacific ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1669 ' , ' Oyashio Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1670 ' , ' Northern Kuroshio Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1671 ' , ' Kuroshio Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1672 ' , ' Western Pacific ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1673 ' , ' Micronesia Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1674 ' , ' Mariana Trench ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1675 ' , ' North Pacific Equatorial Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1676 ' , ' Melanesian Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1677 ' , ' Kuskokwim Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Bering Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1678 ' , ' Bering Strait ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Bering Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1679 ' , ' Shirshov Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1680 ' , ' Aleutian Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Bering Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1681 ' , ' Shumagin Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Gulf of Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1682 ' , ' Gulf of Alaska ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' Gulf of Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1683 ' , ' Western Aleutian Trench ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1684 ' , ' Northern California Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1685 ' , ' Eastern Aleutian Trench ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1686 ' , ' Eastern North Pacific Drift ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1687 ' , ' California Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1688 ' , ' Murray Fracture Zone ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1689 ' , ' North Pacific Drift ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1690 ' , ' Western North Pacific Drift ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1691 ' , ' Wake Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1692 ' , ' Midway Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1693 ' , ' Molokai Fracture Zone ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1694 ' , ' Southern California Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1695 ' , ' Revilla Gigedo Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1696 ' , ' Clarion Fracture Zone ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1697 ' , ' Coast of Hawaii ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1698 ' , ' Marshall Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1699 ' , ' Central Pacific Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1700 ' , ' Cocos Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1701 ' , ' Guatemala Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1702 ' , ' Galapagos Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1703 ' , ' Nazca Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1704 ' , ' Juan Fernandez Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1705 ' , ' Chile Rise ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1706 ' , ' West of Magellans ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1707 ' , ' Clipperton Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1708 ' , ' Galapagos Rise ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1709 ' , ' Peru Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1710 ' , ' Humboldt Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1711 ' , ' East Pacific Rise ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1712 ' , ' South Equatorial Pacific Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1713 ' , ' Easter Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1714 ' , ' North Pacific Converge Zone ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1715 ' , ' Eastern Equatorial Pacific Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' North East Pacific ' , ' North Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1716 ' , ' Clipperton Fracture Zone ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1717 ' , ' Southern Humboldt Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1718 ' , ' Mornington Abyssal Plain ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1719 ' , ' South Pacific Raging Fifties ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1720 ' , ' Tharp Fault ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1721 ' , ' South Pacific Roaring Forties ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1722 ' , ' Louisville Seamount Chain ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1723 ' , ' Chatham Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1724 ' , ' Southeast Pacific ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1725 ' , ' Tuamotu Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1726 ' , ' Samoa Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1727 ' , ' Bass Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1728 ' , ' Society Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1729 ' , ' South Pacific ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1730 ' , ' East Pacific Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1731 ' , ' Eltanin Fracture Zone ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1732 ' , ' Kiribati Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1733 ' , ' Phoenix Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1734 ' , ' Gilbert Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' North West Pacific ' , ' East Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1735 ' , ' Line Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1736 ' , ' Western Equatorial Pacific Counter Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1737 ' , ' Marquesas Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1738 ' , ' Flint Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1739 ' , ' Pitcairn Islands ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' Polynesian Triangle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1740 ' , ' Equatorial Pacific Counter Current ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1741 ' , ' Tiki Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' East Pacific ' , ' South East Pacific ' , ' South Pacific ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1742 ' , ' Upper Guelders ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' North Brabant ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1743 ' , ' Cambray ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Picardy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1744 ' , ' Antwerpen ' , ' 19 ' , ' 8 ' , ' 8 ' , ' 3 ' , ' ' , ' English Channel ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' South Brabant ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1745 ' , ' Cantabria ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Sevilla ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Asturias ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1746 ' , ' Burgos ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Asturias ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1747 ' , ' Caceres ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Extremadura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1748 ' , ' Jaén ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Lower Andalucia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1749 ' , ' Cadiz ' , ' 12 ' , ' 5 ' , ' 4 ' , ' 3 ' , ' ' , ' Sevilla ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Lower Andalucia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1750 ' , ' Alicante ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Valencia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1751 ' , ' Ceuta ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1752 ' , ' Rzhev ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Tver ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1753 ' , ' Kostroma ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Yaroslavl ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1754 ' , ' Murom ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Suzdal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1755 ' , ' Ustyug ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Perm ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1756 ' , ' Bessarabia ' , ' 11 ' , ' 5 ' , ' 4 ' , ' 2 ' , ' ' , ' Crimea ' , ' Danube Estuary ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Moldavia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1757 ' , ' Oberpfalz ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Lower Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1758 ' , ' Hanover ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Braunschweig ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1759 ' , ' Potsdam ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mittelmark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1760 ' , ' Koblenz ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lower Rhineland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1761 ' , ' Pfalz ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Palatinate ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1762 ' , ' Niederhessen ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Hesse ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1763 ' , ' Niederlausitz ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lusatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1764 ' , ' Burgas ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Thrace ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1765 ' , ' Sofia ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bulgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1766 ' , ' Kosovo ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Rascia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1767 ' , ' Slavonia ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Slavonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1768 ' , ' Lienz ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Tirol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1769 ' , ' Görz ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Carniola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1770 ' , ' Manhartsberg ' , ' 10 ' , ' 3 ' , ' 3 ' , ' 4 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Austria Proper ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1771 ' , ' Erz ' , ' 11 ' , ' 4 ' , ' 5 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Erzgebirge ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1772 ' , ' Pozsony ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Pest ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Slovakia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1773 ' , ' Achaea ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Morea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1774 ' , ' Treviso ' , ' 18 ' , ' 7 ' , ' 7 ' , ' 4 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Venetia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1775 ' , ' Holstein ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Lübeck ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Schleswig-Holstein ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1776 ' , ' White Karelia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Pomorye ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1777 ' , ' Kola ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Laponia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1778 ' , ' Kasimov ' , ' 13 ' , ' 4 ' , ' 4 ' , ' 5 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Ryazan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1779 ' , ' Rub '' al Khali ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1780 ' , ' Komi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Ural ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1781 ' , ' Western Siberia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1782 ' , ' Central Siberia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1783 ' , ' Eastern Siberia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1784 ' , ' Tian Shan ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1785 ' , ' Pamir ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1786 ' , ' Takla Makan ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1787 ' , ' Himalaya ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1788 ' , ' Arunachal ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1789 ' , ' Papua ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Oceania ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1790 ' , ' Western Australia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Oceania ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1791 ' , ' Central Australia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Oceania ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1792 ' , ' Merina ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Madagascar Highlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1793 ' , ' El Djouf ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1794 ' , ' Central Sahara ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1795 ' , ' East Sahara ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1796 ' , ' Central Africa ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1797 ' , ' Northern Congo Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1798 ' , ' Imatong ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1799 ' , ' Urgoma ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1800 ' , ' Lower Limpopo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Natal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1801 ' , ' Kalahari ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1802 ' , ' Western Amazonas ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' South America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1803 ' , ' Eastern Amazonas ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' South America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1804 ' , ' Greenland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1805 ' , ' Ungava ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1806 ' , ' Weagamow ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1807 ' , ' Baffin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1808 ' , ' Great Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1809 ' , ' Só '' taeo '' o ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Badlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1810 ' , ' Alaska ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1811 ' , ' Nunavut ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1812 ' , ' Northwest Territories ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1813 ' , ' Saskatchewan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Saskatchewan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1814 ' , ' Columbia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1815 ' , ' Pathein ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Burma ' , ' Irrawaddy Estuary ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Lower Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1816 ' , ' Beijing ' , ' 31 ' , ' 13 ' , ' 13 ' , ' 5 ' , ' ' , ' Beijing ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Hebei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1817 ' , ' Nan ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Chiang Mai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1818 ' , ' Chikuzen ' , ' 10 ' , ' 5 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Northern Kyushu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1819 ' , ' Tosa ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Shikoku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1820 ' , ' Awa ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Shikoku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1821 ' , ' Nanjing ' , ' 33 ' , ' 15 ' , ' 15 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' South Jiangsu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1822 ' , ' Suzhou ' , ' 20 ' , ' 9 ' , ' 9 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' Yangtze Estuary ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' South Jiangsu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1823 ' , ' Stung Treng ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Angkor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1824 ' , ' Wenzhou ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Zhejiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1825 ' , ' Aki ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Sanyodo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1826 ' , ' Lika ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Croatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1827 ' , ' Raska ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Rascia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1828 ' , ' Donji Kraji ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Croatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1829 ' , ' Quanzhou ' , ' 19 ' , ' 8 ' , ' 8 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Fujian ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1830 ' , ' Tajima ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' San '' indo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1831 ' , ' Herzegovina ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bosnia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1832 ' , ' Yamato ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Kinai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1833 ' , ' Ji '' an ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Jiangxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1834 ' , ' Dorpat ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Estonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1835 ' , ' Mino ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Western Chubu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1836 ' , ' Luoyang ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Xi '' an ' , ' Conquest of Luoyang ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Henan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1837 ' , ' Etchu ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Hokuriku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1838 ' , ' Hefei ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Anhui ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1839 ' , ' Suruga ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Eastern Chubu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1840 ' , ' Guilin ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Guangxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1841 ' , ' Marienburg ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' West Prussia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1842 ' , ' Narva ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Estonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1843 ' , ' Kozuke ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Western Kanto ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1844 ' , ' Xiankhouang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Luang Prabang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1845 ' , ' Pyeongyang ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Pyongan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1846 ' , ' Amasya ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Rum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1847 ' , ' Shiribeshi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Hokkaido ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1848 ' , ' Hamid ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Germiyan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1849 ' , ' Hama ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Aleppo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1850 ' , ' Yaran ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Furdan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1851 ' , ' Coimbra ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Beiras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1852 ' , ' Tokachi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Hokkaido ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1853 ' , ' Kastoria ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Macedonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1854 ' , ' Jaffa ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Palestine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1855 ' , ' Sidon ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Syria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1856 ' , ' Abkhazia ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Imereti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1857 ' , ' Lauenburg ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lower Saxony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1858 ' , ' Stettin ' , ' 12 ' , ' 5 ' , ' 4 ' , ' 3 ' , ' ' , ' Lübeck ' , ' Oder Estuary ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Vorpommern ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1859 ' , ' Chelmno ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Kuyavia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1860 ' , ' Norfolk ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' East Anglia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1861 ' , ' Derby ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' East Midlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1862 ' , ' Cremona ' , ' 15 ' , ' 6 ' , ' 5 ' , ' 4 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Lombardy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1863 ' , ' Graz ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Inner Austria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1864 ' , ' Somogy ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Transdanubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1865 ' , ' Ghent ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Flanders ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1866 ' , ' Namur ' , ' 17 ' , ' 7 ' , ' 7 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Wallonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1867 ' , ' Vaud ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Romandie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1868 ' , ' Augsburg ' , ' 17 ' , ' 7 ' , ' 6 ' , ' 4 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' East Swabia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1869 ' , ' Zürich ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Switzerland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1870 ' , ' St Gallen ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Switzerland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1871 ' , ' Wallis ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Romandie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1872 ' , ' Ulm ' , ' 15 ' , ' 5 ' , ' 6 ' , ' 4 ' , ' ' , ' Wien ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' East Swabia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1873 ' , ' Chur ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Switzerland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1874 ' , ' Bremen ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Lübeck ' , replace ( ' Natural Harbor\nWeser Estuary ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Weser ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1875 ' , ' Cuneo ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Piedmont ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1876 ' , ' Frankfurt ' , ' 18 ' , ' 7 ' , ' 7 ' , ' 4 ' , ' ' , ' Rheinland ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Hesse ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1877 ' , ' Charolais ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Western Burgundy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1878 ' , ' Aachen ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lower Rhineland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1879 ' , ' Alençon ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Normandy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1880 ' , ' Sundgau ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Alsace ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1881 ' , ' St. Martin ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Leeward Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1882 ' , ' Annaba ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Kabylia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1883 ' , ' Western Finnish Lakes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1884 ' , ' East Finnish Lakes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1885 ' , ' Central Finnish Lakes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1886 ' , ' Storavan ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1887 ' , ' Storsjön ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1888 ' , ' Kara Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1889 ' , ' Lake Geneva ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1890 ' , ' Lake Constance ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1891 ' , ' Lake Tuz ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1892 ' , ' Lake Van ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1893 ' , ' Lake Urmia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1894 ' , ' Sevan Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1895 ' , ' Lake Taihu ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1896 ' , ' Lake Hongze ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1897 ' , ' Dongting ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1898 ' , ' Tonlé Sap Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1899 ' , ' Tana Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1900 ' , ' Lake Turkana ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1901 ' , ' Mpangu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1902 ' , ' Lake Poopo ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1903 ' , ' Lake Champlain ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1904 ' , ' Lake Saint-Jean ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1905 ' , ' Lake Manicouagan ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1906 ' , ' Lake Michikamau ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1907 ' , ' Lake Bienville ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1908 ' , ' Clearwater Lakes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1909 ' , ' Lake Minto ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1910 ' , ' La Grande River ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1911 ' , ' Lake Island ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1912 ' , ' Lake Reindeer ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1913 ' , ' Wollaston Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1914 ' , ' Great Slave Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1915 ' , ' Lake Athabasca ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1916 ' , ' Dubawni Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1917 ' , ' Yathkyed Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1918 ' , ' Kasba Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1919 ' , ' Nueltin Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1920 ' , ' Wholdaia Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1921 ' , ' Peter Pond Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1922 ' , ' Great Salt Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1923 ' , ' Williston Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1924 ' , ' Greenland Tip ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Denmark Strait ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1925 ' , ' Tana ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Kenya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1926 ' , ' Northern Baltic Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Europe ' , ' North Atlantic ' , ' Baltic Sea ' , ' Baltic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1927 ' , ' Eastern Baltic Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Baltic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1928 ' , ' Western Sea of Åland ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' North Atlantic ' , ' Baltic Sea ' , ' Baltic Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1929 ' , ' Western Norwegian Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' Norwegian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1930 ' , ' Åland ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Östra Svealand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1931 ' , ' East Frisia ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' English Channel ' , ' Ems Estuary ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Frisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1932 ' , ' Gulf of Satalia ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Mediterranean Sea ' , ' Mediterranean ' , ' Eastern Mediterranean ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1933 ' , ' Bari ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Apulia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1934 ' , ' Lucania ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Calabria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1935 ' , ' Mitau ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Curonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1936 ' , ' Kovno ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Samogitia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1937 ' , ' Grodno ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Podlasie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1938 ' , ' Wizna ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Mazovia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1939 ' , ' Leczyca ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Central Poland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1940 ' , ' Belz ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Red Ruthenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1941 ' , ' Turov ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Pripyat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1942 ' , ' Zhytomyr ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' West Dniepr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1943 ' , ' Bratslav ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Podolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1944 ' , ' Cherkasy ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' West Dniepr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1945 ' , ' Severia ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Chernigov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1946 ' , ' Satara ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Desh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1947 ' , ' Gingee ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' South Carnatic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1948 ' , ' Bidar ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Deccan ' , ' Market Town ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Maidan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1949 ' , ' Penukonda ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Rayalaseema ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1950 ' , ' Meghalaya ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1951 ' , ' Hunyad ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Southern Transylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1952 ' , ' Maramaros ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Northern Transylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1953 ' , ' Szabolcs ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Alföld ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1954 ' , ' Torontál ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Alföld ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1955 ' , ' Kholmogory ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' White Sea ' , ' Entrepot ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Arkhangelsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1956 ' , ' Suzdal ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Suzdal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1957 ' , ' Galich ' , ' 11 ' , ' 4 ' , ' 5 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Galich ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1958 ' , ' Kargopol ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Pomorye ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1959 ' , ' Torzhok ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Novgorod ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1960 ' , ' Ostrov ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Pskov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1961 ' , ' Ladoga ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' South Karelia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1962 ' , ' Kudymkar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Kama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1963 ' , ' Cherdyn ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' White Sea ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Perm ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1964 ' , ' Ust-Sysolsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Perm ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1965 ' , ' Buzuluk ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Bashkiria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1966 ' , ' Chelyaba ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Bashkiria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1967 ' , ' Khujand ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Ferghana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1968 ' , ' Kulob ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Khuttalan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1969 ' , ' Sozak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Syr Darya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1970 ' , ' Syghnak ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kyzylkum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1971 ' , ' Beljamen ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Lower Don ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1972 ' , ' Udmurtia ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Kama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1973 ' , ' Urgench ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Khiva ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1974 ' , ' Yedishkul ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Yedisan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1975 ' , ' North Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Open sea ' , ' ' , ' North Atlantic ' , ' North Atlantic ' , ' North Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1976 ' , ' Dead Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1977 ' , ' Mälaren ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1978 ' , ' Shetland ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' North Atlantic Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1979 ' , ' Färöarna ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' North Atlantic Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1980 ' , ' Hokuriku Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1981 ' , ' Bornholm ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Denmark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1982 ' , ' Blekinge ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Skåneland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1983 ' , ' Lolland ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Denmark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1984 ' , ' Nordjylland ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' North Jutland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1985 ' , ' Närke ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Västra Svealand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1986 ' , ' New Caledonia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Melanesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1987 ' , ' Society Islands ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Eastern Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1988 ' , ' Rapanui ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Eastern Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1989 ' , ' Tonga ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Polynesian Triangle ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1990 ' , ' Tuvalu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1991 ' , ' Gilbert Islands ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' East Micronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1992 ' , ' Nauru ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1993 ' , ' Marshall Islands ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' East Micronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1994 ' , ' Wake ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' East Micronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1995 ' , ' Micronesia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' West Micronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1996 ' , ' Palau ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' West Micronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1997 ' , ' Midway ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Northern Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1998 ' , ' Christmas Island ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Indian Ocean Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 1999 ' , ' Cocos Island ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Indian Ocean Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2000 ' , ' Qinghai Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2001 ' , ' Siling Lake ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2002 ' , ' Galápagos Islands ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Chimor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2003 ' , ' Ktunaxa ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Interior Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2004 ' , ' Kainaa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Alberta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2005 ' , ' Assapasca ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Assiniboia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2006 ' , ' Ashalaho ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Upper Missouri ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2007 ' , ' Sahnish ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' South Dakota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2008 ' , ' Sihasapa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' South Dakota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2009 ' , ' Oglala ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Central Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2010 ' , ' Pequot ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Connecticut ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2011 ' , ' Senedo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Great Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2012 ' , ' Ersegonteog ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Trois-Rivieres ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2013 ' , ' Allesikantekw ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Maine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2014 ' , ' Natchitoches ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Louisiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2015 ' , ' Outchibou ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Ontario ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2016 ' , ' Amahami ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Red River of the North ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2017 ' , ' Matiyininiwak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Alberta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2018 ' , ' Tsuu T '' ina ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Alberta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2019 ' , ' Nimipu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Snake River ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2020 ' , ' Banakwut ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Snake River ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2021 ' , ' Miwok ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Alta California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2022 ' , ' Haida ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Hecate Strait ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2023 ' , ' Munsee ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Delaware Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2024 ' , ' Garoowe ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Majeerteen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2025 ' , ' South Georgia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' South Atlantic Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2026 ' , ' Tanjore ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Coromandel ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Tanjore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2027 ' , ' Arcot ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' South Carnatic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2028 ' , ' Mahur ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' North Telingana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2029 ' , ' South Kanara ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Kanara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2030 ' , ' Goa ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Coromandel ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Kanara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2031 ' , ' Morasanadu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Mysore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2032 ' , ' Malenadu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Kanara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2033 ' , ' Savanur ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Raichur Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2034 ' , ' Pune ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Desh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2035 ' , ' Gulbarga ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Maidan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2036 ' , ' Baglana ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Tapti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2037 ' , ' Warangal ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' South Telingana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2038 ' , ' Midnapore ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Orissa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2039 ' , ' Sunderbans ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' East Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2040 ' , ' Sadiya ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Assam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2041 ' , ' Manipur ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Naga Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2042 ' , ' Koch Hajo ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Assam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2043 ' , ' Balasore ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Orissa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2044 ' , ' Bhagalpur ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Gaur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2045 ' , ' Rangpur ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' North Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2046 ' , ' Nasirabad ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' North Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2047 ' , ' Tirhut ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Bengal ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Mithila ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2048 ' , ' Jeypore ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Garjat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2049 ' , ' Khurda ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Orissa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2050 ' , ' Chanda ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Berar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2051 ' , ' Gohilvad ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Ahmedabad ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2052 ' , ' Halar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Saurashtra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2053 ' , ' Patan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Patan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2054 ' , ' Ahmadabad ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Ahmedabad ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2055 ' , ' Gorakhpur ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Purvanchal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2056 ' , ' Rewakantha ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Malwa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2057 ' , ' Bhilsa ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Malwa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2058 ' , ' Mewar ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Mewar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2059 ' , ' Kalpi ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Bundelkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2060 ' , ' Upper Doab ' , ' 16 ' , ' 6 ' , ' 6 ' , ' 4 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Upper Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2061 ' , ' Katehar ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Katehar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2062 ' , ' Panipat ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Upper Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2063 ' , ' Etawah ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Lower Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2064 ' , ' Shekhawati ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Jaipur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2065 ' , ' Bhattiana ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Sirhind ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2066 ' , ' Nagaur ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Jangladesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2067 ' , ' Gorwar ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Marwar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2068 ' , ' Siwi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Kalat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2069 ' , ' Kumaon ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Himalayan Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2070 ' , ' Chaubisi Rajya ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Nepal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2071 ' , ' Limbuwan ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Nepal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2072 ' , ' Bhakkar ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Northern Sindh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2073 ' , ' Gilgit ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Kashmir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2074 ' , ' Ladakh ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Kashmir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2075 ' , ' Doaba ' , ' 16 ' , ' 7 ' , ' 7 ' , ' 2 ' , ' ' , ' Lahore ' , ' The Conquest of Amritsar ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Lahore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2076 ' , ' Sialkot ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Lahore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2077 ' , ' Margalla ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Sind Sagar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2078 ' , ' Bannu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Sind Sagar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2079 ' , ' Derajat ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Multan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2080 ' , ' Srikakulam ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Andhra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2081 ' , ' Lakhnor ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' West Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2082 ' , ' Raipur ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Upper Mahanadi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2083 ' , ' Udayagiri ' , ' 8 ' , ' 2 ' , ' 4 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' North Carnatic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2084 ' , ' Konaseema ' , ' 11 ' , ' 3 ' , ' 5 ' , ' 3 ' , ' ' , ' Coromandel ' , ' Godavari Estuary ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Andhra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2085 ' , ' Tiruchirappalli ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Kongu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2086 ' , ' Cholistan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Multan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2087 ' , ' Ajmer ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Gujarat ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Mewar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2088 ' , ' Umarkot ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Southern Sindh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2089 ' , ' Chaul ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Gujarat ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Konkan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2090 ' , ' Kurnool ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Rayalaseema ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2091 ' , ' Tripura ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Tripura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2092 ' , ' Mahadeo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Gondwana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2093 ' , ' Mandsaur ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Malwa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2094 ' , ' Bahreich ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Oudh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2095 ' , ' Varanasi ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Doab ' , replace ( ' Religious Center\nThe Conquest of Varanasi ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Purvanchal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2096 ' , ' Damin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Jharkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2097 ' , ' Baghelkhand ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Baghelkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2098 ' , ' Surguja ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Baghelkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2099 ' , ' Kandy ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , replace ( ' Conquest of the Lankan Temples\nReligious Center ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' South Lanka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2100 ' , ' Vanni ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' North Lanka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2101 ' , ' Tirunelveli ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Madura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2102 ' , ' Albazin ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' West Heilongjiangord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2103 ' , ' Udi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' East Heilongjiangord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2104 ' , ' Birija ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' East Heilongjiangord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2105 ' , ' Kuru ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2106 ' , ' Furdan ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Girin ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Furdan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2107 ' , ' Ningguta ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Ningguta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2108 ' , ' Huncun ' , ' 15 ' , ' 5 ' , ' 5 ' , ' 5 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Ningguta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2109 ' , ' Boduna ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Eastern Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2110 ' , ' Yehe ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Jilin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2111 ' , ' Hetu Ala ' , ' 13 ' , ' 4 ' , ' 4 ' , ' 5 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Jilin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2112 ' , ' Andong ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Liaoning ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2113 ' , ' Gaizhou ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Liaoning ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2114 ' , ' Ereen ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Inner Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2115 ' , ' Chahar ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Chahar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2116 ' , ' Ih Huree ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Outer Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2117 ' , ' Zasagt ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Kobdo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2118 ' , ' Urzhar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' North Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2119 ' , ' Chuguchak ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' North Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2120 ' , ' Ili ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' South Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2121 ' , ' Kuqa ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Central Altishahr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2122 ' , ' Hami ' , ' 8 ' , ' 3 ' , ' 2 ' , ' 3 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Turpan-Kumul ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2123 ' , ' Qakilik ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Shanshan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2124 ' , ' Yarkand ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kashgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2125 ' , ' Kochkor ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Jetysuu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2126 ' , ' Chuy ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Jetysuu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2127 ' , ' Yashilkul ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kashgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2128 ' , ' Tsaparang ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Ngari ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2129 ' , ' Changtang ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2130 ' , ' Nyingchi ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' U ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2131 ' , ' Qamdo ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Kham ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2132 ' , ' Markam ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Kham ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2133 ' , ' Dege ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Chengdu ' , ' Emporium ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Kham ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2134 ' , ' Rebgong ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Amdo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2135 ' , ' Garze ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Kham ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2136 ' , ' Xuanhua ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Hebei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2137 ' , ' Daming ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' South Hebei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2138 ' , ' Wuding ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shandong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2139 ' , ' Laizhou ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Beijing ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shandong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2140 ' , ' Yanzhou ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Beijing ' , replace ( ' Religious Center\nTemple of Confucius ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shandong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2141 ' , ' Xuzhou ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Jiangsu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2142 ' , ' Huai '' an ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Jiangsu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2143 ' , ' Fengyang ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Anhui ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2144 ' , ' Fuyang ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Anhui ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2145 ' , ' Zhenjiang ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' South Jiangsu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2146 ' , ' Ningguo ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' South Anhui ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2147 ' , ' Huizhou ' , ' 12 ' , ' 5 ' , ' 4 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' South Anhui ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2148 ' , ' Shaoxin ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Zhejiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2149 ' , ' Ningbo ' , ' 16 ' , ' 6 ' , ' 7 ' , ' 3 ' , ' ' , ' Hangzhou ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Zhejiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2150 ' , ' Jinhua ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Zhejiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2151 ' , ' Poyang ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' Kilns of Jingdezhen ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Jiangxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2152 ' , ' Jianning ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Fujian ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2153 ' , ' Tingzhou ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Hangzhou ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Fujian ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2154 ' , ' Kelang ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Taiwan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2155 ' , ' Middag ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Taiwan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2156 ' , ' Chaochow ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' East Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2157 ' , ' Waichow ' , ' 17 ' , ' 7 ' , ' 7 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' East Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2158 ' , ' Shiukwan ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' East Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2159 ' , ' Leichow ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' West Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2160 ' , ' Ngaichow ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' West Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2161 ' , ' Limchow ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' West Guangdong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2162 ' , ' Ngchow ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Guangxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2163 ' , ' Liuzhou ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Guangxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2164 ' , ' Namning ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Guangxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2165 ' , ' Pu '' er ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Frontier ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2166 ' , ' Dehong ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Frontier ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2167 ' , ' Lijiang ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Frontier ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2168 ' , ' Bozhou ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Chuannan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2169 ' , ' Langzhong ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Chuanbei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2170 ' , ' Songqu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Chuanbei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2171 ' , ' Xiangyang ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Hubei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2172 ' , ' Jingzhou ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Hubei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2173 ' , ' Yuanling ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Hunan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2174 ' , ' Hengyang ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Hunan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2175 ' , ' Runing ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' South Henan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2176 ' , ' Shangqiu ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' South Henan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2177 ' , ' Ningwu ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shanxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2178 ' , ' Lu '' an ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shanxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2179 ' , ' Yan '' an ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shaanxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2180 ' , ' Tianshui ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' East Gansu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2181 ' , ' Pingliang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' East Gansu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2182 ' , ' Liangzhou ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' West Gansu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2183 ' , ' Taozhou ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' East Gansu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2184 ' , ' Xining ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' West Gansu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2185 ' , ' Mergen ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Central Heilongjiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2186 ' , ' Iman ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Furdan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2187 ' , ' Sartu ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Eastern Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2188 ' , ' Alchuka ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Jilin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2189 ' , ' Tsetserleg ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Uliastai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2190 ' , ' Bayankhongor ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Uliastai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2191 ' , ' Ejin ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Ordos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2192 ' , ' Korla ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Central Altishahr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2193 ' , ' Govi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Gobi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2194 ' , ' Qilian ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2195 ' , ' Adyghe ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Circassia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2196 ' , ' Guria ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Samtskhe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2197 ' , ' Kabardia ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Circassia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2198 ' , ' Khundzia ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Dagestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2199 ' , ' Tarki ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Dagestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2200 ' , ' Suleiman Range ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2201 ' , ' Alania ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Circassia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2202 ' , ' Melikates ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Armenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2203 ' , ' Kakheti ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Kartli-Kakheti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2204 ' , ' Kars ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Samtskhe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2205 ' , ' Nakhchivan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Armenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2206 ' , ' Urmia ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Tabriz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2207 ' , ' Maragheh ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Tabriz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2208 ' , ' Terek ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Dagestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2209 ' , ' Ilam ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Luristan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2210 ' , ' Kirmanshah ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Luristan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2211 ' , ' Ardalan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Shahrizor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2212 ' , ' Zanjan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Azerbaijan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2213 ' , ' Qom ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Iraq-e-Ajam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2214 ' , ' Golestan ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Tabarestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2215 ' , ' Qazvin ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Azerbaijan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2216 ' , ' Semnan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Iraq-e-Ajam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2217 ' , ' Yasuj ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Khuzestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2218 ' , ' Shiraz ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Hormuz ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Farsistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2219 ' , ' Bandar Langeh ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Gulf Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2220 ' , ' Bam ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Kerman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2221 ' , ' Mashhad ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Persia ' , replace ( ' Religious Center\nMarket Town ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Mashhad ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2222 ' , ' Ardakan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Isfahan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2223 ' , ' Larestan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Gulf Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2224 ' , ' Ferah ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Sistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2225 ' , ' Bamyan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Ghor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2226 ' , ' Jalalabad ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Kabulistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2227 ' , ' Kunduz ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Balkh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2228 ' , ' Maymana ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Balkh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2229 ' , ' Bust ' , ' 5 ' , ' 1 ' , ' 1 ' , ' 3 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Sistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2230 ' , ' Chakhansur ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Sistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2231 ' , ' Bela ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Makran ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2232 ' , ' Kharan ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Makran ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2233 ' , ' Chabahar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Makran ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2234 ' , ' Rafsanjan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Kerman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2235 ' , ' Sabzevar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Mashhad ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2236 ' , ' Bojnord ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Mashhad ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2237 ' , ' Tekrur ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Tekrur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2238 ' , ' Kantor ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Futa Jallon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2239 ' , ' Siine ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Jolof ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2240 ' , ' Galam ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Tekrur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2241 ' , ' Beafada ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Guinea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2242 ' , ' Karou ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Guinea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2243 ' , ' Termes ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Baghena ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2244 ' , ' Tagant ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Tekrur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2245 ' , ' Wagadu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Baghena ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2246 ' , ' Baghena ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Baghena ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2247 ' , ' Hodh ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Baghena ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2248 ' , ' Do ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Manding ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2249 ' , ' Sibiridugu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Massina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2250 ' , ' Bendugu ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Massina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2251 ' , ' Guinea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2252 ' , ' Lobi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Kong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2253 ' , ' Gwiriko ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Kong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2254 ' , ' Bonoman ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2255 ' , ' Gyaaman ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2256 ' , ' Dagbon ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2257 ' , ' Denkyira ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' West African Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2258 ' , ' Cape Coast ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' West African Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2259 ' , ' Sah ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Jenne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2260 ' , ' Mema ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Niger Bend ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2261 ' , ' Kala ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Jenne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2262 ' , ' Karabara ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Niger Bend ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2263 ' , ' Haayre ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Jenne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2264 ' , ' Hombori ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Niger Bend ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2265 ' , ' Liptako ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Upper Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2266 ' , ' Bilanga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Upper Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2267 ' , ' Tenkodogo ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Lower Volta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2268 ' , ' Aribanda ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Dendi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2269 ' , ' Zarmaganda ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Dendi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2270 ' , ' Dallol ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Dendi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2271 ' , ' Azawagh ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Western Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2272 ' , ' Azbin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' West Azbin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2273 ' , ' Ader ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' West Azbin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2274 ' , ' Air ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' West Azbin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2275 ' , ' Tenere ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' East Azbin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2276 ' , ' Itesan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' West Azbin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2277 ' , ' Kawar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' East Azbin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2278 ' , ' Kebbi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Zazzau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2279 ' , ' Daura ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Katsina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2280 ' , ' Biram ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Kano ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2281 ' , ' Rano ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Kano ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2282 ' , ' Muniyo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Bornu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2283 ' , ' Bedde ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Bornu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2284 ' , ' Manga ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Bornu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2285 ' , ' Marghi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Adamawa Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2286 ' , ' Logone ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Kanem ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2287 ' , ' Kotoko ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Kanem ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2288 ' , ' Yao ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Kanem ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2289 ' , ' Ondo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Benin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2290 ' , ' Ijebu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Benin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2291 ' , ' Ketu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Atacora Oueme ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2292 ' , ' Moshi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Atacora Oueme ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2293 ' , ' Yawuri ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Zazzau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2294 ' , ' Warri ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Guinea ' , ' Benin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2295 ' , ' Atakora ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Timbuktu ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Niger ' , ' Atacora Oueme ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2296 ' , ' Karasi ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Hüdavendigar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2297 ' , ' Saruhan ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aydin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2298 ' , ' Tekke ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aydin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2299 ' , ' Bolu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Karadeniz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2300 ' , ' Bozok ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Rum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2301 ' , ' Kayseri ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Karaman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2302 ' , ' Içel ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Çukurova ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2303 ' , ' Malatya ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Dulkadir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2304 ' , ' Canik ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Karadeniz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2305 ' , ' Erzincan ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Erzurum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2306 ' , ' Mush ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Anatolia ' , ' Kurdistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2307 ' , ' Van ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Anatolia ' , ' Kurdistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2308 ' , ' Urfa ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Anatolia ' , ' Dulkadir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2309 ' , ' Sinjar ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Al Jazira ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2310 ' , ' Tikrit ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Iraq Arabi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2311 ' , ' Samawat ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Basra ' , ' Religious Center ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Basra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2312 ' , ' Wasit ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Basra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2313 ' , ' Antioch ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Aleppo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2314 ' , ' Rahba ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Al Jazira ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2315 ' , ' Suez ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Red Sea Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2316 ' , ' Al Gharbia ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Alexandria ' , ' Granary of the Mediterranean ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Bahari ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2317 ' , ' Minya ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Vostani ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2318 ' , ' Bahiriya ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' al-Wahat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2319 ' , ' Manfalut ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Said ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2320 ' , ' Ras Gharib ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Red Sea Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2321 ' , ' Queseer ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Red Sea Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2322 ' , ' Wadi Halfa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Lower Nubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2323 ' , ' Sahra an Nübyah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Lower Nubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2324 ' , ' Halaib ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Red Sea Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2325 ' , ' Tarrana ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Cyrenaica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2326 ' , ' Bardiyah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Cyrenaica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2327 ' , ' Maan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Transjordan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2328 ' , ' Al Ula ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Tabuk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2329 ' , ' Yanbu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Medina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2330 ' , ' Ma '' din Sulaym ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Medina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2331 ' , ' Jeddah ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Alexandria ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Mecca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2332 ' , ' Turubah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Mecca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2333 ' , ' Zufra ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Pirate Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2334 ' , ' Badiyat ash Sham ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2335 ' , ' Dawasir ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' al-Yamamah ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2336 ' , ' Aflaj ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' al-Yamamah ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2337 ' , ' Buraydah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' al-Qasim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2338 ' , ' Hafar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' An Nafud ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2339 ' , ' Yabrin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' al-Yamamah ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2340 ' , ' Grane ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Bahrain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2341 ' , ' Masirah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Dhofar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2342 ' , ' Wusta ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Dhofar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2343 ' , ' Kathiri ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Hadramut ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2344 ' , ' Marib ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Upper Yemen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2345 ' , ' Beihan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Lower Yemen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2346 ' , ' Jazan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Tihama al-Yemen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2347 ' , ' Hofuf ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Bahrain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2348 ' , ' Chios ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aegean Archipelago ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2349 ' , ' Kizil-Su ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Transcaspia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2350 ' , ' Konjikala ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Merv ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2351 ' , ' Shekty ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kazakhstan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2352 ' , ' Alty-Kuduk ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Syr Darya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2353 ' , ' Tortkara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kazakhstan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2354 ' , ' Shegendyk ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Aqmola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2355 ' , ' Narym ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Balchash ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2356 ' , ' Shymkent ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Arys ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2357 ' , ' Aksary ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Aqmola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2358 ' , ' Altyn ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kazakhstan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2359 ' , ' Baganaly ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kazakhstan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2360 ' , ' Tobykty ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Balchash ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2361 ' , ' Dzhaman-Kuduk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Syr Darya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2362 ' , ' Gurganj ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Khiva ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2363 ' , ' Atakent ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kyzylkum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2364 ' , ' Talas ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Arys ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2365 ' , ' Orda ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Lower Yik ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2366 ' , ' Utva ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Nogai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2367 ' , ' Lower Yik ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Lower Yik ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2368 ' , ' Karamegdan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Jetysuu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2369 ' , ' Upper Ishim ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Ishim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2370 ' , ' Kungirot ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Khiva ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2371 ' , ' Song La ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Luang Prabang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2372 ' , ' Hai Phong ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Canton ' , ' Red River Estuary ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sông Hông ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2373 ' , ' Hue ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Annam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2374 ' , ' Kauthara ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2375 ' , ' Tay Nguyen ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Tay Nguyen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2376 ' , ' Prek Russey ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' Mekong Estuary ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Mekong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2377 ' , ' Teuk Khmao ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Mekong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2378 ' , ' Kratie ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Angkor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2379 ' , ' Battambang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Cambodia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2380 ' , ' Phnom Penh ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Siam ' , ' Emporium ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Mekong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2381 ' , ' Luang Namtha ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Luang Prabang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2382 ' , ' Savanh Nakhone ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champasak ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2383 ' , ' Khukhanor Surin ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Khorat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2384 ' , ' Nong Khai ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Vientiane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2385 ' , ' Nongbua Lamphu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Vientiane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2386 ' , ' Chaiyaphum ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Khorat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2387 ' , ' Phetchaburi ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' North Tenasserim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2388 ' , ' Phitsanulok ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sukhothai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2389 ' , ' Phra Bang ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sukhothai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2390 ' , ' Chaiya ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Central Tenasserim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2391 ' , ' Thalang ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Central Tenasserim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2392 ' , ' Selangor ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Malacca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2393 ' , ' Terengganu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Malaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2394 ' , ' Kedah ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' North Malaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2395 ' , ' Hkamti Long ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Kachin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2396 ' , ' Mong Kawng ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Kachin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2397 ' , ' Tamanthi ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Chindwin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2398 ' , ' Thaungdut ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Chindwin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2399 ' , ' Pagan ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Upper Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2400 ' , ' Hsipaw ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Shan Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2401 ' , ' Mong Pai ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Karenni ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2402 ' , ' Sandoway ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Rakhine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2403 ' , ' Moulmein ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Lower Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2404 ' , ' Mergui ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' North Tenasserim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2405 ' , ' Bender ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Moldavia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2406 ' , ' Ingil ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Yedisan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2407 ' , ' Pereyaslav ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' East Dniepr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2408 ' , ' Yelets ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Sloboda Ukraine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2409 ' , ' Bahmut ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Lower Don ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2410 ' , ' Theodoro ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Crimea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2411 ' , ' Mansur ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Zaporizhia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2412 ' , ' Kyzyl-Yar ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Zaporizhia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2413 ' , ' Tyn ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Azov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2414 ' , ' Azaraba ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Azov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2415 ' , ' Etkara ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Tambov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2416 ' , ' Majar ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Astrakhan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2417 ' , ' Kuma ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Astrakhan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2418 ' , ' Ukek ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Saratov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2419 ' , ' Kanadey ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Saratov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2420 ' , ' Agyidel ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Bashkiria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2421 ' , ' Juketau ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Volga ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2422 ' , ' Veda-Suvar ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Kazan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2423 ' , ' Alatyr ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Samara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2424 ' , ' Peremyshl ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Red Ruthenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2425 ' , ' Nenets ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2426 ' , ' Yamal ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2427 ' , ' Ostyaki ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Ural ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2428 ' , ' Yugan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Ob ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2429 ' , ' Agan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Ob ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2430 ' , ' Baykha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Central Siberia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2431 ' , ' Uchamin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Tunguska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2432 ' , ' Chulym ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Tunguska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2433 ' , ' Vah ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Ob ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2434 ' , ' Barnaul ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Yrtesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2435 ' , ' Nukhtui ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Yakutia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2436 ' , ' Chuna ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Tunguska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2437 ' , ' Seganka ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Yakutia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2438 ' , ' Kharya ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Sakha ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2439 ' , ' Yarmanka ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kolyma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2440 ' , ' Kagyrgyn ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Kamchatka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2441 ' , ' Iglino ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Ural ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2442 ' , ' Ust-Kut ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Irkutsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2443 ' , ' Kan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Irkutsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2444 ' , ' Bashgird ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Bashkiria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2445 ' , ' Mangazea ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Siberia ' , ' Taz Estuary ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Kara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2446 ' , ' Chara ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' East Siberia ' , ' Buryatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2447 ' , ' Matrega ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Pontic Steppe ' , ' Crimea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2448 ' , ' Fezzan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Fezzan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2449 ' , ' Jufra ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Fezzan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2450 ' , ' Ghadames ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2451 ' , ' Thubaqt ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tripolitania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2452 ' , ' Zuwarah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tripolitania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2453 ' , ' Sfax ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Djerba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2454 ' , ' Kef ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tunisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2455 ' , ' Bizerte ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tunisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2456 ' , ' Touggourt ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2457 ' , ' Mzab ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2458 ' , ' Hodna ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Ouled Nail ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2459 ' , ' Titteri ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Hautes Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2460 ' , ' Saoura ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tafilalt ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2461 ' , ' Dahra ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Barbary Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2462 ' , ' Ouarsenis ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Hautes Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2463 ' , ' Kasdir ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Hautes Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2464 ' , ' Ouarzazate ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Sus ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2465 ' , ' Oujda ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Algiers ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2466 ' , ' Draa ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Safi ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Sus ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2467 ' , ' Meknes ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Central Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2468 ' , ' Tadla ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Central Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2469 ' , ' Dukkala ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Gharb ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2470 ' , ' Haha ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Southern Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2471 ' , ' Chott el-Jerid ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2472 ' , ' Ouargla ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2473 ' , ' Sousse ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tunisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2474 ' , ' Tajarhi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Fezzan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2475 ' , ' Djado ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Katsina ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' East Azbin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2476 ' , ' Kuumeyay ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Alta California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2477 ' , ' Ukom '' nom ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' North California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2478 ' , ' Tachi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Central Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2479 ' , ' Maidu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' North California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2480 ' , ' Shasta ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' North California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2481 ' , ' Maqlaqs ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Oregon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2482 ' , ' Kalapuya ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Oregon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2483 ' , ' Umatalum ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Oregon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2484 ' , ' Aqokulo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Puget Sound ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2485 ' , ' Kwaiailk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Puget Sound ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2486 ' , ' Mamatchatpam ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Columbia River ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2487 ' , ' Sqeliz ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Columbia River ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2488 ' , ' Palus ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Columbia River ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2489 ' , ' Boho '' inee ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Snake River ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2490 ' , ' Kusiutta ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Snake River ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2491 ' , ' Hwalbay ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Arizona ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2492 ' , ' Bedonkohe ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Apacheria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2493 ' , ' Hopituh ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Colorado Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2494 ' , ' Shiwinna ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Colorado Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2495 ' , ' Aa '' ku ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' New Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2496 ' , ' Saldindé ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Llano Estacado ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2497 ' , ' Tsès Sembai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Llano Estacado ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2498 ' , ' Tahuundé ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Pecos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2499 ' , ' Coahuilteco ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' Rio Grande Estuary ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Tamaulipas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2500 ' , ' Tel Kondaha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Texas Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2501 ' , ' Piikani ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Upper Missouri ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2502 ' , ' Haaninin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Upper Missouri ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2503 ' , ' Ashshipite ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Upper Missouri ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2504 ' , ' Eeelalapito ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Badlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2505 ' , ' Tsetsehesahese ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Badlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2506 ' , ' Kuccuntikka ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Snake River ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2507 ' , ' Baachinena ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' High Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2508 ' , ' Skiri ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Central Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2509 ' , ' Utsetha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Ozarks ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2510 ' , ' Hiraaca ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' North Dakota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2511 ' , ' Itscheabine ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Red River of the North ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2512 ' , ' Wahpekute ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Minnesota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2513 ' , ' Moingwena ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Iowa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2514 ' , ' Mishigamaw ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Upper Louisiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2515 ' , ' Satuskhdin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Ozarks ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2516 ' , ' Adai ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Louisiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2517 ' , ' Bdewekhantunwan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Lake Superior ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2518 ' , ' La Pointe ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Lake Superior ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2519 ' , ' Kilatika ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Southern Illinois ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2520 ' , ' Mengkonkia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Southern Illinois ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2521 ' , ' Saginawe ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Michigan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2522 ' , ' Mascouten ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Michigan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2523 ' , ' Piankeshaw ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Indiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2524 ' , ' Waapi-nipi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Indiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2525 ' , ' Chalahgawtha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Ohio ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2526 ' , ' Shatteras ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Kentucky ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2527 ' , ' Atali ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Overmountain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2528 ' , ' Yazoo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Mississippi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2529 ' , ' Natchez ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Mississippi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2530 ' , ' Taneks-Haya ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' West Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2531 ' , ' Abihka ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Alabama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2532 ' , ' Mabila ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Alabama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2533 ' , ' Chatot ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' West Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2534 ' , ' Yustaga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' East Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2535 ' , ' Calusa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2536 ' , ' Mayaimi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2537 ' , ' Ichisi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2538 ' , ' Ocute ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2539 ' , ' Mocama ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2540 ' , ' Etowah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Upper Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2541 ' , ' Saluda ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' South Carolina Piedmont ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2542 ' , ' Cusabo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' South Carolina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2543 ' , ' Waccamaw ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' South Carolina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2544 ' , ' Yadkin ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Piedmont Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2545 ' , ' Waxhaw ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Piedmont Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2546 ' , ' Chicora ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' North Carolina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2547 ' , ' Roanoke ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' North Carolina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2548 ' , ' Tutelo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Great Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2549 ' , ' Moratok ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Virginia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2550 ' , ' Rappahannock ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Virginia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2551 ' , ' Calicula ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Vandalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2552 ' , ' Manahoac ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Great Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2553 ' , ' Patawomac ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Maryland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2554 ' , ' Nentego ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Maryland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2555 ' , ' Honniasont ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' Emporium ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Alleghenies ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2556 ' , ' Onojutta ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Westsylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2557 ' , ' Atrakwaye ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Westsylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2558 ' , ' Espachomy ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' New York ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2559 ' , ' Tekontaroken ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Hudson Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2560 ' , ' Quiripi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Connecticut ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2561 ' , ' Wampanoag ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Massachusetts ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2562 ' , ' Penakuk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' New Hampshire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2563 ' , ' Missiasik ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Lake Champlain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2564 ' , ' Sokoki ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' New Hampshire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2565 ' , ' Kinnipekw ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Maine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2566 ' , ' Peskotomuhkati ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Eastern Maine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2567 ' , ' Tobique ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Eastern Maine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2568 ' , ' Gespogoitnag ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Lower Acadia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2569 ' , ' Eskikeogag ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Lower Acadia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2570 ' , ' Wolastoqiyik ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' St John '' s Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2571 ' , ' Madawaska ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' St John '' s Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2572 ' , ' Sigenigteogag ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Acadia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2573 ' , ' Placentia ' , ' 5 ' , ' 1 ' , ' 3 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Newfoundland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2574 ' , ' Sikumiut ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Labrador ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2575 ' , ' Naskapi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Labrador ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2576 ' , ' Ekuanitshu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Cote Nord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2577 ' , ' Pessamu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Cote Nord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2578 ' , ' Notiskuan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Cote Nord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2579 ' , ' Pekuakamiulnuatsh ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Cote Nord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2580 ' , ' Atikamekw ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Trois-Rivieres ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2581 ' , ' Timiskaming ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Laurentia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2582 ' , ' Animouski ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Québec ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2583 ' , ' Kikonteku ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Québec ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2584 ' , ' Masoliantekw ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Lower Canada ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2585 ' , ' Arendaronon ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Huronia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2586 ' , ' Tionontate ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Canada ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2587 ' , ' Odawa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Canada ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2588 ' , ' Piscatang ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Abitibi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2589 ' , ' Kesagami ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Abitibi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2590 ' , ' Shaggami ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Abitibi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2591 ' , ' Outoulibi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Abitibi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2592 ' , ' Maskekowak ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Hudson Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2593 ' , ' Wappus ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Manitoba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2594 ' , ' Quennebigonhelini ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Hudson Bay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2595 ' , ' Kes-ye-hot '' inne ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Saskatchewan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2596 ' , ' Mahmikiwiniyak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Assiniboia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2597 ' , ' Sipiwininiwak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Saskatchewan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2598 ' , ' Ye Xa Yabine ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Assiniboia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2599 ' , ' Ayabaskawiiniwak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Athabasca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2600 ' , ' Nihithawak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Athabasca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2601 ' , ' Dane-zaa ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Athabasca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2602 ' , ' Siksikawa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Alberta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2603 ' , ' Tsek '' ene ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Athabasca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2604 ' , ' Dakelh ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Interior Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2605 ' , ' Secwepemc ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Interior Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2606 ' , ' Tsilhoqot '' in ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Interior Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2607 ' , ' Syilkx ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Interior Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2608 ' , ' Rocky Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2609 ' , ' Nisga '' a ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Hecate Strait ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2610 ' , ' Heiltsuk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Straits of Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2611 ' , ' Kodiak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Western Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2612 ' , ' Eyak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Western Alaska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2613 ' , ' Sitka ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Cascadia ' , ' Alaska Panhandle ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2614 ' , ' Cotoname ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Tamaulipas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2615 ' , ' Guamares ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Guanajuato ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2616 ' , ' Seri ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Sonora ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2617 ' , ' Huichol ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Jalisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2618 ' , ' Toboso ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Chihuahua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2619 ' , ' Laguneros ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Coahuila ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2620 ' , ' Nakipa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Baja California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2621 ' , ' Tizapan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Jalisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2622 ' , ' Cuitzeo ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Michoacan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2623 ' , ' Cutzamala ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Michoacan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2624 ' , ' Patzcuaro ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Michoacan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2625 ' , ' Hinonoeino ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' High Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2626 ' , ' Tullucan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2627 ' , ' Cihuatlan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Guerrero ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2628 ' , ' Tepeacac ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Puebla ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2629 ' , ' Coyolapan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Oaxaca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2630 ' , ' Tochtepec ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Veracruz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2631 ' , ' Mixe ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Veracruz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2632 ' , ' Xicallanco ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Campeche ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2633 ' , ' Ceh Pech ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' West Yucatan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2634 ' , ' Uaymil ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' East Yucatan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2635 ' , ' Lacandon ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Chiapas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2636 ' , ' Chacujal ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Guatemala Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2637 ' , ' Chortli ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Honduras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2638 ' , ' Xoconochco ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Chiapas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2639 ' , ' Raritan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' New York ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2640 ' , ' Lenca ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Honduras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2641 ' , ' Tziccoac ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Huasteca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2642 ' , ' Metztitlan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Gran Chichimeca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2643 ' , ' Apatzingan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Tierra Caliente ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2644 ' , ' Cholula ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , replace ( ' Cholula Temples\nConquest of Cholula ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Puebla ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2645 ' , ' Teloloapan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Guerrero ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2646 ' , ' Coixtlahuacan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Mixteca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2647 ' , ' Cuetlaxtlan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' Entrepot ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Veracruz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2648 ' , ' Yopitzinco ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Guerrero ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2649 ' , ' Tehuantepec ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Chiapas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2650 ' , ' Champutun ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Campeche ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2651 ' , ' Ah Canul ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' West Yucatan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2652 ' , ' Ecab ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' East Yucatan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2653 ' , ' Iximché ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Guatemala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2654 ' , ' Baracoa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' East Cuba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2655 ' , ' Bayamo ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' East Cuba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2656 ' , ' Camaguey ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' East Cuba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2657 ' , ' Colima ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Jalisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2658 ' , ' Maguana ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Dominica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2659 ' , ' Magua ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Dominica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2660 ' , ' Managua ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Nicaragua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2661 ' , ' Uluas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Nicaragua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2662 ' , ' Olancho ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Honduras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2663 ' , ' Nicoya ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Costa Rica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2664 ' , ' Veraguas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Amazonia ' , ' Colombia ' , ' Panama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2665 ' , ' Eyeish ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Coastal Prairie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2666 ' , ' Tuintsundé ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Coahuila ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2667 ' , ' Cacaxtes ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Coahuila ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2668 ' , ' Borrado ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Tamaulipas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2669 ' , ' Hasinai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Coastal Prairie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2670 ' , ' Tahontaenrat ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Huronia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2671 ' , ' Missisage ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Upper Ontario ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2672 ' , ' Kitkehaki ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Kansas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2673 ' , ' Pasai ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' Malacca ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Aceh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2674 ' , ' Peureulak ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Aceh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2675 ' , ' Rokan ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Riau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2676 ' , ' Indragiri ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Jambi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2677 ' , ' Jambi ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Jambi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2678 ' , ' Bangka ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Lampung ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2679 ' , ' Belitung ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Lampung ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2680 ' , ' Muko-Muko ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Minangkabau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2681 ' , ' Pagarruyung ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Minangkabau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2682 ' , ' Pariaman ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Batak ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2683 ' , ' Mentawai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Minangkabau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2684 ' , ' Nias ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Batak ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2685 ' , ' Gayo ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Aceh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2686 ' , ' Bintan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Johor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2687 ' , ' Pakuan ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Banten ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2688 ' , ' Sumedang ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' West Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2689 ' , ' Pekalongan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Central Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2690 ' , ' Kotagede ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Central Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2691 ' , ' Kediri ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' East Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2692 ' , ' Madura ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Surabaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2693 ' , ' Lombok ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Lesser Sunda Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2694 ' , ' Gangneung ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Eastern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2695 ' , ' East Timor ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Timor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2696 ' , ' Yamdena ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Timor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2697 ' , ' Tondo ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Southern Luzon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2698 ' , ' Pangasinan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Philippines ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Northern Luzon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2699 ' , ' Bikol ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Southern Luzon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2700 ' , ' Panay ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Philippines ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Visayas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2701 ' , ' Tagloc ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' East Mindanao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2702 ' , ' Butuan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Philippines ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' East Mindanao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2703 ' , ' Lehad Datu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Sabah ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2704 ' , ' Sibu ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Brunei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2705 ' , ' Sigalang ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Brunei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2706 ' , ' Katapang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kalimantan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2707 ' , ' Barito ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Banjar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2708 ' , ' Sampit ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Banjar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2709 ' , ' Tarakan ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Sabah ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2710 ' , ' Sambaliung ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kutai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2711 ' , ' Bulungan ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kutai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2712 ' , ' Samarinda ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kutai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2713 ' , ' Gorontalo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' North Sulawesi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2714 ' , ' Palu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' North Sulawesi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2715 ' , ' Palopo ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' South Sulawesi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2716 ' , ' Buton ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' South Sulawesi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2717 ' , ' Sula ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Moluccas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2718 ' , ' Fak-Fak ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Oceania ' , ' East Indies ' , ' Moluccas ' , ' Vogelkop Peninsula ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2719 ' , ' Madang ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Oceania ' , ' East Indies ' , ' Moluccas ' , ' Papuan Peninsula ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2720 ' , ' Lae ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Oceania ' , ' East Indies ' , ' Moluccas ' , ' Papuan Peninsula ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2721 ' , ' Kerema ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Oceania ' , ' East Indies ' , ' Moluccas ' , ' Papuan Peninsula ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2722 ' , ' Daru ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Oceania ' , ' East Indies ' , ' Moluccas ' , ' Papuan Peninsula ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2723 ' , ' Yos Sudarso ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Oceania ' , ' East Indies ' , ' Moluccas ' , ' Vogelkop Peninsula ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2724 ' , ' Asmat ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Oceania ' , ' East Indies ' , ' Moluccas ' , ' Vogelkop Peninsula ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2725 ' , ' Aru ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Timor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2726 ' , ' Malgana ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Pilbara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2727 ' , ' Minang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Perth ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2728 ' , ' Tiwi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Top End ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2729 ' , ' Yolngu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Top End ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2730 ' , ' Awngthim ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Capricornia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2731 ' , ' Guugu Yimithirr ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Capricornia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2732 ' , ' Wulgurukaba ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Capricornia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2733 ' , ' Baiali ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Queensland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2734 ' , ' Yuin ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Victoria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2735 ' , ' Gunditjmara ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Princeland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2736 ' , ' Nukunu ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Princeland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2737 ' , ' Wairarapa ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Te Ika a Maui Waho ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2738 ' , ' Te Tau Ihu ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Te Waipounamu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2739 ' , ' Waikato ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Te Ika a Maui Hauauru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2740 ' , ' Borneo ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2741 ' , ' Jeju ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Southern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2742 ' , ' Yukjin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Hamgyeong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2743 ' , ' Gyeongseong ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Hamgyeong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2744 ' , ' Yeongbyeon ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Pyongan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2745 ' , ' Gyeongju ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Nippon ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Eastern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2746 ' , ' Vidin ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bulgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2747 ' , ' Khara Narin Ula ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Inner Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2748 ' , ' Jianchang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Chuannan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2749 ' , ' Tikhvin ' , ' 11 ' , ' 4 ' , ' 5 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Novgorod ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2750 ' , ' Plovdiv ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bulgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2751 ' , ' Cuenca ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Toledo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2752 ' , ' Romsdal ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Vestlandet ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2753 ' , ' Narbonne ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Languedoc ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2754 ' , ' La Mancha ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Toledo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2755 ' , ' Soria ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Castille ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2756 ' , ' Welayta ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Hadiya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2757 ' , ' Kaffa ' , ' 11 ' , ' 4 ' , ' 3 ' , ' 4 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Kaffa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2758 ' , ' Illubabor ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Kaffa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2759 ' , ' Gambela ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Kaffa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2760 ' , ' Hadiya ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Hadiya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2761 ' , ' Arsi ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Shewa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2762 ' , ' Damot ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Damot ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2763 ' , ' Asosa ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Damot ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2764 ' , ' Ausa ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Aussa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2765 ' , ' Assab ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Aussa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2766 ' , ' Mendefera ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Tigray ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2767 ' , ' Enderta ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Tigray ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2768 ' , ' Angot ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Aussa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2769 ' , ' Lasta ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Central Ethiopia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2770 ' , ' Agew ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Damot ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2771 ' , ' Semien ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Tigray ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2772 ' , ' Dembiya ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Central Ethiopia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2773 ' , ' Mora ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ifat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2774 ' , ' Kismayo ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Northern Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2775 ' , ' Merca ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Mogadishu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2776 ' , ' Afgooye ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ajuuraan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2777 ' , ' Bardera ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Jubba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2778 ' , ' Werder ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ogaden ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2779 ' , ' Afder ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ogaden ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2780 ' , ' Beledweyne ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ajuuraan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2781 ' , ' Gedo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ajuuraan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2782 ' , ' Warsheikh ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Mogadishu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2783 ' , ' Hobyo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Majeerteen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2784 ' , ' Galkayo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Majeerteen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2785 ' , ' El Buur ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ajuuraan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2786 ' , ' Bosaso ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Somaliland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2787 ' , ' Hamasien ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Red Sea Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2788 ' , ' Hafun ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Majeerteen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2789 ' , ' Las Khorey ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Somaliland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2790 ' , ' Sanaag ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Somaliland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2791 ' , ' Ankober ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Shewa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2792 ' , ' Togdheer ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Somaliland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2793 ' , ' Hargeisa ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Ifat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2794 ' , ' Barawa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Mogadishu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2795 ' , ' Meregh ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Mogadishu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2796 ' , ' Pate ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Northern Swahili Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2797 ' , ' Shendy ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Upper Nubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2798 ' , ' Soba ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Upper Nubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2799 ' , ' Sennar ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Sennar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2800 ' , ' Waylula ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Kurdufan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2801 ' , ' Medwa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Central Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2802 ' , ' Kobbe ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Central Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2803 ' , ' Orinoco Delta ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2804 ' , ' Guasipati ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Upper Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2805 ' , ' Uyapari ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Eastern Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2806 ' , ' Guajira ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Coquivacoa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2807 ' , ' Altagracia ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Maracaibo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2808 ' , ' Coro ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Venezuela ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2809 ' , ' Llanos ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Eastern Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2810 ' , ' Apure ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Central Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2811 ' , ' Atabapo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Upper Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2812 ' , ' Pore ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Western Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2813 ' , ' Merida ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Central Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2814 ' , ' Meta ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Western Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2815 ' , ' Puerto Carreno ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Western Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2816 ' , ' Guaviare ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Colombian Amazonas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2817 ' , ' Neiva ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Cordillera Occidental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2818 ' , ' Popayan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Popayan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2819 ' , ' Darien ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Panama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2820 ' , ' Esmeraldas ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Quito ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2821 ' , ' Piwra ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Chimor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2822 ' , ' Tucume ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Chimor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2823 ' , ' Moyobamba ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Ucayali ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2824 ' , ' Wankapampa ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Cajamarca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2825 ' , ' Pisqupampa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Cajamarca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2826 ' , ' Chimbote ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Chimor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2827 ' , ' Huaraz ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Huanuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2828 ' , ' Camana ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Peruan Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2829 ' , ' Ayaviri ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Kuntisuyu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2830 ' , ' Quero ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Kuntisuyu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2831 ' , ' Tiahuanaco ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Antisuyu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2832 ' , ' San Joaquin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Moxos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2833 ' , ' Madre de Dios ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Moxos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2834 ' , ' Santa Cruz de la Sierra ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Beni ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2835 ' , ' Sucre ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Upper Peru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2836 ' , ' Tucuman ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Tucuman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2837 ' , ' Santa Catalina ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Jujuy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2838 ' , ' Tarija ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Upper Peru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2839 ' , ' Puna de Atacama ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Jujuy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2840 ' , ' Calama ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Northern Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2841 ' , ' Antofagasta ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Northern Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2842 ' , ' Santiago del Estero ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Tucuman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2843 ' , ' La Rioja ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Cuyo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2844 ' , ' Chepes ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Cuyo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2845 ' , ' San Juan ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Cuyo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2846 ' , ' Quisquisacate ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' Emporium ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Buenos Aires ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2847 ' , ' San Luis ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Cuyo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2848 ' , ' Santa Fe ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Buenos Aires ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2849 ' , ' Rosario ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Buenos Aires ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2850 ' , ' Montevideo ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Banda Oriental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2851 ' , ' Colonia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Banda Oriental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2852 ' , ' Salto ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Banda Oriental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2853 ' , ' Yapeyú ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Mesopotamia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2854 ' , ' Chaco Central ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Chaco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2855 ' , ' Misiones ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Mesopotamia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2856 ' , ' Highveld ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' South African Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2857 ' , ' Rio Grande do Sul ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Rio Grande do Sul ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2858 ' , ' Santiago ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Mesopotamia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2859 ' , ' Itapúa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Mesopotamia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2860 ' , ' Querandi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Southern Pampas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2861 ' , ' Sauce ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Southern Pampas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2862 ' , ' Coquimbo ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Central Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2863 ' , ' Rio Negro ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Patagonian Andes ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2864 ' , ' Senqu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' South African Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2865 ' , ' Puelches ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Southern Pampas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2866 ' , ' Olavarria ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Southern Pampas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2867 ' , ' Chanar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Neheunken ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2868 ' , ' San Antonio ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' Natural Harbor ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Bahiá Blanca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2869 ' , ' Florida Blanca ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Patagonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2870 ' , ' Tehuelmapu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Patagonian Andes ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2871 ' , ' Poya ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Neheunken ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2872 ' , ' Chiquiyami ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Neheunken ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2873 ' , ' Chiloe ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Southern Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2874 ' , ' Aysen ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Southern Chile ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2875 ' , ' Chubut ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Patagonian Andes ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2876 ' , ' Teush ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Patagonia ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Patagonian Andes ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2877 ' , ' Mendoza ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' La Plata ' , ' Cuyo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2878 ' , ' Matara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Chaco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2879 ' , ' Santa Tecla ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Rio Grande do Sul ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2880 ' , ' Griqualand ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' South African Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2881 ' , ' Corumba ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Ofaie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2882 ' , ' Fuerte Borbon ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Paraguay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2883 ' , ' Melodia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Paraguay ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2884 ' , ' Povos das Missoes ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Rio Grande do Sul ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2885 ' , ' Barra ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Sao Francisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2886 ' , ' Parnaiba ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Piauí ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2887 ' , ' Santa Catarina ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio de La Plata ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Rio Grande do Sul ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2888 ' , ' Cuiaba ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Mato Grosso ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2889 ' , ' Rio Branco ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Amazon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2890 ' , ' Marajó ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Grao Para ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2891 ' , ' Santo Antonio da Manga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Diamantina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2892 ' , ' Araxas ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Minas Gerais ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2893 ' , ' Ofaie ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Ofaie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2894 ' , ' Sao Joao del Rei ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Minas Gerais ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2895 ' , ' Castro ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Guayra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2896 ' , ' Campinas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Sao Paulo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2897 ' , ' Araraquara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Guayra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2898 ' , ' Serro ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Diamantina ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2899 ' , ' Vila Rica ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Minas Gerais ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2900 ' , ' Guapore ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Guapore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2901 ' , ' Cerejeiras ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Guapore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2902 ' , ' Vila Bela ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Guapore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2903 ' , ' Caceres ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Mato Grosso ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2904 ' , ' Diamantino ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Mato Grosso ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2905 ' , ' Rio Das Mortes ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Mato Grosso ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2906 ' , ' Ipora ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Goias ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2907 ' , ' Vila Boa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Goias ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2908 ' , ' Arrial dos Couros ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Goias ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2909 ' , ' Conceicao ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Pontal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2910 ' , ' Pontal ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Pontal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2911 ' , ' Natividad ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Pontal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2912 ' , ' Sergipe ' , ' 7 ' , ' 2 ' , ' 4 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Pernambuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2913 ' , ' Jeremoabo ' , ' 5 ' , ' 1 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Sao Francisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2914 ' , ' Inhambupe ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Bahia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2915 ' , ' Pambu ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Sao Francisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2916 ' , ' Rio Contas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Bahia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2917 ' , ' Paratinga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Sao Francisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2918 ' , ' Campo Largo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Sao Francisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2919 ' , ' Luziana ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Goias ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2920 ' , ' Coxim ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Ofaie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2921 ' , ' Alagoas ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Pernambuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2922 ' , ' Borborema ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Brazil ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Pernambuco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2923 ' , ' Pastos Bons ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Maranhao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2924 ' , ' Timon ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Maranhao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2925 ' , ' Parnagua ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Piauí ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2926 ' , ' Grajau ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Maranhao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2927 ' , ' Alcantara ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Maranhao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2928 ' , ' Tucurui ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Grao Para ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2929 ' , ' Para ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Grao Para ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2930 ' , ' Santarem ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Amazon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2931 ' , ' Pirara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Upper Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2932 ' , ' Wadai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Sahel ' , ' Central Sahara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2933 ' , ' Barcelos ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Amazon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2934 ' , ' Manaus ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' Emporium ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Amazon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2935 ' , ' Muturu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Amapá ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2936 ' , ' Guyana ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' South America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2937 ' , ' Suriname ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Suriname ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2938 ' , ' Oiapoque ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Brazil ' , ' Amapá ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2939 ' , ' Zaraza ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Eastern Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2940 ' , ' Chichas ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Potosí ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2941 ' , ' Choquechaca ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Upper Peru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2942 ' , ' Charcas ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Upper Peru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2943 ' , ' Chachapoyas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Cajamarca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2944 ' , ' Ucayali ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Ucayali ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2945 ' , ' Yurimaguas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lima ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Ucayali ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2946 ' , ' Quillacas ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Upper Peru ' , ' Potosí ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2947 ' , ' Macaya ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cuiaba ' , ' ' , ' Land ' , ' South America ' , ' Andes ' , ' Peru ' , ' Antisuyu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2948 ' , ' Matamba ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Matamba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2949 ' , ' Mbata ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2950 ' , ' Buhera ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Zimbabwe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2951 ' , ' Manyika ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Zimbabwe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2952 ' , ' Madanda ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Zimbabwe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2953 ' , ' Hjälmaren ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2954 ' , ' Djerba ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Djerba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2955 ' , ' Ingolstadt ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Upper Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2956 ' , ' Straubing ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Lower Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2957 ' , ' Regensburg ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Wien ' , ' Market Town ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Lower Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2958 ' , ' Osterode ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' East Prussia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2959 ' , ' Tarnow ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Sandomierz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2960 ' , ' Nowy Sacz ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Malopolska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2961 ' , ' Lwow ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Krakow ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Red Ruthenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2962 ' , ' Rowne ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Volhynia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2963 ' , ' Notec ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Wielkopolska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2964 ' , ' Altmark ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Saxony-Anhalt ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2965 ' , ' Vogtland ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Thuringia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2966 ' , ' Glogau ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Silesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2967 ' , ' Eger ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Erzgebirge ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2968 ' , ' Budejovice ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Bohemia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2969 ' , ' Sternberg ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Neumark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2970 ' , ' Hradecko ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Bohemia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2971 ' , ' Hoya ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Braunschweig ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2972 ' , ' Paderborn ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' South Westphalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2973 ' , ' Meppen ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' North Westphalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2974 ' , ' Loon ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' South Brabant ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2975 ' , ' Kleves ' , ' 14 ' , ' 5 ' , ' 5 ' , ' 4 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' North Rhine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2976 ' , ' Perugia ' , ' 8 ' , ' 3 ' , ' 4 ' , ' 1 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Lazio-Umbria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2977 ' , ' Urbino ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Venice ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Marche-Abruzzo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2978 ' , ' Arezzo ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Tuscany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2979 ' , ' Novara ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Lombardy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2980 ' , ' Lucca ' , ' 14 ' , ' 6 ' , ' 6 ' , ' 2 ' , ' ' , ' Genoa ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Tuscany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2981 ' , ' Montferrat ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Piedmont ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2982 ' , ' Syracuse ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Eastern Sicily ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2983 ' , ' Salerno ' , ' 10 ' , ' 5 ' , ' 1 ' , ' 4 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Campania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2984 ' , ' Cosenza ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Calabria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2985 ' , ' Capitanata ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Apulia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2986 ' , ' Cagliari ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Western Mediterranean Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2987 ' , ' Urgell ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Catalonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2988 ' , ' Tarragona ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Valencia ' , ' Ebro Estuary ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Catalonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2989 ' , ' Rioja ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Vasconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2990 ' , ' Teruel ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Aragon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2991 ' , ' Forcalquier ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Provence ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2992 ' , ' Albenga ' , ' 13 ' , ' 6 ' , ' 6 ' , ' 1 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Liguria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2993 ' , ' Uckermark ' , ' 8 ' , ' 4 ' , ' 3 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mittelmark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2994 ' , ' Wolgast ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Vorpommern ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2995 ' , ' Stolp ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Hinterpommern ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2996 ' , ' Wismar ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mecklenburg ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2997 ' , ' Tuchola ' , ' 10 ' , ' 3 ' , ' 4 ' , ' 3 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' West Prussia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2998 ' , ' Buzau ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Wallachia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 2999 ' , ' Hormuz ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Hormuz ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Mogostan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 3000 ' , ' Nis ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Serbia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 3001 ' , ' Skopje ' , ' 8 ' , ' 2 ' , ' 4 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Macedonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 3002 ' , ' Visoki ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bosnia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 3003 ' , ' Euboea ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aegean Archipelago ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4020 ' , ' Comoros ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mozambique ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4021 ' , ' Antankara ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Betsimasaraka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4022 ' , ' Iboina ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Sakalava ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4023 ' , ' Tsimihety ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Madagascar Highlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4024 ' , ' Maroantsetra ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Betsimasaraka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4025 ' , ' Vatomandry ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' Natural Harbor ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Betsimasaraka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4026 ' , ' Antemoro ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Southern Madagascar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4027 ' , ' Betsileo ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Madagascar Highlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4028 ' , ' Mahafaly ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Southern Madagascar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4029 ' , ' Antanosy ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Southern Madagascar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4030 ' , ' Bara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Southern Madagascar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4031 ' , ' Antsalova ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Sakalava ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4032 ' , ' Fiherana ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Sakalava ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4033 ' , ' Al Qadarif ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Sennar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4034 ' , ' Makua ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Makuana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4035 ' , ' Ngindo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Makuana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4036 ' , ' Wayao ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Ruvuma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4037 ' , ' Katsekera ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Ruvuma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4038 ' , ' Lolo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Shire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4039 ' , ' Lundu ' , ' 9 ' , ' 3 ' , ' 2 ' , ' 4 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Shire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4040 ' , ' Kalonga ' , ' 10 ' , ' 3 ' , ' 3 ' , ' 4 ' , ' ' , ' Zambezi ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Shire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4041 ' , ' Kinga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Ngonde ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4042 ' , ' Makonde ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Ruvuma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4043 ' , ' Phangwa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Ruvuma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4044 ' , ' Ngonde ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Ngonde ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4045 ' , ' Tumbuka ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Ngonde ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4046 ' , ' Lala ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Upper Zambezi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4047 ' , ' Nsenga ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Upper Zambezi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4048 ' , ' Lomwe ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Makuana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4049 ' , ' Ibo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Zanzibar ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Mozambique ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4050 ' , ' Luangwa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Upper Zambezi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4051 ' , ' Ewaso Ngiro ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Jubba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4052 ' , ' Dawa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' East Africa ' , ' Jubba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4053 ' , ' Turkana ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Kenya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4054 ' , ' Kuria ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Kenya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4055 ' , ' Shamba ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Tanzania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4056 ' , ' Gogo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Tanzania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4057 ' , ' Nyatura ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Tanzania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4058 ' , ' Zigua ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Tanzania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4059 ' , ' Shaga ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Buzinza ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4060 ' , ' Kikuyu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Kenya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4061 ' , ' Buzinza ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Buzinza ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4062 ' , ' Busoga ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Uganda ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4063 ' , ' Karagwe ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Buzinza ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4064 ' , ' Buganda ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Great Lakes ' , ' Market Town ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Uganda ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4065 ' , ' Bunyoro ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Bunyoro ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4066 ' , ' Nkore ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Uganda ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4067 ' , ' Nduga ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Rwanda ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4068 ' , ' Bafuriru ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Rwanda ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4069 ' , ' Bushubi ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Rwanda ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4070 ' , ' Nkoma ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Buha ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4071 ' , ' Buyogoma ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Buha ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4072 ' , ' Ruguru ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Buha ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4073 ' , ' Hehe ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Tanzania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4074 ' , ' Pubungo ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Bunyoro ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4075 ' , ' Lango ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Bunyoro ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4076 ' , ' Muhambwe ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Buha ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4077 ' , ' Rukwa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Great Lakes ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Buha ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4078 ' , ' Mayumba ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongolese Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4079 ' , ' Ngoyo ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Ivory Coast ' , ' Congo Estuary ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongolese Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4080 ' , ' Soyo ' , ' 11 ' , ' 4 ' , ' 3 ' , ' 4 ' , ' ' , ' Ivory Coast ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kongolese Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4081 ' , ' Songo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Lower Kasai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4082 ' , ' Kasanje ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Matamba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4083 ' , ' Shinje ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kasai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4084 ' , ' Malem ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Matamba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4085 ' , ' Yaka ' , ' 8 ' , ' 3 ' , ' 2 ' , ' 3 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Lower Kasai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4086 ' , ' Nunu ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Lower Kasai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4087 ' , ' Kumbana ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kasai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4088 ' , ' Munene ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Lower Kasai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4089 ' , ' Kuba ' , ' 6 ' , ' 2 ' , ' 1 ' , ' 3 ' , ' ' , ' Congo ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Sankuru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4090 ' , ' Songye ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Sankuru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4091 ' , ' Mpasu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kasai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4092 ' , ' Rund ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Congo ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kasai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4093 ' , ' Lwena ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Congo ' , ' Kasai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4094 ' , ' Chokwe ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Chokwe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4095 ' , ' Ishindi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Chokwe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4096 ' , ' Kalundwe ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Sankuru ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4097 ' , ' Luba ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Congo ' , ' Emporium ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Luba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4098 ' , ' Upemba ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Shaba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4099 ' , ' Hemba ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Luba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4100 ' , ' Luapula ' , ' 8 ' , ' 3 ' , ' 2 ' , ' 3 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Shaba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4101 ' , ' Lualaba ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Shaba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4102 ' , ' Bemba ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Shaba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4103 ' , ' Tabwa ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Shaba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4104 ' , ' Lamba ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Zambia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4105 ' , ' Kusu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Luba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4106 ' , ' Lenje ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Zambia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4107 ' , ' Kanongesha ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Chokwe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4108 ' , ' Kaonde ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Zambezi ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Zambia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4109 ' , ' Lega ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Congo ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' Central Africa ' , ' Luba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4110 ' , ' Sutherland ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Highlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4111 ' , ' Saintonge ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Poitou ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4112 ' , ' Quercy ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Guyenne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4113 ' , ' Rovaniemi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Ostrobothnia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4114 ' , ' Jokkmokk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Norrland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4115 ' , ' Mazyr ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Minsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4116 ' , ' Oka ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Oka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4117 ' , ' Bezhetsk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Yaroslavl ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4118 ' , ' Cork ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' North Sea ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Munster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4119 ' , ' Sligo ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Connacht ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4120 ' , ' Kildare ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Leinster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4121 ' , ' Ulster ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Ulster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4122 ' , ' Shenkursk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Arkhangelsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4123 ' , ' Pirkanmaa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Finland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4124 ' , ' Karelia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' North Karelia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4125 ' , ' Szolnok ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Alföld ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4126 ' , ' Bacs ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Transdanubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4127 ' , ' Turda ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Pest ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Northern Transylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4128 ' , ' Királyföld ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Southern Transylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4129 ' , ' Ust-Vym ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Perm ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4130 ' , ' Somerset ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Wessex ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4131 ' , ' Mutsu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Tohoku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4132 ' , ' Mweru ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4133 ' , ' Kivu ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4134 ' , ' Rutanzige ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4135 ' , ' Lake Albert ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4136 ' , ' Zaysan ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4137 ' , ' Alakol ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4138 ' , ' Issyk-Kul ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4139 ' , ' Oulujärvi ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4140 ' , ' Saimaa ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4141 ' , ' Dithmarschen ' , ' 8 ' , ' 2 ' , ' 3 ' , ' 3 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Schleswig-Holstein ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4142 ' , ' Østjylland ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Lübeck ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' North Jutland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4143 ' , ' Smålenene ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Østlandet ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4144 ' , ' Bratsberg ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Østlandet ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4145 ' , ' Agdesiden ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Vestlandet ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4146 ' , ' Langfjella ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4147 ' , ' Rostov ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Vladimir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4148 ' , ' Luki ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Pskov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4149 ' , ' Kolding ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' North Jutland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4150 ' , ' Évora ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Alentejo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4151 ' , ' Enare ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Laponia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4152 ' , ' Kainuu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Ostrobothnia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4153 ' , ' The Scandes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4154 ' , ' The Pyrenees ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4155 ' , ' The Carpathians ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4156 ' , ' The Caucasus ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4157 ' , ' The Alps ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4158 ' , ' Janjiro ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Ethiopia ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Horn of Africa ' , ' Kaffa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4159 ' , ' The Alps ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4160 ' , ' The Alps ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4161 ' , ' The Alps ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4162 ' , ' The Alps ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4163 ' , ' Elfsborg ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Lübeck ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Västra Götaland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4164 ' , ' Dal ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Västra Götaland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4165 ' , ' Göinge ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Skåneland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4166 ' , ' Tiohärad ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Scandinavia ' , ' Östra Götaland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4167 ' , ' High Atlas ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4168 ' , ' High Atlas ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4169 ' , ' Aures ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4170 ' , ' Zagros ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4171 ' , ' Abarquh ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Isfahan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4172 ' , ' Zagros ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4173 ' , ' Syrmia ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Slavonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4174 ' , ' Durrës ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Albania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4175 ' , ' Lezhë ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Albania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4176 ' , ' Branicevo ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Serbia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4177 ' , ' Alborz ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4178 ' , ' Pontic Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4179 ' , ' Hakkari Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4180 ' , ' Hyuga ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Southern Kyushu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4181 ' , ' Higo ' , ' 8 ' , ' 2 ' , ' 3 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Southern Kyushu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4182 ' , ' Hizen ' , ' 9 ' , ' 5 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Northern Kyushu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4183 ' , ' Iwami ' , ' 8 ' , ' 4 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' San '' indo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4184 ' , ' Bizen ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Sanyodo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4185 ' , ' Tango ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' San '' indo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4186 ' , ' Iyo ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Shikoku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4187 ' , ' Kii ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Kinai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4188 ' , ' Shinano ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Eastern Chubu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4189 ' , ' Sagami ' , ' 8 ' , ' 3 ' , ' 2 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Western Kanto ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4190 ' , ' Shimousa ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Eastern Kanto ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4191 ' , ' Shimotsuke ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Eastern Kanto ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4192 ' , ' Ugo ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Tohoku ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4193 ' , ' Oshima ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Hokkaido ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4194 ' , ' Yongping ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Hebei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4195 ' , ' Zhending ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' South Hebei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4196 ' , ' Haizhou ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Hangzhou ' , ' Huang He Estuary ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' North Jiangsu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4197 ' , ' Huangzhou ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' South China ' , ' Hubei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4198 ' , ' Fengxiang ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' North China ' , ' Shaanxi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4199 ' , ' Tongren ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Yun-Gui Hinterland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4200 ' , ' Hulan ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Central Heilongjiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4201 ' , ' Jianzhou ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Girin ' , ' Paektu Mountain ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Jilin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4202 ' , ' Taining ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Eastern Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4203 ' , ' Ju Ud ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Chahar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4204 ' , ' Anding ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Amdo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4205 ' , ' Nagchu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' U ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4206 ' , ' Balikul ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Turpan-Kumul ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4207 ' , ' Turpan ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Turpan-Kumul ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4208 ' , ' Qurqara-usu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' South Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4209 ' , ' Maralbexi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kashgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4210 ' , ' Yangi Hissar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Kashgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4211 ' , ' Dazhou ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Chuanbei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4212 ' , ' Jiazhou ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Sichuan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4213 ' , ' Luzhou ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Chengdu ' , ' ' , ' Land ' , ' Asia ' , ' China ' , ' Xinan ' , ' Chuannan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4214 ' , ' Ulch ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' North Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4215 ' , ' Fudali ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' North Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4216 ' , ' Oroch ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' North Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4217 ' , ' Pijin ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4218 ' , ' Buteha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Cicigar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4219 ' , ' Bayan Tumen ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Xilin Gol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4220 ' , ' Khiagt ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Outer Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4221 ' , ' Dundgovi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Gobi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4222 ' , ' Ulaangom ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Kobdo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4223 ' , ' Hetao ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Ordos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4224 ' , ' Tokai Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4225 ' , ' Hokkaido Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4226 ' , ' Japan Basin ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Sea of Japan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4227 ' , ' Jinju ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Eastern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4228 ' , ' Naju ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Southern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4229 ' , ' Chungju ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Southern Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4230 ' , ' Suwon ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Western Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4231 ' , ' Haeju ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Western Korea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4232 ' , ' Ganggye ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Korea ' , ' Pyongan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4233 ' , ' Bohai Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' East China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4234 ' , ' Western Yellow Sea ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' East China Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4235 ' , ' Vistula Lagoon ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4236 ' , ' Trencin ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Slovakia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4237 ' , ' Olomouc ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Moravia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4238 ' , ' Liegnitz ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Silesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4239 ' , ' Belgrade ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Ragusa ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Serbia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4240 ' , ' Fejér ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Transdanubia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4241 ' , ' Wenden ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Livonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4242 ' , ' Ula ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Minsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4243 ' , ' Toropets ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Tver ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4244 ' , ' Trubchevsk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Smolensk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4245 ' , ' Vyazma ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Smolensk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4246 ' , ' Mstislav ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' White Ruthenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4247 ' , ' Owrucz ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' West Dniepr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4248 ' , ' Kashin ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Tver ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4249 ' , ' Zubtsov ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Tver ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4250 ' , ' Mologa ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Yaroslavl ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4251 ' , ' Mozhaisk ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Moscow ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4252 ' , ' Kolomna ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Moscow ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4253 ' , ' Yuriev ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Novgorod ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Vladimir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4254 ' , ' Starodub ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Suzdal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4255 ' , ' Pronsk ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Ryazan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4256 ' , ' Solvychegodsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Arkhangelsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4257 ' , ' Mezen ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Arkhangelsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4258 ' , ' Onega ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Pomorye ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4259 ' , ' Velsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Beloozero ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4260 ' , ' Vyshny Volochyok ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Novgorod ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4261 ' , ' Ustyuzhna ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Novgorod ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Beloozero ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4262 ' , ' Totma ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Vologda ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4263 ' , ' Sol Galitskaya ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' White Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Russia ' , ' Vologda ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4264 ' , ' Tetyushi ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Kazan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4265 ' , ' Ar-Chally ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Volga ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4266 ' , ' Izhkar ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Kama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4267 ' , ' Bolgar ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kazan ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ural ' , ' Volga ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4268 ' , ' Aqabah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Tabuk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4269 ' , ' Al Wajh ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Tabuk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4270 ' , ' Azraq ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Syrian Desert ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4271 ' , ' Suwayda ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Syrian Desert ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4272 ' , ' Al Jawf ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' An Nafud ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4273 ' , ' Al-Kariatan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' al-Qasim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4274 ' , ' Sudayr ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' al-Qasim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4275 ' , ' Al-Yamamah ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' al-Yamamah ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4276 ' , ' Jabal Tubaiq ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4277 ' , ' Taif ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Mecca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4278 ' , ' Qunfudhah ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Mecca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4279 ' , ' Zabid ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Tihama al-Yemen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4280 ' , ' Taiz ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Lower Yemen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4281 ' , ' Dhamar ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Upper Yemen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4282 ' , ' Sahda ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Asir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4283 ' , ' Shihr ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Gulf of Aden ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Hadramut ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4284 ' , ' Al Ghaydah ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gulf of Aden ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Mahra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4285 ' , ' Baraimi ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Oman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4286 ' , ' Ash Sharqiyah ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Muscat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4287 ' , ' Ibra ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Arabia ' , ' Oman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4288 ' , ' Shatt ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Basra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4289 ' , ' Shushtar ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Khuzestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4290 ' , ' Hoveyzeh ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Khuzestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4291 ' , ' Qazaniya ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Iraq Arabi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4292 ' , ' Mardin ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Al Jazira ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4293 ' , ' Arbil ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Shahrizor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4294 ' , ' Sulaimaniyah ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Shahrizor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4295 ' , ' Hisn Kayfa ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Anatolia ' , ' Kurdistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4296 ' , ' Bitlis ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Anatolia ' , ' Kurdistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4297 ' , ' Homs ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Syria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4298 ' , ' Ayntab ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Asia ' , ' Levant ' , ' Mashriq ' , ' Aleppo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4299 ' , ' Shamakhi ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Shirvan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4300 ' , ' Mianeh ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Azerbaijan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4301 ' , ' Kartli ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Kartli-Kakheti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4302 ' , ' Bayazid ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Armenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4303 ' , ' Oltu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Samtskhe ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4304 ' , ' Khoy ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Tabriz ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4305 ' , ' Shaki ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Shirvan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4306 ' , ' Lakia ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Astrakhan ' , ' ' , ' Land ' , ' Europe ' , ' Persia ' , ' Caucasia ' , ' Dagestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4307 ' , ' Aksaray ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Karaman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4308 ' , ' Denizli ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Germiyan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4309 ' , ' Aydin ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aydin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4310 ' , ' Divrigi ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Aleppo ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Dulkadir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4311 ' , ' Karahisar ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Germiyan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4312 ' , ' Sultanönü ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Ankara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4313 ' , ' Kangiri ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Ankara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4314 ' , ' Kirshehir ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Rum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4315 ' , ' Tokat ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Rum ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4316 ' , ' Sharqiya ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Alexandria ' , ' Granary of the Mediterranean ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Bahari ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4317 ' , ' Buhaira ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Bahari ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4318 ' , ' Atfih ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Vostani ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4319 ' , ' Isna ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Said ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4320 ' , ' Girga ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' Said ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4321 ' , ' Egyptian Desert ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4322 ' , ' Egyptian Desert ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4323 ' , ' Farafreh ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Alexandria ' , ' ' , ' Land ' , ' Africa ' , ' Levant ' , ' Egypt ' , ' al-Wahat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4324 ' , ' Ghuriyan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Herat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4325 ' , ' Sarakhs ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Herat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4326 ' , ' Nishapur ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Mashhad ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4327 ' , ' Jask ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Mogostan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4328 ' , ' Chagai ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4329 ' , ' Fasa ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Farsistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4330 ' , ' Darab ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Farsistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4331 ' , ' Kazerun ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Farsistan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4332 ' , ' Siraf ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hormuz ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Gulf Coast ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4333 ' , ' Dahlak Archipelago ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' Asia ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Red Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4334 ' , ' Tabas ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Birjand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4335 ' , ' Kashan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Isfahan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4336 ' , ' Tun ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Khorasan ' , ' Birjand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4337 ' , ' Savah ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Iraq-e-Ajam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4338 ' , ' Soltanieh ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Azerbaijan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4339 ' , ' Rasht ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Tabarestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4340 ' , ' Astara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Persia ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Caucasia ' , ' Shirvan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4341 ' , ' Sari ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Persia ' , ' Market Town ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Tabarestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4342 ' , ' Malamir ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Basra ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Khuzestan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4343 ' , ' Termez ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Khuttalan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4344 ' , ' Kish ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Khuttalan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4345 ' , ' Saidabad ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Hormuz ' , ' ' , ' Land ' , ' Asia ' , ' Persia ' , ' Persia ' , ' Kerman ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4346 ' , ' Qamr Bay ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Arabian Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4347 ' , ' Pirate Coast ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' Western Indian Ocean ' , ' Arabian Sea ' , ' Persian Gulf ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4348 ' , ' Ifugao ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Northern Luzon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4349 ' , ' Laguna ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Southern Luzon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4350 ' , ' Mindoro ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Southern Luzon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4351 ' , ' Buglas ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Visayas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4352 ' , ' Cebu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Philippines ' , ' Entrepot ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Visayas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4353 ' , ' Leyte ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Visayas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4354 ' , ' Zamboanga ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' West Mindanao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4355 ' , ' Caraga ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' East Mindanao ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4356 ' , ' Taytay ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Philippines ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Palawan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4357 ' , ' Cuyo Archipelago ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4358 ' , ' Philippine Trench ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Inland sea ' , ' ' , ' West Pacific ' , ' East China Sea ' , ' Philipine Sea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4359 ' , ' Ise ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Nippon ' , ' Jingu ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Western Chubu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4360 ' , ' Mikawa ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Eastern Chubu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4361 ' , ' Roxburghshire ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4362 ' , ' Dumfries ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4363 ' , ' Argyll ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Highlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4364 ' , ' Inner Hebrides ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' The Isles ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4365 ' , ' Mann ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' The Isles ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4366 ' , ' Montgomery ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Wales ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4367 ' , ' Hull ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Yorkshire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4368 ' , ' Scarborough ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Yorkshire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4369 ' , ' Carmarthen ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Wales ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4370 ' , ' Bedfordshire ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' East Anglia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4371 ' , ' Sussex ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' London ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4372 ' , ' Coventry ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' West Midlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4373 ' , ' Devon ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Wessex ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4374 ' , ' Dorset ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Wessex ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4375 ' , ' Chester ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Northern England ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4376 ' , ' Leicester ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' East Midlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4377 ' , ' Ormond ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Munster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4378 ' , ' Desmond ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Munster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4379 ' , ' Midlands ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Leinster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4380 ' , ' Donegal ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' North Sea ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Ulster ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4381 ' , ' Oversticht ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Frisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4382 ' , ' Groningen ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Frisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4383 ' , ' Den Haag ' , ' 15 ' , ' 6 ' , ' 6 ' , ' 3 ' , ' ' , ' English Channel ' , ' Rhine Estuary ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Holland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4384 ' , ' Rennais ' , ' 12 ' , ' 4 ' , ' 4 ' , ' 4 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Brittany ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4385 ' , ' Cotentin ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' English Channel ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Normandy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4386 ' , ' Bas-Poitou ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Bordeaux ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Poitou ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4387 ' , ' Angoumois ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Poitou ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4388 ' , ' Chartres ' , ' 16 ' , ' 5 ' , ' 5 ' , ' 6 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Île-de-France ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4389 ' , ' Touraine ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Loire Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4390 ' , ' Troyes ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Champagne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4391 ' , ' Vivarais ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Languedoc ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4392 ' , ' Auxerrois ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Western Burgundy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4393 ' , ' Tabayin ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Chindwin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4394 ' , ' Salin ' , ' 8 ' , ' 3 ' , ' 2 ' , ' 3 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Central Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4395 ' , ' Yamethin ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Central Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4396 ' , ' Prome ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Central Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4397 ' , ' Yawnghwe ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Shan Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4398 ' , ' Mawkmai ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Karenni ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4399 ' , ' Dagon ' , ' 11 ' , ' 5 ' , ' 3 ' , ' 3 ' , ' ' , ' Burma ' , ' Irrawaddy Estuary ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Lower Burma ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4400 ' , ' Naga Hills ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4401 ' , ' Arakan Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4402 ' , ' Gaoligong Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4403 ' , ' Hengduan Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4404 ' , ' Minsin ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Kachin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4405 ' , ' Katha ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Kachin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4406 ' , ' Mong Kung ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Burma ' , ' Shan Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4407 ' , ' Ruhunu ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' South Lanka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4408 ' , ' Salavata ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' North Lanka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4409 ' , ' Trincomale ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Coromandel ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' North Lanka ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4410 ' , ' Kumari ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Malabar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4411 ' , ' Samana ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Sirhind ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4412 ' , ' Dindigul ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Madura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4413 ' , ' Cannanore ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Malabar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4414 ' , ' Salem ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Kongu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4415 ' , ' Negapatam ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Tanjore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4416 ' , ' Tranqebar ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Tanjore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4417 ' , ' Kanchipuram ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' South Carnatic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4418 ' , ' Nellore ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' North Carnatic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4419 ' , ' Adanki ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' North Carnatic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4420 ' , ' Chandragiri ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' North Carnatic ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4421 ' , ' Seringapatam ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Mysore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4422 ' , ' Sira ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Mysore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4423 ' , ' Gutti ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Rayalaseema ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4424 ' , ' Adavani ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Rayalaseema ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4425 ' , ' Kondavidu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Coromandel ' , ' Andhra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4426 ' , ' Chitradurg ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Mysore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4427 ' , ' Honnavara ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Coromandel ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Kanara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4428 ' , ' Mudgal ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Raichur Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4429 ' , ' Rajapur ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Konkan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4430 ' , ' Daman ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Tapti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4431 ' , ' Kolhapur ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Desh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4432 ' , ' Junir ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Ahmednagar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4433 ' , ' Nasik ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Ahmednagar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4434 ' , ' Dharangaon ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Khandesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4435 ' , ' Sholhapur ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Maidan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4436 ' , ' Devarakonda ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' South Telingana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4437 ' , ' Paithre ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Ahmednagar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4438 ' , ' Nander ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' North Telingana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4439 ' , ' Khamammet ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' South Telingana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4440 ' , ' Narayanpur ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Assam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4441 ' , ' Ganjam ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Orissa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4442 ' , ' Washim ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Berar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4443 ' , ' Karanja ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Berar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4444 ' , ' Manidurg ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' North Telingana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4445 ' , ' Kanker ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Garjat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4446 ' , ' Kalahandi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Garjat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4447 ' , ' Patna ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Upper Mahanadi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4448 ' , ' Parlakhimedi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Garjat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4449 ' , ' Jammu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Kashmir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4450 ' , ' Mayurbhanj ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Jharkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4451 ' , ' Sonpur ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Upper Mahanadi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4452 ' , ' Ratanpur ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Upper Mahanadi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4453 ' , ' Thalner ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Khandesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4454 ' , ' Porbandar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Saurashtra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4455 ' , ' Diu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Saurashtra ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4456 ' , ' Jhalavad ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Patan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4457 ' , ' Khambhat ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Gujarat ' , ' World Port ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Ahmedabad ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4458 ' , ' Narbada ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Gondwana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4459 ' , ' Saugor ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Bundelkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4460 ' , ' Handia ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Deccan ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Deccan ' , ' Gondwana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4461 ' , ' Ujjain ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Deccan ' , ' Market Town ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Malwa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4462 ' , ' Vagad ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Mewar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4463 ' , ' Bhatnair ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Sirhind ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4464 ' , ' Bundi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Gird ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4465 ' , ' Ranthambore ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Gird ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4466 ' , ' Mahoba ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Bundelkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4467 ' , ' Kalinjar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Bundelkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4468 ' , ' Bandogarh ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Baghelkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4469 ' , ' Rohtasgarh ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Bihar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4470 ' , ' Soumelpur ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Jharkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4471 ' , ' Bishnupur ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Jharkhand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4472 ' , ' Monghyr ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Bihar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4473 ' , ' Chakla ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Burma ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Tripura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4474 ' , ' Sonargaon ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' East Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4475 ' , ' Fathabad ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' East Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4476 ' , ' Nadia ' , ' 17 ' , ' 7 ' , ' 7 ' , ' 3 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' West Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4477 ' , ' Satgaon ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Bengal ' , ' Natural Harbor ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' West Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4478 ' , ' Haibatnagar ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' East Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4479 ' , ' Goraghat ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' Gaur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4480 ' , ' Mahikantha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Patan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4481 ' , ' Punakha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Bhutan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4482 ' , ' Sikkim ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Bhutan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4483 ' , ' Morang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Nepal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4484 ' , ' Makwanpur ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Mithila ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4485 ' , ' Palpa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Nepal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4486 ' , ' Purnia ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Bengal ' , ' North Bengal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4487 ' , ' Saran ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Mithila ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4488 ' , ' Champaran ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Mithila ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4489 ' , ' Hajipur ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Bengal ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Bihar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4490 ' , ' Ghazipur ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Purvanchal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4491 ' , ' Dang ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Baisi Rajya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4492 ' , ' Doti ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Baisi Rajya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4493 ' , ' Sirmur ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Himalayan Hills ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4494 ' , ' Khairabad ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Oudh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4495 ' , ' Feyzabad ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Oudh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4496 ' , ' Kora ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Lower Doab ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4497 ' , ' Kannauj ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Doab ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Oudh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4498 ' , ' Sambhal ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Katehar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4499 ' , ' Bareily ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Katehar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4500 ' , ' Bharatpur ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Doab ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Jaipur ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4501 ' , ' Bhilwara ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Mewar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4502 ' , ' Merta ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Jangladesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4503 ' , ' Mansura ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Gujarat ' , ' Emporium ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Southern Sindh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4504 ' , ' Nasirpur ' , ' 8 ' , ' 3 ' , ' 4 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Southern Sindh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4505 ' , ' Khairpur ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Northern Sindh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4506 ' , ' Barmer ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Marwar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4507 ' , ' Churu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Jangladesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4508 ' , ' Bahawalpur ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Multan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4509 ' , ' Karor ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Multan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4510 ' , ' Shorkot ' , ' 11 ' , ' 5 ' , ' 4 ' , ' 2 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Lahore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4511 ' , ' Bhera ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Sind Sagar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4512 ' , ' Bharuch ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Gujarat ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Western India ' , ' Ahmedabad ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4513 ' , ' Dipalpur ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Lahore ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4514 ' , ' Sakya ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Tsang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4515 ' , ' Gyirong ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Tsang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4516 ' , ' Purang ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Ngari ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4517 ' , ' Nedong ' , ' 6 ' , ' 2 ' , ' 1 ' , ' 3 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' U ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4518 ' , ' Tsurphu ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Tsang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4519 ' , ' Damxung ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' U ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4520 ' , ' Rutog ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lhasa ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Tibet ' , ' Ngari ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4521 ' , ' Skardu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Lahore ' , ' ' , ' Land ' , ' Asia ' , ' India ' , ' Hindustan ' , ' Kashmir ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4522 ' , ' Aqenganggyai ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4523 ' , ' Inowroclaw ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Kuyavia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4524 ' , ' Dobrzyn ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Kuyavia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4525 ' , ' Rawa ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Mazovia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4526 ' , ' Gniezno ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Wielkopolska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4527 ' , ' Checiny ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Malopolska ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4528 ' , ' Kujawy ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Kuyavia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4529 ' , ' Iasi ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Moldavia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4530 ' , ' Birlad ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Crimea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Moldavia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4531 ' , ' Giurgiu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Wallachia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4532 ' , ' Severin ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Carpathia ' , ' Wallachia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4533 ' , ' Wielun ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Central Poland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4534 ' , ' Upita ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Baltic Sea ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Samogitia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4535 ' , ' Wilkimierz ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Aukstaitija ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4536 ' , ' Lida ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Baltic ' , ' Aukstaitija ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4537 ' , ' Nowogrodek ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Pripyat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4538 ' , ' Chelm ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Volhynia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4539 ' , ' Kremenets ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Volhynia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4540 ' , ' Winnica ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Podolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4541 ' , ' Drohobycz ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Red Ruthenia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4542 ' , ' Lubnie ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' East Dniepr ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4543 ' , ' Rylsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Chernigov ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4544 ' , ' Bobrujsk ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Minsk ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4545 ' , ' Sluck ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Kiev ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Ruthenia ' , ' Pripyat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4546 ' , ' Málaga ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Upper Andalucia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4547 ' , ' Albacete ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Toledo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4548 ' , ' Huelva ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Lower Andalucia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4549 ' , ' Xàtiva ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Valencia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4550 ' , ' Castelló ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Valencia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4551 ' , ' Ávila ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Castille ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4552 ' , ' Palencia ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Asturias ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4553 ' , ' Zamora ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Leon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4554 ' , ' Lugo ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Galicia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4555 ' , ' Pontevedra ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Galicia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4556 ' , ' Aveiro ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Beiras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4557 ' , ' Calatayud ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Aragon ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4558 ' , ' Orense ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Galicia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4559 ' , ' Menorca ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Baleares ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4560 ' , ' Ibiza ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Baleares ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4561 ' , ' Tétouan ' , ' 8 ' , ' 4 ' , ' 2 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4562 ' , ' Mers el Kebir ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Algiers ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4563 ' , ' Salé ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' North Morocco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4564 ' , ' Anfa ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Gharb ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4565 ' , ' Tenerife ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Northern Africa ' , ' Maghreb ' , ' Macaronesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4566 ' , ' Kairwan ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Tunisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4567 ' , ' Sabha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Tunis ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Fezzan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4568 ' , ' Demnate ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Safi ' , ' ' , ' Land ' , ' Africa ' , ' Northern Africa ' , ' Maghreb ' , ' Sus ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4569 ' , ' High Atlas ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Africa ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4570 ' , ' Texcoco ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4571 ' , ' Tlacopan ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4572 ' , ' Malinalco ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4573 ' , ' Acambaro ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Michoacan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4574 ' , ' Ihuatzio ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Michoacan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4575 ' , ' Puruaran ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Tierra Caliente ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4576 ' , ' Amaxocotlan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Jalisco ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4577 ' , ' Tohono ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Sonora ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4578 ' , ' Tzapotzingo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Nayarit ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4579 ' , ' Sayula ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Tierra Caliente ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4580 ' , ' Tecoman ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Tierra Caliente ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4581 ' , ' Yohualtepec ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Mixteca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4582 ' , ' Teotitlan ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Puebla ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4583 ' , ' Xocotla ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Puebla ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4584 ' , ' Mitla ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Oaxaca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4585 ' , ' Tzotzil ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Chiapas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4586 ' , ' Jakaltek ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Chiapas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4587 ' , ' Qumarkaj ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Guatemala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4588 ' , ' Kobox ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' East Yucatan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4589 ' , ' Moran ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Guatemala Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4590 ' , ' Xiu ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' West Yucatan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4591 ' , ' Chikinchel ' , ' 9 ' , ' 4 ' , ' 4 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' East Yucatan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4592 ' , ' Ulva ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Nicaragua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4593 ' , ' Xicaque ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Honduras ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4594 ' , ' Tzul ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Guatemala Lowlands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4595 ' , ' Guaymi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Amazonia ' , ' Colombia ' , ' Panama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4596 ' , ' Kuna ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Popayan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4597 ' , ' Talamanca ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Central America ' , ' Costa Rica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4598 ' , ' Cuauhtochco ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Huasteca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4599 ' , ' Sinu ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Coquivacoa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4600 ' , ' Magangué ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Cordillera Occidental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4601 ' , ' Chimila ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Coquivacoa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4602 ' , ' Motilones ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Bogota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4603 ' , ' Moniquira ' , ' 12 ' , ' 5 ' , ' 5 ' , ' 2 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Bogota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4604 ' , ' Pastos ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Popayan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4605 ' , ' Putumayos ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Colombian Amazonas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4606 ' , ' Chichitames ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Coahuila ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4607 ' , ' Pijaos ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Cordillera Occidental ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4608 ' , ' Achaguas ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Panama ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Western Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4609 ' , ' Variquicimeto ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Maracaibo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4610 ' , ' Yukpa ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Maracaibo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4611 ' , ' Wayuu ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Maracaibo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4612 ' , ' Tacarigua ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Venezuela ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4613 ' , ' Guanaguanare ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Central Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4614 ' , ' Tuneo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Central Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4615 ' , ' Guanipa ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Eastern Llanos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4616 ' , ' Anzoategui ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Venezuela ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4617 ' , ' Guaju ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Amazonas ' , ' ' , ' Land ' , ' South America ' , ' Amazonia ' , ' Colombia ' , ' Upper Guyana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4618 ' , ' Yaquimo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Haiti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4619 ' , ' Marien ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Haiti ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4620 ' , ' Ciguayo ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Dominica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4621 ' , ' Higuey ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' Dominica ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4622 ' , ' Canimar ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' West Cuba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4623 ' , ' Escambrey ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' West Cuba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4624 ' , ' Guane ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Caribbeans ' , ' West Cuba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4625 ' , ' Mayaca ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4626 ' , ' Potano ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Caribbean ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Florida ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4627 ' , ' Tanu ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Texas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4628 ' , ' Nitahendé ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Pecos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4629 ' , ' Ndawe Qoha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Pecos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4630 ' , ' Natahéndé ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Llano Estacado ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4631 ' , ' Naflat ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' New Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4632 ' , ' Tsi '' ya ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' New Mexico ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4633 ' , ' Sobaipuri ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Arizona ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4634 ' , ' Tsék '' aadn ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Apacheria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4635 ' , ' Taaqtam ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Central Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4636 ' , ' Choinumni ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Central Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4637 ' , ' Ohlone ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' California ' , ' Natural Harbor ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Alta California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4638 ' , ' Wint '' uh ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' North California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4639 ' , ' Paipai ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Baja California ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4640 ' , ' Tecpatitlan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Guanajuato ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4641 ' , ' Xilotepec ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Guanajuato ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4642 ' , ' Pame ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Gran Chichimeca ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4643 ' , ' Xiconaque ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Zacatecas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4644 ' , ' Jocome ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Chihuahua ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4645 ' , ' Xochipillan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mexico ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Zacatecas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4646 ' , ' Tarahumara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Durango ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4647 ' , ' Xecora ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Durango ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4648 ' , ' Acaxee ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Mexico ' , ' Durango ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4649 ' , ' Mayo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Sonora ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4650 ' , ' Opata ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' California ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' California ' , ' Sonora ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4651 ' , ' Tsushima ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Nippon ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Japan ' , ' Northern Kyushu ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4652 ' , ' Haicheng ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Liaoning ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4653 ' , ' Maolian ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Ningguta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4654 ' , ' Fu '' erhe ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Ningguta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4655 ' , ' Shilimian ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Furdan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4656 ' , ' Wolanhe ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Furdan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4657 ' , ' Changbai Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4658 ' , ' Nangha '' er ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Sakhalin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4659 ' , ' Tulutingshan ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' East Heilongjiangord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4660 ' , ' Tunhe ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Central Heilongjiang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4661 ' , ' Edala ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' Ningguta ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4662 ' , ' Halacha ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' East Heilongjiangord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4663 ' , ' Hurha ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' South Ilin Hala ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4664 ' , ' Oroqen ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Far East ' , ' Manchuria ' , ' West Heilongjiangord ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4665 ' , ' West Buteha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Cicigar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4666 ' , ' Barag ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Xilin Gol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4667 ' , ' Bayan-Uul ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Xilin Gol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4668 ' , ' Orkhon ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Uliastai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4669 ' , ' Sainshand ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Gobi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4670 ' , ' Urad ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Inner Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4671 ' , ' Kalgan ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Beijing ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Inner Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4672 ' , ' Josutu ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Chahar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4673 ' , ' Ujimqin ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Xilin Gol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4674 ' , ' Korchin ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Eastern Mongolia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4675 ' , ' Bayisingtu ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Girin ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Chahar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4676 ' , ' Badain Jaran ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Xi '' an ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Ordos ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4677 ' , ' Noyon ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Gobi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4678 ' , ' Qaraqorum ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Yumen ' , replace ( ' Annual Kurultai\nEmporium ' , ' \n ' , char ( 10 ) ) , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Uliastai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4679 ' , ' Khovsgol ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Tannu Uriankhai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4680 ' , ' Zakhchin ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Kobdo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4681 ' , ' Olgii ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' North Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4682 ' , ' Monkhkhairkhan ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' Kobdo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4683 ' , ' Altay ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' South Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4684 ' , ' Dzhemenika ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Mongolia ' , ' North Dzungaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4685 ' , ' Karagandy ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Samarkand ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Balchash ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4686 ' , ' Ekibastuz ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Aqmola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4687 ' , ' Imakia ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Yrtesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4688 ' , ' Baraba ' , ' 4 ' , ' 1 ' , ' 1 ' , ' 2 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Yrtesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4689 ' , ' Om ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Yrtesh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4690 ' , ' Ishim ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Aqmola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4691 ' , ' As ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Kara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4692 ' , ' Turgay ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Siberia ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' West Siberia ' , ' Ishim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4693 ' , ' Keriya ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Yumen ' , ' ' , ' Land ' , ' Asia ' , ' Tartary ' , ' Central Asia ' , ' Shanshan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4694 ' , ' Foix ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Gascony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4695 ' , ' Carcassonne ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Valencia ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Languedoc ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4696 ' , ' Toulon ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Provence ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4697 ' , ' La Marche ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Auvergne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4698 ' , ' Cephalonia ' , ' 5 ' , ' 2 ' , ' 1 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Northern Greece ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4699 ' , ' Arta ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Northern Greece ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4700 ' , ' Lesbos ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Levant ' , ' Anatolia ' , ' Aegean Archipelago ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4701 ' , ' Corinth ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Morea ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4702 ' , ' Siroz ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Macedonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4703 ' , ' Kostendil ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bulgaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4704 ' , ' Tirnovo ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Silistria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4705 ' , ' Gumulcine ' , ' 6 ' , ' 2 ' , ' 1 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Thrace ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4706 ' , ' Tolcu ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Silistria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4707 ' , ' Wasserburg ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Upper Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4708 ' , ' Freising ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Upper Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4709 ' , ' Passau ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' East Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4710 ' , ' Bregenz ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Tirol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4711 ' , ' Donauwörth ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' East Swabia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4712 ' , ' Constance ' , ' 13 ' , ' 6 ' , ' 6 ' , ' 1 ' , ' ' , ' Wien ' , ' Emporium ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' West Swabia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4713 ' , ' Urach ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' West Swabia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4714 ' , ' Durlach ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Baden ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4715 ' , ' Rothenburg ' , ' 10 ' , ' 4 ' , ' 5 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Lower Franconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4716 ' , ' Coburg ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Upper Franconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4717 ' , ' Bayreuth ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Upper Franconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4718 ' , ' Aschaffenburg ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Lower Franconia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4719 ' , ' Bresse ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Savoy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4720 ' , ' Geneva ' , ' 13 ' , ' 6 ' , ' 4 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Romandie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4721 ' , ' Fribourg ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Romandie ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4722 ' , ' Illanz ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Switzerland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4723 ' , ' Opole ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Krakow ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Poland ' , ' Silesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4724 ' , ' Pardubice ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Bohemia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4725 ' , ' Jindrichuv Hradec ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Bohemia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4726 ' , ' Ostrava ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Moravia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4727 ' , ' Saluzzo ' , ' 11 ' , ' 3 ' , ' 4 ' , ' 4 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Piedmont ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4728 ' , ' Pavia ' , ' 16 ' , ' 6 ' , ' 5 ' , ' 5 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Lombardy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4729 ' , ' Padova ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Venetia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4730 ' , ' Bologna ' , ' 12 ' , ' 5 ' , ' 4 ' , ' 3 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Emilia-Romagna ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4731 ' , ' Spoleto ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Lazio-Umbria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4732 ' , ' Terracina ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Lazio-Umbria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4733 ' , ' Molise ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Apulia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4734 ' , ' Avellino ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Campania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4735 ' , ' Arborea ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Western Mediterranean Islands ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4736 ' , ' Trapani ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Western Sicily ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4737 ' , ' Girgenti ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Western Sicily ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4738 ' , ' Trieste ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Carniola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4739 ' , ' Bergamo ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Po Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4740 ' , ' Como ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Genoa ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Italy ' , ' Lombardy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4741 ' , ' Halle ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Saxony-Anhalt ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4742 ' , ' Goslar ' , ' 11 ' , ' 5 ' , ' 5 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Saxony-Anhalt ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4743 ' , ' Weimar ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Thuringia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4744 ' , ' Zwickau ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Saxony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4745 ' , ' Rügen ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Vorpommern ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4746 ' , ' Stargard ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Hinterpommern ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4747 ' , ' Dramburg ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Neumark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4748 ' , ' Brandenburg ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mittelmark ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4749 ' , ' Neubrandenburg ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mecklenburg ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4750 ' , ' Krujë ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Albania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4751 ' , ' Cilli ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' Venice ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Carniola ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4752 ' , ' Rijeka ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Ragusa ' , ' Natural Harbor ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Croatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4753 ' , ' Zadar ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Dalmatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4754 ' , ' Kotor ' , ' 7 ' , ' 3 ' , ' 3 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Rascia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4755 ' , ' Podrinje ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Bosnia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4756 ' , ' Bjelovar ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Pest ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Slavonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4757 ' , ' Kolubara ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Serbia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4758 ' , ' Etschtal ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Tirol ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4759 ' , ' Oberkärnten ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Inner Austria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4760 ' , ' Innbaiern ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' East Bavaria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4761 ' , ' Traungau ' , ' 8 ' , ' 2 ' , ' 4 ' , ' 2 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Austria Proper ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4762 ' , ' Wienerwald ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Wien ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Austria Proper ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4763 ' , ' The Alps ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Europe ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4764 ' , ' Salins ' , ' 7 ' , ' 2 ' , ' 3 ' , ' 2 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Eastern Burgundy ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4765 ' , ' Mulhouse ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Alsace ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4766 ' , ' Verdun ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Lorraine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4767 ' , ' Zweibrücken ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' South Germany ' , ' Palatinate ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4768 ' , ' Jülich ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lower Rhineland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4769 ' , ' Lille ' , ' 11 ' , ' 4 ' , ' 5 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' Flanders ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4770 ' , ' Den Bosch ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Low Countries ' , ' North Brabant ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4771 ' , ' Verden ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Weser ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4772 ' , ' Celle ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lower Saxony ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4773 ' , ' Göttingen ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Braunschweig ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4774 ' , ' Fulda ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Hesse ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4775 ' , ' Ravensberg ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Rheinland ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' South Westphalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4776 ' , ' Blois ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Champagne ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Orléanais ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4777 ' , ' Forez ' , ' 7 ' , ' 3 ' , ' 2 ' , ' 2 ' , ' ' , ' Bordeaux ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' France ' , ' Auvergne ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4778 ' , ' Görlitz ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Saxony ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Lusatia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4779 ' , ' Gallipoli ' , ' 6 ' , ' 2 ' , ' 1 ' , ' 3 ' , ' ' , ' Constantinople ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Thrace ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4780 ' , ' Ohrid ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Ragusa ' , ' ' , ' Land ' , ' Europe ' , ' Eastern Europe ' , ' Balkans ' , ' Macedonia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4781 ' , ' Transvaal ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Transvaal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4782 ' , ' Tswana ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Transvaal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4783 ' , ' Swazi ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Transvaal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4784 ' , ' Upper Limpopo ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Cape of Good Hope ' , ' ' , ' Land ' , ' Africa ' , ' Southern Africa ' , ' South Africa ' , ' Transvaal ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4785 ' , ' Sheffield ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' English Channel ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Britain ' , ' Yorkshire ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4786 ' , ' Prignitz ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Lübeck ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' North Germany ' , ' Mecklenburg ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4787 ' , ' Ribatejo ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Alentejo ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4788 ' , ' Plasencia ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Extremadura ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4789 ' , ' Segovia ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Sevilla ' , ' ' , ' Land ' , ' Europe ' , ' Western Europe ' , ' Iberia ' , ' Castille ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4790 ' , ' Pangguyanan ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Banten ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4791 ' , ' Cirebon ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' West Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4792 ' , ' Kendal ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Central Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4793 ' , ' Pajang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Surabaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4794 ' , ' Malang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' East Java ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4795 ' , ' Bone ' , ' 9 ' , ' 3 ' , ' 4 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Makassar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4796 ' , ' Kendari ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' South Sulawesi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4797 ' , ' Soppeng ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Makassar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4798 ' , ' Wajo ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' Makassar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4799 ' , ' Sangkulirang ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kutai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4800 ' , ' Paser ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Banjar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4801 ' , ' Batulican ' , ' 6 ' , ' 2 ' , ' 3 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Banjar ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4802 ' , ' Pontianak ' , ' 13 ' , ' 5 ' , ' 5 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kalimantan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4803 ' , ' Meliau ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kalimantan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4804 ' , ' Kuching ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Kalimantan ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4805 ' , ' Bintulu ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Brunei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4806 ' , ' Kapit ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indonesia ' , ' Brunei ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4807 ' , ' North Borneo ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4808 ' , ' Sumatra ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4809 ' , ' Langkat ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Aceh ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4810 ' , ' Deli ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Riau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4811 ' , ' Barus ' , ' 11 ' , ' 4 ' , ' 4 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Batak ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4812 ' , ' Gerik ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' North Malaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4813 ' , ' Penang ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' North Malaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4814 ' , ' Semantan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Malaya ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4815 ' , ' Singapura ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Johor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4816 ' , ' Rengat ' , ' 7 ' , ' 2 ' , ' 2 ' , ' 3 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Jambi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4817 ' , ' Padang ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Minangkabau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4818 ' , ' Indrapura ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Malacca ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' Minangkabau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4819 ' , ' Quang Ninh ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sông Hông ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4820 ' , ' Hung Hoa ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sông Hông ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4821 ' , ' Nghe An ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Canton ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Annam ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4822 ' , ' Amaravati ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4823 ' , ' Jarai ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Tay Nguyen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4824 ' , ' Rhade ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Tay Nguyen ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4825 ' , ' Pursat ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Cambodia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4826 ' , ' Kampot ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Cambodia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4827 ' , ' Kampom Pous Thom ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Angkor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4828 ' , ' Preah Vihear ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Angkor ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4829 ' , ' Raung Dapey ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Mekong ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4830 ' , ' Rayong ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Central Thailand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4831 ' , ' Bangkok ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Central Thailand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4832 ' , ' Lavo ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Central Thailand ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4833 ' , ' Phetchabun ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sukhothai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4834 ' , ' Suphanburi ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Sukhothai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4835 ' , ' Kanchanburi ' , ' 6 ' , ' 2 ' , ' 2 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Malaya ' , ' North Tenasserim ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4836 ' , ' Si Thep ' , ' 9 ' , ' 3 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Khorat ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4837 ' , ' Muang Ngoi ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Luang Prabang ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4838 ' , ' Roi Et ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champasak ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4839 ' , ' Champasak ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champasak ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4840 ' , ' Xekong ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Champasak ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4841 ' , ' Lamphun ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Chiang Mai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4842 ' , ' Lampang ' , ' 8 ' , ' 3 ' , ' 3 ' , ' 2 ' , ' ' , ' Siam ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Indochina ' , ' Chiang Mai ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4843 ' , ' Annamite Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4844 ' , ' Dawna Hills ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' Asia ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4845 ' , ' Mamuju ' , ' 10 ' , ' 4 ' , ' 4 ' , ' 2 ' , ' ' , ' The Moluccas ' , ' ' , ' Land ' , ' Asia ' , ' East Indies ' , ' Moluccas ' , ' North Sulawesi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4846 ' , ' Woolna ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Top End ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4847 ' , ' Yunawa ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Top End ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4848 ' , ' Mingin ' , ' 4 ' , ' 1 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Capricornia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4849 ' , ' Kurtjar ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Capricornia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4850 ' , ' Biri ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Queensland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4851 ' , ' Gureng ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Brisbane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4852 ' , ' Wuli-Wuli ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Brisbane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4853 ' , ' Bidjara ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Brisbane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4854 ' , ' Badtjala ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Australia ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Brisbane ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4855 ' , ' Yiman ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' New South Wales ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4856 ' , ' Barunggam ' , ' 10 ' , ' 4 ' , ' 3 ' , ' 3 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' New South Wales ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4857 ' , ' Bundjalung ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Illawara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4858 ' , ' Tharawal ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Australia ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Illawara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4859 ' , ' Gundungurra ' , ' 9 ' , ' 4 ' , ' 3 ' , ' 2 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Illawara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4860 ' , ' Dharug ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Illawara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4861 ' , ' Waveroo ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Victoria ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4862 ' , ' Ngadjuri ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Princeland ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4863 ' , ' Nyaki-Nyaki ' , ' 4 ' , ' 2 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Perth ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4864 ' , ' Yuat ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Perth ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4865 ' , ' Kurrama ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Pilbara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4866 ' , ' Mangala ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Pilbara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4867 ' , ' Wunambul ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Pilbara ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4868 ' , ' Pyemmairrener ' , ' 6 ' , ' 1 ' , ' 2 ' , ' 3 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Tasmania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4869 ' , ' Peerapper ' , ' 6 ' , ' 1 ' , ' 2 ' , ' 3 ' , ' ' , ' Australia ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Australia ' , ' Tasmania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4870 ' , ' Willandra Lakes ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' Oceania ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4871 ' , ' Cowasuk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Lake Champlain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4872 ' , ' Wenrohonon ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Iroquoisia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4873 ' , ' Pegwaki ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Maine ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4874 ' , ' Westenhuck ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Massachusetts ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4875 ' , ' Welhikhane ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Alleghenies ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4876 ' , ' Scahentowanen ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Westsylvania ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4877 ' , ' Nottoway ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Virginia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4878 ' , ' Eno ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Piedmont Plateau ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4879 ' , ' Kituwah ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Overmountain ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4880 ' , ' Combahee ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4881 ' , ' Sawokli ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' Upper Georgia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4882 ' , ' Etali ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Chesapeake Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Southeast ' , ' South Carolina Piedmont ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4883 ' , ' Napochi ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Alabama ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4884 ' , ' Houma ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Mississippi ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4885 ' , ' Avoyel ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Arkansas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4886 ' , ' Nasoni ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Ozarks ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4887 ' , ' Cochati ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Western Kentucky ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4888 ' , ' Tatteroa ' , ' 5 ' , ' 1 ' , ' 2 ' , ' 2 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Kentucky ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4889 ' , ' Mohetan ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Vandalia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4890 ' , ' Kichessipirini ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Ottawa Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4891 ' , ' Piktuk ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Lower Acadia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4892 ' , ' Iroquet ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Ottawa Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4893 ' , ' Nebesek ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Trois-Rivieres ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4894 ' , ' Ottagotouemin ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Laurentia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4895 ' , ' Batiscan ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Lower Canada ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4896 ' , ' Meductic ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' St John '' s Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4897 ' , ' Keinouche ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Canada ' , ' Ottawa Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4898 ' , ' Noquet ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Lake Superior ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4899 ' , ' Mamaceqtaw ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Wisconsin ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4900 ' , ' Otoe ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Iowa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4901 ' , ' Saone ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Minnesota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4902 ' , ' Makandwewin ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Red River of the North ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4903 ' , ' Chinko ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Illinois ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4904 ' , ' Espeminkia ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Southern Illinois ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4905 ' , ' Tapouaro ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Iowa ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4906 ' , ' Coiracoentanon ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Upper Louisiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4907 ' , ' Mosopelea ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Ohio ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4908 ' , ' Tawehash ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Southern Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4909 ' , ' Kitsash ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Texas Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4910 ' , ' Tawakoni ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Texas Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4911 ' , ' Nabaydacu ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Rio Grande ' , ' ' , ' Land ' , ' North America ' , ' Central America ' , ' Rio Grande ' , ' Texas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4912 ' , ' Kaniatarowanen ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Gulf of St. Lawrence ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Northeast ' , ' Hudson Valley ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4913 ' , ' Aniyutsi ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Tennessee ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4914 ' , ' Neozho ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Kansas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4915 ' , ' Pitahawirata ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Central Plains ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4916 ' , ' Panka ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' South Dakota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4917 ' , ' Selis ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' Upper Missouri ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4918 ' , ' Hunkpapha ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Plains ' , ' North Dakota ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4919 ' , ' Sihabi ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Manitoba ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4920 ' , ' Wadopabina ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Hudson Bay ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Hudson Bay ' , ' Assiniboia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4921 ' , ' Kuttawa ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Western Kentucky ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4922 ' , ' Pepikokia ' , ' 6 ' , ' 3 ' , ' 2 ' , ' 1 ' , ' ' , ' Ohio ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Great Lakes ' , ' Indiana ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4923 ' , ' Pacaha ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Mississippi River ' , ' ' , ' Land ' , ' North America ' , ' North America ' , ' Mississippi ' , ' Arkansas ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4924 ' , ' Laurentian Massif ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4925 ' , ' White Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4926 ' , ' Adirondacks ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4927 ' , ' Blue Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4928 ' , ' Allegheny Front ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4929 ' , ' Appalachians ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4930 ' , ' Alleghenies ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4931 ' , ' Cumberland Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4932 ' , ' Great Smoky Mountains ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4933 ' , ' Blue Ridge ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Wasteland ' , ' North America ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4934 ' , ' Maui ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Northern Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4935 ' , ' Oahu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' Natural Harbor ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Northern Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4936 ' , ' Kauai ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Northern Polynesia ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4937 ' , ' Lau ' , ' 3 ' , ' 1 ' , ' 1 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Fiji ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4938 ' , ' Vanua Levu ' , ' 5 ' , ' 2 ' , ' 2 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Fiji ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4939 ' , ' Te Urewera ' , ' 8 ' , ' 3 ' , ' 4 ' , ' 1 ' , ' ' , ' Polynesian Triangle ' , ' ' , ' Land ' , ' Oceania ' , ' Oceania ' , ' Oceania ' , ' Te Ika a Maui Waho ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4940 ' , ' Lake Tulare ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , ' ' ) ;
INSERT OR IGNORE INTO provinces VALUES ( ' 4941 ' , ' Lake Cahuilla ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' ' , ' Lake ' , ' ' , ' ' , ' ' , NULL ) ;
CREATE TABLE IF NOT EXISTS claim_types (
claim_type TEXT PRIMARY KEY
) ;
INSERT OR IGNORE INTO claim_types ( CLAIM_TYPE ) VALUES ( " trade " ) , ( " region " ) , ( " area " ) ;
CREATE TABLE IF NOT EXISTS claims (
id INTEGER PRIMARY KEY AUTOINCREMENT ,
player TEXT ,
claim_type TEXT ,
val TEXT ,
FOREIGN KEY ( claim_type ) REFERENCES claim_types ( claim_type )
) ;
-- CREATE TRIGGER check_conflict
-- BEFORE INSERT ON claims
-- BEGIN
-- SELECT RAISE(FAIL, "unknown claim type")
-- FROM claims
-- WHERE NEW.val IN (
-- select provinces.name from claims left join provinces on claims.val = provinces.trade_node where claims.claim_type = 'trade'
-- UNION select provinces.name from claims left join provinces on claims.val = provinces.region where claims.claim_type = 'region'
-- UNION select provinces.name from claims left join provinces on claims.val = provinces.area where claim_type = 'area'
-- );
-- END;
COMMIT ;