maxmind-geoip2 1.0.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +27 -0
  3. data/README.md +13 -10
  4. data/lib/maxmind/geoip2/client.rb +18 -9
  5. data/lib/maxmind/geoip2/errors.rb +17 -8
  6. data/lib/maxmind/geoip2/model/city.rb +4 -5
  7. data/lib/maxmind/geoip2/model/connection_type.rb +3 -2
  8. data/lib/maxmind/geoip2/model/enterprise.rb +2 -3
  9. data/lib/maxmind/geoip2/model/insights.rb +3 -5
  10. data/lib/maxmind/geoip2/model/isp.rb +16 -0
  11. data/lib/maxmind/geoip2/reader.rb +1 -2
  12. data/lib/maxmind/geoip2/record/traits.rb +58 -26
  13. data/lib/maxmind/geoip2/version.rb +8 -0
  14. data/maxmind-geoip2.gemspec +8 -2
  15. data/test/data/MaxMind-DB-spec.md +15 -11
  16. data/test/data/cmd/write-test-data/main.go +68 -0
  17. data/test/data/go.mod +13 -0
  18. data/test/data/go.sum +16 -0
  19. data/test/data/perltidyrc +6 -0
  20. data/test/data/pkg/writer/decoder.go +178 -0
  21. data/test/data/pkg/writer/geoip2.go +182 -0
  22. data/test/data/pkg/writer/ip.go +39 -0
  23. data/test/data/pkg/writer/maxmind.go +245 -0
  24. data/test/data/pkg/writer/nestedstructures.go +73 -0
  25. data/test/data/pkg/writer/writer.go +58 -0
  26. data/test/data/source-data/GeoIP2-City-Test.json +402 -48
  27. data/test/data/source-data/GeoIP2-Connection-Type-Test.json +35 -10
  28. data/test/data/source-data/GeoIP2-Country-Test.json +145 -58
  29. data/test/data/source-data/GeoIP2-Domain-Test.json +5 -0
  30. data/test/data/source-data/GeoIP2-Enterprise-Test.json +408 -4
  31. data/test/data/source-data/GeoIP2-ISP-Test.json +10 -0
  32. data/test/data/source-data/GeoIP2-Precision-Enterprise-Sandbox-Test.json +296 -0
  33. data/test/data/source-data/GeoIP2-Precision-Enterprise-Test.json +473 -6
  34. data/test/data/source-data/GeoIP2-Static-IP-Score-Test.json +15 -0
  35. data/test/data/source-data/GeoIP2-User-Count-Test.json +18 -0
  36. data/test/data/source-data/GeoLite2-ASN-Test.json +4091 -8
  37. data/test/data/source-data/GeoLite2-City-Test.json +12972 -0
  38. data/test/data/source-data/GeoLite2-Country-Test.json +11372 -0
  39. data/test/data/test-data/GeoIP2-Anonymous-IP-Test.mmdb +0 -0
  40. data/test/data/test-data/GeoIP2-City-Test-Broken-Double-Format.mmdb +0 -0
  41. data/test/data/test-data/GeoIP2-City-Test-Invalid-Node-Count.mmdb +0 -0
  42. data/test/data/test-data/GeoIP2-City-Test.mmdb +0 -0
  43. data/test/data/test-data/GeoIP2-Connection-Type-Test.mmdb +0 -0
  44. data/test/data/test-data/GeoIP2-Country-Test.mmdb +0 -0
  45. data/test/data/test-data/GeoIP2-DensityIncome-Test.mmdb +0 -0
  46. data/test/data/test-data/GeoIP2-Domain-Test.mmdb +0 -0
  47. data/test/data/test-data/GeoIP2-Enterprise-Test.mmdb +0 -0
  48. data/test/data/test-data/GeoIP2-ISP-Test.mmdb +0 -0
  49. data/test/data/test-data/GeoIP2-Precision-Enterprise-Test.mmdb +0 -0
  50. data/test/data/test-data/GeoIP2-Static-IP-Score-Test.mmdb +0 -0
  51. data/test/data/test-data/GeoIP2-User-Count-Test.mmdb +0 -0
  52. data/test/data/test-data/GeoLite2-ASN-Test.mmdb +0 -0
  53. data/test/data/test-data/GeoLite2-City-Test.mmdb +0 -0
  54. data/test/data/test-data/GeoLite2-Country-Test.mmdb +0 -0
  55. data/test/data/test-data/MaxMind-DB-no-ipv4-search-tree.mmdb +0 -0
  56. data/test/data/test-data/MaxMind-DB-string-value-entries.mmdb +0 -0
  57. data/test/data/test-data/MaxMind-DB-test-broken-pointers-24.mmdb +0 -0
  58. data/test/data/test-data/MaxMind-DB-test-broken-search-tree-24.mmdb +0 -0
  59. data/test/data/test-data/MaxMind-DB-test-decoder.mmdb +0 -0
  60. data/test/data/test-data/MaxMind-DB-test-ipv4-24.mmdb +0 -0
  61. data/test/data/test-data/MaxMind-DB-test-ipv4-28.mmdb +0 -0
  62. data/test/data/test-data/MaxMind-DB-test-ipv4-32.mmdb +0 -0
  63. data/test/data/test-data/MaxMind-DB-test-ipv6-24.mmdb +0 -0
  64. data/test/data/test-data/MaxMind-DB-test-ipv6-28.mmdb +0 -0
  65. data/test/data/test-data/MaxMind-DB-test-ipv6-32.mmdb +0 -0
  66. data/test/data/test-data/MaxMind-DB-test-metadata-pointers.mmdb +0 -0
  67. data/test/data/test-data/MaxMind-DB-test-mixed-24.mmdb +0 -0
  68. data/test/data/test-data/MaxMind-DB-test-mixed-28.mmdb +0 -0
  69. data/test/data/test-data/MaxMind-DB-test-mixed-32.mmdb +0 -0
  70. data/test/data/test-data/MaxMind-DB-test-nested.mmdb +0 -0
  71. data/test/data/test-data/MaxMind-DB-test-pointer-decoder.mmdb +0 -0
  72. data/test/data/test-data/README.md +30 -14
  73. data/test/test_client.rb +18 -2
  74. data/test/test_reader.rb +37 -3
  75. metadata +21 -8
  76. data/test/data/MaxMind-DB-test-metadata-pointers.mmdb +0 -0
  77. data/test/data/source-data/README +0 -15
  78. data/test/data/test-data/write-test-data.pl +0 -691
@@ -1,47 +1,62 @@
1
1
  [
2
2
  {
3
3
  "::1.0.0.0/120" : {
4
- "connection_type" : "Dialup"
4
+ "connection_type" : "Cable/DSL"
5
5
  }
6
6
  },
7
7
  {
8
8
  "::1.0.1.0/120" : {
9
- "connection_type" : "Cable/DSL"
9
+ "connection_type" : "Cellular"
10
10
  }
11
11
  },
12
12
  {
13
13
  "::1.0.2.0/119" : {
14
- "connection_type" : "Dialup"
14
+ "connection_type" : "Cable/DSL"
15
15
  }
16
16
  },
17
17
  {
18
18
  "::1.0.4.0/118" : {
19
- "connection_type" : "Dialup"
19
+ "connection_type" : "Cable/DSL"
20
20
  }
21
21
  },
22
22
  {
23
23
  "::1.0.8.0/117" : {
24
- "connection_type" : "Dialup"
24
+ "connection_type" : "Cable/DSL"
25
25
  }
26
26
  },
27
27
  {
28
28
  "::1.0.16.0/116" : {
29
- "connection_type" : "Dialup"
29
+ "connection_type" : "Cable/DSL"
30
30
  }
31
31
  },
32
32
  {
33
33
  "::1.0.32.0/115" : {
34
- "connection_type" : "Dialup"
34
+ "connection_type" : "Cable/DSL"
35
35
  }
36
36
  },
37
37
  {
38
38
  "::1.0.64.0/114" : {
39
- "connection_type" : "Dialup"
39
+ "connection_type" : "Cable/DSL"
40
40
  }
41
41
  },
42
42
  {
43
43
  "::1.0.128.0/113" : {
44
- "connection_type" : "Dialup"
44
+ "connection_type" : "Cable/DSL"
45
+ }
46
+ },
47
+ {
48
+ "::2.125.160.216/125" : {
49
+ "connection_type" : "Cable/DSL"
50
+ }
51
+ },
52
+ {
53
+ "::149.101.100.0/124" : {
54
+ "connection_type" : "Cellular"
55
+ }
56
+ },
57
+ {
58
+ "::67.43.156.0/120" : {
59
+ "connection_type" : "Cellular"
45
60
  }
46
61
  },
47
62
  {
@@ -76,7 +91,7 @@
76
91
  },
77
92
  {
78
93
  "::175.16.199.0/120" : {
79
- "connection_type" : "Dialup"
94
+ "connection_type" : "Cable/DSL"
80
95
  }
81
96
  },
82
97
  {
@@ -94,6 +109,16 @@
94
109
  "connection_type" : "Cellular"
95
110
  }
96
111
  },
112
+ {
113
+ "::214.78.120.0/118" : {
114
+ "connection_type" : "Satellite"
115
+ }
116
+ },
117
+ {
118
+ "::216.160.83.56/125" : {
119
+ "connection_type" : "Corporate"
120
+ }
121
+ },
97
122
  {
98
123
  "2003::/24" : {
99
124
  "connection_type" : "Cable/DSL"
@@ -6613,7 +6613,6 @@
6613
6613
  },
6614
6614
  "country" : {
6615
6615
  "geoname_id" : 2635167,
6616
- "is_in_european_union" : true,
6617
6616
  "iso_code" : "GB",
6618
6617
  "names" : {
6619
6618
  "de" : "Vereinigtes Königreich",
@@ -6628,7 +6627,6 @@
6628
6627
  },
6629
6628
  "registered_country" : {
6630
6629
  "geoname_id" : 2635167,
6631
- "is_in_european_union" : true,
6632
6630
  "iso_code" : "GB",
6633
6631
  "names" : {
6634
6632
  "de" : "Vereinigtes Königreich",
@@ -6898,11 +6896,6 @@
6898
6896
  "ru" : "Европа",
6899
6897
  "zh-CN" : "欧洲"
6900
6898
  }
6901
- },
6902
- "location" : {
6903
- "latitude" : 48.69096,
6904
- "longitude" : 9.14062,
6905
- "time_zone" : "Europe/Vaduz"
6906
6899
  }
6907
6900
  }
6908
6901
  },
@@ -6924,7 +6917,6 @@
6924
6917
  },
6925
6918
  "country" : {
6926
6919
  "geoname_id" : 2635167,
6927
- "is_in_european_union" : true,
6928
6920
  "iso_code" : "GB",
6929
6921
  "names" : {
6930
6922
  "de" : "Vereinigtes Königreich",
@@ -6939,7 +6931,6 @@
6939
6931
  },
6940
6932
  "registered_country" : {
6941
6933
  "geoname_id" : 2635167,
6942
- "is_in_european_union" : true,
6943
6934
  "iso_code" : "GB",
6944
6935
  "names" : {
6945
6936
  "de" : "Vereinigtes Königreich",
@@ -7164,7 +7155,6 @@
7164
7155
  },
7165
7156
  "country" : {
7166
7157
  "geoname_id" : 2635167,
7167
- "is_in_european_union" : true,
7168
7158
  "iso_code" : "GB",
7169
7159
  "names" : {
7170
7160
  "de" : "Vereinigtes Königreich",
@@ -7179,7 +7169,6 @@
7179
7169
  },
7180
7170
  "registered_country" : {
7181
7171
  "geoname_id" : 2635167,
7182
- "is_in_european_union" : true,
7183
7172
  "iso_code" : "GB",
7184
7173
  "names" : {
7185
7174
  "de" : "Vereinigtes Königreich",
@@ -7918,7 +7907,6 @@
7918
7907
  },
7919
7908
  "country" : {
7920
7909
  "geoname_id" : 2635167,
7921
- "is_in_european_union" : true,
7922
7910
  "iso_code" : "GB",
7923
7911
  "names" : {
7924
7912
  "de" : "Vereinigtes Königreich",
@@ -7933,7 +7921,6 @@
7933
7921
  },
7934
7922
  "registered_country" : {
7935
7923
  "geoname_id" : 2635167,
7936
- "is_in_european_union" : true,
7937
7924
  "iso_code" : "GB",
7938
7925
  "names" : {
7939
7926
  "de" : "Vereinigtes Königreich",
@@ -8478,7 +8465,6 @@
8478
8465
  },
8479
8466
  "country" : {
8480
8467
  "geoname_id" : 2635167,
8481
- "is_in_european_union" : true,
8482
8468
  "iso_code" : "GB",
8483
8469
  "names" : {
8484
8470
  "de" : "Vereinigtes Königreich",
@@ -8493,7 +8479,6 @@
8493
8479
  },
8494
8480
  "registered_country" : {
8495
8481
  "geoname_id" : 2635167,
8496
- "is_in_european_union" : true,
8497
8482
  "iso_code" : "GB",
8498
8483
  "names" : {
8499
8484
  "de" : "Vereinigtes Königreich",
@@ -8896,7 +8881,6 @@
8896
8881
  },
8897
8882
  "country" : {
8898
8883
  "geoname_id" : 2635167,
8899
- "is_in_european_union" : true,
8900
8884
  "iso_code" : "GB",
8901
8885
  "names" : {
8902
8886
  "de" : "Vereinigtes Königreich",
@@ -8911,7 +8895,6 @@
8911
8895
  },
8912
8896
  "registered_country" : {
8913
8897
  "geoname_id" : 2635167,
8914
- "is_in_european_union" : true,
8915
8898
  "iso_code" : "GB",
8916
8899
  "names" : {
8917
8900
  "de" : "Vereinigtes Königreich",
@@ -9178,7 +9161,6 @@
9178
9161
  },
9179
9162
  "country" : {
9180
9163
  "geoname_id" : 2635167,
9181
- "is_in_european_union" : true,
9182
9164
  "iso_code" : "GB",
9183
9165
  "names" : {
9184
9166
  "de" : "Vereinigtes Königreich",
@@ -9193,7 +9175,6 @@
9193
9175
  },
9194
9176
  "registered_country" : {
9195
9177
  "geoname_id" : 2635167,
9196
- "is_in_european_union" : true,
9197
9178
  "iso_code" : "GB",
9198
9179
  "names" : {
9199
9180
  "de" : "Vereinigtes Königreich",
@@ -9274,7 +9255,6 @@
9274
9255
  },
9275
9256
  "country" : {
9276
9257
  "geoname_id" : 2635167,
9277
- "is_in_european_union" : true,
9278
9258
  "iso_code" : "GB",
9279
9259
  "names" : {
9280
9260
  "de" : "Vereinigtes Königreich",
@@ -9289,7 +9269,6 @@
9289
9269
  },
9290
9270
  "registered_country" : {
9291
9271
  "geoname_id" : 2635167,
9292
- "is_in_european_union" : true,
9293
9272
  "iso_code" : "GB",
9294
9273
  "names" : {
9295
9274
  "de" : "Vereinigtes Königreich",
@@ -10970,7 +10949,6 @@
10970
10949
  },
10971
10950
  "country" : {
10972
10951
  "geoname_id" : 2635167,
10973
- "is_in_european_union" : true,
10974
10952
  "iso_code" : "GB",
10975
10953
  "names" : {
10976
10954
  "de" : "Vereinigtes Königreich",
@@ -10985,7 +10963,6 @@
10985
10963
  },
10986
10964
  "registered_country" : {
10987
10965
  "geoname_id" : 2635167,
10988
- "is_in_european_union" : true,
10989
10966
  "iso_code" : "GB",
10990
10967
  "names" : {
10991
10968
  "de" : "Vereinigtes Königreich",
@@ -11160,7 +11137,6 @@
11160
11137
  },
11161
11138
  "country" : {
11162
11139
  "geoname_id" : 2635167,
11163
- "is_in_european_union" : true,
11164
11140
  "iso_code" : "GB",
11165
11141
  "names" : {
11166
11142
  "de" : "Vereinigtes Königreich",
@@ -11175,7 +11151,6 @@
11175
11151
  },
11176
11152
  "registered_country" : {
11177
11153
  "geoname_id" : 2635167,
11178
- "is_in_european_union" : true,
11179
11154
  "iso_code" : "GB",
11180
11155
  "names" : {
11181
11156
  "de" : "Vereinigtes Königreich",
@@ -11393,11 +11368,6 @@
11393
11368
  "ru" : "Европа",
11394
11369
  "zh-CN" : "欧洲"
11395
11370
  }
11396
- },
11397
- "location" : {
11398
- "latitude" : 48.69096,
11399
- "longitude" : 9.14062,
11400
- "time_zone" : "Europe/Vaduz"
11401
11371
  }
11402
11372
  }
11403
11373
  },
@@ -12163,7 +12133,6 @@
12163
12133
  },
12164
12134
  "country" : {
12165
12135
  "geoname_id" : 2635167,
12166
- "is_in_european_union" : true,
12167
12136
  "iso_code" : "GB",
12168
12137
  "names" : {
12169
12138
  "de" : "Vereinigtes Königreich",
@@ -12178,7 +12147,6 @@
12178
12147
  },
12179
12148
  "registered_country" : {
12180
12149
  "geoname_id" : 2635167,
12181
- "is_in_european_union" : true,
12182
12150
  "iso_code" : "GB",
12183
12151
  "names" : {
12184
12152
  "de" : "Vereinigtes Königreich",
@@ -12257,7 +12225,6 @@
12257
12225
  },
12258
12226
  "country" : {
12259
12227
  "geoname_id" : 2635167,
12260
- "is_in_european_union" : true,
12261
12228
  "iso_code" : "GB",
12262
12229
  "names" : {
12263
12230
  "de" : "Vereinigtes Königreich",
@@ -12272,7 +12239,6 @@
12272
12239
  },
12273
12240
  "registered_country" : {
12274
12241
  "geoname_id" : 2635167,
12275
- "is_in_european_union" : true,
12276
12242
  "iso_code" : "GB",
12277
12243
  "names" : {
12278
12244
  "de" : "Vereinigtes Königreich",
@@ -12729,7 +12695,6 @@
12729
12695
  },
12730
12696
  "country" : {
12731
12697
  "geoname_id" : 2635167,
12732
- "is_in_european_union" : true,
12733
12698
  "iso_code" : "GB",
12734
12699
  "names" : {
12735
12700
  "de" : "Vereinigtes Königreich",
@@ -12744,7 +12709,6 @@
12744
12709
  },
12745
12710
  "registered_country" : {
12746
12711
  "geoname_id" : 2635167,
12747
- "is_in_european_union" : true,
12748
12712
  "iso_code" : "GB",
12749
12713
  "names" : {
12750
12714
  "de" : "Vereinigtes Königreich",
@@ -12871,7 +12835,6 @@
12871
12835
  },
12872
12836
  "country" : {
12873
12837
  "geoname_id" : 2635167,
12874
- "is_in_european_union" : true,
12875
12838
  "iso_code" : "GB",
12876
12839
  "names" : {
12877
12840
  "de" : "Vereinigtes Königreich",
@@ -12886,7 +12849,6 @@
12886
12849
  },
12887
12850
  "registered_country" : {
12888
12851
  "geoname_id" : 2635167,
12889
- "is_in_european_union" : true,
12890
12852
  "iso_code" : "GB",
12891
12853
  "names" : {
12892
12854
  "de" : "Vereinigtes Königreich",
@@ -13059,7 +13021,6 @@
13059
13021
  },
13060
13022
  "country" : {
13061
13023
  "geoname_id" : 2635167,
13062
- "is_in_european_union" : true,
13063
13024
  "iso_code" : "GB",
13064
13025
  "names" : {
13065
13026
  "de" : "Vereinigtes Königreich",
@@ -13074,7 +13035,6 @@
13074
13035
  },
13075
13036
  "registered_country" : {
13076
13037
  "geoname_id" : 2635167,
13077
- "is_in_european_union" : true,
13078
13038
  "iso_code" : "GB",
13079
13039
  "names" : {
13080
13040
  "de" : "Vereinigtes Königreich",
@@ -13909,7 +13869,6 @@
13909
13869
  },
13910
13870
  "country" : {
13911
13871
  "geoname_id" : 2635167,
13912
- "is_in_european_union" : true,
13913
13872
  "iso_code" : "GB",
13914
13873
  "names" : {
13915
13874
  "de" : "Vereinigtes Königreich",
@@ -13924,7 +13883,6 @@
13924
13883
  },
13925
13884
  "registered_country" : {
13926
13885
  "geoname_id" : 2635167,
13927
- "is_in_european_union" : true,
13928
13886
  "iso_code" : "GB",
13929
13887
  "names" : {
13930
13888
  "de" : "Vereinigtes Königreich",
@@ -13957,7 +13915,6 @@
13957
13915
  },
13958
13916
  "country" : {
13959
13917
  "geoname_id" : 2635167,
13960
- "is_in_european_union" : true,
13961
13918
  "iso_code" : "GB",
13962
13919
  "names" : {
13963
13920
  "de" : "Vereinigtes Königreich",
@@ -13972,7 +13929,6 @@
13972
13929
  },
13973
13930
  "registered_country" : {
13974
13931
  "geoname_id" : 2635167,
13975
- "is_in_european_union" : true,
13976
13932
  "iso_code" : "GB",
13977
13933
  "names" : {
13978
13934
  "de" : "Vereinigtes Königreich",
@@ -14241,7 +14197,6 @@
14241
14197
  },
14242
14198
  "country" : {
14243
14199
  "geoname_id" : 2635167,
14244
- "is_in_european_union" : true,
14245
14200
  "iso_code" : "GB",
14246
14201
  "names" : {
14247
14202
  "de" : "Vereinigtes Königreich",
@@ -14256,7 +14211,6 @@
14256
14211
  },
14257
14212
  "registered_country" : {
14258
14213
  "geoname_id" : 2635167,
14259
- "is_in_european_union" : true,
14260
14214
  "iso_code" : "GB",
14261
14215
  "names" : {
14262
14216
  "de" : "Vereinigtes Königreich",
@@ -14527,7 +14481,6 @@
14527
14481
  },
14528
14482
  "country" : {
14529
14483
  "geoname_id" : 2635167,
14530
- "is_in_european_union" : true,
14531
14484
  "iso_code" : "GB",
14532
14485
  "names" : {
14533
14486
  "de" : "Vereinigtes Königreich",
@@ -14542,7 +14495,6 @@
14542
14495
  },
14543
14496
  "registered_country" : {
14544
14497
  "geoname_id" : 2635167,
14545
- "is_in_european_union" : true,
14546
14498
  "iso_code" : "GB",
14547
14499
  "names" : {
14548
14500
  "de" : "Vereinigtes Königreich",
@@ -14815,7 +14767,6 @@
14815
14767
  },
14816
14768
  "country" : {
14817
14769
  "geoname_id" : 2635167,
14818
- "is_in_european_union" : true,
14819
14770
  "iso_code" : "GB",
14820
14771
  "names" : {
14821
14772
  "de" : "Vereinigtes Königreich",
@@ -14830,7 +14781,6 @@
14830
14781
  },
14831
14782
  "registered_country" : {
14832
14783
  "geoname_id" : 2635167,
14833
- "is_in_european_union" : true,
14834
14784
  "iso_code" : "GB",
14835
14785
  "names" : {
14836
14786
  "de" : "Vereinigtes Königreich",
@@ -14911,7 +14861,6 @@
14911
14861
  },
14912
14862
  "country" : {
14913
14863
  "geoname_id" : 2635167,
14914
- "is_in_european_union" : true,
14915
14864
  "iso_code" : "GB",
14916
14865
  "names" : {
14917
14866
  "de" : "Vereinigtes Königreich",
@@ -14926,7 +14875,6 @@
14926
14875
  },
14927
14876
  "registered_country" : {
14928
14877
  "geoname_id" : 2635167,
14929
- "is_in_european_union" : true,
14930
14878
  "iso_code" : "GB",
14931
14879
  "names" : {
14932
14880
  "de" : "Vereinigtes Königreich",
@@ -15145,7 +15093,6 @@
15145
15093
  },
15146
15094
  "country" : {
15147
15095
  "geoname_id" : 2635167,
15148
- "is_in_european_union" : true,
15149
15096
  "iso_code" : "GB",
15150
15097
  "names" : {
15151
15098
  "de" : "Vereinigtes Königreich",
@@ -15175,6 +15122,52 @@
15175
15122
  }
15176
15123
  }
15177
15124
  },
15125
+ {
15126
+ "::149.101.100.0/124" : {
15127
+ "continent" : {
15128
+ "code" : "NA",
15129
+ "geoname_id" : 6255149,
15130
+ "names" : {
15131
+ "de" : "Nordamerika",
15132
+ "en" : "North America",
15133
+ "es" : "América del Norte",
15134
+ "fr" : "Amérique du Nord",
15135
+ "ja" : "北アメリカ",
15136
+ "pt-BR" : "América do Norte",
15137
+ "ru" : "Северная Америка",
15138
+ "zh-CN" : "北美洲"
15139
+ }
15140
+ },
15141
+ "country" : {
15142
+ "geoname_id" : 6252001,
15143
+ "iso_code" : "US",
15144
+ "names" : {
15145
+ "de" : "USA",
15146
+ "en" : "United States",
15147
+ "es" : "Estados Unidos",
15148
+ "fr" : "États-Unis",
15149
+ "ja" : "アメリカ合衆国",
15150
+ "pt-BR" : "Estados Unidos",
15151
+ "ru" : "США",
15152
+ "zh-CN" : "美国"
15153
+ }
15154
+ },
15155
+ "registered_country" : {
15156
+ "geoname_id" : 2635167,
15157
+ "iso_code" : "GB",
15158
+ "names" : {
15159
+ "de" : "Vereinigtes Königreich",
15160
+ "en" : "United Kingdom",
15161
+ "es" : "Reino Unido",
15162
+ "fr" : "Royaume-Uni",
15163
+ "ja" : "イギリス",
15164
+ "pt-BR" : "Reino Unido",
15165
+ "ru" : "Великобритания",
15166
+ "zh-CN" : "英国"
15167
+ }
15168
+ }
15169
+ }
15170
+ },
15178
15171
  {
15179
15172
  "::74.209.24.0/116" : {
15180
15173
  "continent" : {
@@ -15293,7 +15286,6 @@
15293
15286
  },
15294
15287
  "country" : {
15295
15288
  "geoname_id" : 2635167,
15296
- "is_in_european_union" : true,
15297
15289
  "iso_code" : "GB",
15298
15290
  "names" : {
15299
15291
  "de" : "Vereinigtes Königreich",
@@ -15340,7 +15332,6 @@
15340
15332
  },
15341
15333
  "country" : {
15342
15334
  "geoname_id" : 2635167,
15343
- "is_in_european_union" : true,
15344
15335
  "iso_code" : "GB",
15345
15336
  "names" : {
15346
15337
  "de" : "Vereinigtes Königreich",
@@ -15387,7 +15378,6 @@
15387
15378
  },
15388
15379
  "country" : {
15389
15380
  "geoname_id" : 2635167,
15390
- "is_in_european_union" : true,
15391
15381
  "iso_code" : "GB",
15392
15382
  "names" : {
15393
15383
  "de" : "Vereinigtes Königreich",
@@ -15434,7 +15424,6 @@
15434
15424
  },
15435
15425
  "country" : {
15436
15426
  "geoname_id" : 2635167,
15437
- "is_in_european_union" : true,
15438
15427
  "iso_code" : "GB",
15439
15428
  "names" : {
15440
15429
  "de" : "Vereinigtes Königreich",
@@ -15495,7 +15484,6 @@
15495
15484
  },
15496
15485
  "registered_country" : {
15497
15486
  "geoname_id" : 2635167,
15498
- "is_in_european_union" : true,
15499
15487
  "iso_code" : "GB",
15500
15488
  "names" : {
15501
15489
  "de" : "Vereinigtes Königreich",
@@ -15912,5 +15900,104 @@
15912
15900
  }
15913
15901
  }
15914
15902
  }
15903
+ },
15904
+ {
15905
+ "214.1.1.0/24" : {
15906
+ "traits": {
15907
+ "is_anycast": true
15908
+ }
15909
+ }
15910
+ },
15911
+ {
15912
+ "214.78.120.0/22" : {
15913
+ "continent" : {
15914
+ "code" : "NA",
15915
+ "geoname_id" : 6255149,
15916
+ "names" : {
15917
+ "de" : "Nordamerika",
15918
+ "en" : "North America",
15919
+ "es" : "Norteamérica",
15920
+ "fr" : "Amérique du Nord",
15921
+ "ja" : "北アメリカ",
15922
+ "pt-BR" : "América do Norte",
15923
+ "ru" : "Северная Америка",
15924
+ "zh-CN" : "北美洲"
15925
+ }
15926
+ },
15927
+ "country" : {
15928
+ "geoname_id" : 6252001,
15929
+ "iso_code" : "US",
15930
+ "names" : {
15931
+ "de" : "Vereinigte Staaten",
15932
+ "en" : "United States",
15933
+ "es" : "Estados Unidos",
15934
+ "fr" : "États Unis",
15935
+ "ja" : "アメリカ",
15936
+ "pt-BR" : "EUA",
15937
+ "ru" : "США",
15938
+ "zh-CN" : "美国"
15939
+ }
15940
+ },
15941
+ "registered_country" : {
15942
+ "geoname_id" : 6252001,
15943
+ "iso_code" : "US",
15944
+ "names" : {
15945
+ "de" : "Vereinigte Staaten",
15946
+ "en" : "United States",
15947
+ "es" : "Estados Unidos",
15948
+ "fr" : "États Unis",
15949
+ "ja" : "アメリカ",
15950
+ "pt-BR" : "EUA",
15951
+ "ru" : "США",
15952
+ "zh-CN" : "美国"
15953
+ }
15954
+ }
15955
+ }
15956
+ },
15957
+ {
15958
+ "2001:480:10::/48" : {
15959
+ "continent" : {
15960
+ "code" : "NA",
15961
+ "geoname_id" : 6255149,
15962
+ "names" : {
15963
+ "de" : "Nordamerika",
15964
+ "en" : "North America",
15965
+ "es" : "Norteamérica",
15966
+ "fr" : "Amérique du Nord",
15967
+ "ja" : "北アメリカ",
15968
+ "pt-BR" : "América do Norte",
15969
+ "ru" : "Северная Америка",
15970
+ "zh-CN" : "北美洲"
15971
+ }
15972
+ },
15973
+ "country" : {
15974
+ "geoname_id" : 6252001,
15975
+ "iso_code" : "US",
15976
+ "names" : {
15977
+ "de" : "Vereinigte Staaten",
15978
+ "en" : "United States",
15979
+ "es" : "Estados Unidos",
15980
+ "fr" : "États Unis",
15981
+ "ja" : "アメリカ",
15982
+ "pt-BR" : "EUA",
15983
+ "ru" : "США",
15984
+ "zh-CN" : "美国"
15985
+ }
15986
+ },
15987
+ "registered_country" : {
15988
+ "geoname_id" : 6252001,
15989
+ "iso_code" : "US",
15990
+ "names" : {
15991
+ "de" : "Vereinigte Staaten",
15992
+ "en" : "United States",
15993
+ "es" : "Estados Unidos",
15994
+ "fr" : "États Unis",
15995
+ "ja" : "アメリカ",
15996
+ "pt-BR" : "EUA",
15997
+ "ru" : "США",
15998
+ "zh-CN" : "美国"
15999
+ }
16000
+ }
16001
+ }
15915
16002
  }
15916
16003
  ]
@@ -74,6 +74,11 @@
74
74
  "domain" : "comcastbusiness.net"
75
75
  }
76
76
  },
77
+ {
78
+ "::214.78.120.0/118" : {
79
+ "domain" : "starlinkisp.net"
80
+ }
81
+ },
77
82
  {
78
83
  "::222.230.136.0/118" : {
79
84
  "domain" : "gol.ne.jp"