├── LICENSE ├── README.md ├── arcgonaut.go ├── coolveticasr.ttf └── examples ├── airports.png ├── data ├── airports.arcgo ├── airports.py └── simple.arcgo └── simple.png /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Max Halford 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # arcgonaut 2 | 3 | ![License](http://img.shields.io/:license-mit-blue.svg) 4 | 5 | Software for creating arc diagrams such as: 6 | 7 | ![Airports](examples/airports.png) 8 | 9 | arcgonaut is written in Go. It uses [Laurent Le Goff](https://github.com/llgcode)'s [draw2d](https://github.com/llgcode/draw2d) for the imaging tools and [Lucas Beyer](https://github.com/lucasb-eyer)'s [go-colorful](https://github.com/lucasb-eyer/go-colorful) for generating colors. The rest is a lot geometry/rescaling. 10 | 11 | In this example the list in the middle corresponds to country names, the arc between names corresponds to the amount the first name is "sending" to the second name. 12 | 13 | ## Setup 14 | 15 | You can install Go [here](https://golang.org/doc/install). 16 | 17 | ```sh 18 | go get https://github.com/MaxHalford/arcgonaut 19 | cd $GOPATH/src/github.com/MaxHalford/arcgonaut 20 | go get 21 | go build 22 | ``` 23 | 24 | ## Usage 25 | 26 | For the moment the tool is usable in the command-line. 27 | 28 | - Naviguate towards the directory where the binary is. 29 | - ``./arcgonaut -f=data/example.arcgo -c1=#ffc3e1`` 30 | 31 | ![Example](examples/simple.png) 32 | 33 | A PNG will be generated into the same directory. The program takes as input a file that has a [specific format](examples/data/simple.arcgo). The file extension doesn't matter. Tile has to be a list of lines where every line takes the shape "Steve>Alice>10" (Steve sends 10 to Alice). 34 | 35 | ## To do 36 | 37 | - Add different file extensions 38 | - Find a way to handle enormous data files. 39 | 40 | ## License 41 | 42 | The MIT License (MIT). Please see the [license file](LICENSE) for more information. 43 | -------------------------------------------------------------------------------- /arcgonaut.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "bufio" 5 | "flag" 6 | "image" 7 | "image/color" 8 | "log" 9 | "math" 10 | "os" 11 | "sort" 12 | "strconv" 13 | "strings" 14 | 15 | "github.com/llgcode/draw2d" 16 | "github.com/llgcode/draw2d/draw2dimg" 17 | "github.com/lucasb-eyer/go-colorful" 18 | ) 19 | 20 | func main() { 21 | 22 | // Command-line input 23 | var in string 24 | var height int 25 | var col1 string 26 | var col2 string 27 | 28 | flag.StringVar(&in, "f", "", `File to be parsed. The file has to 29 | have a certain format. Every line should be "a>b>amount".`) 30 | flag.IntVar(&height, "h", 1980, `Height of the output image. The width 31 | is deduced from the height.`) 32 | flag.StringVar(&col1, "c1", "#eeef61", "Start color of the gradient.") 33 | flag.StringVar(&col2, "c2", "#1e3140", "End color of the gradient.") 34 | 35 | flag.Parse() 36 | 37 | // Parse the arcgo file 38 | names, counter := OpenArcgoFile(in) 39 | 40 | // Comoute width 41 | width := float64(height) * math.Phi * 1.2 42 | // Where the first name is located 43 | top := float64(height) / 10 44 | // Where the last name is located 45 | bottom := float64(height) - top 46 | 47 | // Rescale the counter based on the maximal value 48 | counter = AssignWidths(counter, 1.0, 20.0) 49 | // Assign linearly separated coordinates to each name 50 | coordinates := AssignCoordinates(names, top, bottom) 51 | // Assign "linearly separated" colors to each name 52 | colors := AssignColors(names, col1, col2) 53 | 54 | // Initialize the image 55 | img := image.NewRGBA(image.Rect(0, 0, int(width), height)) 56 | gc := draw2dimg.NewGraphicContext(img) 57 | 58 | // Define the x coordinates for the arcs 59 | xRight := float64(width) * 1.7 / 3.0 60 | xLeft := float64(width) * 1.3 / 3.0 61 | // Graph the arcs 62 | for a := range counter { 63 | // Get the color of the name 64 | gc.SetStrokeColor(colors[a]) 65 | for b := range counter[a] { 66 | // Set where the arc begins 67 | y1 := coordinates[a] 68 | // Set where the arc ends 69 | y2 := coordinates[b] 70 | // Set the width of the arc 71 | z := counter[a][b] 72 | gc.SetLineWidth(2 * z) 73 | // Define on what side the arc is 74 | if y1 < y2 { 75 | // Right side arc 76 | Arc(gc, xRight, y1, y2) 77 | } else { 78 | // Left side arc 79 | Arc(gc, xLeft, y1, y2) 80 | } 81 | } 82 | } 83 | 84 | // Set the font for writing the names 85 | draw2d.SetFontFolder("") 86 | gc.SetFontData(draw2d.FontData{Name: "coolvetica"}) 87 | gc.SetFillColor(image.Black) 88 | fontSize := float64(height / (3 * len(names))) 89 | gc.SetFontSize(fontSize) 90 | 91 | // Write the names 92 | for _, name := range names { 93 | x := width/2.0 - (float64(len(name))*fontSize)/3.8 94 | y := coordinates[name] + fontSize/2 - 2 95 | gc.FillStringAt(name, x, y) 96 | } 97 | // Save to file 98 | path := strings.Split(in, "/") 99 | out := strings.Join([]string{strings.Split(path[len(path)-1], ".")[0], "png"}, ".") 100 | draw2dimg.SaveToPngFile(out, img) 101 | 102 | } 103 | 104 | // Arc draws a link between two points 105 | func Arc(gc draw2d.GraphicContext, x, y1, y2 float64) { 106 | // Center 107 | yc := (y1 + y2) / 2 108 | // x radius 109 | xRadius := y2 - y1 110 | // y radius 111 | yRadius := y2 - yc 112 | // Start at -45 degrees 113 | startAngle := -math.Pi / 2 114 | // 180 degrees = half a circle 115 | angle := math.Pi 116 | gc.ArcTo(x, yc, xRadius, yRadius, startAngle, angle) 117 | gc.Stroke() 118 | gc.Fill() 119 | } 120 | 121 | // OpenArcgoFile opens a .arcgo file and parses it 122 | func OpenArcgoFile(filename string) ([]string, map[string]map[string]float64) { 123 | // Open the file 124 | file, err := os.Open(filename) 125 | if err != nil { 126 | log.Fatal(err) 127 | } 128 | defer file.Close() 129 | // Create a counter 130 | counter := make(map[string]map[string]float64) 131 | // Go through each line of the file 132 | scanner := bufio.NewScanner(file) 133 | for scanner.Scan() { 134 | // Parse the line 135 | line := strings.Split(scanner.Text(), ">") 136 | a, b := line[0], line[1] 137 | amount, err := strconv.ParseFloat(line[2], 64) 138 | if err != nil { 139 | log.Fatal(err) 140 | } 141 | // Add the elements to the counter 142 | if _, ok := counter[a]; ok { 143 | if _, ok := counter[a][b]; ok { 144 | counter[a][b] += amount 145 | } else { 146 | counter[a][b] = amount 147 | } 148 | } else { 149 | counter[a] = make(map[string]float64) 150 | counter[a][b] = amount 151 | } 152 | } 153 | // Extract the names, they have to be unique 154 | encountered := make(map[string]bool) 155 | names := []string{} 156 | for a := range counter { 157 | if encountered[a] == true { 158 | // pass 159 | } else { 160 | encountered[a] = true 161 | names = append(names, a) 162 | } 163 | for b := range counter[a] { 164 | if encountered[b] == true { 165 | // pass 166 | } else { 167 | encountered[b] = true 168 | names = append(names, b) 169 | } 170 | } 171 | } 172 | return names, counter 173 | } 174 | 175 | // AssignCoordinates assigns a y value to each name. 176 | // The y values are linearly separated between the top 177 | // and the bottom. 178 | func AssignCoordinates(names []string, min, max float64) map[string]float64 { 179 | sort.Strings(names) 180 | length := len(names) 181 | step := (max - min) / float64(length-1) 182 | coordinates := make(map[string]float64) 183 | for i, name := range names { 184 | coordinates[name] = min + float64(i)*step 185 | } 186 | return coordinates 187 | } 188 | 189 | // AssignColors assigns an RGB color to each name. 190 | // The colors are generated with the colorful library. 191 | func AssignColors(names []string, minHex, maxHex string) map[string]color.Color { 192 | c1, _ := colorful.Hex(minHex) 193 | c2, _ := colorful.Hex(maxHex) 194 | length := len(names) 195 | colors := make(map[string]color.Color) 196 | for i, name := range names { 197 | c := c1.BlendHsv(c2, float64(i)/float64(length-1)) 198 | m := float64(150) 199 | rgb := color.RGBA{uint8(m * c.R), uint8(m * c.G), uint8(m * c.B), uint8(m)} 200 | colors[name] = rgb 201 | } 202 | return colors 203 | } 204 | 205 | // AssignWidths rescales the counts. This allows 206 | // user values to be negative or/and huge. All the 207 | // values are rescaled in a defined interval so 208 | // that the brush strokes are not too big/invalid. 209 | func AssignWidths(counter map[string]map[string]float64, newMin, newMax float64) map[string]map[string]float64 { 210 | // Search for the minimal and the maximal count values 211 | min := math.Inf(1) 212 | max := math.Inf(-1) 213 | for a := range counter { 214 | for b := range counter[a] { 215 | // Check for new min 216 | if counter[a][b] < min { 217 | min = counter[a][b] 218 | } 219 | // Check for new max 220 | if counter[a][b] > max { 221 | max = counter[a][b] 222 | } 223 | } 224 | } 225 | // Rescale every value 226 | for a := range counter { 227 | for b := range counter[a] { 228 | // Check for new min 229 | normalized := (counter[a][b] - min) / (max - min) 230 | rescaled := normalized*(newMax-newMin) + newMin 231 | counter[a][b] = rescaled 232 | } 233 | } 234 | return counter 235 | } 236 | -------------------------------------------------------------------------------- /coolveticasr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxHalford/arcgonaut/48dce55551cd4da66d83c28d44368949074b766b/coolveticasr.ttf -------------------------------------------------------------------------------- /examples/airports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxHalford/arcgonaut/48dce55551cd4da66d83c28d44368949074b766b/examples/airports.png -------------------------------------------------------------------------------- /examples/data/airports.arcgo: -------------------------------------------------------------------------------- 1 | Afghanistan>Azerbaijan>1 2 | Afghanistan>India>7 3 | Afghanistan>Iran>5 4 | Afghanistan>Kuwait>1 5 | Afghanistan>Pakistan>4 6 | Afghanistan>Tajikistan>1 7 | Afghanistan>Turkey>3 8 | Afghanistan>United Arab Emirates>7 9 | Albania>Austria>1 10 | Albania>Germany>2 11 | Albania>Greece>2 12 | Albania>Italy>27 13 | Albania>Slovenia>1 14 | Albania>Turkey>2 15 | Albania>United Kingdom>1 16 | Algeria>Austria>1 17 | Algeria>Belgium>1 18 | Algeria>Burkina Faso>1 19 | Algeria>Canada>1 20 | Algeria>China>1 21 | Algeria>Cote d'Ivoire>1 22 | Algeria>Egypt>2 23 | Algeria>France>72 24 | Algeria>Germany>3 25 | Algeria>Italy>4 26 | Algeria>Jordan>2 27 | Algeria>Lebanon>1 28 | Algeria>Libya>2 29 | Algeria>Mali>1 30 | Algeria>Malta>1 31 | Algeria>Morocco>3 32 | Algeria>Niger>1 33 | Algeria>Portugal>2 34 | Algeria>Qatar>1 35 | Algeria>Russia>1 36 | Algeria>Saudi Arabia>2 37 | Algeria>Senegal>1 38 | Algeria>Spain>14 39 | Algeria>Switzerland>1 40 | Algeria>Tunisia>3 41 | Algeria>Turkey>6 42 | Algeria>United Arab Emirates>2 43 | Algeria>United Kingdom>3 44 | American Samoa>United States>1 45 | Angola>Brazil>2 46 | Angola>China>1 47 | Angola>Congo (Brazzaville)>1 48 | Angola>Congo (Kinshasa)>4 49 | Angola>Cuba>1 50 | Angola>Ethiopia>2 51 | Angola>France>1 52 | Angola>Germany>1 53 | Angola>Kenya>1 54 | Angola>Morocco>1 55 | Angola>Mozambique>1 56 | Angola>Namibia>3 57 | Angola>Netherlands>1 58 | Angola>Portugal>3 59 | Angola>Sao Tome and Principe>1 60 | Angola>South Africa>3 61 | Angola>Spain>1 62 | Angola>United Arab Emirates>2 63 | Angola>United Kingdom>2 64 | Angola>Zimbabwe>1 65 | Anguilla>Antigua and Barbuda>1 66 | Anguilla>Netherlands Antilles>2 67 | Anguilla>Puerto Rico>2 68 | Anguilla>Virgin Islands>1 69 | Antigua and Barbuda>Anguilla>1 70 | Antigua and Barbuda>Barbados>2 71 | Antigua and Barbuda>Canada>2 72 | Antigua and Barbuda>Dominica>1 73 | Antigua and Barbuda>Dominican Republic>3 74 | Antigua and Barbuda>France>2 75 | Antigua and Barbuda>Germany>1 76 | Antigua and Barbuda>Guadeloupe>2 77 | Antigua and Barbuda>Jamaica>1 78 | Antigua and Barbuda>Netherlands Antilles>1 79 | Antigua and Barbuda>Puerto Rico>1 80 | Antigua and Barbuda>Saint Kitts and Nevis>4 81 | Antigua and Barbuda>Saint Lucia>2 82 | Antigua and Barbuda>Trinidad and Tobago>2 83 | Antigua and Barbuda>United Kingdom>3 84 | Antigua and Barbuda>United States>7 85 | Argentina>Bolivia>2 86 | Argentina>Brazil>28 87 | Argentina>Chile>9 88 | Argentina>Colombia>2 89 | Argentina>Cuba>1 90 | Argentina>Dominican Republic>1 91 | Argentina>Ecuador>1 92 | Argentina>Falkland Islands>1 93 | Argentina>France>2 94 | Argentina>Germany>1 95 | Argentina>Italy>2 96 | Argentina>Mexico>2 97 | Argentina>Netherlands>1 98 | Argentina>Panama>2 99 | Argentina>Paraguay>4 100 | Argentina>Peru>4 101 | Argentina>Spain>4 102 | Argentina>United Kingdom>1 103 | Argentina>United States>10 104 | Argentina>Uruguay>9 105 | Argentina>Venezuela>2 106 | Armenia>Austria>3 107 | Armenia>Belarus>1 108 | Armenia>Czech Republic>2 109 | Armenia>France>3 110 | Armenia>Greece>1 111 | Armenia>Iran>1 112 | Armenia>Italy>1 113 | Armenia>Kazakhstan>1 114 | Armenia>Lebanon>1 115 | Armenia>Poland>1 116 | Armenia>Russia>27 117 | Armenia>Ukraine>2 118 | Armenia>United Arab Emirates>2 119 | Aruba>Canada>2 120 | Aruba>Colombia>2 121 | Aruba>Dominican Republic>2 122 | Aruba>Netherlands>1 123 | Aruba>Netherlands Antilles>3 124 | Aruba>Panama>1 125 | Aruba>Suriname>1 126 | Aruba>United States>21 127 | Aruba>Venezuela>11 128 | Australia>Brunei>1 129 | Australia>Canada>1 130 | Australia>Chile>2 131 | Australia>China>17 132 | Australia>Christmas Island>1 133 | Australia>Cook Islands>1 134 | Australia>East Timor>2 135 | Australia>Fiji>11 136 | Australia>Guam>1 137 | Australia>Hong Kong>16 138 | Australia>India>2 139 | Australia>Indonesia>26 140 | Australia>Japan>15 141 | Australia>Malaysia>14 142 | Australia>Mauritius>1 143 | Australia>Nauru>1 144 | Australia>New Caledonia>4 145 | Australia>New Zealand>77 146 | Australia>Norfolk Island>2 147 | Australia>Papua New Guinea>9 148 | Australia>Philippines>4 149 | Australia>Qatar>2 150 | Australia>Samoa>2 151 | Australia>Singapore>42 152 | Australia>Solomon Islands>2 153 | Australia>South Africa>4 154 | Australia>South Korea>5 155 | Australia>Taiwan>3 156 | Australia>Thailand>14 157 | Australia>Tonga>1 158 | Australia>United Arab Emirates>16 159 | Australia>United States>26 160 | Australia>Vanuatu>7 161 | Australia>Vietnam>4 162 | Austria>Albania>1 163 | Austria>Algeria>1 164 | Austria>Armenia>3 165 | Austria>Azerbaijan>2 166 | Austria>Belarus>2 167 | Austria>Belgium>2 168 | Austria>Bosnia and Herzegovina>1 169 | Austria>Bulgaria>3 170 | Austria>Canada>3 171 | Austria>China>2 172 | Austria>Croatia>6 173 | Austria>Cyprus>3 174 | Austria>Czech Republic>1 175 | Austria>Denmark>5 176 | Austria>Egypt>6 177 | Austria>Finland>2 178 | Austria>France>11 179 | Austria>Georgia>2 180 | Austria>Germany>67 181 | Austria>Greece>36 182 | Austria>Hungary>1 183 | Austria>India>2 184 | Austria>Iran>2 185 | Austria>Iraq>1 186 | Austria>Ireland>1 187 | Austria>Israel>3 188 | Austria>Italy>28 189 | Austria>Japan>2 190 | Austria>Jordan>3 191 | Austria>Kazakhstan>2 192 | Austria>Latvia>2 193 | Austria>Lithuania>1 194 | Austria>Luxembourg>2 195 | Austria>Macedonia>1 196 | Austria>Malta>4 197 | Austria>Moldova>1 198 | Austria>Montenegro>2 199 | Austria>Netherlands>5 200 | Austria>Norway>2 201 | Austria>Poland>4 202 | Austria>Portugal>6 203 | Austria>Qatar>1 204 | Austria>Romania>8 205 | Austria>Russia>13 206 | Austria>Serbia>3 207 | Austria>Slovakia>1 208 | Austria>Slovenia>2 209 | Austria>Spain>40 210 | Austria>Sweden>4 211 | Austria>Switzerland>14 212 | Austria>Taiwan>1 213 | Austria>Thailand>3 214 | Austria>Tunisia>1 215 | Austria>Turkey>19 216 | Austria>Ukraine>10 217 | Austria>United Arab Emirates>2 218 | Austria>United Kingdom>11 219 | Austria>United States>6 220 | Azerbaijan>Afghanistan>1 221 | Azerbaijan>Austria>2 222 | Azerbaijan>Belarus>1 223 | Azerbaijan>China>2 224 | Azerbaijan>Czech Republic>2 225 | Azerbaijan>France>2 226 | Azerbaijan>Georgia>2 227 | Azerbaijan>Germany>3 228 | Azerbaijan>Hungary>1 229 | Azerbaijan>Iran>3 230 | Azerbaijan>Israel>1 231 | Azerbaijan>Italy>4 232 | Azerbaijan>Kazakhstan>4 233 | Azerbaijan>Latvia>2 234 | Azerbaijan>Qatar>2 235 | Azerbaijan>Russia>21 236 | Azerbaijan>Turkey>6 237 | Azerbaijan>Turkmenistan>2 238 | Azerbaijan>Ukraine>3 239 | Azerbaijan>United Arab Emirates>2 240 | Azerbaijan>United Kingdom>2 241 | Azerbaijan>Uzbekistan>1 242 | Bahamas>Canada>3 243 | Bahamas>Cayman Islands>1 244 | Bahamas>Cuba>2 245 | Bahamas>Jamaica>1 246 | Bahamas>Panama>1 247 | Bahamas>Turks and Caicos Islands>4 248 | Bahamas>United Kingdom>1 249 | Bahamas>United States>72 250 | Bahrain>Cyprus>1 251 | Bahrain>Egypt>2 252 | Bahrain>Ethiopia>1 253 | Bahrain>France>1 254 | Bahrain>Germany>1 255 | Bahrain>India>7 256 | Bahrain>Iran>3 257 | Bahrain>Iraq>2 258 | Bahrain>Jordan>2 259 | Bahrain>Kuwait>4 260 | Bahrain>Lebanon>1 261 | Bahrain>Oman>3 262 | Bahrain>Pakistan>6 263 | Bahrain>Philippines>2 264 | Bahrain>Qatar>10 265 | Bahrain>Saudi Arabia>8 266 | Bahrain>Sri Lanka>2 267 | Bahrain>Sudan>1 268 | Bahrain>Thailand>3 269 | Bahrain>Turkey>2 270 | Bahrain>United Arab Emirates>16 271 | Bahrain>United Kingdom>4 272 | Bahrain>Yemen>2 273 | Bangladesh>Bhutan>1 274 | Bangladesh>Burma>1 275 | Bangladesh>China>2 276 | Bangladesh>Hong Kong>3 277 | Bangladesh>India>12 278 | Bangladesh>Italy>1 279 | Bangladesh>Kuwait>2 280 | Bangladesh>Malaysia>6 281 | Bangladesh>Nepal>4 282 | Bangladesh>Oman>5 283 | Bangladesh>Pakistan>1 284 | Bangladesh>Qatar>2 285 | Bangladesh>Saudi Arabia>7 286 | Bangladesh>Singapore>4 287 | Bangladesh>Sri Lanka>2 288 | Bangladesh>Thailand>7 289 | Bangladesh>Turkey>1 290 | Bangladesh>United Arab Emirates>9 291 | Bangladesh>United Kingdom>1 292 | Barbados>Antigua and Barbuda>2 293 | Barbados>Brazil>1 294 | Barbados>Canada>2 295 | Barbados>Dominica>1 296 | Barbados>Germany>1 297 | Barbados>Grenada>1 298 | Barbados>Guyana>1 299 | Barbados>Jamaica>1 300 | Barbados>Martinique>1 301 | Barbados>Netherlands Antilles>1 302 | Barbados>Saint Lucia>1 303 | Barbados>Saint Vincent and the Grenadines>1 304 | Barbados>Trinidad and Tobago>1 305 | Barbados>United Kingdom>5 306 | Barbados>United States>3 307 | Belarus>Armenia>1 308 | Belarus>Austria>2 309 | Belarus>Azerbaijan>1 310 | Belarus>Cyprus>1 311 | Belarus>Czech Republic>2 312 | Belarus>Finland>2 313 | Belarus>France>2 314 | Belarus>Georgia>3 315 | Belarus>Germany>4 316 | Belarus>Hungary>1 317 | Belarus>Iran>1 318 | Belarus>Israel>1 319 | Belarus>Italy>2 320 | Belarus>Kazakhstan>1 321 | Belarus>Latvia>2 322 | Belarus>Lebanon>1 323 | Belarus>Lithuania>1 324 | Belarus>Netherlands>1 325 | Belarus>Poland>2 326 | Belarus>Russia>12 327 | Belarus>Spain>1 328 | Belarus>Sweden>1 329 | Belarus>Switzerland>1 330 | Belarus>Turkey>2 331 | Belarus>Turkmenistan>1 332 | Belarus>Ukraine>2 333 | Belarus>United Arab Emirates>2 334 | Belarus>United Kingdom>1 335 | Belgium>Algeria>1 336 | Belgium>Angola>4 337 | Belgium>Austria>2 338 | Belgium>Benin>4 339 | Belgium>Bulgaria>4 340 | Belgium>Burkina Faso>4 341 | Belgium>Burundi>4 342 | Belgium>Cameroon>9 343 | Belgium>Canada>7 344 | Belgium>China>2 345 | Belgium>Congo (Kinshasa)>1 346 | Belgium>Cote d'Ivoire>3 347 | Belgium>Croatia>5 348 | Belgium>Cyprus>2 349 | Belgium>Czech Republic>4 350 | Belgium>Denmark>5 351 | Belgium>Egypt>2 352 | Belgium>Estonia>2 353 | Belgium>Finland>1 354 | Belgium>France>34 355 | Belgium>Germany>15 356 | Belgium>Greece>20 357 | Belgium>Hungary>3 358 | Belgium>Iceland>1 359 | Belgium>India>4 360 | Belgium>Ireland>3 361 | Belgium>Israel>2 362 | Belgium>Italy>44 363 | Belgium>Latvia>2 364 | Belgium>Lebanon>1 365 | Belgium>Lithuania>5 366 | Belgium>Macedonia>1 367 | Belgium>Malta>2 368 | Belgium>Montenegro>2 369 | Belgium>Morocco>22 370 | Belgium>Netherlands>1 371 | Belgium>Norway>3 372 | Belgium>Poland>6 373 | Belgium>Portugal>18 374 | Belgium>Qatar>1 375 | Belgium>Romania>4 376 | Belgium>Russia>2 377 | Belgium>Rwanda>5 378 | Belgium>Senegal>5 379 | Belgium>Serbia>2 380 | Belgium>Sierra Leone>3 381 | Belgium>Slovakia>1 382 | Belgium>Slovenia>3 383 | Belgium>Spain>57 384 | Belgium>Sweden>7 385 | Belgium>Switzerland>9 386 | Belgium>Thailand>2 387 | Belgium>Tunisia>4 388 | Belgium>Turkey>8 389 | Belgium>Ukraine>2 390 | Belgium>United Arab Emirates>3 391 | Belgium>United Kingdom>17 392 | Belgium>United States>21 393 | Belize>El Salvador>1 394 | Belize>Guatemala>2 395 | Belize>Honduras>2 396 | Belize>Mexico>2 397 | Belize>United States>10 398 | Benin>Burkina Faso>1 399 | Benin>Cameroon>4 400 | Benin>Congo (Brazzaville)>7 401 | Benin>Cote d'Ivoire>8 402 | Benin>Equatorial Guinea>2 403 | Benin>Ethiopia>1 404 | Benin>France>1 405 | Benin>Gabon>3 406 | Benin>Ghana>1 407 | Benin>Kenya>1 408 | Benin>Mali>3 409 | Benin>Niger>1 410 | Benin>Nigeria>3 411 | Benin>Senegal>2 412 | Benin>Togo>3 413 | Bermuda>Canada>2 414 | Bermuda>United Kingdom>2 415 | Bermuda>United States>11 416 | Bhutan>Bangladesh>1 417 | Bhutan>India>3 418 | Bhutan>Nepal>1 419 | Bolivia>Argentina>2 420 | Bolivia>Brazil>2 421 | Bolivia>Chile>3 422 | Bolivia>Colombia>1 423 | Bolivia>Panama>1 424 | Bolivia>Paraguay>2 425 | Bolivia>Peru>8 426 | Bolivia>Spain>2 427 | Bolivia>United States>2 428 | Bosnia and Herzegovina>Austria>1 429 | Bosnia and Herzegovina>Croatia>1 430 | Bosnia and Herzegovina>Denmark>1 431 | Bosnia and Herzegovina>Germany>4 432 | Bosnia and Herzegovina>Italy>1 433 | Bosnia and Herzegovina>Serbia>3 434 | Bosnia and Herzegovina>Slovenia>1 435 | Bosnia and Herzegovina>Sweden>1 436 | Bosnia and Herzegovina>Switzerland>1 437 | Bosnia and Herzegovina>Turkey>4 438 | Botswana>Kenya>1 439 | Botswana>Namibia>1 440 | Botswana>South Africa>9 441 | Botswana>Zambia>1 442 | Botswana>Zimbabwe>2 443 | Brazil>Angola>2 444 | Brazil>Argentina>29 445 | Brazil>Barbados>1 446 | Brazil>Bolivia>3 447 | Brazil>Canada>2 448 | Brazil>Cape Verde>1 449 | Brazil>Chile>6 450 | Brazil>Colombia>4 451 | Brazil>Dominican Republic>4 452 | Brazil>Ecuador>1 453 | Brazil>France>4 454 | Brazil>French Guiana>1 455 | Brazil>Germany>9 456 | Brazil>Italy>4 457 | Brazil>Mexico>2 458 | Brazil>Morocco>1 459 | Brazil>Netherlands>2 460 | Brazil>Panama>7 461 | Brazil>Paraguay>5 462 | Brazil>Peru>10 463 | Brazil>Portugal>12 464 | Brazil>Qatar>1 465 | Brazil>South Africa>2 466 | Brazil>Spain>8 467 | Brazil>Suriname>1 468 | Brazil>Switzerland>1 469 | Brazil>Togo>1 470 | Brazil>Turkey>1 471 | Brazil>United Arab Emirates>3 472 | Brazil>United Kingdom>3 473 | Brazil>United States>58 474 | Brazil>Uruguay>9 475 | Brazil>Venezuela>3 476 | British Virgin Islands>Dominica>2 477 | British Virgin Islands>Netherlands Antilles>4 478 | British Virgin Islands>Puerto Rico>6 479 | British Virgin Islands>Saint Kitts and Nevis>1 480 | British Virgin Islands>Virgin Islands>3 481 | Brunei>Australia>1 482 | Brunei>China>1 483 | Brunei>Hong Kong>2 484 | Brunei>Indonesia>4 485 | Brunei>Malaysia>7 486 | Brunei>Philippines>2 487 | Brunei>Saudi Arabia>1 488 | Brunei>Singapore>2 489 | Brunei>Thailand>2 490 | Brunei>United Arab Emirates>1 491 | Bulgaria>Austria>3 492 | Bulgaria>Belgium>4 493 | Bulgaria>Cyprus>4 494 | Bulgaria>Czech Republic>2 495 | Bulgaria>Denmark>1 496 | Bulgaria>Finland>1 497 | Bulgaria>France>3 498 | Bulgaria>Germany>11 499 | Bulgaria>Greece>4 500 | Bulgaria>Ireland>1 501 | Bulgaria>Israel>2 502 | Bulgaria>Italy>7 503 | Bulgaria>Luxembourg>1 504 | Bulgaria>Netherlands>2 505 | Bulgaria>Norway>1 506 | Bulgaria>Poland>2 507 | Bulgaria>Romania>3 508 | Bulgaria>Russia>8 509 | Bulgaria>Serbia>2 510 | Bulgaria>Spain>8 511 | Bulgaria>Switzerland>1 512 | Bulgaria>Turkey>1 513 | Bulgaria>United Arab Emirates>1 514 | Bulgaria>United Kingdom>10 515 | Burkina Faso>Algeria>1 516 | Burkina Faso>Belgium>4 517 | Burkina Faso>Benin>1 518 | Burkina Faso>Cote d'Ivoire>8 519 | Burkina Faso>Ethiopia>1 520 | Burkina Faso>France>1 521 | Burkina Faso>Ghana>1 522 | Burkina Faso>Mali>3 523 | Burkina Faso>Morocco>1 524 | Burkina Faso>Niger>7 525 | Burkina Faso>Senegal>1 526 | Burkina Faso>Togo>2 527 | Burkina Faso>Tunisia>1 528 | Burkina Faso>Turkey>1 529 | Burma>Bangladesh>1 530 | Burma>Cambodia>1 531 | Burma>China>8 532 | Burma>Hong Kong>1 533 | Burma>India>1 534 | Burma>Japan>1 535 | Burma>Malaysia>3 536 | Burma>Qatar>1 537 | Burma>Singapore>6 538 | Burma>South Korea>3 539 | Burma>Taiwan>1 540 | Burma>Thailand>12 541 | Burma>Vietnam>2 542 | Burundi>Kenya>6 543 | Burundi>Rwanda>6 544 | Burundi>Uganda>1 545 | Cambodia>Burma>1 546 | Cambodia>China>10 547 | Cambodia>Hong Kong>2 548 | Cambodia>Laos>5 549 | Cambodia>Malaysia>4 550 | Cambodia>Philippines>1 551 | Cambodia>Singapore>9 552 | Cambodia>South Korea>8 553 | Cambodia>Taiwan>3 554 | Cambodia>Thailand>8 555 | Cambodia>Vietnam>14 556 | Cameroon>Belgium>9 557 | Cameroon>Benin>4 558 | Cameroon>Central African Republic>2 559 | Cameroon>Chad>3 560 | Cameroon>Congo (Brazzaville)>5 561 | Cameroon>Congo (Kinshasa)>4 562 | Cameroon>Cote d'Ivoire>1 563 | Cameroon>Equatorial Guinea>5 564 | Cameroon>Ethiopia>2 565 | Cameroon>France>4 566 | Cameroon>Gabon>5 567 | Cameroon>Kenya>2 568 | Cameroon>Morocco>2 569 | Cameroon>Nigeria>2 570 | Cameroon>Senegal>1 571 | Cameroon>Togo>1 572 | Cameroon>Turkey>1 573 | Canada>Algeria>1 574 | Canada>Antigua and Barbuda>2 575 | Canada>Aruba>2 576 | Canada>Australia>1 577 | Canada>Austria>3 578 | Canada>Bahamas>4 579 | Canada>Barbados>2 580 | Canada>Belgium>6 581 | Canada>Bermuda>2 582 | Canada>Brazil>2 583 | Canada>Cayman Islands>2 584 | Canada>Chile>1 585 | Canada>China>15 586 | Canada>Colombia>2 587 | Canada>Costa Rica>3 588 | Canada>Cuba>27 589 | Canada>Denmark>3 590 | Canada>Dominican Republic>14 591 | Canada>Egypt>1 592 | Canada>El Salvador>1 593 | Canada>Ethiopia>1 594 | Canada>France>19 595 | Canada>Germany>19 596 | Canada>Greece>2 597 | Canada>Grenada>2 598 | Canada>Guadeloupe>1 599 | Canada>Guyana>2 600 | Canada>Haiti>1 601 | Canada>Hong Kong>4 602 | Canada>Iceland>2 603 | Canada>Ireland>3 604 | Canada>Israel>2 605 | Canada>Italy>8 606 | Canada>Jamaica>10 607 | Canada>Japan>10 608 | Canada>Jordan>3 609 | Canada>Martinique>1 610 | Canada>Mexico>27 611 | Canada>Morocco>1 612 | Canada>Netherlands>10 613 | Canada>Netherlands Antilles>1 614 | Canada>New Zealand>2 615 | Canada>Pakistan>3 616 | Canada>Panama>1 617 | Canada>Peru>1 618 | Canada>Philippines>1 619 | Canada>Poland>2 620 | Canada>Portugal>9 621 | Canada>Puerto Rico>1 622 | Canada>Qatar>1 623 | Canada>Russia>2 624 | Canada>Saint Lucia>2 625 | Canada>Saint Pierre and Miquelon>3 626 | Canada>Saudi Arabia>1 627 | Canada>South Korea>4 628 | Canada>Spain>4 629 | Canada>Switzerland>8 630 | Canada>Taiwan>3 631 | Canada>Trinidad and Tobago>2 632 | Canada>Tunisia>1 633 | Canada>Turkey>2 634 | Canada>Turks and Caicos Islands>2 635 | Canada>United Arab Emirates>3 636 | Canada>United Kingdom>41 637 | Canada>United States>364 638 | Cape Verde>Brazil>1 639 | Cape Verde>France>3 640 | Cape Verde>Gambia>1 641 | Cape Verde>Germany>5 642 | Cape Verde>Guinea-Bissau>1 643 | Cape Verde>Luxembourg>1 644 | Cape Verde>Morocco>1 645 | Cape Verde>Netherlands>2 646 | Cape Verde>Portugal>8 647 | Cape Verde>Sao Tome and Principe>1 648 | Cape Verde>Senegal>2 649 | Cape Verde>Spain>1 650 | Cape Verde>United Kingdom>9 651 | Cape Verde>United States>1 652 | Cayman Islands>Bahamas>1 653 | Cayman Islands>Canada>2 654 | Cayman Islands>Cuba>1 655 | Cayman Islands>Honduras>2 656 | Cayman Islands>Jamaica>1 657 | Cayman Islands>United States>16 658 | Central African Republic>Cameroon>2 659 | Central African Republic>Morocco>1 660 | Chad>Cameroon>3 661 | Chad>Ethiopia>1 662 | Chad>France>1 663 | Chad>Niger>1 664 | Chad>Nigeria>2 665 | Chad>Turkey>1 666 | Chile>Argentina>10 667 | Chile>Australia>2 668 | Chile>Bolivia>3 669 | Chile>Brazil>6 670 | Chile>Canada>1 671 | Chile>Colombia>2 672 | Chile>Dominican Republic>1 673 | Chile>Ecuador>2 674 | Chile>France>2 675 | Chile>French Polynesia>1 676 | Chile>Mexico>3 677 | Chile>New Zealand>2 678 | Chile>Panama>1 679 | Chile>Paraguay>2 680 | Chile>Peru>7 681 | Chile>Spain>2 682 | Chile>United States>10 683 | Chile>Uruguay>2 684 | Chile>Venezuela>1 685 | China>Algeria>1 686 | China>Angola>1 687 | China>Australia>17 688 | China>Austria>2 689 | China>Azerbaijan>2 690 | China>Bangladesh>2 691 | China>Belgium>2 692 | China>Brunei>1 693 | China>Burma>8 694 | China>Cambodia>11 695 | China>Canada>15 696 | China>Denmark>3 697 | China>Egypt>4 698 | China>Ethiopia>6 699 | China>Finland>6 700 | China>France>10 701 | China>Georgia>1 702 | China>Germany>19 703 | China>Hong Kong>118 704 | China>India>6 705 | China>Indonesia>13 706 | China>Iran>4 707 | China>Israel>2 708 | China>Italy>5 709 | China>Japan>142 710 | China>Kazakhstan>7 711 | China>Kenya>2 712 | China>Korea>3 713 | China>Kyrgyzstan>5 714 | China>Laos>5 715 | China>Macau>46 716 | China>Malaysia>29 717 | China>Maldives>4 718 | China>Mauritius>2 719 | China>Mexico>1 720 | China>Mongolia>4 721 | China>Nepal>4 722 | China>Netherlands>13 723 | China>New Zealand>3 724 | China>Northern Mariana Islands>3 725 | China>Pakistan>4 726 | China>Philippines>13 727 | China>Poland>2 728 | China>Qatar>6 729 | China>Russia>46 730 | China>Saudi Arabia>2 731 | China>Singapore>45 732 | China>South Africa>2 733 | China>South Korea>152 734 | China>Spain>2 735 | China>Sri Lanka>3 736 | China>Sweden>2 737 | China>Switzerland>3 738 | China>Taiwan>191 739 | China>Tajikistan>4 740 | China>Thailand>73 741 | China>Turkey>7 742 | China>Turkmenistan>1 743 | China>United Arab Emirates>14 744 | China>United Kingdom>11 745 | China>United States>58 746 | China>Uzbekistan>4 747 | China>Vietnam>23 748 | Christmas Island>Australia>1 749 | Christmas Island>Cocos (Keeling) Islands>1 750 | Cocos (Keeling) Islands>Christmas Island>1 751 | Colombia>Argentina>2 752 | Colombia>Aruba>2 753 | Colombia>Bolivia>1 754 | Colombia>Brazil>4 755 | Colombia>Canada>2 756 | Colombia>Chile>2 757 | Colombia>Costa Rica>1 758 | Colombia>Cuba>3 759 | Colombia>Dominican Republic>3 760 | Colombia>Ecuador>11 761 | Colombia>El Salvador>3 762 | Colombia>France>1 763 | Colombia>Germany>2 764 | Colombia>Guatemala>1 765 | Colombia>Mexico>6 766 | Colombia>Netherlands Antilles>2 767 | Colombia>Panama>10 768 | Colombia>Peru>4 769 | Colombia>Puerto Rico>1 770 | Colombia>Spain>5 771 | Colombia>United States>49 772 | Colombia>Venezuela>5 773 | Comoros>Djibouti>1 774 | Comoros>Kenya>4 775 | Comoros>Madagascar>1 776 | Comoros>Mayotte>2 777 | Comoros>Reunion>1 778 | Comoros>Tanzania>1 779 | Congo (Brazzaville)>Angola>1 780 | Congo (Brazzaville)>Benin>7 781 | Congo (Brazzaville)>Cameroon>4 782 | Congo (Brazzaville)>Congo (Kinshasa)>3 783 | Congo (Brazzaville)>Ethiopia>2 784 | Congo (Brazzaville)>France>4 785 | Congo (Brazzaville)>Gabon>6 786 | Congo (Brazzaville)>Kenya>2 787 | Congo (Brazzaville)>Morocco>2 788 | Congo (Brazzaville)>Rwanda>1 789 | Congo (Brazzaville)>South Africa>2 790 | Congo (Kinshasa)>Belgium>4 791 | Congo (Kinshasa)>Cameroon>5 792 | Congo (Kinshasa)>Congo (Brazzaville)>4 793 | Congo (Kinshasa)>France>1 794 | Congo (Kinshasa)>Gabon>1 795 | Congo (Kinshasa)>Kenya>4 796 | Congo (Kinshasa)>South Africa>3 797 | Congo (Kinshasa)>Turkey>1 798 | Congo (Kinshasa)>Zambia>3 799 | Cook Islands>Australia>1 800 | Cook Islands>French Polynesia>2 801 | Cook Islands>New Zealand>3 802 | Cook Islands>United States>2 803 | Costa Rica>Canada>3 804 | Costa Rica>Colombia>1 805 | Costa Rica>Dominican Republic>1 806 | Costa Rica>El Salvador>2 807 | Costa Rica>Guatemala>4 808 | Costa Rica>Honduras>5 809 | Costa Rica>Mexico>3 810 | Costa Rica>Nicaragua>3 811 | Costa Rica>Panama>7 812 | Costa Rica>Peru>1 813 | Costa Rica>Spain>1 814 | Costa Rica>United States>36 815 | Cote d'Ivoire>Algeria>1 816 | Cote d'Ivoire>Belgium>4 817 | Cote d'Ivoire>Benin>3 818 | Cote d'Ivoire>Burkina Faso>8 819 | Cote d'Ivoire>Cameroon>1 820 | Cote d'Ivoire>France>3 821 | Cote d'Ivoire>Gabon>1 822 | Cote d'Ivoire>Ghana>7 823 | Cote d'Ivoire>Guinea>2 824 | Cote d'Ivoire>Kenya>1 825 | Cote d'Ivoire>Liberia>1 826 | Cote d'Ivoire>Mali>2 827 | Cote d'Ivoire>Morocco>1 828 | Cote d'Ivoire>Nigeria>4 829 | Cote d'Ivoire>Senegal>3 830 | Cote d'Ivoire>Sierra Leone>1 831 | Cote d'Ivoire>Togo>5 832 | Cote d'Ivoire>Tunisia>1 833 | Cote d'Ivoire>Turkey>1 834 | Croatia>Austria>6 835 | Croatia>Belgium>5 836 | Croatia>Bosnia and Herzegovina>1 837 | Croatia>Czech Republic>2 838 | Croatia>Denmark>6 839 | Croatia>Estonia>1 840 | Croatia>Finland>3 841 | Croatia>France>11 842 | Croatia>Germany>55 843 | Croatia>Greece>2 844 | Croatia>Hungary>1 845 | Croatia>Ireland>3 846 | Croatia>Italy>5 847 | Croatia>Luxembourg>1 848 | Croatia>Macedonia>1 849 | Croatia>Netherlands>3 850 | Croatia>Norway>9 851 | Croatia>Poland>3 852 | Croatia>Russia>2 853 | Croatia>Serbia>2 854 | Croatia>Spain>5 855 | Croatia>Sweden>9 856 | Croatia>Switzerland>9 857 | Croatia>Turkey>2 858 | Croatia>United Kingdom>35 859 | Cuba>Angola>1 860 | Cuba>Argentina>1 861 | Cuba>Bahamas>2 862 | Cuba>Canada>29 863 | Cuba>Cayman Islands>1 864 | Cuba>Colombia>3 865 | Cuba>Dominican Republic>2 866 | Cuba>Ecuador>1 867 | Cuba>El Salvador>1 868 | Cuba>France>2 869 | Cuba>Germany>4 870 | Cuba>Italy>5 871 | Cuba>Jamaica>1 872 | Cuba>Martinique>1 873 | Cuba>Mexico>8 874 | Cuba>Netherlands>1 875 | Cuba>Panama>2 876 | Cuba>Peru>2 877 | Cuba>Russia>3 878 | Cuba>Spain>2 879 | Cuba>Switzerland>1 880 | Cuba>United Kingdom>2 881 | Cuba>Venezuela>3 882 | Cyprus>Austria>3 883 | Cyprus>Bahrain>1 884 | Cyprus>Belarus>1 885 | Cyprus>Belgium>2 886 | Cyprus>Bulgaria>4 887 | Cyprus>Egypt>2 888 | Cyprus>France>2 889 | Cyprus>Germany>8 890 | Cyprus>Greece>12 891 | Cyprus>Hungary>1 892 | Cyprus>Israel>3 893 | Cyprus>Italy>1 894 | Cyprus>Jordan>1 895 | Cyprus>Latvia>1 896 | Cyprus>Lebanon>2 897 | Cyprus>Lithuania>1 898 | Cyprus>Malta>2 899 | Cyprus>Moldova>1 900 | Cyprus>Netherlands>3 901 | Cyprus>Norway>1 902 | Cyprus>Poland>2 903 | Cyprus>Qatar>1 904 | Cyprus>Romania>3 905 | Cyprus>Russia>11 906 | Cyprus>Serbia>2 907 | Cyprus>Sweden>2 908 | Cyprus>Switzerland>4 909 | Cyprus>Turkey>14 910 | Cyprus>Ukraine>5 911 | Cyprus>United Arab Emirates>3 912 | Cyprus>United Kingdom>50 913 | Czech Republic>Armenia>2 914 | Czech Republic>Austria>1 915 | Czech Republic>Azerbaijan>2 916 | Czech Republic>Belarus>2 917 | Czech Republic>Belgium>4 918 | Czech Republic>Bulgaria>2 919 | Czech Republic>Croatia>1 920 | Czech Republic>Denmark>4 921 | Czech Republic>Finland>3 922 | Czech Republic>France>15 923 | Czech Republic>Germany>14 924 | Czech Republic>Greece>5 925 | Czech Republic>Hungary>2 926 | Czech Republic>Ireland>2 927 | Czech Republic>Israel>4 928 | Czech Republic>Italy>19 929 | Czech Republic>Kazakhstan>1 930 | Czech Republic>Latvia>2 931 | Czech Republic>Lithuania>1 932 | Czech Republic>Malta>2 933 | Czech Republic>Netherlands>5 934 | Czech Republic>Norway>3 935 | Czech Republic>Poland>3 936 | Czech Republic>Portugal>2 937 | Czech Republic>Romania>5 938 | Czech Republic>Russia>24 939 | Czech Republic>Serbia>1 940 | Czech Republic>Slovakia>4 941 | Czech Republic>Slovenia>1 942 | Czech Republic>South Korea>2 943 | Czech Republic>Spain>16 944 | Czech Republic>Sweden>5 945 | Czech Republic>Switzerland>5 946 | Czech Republic>Turkey>2 947 | Czech Republic>Ukraine>3 948 | Czech Republic>United Arab Emirates>2 949 | Czech Republic>United Kingdom>16 950 | Czech Republic>Uzbekistan>1 951 | Denmark>Austria>5 952 | Denmark>Belgium>5 953 | Denmark>Bosnia and Herzegovina>1 954 | Denmark>Bulgaria>1 955 | Denmark>Canada>3 956 | Denmark>China>3 957 | Denmark>Croatia>6 958 | Denmark>Czech Republic>4 959 | Denmark>Egypt>2 960 | Denmark>Estonia>2 961 | Denmark>Faroe Islands>2 962 | Denmark>Finland>4 963 | Denmark>France>11 964 | Denmark>Germany>26 965 | Denmark>Greece>7 966 | Denmark>Greenland>1 967 | Denmark>Hungary>3 968 | Denmark>Iceland>4 969 | Denmark>Ireland>3 970 | Denmark>Israel>2 971 | Denmark>Italy>21 972 | Denmark>Japan>1 973 | Denmark>Latvia>4 974 | Denmark>Lithuania>3 975 | Denmark>Luxembourg>2 976 | Denmark>Malta>2 977 | Denmark>Morocco>2 978 | Denmark>Netherlands>11 979 | Denmark>Norway>30 980 | Denmark>Pakistan>1 981 | Denmark>Poland>7 982 | Denmark>Portugal>5 983 | Denmark>Qatar>1 984 | Denmark>Romania>1 985 | Denmark>Russia>3 986 | Denmark>Serbia>2 987 | Denmark>Singapore>2 988 | Denmark>Slovenia>2 989 | Denmark>Spain>31 990 | Denmark>Sweden>9 991 | Denmark>Switzerland>8 992 | Denmark>Thailand>2 993 | Denmark>Turkey>10 994 | Denmark>United Arab Emirates>2 995 | Denmark>United Kingdom>22 996 | Denmark>United States>7 997 | Djibouti>Comoros>1 998 | Djibouti>Ethiopia>5 999 | Djibouti>France>1 1000 | Djibouti>Kenya>2 1001 | Djibouti>Saudi Arabia>1 1002 | Djibouti>Somalia>5 1003 | Djibouti>Turkey>1 1004 | Djibouti>United Arab Emirates>4 1005 | Djibouti>Yemen>3 1006 | Dominica>Antigua and Barbuda>1 1007 | Dominica>Barbados>1 1008 | Dominica>British Virgin Islands>2 1009 | Dominica>Guadeloupe>3 1010 | Dominica>Netherlands Antilles>4 1011 | Dominica>Puerto Rico>4 1012 | Dominica>Saint Vincent and the Grenadines>1 1013 | Dominica>Virgin Islands>1 1014 | Dominican Republic>Antigua and Barbuda>4 1015 | Dominican Republic>Argentina>1 1016 | Dominican Republic>Aruba>2 1017 | Dominican Republic>Brazil>4 1018 | Dominican Republic>Canada>17 1019 | Dominican Republic>Chile>1 1020 | Dominican Republic>Colombia>3 1021 | Dominican Republic>Costa Rica>1 1022 | Dominican Republic>Cuba>2 1023 | Dominican Republic>France>10 1024 | Dominican Republic>Germany>7 1025 | Dominican Republic>Guadeloupe>3 1026 | Dominican Republic>Haiti>2 1027 | Dominican Republic>Italy>3 1028 | Dominican Republic>Jamaica>2 1029 | Dominican Republic>Netherlands>1 1030 | Dominican Republic>Netherlands Antilles>5 1031 | Dominican Republic>Panama>4 1032 | Dominican Republic>Peru>2 1033 | Dominican Republic>Puerto Rico>9 1034 | Dominican Republic>Russia>4 1035 | Dominican Republic>Spain>5 1036 | Dominican Republic>Switzerland>1 1037 | Dominican Republic>Turks and Caicos Islands>3 1038 | Dominican Republic>United Kingdom>1 1039 | Dominican Republic>United States>61 1040 | Dominican Republic>Venezuela>1 1041 | East Timor>Australia>2 1042 | East Timor>Indonesia>1 1043 | East Timor>Singapore>1 1044 | Ecuador>Argentina>1 1045 | Ecuador>Brazil>1 1046 | Ecuador>Chile>1 1047 | Ecuador>Colombia>11 1048 | Ecuador>Cuba>1 1049 | Ecuador>El Salvador>2 1050 | Ecuador>Mexico>1 1051 | Ecuador>Netherlands>2 1052 | Ecuador>Panama>3 1053 | Ecuador>Peru>5 1054 | Ecuador>Spain>4 1055 | Ecuador>United States>8 1056 | Ecuador>Venezuela>1 1057 | Egypt>Algeria>2 1058 | Egypt>Austria>6 1059 | Egypt>Bahrain>2 1060 | Egypt>Belgium>2 1061 | Egypt>Canada>1 1062 | Egypt>China>4 1063 | Egypt>Cyprus>2 1064 | Egypt>Denmark>2 1065 | Egypt>Eritrea>1 1066 | Egypt>Ethiopia>2 1067 | Egypt>France>4 1068 | Egypt>Germany>18 1069 | Egypt>Ghana>1 1070 | Egypt>Greece>4 1071 | Egypt>Hungary>1 1072 | Egypt>India>2 1073 | Egypt>Indonesia>1 1074 | Egypt>Iraq>2 1075 | Egypt>Israel>1 1076 | Egypt>Italy>5 1077 | Egypt>Jordan>5 1078 | Egypt>Kenya>1 1079 | Egypt>Kuwait>16 1080 | Egypt>Lebanon>3 1081 | Egypt>Libya>12 1082 | Egypt>Morocco>2 1083 | Egypt>Netherlands>2 1084 | Egypt>Nigeria>3 1085 | Egypt>Oman>2 1086 | Egypt>Qatar>4 1087 | Egypt>Russia>11 1088 | Egypt>Saudi Arabia>57 1089 | Egypt>South Africa>2 1090 | Egypt>South Sudan>2 1091 | Egypt>Spain>2 1092 | Egypt>Sudan>3 1093 | Egypt>Switzerland>11 1094 | Egypt>Tanzania>1 1095 | Egypt>Thailand>3 1096 | Egypt>Tunisia>2 1097 | Egypt>Turkey>8 1098 | Egypt>Uganda>1 1099 | Egypt>United Arab Emirates>11 1100 | Egypt>United Kingdom>34 1101 | Egypt>United States>2 1102 | Egypt>Yemen>5 1103 | El Salvador>Belize>1 1104 | El Salvador>Canada>1 1105 | El Salvador>Colombia>3 1106 | El Salvador>Costa Rica>2 1107 | El Salvador>Cuba>1 1108 | El Salvador>Ecuador>2 1109 | El Salvador>Guatemala>1 1110 | El Salvador>Honduras>3 1111 | El Salvador>Mexico>3 1112 | El Salvador>Nicaragua>2 1113 | El Salvador>Panama>2 1114 | El Salvador>Peru>1 1115 | El Salvador>Spain>2 1116 | El Salvador>United States>29 1117 | Equatorial Guinea>Benin>2 1118 | Equatorial Guinea>Cameroon>5 1119 | Equatorial Guinea>Ethiopia>2 1120 | Equatorial Guinea>Gabon>2 1121 | Equatorial Guinea>Morocco>1 1122 | Equatorial Guinea>Nigeria>1 1123 | Equatorial Guinea>Spain>1 1124 | Eritrea>Egypt>1 1125 | Eritrea>Kenya>1 1126 | Eritrea>Saudi Arabia>1 1127 | Eritrea>South Sudan>1 1128 | Eritrea>Sudan>1 1129 | Eritrea>Yemen>2 1130 | Estonia>Belgium>2 1131 | Estonia>Croatia>1 1132 | Estonia>Denmark>2 1133 | Estonia>Finland>3 1134 | Estonia>France>1 1135 | Estonia>Germany>2 1136 | Estonia>Greece>1 1137 | Estonia>Italy>1 1138 | Estonia>Latvia>1 1139 | Estonia>Lithuania>3 1140 | Estonia>Netherlands>2 1141 | Estonia>Norway>6 1142 | Estonia>Poland>1 1143 | Estonia>Russia>3 1144 | Estonia>Spain>1 1145 | Estonia>Sweden>4 1146 | Estonia>Turkey>1 1147 | Estonia>Ukraine>1 1148 | Estonia>United Kingdom>3 1149 | Ethiopia>Angola>2 1150 | Ethiopia>Bahrain>1 1151 | Ethiopia>Benin>1 1152 | Ethiopia>Burkina Faso>1 1153 | Ethiopia>Cameroon>2 1154 | Ethiopia>Chad>1 1155 | Ethiopia>China>6 1156 | Ethiopia>Congo (Brazzaville)>1 1157 | Ethiopia>Congo (Kinshasa)>2 1158 | Ethiopia>Djibouti>5 1159 | Ethiopia>Egypt>2 1160 | Ethiopia>Equatorial Guinea>2 1161 | Ethiopia>France>1 1162 | Ethiopia>Gabon>1 1163 | Ethiopia>Germany>2 1164 | Ethiopia>Ghana>1 1165 | Ethiopia>Hong Kong>1 1166 | Ethiopia>India>4 1167 | Ethiopia>Israel>1 1168 | Ethiopia>Italy>1 1169 | Ethiopia>Kenya>6 1170 | Ethiopia>Kuwait>2 1171 | Ethiopia>Lebanon>1 1172 | Ethiopia>Malawi>1 1173 | Ethiopia>Mali>2 1174 | Ethiopia>Mozambique>1 1175 | Ethiopia>Niger>1 1176 | Ethiopia>Nigeria>3 1177 | Ethiopia>Oman>2 1178 | Ethiopia>Qatar>1 1179 | Ethiopia>Rwanda>2 1180 | Ethiopia>Saudi Arabia>9 1181 | Ethiopia>Somalia>1 1182 | Ethiopia>South Africa>2 1183 | Ethiopia>South Sudan>2 1184 | Ethiopia>Sudan>2 1185 | Ethiopia>Tanzania>3 1186 | Ethiopia>Thailand>2 1187 | Ethiopia>Togo>1 1188 | Ethiopia>Turkey>1 1189 | Ethiopia>Uganda>2 1190 | Ethiopia>United Arab Emirates>3 1191 | Ethiopia>United Kingdom>1 1192 | Ethiopia>Yemen>1 1193 | Ethiopia>Zambia>1 1194 | Ethiopia>Zimbabwe>4 1195 | Falkland Islands>Chile>1 1196 | Faroe Islands>Denmark>2 1197 | Faroe Islands>Norway>2 1198 | Fiji>Australia>11 1199 | Fiji>Hong Kong>2 1200 | Fiji>Kiribati>3 1201 | Fiji>New Caledonia>1 1202 | Fiji>New Zealand>7 1203 | Fiji>Papua New Guinea>1 1204 | Fiji>Samoa>1 1205 | Fiji>Solomon Islands>2 1206 | Fiji>South Korea>1 1207 | Fiji>Tonga>2 1208 | Fiji>Tuvalu>1 1209 | Fiji>United States>6 1210 | Fiji>Vanuatu>2 1211 | Fiji>Wallis and Futuna>1 1212 | Finland>Austria>2 1213 | Finland>Belarus>2 1214 | Finland>Belgium>1 1215 | Finland>Bulgaria>1 1216 | Finland>China>6 1217 | Finland>Croatia>3 1218 | Finland>Czech Republic>3 1219 | Finland>Denmark>4 1220 | Finland>Estonia>3 1221 | Finland>France>6 1222 | Finland>Germany>19 1223 | Finland>Greece>2 1224 | Finland>Hong Kong>1 1225 | Finland>Hungary>3 1226 | Finland>Iceland>2 1227 | Finland>India>1 1228 | Finland>Ireland>1 1229 | Finland>Israel>1 1230 | Finland>Italy>5 1231 | Finland>Japan>6 1232 | Finland>Latvia>3 1233 | Finland>Lithuania>2 1234 | Finland>Netherlands>3 1235 | Finland>Norway>3 1236 | Finland>Poland>5 1237 | Finland>Portugal>2 1238 | Finland>Russia>9 1239 | Finland>Singapore>1 1240 | Finland>Slovenia>1 1241 | Finland>South Korea>1 1242 | Finland>Spain>16 1243 | Finland>Sweden>22 1244 | Finland>Switzerland>3 1245 | Finland>Thailand>1 1246 | Finland>Turkey>5 1247 | Finland>Ukraine>1 1248 | Finland>United Kingdom>9 1249 | Finland>United States>4 1250 | France>Algeria>72 1251 | France>Angola>1 1252 | France>Antigua and Barbuda>2 1253 | France>Argentina>2 1254 | France>Armenia>3 1255 | France>Austria>11 1256 | France>Azerbaijan>2 1257 | France>Bahrain>1 1258 | France>Belarus>2 1259 | France>Belgium>33 1260 | France>Benin>1 1261 | France>Brazil>4 1262 | France>Bulgaria>3 1263 | France>Burkina Faso>1 1264 | France>Cameroon>4 1265 | France>Canada>19 1266 | France>Cape Verde>4 1267 | France>Central African Republic>1 1268 | France>Chad>1 1269 | France>Chile>2 1270 | France>China>10 1271 | France>Colombia>1 1272 | France>Congo (Brazzaville)>4 1273 | France>Congo (Kinshasa)>1 1274 | France>Cote d'Ivoire>3 1275 | France>Croatia>11 1276 | France>Cuba>2 1277 | France>Cyprus>2 1278 | France>Czech Republic>15 1279 | France>Denmark>11 1280 | France>Djibouti>1 1281 | France>Dominican Republic>5 1282 | France>Egypt>4 1283 | France>Estonia>1 1284 | France>Ethiopia>1 1285 | France>Finland>6 1286 | France>French Guiana>3 1287 | France>Gabon>1 1288 | France>Georgia>2 1289 | France>Germany>71 1290 | France>Greece>27 1291 | France>Guadeloupe>7 1292 | France>Guernsey>1 1293 | France>Guinea>1 1294 | France>Haiti>1 1295 | France>Hong Kong>3 1296 | France>Hungary>4 1297 | France>Iceland>3 1298 | France>India>4 1299 | France>Iran>1 1300 | France>Ireland>22 1301 | France>Israel>8 1302 | France>Italy>139 1303 | France>Japan>7 1304 | France>Jersey>1 1305 | France>Jordan>2 1306 | France>Kenya>2 1307 | France>Latvia>3 1308 | France>Lebanon>2 1309 | France>Liberia>2 1310 | France>Lithuania>3 1311 | France>Luxembourg>7 1312 | France>Macedonia>1 1313 | France>Madagascar>3 1314 | France>Malaysia>3 1315 | France>Mali>2 1316 | France>Malta>11 1317 | France>Martinique>4 1318 | France>Mauritania>1 1319 | France>Mauritius>2 1320 | France>Mayotte>3 1321 | France>Mexico>4 1322 | France>Moldova>1 1323 | France>Monaco>1 1324 | France>Montenegro>2 1325 | France>Morocco>78 1326 | France>Netherlands>30 1327 | France>Netherlands Antilles>8 1328 | France>Niger>3 1329 | France>Nigeria>4 1330 | France>Norway>15 1331 | France>Oman>1 1332 | France>Pakistan>2 1333 | France>Panama>1 1334 | France>Peru>2 1335 | France>Poland>14 1336 | France>Portugal>49 1337 | France>Puerto Rico>1 1338 | France>Qatar>1 1339 | France>Reunion>5 1340 | France>Romania>7 1341 | France>Russia>11 1342 | France>Saudi Arabia>4 1343 | France>Senegal>3 1344 | France>Serbia>4 1345 | France>Singapore>2 1346 | France>Slovakia>1 1347 | France>Slovenia>2 1348 | France>South Africa>2 1349 | France>South Korea>3 1350 | France>Spain>130 1351 | France>Sri Lanka>1 1352 | France>Sweden>18 1353 | France>Switzerland>30 1354 | France>Taiwan>1 1355 | France>Thailand>3 1356 | France>Togo>1 1357 | France>Tunisia>44 1358 | France>Turkey>20 1359 | France>Ukraine>3 1360 | France>United Arab Emirates>7 1361 | France>United Kingdom>149 1362 | France>United States>91 1363 | France>Uzbekistan>2 1364 | France>Venezuela>1 1365 | France>Vietnam>6 1366 | France>Virgin Islands>1 1367 | French Guiana>Brazil>1 1368 | French Guiana>France>3 1369 | French Guiana>Martinique>2 1370 | French Guiana>Suriname>1 1371 | French Polynesia>Chile>1 1372 | French Polynesia>Cook Islands>2 1373 | French Polynesia>Japan>2 1374 | French Polynesia>New Caledonia>1 1375 | French Polynesia>New Zealand>4 1376 | French Polynesia>United States>7 1377 | Gabon>Benin>3 1378 | Gabon>Cameroon>4 1379 | Gabon>Congo (Brazzaville)>6 1380 | Gabon>Congo (Kinshasa)>1 1381 | Gabon>Cote d'Ivoire>1 1382 | Gabon>Equatorial Guinea>1 1383 | Gabon>Ethiopia>1 1384 | Gabon>France>1 1385 | Gabon>Morocco>1 1386 | Gabon>Nigeria>2 1387 | Gabon>Rwanda>1 1388 | Gabon>South Africa>1 1389 | Gabon>Togo>1 1390 | Gabon>Turkey>1 1391 | Gambia>Cape Verde>1 1392 | Gambia>Guinea-Bissau>1 1393 | Gambia>Morocco>1 1394 | Gambia>Senegal>4 1395 | Gambia>Sierra Leone>2 1396 | Gambia>Spain>4 1397 | Georgia>Austria>2 1398 | Georgia>Azerbaijan>2 1399 | Georgia>Belarus>3 1400 | Georgia>China>1 1401 | Georgia>France>2 1402 | Georgia>Germany>1 1403 | Georgia>Greece>1 1404 | Georgia>Iraq>2 1405 | Georgia>Israel>3 1406 | Georgia>Italy>1 1407 | Georgia>Kazakhstan>2 1408 | Georgia>Latvia>2 1409 | Georgia>Lithuania>1 1410 | Georgia>Netherlands>2 1411 | Georgia>Poland>3 1412 | Georgia>Russia>4 1413 | Georgia>Turkey>5 1414 | Georgia>Ukraine>7 1415 | Georgia>United Arab Emirates>1 1416 | Germany>Albania>2 1417 | Germany>Algeria>3 1418 | Germany>Angola>1 1419 | Germany>Argentina>1 1420 | Germany>Austria>67 1421 | Germany>Azerbaijan>3 1422 | Germany>Bahrain>1 1423 | Germany>Belarus>4 1424 | Germany>Belgium>15 1425 | Germany>Bosnia and Herzegovina>4 1426 | Germany>Brazil>9 1427 | Germany>Bulgaria>11 1428 | Germany>Canada>19 1429 | Germany>Cape Verde>5 1430 | Germany>China>19 1431 | Germany>Colombia>2 1432 | Germany>Croatia>57 1433 | Germany>Cuba>4 1434 | Germany>Cyprus>8 1435 | Germany>Czech Republic>14 1436 | Germany>Denmark>27 1437 | Germany>Dominican Republic>7 1438 | Germany>Egypt>18 1439 | Germany>Estonia>2 1440 | Germany>Ethiopia>2 1441 | Germany>Finland>19 1442 | Germany>France>72 1443 | Germany>Georgia>1 1444 | Germany>Ghana>1 1445 | Germany>Greece>176 1446 | Germany>Guernsey>2 1447 | Germany>Hong Kong>3 1448 | Germany>Hungary>11 1449 | Germany>Iceland>4 1450 | Germany>India>14 1451 | Germany>Iran>5 1452 | Germany>Iraq>5 1453 | Germany>Ireland>19 1454 | Germany>Israel>12 1455 | Germany>Italy>221 1456 | Germany>Jamaica>1 1457 | Germany>Japan>11 1458 | Germany>Jersey>3 1459 | Germany>Jordan>7 1460 | Germany>Kazakhstan>4 1461 | Germany>Kenya>2 1462 | Germany>Kuwait>2 1463 | Germany>Latvia>14 1464 | Germany>Lebanon>3 1465 | Germany>Lithuania>7 1466 | Germany>Luxembourg>9 1467 | Germany>Macedonia>5 1468 | Germany>Malaysia>3 1469 | Germany>Maldives>1 1470 | Germany>Malta>8 1471 | Germany>Mauritius>1 1472 | Germany>Mexico>4 1473 | Germany>Moldova>2 1474 | Germany>Montenegro>2 1475 | Germany>Morocco>20 1476 | Germany>Namibia>1 1477 | Germany>Netherlands>27 1478 | Germany>Netherlands Antilles>1 1479 | Germany>Nigeria>4 1480 | Germany>Norway>26 1481 | Germany>Oman>2 1482 | Germany>Poland>44 1483 | Germany>Portugal>64 1484 | Germany>Puerto Rico>1 1485 | Germany>Qatar>9 1486 | Germany>Romania>15 1487 | Germany>Russia>46 1488 | Germany>Saudi Arabia>10 1489 | Germany>Serbia>25 1490 | Germany>Seychelles>1 1491 | Germany>Singapore>7 1492 | Germany>Slovenia>4 1493 | Germany>South Africa>6 1494 | Germany>South Korea>4 1495 | Germany>Spain>354 1496 | Germany>Sri Lanka>1 1497 | Germany>Sweden>29 1498 | Germany>Switzerland>54 1499 | Germany>Taiwan>1 1500 | Germany>Tajikistan>1 1501 | Germany>Thailand>4 1502 | Germany>Trinidad and Tobago>1 1503 | Germany>Tunisia>32 1504 | Germany>Turkey>128 1505 | Germany>Turkmenistan>1 1506 | Germany>Ukraine>12 1507 | Germany>United Arab Emirates>23 1508 | Germany>United Kingdom>103 1509 | Germany>United States>115 1510 | Germany>Uzbekistan>1 1511 | Germany>Venezuela>1 1512 | Germany>Vietnam>4 1513 | Ghana>Benin>1 1514 | Ghana>Burkina Faso>1 1515 | Ghana>Cote d'Ivoire>8 1516 | Ghana>Egypt>1 1517 | Ghana>Ethiopia>1 1518 | Ghana>Germany>1 1519 | Ghana>Italy>1 1520 | Ghana>Kenya>1 1521 | Ghana>Lebanon>1 1522 | Ghana>Liberia>5 1523 | Ghana>Morocco>1 1524 | Ghana>Namibia>1 1525 | Ghana>Netherlands>1 1526 | Ghana>Nigeria>5 1527 | Ghana>Portugal>1 1528 | Ghana>Senegal>3 1529 | Ghana>Sierra Leone>3 1530 | Ghana>South Africa>1 1531 | Ghana>Spain>1 1532 | Ghana>Togo>1 1533 | Ghana>Turkey>1 1534 | Ghana>United Arab Emirates>1 1535 | Ghana>United Kingdom>2 1536 | Ghana>United States>1 1537 | Gibraltar>United Kingdom>6 1538 | Greece>Albania>2 1539 | Greece>Armenia>1 1540 | Greece>Austria>36 1541 | Greece>Belgium>18 1542 | Greece>Bulgaria>4 1543 | Greece>Canada>2 1544 | Greece>Croatia>2 1545 | Greece>Cyprus>11 1546 | Greece>Czech Republic>4 1547 | Greece>Denmark>7 1548 | Greece>Egypt>4 1549 | Greece>Estonia>1 1550 | Greece>Finland>2 1551 | Greece>France>25 1552 | Greece>Georgia>1 1553 | Greece>Germany>166 1554 | Greece>Hungary>2 1555 | Greece>Ireland>3 1556 | Greece>Israel>3 1557 | Greece>Italy>24 1558 | Greece>Jordan>1 1559 | Greece>Latvia>2 1560 | Greece>Lebanon>1 1561 | Greece>Lithuania>4 1562 | Greece>Luxembourg>4 1563 | Greece>Malta>1 1564 | Greece>Moldova>1 1565 | Greece>Netherlands>21 1566 | Greece>Norway>11 1567 | Greece>Poland>7 1568 | Greece>Qatar>2 1569 | Greece>Romania>4 1570 | Greece>Russia>28 1571 | Greece>Serbia>4 1572 | Greece>Spain>7 1573 | Greece>Sweden>10 1574 | Greece>Switzerland>14 1575 | Greece>Turkey>6 1576 | Greece>Ukraine>5 1577 | Greece>United Arab Emirates>3 1578 | Greece>United Kingdom>95 1579 | Greece>United States>3 1580 | Greenland>Denmark>1 1581 | Greenland>Iceland>3 1582 | Grenada>Barbados>1 1583 | Grenada>Canada>2 1584 | Grenada>Saint Lucia>2 1585 | Grenada>Saint Vincent and the Grenadines>1 1586 | Grenada>Trinidad and Tobago>3 1587 | Grenada>United States>4 1588 | Grenada>Venezuela>1 1589 | Guadeloupe>Antigua and Barbuda>2 1590 | Guadeloupe>Canada>1 1591 | Guadeloupe>Dominica>3 1592 | Guadeloupe>Dominican Republic>3 1593 | Guadeloupe>France>6 1594 | Guadeloupe>Haiti>2 1595 | Guadeloupe>Martinique>5 1596 | Guadeloupe>Netherlands Antilles>1 1597 | Guadeloupe>Puerto Rico>2 1598 | Guadeloupe>United States>2 1599 | Guam>Australia>1 1600 | Guam>Hong Kong>1 1601 | Guam>Japan>19 1602 | Guam>Micronesia>2 1603 | Guam>Northern Mariana Islands>2 1604 | Guam>Palau>1 1605 | Guam>Philippines>2 1606 | Guam>South Korea>4 1607 | Guam>Taiwan>2 1608 | Guam>United States>1 1609 | Guatemala>Belize>2 1610 | Guatemala>Colombia>1 1611 | Guatemala>Costa Rica>2 1612 | Guatemala>El Salvador>3 1613 | Guatemala>Honduras>8 1614 | Guatemala>Mexico>3 1615 | Guatemala>Nicaragua>1 1616 | Guatemala>Panama>1 1617 | Guatemala>United States>17 1618 | Guernsey>France>1 1619 | Guernsey>Germany>1 1620 | Guernsey>Jersey>4 1621 | Guernsey>Netherlands>1 1622 | Guernsey>United Kingdom>11 1623 | Guinea-Bissau>Cape Verde>1 1624 | Guinea-Bissau>Gambia>1 1625 | Guinea-Bissau>Guinea>2 1626 | Guinea-Bissau>Morocco>1 1627 | Guinea-Bissau>Senegal>2 1628 | Guinea>Cote d'Ivoire>2 1629 | Guinea>France>1 1630 | Guinea>Guinea-Bissau>2 1631 | Guinea>Mali>2 1632 | Guinea>Mauritania>1 1633 | Guinea>Morocco>1 1634 | Guinea>Senegal>8 1635 | Guinea>Togo>1 1636 | Guyana>Barbados>1 1637 | Guyana>Canada>2 1638 | Guyana>Jamaica>1 1639 | Guyana>Suriname>1 1640 | Guyana>Trinidad and Tobago>1 1641 | Guyana>United States>2 1642 | Guyana>Venezuela>1 1643 | Haiti>Canada>1 1644 | Haiti>Dominican Republic>3 1645 | Haiti>Guadeloupe>2 1646 | Haiti>Netherlands Antilles>1 1647 | Haiti>Panama>2 1648 | Haiti>Turks and Caicos Islands>3 1649 | Haiti>United States>13 1650 | Honduras>Belize>2 1651 | Honduras>Cayman Islands>2 1652 | Honduras>Costa Rica>5 1653 | Honduras>El Salvador>3 1654 | Honduras>Guatemala>10 1655 | Honduras>Mexico>1 1656 | Honduras>Panama>2 1657 | Honduras>United States>19 1658 | Hong Kong>Australia>15 1659 | Hong Kong>Bangladesh>3 1660 | Hong Kong>Brunei>2 1661 | Hong Kong>Burma>1 1662 | Hong Kong>Cambodia>2 1663 | Hong Kong>Canada>4 1664 | Hong Kong>China>117 1665 | Hong Kong>Ethiopia>1 1666 | Hong Kong>Fiji>2 1667 | Hong Kong>Finland>1 1668 | Hong Kong>France>3 1669 | Hong Kong>Germany>3 1670 | Hong Kong>Guam>1 1671 | Hong Kong>India>14 1672 | Hong Kong>Indonesia>10 1673 | Hong Kong>Israel>1 1674 | Hong Kong>Italy>2 1675 | Hong Kong>Japan>27 1676 | Hong Kong>Kazakhstan>1 1677 | Hong Kong>Malaysia>11 1678 | Hong Kong>Maldives>2 1679 | Hong Kong>Mauritius>1 1680 | Hong Kong>Mongolia>2 1681 | Hong Kong>Nepal>1 1682 | Hong Kong>Netherlands>2 1683 | Hong Kong>New Zealand>3 1684 | Hong Kong>Papua New Guinea>1 1685 | Hong Kong>Philippines>11 1686 | Hong Kong>Qatar>2 1687 | Hong Kong>Russia>9 1688 | Hong Kong>Saudi Arabia>1 1689 | Hong Kong>Singapore>8 1690 | Hong Kong>South Africa>2 1691 | Hong Kong>South Korea>16 1692 | Hong Kong>Switzerland>1 1693 | Hong Kong>Taiwan>13 1694 | Hong Kong>Thailand>24 1695 | Hong Kong>Turkey>1 1696 | Hong Kong>United Arab Emirates>5 1697 | Hong Kong>United Kingdom>3 1698 | Hong Kong>United States>16 1699 | Hong Kong>Vietnam>10 1700 | Hungary>Austria>1 1701 | Hungary>Azerbaijan>1 1702 | Hungary>Belarus>1 1703 | Hungary>Belgium>3 1704 | Hungary>Croatia>1 1705 | Hungary>Cyprus>1 1706 | Hungary>Czech Republic>2 1707 | Hungary>Denmark>3 1708 | Hungary>Egypt>1 1709 | Hungary>Finland>3 1710 | Hungary>France>4 1711 | Hungary>Germany>12 1712 | Hungary>Greece>2 1713 | Hungary>Ireland>2 1714 | Hungary>Israel>2 1715 | Hungary>Italy>11 1716 | Hungary>Latvia>1 1717 | Hungary>Malta>2 1718 | Hungary>Netherlands>4 1719 | Hungary>Norway>1 1720 | Hungary>Poland>2 1721 | Hungary>Portugal>1 1722 | Hungary>Qatar>1 1723 | Hungary>Romania>1 1724 | Hungary>Russia>4 1725 | Hungary>Serbia>2 1726 | Hungary>Spain>5 1727 | Hungary>Sweden>4 1728 | Hungary>Switzerland>3 1729 | Hungary>Turkey>2 1730 | Hungary>Ukraine>1 1731 | Hungary>United Arab Emirates>1 1732 | Hungary>United Kingdom>15 1733 | Iceland>Belgium>1 1734 | Iceland>Canada>2 1735 | Iceland>Denmark>4 1736 | Iceland>Finland>2 1737 | Iceland>France>3 1738 | Iceland>Germany>4 1739 | Iceland>Greenland>3 1740 | Iceland>Netherlands>1 1741 | Iceland>Norway>5 1742 | Iceland>Spain>2 1743 | Iceland>Sweden>1 1744 | Iceland>Switzerland>2 1745 | Iceland>United Kingdom>10 1746 | Iceland>United States>7 1747 | India>Afghanistan>7 1748 | India>Australia>2 1749 | India>Austria>2 1750 | India>Bahrain>8 1751 | India>Bangladesh>12 1752 | India>Belgium>5 1753 | India>Bhutan>3 1754 | India>Burma>1 1755 | India>China>6 1756 | India>Egypt>2 1757 | India>Ethiopia>4 1758 | India>Finland>1 1759 | India>France>4 1760 | India>Germany>12 1761 | India>Hong Kong>14 1762 | India>Iran>2 1763 | India>Israel>1 1764 | India>Italy>2 1765 | India>Japan>5 1766 | India>Jordan>2 1767 | India>Kazakhstan>1 1768 | India>Kenya>3 1769 | India>Kuwait>9 1770 | India>Malaysia>22 1771 | India>Maldives>5 1772 | India>Mauritius>6 1773 | India>Nepal>8 1774 | India>Netherlands>3 1775 | India>Oman>23 1776 | India>Pakistan>3 1777 | India>Qatar>17 1778 | India>Reunion>1 1779 | India>Russia>2 1780 | India>Saudi Arabia>39 1781 | India>Singapore>37 1782 | India>South Africa>3 1783 | India>South Korea>3 1784 | India>Sri Lanka>24 1785 | India>Switzerland>4 1786 | India>Taiwan>2 1787 | India>Tajikistan>1 1788 | India>Thailand>18 1789 | India>Turkey>4 1790 | India>Turkmenistan>2 1791 | India>United Arab Emirates>88 1792 | India>United Kingdom>17 1793 | India>United States>5 1794 | India>Uzbekistan>2 1795 | India>Yemen>2 1796 | Indonesia>Australia>26 1797 | Indonesia>Brunei>4 1798 | Indonesia>China>13 1799 | Indonesia>East Timor>1 1800 | Indonesia>Egypt>1 1801 | Indonesia>Hong Kong>10 1802 | Indonesia>Japan>13 1803 | Indonesia>Malaysia>46 1804 | Indonesia>Papua New Guinea>1 1805 | Indonesia>Philippines>5 1806 | Indonesia>Qatar>1 1807 | Indonesia>Saudi Arabia>7 1808 | Indonesia>Singapore>63 1809 | Indonesia>South Korea>6 1810 | Indonesia>Sri Lanka>2 1811 | Indonesia>Taiwan>7 1812 | Indonesia>Thailand>8 1813 | Indonesia>United Arab Emirates>5 1814 | Indonesia>Vietnam>1 1815 | Iran>Afghanistan>5 1816 | Iran>Armenia>1 1817 | Iran>Austria>2 1818 | Iran>Azerbaijan>3 1819 | Iran>Bahrain>3 1820 | Iran>Belarus>1 1821 | Iran>China>4 1822 | Iran>France>1 1823 | Iran>Germany>5 1824 | Iran>India>2 1825 | Iran>Iraq>4 1826 | Iran>Italy>3 1827 | Iran>Kazakhstan>1 1828 | Iran>Kuwait>10 1829 | Iran>Lebanon>2 1830 | Iran>Malaysia>2 1831 | Iran>Netherlands>1 1832 | Iran>Oman>3 1833 | Iran>Pakistan>3 1834 | Iran>Qatar>5 1835 | Iran>Russia>1 1836 | Iran>Saudi Arabia>12 1837 | Iran>Sweden>3 1838 | Iran>Tajikistan>3 1839 | Iran>Thailand>1 1840 | Iran>Turkey>14 1841 | Iran>United Arab Emirates>24 1842 | Iran>United Kingdom>1 1843 | Iran>Uzbekistan>1 1844 | Iraq>Austria>1 1845 | Iraq>Bahrain>2 1846 | Iraq>Egypt>2 1847 | Iraq>Georgia>2 1848 | Iraq>Germany>5 1849 | Iraq>Iran>4 1850 | Iraq>Jordan>7 1851 | Iraq>Kuwait>2 1852 | Iraq>Lebanon>5 1853 | Iraq>Netherlands>1 1854 | Iraq>Qatar>5 1855 | Iraq>Sweden>7 1856 | Iraq>Turkey>15 1857 | Iraq>United Arab Emirates>15 1858 | Ireland>Austria>1 1859 | Ireland>Belgium>3 1860 | Ireland>Bulgaria>1 1861 | Ireland>Canada>3 1862 | Ireland>Croatia>3 1863 | Ireland>Czech Republic>2 1864 | Ireland>Denmark>3 1865 | Ireland>Finland>1 1866 | Ireland>France>22 1867 | Ireland>Germany>19 1868 | Ireland>Greece>3 1869 | Ireland>Hungary>2 1870 | Ireland>Isle of Man>1 1871 | Ireland>Italy>16 1872 | Ireland>Jersey>2 1873 | Ireland>Latvia>1 1874 | Ireland>Lithuania>4 1875 | Ireland>Luxembourg>1 1876 | Ireland>Malta>1 1877 | Ireland>Moldova>1 1878 | Ireland>Morocco>1 1879 | Ireland>Netherlands>4 1880 | Ireland>Norway>3 1881 | Ireland>Poland>15 1882 | Ireland>Portugal>12 1883 | Ireland>Romania>2 1884 | Ireland>Slovakia>1 1885 | Ireland>Spain>53 1886 | Ireland>Sweden>2 1887 | Ireland>Switzerland>4 1888 | Ireland>Turkey>2 1889 | Ireland>United Arab Emirates>4 1890 | Ireland>United Kingdom>63 1891 | Ireland>United States>35 1892 | Isle of Man>Ireland>1 1893 | Isle of Man>United Kingdom>10 1894 | Israel>Austria>3 1895 | Israel>Azerbaijan>1 1896 | Israel>Belarus>1 1897 | Israel>Belgium>2 1898 | Israel>Bulgaria>2 1899 | Israel>Canada>3 1900 | Israel>China>2 1901 | Israel>Cyprus>3 1902 | Israel>Czech Republic>4 1903 | Israel>Denmark>2 1904 | Israel>Egypt>1 1905 | Israel>Ethiopia>1 1906 | Israel>Finland>1 1907 | Israel>France>9 1908 | Israel>Georgia>3 1909 | Israel>Germany>12 1910 | Israel>Greece>3 1911 | Israel>Hong Kong>1 1912 | Israel>Hungary>2 1913 | Israel>India>1 1914 | Israel>Italy>9 1915 | Israel>Jordan>2 1916 | Israel>Latvia>1 1917 | Israel>Lithuania>1 1918 | Israel>Netherlands>4 1919 | Israel>Poland>4 1920 | Israel>Romania>5 1921 | Israel>Russia>10 1922 | Israel>Serbia>1 1923 | Israel>South Africa>1 1924 | Israel>South Korea>1 1925 | Israel>Spain>6 1926 | Israel>Sweden>1 1927 | Israel>Switzerland>6 1928 | Israel>Thailand>2 1929 | Israel>Turkey>3 1930 | Israel>Ukraine>7 1931 | Israel>United Kingdom>6 1932 | Israel>United States>7 1933 | Israel>Uzbekistan>1 1934 | Italy>Albania>27 1935 | Italy>Algeria>4 1936 | Italy>Argentina>2 1937 | Italy>Armenia>1 1938 | Italy>Austria>28 1939 | Italy>Azerbaijan>4 1940 | Italy>Bangladesh>1 1941 | Italy>Belarus>2 1942 | Italy>Belgium>45 1943 | Italy>Bosnia and Herzegovina>1 1944 | Italy>Brazil>4 1945 | Italy>Bulgaria>7 1946 | Italy>Canada>8 1947 | Italy>China>5 1948 | Italy>Croatia>5 1949 | Italy>Cuba>3 1950 | Italy>Cyprus>1 1951 | Italy>Czech Republic>19 1952 | Italy>Denmark>21 1953 | Italy>Dominican Republic>3 1954 | Italy>Egypt>6 1955 | Italy>Estonia>1 1956 | Italy>Ethiopia>1 1957 | Italy>Finland>5 1958 | Italy>France>138 1959 | Italy>Georgia>1 1960 | Italy>Germany>221 1961 | Italy>Greece>25 1962 | Italy>Hong Kong>2 1963 | Italy>Hungary>11 1964 | Italy>India>2 1965 | Italy>Iran>3 1966 | Italy>Ireland>16 1967 | Italy>Israel>9 1968 | Italy>Japan>4 1969 | Italy>Jordan>3 1970 | Italy>Kuwait>2 1971 | Italy>Latvia>9 1972 | Italy>Lebanon>4 1973 | Italy>Libya>2 1974 | Italy>Lithuania>7 1975 | Italy>Luxembourg>7 1976 | Italy>Macedonia>3 1977 | Italy>Malta>16 1978 | Italy>Mauritius>1 1979 | Italy>Mexico>1 1980 | Italy>Moldova>12 1981 | Italy>Montenegro>2 1982 | Italy>Morocco>17 1983 | Italy>Netherlands>41 1984 | Italy>Nigeria>1 1985 | Italy>Norway>14 1986 | Italy>Oman>1 1987 | Italy>Pakistan>1 1988 | Italy>Poland>29 1989 | Italy>Portugal>20 1990 | Italy>Qatar>4 1991 | Italy>Romania>34 1992 | Italy>Russia>34 1993 | Italy>Saudi Arabia>8 1994 | Italy>Senegal>1 1995 | Italy>Serbia>6 1996 | Italy>Singapore>2 1997 | Italy>Slovakia>4 1998 | Italy>South Korea>2 1999 | Italy>Spain>120 2000 | Italy>Sri Lanka>3 2001 | Italy>Sweden>19 2002 | Italy>Switzerland>48 2003 | Italy>Thailand>2 2004 | Italy>Tunisia>8 2005 | Italy>Turkey>12 2006 | Italy>Ukraine>10 2007 | Italy>United Arab Emirates>8 2008 | Italy>United Kingdom>141 2009 | Italy>United States>53 2010 | Italy>Uzbekistan>2 2011 | Italy>Venezuela>1 2012 | Jamaica>Antigua and Barbuda>1 2013 | Jamaica>Bahamas>1 2014 | Jamaica>Barbados>1 2015 | Jamaica>Canada>12 2016 | Jamaica>Cayman Islands>2 2017 | Jamaica>Dominican Republic>1 2018 | Jamaica>Germany>1 2019 | Jamaica>Guyana>1 2020 | Jamaica>Netherlands>1 2021 | Jamaica>Netherlands Antilles>2 2022 | Jamaica>Panama>3 2023 | Jamaica>Trinidad and Tobago>1 2024 | Jamaica>Turks and Caicos Islands>1 2025 | Jamaica>United Kingdom>3 2026 | Jamaica>United States>41 2027 | Japan>Australia>15 2028 | Japan>Austria>2 2029 | Japan>Burma>1 2030 | Japan>Canada>10 2031 | Japan>China>142 2032 | Japan>Denmark>1 2033 | Japan>Finland>6 2034 | Japan>France>7 2035 | Japan>French Polynesia>2 2036 | Japan>Germany>11 2037 | Japan>Guam>19 2038 | Japan>Hong Kong>27 2039 | Japan>India>5 2040 | Japan>Indonesia>13 2041 | Japan>Italy>4 2042 | Japan>Macau>6 2043 | Japan>Malaysia>10 2044 | Japan>Mexico>1 2045 | Japan>Mongolia>1 2046 | Japan>Netherlands>3 2047 | Japan>New Caledonia>2 2048 | Japan>New Zealand>3 2049 | Japan>Northern Mariana Islands>3 2050 | Japan>Palau>2 2051 | Japan>Papua New Guinea>1 2052 | Japan>Philippines>15 2053 | Japan>Qatar>6 2054 | Japan>Russia>9 2055 | Japan>Singapore>18 2056 | Japan>South Korea>106 2057 | Japan>Sri Lanka>1 2058 | Japan>Switzerland>2 2059 | Japan>Taiwan>68 2060 | Japan>Thailand>22 2061 | Japan>Turkey>4 2062 | Japan>United Arab Emirates>8 2063 | Japan>United Kingdom>8 2064 | Japan>United States>78 2065 | Japan>Uzbekistan>1 2066 | Japan>Vietnam>20 2067 | Jersey>France>1 2068 | Jersey>Germany>4 2069 | Jersey>Guernsey>3 2070 | Jersey>Ireland>2 2071 | Jersey>Netherlands>1 2072 | Jersey>Switzerland>2 2073 | Jersey>United Kingdom>25 2074 | Jordan>Algeria>2 2075 | Jordan>Austria>3 2076 | Jordan>Bahrain>2 2077 | Jordan>Canada>3 2078 | Jordan>Cyprus>1 2079 | Jordan>Egypt>5 2080 | Jordan>France>2 2081 | Jordan>Germany>7 2082 | Jordan>Greece>1 2083 | Jordan>India>2 2084 | Jordan>Iraq>6 2085 | Jordan>Israel>2 2086 | Jordan>Italy>3 2087 | Jordan>Kuwait>3 2088 | Jordan>Lebanon>3 2089 | Jordan>Libya>7 2090 | Jordan>Netherlands>1 2091 | Jordan>Nigeria>1 2092 | Jordan>Oman>2 2093 | Jordan>Qatar>2 2094 | Jordan>Romania>2 2095 | Jordan>Russia>2 2096 | Jordan>Saudi Arabia>11 2097 | Jordan>Spain>4 2098 | Jordan>Sudan>1 2099 | Jordan>Switzerland>2 2100 | Jordan>Thailand>2 2101 | Jordan>Tunisia>1 2102 | Jordan>Turkey>3 2103 | Jordan>Ukraine>1 2104 | Jordan>United Arab Emirates>9 2105 | Jordan>United Kingdom>2 2106 | Jordan>United States>6 2107 | Jordan>Yemen>5 2108 | Kazakhstan>Armenia>1 2109 | Kazakhstan>Austria>2 2110 | Kazakhstan>Azerbaijan>4 2111 | Kazakhstan>Belarus>1 2112 | Kazakhstan>China>7 2113 | Kazakhstan>Czech Republic>1 2114 | Kazakhstan>Georgia>2 2115 | Kazakhstan>Germany>4 2116 | Kazakhstan>Hong Kong>1 2117 | Kazakhstan>India>1 2118 | Kazakhstan>Iran>1 2119 | Kazakhstan>Kyrgyzstan>3 2120 | Kazakhstan>Malaysia>1 2121 | Kazakhstan>Netherlands>2 2122 | Kazakhstan>Russia>38 2123 | Kazakhstan>South Korea>2 2124 | Kazakhstan>Tajikistan>3 2125 | Kazakhstan>Thailand>1 2126 | Kazakhstan>Turkey>7 2127 | Kazakhstan>Ukraine>4 2128 | Kazakhstan>United Arab Emirates>7 2129 | Kazakhstan>United Kingdom>3 2130 | Kazakhstan>Uzbekistan>4 2131 | Kazakhstan>Vietnam>1 2132 | Kenya>Angola>1 2133 | Kenya>Belgium>4 2134 | Kenya>Botswana>1 2135 | Kenya>Burundi>2 2136 | Kenya>Cameroon>2 2137 | Kenya>China>2 2138 | Kenya>Comoros>1 2139 | Kenya>Congo (Brazzaville)>2 2140 | Kenya>Congo (Kinshasa)>4 2141 | Kenya>Cote d'Ivoire>1 2142 | Kenya>Djibouti>2 2143 | Kenya>Egypt>1 2144 | Kenya>Eritrea>1 2145 | Kenya>Ethiopia>6 2146 | Kenya>France>2 2147 | Kenya>Germany>1 2148 | Kenya>Ghana>1 2149 | Kenya>India>3 2150 | Kenya>Madagascar>1 2151 | Kenya>Malawi>4 2152 | Kenya>Mali>1 2153 | Kenya>Mauritius>2 2154 | Kenya>Mayotte>3 2155 | Kenya>Mozambique>4 2156 | Kenya>Netherlands>3 2157 | Kenya>Nigeria>1 2158 | Kenya>Qatar>1 2159 | Kenya>Rwanda>5 2160 | Kenya>Saudi Arabia>2 2161 | Kenya>Seychelles>1 2162 | Kenya>Somalia>7 2163 | Kenya>South Africa>2 2164 | Kenya>South Korea>2 2165 | Kenya>South Sudan>2 2166 | Kenya>Sudan>1 2167 | Kenya>Switzerland>3 2168 | Kenya>Tanzania>17 2169 | Kenya>Thailand>3 2170 | Kenya>Turkey>3 2171 | Kenya>Uganda>3 2172 | Kenya>United Arab Emirates>9 2173 | Kenya>United Kingdom>3 2174 | Kenya>Yemen>1 2175 | Kenya>Zambia>9 2176 | Kenya>Zimbabwe>3 2177 | Kiribati>Fiji>3 2178 | Kiribati>Marshall Islands>1 2179 | Kiribati>Nauru>1 2180 | Kiribati>United States>2 2181 | Korea>China>3 2182 | Korea>Malaysia>1 2183 | Korea>Russia>1 2184 | Kuwait>Afghanistan>1 2185 | Kuwait>Bahrain>4 2186 | Kuwait>Bangladesh>3 2187 | Kuwait>Egypt>16 2188 | Kuwait>Ethiopia>3 2189 | Kuwait>Germany>2 2190 | Kuwait>India>9 2191 | Kuwait>Iran>10 2192 | Kuwait>Iraq>2 2193 | Kuwait>Italy>2 2194 | Kuwait>Jordan>3 2195 | Kuwait>Lebanon>3 2196 | Kuwait>Malaysia>1 2197 | Kuwait>Netherlands>3 2198 | Kuwait>Oman>2 2199 | Kuwait>Pakistan>6 2200 | Kuwait>Qatar>3 2201 | Kuwait>Saudi Arabia>18 2202 | Kuwait>Sri Lanka>3 2203 | Kuwait>Thailand>1 2204 | Kuwait>Tunisia>1 2205 | Kuwait>Turkey>6 2206 | Kuwait>United Arab Emirates>11 2207 | Kuwait>United Kingdom>3 2208 | Kuwait>United States>2 2209 | Kuwait>Yemen>1 2210 | Kyrgyzstan>China>5 2211 | Kyrgyzstan>Kazakhstan>3 2212 | Kyrgyzstan>Mongolia>1 2213 | Kyrgyzstan>Russia>51 2214 | Kyrgyzstan>Tajikistan>2 2215 | Kyrgyzstan>Turkey>5 2216 | Kyrgyzstan>United Arab Emirates>1 2217 | Kyrgyzstan>Uzbekistan>2 2218 | Laos>Cambodia>5 2219 | Laos>China>5 2220 | Laos>Malaysia>1 2221 | Laos>Singapore>1 2222 | Laos>South Korea>2 2223 | Laos>Thailand>10 2224 | Laos>Vietnam>6 2225 | Latvia>Austria>2 2226 | Latvia>Azerbaijan>2 2227 | Latvia>Belarus>2 2228 | Latvia>Belgium>2 2229 | Latvia>Cyprus>1 2230 | Latvia>Czech Republic>2 2231 | Latvia>Denmark>4 2232 | Latvia>Estonia>1 2233 | Latvia>Finland>3 2234 | Latvia>France>3 2235 | Latvia>Georgia>2 2236 | Latvia>Germany>14 2237 | Latvia>Greece>2 2238 | Latvia>Hungary>1 2239 | Latvia>Ireland>1 2240 | Latvia>Israel>1 2241 | Latvia>Italy>9 2242 | Latvia>Lithuania>2 2243 | Latvia>Malta>1 2244 | Latvia>Moldova>1 2245 | Latvia>Netherlands>3 2246 | Latvia>Norway>10 2247 | Latvia>Poland>2 2248 | Latvia>Russia>8 2249 | Latvia>Spain>3 2250 | Latvia>Sweden>4 2251 | Latvia>Switzerland>1 2252 | Latvia>Turkey>2 2253 | Latvia>Ukraine>2 2254 | Latvia>United Kingdom>7 2255 | Latvia>United States>1 2256 | Latvia>Uzbekistan>2 2257 | Lebanon>Algeria>1 2258 | Lebanon>Armenia>1 2259 | Lebanon>Bahrain>1 2260 | Lebanon>Belarus>1 2261 | Lebanon>Belgium>1 2262 | Lebanon>Cyprus>2 2263 | Lebanon>Egypt>3 2264 | Lebanon>Ethiopia>1 2265 | Lebanon>France>2 2266 | Lebanon>Germany>3 2267 | Lebanon>Ghana>1 2268 | Lebanon>Greece>1 2269 | Lebanon>Iran>2 2270 | Lebanon>Iraq>5 2271 | Lebanon>Italy>4 2272 | Lebanon>Jordan>3 2273 | Lebanon>Kuwait>3 2274 | Lebanon>Morocco>1 2275 | Lebanon>Nigeria>2 2276 | Lebanon>Oman>1 2277 | Lebanon>Qatar>2 2278 | Lebanon>Romania>2 2279 | Lebanon>Russia>2 2280 | Lebanon>Saudi Arabia>7 2281 | Lebanon>Switzerland>1 2282 | Lebanon>Tunisia>2 2283 | Lebanon>Turkey>3 2284 | Lebanon>United Arab Emirates>6 2285 | Lebanon>United Kingdom>2 2286 | Lebanon>Yemen>1 2287 | Lesotho>South Africa>1 2288 | Liberia>Belgium>3 2289 | Liberia>Cote d'Ivoire>1 2290 | Liberia>Ghana>5 2291 | Liberia>Morocco>1 2292 | Liberia>Nigeria>1 2293 | Liberia>Sierra Leone>7 2294 | Libya>Algeria>2 2295 | Libya>Egypt>12 2296 | Libya>Italy>2 2297 | Libya>Jordan>7 2298 | Libya>Malta>3 2299 | Libya>Morocco>5 2300 | Libya>Saudi Arabia>2 2301 | Libya>Spain>1 2302 | Libya>Tunisia>27 2303 | Libya>Turkey>8 2304 | Libya>United Arab Emirates>1 2305 | Libya>United Kingdom>3 2306 | Lithuania>Austria>1 2307 | Lithuania>Belarus>1 2308 | Lithuania>Belgium>5 2309 | Lithuania>Cyprus>1 2310 | Lithuania>Czech Republic>1 2311 | Lithuania>Denmark>3 2312 | Lithuania>Estonia>3 2313 | Lithuania>Finland>2 2314 | Lithuania>France>3 2315 | Lithuania>Georgia>1 2316 | Lithuania>Germany>7 2317 | Lithuania>Greece>4 2318 | Lithuania>Ireland>4 2319 | Lithuania>Israel>1 2320 | Lithuania>Italy>7 2321 | Lithuania>Latvia>2 2322 | Lithuania>Malta>1 2323 | Lithuania>Netherlands>1 2324 | Lithuania>Norway>8 2325 | Lithuania>Poland>1 2326 | Lithuania>Russia>4 2327 | Lithuania>Spain>4 2328 | Lithuania>Sweden>2 2329 | Lithuania>Turkey>1 2330 | Lithuania>Ukraine>2 2331 | Lithuania>United Kingdom>10 2332 | Luxembourg>Austria>2 2333 | Luxembourg>Bulgaria>1 2334 | Luxembourg>Cape Verde>1 2335 | Luxembourg>Croatia>1 2336 | Luxembourg>Denmark>2 2337 | Luxembourg>France>7 2338 | Luxembourg>Germany>9 2339 | Luxembourg>Greece>4 2340 | Luxembourg>Ireland>1 2341 | Luxembourg>Italy>8 2342 | Luxembourg>Malta>1 2343 | Luxembourg>Morocco>2 2344 | Luxembourg>Netherlands>1 2345 | Luxembourg>Portugal>7 2346 | Luxembourg>Spain>12 2347 | Luxembourg>Sweden>1 2348 | Luxembourg>Switzerland>2 2349 | Luxembourg>Tunisia>1 2350 | Luxembourg>Turkey>3 2351 | Luxembourg>United Kingdom>4 2352 | Macau>China>46 2353 | Macau>Japan>6 2354 | Macau>Malaysia>1 2355 | Macau>Philippines>5 2356 | Macau>Singapore>1 2357 | Macau>South Korea>6 2358 | Macau>Taiwan>8 2359 | Macau>Thailand>4 2360 | Macau>Vietnam>2 2361 | Macedonia>Austria>1 2362 | Macedonia>Belgium>1 2363 | Macedonia>Croatia>1 2364 | Macedonia>France>1 2365 | Macedonia>Germany>5 2366 | Macedonia>Italy>3 2367 | Macedonia>Netherlands>1 2368 | Macedonia>Serbia>1 2369 | Macedonia>Slovenia>1 2370 | Macedonia>Sweden>3 2371 | Macedonia>Switzerland>2 2372 | Macedonia>Turkey>2 2373 | Macedonia>United Arab Emirates>1 2374 | Macedonia>United Kingdom>1 2375 | Madagascar>Comoros>1 2376 | Madagascar>France>5 2377 | Madagascar>Kenya>1 2378 | Madagascar>Mauritius>2 2379 | Madagascar>Mayotte>5 2380 | Madagascar>Reunion>7 2381 | Madagascar>South Africa>2 2382 | Madagascar>Thailand>2 2383 | Malawi>Ethiopia>1 2384 | Malawi>Kenya>4 2385 | Malawi>South Africa>3 2386 | Malawi>Tanzania>1 2387 | Malawi>Zambia>5 2388 | Malawi>Zimbabwe>1 2389 | Malaysia>Australia>14 2390 | Malaysia>Bangladesh>6 2391 | Malaysia>Brunei>7 2392 | Malaysia>Burma>3 2393 | Malaysia>Cambodia>4 2394 | Malaysia>China>29 2395 | Malaysia>France>3 2396 | Malaysia>Germany>3 2397 | Malaysia>Hong Kong>11 2398 | Malaysia>India>22 2399 | Malaysia>Indonesia>46 2400 | Malaysia>Iran>2 2401 | Malaysia>Japan>10 2402 | Malaysia>Kazakhstan>1 2403 | Malaysia>Korea>1 2404 | Malaysia>Kuwait>1 2405 | Malaysia>Laos>1 2406 | Malaysia>Macau>1 2407 | Malaysia>Maldives>1 2408 | Malaysia>Mauritius>2 2409 | Malaysia>Nepal>3 2410 | Malaysia>Netherlands>3 2411 | Malaysia>New Zealand>1 2412 | Malaysia>Oman>2 2413 | Malaysia>Pakistan>3 2414 | Malaysia>Philippines>9 2415 | Malaysia>Qatar>2 2416 | Malaysia>Saudi Arabia>6 2417 | Malaysia>Singapore>39 2418 | Malaysia>South Korea>8 2419 | Malaysia>Sri Lanka>4 2420 | Malaysia>Taiwan>7 2421 | Malaysia>Thailand>33 2422 | Malaysia>Turkey>2 2423 | Malaysia>United Arab Emirates>7 2424 | Malaysia>United Kingdom>2 2425 | Malaysia>Uzbekistan>2 2426 | Malaysia>Vietnam>6 2427 | Maldives>China>4 2428 | Maldives>Germany>1 2429 | Maldives>Hong Kong>2 2430 | Maldives>India>5 2431 | Maldives>Italy>1 2432 | Maldives>Malaysia>1 2433 | Maldives>Oman>1 2434 | Maldives>Qatar>1 2435 | Maldives>Russia>2 2436 | Maldives>Singapore>2 2437 | Maldives>Sri Lanka>13 2438 | Maldives>Thailand>1 2439 | Maldives>Turkey>1 2440 | Maldives>United Arab Emirates>4 2441 | Maldives>United Kingdom>1 2442 | Mali>Algeria>1 2443 | Mali>Benin>3 2444 | Mali>Burkina Faso>3 2445 | Mali>Cote d'Ivoire>3 2446 | Mali>Ethiopia>2 2447 | Mali>France>2 2448 | Mali>Guinea>2 2449 | Mali>Kenya>1 2450 | Mali>Mauritania>1 2451 | Mali>Morocco>1 2452 | Mali>Nigeria>1 2453 | Mali>Portugal>1 2454 | Mali>Senegal>5 2455 | Mali>Togo>1 2456 | Mali>Tunisia>1 2457 | Malta>Algeria>1 2458 | Malta>Austria>4 2459 | Malta>Belgium>2 2460 | Malta>Cyprus>2 2461 | Malta>Czech Republic>2 2462 | Malta>Denmark>2 2463 | Malta>France>11 2464 | Malta>Germany>8 2465 | Malta>Greece>1 2466 | Malta>Hungary>2 2467 | Malta>Ireland>1 2468 | Malta>Italy>15 2469 | Malta>Latvia>1 2470 | Malta>Libya>4 2471 | Malta>Lithuania>1 2472 | Malta>Luxembourg>1 2473 | Malta>Netherlands>3 2474 | Malta>Norway>2 2475 | Malta>Poland>2 2476 | Malta>Russia>4 2477 | Malta>Spain>4 2478 | Malta>Sweden>3 2479 | Malta>Switzerland>3 2480 | Malta>Tunisia>2 2481 | Malta>Turkey>4 2482 | Malta>United Kingdom>28 2483 | Marshall Islands>Kiribati>1 2484 | Marshall Islands>Micronesia>2 2485 | Marshall Islands>Nauru>1 2486 | Marshall Islands>United States>1 2487 | Martinique>Barbados>1 2488 | Martinique>Canada>1 2489 | Martinique>Cuba>1 2490 | Martinique>Dominican Republic>2 2491 | Martinique>France>4 2492 | Martinique>French Guiana>2 2493 | Martinique>Guadeloupe>4 2494 | Martinique>Puerto Rico>2 2495 | Martinique>Saint Lucia>4 2496 | Martinique>United States>2 2497 | Mauritania>France>1 2498 | Mauritania>Guinea>1 2499 | Mauritania>Mali>1 2500 | Mauritania>Morocco>2 2501 | Mauritania>Senegal>3 2502 | Mauritania>Spain>3 2503 | Mauritania>Tunisia>1 2504 | Mauritius>Australia>1 2505 | Mauritius>China>2 2506 | Mauritius>France>3 2507 | Mauritius>Germany>1 2508 | Mauritius>Hong Kong>1 2509 | Mauritius>India>6 2510 | Mauritius>Italy>1 2511 | Mauritius>Kenya>2 2512 | Mauritius>Madagascar>2 2513 | Mauritius>Malaysia>2 2514 | Mauritius>Reunion>7 2515 | Mauritius>Russia>1 2516 | Mauritius>Seychelles>1 2517 | Mauritius>South Africa>5 2518 | Mauritius>United Arab Emirates>2 2519 | Mauritius>United Kingdom>3 2520 | Mayotte>Comoros>5 2521 | Mayotte>Madagascar>7 2522 | Mayotte>Reunion>2 2523 | Mayotte>Tanzania>1 2524 | Mexico>Argentina>2 2525 | Mexico>Belize>2 2526 | Mexico>Brazil>2 2527 | Mexico>Canada>30 2528 | Mexico>Chile>3 2529 | Mexico>China>1 2530 | Mexico>Colombia>6 2531 | Mexico>Costa Rica>3 2532 | Mexico>Cuba>5 2533 | Mexico>Ecuador>1 2534 | Mexico>El Salvador>3 2535 | Mexico>France>4 2536 | Mexico>Germany>4 2537 | Mexico>Guatemala>3 2538 | Mexico>Honduras>1 2539 | Mexico>Italy>3 2540 | Mexico>Japan>2 2541 | Mexico>Netherlands>2 2542 | Mexico>Panama>8 2543 | Mexico>Peru>4 2544 | Mexico>Russia>1 2545 | Mexico>Spain>8 2546 | Mexico>United Kingdom>12 2547 | Mexico>United States>373 2548 | Mexico>Venezuela>1 2549 | Micronesia>Guam>2 2550 | Micronesia>Marshall Islands>2 2551 | Micronesia>Palau>1 2552 | Moldova>Austria>1 2553 | Moldova>Cyprus>1 2554 | Moldova>France>1 2555 | Moldova>Germany>2 2556 | Moldova>Greece>1 2557 | Moldova>Ireland>1 2558 | Moldova>Italy>12 2559 | Moldova>Latvia>1 2560 | Moldova>Portugal>1 2561 | Moldova>Romania>3 2562 | Moldova>Russia>5 2563 | Moldova>Turkey>2 2564 | Moldova>Ukraine>1 2565 | Moldova>United Arab Emirates>1 2566 | Moldova>United Kingdom>1 2567 | Monaco>France>1 2568 | Mongolia>China>4 2569 | Mongolia>Hong Kong>2 2570 | Mongolia>Japan>1 2571 | Mongolia>Kyrgyzstan>1 2572 | Mongolia>Russia>2 2573 | Mongolia>South Korea>2 2574 | Mongolia>Thailand>1 2575 | Montenegro>Austria>2 2576 | Montenegro>Belgium>2 2577 | Montenegro>France>2 2578 | Montenegro>Germany>2 2579 | Montenegro>Italy>2 2580 | Montenegro>Russia>7 2581 | Montenegro>Serbia>4 2582 | Montenegro>Slovenia>2 2583 | Montenegro>Switzerland>1 2584 | Montenegro>Turkey>1 2585 | Montenegro>United Kingdom>2 2586 | Morocco>Algeria>3 2587 | Morocco>Angola>1 2588 | Morocco>Belgium>21 2589 | Morocco>Benin>1 2590 | Morocco>Brazil>1 2591 | Morocco>Burkina Faso>1 2592 | Morocco>Cameroon>2 2593 | Morocco>Canada>1 2594 | Morocco>Cape Verde>1 2595 | Morocco>Congo (Brazzaville)>2 2596 | Morocco>Congo (Kinshasa)>1 2597 | Morocco>Cote d'Ivoire>1 2598 | Morocco>Denmark>1 2599 | Morocco>Egypt>2 2600 | Morocco>Equatorial Guinea>1 2601 | Morocco>France>79 2602 | Morocco>Gabon>1 2603 | Morocco>Gambia>1 2604 | Morocco>Germany>21 2605 | Morocco>Guinea>1 2606 | Morocco>Guinea-Bissau>1 2607 | Morocco>Ireland>1 2608 | Morocco>Italy>17 2609 | Morocco>Lebanon>1 2610 | Morocco>Liberia>1 2611 | Morocco>Libya>5 2612 | Morocco>Luxembourg>2 2613 | Morocco>Mali>1 2614 | Morocco>Mauritania>2 2615 | Morocco>Netherlands>11 2616 | Morocco>Niger>1 2617 | Morocco>Norway>1 2618 | Morocco>Portugal>4 2619 | Morocco>Qatar>1 2620 | Morocco>Russia>2 2621 | Morocco>Saudi Arabia>4 2622 | Morocco>Senegal>1 2623 | Morocco>Sierra Leone>1 2624 | Morocco>Spain>39 2625 | Morocco>Sweden>1 2626 | Morocco>Switzerland>6 2627 | Morocco>Togo>1 2628 | Morocco>Tunisia>2 2629 | Morocco>Turkey>3 2630 | Morocco>United Arab Emirates>4 2631 | Morocco>United Kingdom>26 2632 | Morocco>United States>1 2633 | Morocco>Western Sahara>4 2634 | Mozambique>Angola>1 2635 | Mozambique>Ethiopia>1 2636 | Mozambique>Kenya>4 2637 | Mozambique>Portugal>1 2638 | Mozambique>South Africa>15 2639 | Mozambique>Tanzania>1 2640 | Namibia>Angola>3 2641 | Namibia>Botswana>1 2642 | Namibia>Germany>1 2643 | Namibia>Ghana>1 2644 | Namibia>South Africa>9 2645 | Namibia>Zambia>2 2646 | Namibia>Zimbabwe>2 2647 | Nauru>Australia>1 2648 | Nauru>Kiribati>1 2649 | Nauru>Marshall Islands>1 2650 | Nepal>Bangladesh>4 2651 | Nepal>Bhutan>1 2652 | Nepal>China>4 2653 | Nepal>Hong Kong>1 2654 | Nepal>India>8 2655 | Nepal>Malaysia>3 2656 | Nepal>Oman>1 2657 | Nepal>Pakistan>1 2658 | Nepal>Qatar>2 2659 | Nepal>Singapore>2 2660 | Nepal>South Korea>1 2661 | Nepal>Thailand>2 2662 | Nepal>Turkey>1 2663 | Nepal>United Arab Emirates>4 2664 | Netherlands Antilles>Anguilla>2 2665 | Netherlands Antilles>Antigua and Barbuda>1 2666 | Netherlands Antilles>Aruba>4 2667 | Netherlands Antilles>Barbados>1 2668 | Netherlands Antilles>British Virgin Islands>4 2669 | Netherlands Antilles>Canada>1 2670 | Netherlands Antilles>Colombia>2 2671 | Netherlands Antilles>Dominica>5 2672 | Netherlands Antilles>Dominican Republic>6 2673 | Netherlands Antilles>France>7 2674 | Netherlands Antilles>Germany>1 2675 | Netherlands Antilles>Guadeloupe>1 2676 | Netherlands Antilles>Haiti>1 2677 | Netherlands Antilles>Jamaica>2 2678 | Netherlands Antilles>Netherlands>4 2679 | Netherlands Antilles>Panama>2 2680 | Netherlands Antilles>Puerto Rico>3 2681 | Netherlands Antilles>Saint Kitts and Nevis>3 2682 | Netherlands Antilles>Saint Lucia>1 2683 | Netherlands Antilles>Suriname>1 2684 | Netherlands Antilles>Trinidad and Tobago>3 2685 | Netherlands Antilles>United States>23 2686 | Netherlands Antilles>Venezuela>6 2687 | Netherlands Antilles>Virgin Islands>3 2688 | Netherlands>Angola>1 2689 | Netherlands>Argentina>1 2690 | Netherlands>Aruba>2 2691 | Netherlands>Austria>5 2692 | Netherlands>Belarus>1 2693 | Netherlands>Belgium>1 2694 | Netherlands>Brazil>2 2695 | Netherlands>Bulgaria>2 2696 | Netherlands>Canada>10 2697 | Netherlands>Cape Verde>1 2698 | Netherlands>China>13 2699 | Netherlands>Croatia>3 2700 | Netherlands>Cuba>3 2701 | Netherlands>Cyprus>3 2702 | Netherlands>Czech Republic>5 2703 | Netherlands>Denmark>11 2704 | Netherlands>Dominican Republic>2 2705 | Netherlands>Ecuador>2 2706 | Netherlands>Egypt>2 2707 | Netherlands>Estonia>2 2708 | Netherlands>Finland>4 2709 | Netherlands>France>31 2710 | Netherlands>Georgia>2 2711 | Netherlands>Germany>25 2712 | Netherlands>Ghana>1 2713 | Netherlands>Greece>21 2714 | Netherlands>Guernsey>1 2715 | Netherlands>Hong Kong>2 2716 | Netherlands>Hungary>4 2717 | Netherlands>Iceland>1 2718 | Netherlands>India>3 2719 | Netherlands>Iran>1 2720 | Netherlands>Iraq>1 2721 | Netherlands>Ireland>4 2722 | Netherlands>Israel>4 2723 | Netherlands>Italy>42 2724 | Netherlands>Japan>3 2725 | Netherlands>Jersey>1 2726 | Netherlands>Jordan>1 2727 | Netherlands>Kazakhstan>2 2728 | Netherlands>Kenya>3 2729 | Netherlands>Kuwait>3 2730 | Netherlands>Latvia>3 2731 | Netherlands>Lithuania>1 2732 | Netherlands>Luxembourg>1 2733 | Netherlands>Macedonia>1 2734 | Netherlands>Malaysia>3 2735 | Netherlands>Malta>3 2736 | Netherlands>Mexico>1 2737 | Netherlands>Morocco>10 2738 | Netherlands>Netherlands Antilles>4 2739 | Netherlands>Nigeria>1 2740 | Netherlands>Norway>15 2741 | Netherlands>Panama>2 2742 | Netherlands>Peru>2 2743 | Netherlands>Poland>9 2744 | Netherlands>Portugal>23 2745 | Netherlands>Qatar>3 2746 | Netherlands>Romania>4 2747 | Netherlands>Russia>4 2748 | Netherlands>Rwanda>3 2749 | Netherlands>Saudi Arabia>3 2750 | Netherlands>Serbia>3 2751 | Netherlands>Singapore>2 2752 | Netherlands>Slovenia>1 2753 | Netherlands>South Africa>3 2754 | Netherlands>South Korea>2 2755 | Netherlands>Spain>68 2756 | Netherlands>Suriname>2 2757 | Netherlands>Sweden>7 2758 | Netherlands>Switzerland>9 2759 | Netherlands>Taiwan>2 2760 | Netherlands>Tanzania>3 2761 | Netherlands>Thailand>3 2762 | Netherlands>Tunisia>1 2763 | Netherlands>Turkey>24 2764 | Netherlands>Ukraine>2 2765 | Netherlands>United Arab Emirates>10 2766 | Netherlands>United Kingdom>54 2767 | Netherlands>United States>39 2768 | Netherlands>Zimbabwe>3 2769 | New Caledonia>Australia>4 2770 | New Caledonia>Fiji>1 2771 | New Caledonia>French Polynesia>1 2772 | New Caledonia>Japan>2 2773 | New Caledonia>New Zealand>2 2774 | New Caledonia>Vanuatu>2 2775 | New Caledonia>Wallis and Futuna>1 2776 | New Zealand>Australia>64 2777 | New Zealand>Chile>2 2778 | New Zealand>China>3 2779 | New Zealand>Cook Islands>2 2780 | New Zealand>Fiji>3 2781 | New Zealand>French Polynesia>4 2782 | New Zealand>Hong Kong>2 2783 | New Zealand>Japan>3 2784 | New Zealand>Malaysia>1 2785 | New Zealand>New Caledonia>2 2786 | New Zealand>Samoa>2 2787 | New Zealand>Singapore>5 2788 | New Zealand>South Korea>1 2789 | New Zealand>Thailand>2 2790 | New Zealand>Tonga>2 2791 | New Zealand>United States>4 2792 | New Zealand>Vanuatu>2 2793 | Nicaragua>Costa Rica>4 2794 | Nicaragua>El Salvador>2 2795 | Nicaragua>Guatemala>1 2796 | Nicaragua>Panama>2 2797 | Nicaragua>United States>6 2798 | Niger>Algeria>1 2799 | Niger>Benin>1 2800 | Niger>Burkina Faso>8 2801 | Niger>Chad>1 2802 | Niger>Ethiopia>1 2803 | Niger>France>3 2804 | Niger>Morocco>1 2805 | Niger>Nigeria>1 2806 | Nigeria>Benin>3 2807 | Nigeria>Cameroon>2 2808 | Nigeria>Chad>2 2809 | Nigeria>Cote d'Ivoire>4 2810 | Nigeria>Egypt>3 2811 | Nigeria>Equatorial Guinea>2 2812 | Nigeria>Ethiopia>3 2813 | Nigeria>France>4 2814 | Nigeria>Gabon>1 2815 | Nigeria>Germany>4 2816 | Nigeria>Ghana>6 2817 | Nigeria>Jordan>1 2818 | Nigeria>Kenya>1 2819 | Nigeria>Lebanon>2 2820 | Nigeria>Liberia>1 2821 | Nigeria>Mali>1 2822 | Nigeria>Morocco>1 2823 | Nigeria>Netherlands>1 2824 | Nigeria>Niger>1 2825 | Nigeria>Qatar>1 2826 | Nigeria>Rwanda>1 2827 | Nigeria>Saudi Arabia>1 2828 | Nigeria>Senegal>1 2829 | Nigeria>Sierra Leone>1 2830 | Nigeria>South Africa>2 2831 | Nigeria>Spain>1 2832 | Nigeria>Sudan>1 2833 | Nigeria>Togo>2 2834 | Nigeria>Turkey>1 2835 | Nigeria>United Arab Emirates>2 2836 | Nigeria>United Kingdom>4 2837 | Nigeria>United States>3 2838 | Niue>New Zealand>1 2839 | Norfolk Island>Australia>2 2840 | Norfolk Island>New Zealand>1 2841 | Northern Mariana Islands>China>3 2842 | Northern Mariana Islands>Guam>2 2843 | Northern Mariana Islands>Japan>3 2844 | Northern Mariana Islands>South Korea>2 2845 | Norway>Austria>2 2846 | Norway>Belgium>3 2847 | Norway>Bulgaria>1 2848 | Norway>Croatia>9 2849 | Norway>Cyprus>1 2850 | Norway>Czech Republic>3 2851 | Norway>Denmark>29 2852 | Norway>Estonia>6 2853 | Norway>Faroe Islands>2 2854 | Norway>Finland>3 2855 | Norway>France>15 2856 | Norway>Germany>26 2857 | Norway>Greece>11 2858 | Norway>Hungary>1 2859 | Norway>Iceland>6 2860 | Norway>Ireland>3 2861 | Norway>Italy>14 2862 | Norway>Latvia>10 2863 | Norway>Lithuania>8 2864 | Norway>Malta>2 2865 | Norway>Morocco>1 2866 | Norway>Netherlands>15 2867 | Norway>Pakistan>1 2868 | Norway>Poland>31 2869 | Norway>Portugal>3 2870 | Norway>Qatar>1 2871 | Norway>Romania>1 2872 | Norway>Russia>4 2873 | Norway>Serbia>2 2874 | Norway>Slovakia>1 2875 | Norway>Spain>52 2876 | Norway>Sweden>13 2877 | Norway>Switzerland>3 2878 | Norway>Thailand>3 2879 | Norway>Turkey>7 2880 | Norway>Ukraine>1 2881 | Norway>United Kingdom>42 2882 | Norway>United States>5 2883 | Oman>Bahrain>3 2884 | Oman>Bangladesh>4 2885 | Oman>Egypt>2 2886 | Oman>Ethiopia>2 2887 | Oman>France>1 2888 | Oman>Germany>2 2889 | Oman>India>24 2890 | Oman>Iran>3 2891 | Oman>Italy>1 2892 | Oman>Jordan>2 2893 | Oman>Kuwait>2 2894 | Oman>Lebanon>1 2895 | Oman>Malaysia>2 2896 | Oman>Maldives>1 2897 | Oman>Nepal>1 2898 | Oman>Pakistan>14 2899 | Oman>Qatar>6 2900 | Oman>Saudi Arabia>7 2901 | Oman>Sri Lanka>3 2902 | Oman>Switzerland>2 2903 | Oman>Tanzania>1 2904 | Oman>Thailand>1 2905 | Oman>Turkey>2 2906 | Oman>United Arab Emirates>20 2907 | Oman>United Kingdom>1 2908 | Pakistan>Afghanistan>4 2909 | Pakistan>Bahrain>6 2910 | Pakistan>Bangladesh>1 2911 | Pakistan>Canada>3 2912 | Pakistan>China>4 2913 | Pakistan>Denmark>1 2914 | Pakistan>France>1 2915 | Pakistan>India>3 2916 | Pakistan>Iran>3 2917 | Pakistan>Italy>2 2918 | Pakistan>Kuwait>6 2919 | Pakistan>Malaysia>3 2920 | Pakistan>Nepal>1 2921 | Pakistan>Norway>1 2922 | Pakistan>Oman>13 2923 | Pakistan>Qatar>6 2924 | Pakistan>Saudi Arabia>39 2925 | Pakistan>Spain>2 2926 | Pakistan>Sri Lanka>2 2927 | Pakistan>Thailand>4 2928 | Pakistan>Turkey>3 2929 | Pakistan>United Arab Emirates>51 2930 | Pakistan>United Kingdom>7 2931 | Palau>Guam>1 2932 | Palau>Japan>3 2933 | Palau>Micronesia>1 2934 | Palau>Philippines>1 2935 | Palau>South Korea>2 2936 | Palau>Taiwan>2 2937 | Panama>Argentina>2 2938 | Panama>Aruba>1 2939 | Panama>Bahamas>1 2940 | Panama>Bolivia>1 2941 | Panama>Brazil>7 2942 | Panama>Canada>1 2943 | Panama>Chile>1 2944 | Panama>Colombia>10 2945 | Panama>Costa Rica>7 2946 | Panama>Cuba>2 2947 | Panama>Dominican Republic>4 2948 | Panama>Ecuador>3 2949 | Panama>El Salvador>2 2950 | Panama>France>1 2951 | Panama>Guatemala>1 2952 | Panama>Haiti>2 2953 | Panama>Honduras>2 2954 | Panama>Jamaica>2 2955 | Panama>Mexico>8 2956 | Panama>Netherlands>2 2957 | Panama>Netherlands Antilles>2 2958 | Panama>Nicaragua>2 2959 | Panama>Paraguay>1 2960 | Panama>Peru>2 2961 | Panama>Puerto Rico>1 2962 | Panama>Spain>1 2963 | Panama>Trinidad and Tobago>2 2964 | Panama>Turkey>1 2965 | Panama>United States>30 2966 | Panama>Uruguay>1 2967 | Panama>Venezuela>6 2968 | Papua New Guinea>Australia>9 2969 | Papua New Guinea>Fiji>1 2970 | Papua New Guinea>Hong Kong>1 2971 | Papua New Guinea>Indonesia>1 2972 | Papua New Guinea>Japan>1 2973 | Papua New Guinea>Philippines>2 2974 | Papua New Guinea>Singapore>1 2975 | Papua New Guinea>Solomon Islands>1 2976 | Paraguay>Argentina>4 2977 | Paraguay>Bolivia>2 2978 | Paraguay>Brazil>5 2979 | Paraguay>Chile>2 2980 | Paraguay>Panama>1 2981 | Paraguay>Peru>1 2982 | Paraguay>United States>2 2983 | Paraguay>Uruguay>1 2984 | Peru>Argentina>4 2985 | Peru>Bolivia>8 2986 | Peru>Brazil>10 2987 | Peru>Canada>1 2988 | Peru>Chile>7 2989 | Peru>Colombia>4 2990 | Peru>Costa Rica>1 2991 | Peru>Cuba>2 2992 | Peru>Dominican Republic>2 2993 | Peru>Ecuador>6 2994 | Peru>El Salvador>1 2995 | Peru>France>2 2996 | Peru>Mexico>4 2997 | Peru>Netherlands>2 2998 | Peru>Panama>2 2999 | Peru>Paraguay>1 3000 | Peru>Spain>3 3001 | Peru>United States>21 3002 | Peru>Uruguay>1 3003 | Peru>Venezuela>2 3004 | Philippines>Australia>4 3005 | Philippines>Bahrain>2 3006 | Philippines>Brunei>2 3007 | Philippines>Cambodia>1 3008 | Philippines>Canada>1 3009 | Philippines>China>13 3010 | Philippines>Guam>2 3011 | Philippines>Hong Kong>11 3012 | Philippines>Indonesia>5 3013 | Philippines>Japan>15 3014 | Philippines>Macau>5 3015 | Philippines>Malaysia>9 3016 | Philippines>Palau>1 3017 | Philippines>Papua New Guinea>2 3018 | Philippines>Qatar>3 3019 | Philippines>Saudi Arabia>5 3020 | Philippines>Singapore>17 3021 | Philippines>South Korea>27 3022 | Philippines>Taiwan>9 3023 | Philippines>Thailand>6 3024 | Philippines>United Arab Emirates>7 3025 | Philippines>United Kingdom>1 3026 | Philippines>United States>3 3027 | Philippines>Vietnam>4 3028 | Poland>Armenia>1 3029 | Poland>Austria>4 3030 | Poland>Belarus>2 3031 | Poland>Belgium>6 3032 | Poland>Bulgaria>2 3033 | Poland>Canada>2 3034 | Poland>China>2 3035 | Poland>Croatia>3 3036 | Poland>Cyprus>2 3037 | Poland>Czech Republic>3 3038 | Poland>Denmark>8 3039 | Poland>Estonia>1 3040 | Poland>Finland>5 3041 | Poland>France>14 3042 | Poland>Georgia>3 3043 | Poland>Germany>44 3044 | Poland>Greece>7 3045 | Poland>Hungary>2 3046 | Poland>Ireland>15 3047 | Poland>Israel>4 3048 | Poland>Italy>29 3049 | Poland>Latvia>2 3050 | Poland>Lithuania>1 3051 | Poland>Malta>2 3052 | Poland>Netherlands>9 3053 | Poland>Norway>31 3054 | Poland>Portugal>2 3055 | Poland>Qatar>1 3056 | Poland>Romania>2 3057 | Poland>Russia>4 3058 | Poland>Serbia>2 3059 | Poland>Slovenia>2 3060 | Poland>Spain>22 3061 | Poland>Sweden>13 3062 | Poland>Switzerland>8 3063 | Poland>Turkey>2 3064 | Poland>Ukraine>6 3065 | Poland>United Arab Emirates>2 3066 | Poland>United Kingdom>67 3067 | Poland>United States>2 3068 | Portugal>Algeria>2 3069 | Portugal>Angola>3 3070 | Portugal>Austria>6 3071 | Portugal>Belgium>18 3072 | Portugal>Brazil>12 3073 | Portugal>Canada>8 3074 | Portugal>Cape Verde>9 3075 | Portugal>Czech Republic>2 3076 | Portugal>Denmark>5 3077 | Portugal>Finland>2 3078 | Portugal>France>47 3079 | Portugal>Germany>62 3080 | Portugal>Ghana>1 3081 | Portugal>Hungary>1 3082 | Portugal>Ireland>12 3083 | Portugal>Italy>18 3084 | Portugal>Luxembourg>7 3085 | Portugal>Mali>1 3086 | Portugal>Moldova>1 3087 | Portugal>Morocco>4 3088 | Portugal>Mozambique>1 3089 | Portugal>Netherlands>22 3090 | Portugal>Norway>3 3091 | Portugal>Poland>2 3092 | Portugal>Romania>1 3093 | Portugal>Russia>2 3094 | Portugal>Sao Tome and Principe>2 3095 | Portugal>Senegal>1 3096 | Portugal>Spain>43 3097 | Portugal>Sweden>4 3098 | Portugal>Switzerland>21 3099 | Portugal>Tunisia>1 3100 | Portugal>Turkey>2 3101 | Portugal>Ukraine>2 3102 | Portugal>United Arab Emirates>2 3103 | Portugal>United Kingdom>82 3104 | Portugal>United States>14 3105 | Portugal>Venezuela>3 3106 | Puerto Rico>Anguilla>2 3107 | Puerto Rico>Antigua and Barbuda>1 3108 | Puerto Rico>British Virgin Islands>7 3109 | Puerto Rico>Canada>1 3110 | Puerto Rico>Colombia>1 3111 | Puerto Rico>Dominica>4 3112 | Puerto Rico>Dominican Republic>9 3113 | Puerto Rico>France>1 3114 | Puerto Rico>Germany>1 3115 | Puerto Rico>Guadeloupe>2 3116 | Puerto Rico>Martinique>2 3117 | Puerto Rico>Netherlands Antilles>3 3118 | Puerto Rico>Panama>1 3119 | Puerto Rico>Saint Kitts and Nevis>4 3120 | Puerto Rico>Turks and Caicos Islands>1 3121 | Puerto Rico>United States>53 3122 | Puerto Rico>Venezuela>1 3123 | Puerto Rico>Virgin Islands>8 3124 | Qatar>Algeria>1 3125 | Qatar>Australia>2 3126 | Qatar>Austria>1 3127 | Qatar>Azerbaijan>2 3128 | Qatar>Bahrain>12 3129 | Qatar>Bangladesh>1 3130 | Qatar>Belgium>1 3131 | Qatar>Brazil>1 3132 | Qatar>Burma>1 3133 | Qatar>Canada>1 3134 | Qatar>China>6 3135 | Qatar>Cyprus>1 3136 | Qatar>Denmark>1 3137 | Qatar>Egypt>4 3138 | Qatar>Ethiopia>1 3139 | Qatar>France>1 3140 | Qatar>Germany>9 3141 | Qatar>Greece>2 3142 | Qatar>Hong Kong>2 3143 | Qatar>Hungary>1 3144 | Qatar>India>17 3145 | Qatar>Indonesia>1 3146 | Qatar>Iran>5 3147 | Qatar>Iraq>5 3148 | Qatar>Italy>4 3149 | Qatar>Japan>6 3150 | Qatar>Jordan>2 3151 | Qatar>Kenya>1 3152 | Qatar>Kuwait>2 3153 | Qatar>Lebanon>2 3154 | Qatar>Malaysia>2 3155 | Qatar>Maldives>1 3156 | Qatar>Morocco>1 3157 | Qatar>Nepal>2 3158 | Qatar>Netherlands>3 3159 | Qatar>Nigeria>1 3160 | Qatar>Norway>1 3161 | Qatar>Oman>6 3162 | Qatar>Pakistan>5 3163 | Qatar>Philippines>3 3164 | Qatar>Poland>1 3165 | Qatar>Romania>1 3166 | Qatar>Russia>1 3167 | Qatar>Saudi Arabia>9 3168 | Qatar>Singapore>1 3169 | Qatar>South Africa>1 3170 | Qatar>South Korea>2 3171 | Qatar>Spain>6 3172 | Qatar>Sri Lanka>2 3173 | Qatar>Sudan>2 3174 | Qatar>Sweden>1 3175 | Qatar>Switzerland>3 3176 | Qatar>Tanzania>1 3177 | Qatar>Thailand>1 3178 | Qatar>Tunisia>1 3179 | Qatar>Turkey>4 3180 | Qatar>Uganda>1 3181 | Qatar>United Arab Emirates>11 3182 | Qatar>United Kingdom>4 3183 | Qatar>United States>11 3184 | Qatar>Vietnam>1 3185 | Qatar>Yemen>3 3186 | Reunion>Comoros>1 3187 | Reunion>France>5 3188 | Reunion>India>1 3189 | Reunion>Madagascar>6 3190 | Reunion>Mauritius>7 3191 | Reunion>Mayotte>1 3192 | Reunion>South Africa>1 3193 | Romania>Austria>8 3194 | Romania>Belgium>4 3195 | Romania>Bulgaria>3 3196 | Romania>Cyprus>3 3197 | Romania>Czech Republic>5 3198 | Romania>Denmark>1 3199 | Romania>France>7 3200 | Romania>Germany>16 3201 | Romania>Greece>4 3202 | Romania>Hungary>1 3203 | Romania>Ireland>2 3204 | Romania>Israel>5 3205 | Romania>Italy>34 3206 | Romania>Jordan>2 3207 | Romania>Lebanon>2 3208 | Romania>Moldova>3 3209 | Romania>Netherlands>4 3210 | Romania>Norway>1 3211 | Romania>Poland>2 3212 | Romania>Portugal>1 3213 | Romania>Qatar>1 3214 | Romania>Russia>2 3215 | Romania>Serbia>2 3216 | Romania>Spain>17 3217 | Romania>Switzerland>3 3218 | Romania>Turkey>4 3219 | Romania>United Arab Emirates>3 3220 | Romania>United Kingdom>11 3221 | Russia>Algeria>1 3222 | Russia>Armenia>27 3223 | Russia>Austria>13 3224 | Russia>Azerbaijan>21 3225 | Russia>Belarus>12 3226 | Russia>Belgium>2 3227 | Russia>Bulgaria>8 3228 | Russia>Canada>2 3229 | Russia>China>48 3230 | Russia>Croatia>2 3231 | Russia>Cuba>3 3232 | Russia>Cyprus>11 3233 | Russia>Czech Republic>24 3234 | Russia>Denmark>3 3235 | Russia>Dominican Republic>4 3236 | Russia>Egypt>11 3237 | Russia>Estonia>3 3238 | Russia>Finland>9 3239 | Russia>France>11 3240 | Russia>Georgia>5 3241 | Russia>Germany>47 3242 | Russia>Greece>28 3243 | Russia>Hong Kong>9 3244 | Russia>Hungary>4 3245 | Russia>India>2 3246 | Russia>Iran>2 3247 | Russia>Israel>10 3248 | Russia>Italy>34 3249 | Russia>Japan>9 3250 | Russia>Jordan>2 3251 | Russia>Kazakhstan>35 3252 | Russia>Korea>1 3253 | Russia>Kyrgyzstan>49 3254 | Russia>Latvia>8 3255 | Russia>Lebanon>2 3256 | Russia>Lithuania>4 3257 | Russia>Maldives>2 3258 | Russia>Malta>4 3259 | Russia>Mauritius>1 3260 | Russia>Mexico>1 3261 | Russia>Moldova>5 3262 | Russia>Mongolia>2 3263 | Russia>Montenegro>7 3264 | Russia>Morocco>2 3265 | Russia>Netherlands>4 3266 | Russia>Norway>4 3267 | Russia>Poland>4 3268 | Russia>Portugal>2 3269 | Russia>Qatar>1 3270 | Russia>Romania>2 3271 | Russia>Serbia>2 3272 | Russia>Seychelles>1 3273 | Russia>Singapore>2 3274 | Russia>Slovenia>2 3275 | Russia>South Korea>13 3276 | Russia>Spain>28 3277 | Russia>Sri Lanka>1 3278 | Russia>Sweden>4 3279 | Russia>Switzerland>6 3280 | Russia>Tajikistan>72 3281 | Russia>Thailand>11 3282 | Russia>Tunisia>6 3283 | Russia>Turkey>32 3284 | Russia>Turkmenistan>2 3285 | Russia>Ukraine>38 3286 | Russia>United Arab Emirates>35 3287 | Russia>United Kingdom>8 3288 | Russia>United States>13 3289 | Russia>Uzbekistan>81 3290 | Russia>Vietnam>6 3291 | Rwanda>Belgium>1 3292 | Rwanda>Burundi>7 3293 | Rwanda>Congo (Brazzaville)>1 3294 | Rwanda>Ethiopia>2 3295 | Rwanda>Gabon>1 3296 | Rwanda>Kenya>8 3297 | Rwanda>Nigeria>1 3298 | Rwanda>South Africa>2 3299 | Rwanda>South Sudan>1 3300 | Rwanda>Tanzania>2 3301 | Rwanda>Turkey>1 3302 | Rwanda>Uganda>11 3303 | Rwanda>United Arab Emirates>1 3304 | Saint Kitts and Nevis>Antigua and Barbuda>4 3305 | Saint Kitts and Nevis>Bahamas>1 3306 | Saint Kitts and Nevis>Netherlands Antilles>3 3307 | Saint Kitts and Nevis>Puerto Rico>4 3308 | Saint Kitts and Nevis>United States>2 3309 | Saint Kitts and Nevis>Virgin Islands>1 3310 | Saint Lucia>Antigua and Barbuda>2 3311 | Saint Lucia>Barbados>2 3312 | Saint Lucia>Canada>2 3313 | Saint Lucia>Dominica>1 3314 | Saint Lucia>Grenada>3 3315 | Saint Lucia>Martinique>5 3316 | Saint Lucia>Saint Vincent and the Grenadines>1 3317 | Saint Lucia>Trinidad and Tobago>4 3318 | Saint Lucia>United Kingdom>3 3319 | Saint Lucia>United States>7 3320 | Saint Pierre and Miquelon>Canada>3 3321 | Saint Vincent and the Grenadines>Barbados>1 3322 | Saint Vincent and the Grenadines>Grenada>1 3323 | Saint Vincent and the Grenadines>Saint Lucia>1 3324 | Saint Vincent and the Grenadines>Trinidad and Tobago>1 3325 | Samoa>Fiji>1 3326 | Samoa>New Zealand>3 3327 | Samoa>United States>1 3328 | Sao Tome and Principe>Angola>1 3329 | Sao Tome and Principe>Cape Verde>1 3330 | Sao Tome and Principe>Portugal>1 3331 | Saudi Arabia>Algeria>2 3332 | Saudi Arabia>Bahrain>8 3333 | Saudi Arabia>Bangladesh>7 3334 | Saudi Arabia>Brunei>1 3335 | Saudi Arabia>Canada>1 3336 | Saudi Arabia>Chad>1 3337 | Saudi Arabia>China>2 3338 | Saudi Arabia>Egypt>54 3339 | Saudi Arabia>Eritrea>1 3340 | Saudi Arabia>Ethiopia>9 3341 | Saudi Arabia>France>4 3342 | Saudi Arabia>Germany>10 3343 | Saudi Arabia>Hong Kong>1 3344 | Saudi Arabia>India>38 3345 | Saudi Arabia>Indonesia>6 3346 | Saudi Arabia>Iran>12 3347 | Saudi Arabia>Italy>8 3348 | Saudi Arabia>Jordan>10 3349 | Saudi Arabia>Kenya>2 3350 | Saudi Arabia>Kuwait>17 3351 | Saudi Arabia>Lebanon>5 3352 | Saudi Arabia>Libya>2 3353 | Saudi Arabia>Malaysia>5 3354 | Saudi Arabia>Morocco>4 3355 | Saudi Arabia>Netherlands>3 3356 | Saudi Arabia>Nigeria>1 3357 | Saudi Arabia>Oman>7 3358 | Saudi Arabia>Pakistan>40 3359 | Saudi Arabia>Philippines>5 3360 | Saudi Arabia>Qatar>9 3361 | Saudi Arabia>Singapore>3 3362 | Saudi Arabia>South Africa>1 3363 | Saudi Arabia>South Korea>1 3364 | Saudi Arabia>Spain>2 3365 | Saudi Arabia>Sri Lanka>9 3366 | Saudi Arabia>Sudan>8 3367 | Saudi Arabia>Switzerland>2 3368 | Saudi Arabia>Tunisia>3 3369 | Saudi Arabia>Turkey>20 3370 | Saudi Arabia>United Arab Emirates>46 3371 | Saudi Arabia>United Kingdom>7 3372 | Saudi Arabia>United States>5 3373 | Saudi Arabia>Yemen>15 3374 | Senegal>Algeria>1 3375 | Senegal>Belgium>5 3376 | Senegal>Benin>2 3377 | Senegal>Burkina Faso>1 3378 | Senegal>Cameroon>1 3379 | Senegal>Cape Verde>2 3380 | Senegal>Cote d'Ivoire>3 3381 | Senegal>France>3 3382 | Senegal>Gambia>4 3383 | Senegal>Ghana>3 3384 | Senegal>Guinea>8 3385 | Senegal>Guinea-Bissau>2 3386 | Senegal>Italy>1 3387 | Senegal>Mali>5 3388 | Senegal>Mauritania>2 3389 | Senegal>Morocco>1 3390 | Senegal>Nigeria>1 3391 | Senegal>Portugal>1 3392 | Senegal>Sierra Leone>2 3393 | Senegal>South Africa>3 3394 | Senegal>Spain>8 3395 | Senegal>Tunisia>1 3396 | Senegal>Turkey>1 3397 | Senegal>United Arab Emirates>1 3398 | Senegal>United States>4 3399 | Serbia>Austria>3 3400 | Serbia>Belgium>2 3401 | Serbia>Bosnia and Herzegovina>3 3402 | Serbia>Bulgaria>2 3403 | Serbia>Croatia>2 3404 | Serbia>Cyprus>2 3405 | Serbia>Czech Republic>1 3406 | Serbia>Denmark>2 3407 | Serbia>France>4 3408 | Serbia>Germany>25 3409 | Serbia>Greece>4 3410 | Serbia>Hungary>2 3411 | Serbia>Israel>1 3412 | Serbia>Italy>6 3413 | Serbia>Macedonia>1 3414 | Serbia>Montenegro>4 3415 | Serbia>Netherlands>3 3416 | Serbia>Norway>2 3417 | Serbia>Poland>2 3418 | Serbia>Romania>2 3419 | Serbia>Russia>2 3420 | Serbia>Slovenia>2 3421 | Serbia>Sweden>6 3422 | Serbia>Switzerland>10 3423 | Serbia>Tunisia>1 3424 | Serbia>Turkey>6 3425 | Serbia>United Arab Emirates>3 3426 | Serbia>United Kingdom>4 3427 | Seychelles>Germany>1 3428 | Seychelles>Kenya>1 3429 | Seychelles>Mauritius>1 3430 | Seychelles>Russia>1 3431 | Seychelles>South Africa>2 3432 | Seychelles>Sri Lanka>2 3433 | Seychelles>United Arab Emirates>4 3434 | Sierra Leone>Cote d'Ivoire>1 3435 | Sierra Leone>France>2 3436 | Sierra Leone>Gambia>2 3437 | Sierra Leone>Ghana>3 3438 | Sierra Leone>Liberia>8 3439 | Sierra Leone>Morocco>1 3440 | Sierra Leone>Nigeria>1 3441 | Sierra Leone>Senegal>2 3442 | Sierra Leone>United Kingdom>2 3443 | Singapore>Australia>42 3444 | Singapore>Bangladesh>4 3445 | Singapore>Brunei>2 3446 | Singapore>Burma>6 3447 | Singapore>Cambodia>8 3448 | Singapore>China>44 3449 | Singapore>Denmark>2 3450 | Singapore>East Timor>1 3451 | Singapore>Finland>1 3452 | Singapore>France>2 3453 | Singapore>Germany>7 3454 | Singapore>Hong Kong>8 3455 | Singapore>India>37 3456 | Singapore>Indonesia>62 3457 | Singapore>Italy>2 3458 | Singapore>Japan>18 3459 | Singapore>Laos>1 3460 | Singapore>Macau>1 3461 | Singapore>Malaysia>39 3462 | Singapore>Maldives>2 3463 | Singapore>Nepal>2 3464 | Singapore>Netherlands>3 3465 | Singapore>New Zealand>5 3466 | Singapore>Papua New Guinea>1 3467 | Singapore>Philippines>17 3468 | Singapore>Qatar>1 3469 | Singapore>Russia>2 3470 | Singapore>Saudi Arabia>3 3471 | Singapore>South Africa>4 3472 | Singapore>South Korea>5 3473 | Singapore>Spain>1 3474 | Singapore>Sri Lanka>5 3475 | Singapore>Switzerland>3 3476 | Singapore>Taiwan>8 3477 | Singapore>Thailand>27 3478 | Singapore>Turkey>3 3479 | Singapore>United Arab Emirates>11 3480 | Singapore>United Kingdom>4 3481 | Singapore>Uzbekistan>2 3482 | Singapore>Vietnam>12 3483 | Slovakia>Austria>1 3484 | Slovakia>Belgium>1 3485 | Slovakia>Czech Republic>5 3486 | Slovakia>France>1 3487 | Slovakia>Ireland>1 3488 | Slovakia>Italy>4 3489 | Slovakia>Norway>1 3490 | Slovakia>Spain>3 3491 | Slovakia>United Kingdom>6 3492 | Slovenia>Albania>1 3493 | Slovenia>Austria>2 3494 | Slovenia>Belgium>3 3495 | Slovenia>Bosnia and Herzegovina>1 3496 | Slovenia>Czech Republic>1 3497 | Slovenia>Denmark>2 3498 | Slovenia>Finland>1 3499 | Slovenia>France>2 3500 | Slovenia>Germany>4 3501 | Slovenia>Macedonia>1 3502 | Slovenia>Montenegro>2 3503 | Slovenia>Netherlands>1 3504 | Slovenia>Poland>2 3505 | Slovenia>Russia>2 3506 | Slovenia>Serbia>2 3507 | Slovenia>Switzerland>2 3508 | Slovenia>Turkey>2 3509 | Slovenia>United Kingdom>2 3510 | Solomon Islands>Australia>2 3511 | Solomon Islands>Fiji>2 3512 | Solomon Islands>Papua New Guinea>1 3513 | Solomon Islands>Vanuatu>3 3514 | Somalia>Djibouti>4 3515 | Somalia>Ethiopia>1 3516 | Somalia>Kenya>6 3517 | Somalia>Uganda>1 3518 | Somalia>United Arab Emirates>2 3519 | Somalia>Yemen>1 3520 | South Africa>Angola>3 3521 | South Africa>Australia>4 3522 | South Africa>Botswana>9 3523 | South Africa>Brazil>2 3524 | South Africa>Congo (Brazzaville)>2 3525 | South Africa>Congo (Kinshasa)>3 3526 | South Africa>Egypt>2 3527 | South Africa>Ethiopia>2 3528 | South Africa>France>2 3529 | South Africa>Gabon>1 3530 | South Africa>Germany>6 3531 | South Africa>Ghana>1 3532 | South Africa>Hong Kong>2 3533 | South Africa>India>3 3534 | South Africa>Israel>1 3535 | South Africa>Kenya>2 3536 | South Africa>Lesotho>1 3537 | South Africa>Madagascar>2 3538 | South Africa>Malawi>3 3539 | South Africa>Mauritius>5 3540 | South Africa>Mozambique>15 3541 | South Africa>Namibia>9 3542 | South Africa>Netherlands>3 3543 | South Africa>Nigeria>2 3544 | South Africa>Qatar>2 3545 | South Africa>Reunion>1 3546 | South Africa>Rwanda>2 3547 | South Africa>Saudi Arabia>1 3548 | South Africa>Senegal>3 3549 | South Africa>Seychelles>2 3550 | South Africa>Singapore>4 3551 | South Africa>Swaziland>1 3552 | South Africa>Switzerland>2 3553 | South Africa>Tanzania>2 3554 | South Africa>Thailand>2 3555 | South Africa>Turkey>1 3556 | South Africa>Uganda>1 3557 | South Africa>United Arab Emirates>10 3558 | South Africa>United Kingdom>9 3559 | South Africa>United States>5 3560 | South Africa>Zambia>7 3561 | South Africa>Zimbabwe>9 3562 | South Korea>Australia>5 3563 | South Korea>Austria>1 3564 | South Korea>Burma>3 3565 | South Korea>Cambodia>8 3566 | South Korea>Canada>4 3567 | South Korea>China>151 3568 | South Korea>Czech Republic>2 3569 | South Korea>Fiji>1 3570 | South Korea>Finland>1 3571 | South Korea>France>3 3572 | South Korea>Germany>4 3573 | South Korea>Guam>4 3574 | South Korea>Hong Kong>16 3575 | South Korea>India>3 3576 | South Korea>Indonesia>6 3577 | South Korea>Israel>1 3578 | South Korea>Italy>2 3579 | South Korea>Japan>107 3580 | South Korea>Kazakhstan>2 3581 | South Korea>Kenya>2 3582 | South Korea>Laos>2 3583 | South Korea>Macau>6 3584 | South Korea>Malaysia>8 3585 | South Korea>Mongolia>2 3586 | South Korea>Nepal>1 3587 | South Korea>Netherlands>2 3588 | South Korea>New Zealand>1 3589 | South Korea>Northern Mariana Islands>2 3590 | South Korea>Palau>2 3591 | South Korea>Philippines>26 3592 | South Korea>Qatar>2 3593 | South Korea>Russia>14 3594 | South Korea>Saudi Arabia>1 3595 | South Korea>Singapore>5 3596 | South Korea>Spain>1 3597 | South Korea>Sri Lanka>1 3598 | South Korea>Taiwan>18 3599 | South Korea>Thailand>21 3600 | South Korea>Turkey>3 3601 | South Korea>United Arab Emirates>5 3602 | South Korea>United Kingdom>3 3603 | South Korea>United States>39 3604 | South Korea>Uzbekistan>3 3605 | South Korea>Vietnam>13 3606 | South Sudan>Egypt>2 3607 | South Sudan>Ethiopia>2 3608 | South Sudan>Kenya>2 3609 | South Sudan>Rwanda>1 3610 | South Sudan>Sudan>2 3611 | South Sudan>Uganda>2 3612 | South Sudan>United Arab Emirates>1 3613 | Spain>Algeria>14 3614 | Spain>Angola>1 3615 | Spain>Argentina>4 3616 | Spain>Austria>40 3617 | Spain>Belarus>1 3618 | Spain>Belgium>60 3619 | Spain>Bolivia>2 3620 | Spain>Brazil>8 3621 | Spain>Bulgaria>8 3622 | Spain>Canada>4 3623 | Spain>Cape Verde>1 3624 | Spain>Chile>2 3625 | Spain>China>2 3626 | Spain>Colombia>5 3627 | Spain>Costa Rica>1 3628 | Spain>Croatia>5 3629 | Spain>Cuba>3 3630 | Spain>Czech Republic>16 3631 | Spain>Denmark>31 3632 | Spain>Dominican Republic>5 3633 | Spain>Ecuador>4 3634 | Spain>Egypt>2 3635 | Spain>Equatorial Guinea>1 3636 | Spain>Estonia>1 3637 | Spain>Finland>16 3638 | Spain>France>132 3639 | Spain>Gambia>4 3640 | Spain>Germany>353 3641 | Spain>Ghana>1 3642 | Spain>Greece>7 3643 | Spain>Guatemala>1 3644 | Spain>Hungary>5 3645 | Spain>Iceland>2 3646 | Spain>Ireland>53 3647 | Spain>Israel>6 3648 | Spain>Italy>120 3649 | Spain>Jordan>4 3650 | Spain>Latvia>3 3651 | Spain>Libya>1 3652 | Spain>Lithuania>4 3653 | Spain>Luxembourg>12 3654 | Spain>Malta>4 3655 | Spain>Mauritania>3 3656 | Spain>Mexico>8 3657 | Spain>Morocco>39 3658 | Spain>Netherlands>68 3659 | Spain>Nigeria>1 3660 | Spain>Norway>52 3661 | Spain>Pakistan>2 3662 | Spain>Panama>1 3663 | Spain>Peru>3 3664 | Spain>Poland>22 3665 | Spain>Portugal>43 3666 | Spain>Qatar>5 3667 | Spain>Romania>17 3668 | Spain>Russia>28 3669 | Spain>Saudi Arabia>2 3670 | Spain>Senegal>7 3671 | Spain>Singapore>1 3672 | Spain>Slovakia>3 3673 | Spain>South Korea>1 3674 | Spain>Sweden>34 3675 | Spain>Switzerland>61 3676 | Spain>Thailand>1 3677 | Spain>Tunisia>3 3678 | Spain>Turkey>7 3679 | Spain>Ukraine>11 3680 | Spain>United Arab Emirates>2 3681 | Spain>United Kingdom>512 3682 | Spain>United States>57 3683 | Spain>Uruguay>1 3684 | Spain>Venezuela>4 3685 | Spain>Western Sahara>3 3686 | Sri Lanka>Bahrain>2 3687 | Sri Lanka>Bangladesh>2 3688 | Sri Lanka>China>5 3689 | Sri Lanka>France>1 3690 | Sri Lanka>Germany>1 3691 | Sri Lanka>India>22 3692 | Sri Lanka>Indonesia>2 3693 | Sri Lanka>Italy>3 3694 | Sri Lanka>Japan>1 3695 | Sri Lanka>Kuwait>3 3696 | Sri Lanka>Malaysia>4 3697 | Sri Lanka>Maldives>11 3698 | Sri Lanka>Oman>3 3699 | Sri Lanka>Pakistan>2 3700 | Sri Lanka>Qatar>2 3701 | Sri Lanka>Russia>1 3702 | Sri Lanka>Saudi Arabia>11 3703 | Sri Lanka>Seychelles>2 3704 | Sri Lanka>Singapore>5 3705 | Sri Lanka>South Korea>1 3706 | Sri Lanka>Thailand>4 3707 | Sri Lanka>United Arab Emirates>12 3708 | Sri Lanka>United Kingdom>1 3709 | Sudan>Bahrain>1 3710 | Sudan>Chad>1 3711 | Sudan>Egypt>3 3712 | Sudan>Eritrea>1 3713 | Sudan>Ethiopia>2 3714 | Sudan>Jordan>2 3715 | Sudan>Kenya>1 3716 | Sudan>Qatar>2 3717 | Sudan>Saudi Arabia>8 3718 | Sudan>South Sudan>2 3719 | Sudan>Turkey>1 3720 | Sudan>United Arab Emirates>10 3721 | Sudan>Yemen>1 3722 | Suriname>Aruba>1 3723 | Suriname>Brazil>1 3724 | Suriname>French Guiana>1 3725 | Suriname>Guyana>1 3726 | Suriname>Netherlands>2 3727 | Suriname>Netherlands Antilles>1 3728 | Suriname>Trinidad and Tobago>3 3729 | Swaziland>South Africa>1 3730 | Sweden>Austria>4 3731 | Sweden>Belarus>1 3732 | Sweden>Belgium>6 3733 | Sweden>Bosnia and Herzegovina>1 3734 | Sweden>China>2 3735 | Sweden>Croatia>9 3736 | Sweden>Cyprus>2 3737 | Sweden>Czech Republic>4 3738 | Sweden>Denmark>9 3739 | Sweden>Estonia>4 3740 | Sweden>Ethiopia>2 3741 | Sweden>Finland>22 3742 | Sweden>France>17 3743 | Sweden>Germany>29 3744 | Sweden>Greece>10 3745 | Sweden>Hungary>4 3746 | Sweden>Iceland>1 3747 | Sweden>Iran>3 3748 | Sweden>Iraq>7 3749 | Sweden>Ireland>2 3750 | Sweden>Israel>1 3751 | Sweden>Italy>19 3752 | Sweden>Latvia>4 3753 | Sweden>Lithuania>2 3754 | Sweden>Luxembourg>1 3755 | Sweden>Macedonia>3 3756 | Sweden>Malta>3 3757 | Sweden>Morocco>1 3758 | Sweden>Netherlands>7 3759 | Sweden>Norway>13 3760 | Sweden>Poland>13 3761 | Sweden>Portugal>3 3762 | Sweden>Qatar>1 3763 | Sweden>Russia>4 3764 | Sweden>Serbia>6 3765 | Sweden>Spain>34 3766 | Sweden>Switzerland>6 3767 | Sweden>Thailand>3 3768 | Sweden>Turkey>6 3769 | Sweden>United Arab Emirates>2 3770 | Sweden>United Kingdom>27 3771 | Sweden>United States>7 3772 | Switzerland>Algeria>1 3773 | Switzerland>Austria>13 3774 | Switzerland>Belarus>1 3775 | Switzerland>Belgium>9 3776 | Switzerland>Bosnia and Herzegovina>1 3777 | Switzerland>Brazil>1 3778 | Switzerland>Bulgaria>1 3779 | Switzerland>Canada>8 3780 | Switzerland>China>3 3781 | Switzerland>Croatia>9 3782 | Switzerland>Cuba>1 3783 | Switzerland>Cyprus>4 3784 | Switzerland>Czech Republic>5 3785 | Switzerland>Denmark>8 3786 | Switzerland>Dominican Republic>1 3787 | Switzerland>Egypt>11 3788 | Switzerland>Finland>3 3789 | Switzerland>France>30 3790 | Switzerland>Germany>55 3791 | Switzerland>Greece>14 3792 | Switzerland>Hong Kong>1 3793 | Switzerland>Hungary>3 3794 | Switzerland>Iceland>2 3795 | Switzerland>India>4 3796 | Switzerland>Ireland>4 3797 | Switzerland>Israel>6 3798 | Switzerland>Italy>48 3799 | Switzerland>Japan>2 3800 | Switzerland>Jersey>2 3801 | Switzerland>Jordan>2 3802 | Switzerland>Kenya>3 3803 | Switzerland>Latvia>1 3804 | Switzerland>Lebanon>1 3805 | Switzerland>Luxembourg>2 3806 | Switzerland>Macedonia>2 3807 | Switzerland>Malta>3 3808 | Switzerland>Montenegro>1 3809 | Switzerland>Morocco>6 3810 | Switzerland>Netherlands>8 3811 | Switzerland>Norway>3 3812 | Switzerland>Oman>2 3813 | Switzerland>Poland>8 3814 | Switzerland>Portugal>25 3815 | Switzerland>Qatar>3 3816 | Switzerland>Romania>3 3817 | Switzerland>Russia>6 3818 | Switzerland>Saudi Arabia>2 3819 | Switzerland>Serbia>10 3820 | Switzerland>Singapore>3 3821 | Switzerland>Slovenia>2 3822 | Switzerland>South Africa>2 3823 | Switzerland>South Korea>1 3824 | Switzerland>Spain>61 3825 | Switzerland>Sweden>6 3826 | Switzerland>Thailand>2 3827 | Switzerland>Tunisia>7 3828 | Switzerland>Turkey>17 3829 | Switzerland>Ukraine>3 3830 | Switzerland>United Arab Emirates>7 3831 | Switzerland>United Kingdom>32 3832 | Switzerland>United States>29 3833 | Taiwan>Australia>3 3834 | Taiwan>Austria>1 3835 | Taiwan>Burma>1 3836 | Taiwan>Cambodia>3 3837 | Taiwan>Canada>3 3838 | Taiwan>China>191 3839 | Taiwan>France>1 3840 | Taiwan>Germany>1 3841 | Taiwan>Guam>2 3842 | Taiwan>Hong Kong>13 3843 | Taiwan>India>2 3844 | Taiwan>Indonesia>7 3845 | Taiwan>Japan>69 3846 | Taiwan>Macau>8 3847 | Taiwan>Malaysia>7 3848 | Taiwan>Netherlands>2 3849 | Taiwan>Palau>2 3850 | Taiwan>Philippines>9 3851 | Taiwan>Singapore>9 3852 | Taiwan>South Korea>18 3853 | Taiwan>Thailand>8 3854 | Taiwan>United Arab Emirates>1 3855 | Taiwan>United States>14 3856 | Taiwan>Vietnam>13 3857 | Tajikistan>China>4 3858 | Tajikistan>Germany>1 3859 | Tajikistan>India>1 3860 | Tajikistan>Iran>3 3861 | Tajikistan>Kazakhstan>4 3862 | Tajikistan>Kyrgyzstan>2 3863 | Tajikistan>Russia>71 3864 | Tajikistan>Turkey>3 3865 | Tajikistan>United Arab Emirates>3 3866 | Tanzania>Comoros>1 3867 | Tanzania>Egypt>1 3868 | Tanzania>Ethiopia>4 3869 | Tanzania>Germany>1 3870 | Tanzania>Kenya>16 3871 | Tanzania>Malawi>1 3872 | Tanzania>Mayotte>1 3873 | Tanzania>Mozambique>1 3874 | Tanzania>Netherlands>3 3875 | Tanzania>Oman>1 3876 | Tanzania>Qatar>1 3877 | Tanzania>Rwanda>2 3878 | Tanzania>South Africa>2 3879 | Tanzania>Turkey>1 3880 | Tanzania>Uganda>4 3881 | Tanzania>United Arab Emirates>1 3882 | Tanzania>Zimbabwe>1 3883 | Thailand>Australia>14 3884 | Thailand>Austria>3 3885 | Thailand>Bahrain>3 3886 | Thailand>Bangladesh>7 3887 | Thailand>Belgium>2 3888 | Thailand>Brunei>2 3889 | Thailand>Burma>12 3890 | Thailand>Cambodia>8 3891 | Thailand>China>72 3892 | Thailand>Denmark>2 3893 | Thailand>Egypt>3 3894 | Thailand>Ethiopia>2 3895 | Thailand>Finland>1 3896 | Thailand>France>3 3897 | Thailand>Germany>4 3898 | Thailand>Hong Kong>24 3899 | Thailand>India>18 3900 | Thailand>Indonesia>8 3901 | Thailand>Iran>1 3902 | Thailand>Israel>2 3903 | Thailand>Italy>2 3904 | Thailand>Japan>21 3905 | Thailand>Jordan>2 3906 | Thailand>Kazakhstan>1 3907 | Thailand>Kenya>3 3908 | Thailand>Kuwait>1 3909 | Thailand>Laos>10 3910 | Thailand>Macau>4 3911 | Thailand>Madagascar>2 3912 | Thailand>Malaysia>33 3913 | Thailand>Maldives>1 3914 | Thailand>Mongolia>1 3915 | Thailand>Nepal>2 3916 | Thailand>Netherlands>3 3917 | Thailand>New Zealand>2 3918 | Thailand>Norway>3 3919 | Thailand>Oman>1 3920 | Thailand>Pakistan>4 3921 | Thailand>Philippines>6 3922 | Thailand>Qatar>1 3923 | Thailand>Russia>13 3924 | Thailand>Singapore>28 3925 | Thailand>South Africa>2 3926 | Thailand>South Korea>21 3927 | Thailand>Spain>1 3928 | Thailand>Sri Lanka>4 3929 | Thailand>Sweden>3 3930 | Thailand>Switzerland>2 3931 | Thailand>Taiwan>8 3932 | Thailand>Turkey>2 3933 | Thailand>Ukraine>1 3934 | Thailand>United Arab Emirates>9 3935 | Thailand>United Kingdom>4 3936 | Thailand>Uzbekistan>1 3937 | Thailand>Vietnam>10 3938 | Togo>Belgium>3 3939 | Togo>Benin>2 3940 | Togo>Brazil>1 3941 | Togo>Burkina Faso>2 3942 | Togo>Cameroon>1 3943 | Togo>Cote d'Ivoire>2 3944 | Togo>Ethiopia>1 3945 | Togo>France>1 3946 | Togo>Gabon>1 3947 | Togo>Ghana>2 3948 | Togo>Guinea>1 3949 | Togo>Mali>1 3950 | Togo>Nigeria>2 3951 | Tonga>Australia>1 3952 | Tonga>Fiji>2 3953 | Tonga>New Zealand>2 3954 | Trinidad and Tobago>Antigua and Barbuda>1 3955 | Trinidad and Tobago>Barbados>2 3956 | Trinidad and Tobago>Canada>2 3957 | Trinidad and Tobago>Grenada>3 3958 | Trinidad and Tobago>Guyana>1 3959 | Trinidad and Tobago>Jamaica>1 3960 | Trinidad and Tobago>Netherlands Antilles>3 3961 | Trinidad and Tobago>Panama>2 3962 | Trinidad and Tobago>Saint Lucia>4 3963 | Trinidad and Tobago>Saint Vincent and the Grenadines>1 3964 | Trinidad and Tobago>Suriname>3 3965 | Trinidad and Tobago>United Kingdom>1 3966 | Trinidad and Tobago>United States>11 3967 | Trinidad and Tobago>Venezuela>2 3968 | Tunisia>Algeria>3 3969 | Tunisia>Austria>1 3970 | Tunisia>Belgium>4 3971 | Tunisia>Burkina Faso>1 3972 | Tunisia>Cote d'Ivoire>1 3973 | Tunisia>Egypt>2 3974 | Tunisia>France>44 3975 | Tunisia>Germany>32 3976 | Tunisia>Italy>8 3977 | Tunisia>Jordan>1 3978 | Tunisia>Kuwait>1 3979 | Tunisia>Lebanon>2 3980 | Tunisia>Libya>26 3981 | Tunisia>Luxembourg>2 3982 | Tunisia>Mali>1 3983 | Tunisia>Malta>1 3984 | Tunisia>Mauritania>1 3985 | Tunisia>Morocco>2 3986 | Tunisia>Netherlands>2 3987 | Tunisia>Portugal>1 3988 | Tunisia>Qatar>1 3989 | Tunisia>Russia>6 3990 | Tunisia>Saudi Arabia>3 3991 | Tunisia>Senegal>1 3992 | Tunisia>Serbia>1 3993 | Tunisia>Spain>2 3994 | Tunisia>Switzerland>7 3995 | Tunisia>Turkey>2 3996 | Tunisia>United Arab Emirates>2 3997 | Tunisia>United Kingdom>22 3998 | Turkey>Afghanistan>2 3999 | Turkey>Albania>2 4000 | Turkey>Algeria>6 4001 | Turkey>Austria>19 4002 | Turkey>Azerbaijan>7 4003 | Turkey>Bahrain>2 4004 | Turkey>Bangladesh>1 4005 | Turkey>Belarus>2 4006 | Turkey>Belgium>8 4007 | Turkey>Bosnia and Herzegovina>4 4008 | Turkey>Brazil>1 4009 | Turkey>Bulgaria>1 4010 | Turkey>Cameroon>2 4011 | Turkey>Canada>2 4012 | Turkey>China>7 4013 | Turkey>Congo (Kinshasa)>1 4014 | Turkey>Croatia>2 4015 | Turkey>Cyprus>14 4016 | Turkey>Czech Republic>2 4017 | Turkey>Denmark>10 4018 | Turkey>Djibouti>1 4019 | Turkey>Egypt>8 4020 | Turkey>Estonia>1 4021 | Turkey>Ethiopia>1 4022 | Turkey>Finland>5 4023 | Turkey>France>20 4024 | Turkey>Georgia>5 4025 | Turkey>Germany>128 4026 | Turkey>Ghana>1 4027 | Turkey>Greece>6 4028 | Turkey>Hong Kong>1 4029 | Turkey>Hungary>2 4030 | Turkey>India>4 4031 | Turkey>Iran>14 4032 | Turkey>Iraq>15 4033 | Turkey>Ireland>2 4034 | Turkey>Israel>3 4035 | Turkey>Italy>12 4036 | Turkey>Japan>4 4037 | Turkey>Jordan>3 4038 | Turkey>Kazakhstan>7 4039 | Turkey>Kenya>2 4040 | Turkey>Kuwait>6 4041 | Turkey>Kyrgyzstan>5 4042 | Turkey>Latvia>2 4043 | Turkey>Lebanon>3 4044 | Turkey>Libya>8 4045 | Turkey>Lithuania>1 4046 | Turkey>Luxembourg>3 4047 | Turkey>Macedonia>2 4048 | Turkey>Malaysia>2 4049 | Turkey>Maldives>1 4050 | Turkey>Malta>4 4051 | Turkey>Moldova>2 4052 | Turkey>Montenegro>1 4053 | Turkey>Morocco>3 4054 | Turkey>Nepal>1 4055 | Turkey>Netherlands>22 4056 | Turkey>Niger>1 4057 | Turkey>Nigeria>2 4058 | Turkey>Norway>7 4059 | Turkey>Oman>2 4060 | Turkey>Pakistan>3 4061 | Turkey>Panama>1 4062 | Turkey>Poland>2 4063 | Turkey>Portugal>2 4064 | Turkey>Qatar>4 4065 | Turkey>Romania>4 4066 | Turkey>Russia>31 4067 | Turkey>Rwanda>2 4068 | Turkey>Saudi Arabia>18 4069 | Turkey>Serbia>6 4070 | Turkey>Singapore>3 4071 | Turkey>Slovenia>2 4072 | Turkey>South Africa>1 4073 | Turkey>South Korea>3 4074 | Turkey>Spain>7 4075 | Turkey>Sudan>1 4076 | Turkey>Sweden>6 4077 | Turkey>Switzerland>17 4078 | Turkey>Tajikistan>3 4079 | Turkey>Tanzania>2 4080 | Turkey>Thailand>2 4081 | Turkey>Tunisia>2 4082 | Turkey>Turkmenistan>2 4083 | Turkey>Ukraine>20 4084 | Turkey>United Arab Emirates>8 4085 | Turkey>United Kingdom>89 4086 | Turkey>United States>10 4087 | Turkey>Uzbekistan>2 4088 | Turkey>Yemen>1 4089 | Turkmenistan>Azerbaijan>2 4090 | Turkmenistan>Belarus>1 4091 | Turkmenistan>China>1 4092 | Turkmenistan>Germany>1 4093 | Turkmenistan>India>2 4094 | Turkmenistan>Russia>2 4095 | Turkmenistan>Turkey>2 4096 | Turkmenistan>United Arab Emirates>2 4097 | Turkmenistan>United Kingdom>2 4098 | Turks and Caicos Islands>Bahamas>3 4099 | Turks and Caicos Islands>Canada>3 4100 | Turks and Caicos Islands>Dominican Republic>3 4101 | Turks and Caicos Islands>Haiti>3 4102 | Turks and Caicos Islands>Jamaica>1 4103 | Turks and Caicos Islands>Puerto Rico>1 4104 | Turks and Caicos Islands>United States>14 4105 | Tuvalu>Fiji>1 4106 | Uganda>Belgium>4 4107 | Uganda>Burundi>1 4108 | Uganda>Egypt>1 4109 | Uganda>Eritrea>1 4110 | Uganda>Ethiopia>1 4111 | Uganda>Kenya>3 4112 | Uganda>Netherlands>3 4113 | Uganda>Qatar>1 4114 | Uganda>Rwanda>5 4115 | Uganda>Somalia>1 4116 | Uganda>South Africa>1 4117 | Uganda>South Sudan>1 4118 | Uganda>Tanzania>4 4119 | Uganda>Turkey>1 4120 | Uganda>United Arab Emirates>1 4121 | Uganda>United Kingdom>2 4122 | Ukraine>Armenia>2 4123 | Ukraine>Austria>10 4124 | Ukraine>Azerbaijan>3 4125 | Ukraine>Belarus>2 4126 | Ukraine>Belgium>2 4127 | Ukraine>Cyprus>6 4128 | Ukraine>Czech Republic>3 4129 | Ukraine>Estonia>1 4130 | Ukraine>Finland>1 4131 | Ukraine>France>3 4132 | Ukraine>Georgia>7 4133 | Ukraine>Germany>12 4134 | Ukraine>Greece>5 4135 | Ukraine>Hungary>1 4136 | Ukraine>Israel>7 4137 | Ukraine>Italy>10 4138 | Ukraine>Jordan>1 4139 | Ukraine>Kazakhstan>4 4140 | Ukraine>Latvia>2 4141 | Ukraine>Lithuania>2 4142 | Ukraine>Moldova>1 4143 | Ukraine>Netherlands>2 4144 | Ukraine>Norway>1 4145 | Ukraine>Poland>6 4146 | Ukraine>Portugal>2 4147 | Ukraine>Russia>39 4148 | Ukraine>Spain>11 4149 | Ukraine>Switzerland>3 4150 | Ukraine>Thailand>1 4151 | Ukraine>Turkey>20 4152 | Ukraine>United Arab Emirates>10 4153 | Ukraine>United Kingdom>3 4154 | Ukraine>United States>1 4155 | Ukraine>Uzbekistan>1 4156 | United Arab Emirates>Afghanistan>7 4157 | United Arab Emirates>Algeria>2 4158 | United Arab Emirates>Angola>2 4159 | United Arab Emirates>Armenia>2 4160 | United Arab Emirates>Australia>16 4161 | United Arab Emirates>Austria>2 4162 | United Arab Emirates>Azerbaijan>2 4163 | United Arab Emirates>Bahrain>15 4164 | United Arab Emirates>Bangladesh>10 4165 | United Arab Emirates>Belarus>2 4166 | United Arab Emirates>Belgium>3 4167 | United Arab Emirates>Brazil>3 4168 | United Arab Emirates>Brunei>1 4169 | United Arab Emirates>Bulgaria>1 4170 | United Arab Emirates>Canada>3 4171 | United Arab Emirates>China>16 4172 | United Arab Emirates>Cyprus>3 4173 | United Arab Emirates>Czech Republic>2 4174 | United Arab Emirates>Denmark>2 4175 | United Arab Emirates>Djibouti>1 4176 | United Arab Emirates>Egypt>11 4177 | United Arab Emirates>Ethiopia>3 4178 | United Arab Emirates>France>7 4179 | United Arab Emirates>Georgia>1 4180 | United Arab Emirates>Germany>23 4181 | United Arab Emirates>Ghana>1 4182 | United Arab Emirates>Greece>3 4183 | United Arab Emirates>Hong Kong>4 4184 | United Arab Emirates>Hungary>1 4185 | United Arab Emirates>India>88 4186 | United Arab Emirates>Indonesia>5 4187 | United Arab Emirates>Iran>25 4188 | United Arab Emirates>Iraq>15 4189 | United Arab Emirates>Ireland>4 4190 | United Arab Emirates>Italy>8 4191 | United Arab Emirates>Japan>8 4192 | United Arab Emirates>Jordan>9 4193 | United Arab Emirates>Kazakhstan>7 4194 | United Arab Emirates>Kenya>9 4195 | United Arab Emirates>Kuwait>12 4196 | United Arab Emirates>Kyrgyzstan>1 4197 | United Arab Emirates>Lebanon>6 4198 | United Arab Emirates>Libya>1 4199 | United Arab Emirates>Macedonia>1 4200 | United Arab Emirates>Malaysia>8 4201 | United Arab Emirates>Maldives>4 4202 | United Arab Emirates>Malta>1 4203 | United Arab Emirates>Mauritius>2 4204 | United Arab Emirates>Moldova>1 4205 | United Arab Emirates>Morocco>4 4206 | United Arab Emirates>Nepal>4 4207 | United Arab Emirates>Netherlands>10 4208 | United Arab Emirates>Nigeria>2 4209 | United Arab Emirates>Oman>21 4210 | United Arab Emirates>Pakistan>51 4211 | United Arab Emirates>Philippines>7 4212 | United Arab Emirates>Poland>2 4213 | United Arab Emirates>Portugal>2 4214 | United Arab Emirates>Qatar>10 4215 | United Arab Emirates>Romania>3 4216 | United Arab Emirates>Russia>39 4217 | United Arab Emirates>Rwanda>1 4218 | United Arab Emirates>Saudi Arabia>47 4219 | United Arab Emirates>Senegal>1 4220 | United Arab Emirates>Serbia>3 4221 | United Arab Emirates>Seychelles>4 4222 | United Arab Emirates>Singapore>11 4223 | United Arab Emirates>Somalia>5 4224 | United Arab Emirates>South Africa>10 4225 | United Arab Emirates>South Korea>5 4226 | United Arab Emirates>South Sudan>1 4227 | United Arab Emirates>Spain>2 4228 | United Arab Emirates>Sri Lanka>12 4229 | United Arab Emirates>Sudan>10 4230 | United Arab Emirates>Sweden>2 4231 | United Arab Emirates>Switzerland>7 4232 | United Arab Emirates>Taiwan>1 4233 | United Arab Emirates>Tajikistan>3 4234 | United Arab Emirates>Tanzania>1 4235 | United Arab Emirates>Thailand>9 4236 | United Arab Emirates>Tunisia>2 4237 | United Arab Emirates>Turkey>8 4238 | United Arab Emirates>Turkmenistan>2 4239 | United Arab Emirates>Uganda>1 4240 | United Arab Emirates>Ukraine>10 4241 | United Arab Emirates>United Kingdom>22 4242 | United Arab Emirates>United States>24 4243 | United Arab Emirates>Uzbekistan>2 4244 | United Arab Emirates>Vietnam>3 4245 | United Arab Emirates>Yemen>11 4246 | United Arab Emirates>Zambia>1 4247 | United Kingdom>Albania>1 4248 | United Kingdom>Algeria>3 4249 | United Kingdom>Angola>1 4250 | United Kingdom>Antigua and Barbuda>3 4251 | United Kingdom>Argentina>1 4252 | United Kingdom>Austria>11 4253 | United Kingdom>Azerbaijan>2 4254 | United Kingdom>Bahamas>1 4255 | United Kingdom>Bahrain>4 4256 | United Kingdom>Bangladesh>2 4257 | United Kingdom>Barbados>4 4258 | United Kingdom>Belarus>1 4259 | United Kingdom>Belgium>17 4260 | United Kingdom>Bermuda>2 4261 | United Kingdom>Brazil>3 4262 | United Kingdom>Bulgaria>10 4263 | United Kingdom>Canada>42 4264 | United Kingdom>Cape Verde>9 4265 | United Kingdom>China>11 4266 | United Kingdom>Croatia>35 4267 | United Kingdom>Cuba>2 4268 | United Kingdom>Cyprus>55 4269 | United Kingdom>Czech Republic>16 4270 | United Kingdom>Denmark>22 4271 | United Kingdom>Dominican Republic>3 4272 | United Kingdom>Egypt>33 4273 | United Kingdom>Estonia>3 4274 | United Kingdom>Ethiopia>1 4275 | United Kingdom>Finland>9 4276 | United Kingdom>France>150 4277 | United Kingdom>Germany>103 4278 | United Kingdom>Ghana>2 4279 | United Kingdom>Gibraltar>6 4280 | United Kingdom>Greece>105 4281 | United Kingdom>Guernsey>11 4282 | United Kingdom>Hong Kong>3 4283 | United Kingdom>Hungary>15 4284 | United Kingdom>Iceland>10 4285 | United Kingdom>India>17 4286 | United Kingdom>Iran>1 4287 | United Kingdom>Ireland>63 4288 | United Kingdom>Isle of Man>10 4289 | United Kingdom>Israel>6 4290 | United Kingdom>Italy>141 4291 | United Kingdom>Jamaica>4 4292 | United Kingdom>Japan>8 4293 | United Kingdom>Jersey>25 4294 | United Kingdom>Jordan>2 4295 | United Kingdom>Kazakhstan>3 4296 | United Kingdom>Kenya>3 4297 | United Kingdom>Kuwait>3 4298 | United Kingdom>Latvia>7 4299 | United Kingdom>Lebanon>3 4300 | United Kingdom>Libya>3 4301 | United Kingdom>Lithuania>10 4302 | United Kingdom>Luxembourg>4 4303 | United Kingdom>Macedonia>1 4304 | United Kingdom>Malaysia>2 4305 | United Kingdom>Maldives>1 4306 | United Kingdom>Malta>28 4307 | United Kingdom>Mauritius>4 4308 | United Kingdom>Mexico>14 4309 | United Kingdom>Moldova>1 4310 | United Kingdom>Montenegro>2 4311 | United Kingdom>Morocco>26 4312 | United Kingdom>Netherlands>53 4313 | United Kingdom>Nigeria>4 4314 | United Kingdom>Norway>42 4315 | United Kingdom>Oman>1 4316 | United Kingdom>Pakistan>7 4317 | United Kingdom>Philippines>1 4318 | United Kingdom>Poland>67 4319 | United Kingdom>Portugal>84 4320 | United Kingdom>Qatar>4 4321 | United Kingdom>Romania>11 4322 | United Kingdom>Russia>8 4323 | United Kingdom>Saint Lucia>4 4324 | United Kingdom>Saudi Arabia>8 4325 | United Kingdom>Serbia>3 4326 | United Kingdom>Sierra Leone>2 4327 | United Kingdom>Singapore>4 4328 | United Kingdom>Slovakia>6 4329 | United Kingdom>Slovenia>2 4330 | United Kingdom>South Africa>8 4331 | United Kingdom>South Korea>3 4332 | United Kingdom>Spain>518 4333 | United Kingdom>Sri Lanka>1 4334 | United Kingdom>Sweden>27 4335 | United Kingdom>Switzerland>32 4336 | United Kingdom>Thailand>4 4337 | United Kingdom>Trinidad and Tobago>1 4338 | United Kingdom>Tunisia>22 4339 | United Kingdom>Turkey>91 4340 | United Kingdom>Turkmenistan>2 4341 | United Kingdom>Uganda>2 4342 | United Kingdom>Ukraine>3 4343 | United Kingdom>United Arab Emirates>21 4344 | United Kingdom>United States>203 4345 | United Kingdom>Uzbekistan>1 4346 | United States>American Samoa>1 4347 | United States>Antigua and Barbuda>7 4348 | United States>Argentina>10 4349 | United States>Aruba>21 4350 | United States>Australia>26 4351 | United States>Austria>6 4352 | United States>Bahamas>72 4353 | United States>Barbados>3 4354 | United States>Belgium>21 4355 | United States>Belize>10 4356 | United States>Bermuda>11 4357 | United States>Bolivia>2 4358 | United States>Brazil>57 4359 | United States>Canada>365 4360 | United States>Cape Verde>1 4361 | United States>Cayman Islands>17 4362 | United States>Chile>10 4363 | United States>China>59 4364 | United States>Colombia>49 4365 | United States>Cook Islands>2 4366 | United States>Costa Rica>34 4367 | United States>Denmark>7 4368 | United States>Dominican Republic>61 4369 | United States>Ecuador>8 4370 | United States>Egypt>2 4371 | United States>El Salvador>28 4372 | United States>Ethiopia>1 4373 | United States>Fiji>6 4374 | United States>Finland>4 4375 | United States>France>89 4376 | United States>French Polynesia>7 4377 | United States>Germany>114 4378 | United States>Ghana>1 4379 | United States>Greece>3 4380 | United States>Grenada>4 4381 | United States>Guadeloupe>2 4382 | United States>Guam>1 4383 | United States>Guatemala>17 4384 | United States>Guyana>2 4385 | United States>Haiti>13 4386 | United States>Honduras>19 4387 | United States>Hong Kong>16 4388 | United States>Iceland>7 4389 | United States>India>5 4390 | United States>Ireland>35 4391 | United States>Israel>7 4392 | United States>Italy>53 4393 | United States>Jamaica>40 4394 | United States>Japan>80 4395 | United States>Jordan>6 4396 | United States>Kiribati>2 4397 | United States>Kuwait>2 4398 | United States>Latvia>1 4399 | United States>Marshall Islands>1 4400 | United States>Martinique>2 4401 | United States>Mexico>369 4402 | United States>Morocco>1 4403 | United States>Netherlands>39 4404 | United States>Netherlands Antilles>24 4405 | United States>New Zealand>10 4406 | United States>Nicaragua>6 4407 | United States>Nigeria>3 4408 | United States>Norway>5 4409 | United States>Pakistan>1 4410 | United States>Panama>29 4411 | United States>Paraguay>2 4412 | United States>Peru>21 4413 | United States>Philippines>3 4414 | United States>Poland>2 4415 | United States>Portugal>14 4416 | United States>Puerto Rico>53 4417 | United States>Qatar>11 4418 | United States>Russia>13 4419 | United States>Saint Kitts and Nevis>3 4420 | United States>Saint Lucia>7 4421 | United States>Samoa>1 4422 | United States>Saudi Arabia>5 4423 | United States>Senegal>4 4424 | United States>South Africa>5 4425 | United States>South Korea>39 4426 | United States>Spain>57 4427 | United States>Sweden>7 4428 | United States>Switzerland>29 4429 | United States>Taiwan>14 4430 | United States>Trinidad and Tobago>11 4431 | United States>Turkey>10 4432 | United States>Turks and Caicos Islands>14 4433 | United States>Ukraine>1 4434 | United States>United Arab Emirates>24 4435 | United States>United Kingdom>207 4436 | United States>Uruguay>2 4437 | United States>Venezuela>9 4438 | United States>Virgin Islands>20 4439 | Uruguay>Argentina>9 4440 | Uruguay>Brazil>9 4441 | Uruguay>Chile>2 4442 | Uruguay>Panama>1 4443 | Uruguay>Paraguay>1 4444 | Uruguay>Peru>1 4445 | Uruguay>Spain>1 4446 | Uruguay>United States>2 4447 | Uzbekistan>Azerbaijan>1 4448 | Uzbekistan>China>4 4449 | Uzbekistan>Czech Republic>2 4450 | Uzbekistan>France>1 4451 | Uzbekistan>Germany>1 4452 | Uzbekistan>India>2 4453 | Uzbekistan>Iran>1 4454 | Uzbekistan>Israel>1 4455 | Uzbekistan>Italy>2 4456 | Uzbekistan>Japan>1 4457 | Uzbekistan>Kazakhstan>4 4458 | Uzbekistan>Kyrgyzstan>2 4459 | Uzbekistan>Latvia>2 4460 | Uzbekistan>Malaysia>2 4461 | Uzbekistan>Russia>82 4462 | Uzbekistan>Singapore>2 4463 | Uzbekistan>South Korea>3 4464 | Uzbekistan>Thailand>1 4465 | Uzbekistan>Turkey>2 4466 | Uzbekistan>Ukraine>1 4467 | Uzbekistan>United Arab Emirates>2 4468 | Uzbekistan>United Kingdom>1 4469 | Vanuatu>Australia>7 4470 | Vanuatu>Fiji>2 4471 | Vanuatu>New Caledonia>2 4472 | Vanuatu>New Zealand>2 4473 | Vanuatu>Solomon Islands>3 4474 | Venezuela>Argentina>2 4475 | Venezuela>Aruba>11 4476 | Venezuela>Brazil>3 4477 | Venezuela>Chile>1 4478 | Venezuela>Colombia>5 4479 | Venezuela>Cuba>3 4480 | Venezuela>Dominican Republic>1 4481 | Venezuela>Ecuador>1 4482 | Venezuela>France>1 4483 | Venezuela>Germany>1 4484 | Venezuela>Grenada>1 4485 | Venezuela>Guyana>1 4486 | Venezuela>Italy>1 4487 | Venezuela>Mexico>1 4488 | Venezuela>Netherlands Antilles>6 4489 | Venezuela>Panama>6 4490 | Venezuela>Peru>2 4491 | Venezuela>Portugal>3 4492 | Venezuela>Puerto Rico>1 4493 | Venezuela>Spain>4 4494 | Venezuela>Trinidad and Tobago>2 4495 | Venezuela>United States>9 4496 | Vietnam>Australia>4 4497 | Vietnam>Burma>2 4498 | Vietnam>Cambodia>14 4499 | Vietnam>China>23 4500 | Vietnam>France>6 4501 | Vietnam>Germany>4 4502 | Vietnam>Hong Kong>10 4503 | Vietnam>Indonesia>1 4504 | Vietnam>Japan>20 4505 | Vietnam>Kazakhstan>1 4506 | Vietnam>Laos>6 4507 | Vietnam>Macau>2 4508 | Vietnam>Malaysia>6 4509 | Vietnam>Philippines>4 4510 | Vietnam>Qatar>1 4511 | Vietnam>Russia>6 4512 | Vietnam>Singapore>12 4513 | Vietnam>South Korea>13 4514 | Vietnam>Taiwan>13 4515 | Vietnam>Thailand>10 4516 | Vietnam>United Arab Emirates>3 4517 | Virgin Islands>Anguilla>1 4518 | Virgin Islands>British Virgin Islands>3 4519 | Virgin Islands>Dominica>1 4520 | Virgin Islands>France>1 4521 | Virgin Islands>Netherlands Antilles>3 4522 | Virgin Islands>Puerto Rico>9 4523 | Virgin Islands>Saint Kitts and Nevis>1 4524 | Virgin Islands>United States>21 4525 | Wallis and Futuna>Fiji>1 4526 | Wallis and Futuna>New Caledonia>1 4527 | Western Sahara>Morocco>4 4528 | Western Sahara>Spain>3 4529 | Yemen>Bahrain>2 4530 | Yemen>Djibouti>2 4531 | Yemen>Egypt>6 4532 | Yemen>Eritrea>2 4533 | Yemen>Ethiopia>1 4534 | Yemen>India>1 4535 | Yemen>Jordan>5 4536 | Yemen>Kenya>1 4537 | Yemen>Kuwait>3 4538 | Yemen>Lebanon>1 4539 | Yemen>Qatar>2 4540 | Yemen>Saudi Arabia>16 4541 | Yemen>Somalia>2 4542 | Yemen>Sudan>1 4543 | Yemen>Turkey>1 4544 | Yemen>United Arab Emirates>12 4545 | Zambia>Angola>1 4546 | Zambia>Botswana>1 4547 | Zambia>Congo (Kinshasa)>2 4548 | Zambia>Ethiopia>2 4549 | Zambia>Kenya>6 4550 | Zambia>Malawi>6 4551 | Zambia>Namibia>2 4552 | Zambia>Netherlands>3 4553 | Zambia>South Africa>7 4554 | Zambia>United Arab Emirates>1 4555 | Zambia>Zimbabwe>10 4556 | Zimbabwe>Botswana>2 4557 | Zimbabwe>Ethiopia>2 4558 | Zimbabwe>Kenya>3 4559 | Zimbabwe>Malawi>1 4560 | Zimbabwe>Namibia>2 4561 | Zimbabwe>South Africa>9 4562 | Zimbabwe>Tanzania>1 4563 | Zimbabwe>Zambia>11 4564 | -------------------------------------------------------------------------------- /examples/data/airports.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | 3 | airportNames = ['id', 'name', 'city', 'country', 'IATA', 'ICAO', 4 | 'lat', 'lon', 'altitude', 'timezone', 'DST', 'tz'] 5 | routeNames = ['airline', 'airlineID', 'source', 'sourceID', 6 | 'destination', 'destinationID', 'codeshare', 'stops', 7 | 'equipment'] 8 | base = 'https://raw.githubusercontent.com/jpatokal/openflights/master/data/' 9 | airports = pd.read_csv(base + 'airports.dat', names=airportNames) 10 | routes = pd.read_csv(base + 'routes.dat', names=routeNames) 11 | outwards = pd.merge(left=pd.merge(left=airports, right=routes, left_on='IATA', 12 | right_on='source'), right=airports, left_on='destination', 13 | right_on='IATA')[['country_x', 'country_y']] 14 | outwards.columns = ('source', 'destination') 15 | outwards['both'] = outwards['source'] + '_' + outwards['destination'] 16 | with open('airports.arcgo', 'w') as arcgo: 17 | for countries, count in outwards.groupby('both').count().iterrows(): 18 | a, b = countries.split('_') 19 | amount = count['destination'] 20 | if a != b: 21 | arcgo.write('{0}>{1}>{2}\n'.format(a, b, amount)) 22 | -------------------------------------------------------------------------------- /examples/data/simple.arcgo: -------------------------------------------------------------------------------- 1 | Axel>Giovanni>4 2 | Max>Axel>3 3 | Ségolène>Axel>10 4 | Max>Alexis>1 5 | Alexis>Axel>3 6 | Mylène>Max>1 7 | Céline>Mylène>1 8 | Alice>Mylène>8 9 | Lapin>Max>2 10 | Rémy>Lapin>1 11 | Alexis>Rémy>5 12 | Alice>Ségolène>3 13 | Lapin>Alexis>3 14 | Rémy>Alexis>1 15 | Ségolène>Alexis>3 16 | Adélina>Emma>10 17 | Max>Adélina>8 18 | Adélina>Personne>1 -------------------------------------------------------------------------------- /examples/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxHalford/arcgonaut/48dce55551cd4da66d83c28d44368949074b766b/examples/simple.png --------------------------------------------------------------------------------