Codebase list ruby-maxmind-db / 9b6ee55
Import upstream version 1.1.1+git20210128.85c5187 Kali Janitor 3 years ago
71 changed file(s) with 100 addition(s) and 50980 deletion(s). Raw diff Collapse all Expand all
0 name: Run rubocop
1 on: [push, pull_request]
2 jobs:
3 rubocop:
4 runs-on: ubuntu-latest
5 steps:
6 - uses: actions/checkout@v2
7 - uses: ruby/setup-ruby@v1
8 with:
9 ruby-version: 2.7
10 - run: bundle install
11 - run: bundle exec rake -t rubocop
0 name: Run tests
1 on: [push, pull_request]
2 jobs:
3 test:
4 runs-on: ${{ matrix.os }}
5 strategy:
6 fail-fast: false
7 matrix:
8 os: [ubuntu-latest, windows-latest, macos-latest]
9 version:
10 [
11 2.4,
12 2.5,
13 2.6,
14 2.7,
15 jruby,
16 ]
17 exclude:
18 - os: windows-latest
19 version: jruby
20 steps:
21 - uses: actions/checkout@v2
22 with:
23 submodules: true
24 - uses: ruby/setup-ruby@v1
25 with:
26 ruby-version: ${{ matrix.version }}
27 - run: bundle install
28 - run: bundle exec rake -t test
0 *.swp
1 /doc
2 /.yardoc
0 [submodule "test/data"]
1 path = test/data
2 url = https://github.com/maxmind/MaxMind-DB
0 require: rubocop-performance
1
2 AllCops:
3 TargetRubyVersion: 2.4
4 NewCops: enable
5
6 # Metrics are too arbitrary.
7 Metrics/AbcSize:
8 Enabled: false
9 Metrics/ClassLength:
10 Enabled: false
11 Layout/LineLength:
12 Enabled: false
13 Metrics/MethodLength:
14 Enabled: false
15
16 # Weird.
17 Style/FormatStringToken:
18 Enabled: false
19 Style/NumericPredicate:
20 Enabled: false
21
22 # Trailing commas are good.
23 Style/TrailingCommaInArguments:
24 Enabled: false
25 Style/TrailingCommaInArrayLiteral:
26 Enabled: false
27 Style/TrailingCommaInHashLiteral:
28 Enabled: false
2828
2929 def print_usage
3030 # rubocop:disable Style/StderrPuts
31 STDERR.puts "Usage: #{$PROGRAM_NAME} <MMDB file> <IP file>"
32 STDERR.puts
33 STDERR.puts 'Benchmark by reading IPs from the IP file and looking up each one in the MMDB file.'
31 $stderr.puts "Usage: #{$PROGRAM_NAME} <MMDB file> <IP file>"
32 $stderr.puts
33 $stderr.puts 'Benchmark by reading IPs from the IP file and looking up each one in the MMDB file.'
3434 # rubocop:enable Style/StderrPuts
3535 end
3636
1111 #
1212 # @!visibility private
1313 class Decoder
14 # rubocop:disable Style/OptionalBooleanParameter
15
1416 # Create a +Decoder+.
1517 #
1618 # +io+ is the DB. It must provide a +read+ method. It must be opened in
2729 @pointer_base = pointer_base
2830 @pointer_test = pointer_test
2931 end
32 # rubocop:enable Style/OptionalBooleanParameter
3033
3134 private
3235
22 require 'ipaddr'
33 require 'maxmind/db/decoder'
44 require 'maxmind/db/errors'
5 require 'maxmind/db/file_reader.rb'
6 require 'maxmind/db/memory_reader.rb'
7 require 'maxmind/db/metadata.rb'
5 require 'maxmind/db/file_reader'
6 require 'maxmind/db/memory_reader'
7 require 'maxmind/db/metadata'
88
99 module MaxMind
1010 # DB provides a way to read {MaxMind DB
1212 s.licenses = ['Apache-2.0', 'MIT']
1313 s.metadata = {
1414 'bug_tracker_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby/issues',
15 'changelog_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby/blob/master/CHANGELOG.md',
15 'changelog_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby/blob/main/CHANGELOG.md',
1616 'documentation_uri' => 'https://www.rubydoc.info/gems/maxmind-db',
1717 'homepage_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby',
1818 'source_code_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby',
+0
-4
test/data/LICENSE less more
0 This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
1 Unported License. To view a copy of this license, visit
2 http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
3 Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
+0
-570
test/data/MaxMind-DB-spec.md less more
0 ---
1 layout: default
2 title: MaxMind DB File Format Specification
3 version: v2.0
4 ---
5 # MaxMind DB File Format Specification
6
7 ## Description
8
9 The MaxMind DB file format is a database format that maps IPv4 and IPv6
10 addresses to data records using an efficient binary search tree.
11
12 ## Version
13
14 This spec documents **version 2.0** of the MaxMind DB binary format.
15
16 The version number consists of separate major and minor version numbers. It
17 should not be considered a decimal number. In other words, version 2.10 comes
18 after version 2.9.
19
20 Code which is capable of reading a given major version of the format should
21 not be broken by minor version changes to the format.
22
23 ## Overview
24
25 The binary database is split into three parts:
26
27 1. The binary search tree. Each level of the tree corresponds to a single bit
28 in the 128 bit representation of an IPv6 address.
29 2. The data section. These are the values returned to the client for a
30 specific IP address, e.g. "US", "New York", or a more complex map type made up
31 of multiple fields.
32 3. Database metadata. Information about the database itself.
33
34 ## Database Metadata
35
36 This portion of the database is stored at the end of the file. It is
37 documented first because understanding some of the metadata is key to
38 understanding how the other sections work.
39
40 This section can be found by looking for a binary sequence matching
41 "\xab\xcd\xefMaxMind.com". The *last* occurrence of this string in the file
42 marks the end of the data section and the beginning of the metadata. Since we
43 allow for arbitrary binary data in the data section, some other piece of data
44 could contain these values. This is why you need to find the last occurrence
45 of this sequence.
46
47 The maximum allowable size for the metadata section, including the marker that
48 starts the metadata, is 128KiB.
49
50 The metadata is stored as a map data structure. This structure is described
51 later in the spec. Changing a key's data type or removing a key would
52 constitute a major version change for this spec.
53
54 Except where otherwise specified, each key listed is required for the database
55 to be considered valid.
56
57 Adding a key constitutes a minor version change. Removing a key or changing
58 its type constitutes a major version change.
59
60 The list of known keys for the current version of the format is as follows:
61
62 ### node\_count
63
64 This is an unsigned 32-bit integer indicating the number of nodes in the
65 search tree.
66
67 ### record\_size
68
69 This is an unsigned 16-bit integer. It indicates the number of bits in a
70 record in the search tree. Note that each node consists of *two* records.
71
72 ### ip\_version
73
74 This is an unsigned 16-bit integer which is always 4 or 6. It indicates
75 whether the database contains IPv4 or IPv6 address data.
76
77 ### database\_type
78
79 This is a string that indicates the structure of each data record associated
80 with an IP address. The actual definition of these structures is left up to
81 the database creator.
82
83 Names starting with "GeoIP" are reserved for use by MaxMind (and "GeoIP" is a
84 trademark anyway).
85
86 ### languages
87
88 An array of strings, each of which is a locale code. A given record may
89 contain data items that have been localized to some or all of these
90 locales. Records should not contain localized data for locales not included in
91 this array.
92
93 This is an optional key, as this may not be relevant for all types of data.
94
95 ### binary\_format\_major\_version
96
97 This is an unsigned 16-bit integer indicating the major version number for the
98 database's binary format.
99
100 ### binary\_format\_minor\_version
101
102 This is an unsigned 16-bit integer indicating the minor version number for the
103 database's binary format.
104
105 ### build\_epoch
106
107 This is an unsigned 64-bit integer that contains the database build timestamp
108 as a Unix epoch value.
109
110 ### description
111
112 This key will always point to a map. The keys of that map will be language
113 codes, and the values will be a description in that language as a UTF-8
114 string.
115
116 The codes may include additional information such as script or country
117 identifiers, like "zh-TW" or "mn-Cyrl-MN". The additional identifiers will be
118 separated by a dash character ("-").
119
120 This key is optional. However, creators of databases are strongly
121 encouraged to include a description in at least one language.
122
123 ### Calculating the Search Tree Section Size
124
125 The formula for calculating the search tree section size *in bytes* is as
126 follows:
127
128 ( ( $record_size * 2 ) / 8 ) * $number_of_nodes
129
130 The end of the search tree marks the beginning of the data section.
131
132 ## Binary Search Tree Section
133
134 The database file starts with a binary search tree. The number of nodes in the
135 tree is dependent on how many unique netblocks are needed for the particular
136 database. For example, the city database needs many more small netblocks than
137 the country database.
138
139 The top most node is always located at the beginning of the search tree
140 section's address space. The top node is node 0.
141
142 Each node consists of two records, each of which is a pointer to an address in
143 the file.
144
145 The pointers can point to one of three things. First, it may point to another
146 node in the search tree address space. These pointers are followed as part of
147 the IP address search algorithm, described below.
148
149 The pointer can point to a value equal to `$number_of_nodes`. If this is the
150 case, it means that the IP address we are searching for is not in the
151 database.
152
153 Finally, it may point to an address in the data section. This is the data
154 relevant to the given netblock.
155
156 ### Node Layout
157
158 Each node in the search tree consists of two records, each of which is a
159 pointer. The record size varies by database, but inside a single database node
160 records are always the same size. A record may be anywhere from 24 to 128 bits
161 long, depending on the number of nodes in the tree. These pointers are
162 stored in big-endian format (most significant byte first).
163
164 Here are some examples of how the records are laid out in a node for 24, 28,
165 and 32 bit records. Larger record sizes follow this same pattern.
166
167 #### 24 bits (small database), one node is 6 bytes
168
169 | <------------- node --------------->|
170 | 23 .. 0 | 23 .. 0 |
171
172 #### 28 bits (medium database), one node is 7 bytes
173
174 | <------------- node --------------->|
175 | 23 .. 0 | 27..24 | 27..24 | 23 .. 0 |
176
177 Note 4 bits of each pointer are combined into the middle byte. For both
178 records, they are prepended and end up in the most significant position.
179
180 #### 32 bits (large database), one node is 8 bytes
181
182 | <------------- node --------------->|
183 | 31 .. 0 | 31 .. 0 |
184
185 ### Search Lookup Algorithm
186
187 The first step is to convert the IP address to its big-endian binary
188 representation. For an IPv4 address, this becomes 32 bits. For IPv6 you get
189 128 bits.
190
191 The leftmost bit corresponds to the first node in the search tree. For each
192 bit, a value of 0 means we choose the left record in a node, and a value of 1
193 means we choose the right record.
194
195 The record value is always interpreted as an unsigned integer. The maximum
196 size of the integer is dependent on the number of bits in a record (24, 28, or
197 32).
198
199 If the record value is a number that is less than the *number of nodes* (not
200 in bytes, but the actual node count) in the search tree (this is stored in the
201 database metadata), then the value is a node number. In this case, we find
202 that node in the search tree and repeat the lookup algorithm from there.
203
204 If the record value is equal to the number of nodes, that means that we do not
205 have any data for the IP address, and the search ends here.
206
207 If the record value is *greater* than the number of nodes in the search tree,
208 then it is an actual pointer value pointing into the data section. The value
209 of the pointer is relative to the start of the data section, *not* the
210 start of the file.
211
212 In order to determine where in the data section we should start looking, we use
213 the following formula:
214
215 $data_section_offset = ( $record_value - $node_count ) - 16
216
217 The 16 is the size of the data section separator. We subtract it because we
218 want to permit pointing to the first byte of the data section. Recall that
219 the record value cannot equal the node count as that means there is no
220 data. Instead, we choose to start values that go to the data section at
221 `$node_count + 16`. (This has the side effect that record values
222 `$node_count + 1` through `$node_count + 15` inclusive are not valid).
223
224 This is best demonstrated by an example:
225
226 Let's assume we have a 24-bit tree with 1,000 nodes. Each node contains 48
227 bits, or 6 bytes. The size of the tree is 6,000 bytes.
228
229 When a record in the tree contains a number that is less than 1,000, this
230 is a *node number*, and we look up that node. If a record contains a value
231 greater than or equal to 1,016, we know that it is a data section value. We
232 subtract the node count (1,000) and then subtract 16 for the data section
233 separator, giving us the number 0, the first byte of the data section.
234
235 If a record contained the value 6,000, this formula would give us an offset of
236 4,984 into the data section.
237
238 In order to determine where in the file this offset really points to, we also
239 need to know where the data section starts. This can be calculated by
240 determining the size of the search tree in bytes and then adding an additional
241 16 bytes for the data section separator:
242
243 $offset_in_file = $data_section_offset
244 + $search_tree_size_in_bytes
245 + 16
246
247 Since we subtract and then add 16, the final formula to determine the
248 offset in the file can be simplified to:
249
250 $offset_in_file = ( $record_value - $node_count )
251 + $search_tree_size_in_bytes
252
253 ### IPv4 addresses in an IPv6 tree
254
255 When storing IPv4 addresses in an IPv6 tree, they are stored as-is, so they
256 occupy the first 32-bits of the address space (from 0 to 2**32 - 1).
257
258 Creators of databases should decide on a strategy for handling the various
259 mappings between IPv4 and IPv6.
260
261 The strategy that MaxMind uses for its GeoIP databases is to include a pointer
262 from the `::ffff:0:0/96` subnet to the root node of the IPv4 address space in
263 the tree. This accounts for the
264 [IPv4-mapped IPv6 address](http://en.wikipedia.org/wiki/IPv6#IPv4-mapped_IPv6_addresses).
265
266 MaxMind also includes a pointer from the `2002::/16` subnet to the root node
267 of the IPv4 address space in the tree. This accounts for the
268 [6to4 mapping](http://en.wikipedia.org/wiki/6to4) subnet.
269
270 Database creators are encouraged to document whether they are doing something
271 similar for their databases.
272
273 The Teredo subnet cannot be accounted for in the tree. Instead, code that
274 searches the tree can offer to decode the IPv4 portion of a Teredo address and
275 look that up.
276
277 ## Data Section Separator
278
279 There are 16 bytes of NULLs in between the search tree and the data
280 section. This separator exists in order to make it possible for a verification
281 tool to distinguish between the two sections.
282
283 This separator is not considered part of the data section itself. In other
284 words, the data section starts at `$size_of_search_tree + 16` bytes in the
285 file.
286
287 ## Output Data Section
288
289 Each output data field has an associated type, and that type is encoded as a
290 number that begins the data field. Some types are variable length. In those
291 cases, the type indicator is also followed by a length. The data payload
292 always comes at the end of the field.
293
294 All binary data is stored in big-endian format.
295
296 Note that the *interpretation* of a given data type's meaning is decided by
297 higher-level APIs, not by the binary format itself.
298
299 ### pointer - 1
300
301 A pointer to another part of the data section's address space. The pointer
302 will point to the beginning of a field. It is illegal for a pointer to point
303 to another pointer.
304
305 Pointer values start from the beginning of the data section, *not* the
306 beginning of the file.
307
308 ### UTF-8 string - 2
309
310 A variable length byte sequence that contains valid utf8. If the length is
311 zero then this is an empty string.
312
313 ### double - 3
314
315 This is stored as an IEEE-754 double (binary64) in big-endian format. The
316 length of a double is always 8 bytes.
317
318 ### bytes - 4
319
320 A variable length byte sequence containing any sort of binary data. If the
321 length is zero then this a zero-length byte sequence.
322
323 This is not currently used but may be used in the future to embed non-text
324 data (images, etc.).
325
326 ### integer formats
327
328 Integers are stored in variable length binary fields.
329
330 We support 16-bit, 32-bit, 64-bit, and 128-bit unsigned integers. We also
331 support 32-bit signed integers.
332
333 A 128-bit integer can use up to 16 bytes, but may use fewer. Similarly, a
334 32-bit integer may use from 0-4 bytes. The number of bytes used is determined
335 by the length specifier in the control byte. See below for details.
336
337 A length of zero always indicates the number 0.
338
339 When storing a signed integer, the left-most bit is the sign. A 1 is negative
340 and a 0 is positive.
341
342 The type numbers for our integer types are:
343
344 * unsigned 16-bit int - 5
345 * unsigned 32-bit int - 6
346 * signed 32-bit int - 8
347 * unsigned 64-bit int - 9
348 * unsigned 128-bit int - 10
349
350 The unsigned 32-bit and 128-bit types may be used to store IPv4 and IPv6
351 addresses, respectively.
352
353 The signed 32-bit integers are stored using the 2's complement representation.
354
355 ### map - 7
356
357 A map data type contains a set of key/value pairs. Unlike other data types,
358 the length information for maps indicates how many key/value pairs it
359 contains, not its length in bytes. This size can be zero.
360
361 See below for the algorithm used to determine the number of pairs in the
362 hash. This algorithm is also used to determine the length of a field's
363 payload.
364
365 ### array - 11
366
367 An array type contains a set of ordered values. The length information for
368 arrays indicates how many values it contains, not its length in bytes. This
369 size can be zero.
370
371 This type uses the same algorithm as maps for determining the length of a
372 field's payload.
373
374 ### data cache container - 12
375
376 This is a special data type that marks a container used to cache repeated
377 data. For example, instead of repeating the string "United States" over and
378 over in the database, we store it in the cache container and use pointers
379 *into* this container instead.
380
381 Nothing in the database will ever contain a pointer to this field
382 itself. Instead, various fields will point into the container.
383
384 The primary reason for making this a separate data type versus simply inlining
385 the cached data is so that a database dumper tool can skip this cache when
386 dumping the data section. The cache contents will end up being dumped as
387 pointers into it are followed.
388
389 ### end marker - 13
390
391 The end marker marks the end of the data section. It is not strictly
392 necessary, but including this marker allows a data section deserializer to
393 process a stream of input, rather than having to find the end of the section
394 before beginning the deserialization.
395
396 This data type is not followed by a payload, and its size is always zero.
397
398 ### boolean - 14
399
400 A true or false value. The length information for a boolean type will always
401 be 0 or 1, indicating the value. There is no payload for this field.
402
403 ### float - 15
404
405 This is stored as an IEEE-754 float (binary32) in big-endian format. The
406 length of a float is always 4 bytes.
407
408 This type is provided primarily for completeness. Because of the way floating
409 point numbers are stored, this type can easily lose precision when serialized
410 and then deserialized. If this is an issue for you, consider using a double
411 instead.
412
413 ### Data Field Format
414
415 Each field starts with a control byte. This control byte provides information
416 about the field's data type and payload size.
417
418 The first three bits of the control byte tell you what type the field is. If
419 these bits are all 0, then this is an "extended" type, which means that the
420 *next* byte contains the actual type. Otherwise, the first three bits will
421 contain a number from 1 to 7, the actual type for the field.
422
423 We've tried to assign the most commonly used types as numbers 1-7 as an
424 optimization.
425
426 With an extended type, the type number in the second byte is the number
427 minus 7. In other words, an array (type 11) will be stored with a 0 for the
428 type in the first byte and a 4 in the second.
429
430 Here is an example of how the control byte may combine with the next byte to
431 tell us the type:
432
433 001XXXXX pointer
434 010XXXXX UTF-8 string
435 110XXXXX unsigned 32-bit int (ASCII)
436 000XXXXX 00000011 unsigned 128-bit int (binary)
437 000XXXXX 00000100 array
438 000XXXXX 00000110 end marker
439
440 #### Payload Size
441
442 The next five bits in the control byte tell you how long the data field's
443 payload is, except for maps and pointers. Maps and pointers use this size
444 information a bit differently. See below.
445
446 If the five bits are smaller than 29, then those bits are the payload size in
447 bytes. For example:
448
449 01000010 UTF-8 string - 2 bytes long
450 01011100 UTF-8 string - 28 bytes long
451 11000001 unsigned 32-bit int - 1 byte long
452 00000011 00000011 unsigned 128-bit int - 3 bytes long
453
454 If the five bits are equal to 29, 30, or 31, then use the following algorithm
455 to calculate the payload size.
456
457 If the value is 29, then the size is 29 + *the next byte after the type
458 specifying bytes as an unsigned integer*.
459
460 If the value is 30, then the size is 285 + *the next two bytes after the type
461 specifying bytes as a single unsigned integer*.
462
463 If the value is 31, then the size is 65,821 + *the next three bytes after the
464 type specifying bytes as a single unsigned integer*.
465
466 Some examples:
467
468 01011101 00110011 UTF-8 string - 80 bytes long
469
470 In this case, the last five bits of the control byte equal 29. We treat the
471 next byte as an unsigned integer. The next byte is 51, so the total size is
472 (29 + 51) = 80.
473
474 01011110 00110011 00110011 UTF-8 string - 13,392 bytes long
475
476 The last five bits of the control byte equal 30. We treat the next two bytes
477 as a single unsigned integer. The next two bytes equal 13,107, so the total
478 size is (285 + 13,107) = 13,392.
479
480 01011111 00110011 00110011 00110011 UTF-8 string - 3,421,264 bytes long
481
482 The last five bits of the control byte equal 31. We treat the next three bytes
483 as a single unsigned integer. The next three bytes equal 3,355,443, so the
484 total size is (65,821 + 3,355,443) = 3,421,264.
485
486 This means that the maximum payload size for a single field is 16,843,036
487 bytes.
488
489 The binary number types always have a known size, but for consistency's sake,
490 the control byte will always specify the correct size for these types.
491
492 #### Maps
493
494 Maps use the size in the control byte (and any following bytes) to indicate
495 the number of key/value pairs in the map, not the size of the payload in
496 bytes.
497
498 This means that the maximum number of pairs for a single map is 16,843,036.
499
500 Maps are laid out with each key followed by its value, followed by the next
501 pair, etc.
502
503 The keys are **always** UTF-8 strings. The values may be any data type,
504 including maps or pointers.
505
506 Once we know the number of pairs, we can look at each pair in turn to
507 determine the size of the key and the key name, as well as the value's type
508 and payload.
509
510 #### Pointers
511
512 Pointers use the last five bits in the control byte to calculate the pointer
513 value.
514
515 To calculate the pointer value, we start by subdividing the five bits into two
516 groups. The first two bits indicate the size, and the next three bits are part
517 of the value, so we end up with a control byte breaking down like this:
518 001SSVVV.
519
520 The size can be 0, 1, 2, or 3.
521
522 If the size is 0, the pointer is built by appending the next byte to the last
523 three bits to produce an 11-bit value.
524
525 If the size is 1, the pointer is built by appending the next two bytes to the
526 last three bits to produce a 19-bit value + 2048.
527
528 If the size is 2, the pointer is built by appending the next three bytes to the
529 last three bits to produce a 27-bit value + 526336.
530
531 Finally, if the size is 3, the pointer's value is contained in the next four
532 bytes as a 32-bit value. In this case, the last three bits of the control byte
533 are ignored.
534
535 This means that we are limited to 4GB of address space for pointers, so the
536 data section size for the database is limited to 4GB.
537
538 ## Reference Implementations
539
540 ### Writer
541
542 * [Perl](https://github.com/maxmind/MaxMind-DB-Writer-perl)
543
544 ### Reader
545
546 * [C](https://github.com/maxmind/libmaxminddb)
547 * [C#](https://github.com/maxmind/MaxMind-DB-Reader-dotnet)
548 * [Java](https://github.com/maxmind/MaxMind-DB-Reader-java)
549 * [Perl](https://github.com/maxmind/MaxMind-DB-Reader-perl)
550 * [PHP](https://github.com/maxmind/MaxMind-DB-Reader-php)
551 * [Python](https://github.com/maxmind/MaxMind-DB-Reader-python)
552 * [Ruby](https://github.com/maxmind/MaxMind-DB-Reader-ruby)
553
554 ## Authors
555
556 This specification was created by the following authors:
557
558 * Greg Oschwald \<[email protected]\>
559 * Dave Rolsky \<[email protected]\>
560 * Boris Zentner \<[email protected]\>
561
562 ## License
563
564 This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
565 Unported License. To view a copy of this license, visit
566 [http://creativecommons.org/licenses/by-sa/3.0/](http://creativecommons.org/licenses/by-sa/3.0/)
567 or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain
568 View, California, 94041, USA
569
test/data/MaxMind-DB-test-metadata-pointers.mmdb less more
Binary diff not shown
+0
-4
test/data/README.md less more
0 MaxMind DB is a binary file format that stores data indexed by IP address
1 subnets (IPv4 or IPv6).
2
3 This repository contains the spec for that format.
+0
-7
test/data/bad-data/README.md less more
0 These are corrupt databases that have been know to cause problems such as
1 segfaults or unhandled errors on one or more MaxMind DB reader
2 implementations. Implementations _should_ return an appropriate error
3 or raise an exception on these databases.
4
5 If you find a corrupt test-sized database that crashes a MMDB reader library,
6 please feel free to add it here by creating a pull request.
test/data/bad-data/libmaxminddb/libmaxminddb-offset-integer-overflow.mmdb less more
Binary diff not shown
test/data/bad-data/maxminddb-golang/cyclic-data-structure.mmdb less more
Binary diff not shown
+0
-1
test/data/bad-data/maxminddb-golang/invalid-bytes-length.mmdb less more
0 «ÍïMaxMind.coméKdescriptionáBenŸ
test/data/bad-data/maxminddb-golang/invalid-data-record-offset.mmdb less more
Binary diff not shown
test/data/bad-data/maxminddb-golang/invalid-map-key-length.mmdb less more
Binary diff not shown
+0
-1
test/data/bad-data/maxminddb-golang/invalid-string-length.mmdb less more
0 Dmap2áEarrayáDmap3ãAaÁAbÁAcÁ«ÍïMaxMind.comé[binary_format_major_version¡[binary_format_minor_version Kbuild_epochXõ2|Mdatabase_type]MaxMind DB Nested Data StructuresKdescription
+0
-1
test/data/bad-data/maxminddb-golang/metadata-is-an-uint128.mmdb less more
0 «ÍïMaxMind.com
test/data/bad-data/maxminddb-golang/unexpected-bytes.mmdb less more
Binary diff not shown
+0
-12
test/data/perltidyrc less more
0 --blank-lines-before-packages=0
1 --iterations=2
2 --no-outdent-long-comments
3 -b
4 -bar
5 -boc
6 -ci=4
7 -i=4
8 -l=78
9 -nolq
10 -se
11 -wbb="% + - * / x != == >= <= =~ !~ < > | & >= < = **= += *= &= <<= &&= -= /= |= >>= ||= .= %= ^= x="
+0
-48
test/data/source-data/GeoIP2-Anonymous-IP-Test.json less more
0 [
1 {
2 "::1.2.0.0/112" : {
3 "is_anonymous" : true,
4 "is_anonymous_vpn" : true
5 }
6 },
7 {
8 "::1.124.213.1/128" : {
9 "is_anonymous" : true,
10 "is_anonymous_vpn" : true,
11 "is_tor_exit_node" : true
12 }
13 },
14 {
15 "::81.2.69.0/120" : {
16 "is_anonymous" : true,
17 "is_anonymous_vpn" : true,
18 "is_hosting_provider" : true,
19 "is_public_proxy" : true,
20 "is_tor_exit_node" : true
21 }
22 },
23 {
24 "::71.160.223.0/120" : {
25 "is_anonymous" : true,
26 "is_hosting_provider" : true
27 }
28 },
29 {
30 "::186.30.236.0/120" : {
31 "is_anonymous" : true,
32 "is_public_proxy" : true
33 }
34 },
35 {
36 "::65.0.0.0/109" : {
37 "is_anonymous" : true,
38 "is_tor_exit_node" : true
39 }
40 },
41 {
42 "abcd:1000::/112" : {
43 "is_anonymous" : true,
44 "is_public_proxy" : true
45 }
46 }
47 ]
+0
-12852
test/data/source-data/GeoIP2-City-Test.json less more
0 [
1 {
2 "2001:218::/32" : {
3 "continent" : {
4 "code" : "AS",
5 "geoname_id" : 6255147,
6 "names" : {
7 "de" : "Asien",
8 "en" : "Asia",
9 "es" : "Asia",
10 "fr" : "Asie",
11 "ja" : "アジア",
12 "pt-BR" : "Ásia",
13 "ru" : "Азия",
14 "zh-CN" : "亚洲"
15 }
16 },
17 "country" : {
18 "geoname_id" : 1861060,
19 "iso_code" : "JP",
20 "names" : {
21 "de" : "Japan",
22 "en" : "Japan",
23 "es" : "Japón",
24 "fr" : "Japon",
25 "ja" : "日本",
26 "pt-BR" : "Japão",
27 "ru" : "Япония",
28 "zh-CN" : "日本"
29 }
30 },
31 "location" : {
32 "accuracy_radius" : 100,
33 "latitude" : 35.68536,
34 "longitude" : 139.75309,
35 "time_zone" : "Asia/Tokyo"
36 },
37 "registered_country" : {
38 "geoname_id" : 1861060,
39 "iso_code" : "JP",
40 "names" : {
41 "de" : "Japan",
42 "en" : "Japan",
43 "es" : "Japón",
44 "fr" : "Japon",
45 "ja" : "日本",
46 "pt-BR" : "Japão",
47 "ru" : "Япония",
48 "zh-CN" : "日本"
49 }
50 }
51 }
52 },
53 {
54 "2001:220::/32" : {
55 "continent" : {
56 "code" : "AS",
57 "geoname_id" : 6255147,
58 "names" : {
59 "de" : "Asien",
60 "en" : "Asia",
61 "es" : "Asia",
62 "fr" : "Asie",
63 "ja" : "アジア",
64 "pt-BR" : "Ásia",
65 "ru" : "Азия",
66 "zh-CN" : "亚洲"
67 }
68 },
69 "country" : {
70 "geoname_id" : 1835841,
71 "iso_code" : "KR",
72 "names" : {
73 "de" : "Republik Korea",
74 "en" : "South Korea",
75 "es" : "Corea, República de",
76 "fr" : "Corée du Sud",
77 "ja" : "大韓民国",
78 "pt-BR" : "Coréia, República da",
79 "ru" : "Южная Корея",
80 "zh-CN" : "韩国"
81 }
82 },
83 "location" : {
84 "accuracy_radius" : 100,
85 "latitude" : 37,
86 "longitude" : 127.5,
87 "time_zone" : "Asia/Seoul"
88 },
89 "registered_country" : {
90 "geoname_id" : 1835841,
91 "iso_code" : "KR",
92 "names" : {
93 "de" : "Republik Korea",
94 "en" : "South Korea",
95 "es" : "Corea, República de",
96 "fr" : "Corée du Sud",
97 "ja" : "大韓民国",
98 "pt-BR" : "Coréia, República da",
99 "ru" : "Южная Корея",
100 "zh-CN" : "韩国"
101 }
102 }
103 }
104 },
105 {
106 "2001:230::/32" : {
107 "continent" : {
108 "code" : "AS",
109 "geoname_id" : 6255147,
110 "names" : {
111 "de" : "Asien",
112 "en" : "Asia",
113 "es" : "Asia",
114 "fr" : "Asie",
115 "ja" : "アジア",
116 "pt-BR" : "Ásia",
117 "ru" : "Азия",
118 "zh-CN" : "亚洲"
119 }
120 },
121 "country" : {
122 "geoname_id" : 1835841,
123 "iso_code" : "KR",
124 "names" : {
125 "de" : "Republik Korea",
126 "en" : "South Korea",
127 "es" : "Corea, República de",
128 "fr" : "Corée du Sud",
129 "ja" : "大韓民国",
130 "pt-BR" : "Coréia, República da",
131 "ru" : "Южная Корея",
132 "zh-CN" : "韩国"
133 }
134 },
135 "location" : {
136 "accuracy_radius" : 100,
137 "latitude" : 37,
138 "longitude" : 127.5,
139 "time_zone" : "Asia/Seoul"
140 },
141 "registered_country" : {
142 "geoname_id" : 1835841,
143 "iso_code" : "KR",
144 "names" : {
145 "de" : "Republik Korea",
146 "en" : "South Korea",
147 "es" : "Corea, República de",
148 "fr" : "Corée du Sud",
149 "ja" : "大韓民国",
150 "pt-BR" : "Coréia, República da",
151 "ru" : "Южная Корея",
152 "zh-CN" : "韩国"
153 }
154 }
155 }
156 },
157 {
158 "2001:238::/32" : {
159 "continent" : {
160 "code" : "AS",
161 "geoname_id" : 6255147,
162 "names" : {
163 "de" : "Asien",
164 "en" : "Asia",
165 "es" : "Asia",
166 "fr" : "Asie",
167 "ja" : "アジア",
168 "pt-BR" : "Ásia",
169 "ru" : "Азия",
170 "zh-CN" : "亚洲"
171 }
172 },
173 "country" : {
174 "geoname_id" : 1668284,
175 "iso_code" : "TW",
176 "names" : {
177 "de" : "Taiwan",
178 "en" : "Taiwan",
179 "es" : "Taiwán",
180 "fr" : "Taïwan",
181 "ja" : "台湾",
182 "pt-BR" : "Taiwan",
183 "ru" : "Тайвань",
184 "zh-CN" : "台湾"
185 }
186 },
187 "location" : {
188 "accuracy_radius" : 100,
189 "latitude" : 24,
190 "longitude" : 121,
191 "time_zone" : "Asia/Taipei"
192 },
193 "registered_country" : {
194 "geoname_id" : 1668284,
195 "iso_code" : "TW",
196 "names" : {
197 "de" : "Taiwan",
198 "en" : "Taiwan",
199 "es" : "Taiwán",
200 "fr" : "Taïwan",
201 "ja" : "台湾",
202 "pt-BR" : "Taiwan",
203 "ru" : "Тайвань",
204 "zh-CN" : "台湾"
205 }
206 }
207 }
208 },
209 {
210 "2001:240::/32" : {
211 "continent" : {
212 "code" : "AS",
213 "geoname_id" : 6255147,
214 "names" : {
215 "de" : "Asien",
216 "en" : "Asia",
217 "es" : "Asia",
218 "fr" : "Asie",
219 "ja" : "アジア",
220 "pt-BR" : "Ásia",
221 "ru" : "Азия",
222 "zh-CN" : "亚洲"
223 }
224 },
225 "country" : {
226 "geoname_id" : 1861060,
227 "iso_code" : "JP",
228 "names" : {
229 "de" : "Japan",
230 "en" : "Japan",
231 "es" : "Japón",
232 "fr" : "Japon",
233 "ja" : "日本",
234 "pt-BR" : "Japão",
235 "ru" : "Япония",
236 "zh-CN" : "日本"
237 }
238 },
239 "location" : {
240 "accuracy_radius" : 100,
241 "latitude" : 35.68536,
242 "longitude" : 139.75309,
243 "time_zone" : "Asia/Tokyo"
244 },
245 "registered_country" : {
246 "geoname_id" : 1861060,
247 "iso_code" : "JP",
248 "names" : {
249 "de" : "Japan",
250 "en" : "Japan",
251 "es" : "Japón",
252 "fr" : "Japon",
253 "ja" : "日本",
254 "pt-BR" : "Japão",
255 "ru" : "Япония",
256 "zh-CN" : "日本"
257 }
258 }
259 }
260 },
261 {
262 "2001:250::/31" : {
263 "continent" : {
264 "code" : "AS",
265 "geoname_id" : 6255147,
266 "names" : {
267 "de" : "Asien",
268 "en" : "Asia",
269 "es" : "Asia",
270 "fr" : "Asie",
271 "ja" : "アジア",
272 "pt-BR" : "Ásia",
273 "ru" : "Азия",
274 "zh-CN" : "亚洲"
275 }
276 },
277 "country" : {
278 "geoname_id" : 1814991,
279 "iso_code" : "CN",
280 "names" : {
281 "de" : "China",
282 "en" : "People's Republic of China",
283 "es" : "República Popular China",
284 "fr" : "Chine",
285 "ja" : "中国",
286 "pt-BR" : "China",
287 "ru" : "Китай",
288 "zh-CN" : "中国"
289 }
290 },
291 "location" : {
292 "accuracy_radius" : 100,
293 "latitude" : 35,
294 "longitude" : 105
295 },
296 "registered_country" : {
297 "geoname_id" : 1814991,
298 "iso_code" : "CN",
299 "names" : {
300 "de" : "China",
301 "en" : "People's Republic of China",
302 "es" : "República Popular China",
303 "fr" : "Chine",
304 "ja" : "中国",
305 "pt-BR" : "China",
306 "ru" : "Китай",
307 "zh-CN" : "中国"
308 }
309 }
310 }
311 },
312 {
313 "2001:252::/32" : {
314 "continent" : {
315 "code" : "AS",
316 "geoname_id" : 6255147,
317 "names" : {
318 "de" : "Asien",
319 "en" : "Asia",
320 "es" : "Asia",
321 "fr" : "Asie",
322 "ja" : "アジア",
323 "pt-BR" : "Ásia",
324 "ru" : "Азия",
325 "zh-CN" : "亚洲"
326 }
327 },
328 "country" : {
329 "geoname_id" : 1814991,
330 "iso_code" : "CN",
331 "names" : {
332 "de" : "China",
333 "en" : "People's Republic of China",
334 "es" : "República Popular China",
335 "fr" : "Chine",
336 "ja" : "中国",
337 "pt-BR" : "China",
338 "ru" : "Китай",
339 "zh-CN" : "中国"
340 }
341 },
342 "location" : {
343 "accuracy_radius" : 100,
344 "latitude" : 35,
345 "longitude" : 105
346 },
347 "registered_country" : {
348 "geoname_id" : 1814991,
349 "iso_code" : "CN",
350 "names" : {
351 "de" : "China",
352 "en" : "People's Republic of China",
353 "es" : "República Popular China",
354 "fr" : "Chine",
355 "ja" : "中国",
356 "pt-BR" : "China",
357 "ru" : "Китай",
358 "zh-CN" : "中国"
359 }
360 }
361 }
362 },
363 {
364 "2001:254::/32" : {
365 "continent" : {
366 "code" : "AS",
367 "geoname_id" : 6255147,
368 "names" : {
369 "de" : "Asien",
370 "en" : "Asia",
371 "es" : "Asia",
372 "fr" : "Asie",
373 "ja" : "アジア",
374 "pt-BR" : "Ásia",
375 "ru" : "Азия",
376 "zh-CN" : "亚洲"
377 }
378 },
379 "country" : {
380 "geoname_id" : 1814991,
381 "iso_code" : "CN",
382 "names" : {
383 "de" : "China",
384 "en" : "People's Republic of China",
385 "es" : "República Popular China",
386 "fr" : "Chine",
387 "ja" : "中国",
388 "pt-BR" : "China",
389 "ru" : "Китай",
390 "zh-CN" : "中国"
391 }
392 },
393 "location" : {
394 "accuracy_radius" : 100,
395 "latitude" : 35,
396 "longitude" : 105
397 },
398 "registered_country" : {
399 "geoname_id" : 1814991,
400 "iso_code" : "CN",
401 "names" : {
402 "de" : "China",
403 "en" : "People's Republic of China",
404 "es" : "República Popular China",
405 "fr" : "Chine",
406 "ja" : "中国",
407 "pt-BR" : "China",
408 "ru" : "Китай",
409 "zh-CN" : "中国"
410 }
411 }
412 }
413 },
414 {
415 "2001:256::/32" : {
416 "continent" : {
417 "code" : "AS",
418 "geoname_id" : 6255147,
419 "names" : {
420 "de" : "Asien",
421 "en" : "Asia",
422 "es" : "Asia",
423 "fr" : "Asie",
424 "ja" : "アジア",
425 "pt-BR" : "Ásia",
426 "ru" : "Азия",
427 "zh-CN" : "亚洲"
428 }
429 },
430 "country" : {
431 "geoname_id" : 1814991,
432 "iso_code" : "CN",
433 "names" : {
434 "de" : "China",
435 "en" : "People's Republic of China",
436 "es" : "República Popular China",
437 "fr" : "Chine",
438 "ja" : "中国",
439 "pt-BR" : "China",
440 "ru" : "Китай",
441 "zh-CN" : "中国"
442 }
443 },
444 "location" : {
445 "accuracy_radius" : 100,
446 "latitude" : 35,
447 "longitude" : 105
448 },
449 "registered_country" : {
450 "geoname_id" : 1814991,
451 "iso_code" : "CN",
452 "names" : {
453 "de" : "China",
454 "en" : "People's Republic of China",
455 "es" : "República Popular China",
456 "fr" : "Chine",
457 "ja" : "中国",
458 "pt-BR" : "China",
459 "ru" : "Китай",
460 "zh-CN" : "中国"
461 }
462 }
463 }
464 },
465 {
466 "2001:258::/32" : {
467 "continent" : {
468 "code" : "AS",
469 "geoname_id" : 6255147,
470 "names" : {
471 "de" : "Asien",
472 "en" : "Asia",
473 "es" : "Asia",
474 "fr" : "Asie",
475 "ja" : "アジア",
476 "pt-BR" : "Ásia",
477 "ru" : "Азия",
478 "zh-CN" : "亚洲"
479 }
480 },
481 "country" : {
482 "geoname_id" : 1861060,
483 "iso_code" : "JP",
484 "names" : {
485 "de" : "Japan",
486 "en" : "Japan",
487 "es" : "Japón",
488 "fr" : "Japon",
489 "ja" : "日本",
490 "pt-BR" : "Japão",
491 "ru" : "Япония",
492 "zh-CN" : "日本"
493 }
494 },
495 "location" : {
496 "accuracy_radius" : 100,
497 "latitude" : 35.68536,
498 "longitude" : 139.75309,
499 "time_zone" : "Asia/Tokyo"
500 },
501 "registered_country" : {
502 "geoname_id" : 1861060,
503 "iso_code" : "JP",
504 "names" : {
505 "de" : "Japan",
506 "en" : "Japan",
507 "es" : "Japón",
508 "fr" : "Japon",
509 "ja" : "日本",
510 "pt-BR" : "Japão",
511 "ru" : "Япония",
512 "zh-CN" : "日本"
513 }
514 }
515 }
516 },
517 {
518 "2001:260::/32" : {
519 "continent" : {
520 "code" : "AS",
521 "geoname_id" : 6255147,
522 "names" : {
523 "de" : "Asien",
524 "en" : "Asia",
525 "es" : "Asia",
526 "fr" : "Asie",
527 "ja" : "アジア",
528 "pt-BR" : "Ásia",
529 "ru" : "Азия",
530 "zh-CN" : "亚洲"
531 }
532 },
533 "country" : {
534 "geoname_id" : 1861060,
535 "iso_code" : "JP",
536 "names" : {
537 "de" : "Japan",
538 "en" : "Japan",
539 "es" : "Japón",
540 "fr" : "Japon",
541 "ja" : "日本",
542 "pt-BR" : "Japão",
543 "ru" : "Япония",
544 "zh-CN" : "日本"
545 }
546 },
547 "location" : {
548 "accuracy_radius" : 100,
549 "latitude" : 35.68536,
550 "longitude" : 139.75309,
551 "time_zone" : "Asia/Tokyo"
552 },
553 "registered_country" : {
554 "geoname_id" : 1861060,
555 "iso_code" : "JP",
556 "names" : {
557 "de" : "Japan",
558 "en" : "Japan",
559 "es" : "Japón",
560 "fr" : "Japon",
561 "ja" : "日本",
562 "pt-BR" : "Japão",
563 "ru" : "Япония",
564 "zh-CN" : "日本"
565 }
566 }
567 }
568 },
569 {
570 "2001:268::/32" : {
571 "continent" : {
572 "code" : "AS",
573 "geoname_id" : 6255147,
574 "names" : {
575 "de" : "Asien",
576 "en" : "Asia",
577 "es" : "Asia",
578 "fr" : "Asie",
579 "ja" : "アジア",
580 "pt-BR" : "Ásia",
581 "ru" : "Азия",
582 "zh-CN" : "亚洲"
583 }
584 },
585 "country" : {
586 "geoname_id" : 1861060,
587 "iso_code" : "JP",
588 "names" : {
589 "de" : "Japan",
590 "en" : "Japan",
591 "es" : "Japón",
592 "fr" : "Japon",
593 "ja" : "日本",
594 "pt-BR" : "Japão",
595 "ru" : "Япония",
596 "zh-CN" : "日本"
597 }
598 },
599 "location" : {
600 "accuracy_radius" : 100,
601 "latitude" : 35.68536,
602 "longitude" : 139.75309,
603 "time_zone" : "Asia/Tokyo"
604 },
605 "registered_country" : {
606 "geoname_id" : 1861060,
607 "iso_code" : "JP",
608 "names" : {
609 "de" : "Japan",
610 "en" : "Japan",
611 "es" : "Japón",
612 "fr" : "Japon",
613 "ja" : "日本",
614 "pt-BR" : "Japão",
615 "ru" : "Япония",
616 "zh-CN" : "日本"
617 }
618 }
619 }
620 },
621 {
622 "2001:270::/32" : {
623 "continent" : {
624 "code" : "AS",
625 "geoname_id" : 6255147,
626 "names" : {
627 "de" : "Asien",
628 "en" : "Asia",
629 "es" : "Asia",
630 "fr" : "Asie",
631 "ja" : "アジア",
632 "pt-BR" : "Ásia",
633 "ru" : "Азия",
634 "zh-CN" : "亚洲"
635 }
636 },
637 "country" : {
638 "geoname_id" : 1835841,
639 "iso_code" : "KR",
640 "names" : {
641 "de" : "Republik Korea",
642 "en" : "South Korea",
643 "es" : "Corea, República de",
644 "fr" : "Corée du Sud",
645 "ja" : "大韓民国",
646 "pt-BR" : "Coréia, República da",
647 "ru" : "Южная Корея",
648 "zh-CN" : "韩国"
649 }
650 },
651 "location" : {
652 "accuracy_radius" : 100,
653 "latitude" : 37,
654 "longitude" : 127.5,
655 "time_zone" : "Asia/Seoul"
656 },
657 "registered_country" : {
658 "geoname_id" : 1835841,
659 "iso_code" : "KR",
660 "names" : {
661 "de" : "Republik Korea",
662 "en" : "South Korea",
663 "es" : "Corea, República de",
664 "fr" : "Corée du Sud",
665 "ja" : "大韓民国",
666 "pt-BR" : "Coréia, República da",
667 "ru" : "Южная Корея",
668 "zh-CN" : "韩国"
669 }
670 }
671 }
672 },
673 {
674 "2001:278::/32" : {
675 "continent" : {
676 "code" : "AS",
677 "geoname_id" : 6255147,
678 "names" : {
679 "de" : "Asien",
680 "en" : "Asia",
681 "es" : "Asia",
682 "fr" : "Asie",
683 "ja" : "アジア",
684 "pt-BR" : "Ásia",
685 "ru" : "Азия",
686 "zh-CN" : "亚洲"
687 }
688 },
689 "country" : {
690 "geoname_id" : 1861060,
691 "iso_code" : "JP",
692 "names" : {
693 "de" : "Japan",
694 "en" : "Japan",
695 "es" : "Japón",
696 "fr" : "Japon",
697 "ja" : "日本",
698 "pt-BR" : "Japão",
699 "ru" : "Япония",
700 "zh-CN" : "日本"
701 }
702 },
703 "location" : {
704 "accuracy_radius" : 100,
705 "latitude" : 35.68536,
706 "longitude" : 139.75309,
707 "time_zone" : "Asia/Tokyo"
708 },
709 "registered_country" : {
710 "geoname_id" : 1861060,
711 "iso_code" : "JP",
712 "names" : {
713 "de" : "Japan",
714 "en" : "Japan",
715 "es" : "Japón",
716 "fr" : "Japon",
717 "ja" : "日本",
718 "pt-BR" : "Japão",
719 "ru" : "Япония",
720 "zh-CN" : "日本"
721 }
722 }
723 }
724 },
725 {
726 "2001:280::/32" : {
727 "continent" : {
728 "code" : "AS",
729 "geoname_id" : 6255147,
730 "names" : {
731 "de" : "Asien",
732 "en" : "Asia",
733 "es" : "Asia",
734 "fr" : "Asie",
735 "ja" : "アジア",
736 "pt-BR" : "Ásia",
737 "ru" : "Азия",
738 "zh-CN" : "亚洲"
739 }
740 },
741 "country" : {
742 "geoname_id" : 1835841,
743 "iso_code" : "KR",
744 "names" : {
745 "de" : "Republik Korea",
746 "en" : "South Korea",
747 "es" : "Corea, República de",
748 "fr" : "Corée du Sud",
749 "ja" : "大韓民国",
750 "pt-BR" : "Coréia, República da",
751 "ru" : "Южная Корея",
752 "zh-CN" : "韩国"
753 }
754 },
755 "location" : {
756 "accuracy_radius" : 100,
757 "latitude" : 37,
758 "longitude" : 127.5,
759 "time_zone" : "Asia/Seoul"
760 },
761 "registered_country" : {
762 "geoname_id" : 1835841,
763 "iso_code" : "KR",
764 "names" : {
765 "de" : "Republik Korea",
766 "en" : "South Korea",
767 "es" : "Corea, República de",
768 "fr" : "Corée du Sud",
769 "ja" : "大韓民国",
770 "pt-BR" : "Coréia, República da",
771 "ru" : "Южная Корея",
772 "zh-CN" : "韩国"
773 }
774 }
775 }
776 },
777 {
778 "2001:288::/32" : {
779 "continent" : {
780 "code" : "AS",
781 "geoname_id" : 6255147,
782 "names" : {
783 "de" : "Asien",
784 "en" : "Asia",
785 "es" : "Asia",
786 "fr" : "Asie",
787 "ja" : "アジア",
788 "pt-BR" : "Ásia",
789 "ru" : "Азия",
790 "zh-CN" : "亚洲"
791 }
792 },
793 "country" : {
794 "geoname_id" : 1668284,
795 "iso_code" : "TW",
796 "names" : {
797 "de" : "Taiwan",
798 "en" : "Taiwan",
799 "es" : "Taiwán",
800 "fr" : "Taïwan",
801 "ja" : "台湾",
802 "pt-BR" : "Taiwan",
803 "ru" : "Тайвань",
804 "zh-CN" : "台湾"
805 }
806 },
807 "location" : {
808 "accuracy_radius" : 100,
809 "latitude" : 24,
810 "longitude" : 121,
811 "time_zone" : "Asia/Taipei"
812 },
813 "registered_country" : {
814 "geoname_id" : 1668284,
815 "iso_code" : "TW",
816 "names" : {
817 "de" : "Taiwan",
818 "en" : "Taiwan",
819 "es" : "Taiwán",
820 "fr" : "Taïwan",
821 "ja" : "台湾",
822 "pt-BR" : "Taiwan",
823 "ru" : "Тайвань",
824 "zh-CN" : "台湾"
825 }
826 }
827 }
828 },
829 {
830 "2001:290::/32" : {
831 "continent" : {
832 "code" : "AS",
833 "geoname_id" : 6255147,
834 "names" : {
835 "de" : "Asien",
836 "en" : "Asia",
837 "es" : "Asia",
838 "fr" : "Asie",
839 "ja" : "アジア",
840 "pt-BR" : "Ásia",
841 "ru" : "Азия",
842 "zh-CN" : "亚洲"
843 }
844 },
845 "country" : {
846 "geoname_id" : 1835841,
847 "iso_code" : "KR",
848 "names" : {
849 "de" : "Republik Korea",
850 "en" : "South Korea",
851 "es" : "Corea, República de",
852 "fr" : "Corée du Sud",
853 "ja" : "大韓民国",
854 "pt-BR" : "Coréia, República da",
855 "ru" : "Южная Корея",
856 "zh-CN" : "韩国"
857 }
858 },
859 "location" : {
860 "accuracy_radius" : 100,
861 "latitude" : 37,
862 "longitude" : 127.5,
863 "time_zone" : "Asia/Seoul"
864 },
865 "registered_country" : {
866 "geoname_id" : 1835841,
867 "iso_code" : "KR",
868 "names" : {
869 "de" : "Republik Korea",
870 "en" : "South Korea",
871 "es" : "Corea, República de",
872 "fr" : "Corée du Sud",
873 "ja" : "大韓民国",
874 "pt-BR" : "Coréia, República da",
875 "ru" : "Южная Корея",
876 "zh-CN" : "韩国"
877 }
878 }
879 }
880 },
881 {
882 "2001:298::/32" : {
883 "continent" : {
884 "code" : "AS",
885 "geoname_id" : 6255147,
886 "names" : {
887 "de" : "Asien",
888 "en" : "Asia",
889 "es" : "Asia",
890 "fr" : "Asie",
891 "ja" : "アジア",
892 "pt-BR" : "Ásia",
893 "ru" : "Азия",
894 "zh-CN" : "亚洲"
895 }
896 },
897 "country" : {
898 "geoname_id" : 1861060,
899 "iso_code" : "JP",
900 "names" : {
901 "de" : "Japan",
902 "en" : "Japan",
903 "es" : "Japón",
904 "fr" : "Japon",
905 "ja" : "日本",
906 "pt-BR" : "Japão",
907 "ru" : "Япония",
908 "zh-CN" : "日本"
909 }
910 },
911 "location" : {
912 "accuracy_radius" : 100,
913 "latitude" : 35.68536,
914 "longitude" : 139.75309,
915 "time_zone" : "Asia/Tokyo"
916 },
917 "registered_country" : {
918 "geoname_id" : 1861060,
919 "iso_code" : "JP",
920 "names" : {
921 "de" : "Japan",
922 "en" : "Japan",
923 "es" : "Japón",
924 "fr" : "Japon",
925 "ja" : "日本",
926 "pt-BR" : "Japão",
927 "ru" : "Япония",
928 "zh-CN" : "日本"
929 }
930 }
931 }
932 },
933 {
934 "2001:2a0::/32" : {
935 "continent" : {
936 "code" : "AS",
937 "geoname_id" : 6255147,
938 "names" : {
939 "de" : "Asien",
940 "en" : "Asia",
941 "es" : "Asia",
942 "fr" : "Asie",
943 "ja" : "アジア",
944 "pt-BR" : "Ásia",
945 "ru" : "Азия",
946 "zh-CN" : "亚洲"
947 }
948 },
949 "country" : {
950 "geoname_id" : 1861060,
951 "iso_code" : "JP",
952 "names" : {
953 "de" : "Japan",
954 "en" : "Japan",
955 "es" : "Japón",
956 "fr" : "Japon",
957 "ja" : "日本",
958 "pt-BR" : "Japão",
959 "ru" : "Япония",
960 "zh-CN" : "日本"
961 }
962 },
963 "location" : {
964 "accuracy_radius" : 100,
965 "latitude" : 35.68536,
966 "longitude" : 139.75309,
967 "time_zone" : "Asia/Tokyo"
968 },
969 "registered_country" : {
970 "geoname_id" : 1861060,
971 "iso_code" : "JP",
972 "names" : {
973 "de" : "Japan",
974 "en" : "Japan",
975 "es" : "Japón",
976 "fr" : "Japon",
977 "ja" : "日本",
978 "pt-BR" : "Japão",
979 "ru" : "Япония",
980 "zh-CN" : "日本"
981 }
982 }
983 }
984 },
985 {
986 "2001:2a8::/32" : {
987 "continent" : {
988 "code" : "AS",
989 "geoname_id" : 6255147,
990 "names" : {
991 "de" : "Asien",
992 "en" : "Asia",
993 "es" : "Asia",
994 "fr" : "Asie",
995 "ja" : "アジア",
996 "pt-BR" : "Ásia",
997 "ru" : "Азия",
998 "zh-CN" : "亚洲"
999 }
1000 },
1001 "country" : {
1002 "geoname_id" : 1861060,
1003 "iso_code" : "JP",
1004 "names" : {
1005 "de" : "Japan",
1006 "en" : "Japan",
1007 "es" : "Japón",
1008 "fr" : "Japon",
1009 "ja" : "日本",
1010 "pt-BR" : "Japão",
1011 "ru" : "Япония",
1012 "zh-CN" : "日本"
1013 }
1014 },
1015 "location" : {
1016 "accuracy_radius" : 100,
1017 "latitude" : 35.68536,
1018 "longitude" : 139.75309,
1019 "time_zone" : "Asia/Tokyo"
1020 },
1021 "registered_country" : {
1022 "geoname_id" : 1861060,
1023 "iso_code" : "JP",
1024 "names" : {
1025 "de" : "Japan",
1026 "en" : "Japan",
1027 "es" : "Japón",
1028 "fr" : "Japon",
1029 "ja" : "日本",
1030 "pt-BR" : "Japão",
1031 "ru" : "Япония",
1032 "zh-CN" : "日本"
1033 }
1034 }
1035 }
1036 },
1037 {
1038 "2001:2b0::/32" : {
1039 "continent" : {
1040 "code" : "AS",
1041 "geoname_id" : 6255147,
1042 "names" : {
1043 "de" : "Asien",
1044 "en" : "Asia",
1045 "es" : "Asia",
1046 "fr" : "Asie",
1047 "ja" : "アジア",
1048 "pt-BR" : "Ásia",
1049 "ru" : "Азия",
1050 "zh-CN" : "亚洲"
1051 }
1052 },
1053 "country" : {
1054 "geoname_id" : 1835841,
1055 "iso_code" : "KR",
1056 "names" : {
1057 "de" : "Republik Korea",
1058 "en" : "South Korea",
1059 "es" : "Corea, República de",
1060 "fr" : "Corée du Sud",
1061 "ja" : "大韓民国",
1062 "pt-BR" : "Coréia, República da",
1063 "ru" : "Южная Корея",
1064 "zh-CN" : "韩国"
1065 }
1066 },
1067 "location" : {
1068 "accuracy_radius" : 100,
1069 "latitude" : 37,
1070 "longitude" : 127.5,
1071 "time_zone" : "Asia/Seoul"
1072 },
1073 "registered_country" : {
1074 "geoname_id" : 1835841,
1075 "iso_code" : "KR",
1076 "names" : {
1077 "de" : "Republik Korea",
1078 "en" : "South Korea",
1079 "es" : "Corea, República de",
1080 "fr" : "Corée du Sud",
1081 "ja" : "大韓民国",
1082 "pt-BR" : "Coréia, República da",
1083 "ru" : "Южная Корея",
1084 "zh-CN" : "韩国"
1085 }
1086 }
1087 }
1088 },
1089 {
1090 "2001:2b8::/32" : {
1091 "continent" : {
1092 "code" : "AS",
1093 "geoname_id" : 6255147,
1094 "names" : {
1095 "de" : "Asien",
1096 "en" : "Asia",
1097 "es" : "Asia",
1098 "fr" : "Asie",
1099 "ja" : "アジア",
1100 "pt-BR" : "Ásia",
1101 "ru" : "Азия",
1102 "zh-CN" : "亚洲"
1103 }
1104 },
1105 "country" : {
1106 "geoname_id" : 1835841,
1107 "iso_code" : "KR",
1108 "names" : {
1109 "de" : "Republik Korea",
1110 "en" : "South Korea",
1111 "es" : "Corea, República de",
1112 "fr" : "Corée du Sud",
1113 "ja" : "大韓民国",
1114 "pt-BR" : "Coréia, República da",
1115 "ru" : "Южная Корея",
1116 "zh-CN" : "韩国"
1117 }
1118 },
1119 "location" : {
1120 "accuracy_radius" : 100,
1121 "latitude" : 37,
1122 "longitude" : 127.5,
1123 "time_zone" : "Asia/Seoul"
1124 },
1125 "registered_country" : {
1126 "geoname_id" : 1835841,
1127 "iso_code" : "KR",
1128 "names" : {
1129 "de" : "Republik Korea",
1130 "en" : "South Korea",
1131 "es" : "Corea, República de",
1132 "fr" : "Corée du Sud",
1133 "ja" : "大韓民国",
1134 "pt-BR" : "Coréia, República da",
1135 "ru" : "Южная Корея",
1136 "zh-CN" : "韩国"
1137 }
1138 }
1139 }
1140 },
1141 {
1142 "2001:2c0::/32" : {
1143 "continent" : {
1144 "code" : "AS",
1145 "geoname_id" : 6255147,
1146 "names" : {
1147 "de" : "Asien",
1148 "en" : "Asia",
1149 "es" : "Asia",
1150 "fr" : "Asie",
1151 "ja" : "アジア",
1152 "pt-BR" : "Ásia",
1153 "ru" : "Азия",
1154 "zh-CN" : "亚洲"
1155 }
1156 },
1157 "country" : {
1158 "geoname_id" : 1861060,
1159 "iso_code" : "JP",
1160 "names" : {
1161 "de" : "Japan",
1162 "en" : "Japan",
1163 "es" : "Japón",
1164 "fr" : "Japon",
1165 "ja" : "日本",
1166 "pt-BR" : "Japão",
1167 "ru" : "Япония",
1168 "zh-CN" : "日本"
1169 }
1170 },
1171 "location" : {
1172 "accuracy_radius" : 100,
1173 "latitude" : 35.68536,
1174 "longitude" : 139.75309,
1175 "time_zone" : "Asia/Tokyo"
1176 },
1177 "registered_country" : {
1178 "geoname_id" : 1861060,
1179 "iso_code" : "JP",
1180 "names" : {
1181 "de" : "Japan",
1182 "en" : "Japan",
1183 "es" : "Japón",
1184 "fr" : "Japon",
1185 "ja" : "日本",
1186 "pt-BR" : "Japão",
1187 "ru" : "Япония",
1188 "zh-CN" : "日本"
1189 }
1190 }
1191 }
1192 },
1193 {
1194 "2001:2c8::/32" : {
1195 "continent" : {
1196 "code" : "AS",
1197 "geoname_id" : 6255147,
1198 "names" : {
1199 "de" : "Asien",
1200 "en" : "Asia",
1201 "es" : "Asia",
1202 "fr" : "Asie",
1203 "ja" : "アジア",
1204 "pt-BR" : "Ásia",
1205 "ru" : "Азия",
1206 "zh-CN" : "亚洲"
1207 }
1208 },
1209 "country" : {
1210 "geoname_id" : 1861060,
1211 "iso_code" : "JP",
1212 "names" : {
1213 "de" : "Japan",
1214 "en" : "Japan",
1215 "es" : "Japón",
1216 "fr" : "Japon",
1217 "ja" : "日本",
1218 "pt-BR" : "Japão",
1219 "ru" : "Япония",
1220 "zh-CN" : "日本"
1221 }
1222 },
1223 "location" : {
1224 "accuracy_radius" : 100,
1225 "latitude" : 35.68536,
1226 "longitude" : 139.75309,
1227 "time_zone" : "Asia/Tokyo"
1228 },
1229 "registered_country" : {
1230 "geoname_id" : 1861060,
1231 "iso_code" : "JP",
1232 "names" : {
1233 "de" : "Japan",
1234 "en" : "Japan",
1235 "es" : "Japón",
1236 "fr" : "Japon",
1237 "ja" : "日本",
1238 "pt-BR" : "Japão",
1239 "ru" : "Япония",
1240 "zh-CN" : "日本"
1241 }
1242 }
1243 }
1244 },
1245 {
1246 "2001:2d8::/32" : {
1247 "continent" : {
1248 "code" : "AS",
1249 "geoname_id" : 6255147,
1250 "names" : {
1251 "de" : "Asien",
1252 "en" : "Asia",
1253 "es" : "Asia",
1254 "fr" : "Asie",
1255 "ja" : "アジア",
1256 "pt-BR" : "Ásia",
1257 "ru" : "Азия",
1258 "zh-CN" : "亚洲"
1259 }
1260 },
1261 "country" : {
1262 "geoname_id" : 1835841,
1263 "iso_code" : "KR",
1264 "names" : {
1265 "de" : "Republik Korea",
1266 "en" : "South Korea",
1267 "es" : "Corea, República de",
1268 "fr" : "Corée du Sud",
1269 "ja" : "大韓民国",
1270 "pt-BR" : "Coréia, República da",
1271 "ru" : "Южная Корея",
1272 "zh-CN" : "韩国"
1273 }
1274 },
1275 "location" : {
1276 "accuracy_radius" : 100,
1277 "latitude" : 37,
1278 "longitude" : 127.5,
1279 "time_zone" : "Asia/Seoul"
1280 },
1281 "registered_country" : {
1282 "geoname_id" : 1835841,
1283 "iso_code" : "KR",
1284 "names" : {
1285 "de" : "Republik Korea",
1286 "en" : "South Korea",
1287 "es" : "Corea, República de",
1288 "fr" : "Corée du Sud",
1289 "ja" : "大韓民国",
1290 "pt-BR" : "Coréia, República da",
1291 "ru" : "Южная Корея",
1292 "zh-CN" : "韩国"
1293 }
1294 }
1295 }
1296 },
1297 {
1298 "2001:2e0::/32" : {
1299 "continent" : {
1300 "code" : "AS",
1301 "geoname_id" : 6255147,
1302 "names" : {
1303 "de" : "Asien",
1304 "en" : "Asia",
1305 "es" : "Asia",
1306 "fr" : "Asie",
1307 "ja" : "アジア",
1308 "pt-BR" : "Ásia",
1309 "ru" : "Азия",
1310 "zh-CN" : "亚洲"
1311 }
1312 },
1313 "country" : {
1314 "geoname_id" : 1819730,
1315 "iso_code" : "HK",
1316 "names" : {
1317 "de" : "Hongkong",
1318 "en" : "Hong Kong",
1319 "es" : "Hong Kong",
1320 "fr" : "Hong Kong",
1321 "ja" : "香港",
1322 "pt-BR" : "Hong Kong",
1323 "ru" : "Гонконг",
1324 "zh-CN" : "香港"
1325 }
1326 },
1327 "location" : {
1328 "accuracy_radius" : 100,
1329 "latitude" : 22.25,
1330 "longitude" : 114.16667,
1331 "time_zone" : "Asia/Hong_Kong"
1332 },
1333 "registered_country" : {
1334 "geoname_id" : 1819730,
1335 "iso_code" : "HK",
1336 "names" : {
1337 "de" : "Hongkong",
1338 "en" : "Hong Kong",
1339 "es" : "Hong Kong",
1340 "fr" : "Hong Kong",
1341 "ja" : "香港",
1342 "pt-BR" : "Hong Kong",
1343 "ru" : "Гонконг",
1344 "zh-CN" : "香港"
1345 }
1346 }
1347 }
1348 },
1349 {
1350 "2001:2e8::/32" : {
1351 "continent" : {
1352 "code" : "AS",
1353 "geoname_id" : 6255147,
1354 "names" : {
1355 "de" : "Asien",
1356 "en" : "Asia",
1357 "es" : "Asia",
1358 "fr" : "Asie",
1359 "ja" : "アジア",
1360 "pt-BR" : "Ásia",
1361 "ru" : "Азия",
1362 "zh-CN" : "亚洲"
1363 }
1364 },
1365 "country" : {
1366 "geoname_id" : 1861060,
1367 "iso_code" : "JP",
1368 "names" : {
1369 "de" : "Japan",
1370 "en" : "Japan",
1371 "es" : "Japón",
1372 "fr" : "Japon",
1373 "ja" : "日本",
1374 "pt-BR" : "Japão",
1375 "ru" : "Япония",
1376 "zh-CN" : "日本"
1377 }
1378 },
1379 "location" : {
1380 "accuracy_radius" : 100,
1381 "latitude" : 35.68536,
1382 "longitude" : 139.75309,
1383 "time_zone" : "Asia/Tokyo"
1384 },
1385 "registered_country" : {
1386 "geoname_id" : 1861060,
1387 "iso_code" : "JP",
1388 "names" : {
1389 "de" : "Japan",
1390 "en" : "Japan",
1391 "es" : "Japón",
1392 "fr" : "Japon",
1393 "ja" : "日本",
1394 "pt-BR" : "Japão",
1395 "ru" : "Япония",
1396 "zh-CN" : "日本"
1397 }
1398 }
1399 }
1400 },
1401 {
1402 "2001:2f0::/32" : {
1403 "continent" : {
1404 "code" : "AS",
1405 "geoname_id" : 6255147,
1406 "names" : {
1407 "de" : "Asien",
1408 "en" : "Asia",
1409 "es" : "Asia",
1410 "fr" : "Asie",
1411 "ja" : "アジア",
1412 "pt-BR" : "Ásia",
1413 "ru" : "Азия",
1414 "zh-CN" : "亚洲"
1415 }
1416 },
1417 "country" : {
1418 "geoname_id" : 1861060,
1419 "iso_code" : "JP",
1420 "names" : {
1421 "de" : "Japan",
1422 "en" : "Japan",
1423 "es" : "Japón",
1424 "fr" : "Japon",
1425 "ja" : "日本",
1426 "pt-BR" : "Japão",
1427 "ru" : "Япония",
1428 "zh-CN" : "日本"
1429 }
1430 },
1431 "location" : {
1432 "accuracy_radius" : 100,
1433 "latitude" : 35.68536,
1434 "longitude" : 139.75309,
1435 "time_zone" : "Asia/Tokyo"
1436 },
1437 "registered_country" : {
1438 "geoname_id" : 1861060,
1439 "iso_code" : "JP",
1440 "names" : {
1441 "de" : "Japan",
1442 "en" : "Japan",
1443 "es" : "Japón",
1444 "fr" : "Japon",
1445 "ja" : "日本",
1446 "pt-BR" : "Japão",
1447 "ru" : "Япония",
1448 "zh-CN" : "日本"
1449 }
1450 }
1451 }
1452 },
1453 {
1454 "2001:2f8::/32" : {
1455 "continent" : {
1456 "code" : "AS",
1457 "geoname_id" : 6255147,
1458 "names" : {
1459 "de" : "Asien",
1460 "en" : "Asia",
1461 "es" : "Asia",
1462 "fr" : "Asie",
1463 "ja" : "アジア",
1464 "pt-BR" : "Ásia",
1465 "ru" : "Азия",
1466 "zh-CN" : "亚洲"
1467 }
1468 },
1469 "country" : {
1470 "geoname_id" : 1861060,
1471 "iso_code" : "JP",
1472 "names" : {
1473 "de" : "Japan",
1474 "en" : "Japan",
1475 "es" : "Japón",
1476 "fr" : "Japon",
1477 "ja" : "日本",
1478 "pt-BR" : "Japão",
1479 "ru" : "Япония",
1480 "zh-CN" : "日本"
1481 }
1482 },
1483 "location" : {
1484 "accuracy_radius" : 100,
1485 "latitude" : 35.68536,
1486 "longitude" : 139.75309,
1487 "time_zone" : "Asia/Tokyo"
1488 },
1489 "registered_country" : {
1490 "geoname_id" : 1861060,
1491 "iso_code" : "JP",
1492 "names" : {
1493 "de" : "Japan",
1494 "en" : "Japan",
1495 "es" : "Japón",
1496 "fr" : "Japon",
1497 "ja" : "日本",
1498 "pt-BR" : "Japão",
1499 "ru" : "Япония",
1500 "zh-CN" : "日本"
1501 }
1502 }
1503 }
1504 },
1505 {
1506 "2a02:cf40::/29" : {
1507 "continent" : {
1508 "code" : "EU",
1509 "geoname_id" : 6255148,
1510 "names" : {
1511 "de" : "Europa",
1512 "en" : "Europe",
1513 "es" : "Europa",
1514 "fr" : "Europe",
1515 "ja" : "ヨーロッパ",
1516 "pt-BR" : "Europa",
1517 "ru" : "Европа",
1518 "zh-CN" : "欧洲"
1519 }
1520 },
1521 "country" : {
1522 "geoname_id" : 3144096,
1523 "iso_code" : "NO",
1524 "names" : {
1525 "de" : "Norwegen",
1526 "en" : "Norway",
1527 "es" : "Noruega",
1528 "fr" : "Norvège",
1529 "ja" : "ノルウェー王国",
1530 "pt-BR" : "Noruega",
1531 "ru" : "Норвегия",
1532 "zh-CN" : "挪威"
1533 }
1534 },
1535 "location" : {
1536 "accuracy_radius" : 100,
1537 "latitude" : 62,
1538 "longitude" : 10,
1539 "time_zone" : "Europe/Oslo"
1540 },
1541 "registered_country" : {
1542 "geoname_id" : 3144096,
1543 "iso_code" : "NO",
1544 "names" : {
1545 "de" : "Norwegen",
1546 "en" : "Norway",
1547 "es" : "Noruega",
1548 "fr" : "Norvège",
1549 "ja" : "ノルウェー王国",
1550 "pt-BR" : "Noruega",
1551 "ru" : "Норвегия",
1552 "zh-CN" : "挪威"
1553 }
1554 }
1555 }
1556 },
1557 {
1558 "2a02:cf80::/29" : {
1559 "continent" : {
1560 "code" : "AS",
1561 "geoname_id" : 6255147,
1562 "names" : {
1563 "de" : "Asien",
1564 "en" : "Asia",
1565 "es" : "Asia",
1566 "fr" : "Asie",
1567 "ja" : "アジア",
1568 "pt-BR" : "Ásia",
1569 "ru" : "Азия",
1570 "zh-CN" : "亚洲"
1571 }
1572 },
1573 "country" : {
1574 "geoname_id" : 294640,
1575 "iso_code" : "IL",
1576 "names" : {
1577 "de" : "Israel",
1578 "en" : "Israel",
1579 "es" : "Israel",
1580 "fr" : "Israël",
1581 "ja" : "イスラエル国",
1582 "pt-BR" : "Israel",
1583 "ru" : "Израиль",
1584 "zh-CN" : "以色列"
1585 }
1586 },
1587 "location" : {
1588 "accuracy_radius" : 100,
1589 "latitude" : 31.5,
1590 "longitude" : 34.75,
1591 "time_zone" : "Asia/Jerusalem"
1592 },
1593 "registered_country" : {
1594 "geoname_id" : 294640,
1595 "iso_code" : "IL",
1596 "names" : {
1597 "de" : "Israel",
1598 "en" : "Israel",
1599 "es" : "Israel",
1600 "fr" : "Israël",
1601 "ja" : "イスラエル国",
1602 "pt-BR" : "Israel",
1603 "ru" : "Израиль",
1604 "zh-CN" : "以色列"
1605 }
1606 }
1607 }
1608 },
1609 {
1610 "2a02:cfc0::/29" : {
1611 "continent" : {
1612 "code" : "EU",
1613 "geoname_id" : 6255148,
1614 "names" : {
1615 "de" : "Europa",
1616 "en" : "Europe",
1617 "es" : "Europa",
1618 "fr" : "Europe",
1619 "ja" : "ヨーロッパ",
1620 "pt-BR" : "Europa",
1621 "ru" : "Европа",
1622 "zh-CN" : "欧洲"
1623 }
1624 },
1625 "country" : {
1626 "geoname_id" : 3017382,
1627 "is_in_european_union" : true,
1628 "iso_code" : "FR",
1629 "names" : {
1630 "de" : "Frankreich",
1631 "en" : "France",
1632 "es" : "Francia",
1633 "fr" : "France",
1634 "ja" : "フランス共和国",
1635 "pt-BR" : "França",
1636 "ru" : "Франция",
1637 "zh-CN" : "法国"
1638 }
1639 },
1640 "location" : {
1641 "accuracy_radius" : 100,
1642 "latitude" : 46,
1643 "longitude" : 2,
1644 "time_zone" : "Europe/Paris"
1645 },
1646 "registered_country" : {
1647 "geoname_id" : 3017382,
1648 "is_in_european_union" : true,
1649 "iso_code" : "FR",
1650 "names" : {
1651 "de" : "Frankreich",
1652 "en" : "France",
1653 "es" : "Francia",
1654 "fr" : "France",
1655 "ja" : "フランス共和国",
1656 "pt-BR" : "França",
1657 "ru" : "Франция",
1658 "zh-CN" : "法国"
1659 }
1660 }
1661 }
1662 },
1663 {
1664 "2a02:d000::/29" : {
1665 "continent" : {
1666 "code" : "EU",
1667 "geoname_id" : 6255148,
1668 "names" : {
1669 "de" : "Europa",
1670 "en" : "Europe",
1671 "es" : "Europa",
1672 "fr" : "Europe",
1673 "ja" : "ヨーロッパ",
1674 "pt-BR" : "Europa",
1675 "ru" : "Европа",
1676 "zh-CN" : "欧洲"
1677 }
1678 },
1679 "country" : {
1680 "geoname_id" : 2658434,
1681 "iso_code" : "CH",
1682 "names" : {
1683 "de" : "Schweiz",
1684 "en" : "Switzerland",
1685 "es" : "Suiza",
1686 "fr" : "Suisse",
1687 "ja" : "スイス連邦",
1688 "pt-BR" : "Suíça",
1689 "ru" : "Швейцария",
1690 "zh-CN" : "瑞士"
1691 }
1692 },
1693 "location" : {
1694 "accuracy_radius" : 100,
1695 "latitude" : 47.00016,
1696 "longitude" : 8.01427,
1697 "time_zone" : "Europe/Zurich"
1698 },
1699 "registered_country" : {
1700 "geoname_id" : 2658434,
1701 "iso_code" : "CH",
1702 "names" : {
1703 "de" : "Schweiz",
1704 "en" : "Switzerland",
1705 "es" : "Suiza",
1706 "fr" : "Suisse",
1707 "ja" : "スイス連邦",
1708 "pt-BR" : "Suíça",
1709 "ru" : "Швейцария",
1710 "zh-CN" : "瑞士"
1711 }
1712 }
1713 }
1714 },
1715 {
1716 "2a02:d040::/29" : {
1717 "continent" : {
1718 "code" : "EU",
1719 "geoname_id" : 6255148,
1720 "names" : {
1721 "de" : "Europa",
1722 "en" : "Europe",
1723 "es" : "Europa",
1724 "fr" : "Europe",
1725 "ja" : "ヨーロッパ",
1726 "pt-BR" : "Europa",
1727 "ru" : "Европа",
1728 "zh-CN" : "欧洲"
1729 }
1730 },
1731 "country" : {
1732 "geoname_id" : 2661886,
1733 "is_in_european_union" : true,
1734 "iso_code" : "SE",
1735 "names" : {
1736 "de" : "Schweden",
1737 "en" : "Sweden",
1738 "es" : "Suecia",
1739 "fr" : "Suède",
1740 "ja" : "スウェーデン王国",
1741 "pt-BR" : "Suécia",
1742 "ru" : "Швеция",
1743 "zh-CN" : "瑞典"
1744 }
1745 },
1746 "location" : {
1747 "accuracy_radius" : 100,
1748 "latitude" : 62,
1749 "longitude" : 15,
1750 "time_zone" : "Europe/Stockholm"
1751 },
1752 "registered_country" : {
1753 "geoname_id" : 2661886,
1754 "is_in_european_union" : true,
1755 "iso_code" : "SE",
1756 "names" : {
1757 "de" : "Schweden",
1758 "en" : "Sweden",
1759 "es" : "Suecia",
1760 "fr" : "Suède",
1761 "ja" : "スウェーデン王国",
1762 "pt-BR" : "Suécia",
1763 "ru" : "Швеция",
1764 "zh-CN" : "瑞典"
1765 }
1766 }
1767 }
1768 },
1769 {
1770 "2a02:d080::/29" : {
1771 "continent" : {
1772 "code" : "AS",
1773 "geoname_id" : 6255147,
1774 "names" : {
1775 "de" : "Asien",
1776 "en" : "Asia",
1777 "es" : "Asia",
1778 "fr" : "Asie",
1779 "ja" : "アジア",
1780 "pt-BR" : "Ásia",
1781 "ru" : "Азия",
1782 "zh-CN" : "亚洲"
1783 }
1784 },
1785 "country" : {
1786 "geoname_id" : 290291,
1787 "iso_code" : "BH",
1788 "names" : {
1789 "de" : "Bahrain",
1790 "en" : "Bahrain",
1791 "es" : "Bahréin",
1792 "fr" : "Bahreïn",
1793 "ja" : "バーレーン",
1794 "pt-BR" : "Bahrain",
1795 "ru" : "Бахрейн",
1796 "zh-CN" : "巴林"
1797 }
1798 },
1799 "location" : {
1800 "accuracy_radius" : 100,
1801 "latitude" : 26,
1802 "longitude" : 50.5,
1803 "time_zone" : "Asia/Bahrain"
1804 },
1805 "registered_country" : {
1806 "geoname_id" : 290291,
1807 "iso_code" : "BH",
1808 "names" : {
1809 "de" : "Bahrain",
1810 "en" : "Bahrain",
1811 "es" : "Bahréin",
1812 "fr" : "Bahreïn",
1813 "ja" : "バーレーン",
1814 "pt-BR" : "Bahrain",
1815 "ru" : "Бахрейн",
1816 "zh-CN" : "巴林"
1817 }
1818 }
1819 }
1820 },
1821 {
1822 "2a02:d0c0::/29" : {
1823 "continent" : {
1824 "code" : "EU",
1825 "geoname_id" : 6255148,
1826 "names" : {
1827 "de" : "Europa",
1828 "en" : "Europe",
1829 "es" : "Europa",
1830 "fr" : "Europe",
1831 "ja" : "ヨーロッパ",
1832 "pt-BR" : "Europa",
1833 "ru" : "Европа",
1834 "zh-CN" : "欧洲"
1835 }
1836 },
1837 "country" : {
1838 "geoname_id" : 2017370,
1839 "iso_code" : "RU",
1840 "names" : {
1841 "de" : "Russland",
1842 "en" : "Russia",
1843 "es" : "Rusia",
1844 "fr" : "Russie",
1845 "ja" : "ロシア",
1846 "pt-BR" : "Rússia",
1847 "ru" : "Россия",
1848 "zh-CN" : "俄罗斯"
1849 }
1850 },
1851 "location" : {
1852 "accuracy_radius" : 100,
1853 "latitude" : 60,
1854 "longitude" : 100
1855 },
1856 "registered_country" : {
1857 "geoname_id" : 2017370,
1858 "iso_code" : "RU",
1859 "names" : {
1860 "de" : "Russland",
1861 "en" : "Russia",
1862 "es" : "Rusia",
1863 "fr" : "Russie",
1864 "ja" : "ロシア",
1865 "pt-BR" : "Rússia",
1866 "ru" : "Россия",
1867 "zh-CN" : "俄罗斯"
1868 }
1869 }
1870 }
1871 },
1872 {
1873 "2a02:d100::/29" : {
1874 "continent" : {
1875 "code" : "EU",
1876 "geoname_id" : 6255148,
1877 "names" : {
1878 "de" : "Europa",
1879 "en" : "Europe",
1880 "es" : "Europa",
1881 "fr" : "Europe",
1882 "ja" : "ヨーロッパ",
1883 "pt-BR" : "Europa",
1884 "ru" : "Европа",
1885 "zh-CN" : "欧洲"
1886 }
1887 },
1888 "country" : {
1889 "geoname_id" : 798544,
1890 "is_in_european_union" : true,
1891 "iso_code" : "PL",
1892 "names" : {
1893 "de" : "Polen",
1894 "en" : "Poland",
1895 "es" : "Polonia",
1896 "fr" : "Pologne",
1897 "ja" : "ポーランド共和国",
1898 "pt-BR" : "Polônia",
1899 "ru" : "Польша",
1900 "zh-CN" : "波兰"
1901 }
1902 },
1903 "location" : {
1904 "accuracy_radius" : 100,
1905 "latitude" : 52,
1906 "longitude" : 20,
1907 "time_zone" : "Europe/Warsaw"
1908 },
1909 "registered_country" : {
1910 "geoname_id" : 798544,
1911 "is_in_european_union" : true,
1912 "iso_code" : "PL",
1913 "names" : {
1914 "de" : "Polen",
1915 "en" : "Poland",
1916 "es" : "Polonia",
1917 "fr" : "Pologne",
1918 "ja" : "ポーランド共和国",
1919 "pt-BR" : "Polônia",
1920 "ru" : "Польша",
1921 "zh-CN" : "波兰"
1922 }
1923 }
1924 }
1925 },
1926 {
1927 "2a02:d140::/29" : {
1928 "continent" : {
1929 "code" : "EU",
1930 "geoname_id" : 6255148,
1931 "names" : {
1932 "de" : "Europa",
1933 "en" : "Europe",
1934 "es" : "Europa",
1935 "fr" : "Europe",
1936 "ja" : "ヨーロッパ",
1937 "pt-BR" : "Europa",
1938 "ru" : "Европа",
1939 "zh-CN" : "欧洲"
1940 }
1941 },
1942 "country" : {
1943 "geoname_id" : 3144096,
1944 "iso_code" : "NO",
1945 "names" : {
1946 "de" : "Norwegen",
1947 "en" : "Norway",
1948 "es" : "Noruega",
1949 "fr" : "Norvège",
1950 "ja" : "ノルウェー王国",
1951 "pt-BR" : "Noruega",
1952 "ru" : "Норвегия",
1953 "zh-CN" : "挪威"
1954 }
1955 },
1956 "location" : {
1957 "accuracy_radius" : 100,
1958 "latitude" : 62,
1959 "longitude" : 10,
1960 "time_zone" : "Europe/Oslo"
1961 },
1962 "registered_country" : {
1963 "geoname_id" : 3144096,
1964 "iso_code" : "NO",
1965 "names" : {
1966 "de" : "Norwegen",
1967 "en" : "Norway",
1968 "es" : "Noruega",
1969 "fr" : "Norvège",
1970 "ja" : "ノルウェー王国",
1971 "pt-BR" : "Noruega",
1972 "ru" : "Норвегия",
1973 "zh-CN" : "挪威"
1974 }
1975 }
1976 }
1977 },
1978 {
1979 "2a02:d180::/29" : {
1980 "continent" : {
1981 "code" : "EU",
1982 "geoname_id" : 6255148,
1983 "names" : {
1984 "de" : "Europa",
1985 "en" : "Europe",
1986 "es" : "Europa",
1987 "fr" : "Europe",
1988 "ja" : "ヨーロッパ",
1989 "pt-BR" : "Europa",
1990 "ru" : "Европа",
1991 "zh-CN" : "欧洲"
1992 }
1993 },
1994 "country" : {
1995 "geoname_id" : 2921044,
1996 "is_in_european_union" : true,
1997 "iso_code" : "DE",
1998 "names" : {
1999 "de" : "Deutschland",
2000 "en" : "Germany",
2001 "es" : "Alemania",
2002 "fr" : "Allemagne",
2003 "ja" : "ドイツ連邦共和国",
2004 "pt-BR" : "Alemanha",
2005 "ru" : "Германия",
2006 "zh-CN" : "德国"
2007 }
2008 },
2009 "location" : {
2010 "accuracy_radius" : 100,
2011 "latitude" : 51.5,
2012 "longitude" : 10.5,
2013 "time_zone" : "Europe/Berlin"
2014 },
2015 "registered_country" : {
2016 "geoname_id" : 2921044,
2017 "is_in_european_union" : true,
2018 "iso_code" : "DE",
2019 "names" : {
2020 "de" : "Deutschland",
2021 "en" : "Germany",
2022 "es" : "Alemania",
2023 "fr" : "Allemagne",
2024 "ja" : "ドイツ連邦共和国",
2025 "pt-BR" : "Alemanha",
2026 "ru" : "Германия",
2027 "zh-CN" : "德国"
2028 }
2029 }
2030 }
2031 },
2032 {
2033 "2a02:d1c0::/29" : {
2034 "continent" : {
2035 "code" : "EU",
2036 "geoname_id" : 6255148,
2037 "names" : {
2038 "de" : "Europa",
2039 "en" : "Europe",
2040 "es" : "Europa",
2041 "fr" : "Europe",
2042 "ja" : "ヨーロッパ",
2043 "pt-BR" : "Europa",
2044 "ru" : "Европа",
2045 "zh-CN" : "欧洲"
2046 }
2047 },
2048 "country" : {
2049 "geoname_id" : 3175395,
2050 "is_in_european_union" : true,
2051 "iso_code" : "IT",
2052 "names" : {
2053 "de" : "Italien",
2054 "en" : "Italy",
2055 "es" : "Italia",
2056 "fr" : "Italie",
2057 "ja" : "イタリア共和国",
2058 "pt-BR" : "Itália",
2059 "ru" : "Италия",
2060 "zh-CN" : "意大利"
2061 }
2062 },
2063 "location" : {
2064 "accuracy_radius" : 100,
2065 "latitude" : 42.83333,
2066 "longitude" : 12.83333,
2067 "time_zone" : "Europe/Rome"
2068 },
2069 "registered_country" : {
2070 "geoname_id" : 3175395,
2071 "is_in_european_union" : true,
2072 "iso_code" : "IT",
2073 "names" : {
2074 "de" : "Italien",
2075 "en" : "Italy",
2076 "es" : "Italia",
2077 "fr" : "Italie",
2078 "ja" : "イタリア共和国",
2079 "pt-BR" : "Itália",
2080 "ru" : "Италия",
2081 "zh-CN" : "意大利"
2082 }
2083 }
2084 }
2085 },
2086 {
2087 "2a02:d200::/29" : {
2088 "continent" : {
2089 "code" : "EU",
2090 "geoname_id" : 6255148,
2091 "names" : {
2092 "de" : "Europa",
2093 "en" : "Europe",
2094 "es" : "Europa",
2095 "fr" : "Europe",
2096 "ja" : "ヨーロッパ",
2097 "pt-BR" : "Europa",
2098 "ru" : "Европа",
2099 "zh-CN" : "欧洲"
2100 }
2101 },
2102 "country" : {
2103 "geoname_id" : 660013,
2104 "is_in_european_union" : true,
2105 "iso_code" : "FI",
2106 "names" : {
2107 "de" : "Finnland",
2108 "en" : "Finland",
2109 "es" : "Finlandia",
2110 "fr" : "Finlande",
2111 "ja" : "フィンランド共和国",
2112 "pt-BR" : "Finlândia",
2113 "ru" : "Финляндия",
2114 "zh-CN" : "芬兰"
2115 }
2116 },
2117 "location" : {
2118 "accuracy_radius" : 100,
2119 "latitude" : 64,
2120 "longitude" : 26,
2121 "time_zone" : "Europe/Helsinki"
2122 },
2123 "registered_country" : {
2124 "geoname_id" : 660013,
2125 "is_in_european_union" : true,
2126 "iso_code" : "FI",
2127 "names" : {
2128 "de" : "Finnland",
2129 "en" : "Finland",
2130 "es" : "Finlandia",
2131 "fr" : "Finlande",
2132 "ja" : "フィンランド共和国",
2133 "pt-BR" : "Finlândia",
2134 "ru" : "Финляндия",
2135 "zh-CN" : "芬兰"
2136 }
2137 }
2138 }
2139 },
2140 {
2141 "2a02:d240::/29" : {
2142 "continent" : {
2143 "code" : "EU",
2144 "geoname_id" : 6255148,
2145 "names" : {
2146 "de" : "Europa",
2147 "en" : "Europe",
2148 "es" : "Europa",
2149 "fr" : "Europe",
2150 "ja" : "ヨーロッパ",
2151 "pt-BR" : "Europa",
2152 "ru" : "Европа",
2153 "zh-CN" : "欧洲"
2154 }
2155 },
2156 "country" : {
2157 "geoname_id" : 630336,
2158 "iso_code" : "BY",
2159 "names" : {
2160 "de" : "Weißrussland",
2161 "en" : "Belarus",
2162 "es" : "Bielorrusia",
2163 "fr" : "Biélorussie",
2164 "ja" : "ベラルーシ共和国",
2165 "pt-BR" : "Bielo-Rússia",
2166 "ru" : "Беларусь",
2167 "zh-CN" : "白俄罗斯"
2168 }
2169 },
2170 "location" : {
2171 "accuracy_radius" : 100,
2172 "latitude" : 53,
2173 "longitude" : 28,
2174 "time_zone" : "Europe/Minsk"
2175 },
2176 "registered_country" : {
2177 "geoname_id" : 630336,
2178 "iso_code" : "BY",
2179 "names" : {
2180 "de" : "Weißrussland",
2181 "en" : "Belarus",
2182 "es" : "Bielorrusia",
2183 "fr" : "Biélorussie",
2184 "ja" : "ベラルーシ共和国",
2185 "pt-BR" : "Bielo-Rússia",
2186 "ru" : "Беларусь",
2187 "zh-CN" : "白俄罗斯"
2188 }
2189 }
2190 }
2191 },
2192 {
2193 "2a02:d280::/29" : {
2194 "continent" : {
2195 "code" : "EU",
2196 "geoname_id" : 6255148,
2197 "names" : {
2198 "de" : "Europa",
2199 "en" : "Europe",
2200 "es" : "Europa",
2201 "fr" : "Europe",
2202 "ja" : "ヨーロッパ",
2203 "pt-BR" : "Europa",
2204 "ru" : "Европа",
2205 "zh-CN" : "欧洲"
2206 }
2207 },
2208 "country" : {
2209 "geoname_id" : 3077311,
2210 "is_in_european_union" : true,
2211 "iso_code" : "CZ",
2212 "names" : {
2213 "de" : "Tschechische Republik",
2214 "en" : "Czech Republic",
2215 "es" : "República Checa",
2216 "fr" : "Tchéquie",
2217 "ja" : "チェコ共和国",
2218 "pt-BR" : "República Checa",
2219 "ru" : "Чешская Республика",
2220 "zh-CN" : "捷克共和国"
2221 }
2222 },
2223 "location" : {
2224 "accuracy_radius" : 100,
2225 "latitude" : 49.75,
2226 "longitude" : 15,
2227 "time_zone" : "Europe/Prague"
2228 },
2229 "registered_country" : {
2230 "geoname_id" : 3077311,
2231 "is_in_european_union" : true,
2232 "iso_code" : "CZ",
2233 "names" : {
2234 "de" : "Tschechische Republik",
2235 "en" : "Czech Republic",
2236 "es" : "República Checa",
2237 "fr" : "Tchéquie",
2238 "ja" : "チェコ共和国",
2239 "pt-BR" : "República Checa",
2240 "ru" : "Чешская Республика",
2241 "zh-CN" : "捷克共和国"
2242 }
2243 }
2244 }
2245 },
2246 {
2247 "2a02:d2c0::/29" : {
2248 "continent" : {
2249 "code" : "AS",
2250 "geoname_id" : 6255147,
2251 "names" : {
2252 "de" : "Asien",
2253 "en" : "Asia",
2254 "es" : "Asia",
2255 "fr" : "Asie",
2256 "ja" : "アジア",
2257 "pt-BR" : "Ásia",
2258 "ru" : "Азия",
2259 "zh-CN" : "亚洲"
2260 }
2261 },
2262 "country" : {
2263 "geoname_id" : 130758,
2264 "iso_code" : "IR",
2265 "names" : {
2266 "de" : "Iran (Islamische Republik)",
2267 "en" : "Iran",
2268 "es" : "Irán (República Islámica)",
2269 "fr" : "Iran (République islamique de)",
2270 "ja" : "イラン・イスラム共和国",
2271 "pt-BR" : "República Islâmica do Irã",
2272 "ru" : "Иран",
2273 "zh-CN" : "伊朗伊斯兰共和国"
2274 }
2275 },
2276 "location" : {
2277 "accuracy_radius" : 100,
2278 "latitude" : 32,
2279 "longitude" : 53,
2280 "time_zone" : "Asia/Tehran"
2281 },
2282 "registered_country" : {
2283 "geoname_id" : 130758,
2284 "iso_code" : "IR",
2285 "names" : {
2286 "de" : "Iran (Islamische Republik)",
2287 "en" : "Iran",
2288 "es" : "Irán (República Islámica)",
2289 "fr" : "Iran (République islamique de)",
2290 "ja" : "イラン・イスラム共和国",
2291 "pt-BR" : "República Islâmica do Irã",
2292 "ru" : "Иран",
2293 "zh-CN" : "伊朗伊斯兰共和国"
2294 }
2295 }
2296 }
2297 },
2298 {
2299 "2a02:d300::/29" : {
2300 "continent" : {
2301 "code" : "EU",
2302 "geoname_id" : 6255148,
2303 "names" : {
2304 "de" : "Europa",
2305 "en" : "Europe",
2306 "es" : "Europa",
2307 "fr" : "Europe",
2308 "ja" : "ヨーロッパ",
2309 "pt-BR" : "Europa",
2310 "ru" : "Европа",
2311 "zh-CN" : "欧洲"
2312 }
2313 },
2314 "country" : {
2315 "geoname_id" : 690791,
2316 "iso_code" : "UA",
2317 "names" : {
2318 "de" : "Ukraine",
2319 "en" : "Ukraine",
2320 "es" : "Ucrania",
2321 "fr" : "Ukraine",
2322 "ja" : "ウクライナ共和国",
2323 "pt-BR" : "Ucrânia",
2324 "ru" : "Украина",
2325 "zh-CN" : "乌克兰"
2326 }
2327 },
2328 "location" : {
2329 "accuracy_radius" : 100,
2330 "latitude" : 49,
2331 "longitude" : 32
2332 },
2333 "registered_country" : {
2334 "geoname_id" : 690791,
2335 "iso_code" : "UA",
2336 "names" : {
2337 "de" : "Ukraine",
2338 "en" : "Ukraine",
2339 "es" : "Ucrania",
2340 "fr" : "Ukraine",
2341 "ja" : "ウクライナ共和国",
2342 "pt-BR" : "Ucrânia",
2343 "ru" : "Украина",
2344 "zh-CN" : "乌克兰"
2345 }
2346 }
2347 }
2348 },
2349 {
2350 "2a02:d340::/29" : {
2351 "continent" : {
2352 "code" : "EU",
2353 "geoname_id" : 6255148,
2354 "names" : {
2355 "de" : "Europa",
2356 "en" : "Europe",
2357 "es" : "Europa",
2358 "fr" : "Europe",
2359 "ja" : "ヨーロッパ",
2360 "pt-BR" : "Europa",
2361 "ru" : "Европа",
2362 "zh-CN" : "欧洲"
2363 }
2364 },
2365 "country" : {
2366 "geoname_id" : 3017382,
2367 "is_in_european_union" : true,
2368 "iso_code" : "FR",
2369 "names" : {
2370 "de" : "Frankreich",
2371 "en" : "France",
2372 "es" : "Francia",
2373 "fr" : "France",
2374 "ja" : "フランス共和国",
2375 "pt-BR" : "França",
2376 "ru" : "Франция",
2377 "zh-CN" : "法国"
2378 }
2379 },
2380 "location" : {
2381 "accuracy_radius" : 100,
2382 "latitude" : 46,
2383 "longitude" : 2,
2384 "time_zone" : "Europe/Paris"
2385 },
2386 "registered_country" : {
2387 "geoname_id" : 3017382,
2388 "is_in_european_union" : true,
2389 "iso_code" : "FR",
2390 "names" : {
2391 "de" : "Frankreich",
2392 "en" : "France",
2393 "es" : "Francia",
2394 "fr" : "France",
2395 "ja" : "フランス共和国",
2396 "pt-BR" : "França",
2397 "ru" : "Франция",
2398 "zh-CN" : "法国"
2399 }
2400 }
2401 }
2402 },
2403 {
2404 "2a02:d380::/29" : {
2405 "continent" : {
2406 "code" : "AS",
2407 "geoname_id" : 6255147,
2408 "names" : {
2409 "de" : "Asien",
2410 "en" : "Asia",
2411 "es" : "Asia",
2412 "fr" : "Asie",
2413 "ja" : "アジア",
2414 "pt-BR" : "Ásia",
2415 "ru" : "Азия",
2416 "zh-CN" : "亚洲"
2417 }
2418 },
2419 "country" : {
2420 "geoname_id" : 130758,
2421 "iso_code" : "IR",
2422 "names" : {
2423 "de" : "Iran (Islamische Republik)",
2424 "en" : "Iran",
2425 "es" : "Irán (República Islámica)",
2426 "fr" : "Iran (République islamique de)",
2427 "ja" : "イラン・イスラム共和国",
2428 "pt-BR" : "República Islâmica do Irã",
2429 "ru" : "Иран",
2430 "zh-CN" : "伊朗伊斯兰共和国"
2431 }
2432 },
2433 "location" : {
2434 "accuracy_radius" : 100,
2435 "latitude" : 32,
2436 "longitude" : 53,
2437 "time_zone" : "Asia/Tehran"
2438 },
2439 "registered_country" : {
2440 "geoname_id" : 130758,
2441 "iso_code" : "IR",
2442 "names" : {
2443 "de" : "Iran (Islamische Republik)",
2444 "en" : "Iran",
2445 "es" : "Irán (República Islámica)",
2446 "fr" : "Iran (République islamique de)",
2447 "ja" : "イラン・イスラム共和国",
2448 "pt-BR" : "República Islâmica do Irã",
2449 "ru" : "Иран",
2450 "zh-CN" : "伊朗伊斯兰共和国"
2451 }
2452 }
2453 }
2454 },
2455 {
2456 "2a02:d3c0::/29" : {
2457 "continent" : {
2458 "code" : "EU",
2459 "geoname_id" : 6255148,
2460 "names" : {
2461 "de" : "Europa",
2462 "en" : "Europe",
2463 "es" : "Europa",
2464 "fr" : "Europe",
2465 "ja" : "ヨーロッパ",
2466 "pt-BR" : "Europa",
2467 "ru" : "Европа",
2468 "zh-CN" : "欧洲"
2469 }
2470 },
2471 "country" : {
2472 "geoname_id" : 2635167,
2473 "is_in_european_union" : true,
2474 "iso_code" : "GB",
2475 "names" : {
2476 "de" : "Vereinigtes Königreich",
2477 "en" : "United Kingdom",
2478 "es" : "Reino Unido",
2479 "fr" : "Royaume-Uni",
2480 "ja" : "イギリス",
2481 "pt-BR" : "Reino Unido",
2482 "ru" : "Великобритания",
2483 "zh-CN" : "英国"
2484 }
2485 },
2486 "location" : {
2487 "accuracy_radius" : 100,
2488 "latitude" : 54.75844,
2489 "longitude" : -2.69531,
2490 "time_zone" : "Europe/London"
2491 },
2492 "registered_country" : {
2493 "geoname_id" : 2635167,
2494 "is_in_european_union" : true,
2495 "iso_code" : "GB",
2496 "names" : {
2497 "de" : "Vereinigtes Königreich",
2498 "en" : "United Kingdom",
2499 "es" : "Reino Unido",
2500 "fr" : "Royaume-Uni",
2501 "ja" : "イギリス",
2502 "pt-BR" : "Reino Unido",
2503 "ru" : "Великобритания",
2504 "zh-CN" : "英国"
2505 }
2506 }
2507 }
2508 },
2509 {
2510 "2a02:d400::/29" : {
2511 "continent" : {
2512 "code" : "EU",
2513 "geoname_id" : 6255148,
2514 "names" : {
2515 "de" : "Europa",
2516 "en" : "Europe",
2517 "es" : "Europa",
2518 "fr" : "Europe",
2519 "ja" : "ヨーロッパ",
2520 "pt-BR" : "Europa",
2521 "ru" : "Европа",
2522 "zh-CN" : "欧洲"
2523 }
2524 },
2525 "country" : {
2526 "geoname_id" : 719819,
2527 "is_in_european_union" : true,
2528 "iso_code" : "HU",
2529 "names" : {
2530 "de" : "Ungarn",
2531 "en" : "Hungary",
2532 "es" : "Hungría",
2533 "fr" : "Hongrie",
2534 "ja" : "ハンガリー共和国",
2535 "pt-BR" : "Hungria",
2536 "ru" : "Венгрия",
2537 "zh-CN" : "匈牙利"
2538 }
2539 },
2540 "location" : {
2541 "accuracy_radius" : 100,
2542 "latitude" : 47,
2543 "longitude" : 20,
2544 "time_zone" : "Europe/Budapest"
2545 },
2546 "registered_country" : {
2547 "geoname_id" : 719819,
2548 "is_in_european_union" : true,
2549 "iso_code" : "HU",
2550 "names" : {
2551 "de" : "Ungarn",
2552 "en" : "Hungary",
2553 "es" : "Hungría",
2554 "fr" : "Hongrie",
2555 "ja" : "ハンガリー共和国",
2556 "pt-BR" : "Hungria",
2557 "ru" : "Венгрия",
2558 "zh-CN" : "匈牙利"
2559 }
2560 }
2561 }
2562 },
2563 {
2564 "2a02:d440::/29" : {
2565 "continent" : {
2566 "code" : "EU",
2567 "geoname_id" : 6255148,
2568 "names" : {
2569 "de" : "Europa",
2570 "en" : "Europe",
2571 "es" : "Europa",
2572 "fr" : "Europe",
2573 "ja" : "ヨーロッパ",
2574 "pt-BR" : "Europa",
2575 "ru" : "Европа",
2576 "zh-CN" : "欧洲"
2577 }
2578 },
2579 "country" : {
2580 "geoname_id" : 2661886,
2581 "is_in_european_union" : true,
2582 "iso_code" : "SE",
2583 "names" : {
2584 "de" : "Schweden",
2585 "en" : "Sweden",
2586 "es" : "Suecia",
2587 "fr" : "Suède",
2588 "ja" : "スウェーデン王国",
2589 "pt-BR" : "Suécia",
2590 "ru" : "Швеция",
2591 "zh-CN" : "瑞典"
2592 }
2593 },
2594 "location" : {
2595 "accuracy_radius" : 100,
2596 "latitude" : 62,
2597 "longitude" : 15,
2598 "time_zone" : "Europe/Stockholm"
2599 },
2600 "registered_country" : {
2601 "geoname_id" : 2661886,
2602 "is_in_european_union" : true,
2603 "iso_code" : "SE",
2604 "names" : {
2605 "de" : "Schweden",
2606 "en" : "Sweden",
2607 "es" : "Suecia",
2608 "fr" : "Suède",
2609 "ja" : "スウェーデン王国",
2610 "pt-BR" : "Suécia",
2611 "ru" : "Швеция",
2612 "zh-CN" : "瑞典"
2613 }
2614 }
2615 }
2616 },
2617 {
2618 "2a02:d480::/29" : {
2619 "continent" : {
2620 "code" : "EU",
2621 "geoname_id" : 6255148,
2622 "names" : {
2623 "de" : "Europa",
2624 "en" : "Europe",
2625 "es" : "Europa",
2626 "fr" : "Europe",
2627 "ja" : "ヨーロッパ",
2628 "pt-BR" : "Europa",
2629 "ru" : "Европа",
2630 "zh-CN" : "欧洲"
2631 }
2632 },
2633 "country" : {
2634 "geoname_id" : 2921044,
2635 "is_in_european_union" : true,
2636 "iso_code" : "DE",
2637 "names" : {
2638 "de" : "Deutschland",
2639 "en" : "Germany",
2640 "es" : "Alemania",
2641 "fr" : "Allemagne",
2642 "ja" : "ドイツ連邦共和国",
2643 "pt-BR" : "Alemanha",
2644 "ru" : "Германия",
2645 "zh-CN" : "德国"
2646 }
2647 },
2648 "location" : {
2649 "accuracy_radius" : 100,
2650 "latitude" : 51.5,
2651 "longitude" : 10.5,
2652 "time_zone" : "Europe/Berlin"
2653 },
2654 "registered_country" : {
2655 "geoname_id" : 2921044,
2656 "is_in_european_union" : true,
2657 "iso_code" : "DE",
2658 "names" : {
2659 "de" : "Deutschland",
2660 "en" : "Germany",
2661 "es" : "Alemania",
2662 "fr" : "Allemagne",
2663 "ja" : "ドイツ連邦共和国",
2664 "pt-BR" : "Alemanha",
2665 "ru" : "Германия",
2666 "zh-CN" : "德国"
2667 }
2668 }
2669 }
2670 },
2671 {
2672 "2a02:d4c0::/30" : {
2673 "continent" : {
2674 "code" : "EU",
2675 "geoname_id" : 6255148,
2676 "names" : {
2677 "de" : "Europa",
2678 "en" : "Europe",
2679 "es" : "Europa",
2680 "fr" : "Europe",
2681 "ja" : "ヨーロッパ",
2682 "pt-BR" : "Europa",
2683 "ru" : "Европа",
2684 "zh-CN" : "欧洲"
2685 }
2686 },
2687 "country" : {
2688 "geoname_id" : 660013,
2689 "is_in_european_union" : true,
2690 "iso_code" : "FI",
2691 "names" : {
2692 "de" : "Finnland",
2693 "en" : "Finland",
2694 "es" : "Finlandia",
2695 "fr" : "Finlande",
2696 "ja" : "フィンランド共和国",
2697 "pt-BR" : "Finlândia",
2698 "ru" : "Финляндия",
2699 "zh-CN" : "芬兰"
2700 }
2701 },
2702 "location" : {
2703 "accuracy_radius" : 100,
2704 "latitude" : 64,
2705 "longitude" : 26,
2706 "time_zone" : "Europe/Helsinki"
2707 },
2708 "registered_country" : {
2709 "geoname_id" : 660013,
2710 "is_in_european_union" : true,
2711 "iso_code" : "FI",
2712 "names" : {
2713 "de" : "Finnland",
2714 "en" : "Finland",
2715 "es" : "Finlandia",
2716 "fr" : "Finlande",
2717 "ja" : "フィンランド共和国",
2718 "pt-BR" : "Finlândia",
2719 "ru" : "Финляндия",
2720 "zh-CN" : "芬兰"
2721 }
2722 }
2723 }
2724 },
2725 {
2726 "2a02:d4e0::/30" : {
2727 "continent" : {
2728 "code" : "EU",
2729 "geoname_id" : 6255148,
2730 "names" : {
2731 "de" : "Europa",
2732 "en" : "Europe",
2733 "es" : "Europa",
2734 "fr" : "Europe",
2735 "ja" : "ヨーロッパ",
2736 "pt-BR" : "Europa",
2737 "ru" : "Европа",
2738 "zh-CN" : "欧洲"
2739 }
2740 },
2741 "country" : {
2742 "geoname_id" : 2921044,
2743 "is_in_european_union" : true,
2744 "iso_code" : "DE",
2745 "names" : {
2746 "de" : "Deutschland",
2747 "en" : "Germany",
2748 "es" : "Alemania",
2749 "fr" : "Allemagne",
2750 "ja" : "ドイツ連邦共和国",
2751 "pt-BR" : "Alemanha",
2752 "ru" : "Германия",
2753 "zh-CN" : "德国"
2754 }
2755 },
2756 "location" : {
2757 "accuracy_radius" : 100,
2758 "latitude" : 51.5,
2759 "longitude" : 10.5,
2760 "time_zone" : "Europe/Berlin"
2761 },
2762 "registered_country" : {
2763 "geoname_id" : 2921044,
2764 "is_in_european_union" : true,
2765 "iso_code" : "DE",
2766 "names" : {
2767 "de" : "Deutschland",
2768 "en" : "Germany",
2769 "es" : "Alemania",
2770 "fr" : "Allemagne",
2771 "ja" : "ドイツ連邦共和国",
2772 "pt-BR" : "Alemanha",
2773 "ru" : "Германия",
2774 "zh-CN" : "德国"
2775 }
2776 }
2777 }
2778 },
2779 {
2780 "2a02:d500::/29" : {
2781 "continent" : {
2782 "code" : "EU",
2783 "geoname_id" : 6255148,
2784 "names" : {
2785 "de" : "Europa",
2786 "en" : "Europe",
2787 "es" : "Europa",
2788 "fr" : "Europe",
2789 "ja" : "ヨーロッパ",
2790 "pt-BR" : "Europa",
2791 "ru" : "Европа",
2792 "zh-CN" : "欧洲"
2793 }
2794 },
2795 "location" : {
2796 "accuracy_radius" : 100,
2797 "latitude" : 48.69096,
2798 "longitude" : 9.14062,
2799 "time_zone" : "Europe/Vaduz"
2800 }
2801 }
2802 },
2803 {
2804 "2a02:d540::/29" : {
2805 "continent" : {
2806 "code" : "EU",
2807 "geoname_id" : 6255148,
2808 "names" : {
2809 "de" : "Europa",
2810 "en" : "Europe",
2811 "es" : "Europa",
2812 "fr" : "Europe",
2813 "ja" : "ヨーロッパ",
2814 "pt-BR" : "Europa",
2815 "ru" : "Европа",
2816 "zh-CN" : "欧洲"
2817 }
2818 },
2819 "country" : {
2820 "geoname_id" : 2635167,
2821 "is_in_european_union" : true,
2822 "iso_code" : "GB",
2823 "names" : {
2824 "de" : "Vereinigtes Königreich",
2825 "en" : "United Kingdom",
2826 "es" : "Reino Unido",
2827 "fr" : "Royaume-Uni",
2828 "ja" : "イギリス",
2829 "pt-BR" : "Reino Unido",
2830 "ru" : "Великобритания",
2831 "zh-CN" : "英国"
2832 }
2833 },
2834 "location" : {
2835 "accuracy_radius" : 100,
2836 "latitude" : 54.75844,
2837 "longitude" : -2.69531,
2838 "time_zone" : "Europe/London"
2839 },
2840 "registered_country" : {
2841 "geoname_id" : 2635167,
2842 "is_in_european_union" : true,
2843 "iso_code" : "GB",
2844 "names" : {
2845 "de" : "Vereinigtes Königreich",
2846 "en" : "United Kingdom",
2847 "es" : "Reino Unido",
2848 "fr" : "Royaume-Uni",
2849 "ja" : "イギリス",
2850 "pt-BR" : "Reino Unido",
2851 "ru" : "Великобритания",
2852 "zh-CN" : "英国"
2853 }
2854 }
2855 }
2856 },
2857 {
2858 "2a02:d580::/29" : {
2859 "continent" : {
2860 "code" : "EU",
2861 "geoname_id" : 6255148,
2862 "names" : {
2863 "de" : "Europa",
2864 "en" : "Europe",
2865 "es" : "Europa",
2866 "fr" : "Europe",
2867 "ja" : "ヨーロッパ",
2868 "pt-BR" : "Europa",
2869 "ru" : "Европа",
2870 "zh-CN" : "欧洲"
2871 }
2872 },
2873 "country" : {
2874 "geoname_id" : 3017382,
2875 "is_in_european_union" : true,
2876 "iso_code" : "FR",
2877 "names" : {
2878 "de" : "Frankreich",
2879 "en" : "France",
2880 "es" : "Francia",
2881 "fr" : "France",
2882 "ja" : "フランス共和国",
2883 "pt-BR" : "França",
2884 "ru" : "Франция",
2885 "zh-CN" : "法国"
2886 }
2887 },
2888 "location" : {
2889 "accuracy_radius" : 100,
2890 "latitude" : 46,
2891 "longitude" : 2,
2892 "time_zone" : "Europe/Paris"
2893 },
2894 "registered_country" : {
2895 "geoname_id" : 3017382,
2896 "is_in_european_union" : true,
2897 "iso_code" : "FR",
2898 "names" : {
2899 "de" : "Frankreich",
2900 "en" : "France",
2901 "es" : "Francia",
2902 "fr" : "France",
2903 "ja" : "フランス共和国",
2904 "pt-BR" : "França",
2905 "ru" : "Франция",
2906 "zh-CN" : "法国"
2907 }
2908 }
2909 }
2910 },
2911 {
2912 "2a02:d5c0::/29" : {
2913 "continent" : {
2914 "code" : "EU",
2915 "geoname_id" : 6255148,
2916 "names" : {
2917 "de" : "Europa",
2918 "en" : "Europe",
2919 "es" : "Europa",
2920 "fr" : "Europe",
2921 "ja" : "ヨーロッパ",
2922 "pt-BR" : "Europa",
2923 "ru" : "Европа",
2924 "zh-CN" : "欧洲"
2925 }
2926 },
2927 "country" : {
2928 "geoname_id" : 2510769,
2929 "is_in_european_union" : true,
2930 "iso_code" : "ES",
2931 "names" : {
2932 "de" : "Spanien",
2933 "en" : "Spain",
2934 "es" : "España",
2935 "fr" : "Espagne",
2936 "ja" : "スペイン",
2937 "pt-BR" : "Espanha",
2938 "ru" : "Испания",
2939 "zh-CN" : "西班牙"
2940 }
2941 },
2942 "location" : {
2943 "accuracy_radius" : 100,
2944 "latitude" : 40,
2945 "longitude" : -4
2946 },
2947 "registered_country" : {
2948 "geoname_id" : 2510769,
2949 "is_in_european_union" : true,
2950 "iso_code" : "ES",
2951 "names" : {
2952 "de" : "Spanien",
2953 "en" : "Spain",
2954 "es" : "España",
2955 "fr" : "Espagne",
2956 "ja" : "スペイン",
2957 "pt-BR" : "Espanha",
2958 "ru" : "Испания",
2959 "zh-CN" : "西班牙"
2960 }
2961 }
2962 }
2963 },
2964 {
2965 "2a02:d600::/29" : {
2966 "continent" : {
2967 "code" : "EU",
2968 "geoname_id" : 6255148,
2969 "names" : {
2970 "de" : "Europa",
2971 "en" : "Europe",
2972 "es" : "Europa",
2973 "fr" : "Europe",
2974 "ja" : "ヨーロッパ",
2975 "pt-BR" : "Europa",
2976 "ru" : "Европа",
2977 "zh-CN" : "欧洲"
2978 }
2979 },
2980 "country" : {
2981 "geoname_id" : 2921044,
2982 "is_in_european_union" : true,
2983 "iso_code" : "DE",
2984 "names" : {
2985 "de" : "Deutschland",
2986 "en" : "Germany",
2987 "es" : "Alemania",
2988 "fr" : "Allemagne",
2989 "ja" : "ドイツ連邦共和国",
2990 "pt-BR" : "Alemanha",
2991 "ru" : "Германия",
2992 "zh-CN" : "德国"
2993 }
2994 },
2995 "location" : {
2996 "accuracy_radius" : 100,
2997 "latitude" : 51.5,
2998 "longitude" : 10.5,
2999 "time_zone" : "Europe/Berlin"
3000 },
3001 "registered_country" : {
3002 "geoname_id" : 2921044,
3003 "is_in_european_union" : true,
3004 "iso_code" : "DE",
3005 "names" : {
3006 "de" : "Deutschland",
3007 "en" : "Germany",
3008 "es" : "Alemania",
3009 "fr" : "Allemagne",
3010 "ja" : "ドイツ連邦共和国",
3011 "pt-BR" : "Alemanha",
3012 "ru" : "Германия",
3013 "zh-CN" : "德国"
3014 }
3015 }
3016 }
3017 },
3018 {
3019 "2a02:d640::/29" : {
3020 "continent" : {
3021 "code" : "EU",
3022 "geoname_id" : 6255148,
3023 "names" : {
3024 "de" : "Europa",
3025 "en" : "Europe",
3026 "es" : "Europa",
3027 "fr" : "Europe",
3028 "ja" : "ヨーロッパ",
3029 "pt-BR" : "Europa",
3030 "ru" : "Европа",
3031 "zh-CN" : "欧洲"
3032 }
3033 },
3034 "country" : {
3035 "geoname_id" : 3017382,
3036 "is_in_european_union" : true,
3037 "iso_code" : "FR",
3038 "names" : {
3039 "de" : "Frankreich",
3040 "en" : "France",
3041 "es" : "Francia",
3042 "fr" : "France",
3043 "ja" : "フランス共和国",
3044 "pt-BR" : "França",
3045 "ru" : "Франция",
3046 "zh-CN" : "法国"
3047 }
3048 },
3049 "location" : {
3050 "accuracy_radius" : 100,
3051 "latitude" : 46,
3052 "longitude" : 2,
3053 "time_zone" : "Europe/Paris"
3054 },
3055 "registered_country" : {
3056 "geoname_id" : 3017382,
3057 "is_in_european_union" : true,
3058 "iso_code" : "FR",
3059 "names" : {
3060 "de" : "Frankreich",
3061 "en" : "France",
3062 "es" : "Francia",
3063 "fr" : "France",
3064 "ja" : "フランス共和国",
3065 "pt-BR" : "França",
3066 "ru" : "Франция",
3067 "zh-CN" : "法国"
3068 }
3069 }
3070 }
3071 },
3072 {
3073 "2a02:d680::/30" : {
3074 "continent" : {
3075 "code" : "EU",
3076 "geoname_id" : 6255148,
3077 "names" : {
3078 "de" : "Europa",
3079 "en" : "Europe",
3080 "es" : "Europa",
3081 "fr" : "Europe",
3082 "ja" : "ヨーロッパ",
3083 "pt-BR" : "Europa",
3084 "ru" : "Европа",
3085 "zh-CN" : "欧洲"
3086 }
3087 },
3088 "country" : {
3089 "geoname_id" : 2635167,
3090 "is_in_european_union" : true,
3091 "iso_code" : "GB",
3092 "names" : {
3093 "de" : "Vereinigtes Königreich",
3094 "en" : "United Kingdom",
3095 "es" : "Reino Unido",
3096 "fr" : "Royaume-Uni",
3097 "ja" : "イギリス",
3098 "pt-BR" : "Reino Unido",
3099 "ru" : "Великобритания",
3100 "zh-CN" : "英国"
3101 }
3102 },
3103 "location" : {
3104 "accuracy_radius" : 100,
3105 "latitude" : 54.75844,
3106 "longitude" : -2.69531,
3107 "time_zone" : "Europe/London"
3108 },
3109 "registered_country" : {
3110 "geoname_id" : 2635167,
3111 "is_in_european_union" : true,
3112 "iso_code" : "GB",
3113 "names" : {
3114 "de" : "Vereinigtes Königreich",
3115 "en" : "United Kingdom",
3116 "es" : "Reino Unido",
3117 "fr" : "Royaume-Uni",
3118 "ja" : "イギリス",
3119 "pt-BR" : "Reino Unido",
3120 "ru" : "Великобритания",
3121 "zh-CN" : "英国"
3122 }
3123 }
3124 }
3125 },
3126 {
3127 "2a02:d6a0::/30" : {
3128 "continent" : {
3129 "code" : "EU",
3130 "geoname_id" : 6255148,
3131 "names" : {
3132 "de" : "Europa",
3133 "en" : "Europe",
3134 "es" : "Europa",
3135 "fr" : "Europe",
3136 "ja" : "ヨーロッパ",
3137 "pt-BR" : "Europa",
3138 "ru" : "Европа",
3139 "zh-CN" : "欧洲"
3140 }
3141 },
3142 "country" : {
3143 "geoname_id" : 2921044,
3144 "is_in_european_union" : true,
3145 "iso_code" : "DE",
3146 "names" : {
3147 "de" : "Deutschland",
3148 "en" : "Germany",
3149 "es" : "Alemania",
3150 "fr" : "Allemagne",
3151 "ja" : "ドイツ連邦共和国",
3152 "pt-BR" : "Alemanha",
3153 "ru" : "Германия",
3154 "zh-CN" : "德国"
3155 }
3156 },
3157 "location" : {
3158 "accuracy_radius" : 100,
3159 "latitude" : 51.5,
3160 "longitude" : 10.5,
3161 "time_zone" : "Europe/Berlin"
3162 },
3163 "registered_country" : {
3164 "geoname_id" : 2921044,
3165 "is_in_european_union" : true,
3166 "iso_code" : "DE",
3167 "names" : {
3168 "de" : "Deutschland",
3169 "en" : "Germany",
3170 "es" : "Alemania",
3171 "fr" : "Allemagne",
3172 "ja" : "ドイツ連邦共和国",
3173 "pt-BR" : "Alemanha",
3174 "ru" : "Германия",
3175 "zh-CN" : "德国"
3176 }
3177 }
3178 }
3179 },
3180 {
3181 "2a02:d6c0::/29" : {
3182 "continent" : {
3183 "code" : "EU",
3184 "geoname_id" : 6255148,
3185 "names" : {
3186 "de" : "Europa",
3187 "en" : "Europe",
3188 "es" : "Europa",
3189 "fr" : "Europe",
3190 "ja" : "ヨーロッパ",
3191 "pt-BR" : "Europa",
3192 "ru" : "Европа",
3193 "zh-CN" : "欧洲"
3194 }
3195 },
3196 "country" : {
3197 "geoname_id" : 732800,
3198 "is_in_european_union" : true,
3199 "iso_code" : "BG",
3200 "names" : {
3201 "de" : "Bulgarien",
3202 "en" : "Bulgaria",
3203 "es" : "Bulgaria",
3204 "fr" : "Bulgarie",
3205 "ja" : "ブルガリア共和国",
3206 "pt-BR" : "Bulgária",
3207 "ru" : "Болгария",
3208 "zh-CN" : "保加利亚"
3209 }
3210 },
3211 "location" : {
3212 "accuracy_radius" : 100,
3213 "latitude" : 43,
3214 "longitude" : 25,
3215 "time_zone" : "Europe/Sofia"
3216 },
3217 "registered_country" : {
3218 "geoname_id" : 732800,
3219 "is_in_european_union" : true,
3220 "iso_code" : "BG",
3221 "names" : {
3222 "de" : "Bulgarien",
3223 "en" : "Bulgaria",
3224 "es" : "Bulgaria",
3225 "fr" : "Bulgarie",
3226 "ja" : "ブルガリア共和国",
3227 "pt-BR" : "Bulgária",
3228 "ru" : "Болгария",
3229 "zh-CN" : "保加利亚"
3230 }
3231 }
3232 }
3233 },
3234 {
3235 "2a02:d700::/29" : {
3236 "continent" : {
3237 "code" : "EU",
3238 "geoname_id" : 6255148,
3239 "names" : {
3240 "de" : "Europa",
3241 "en" : "Europe",
3242 "es" : "Europa",
3243 "fr" : "Europe",
3244 "ja" : "ヨーロッパ",
3245 "pt-BR" : "Europa",
3246 "ru" : "Европа",
3247 "zh-CN" : "欧洲"
3248 }
3249 },
3250 "country" : {
3251 "geoname_id" : 2921044,
3252 "is_in_european_union" : true,
3253 "iso_code" : "DE",
3254 "names" : {
3255 "de" : "Deutschland",
3256 "en" : "Germany",
3257 "es" : "Alemania",
3258 "fr" : "Allemagne",
3259 "ja" : "ドイツ連邦共和国",
3260 "pt-BR" : "Alemanha",
3261 "ru" : "Германия",
3262 "zh-CN" : "德国"
3263 }
3264 },
3265 "location" : {
3266 "accuracy_radius" : 100,
3267 "latitude" : 51.5,
3268 "longitude" : 10.5,
3269 "time_zone" : "Europe/Berlin"
3270 },
3271 "registered_country" : {
3272 "geoname_id" : 2921044,
3273 "is_in_european_union" : true,
3274 "iso_code" : "DE",
3275 "names" : {
3276 "de" : "Deutschland",
3277 "en" : "Germany",
3278 "es" : "Alemania",
3279 "fr" : "Allemagne",
3280 "ja" : "ドイツ連邦共和国",
3281 "pt-BR" : "Alemanha",
3282 "ru" : "Германия",
3283 "zh-CN" : "德国"
3284 }
3285 }
3286 }
3287 },
3288 {
3289 "2a02:d740::/29" : {
3290 "continent" : {
3291 "code" : "EU",
3292 "geoname_id" : 6255148,
3293 "names" : {
3294 "de" : "Europa",
3295 "en" : "Europe",
3296 "es" : "Europa",
3297 "fr" : "Europe",
3298 "ja" : "ヨーロッパ",
3299 "pt-BR" : "Europa",
3300 "ru" : "Европа",
3301 "zh-CN" : "欧洲"
3302 }
3303 },
3304 "country" : {
3305 "geoname_id" : 2658434,
3306 "iso_code" : "CH",
3307 "names" : {
3308 "de" : "Schweiz",
3309 "en" : "Switzerland",
3310 "es" : "Suiza",
3311 "fr" : "Suisse",
3312 "ja" : "スイス連邦",
3313 "pt-BR" : "Suíça",
3314 "ru" : "Швейцария",
3315 "zh-CN" : "瑞士"
3316 }
3317 },
3318 "location" : {
3319 "accuracy_radius" : 100,
3320 "latitude" : 47.00016,
3321 "longitude" : 8.01427,
3322 "time_zone" : "Europe/Zurich"
3323 },
3324 "registered_country" : {
3325 "geoname_id" : 2658434,
3326 "iso_code" : "CH",
3327 "names" : {
3328 "de" : "Schweiz",
3329 "en" : "Switzerland",
3330 "es" : "Suiza",
3331 "fr" : "Suisse",
3332 "ja" : "スイス連邦",
3333 "pt-BR" : "Suíça",
3334 "ru" : "Швейцария",
3335 "zh-CN" : "瑞士"
3336 }
3337 }
3338 }
3339 },
3340 {
3341 "2a02:d780::/29" : {
3342 "continent" : {
3343 "code" : "AS",
3344 "geoname_id" : 6255147,
3345 "names" : {
3346 "de" : "Asien",
3347 "en" : "Asia",
3348 "es" : "Asia",
3349 "fr" : "Asie",
3350 "ja" : "アジア",
3351 "pt-BR" : "Ásia",
3352 "ru" : "Азия",
3353 "zh-CN" : "亚洲"
3354 }
3355 },
3356 "country" : {
3357 "geoname_id" : 130758,
3358 "iso_code" : "IR",
3359 "names" : {
3360 "de" : "Iran (Islamische Republik)",
3361 "en" : "Iran",
3362 "es" : "Irán (República Islámica)",
3363 "fr" : "Iran (République islamique de)",
3364 "ja" : "イラン・イスラム共和国",
3365 "pt-BR" : "República Islâmica do Irã",
3366 "ru" : "Иран",
3367 "zh-CN" : "伊朗伊斯兰共和国"
3368 }
3369 },
3370 "location" : {
3371 "accuracy_radius" : 100,
3372 "latitude" : 32,
3373 "longitude" : 53,
3374 "time_zone" : "Asia/Tehran"
3375 },
3376 "registered_country" : {
3377 "geoname_id" : 130758,
3378 "iso_code" : "IR",
3379 "names" : {
3380 "de" : "Iran (Islamische Republik)",
3381 "en" : "Iran",
3382 "es" : "Irán (República Islámica)",
3383 "fr" : "Iran (République islamique de)",
3384 "ja" : "イラン・イスラム共和国",
3385 "pt-BR" : "República Islâmica do Irã",
3386 "ru" : "Иран",
3387 "zh-CN" : "伊朗伊斯兰共和国"
3388 }
3389 }
3390 }
3391 },
3392 {
3393 "2a02:d7c0::/29" : {
3394 "continent" : {
3395 "code" : "EU",
3396 "geoname_id" : 6255148,
3397 "names" : {
3398 "de" : "Europa",
3399 "en" : "Europe",
3400 "es" : "Europa",
3401 "fr" : "Europe",
3402 "ja" : "ヨーロッパ",
3403 "pt-BR" : "Europa",
3404 "ru" : "Европа",
3405 "zh-CN" : "欧洲"
3406 }
3407 },
3408 "country" : {
3409 "geoname_id" : 3017382,
3410 "is_in_european_union" : true,
3411 "iso_code" : "FR",
3412 "names" : {
3413 "de" : "Frankreich",
3414 "en" : "France",
3415 "es" : "Francia",
3416 "fr" : "France",
3417 "ja" : "フランス共和国",
3418 "pt-BR" : "França",
3419 "ru" : "Франция",
3420 "zh-CN" : "法国"
3421 }
3422 },
3423 "location" : {
3424 "accuracy_radius" : 100,
3425 "latitude" : 46,
3426 "longitude" : 2,
3427 "time_zone" : "Europe/Paris"
3428 },
3429 "registered_country" : {
3430 "geoname_id" : 3017382,
3431 "is_in_european_union" : true,
3432 "iso_code" : "FR",
3433 "names" : {
3434 "de" : "Frankreich",
3435 "en" : "France",
3436 "es" : "Francia",
3437 "fr" : "France",
3438 "ja" : "フランス共和国",
3439 "pt-BR" : "França",
3440 "ru" : "Франция",
3441 "zh-CN" : "法国"
3442 }
3443 }
3444 }
3445 },
3446 {
3447 "2a02:d800::/29" : {
3448 "continent" : {
3449 "code" : "EU",
3450 "geoname_id" : 6255148,
3451 "names" : {
3452 "de" : "Europa",
3453 "en" : "Europe",
3454 "es" : "Europa",
3455 "fr" : "Europe",
3456 "ja" : "ヨーロッパ",
3457 "pt-BR" : "Europa",
3458 "ru" : "Европа",
3459 "zh-CN" : "欧洲"
3460 }
3461 },
3462 "country" : {
3463 "geoname_id" : 798549,
3464 "is_in_european_union" : true,
3465 "iso_code" : "RO",
3466 "names" : {
3467 "de" : "Rumänien",
3468 "en" : "Romania",
3469 "es" : "Rumanía",
3470 "fr" : "Roumanie",
3471 "ja" : "ルーマニア",
3472 "pt-BR" : "Romênia",
3473 "ru" : "Румыния",
3474 "zh-CN" : "罗马尼亚"
3475 }
3476 },
3477 "location" : {
3478 "accuracy_radius" : 100,
3479 "latitude" : 46,
3480 "longitude" : 25,
3481 "time_zone" : "Europe/Bucharest"
3482 },
3483 "registered_country" : {
3484 "geoname_id" : 798549,
3485 "is_in_european_union" : true,
3486 "iso_code" : "RO",
3487 "names" : {
3488 "de" : "Rumänien",
3489 "en" : "Romania",
3490 "es" : "Rumanía",
3491 "fr" : "Roumanie",
3492 "ja" : "ルーマニア",
3493 "pt-BR" : "Romênia",
3494 "ru" : "Румыния",
3495 "zh-CN" : "罗马尼亚"
3496 }
3497 }
3498 }
3499 },
3500 {
3501 "2a02:d840::/29" : {
3502 "continent" : {
3503 "code" : "EU",
3504 "geoname_id" : 6255148,
3505 "names" : {
3506 "de" : "Europa",
3507 "en" : "Europe",
3508 "es" : "Europa",
3509 "fr" : "Europe",
3510 "ja" : "ヨーロッパ",
3511 "pt-BR" : "Europa",
3512 "ru" : "Европа",
3513 "zh-CN" : "欧洲"
3514 }
3515 },
3516 "country" : {
3517 "geoname_id" : 2017370,
3518 "iso_code" : "RU",
3519 "names" : {
3520 "de" : "Russland",
3521 "en" : "Russia",
3522 "es" : "Rusia",
3523 "fr" : "Russie",
3524 "ja" : "ロシア",
3525 "pt-BR" : "Rússia",
3526 "ru" : "Россия",
3527 "zh-CN" : "俄罗斯"
3528 }
3529 },
3530 "location" : {
3531 "accuracy_radius" : 100,
3532 "latitude" : 60,
3533 "longitude" : 100
3534 },
3535 "registered_country" : {
3536 "geoname_id" : 2017370,
3537 "iso_code" : "RU",
3538 "names" : {
3539 "de" : "Russland",
3540 "en" : "Russia",
3541 "es" : "Rusia",
3542 "fr" : "Russie",
3543 "ja" : "ロシア",
3544 "pt-BR" : "Rússia",
3545 "ru" : "Россия",
3546 "zh-CN" : "俄罗斯"
3547 }
3548 }
3549 }
3550 },
3551 {
3552 "2a02:d880::/29" : {
3553 "continent" : {
3554 "code" : "EU",
3555 "geoname_id" : 6255148,
3556 "names" : {
3557 "de" : "Europa",
3558 "en" : "Europe",
3559 "es" : "Europa",
3560 "fr" : "Europe",
3561 "ja" : "ヨーロッパ",
3562 "pt-BR" : "Europa",
3563 "ru" : "Европа",
3564 "zh-CN" : "欧洲"
3565 }
3566 },
3567 "country" : {
3568 "geoname_id" : 2017370,
3569 "iso_code" : "RU",
3570 "names" : {
3571 "de" : "Russland",
3572 "en" : "Russia",
3573 "es" : "Rusia",
3574 "fr" : "Russie",
3575 "ja" : "ロシア",
3576 "pt-BR" : "Rússia",
3577 "ru" : "Россия",
3578 "zh-CN" : "俄罗斯"
3579 }
3580 },
3581 "location" : {
3582 "accuracy_radius" : 100,
3583 "latitude" : 60,
3584 "longitude" : 100
3585 },
3586 "registered_country" : {
3587 "geoname_id" : 2017370,
3588 "iso_code" : "RU",
3589 "names" : {
3590 "de" : "Russland",
3591 "en" : "Russia",
3592 "es" : "Rusia",
3593 "fr" : "Russie",
3594 "ja" : "ロシア",
3595 "pt-BR" : "Rússia",
3596 "ru" : "Россия",
3597 "zh-CN" : "俄罗斯"
3598 }
3599 }
3600 }
3601 },
3602 {
3603 "2a02:d8c0::/29" : {
3604 "continent" : {
3605 "code" : "EU",
3606 "geoname_id" : 6255148,
3607 "names" : {
3608 "de" : "Europa",
3609 "en" : "Europe",
3610 "es" : "Europa",
3611 "fr" : "Europe",
3612 "ja" : "ヨーロッパ",
3613 "pt-BR" : "Europa",
3614 "ru" : "Европа",
3615 "zh-CN" : "欧洲"
3616 }
3617 },
3618 "country" : {
3619 "geoname_id" : 3144096,
3620 "iso_code" : "NO",
3621 "names" : {
3622 "de" : "Norwegen",
3623 "en" : "Norway",
3624 "es" : "Noruega",
3625 "fr" : "Norvège",
3626 "ja" : "ノルウェー王国",
3627 "pt-BR" : "Noruega",
3628 "ru" : "Норвегия",
3629 "zh-CN" : "挪威"
3630 }
3631 },
3632 "location" : {
3633 "accuracy_radius" : 100,
3634 "latitude" : 62,
3635 "longitude" : 10,
3636 "time_zone" : "Europe/Oslo"
3637 },
3638 "registered_country" : {
3639 "geoname_id" : 3144096,
3640 "iso_code" : "NO",
3641 "names" : {
3642 "de" : "Norwegen",
3643 "en" : "Norway",
3644 "es" : "Noruega",
3645 "fr" : "Norvège",
3646 "ja" : "ノルウェー王国",
3647 "pt-BR" : "Noruega",
3648 "ru" : "Норвегия",
3649 "zh-CN" : "挪威"
3650 }
3651 }
3652 }
3653 },
3654 {
3655 "2a02:d900::/29" : {
3656 "continent" : {
3657 "code" : "EU",
3658 "geoname_id" : 6255148,
3659 "names" : {
3660 "de" : "Europa",
3661 "en" : "Europe",
3662 "es" : "Europa",
3663 "fr" : "Europe",
3664 "ja" : "ヨーロッパ",
3665 "pt-BR" : "Europa",
3666 "ru" : "Европа",
3667 "zh-CN" : "欧洲"
3668 }
3669 },
3670 "country" : {
3671 "geoname_id" : 2661886,
3672 "is_in_european_union" : true,
3673 "iso_code" : "SE",
3674 "names" : {
3675 "de" : "Schweden",
3676 "en" : "Sweden",
3677 "es" : "Suecia",
3678 "fr" : "Suède",
3679 "ja" : "スウェーデン王国",
3680 "pt-BR" : "Suécia",
3681 "ru" : "Швеция",
3682 "zh-CN" : "瑞典"
3683 }
3684 },
3685 "location" : {
3686 "accuracy_radius" : 100,
3687 "latitude" : 62,
3688 "longitude" : 15,
3689 "time_zone" : "Europe/Stockholm"
3690 },
3691 "registered_country" : {
3692 "geoname_id" : 2661886,
3693 "is_in_european_union" : true,
3694 "iso_code" : "SE",
3695 "names" : {
3696 "de" : "Schweden",
3697 "en" : "Sweden",
3698 "es" : "Suecia",
3699 "fr" : "Suède",
3700 "ja" : "スウェーデン王国",
3701 "pt-BR" : "Suécia",
3702 "ru" : "Швеция",
3703 "zh-CN" : "瑞典"
3704 }
3705 }
3706 }
3707 },
3708 {
3709 "2a02:d940::/29" : {
3710 "continent" : {
3711 "code" : "EU",
3712 "geoname_id" : 6255148,
3713 "names" : {
3714 "de" : "Europa",
3715 "en" : "Europe",
3716 "es" : "Europa",
3717 "fr" : "Europe",
3718 "ja" : "ヨーロッパ",
3719 "pt-BR" : "Europa",
3720 "ru" : "Европа",
3721 "zh-CN" : "欧洲"
3722 }
3723 },
3724 "country" : {
3725 "geoname_id" : 2802361,
3726 "is_in_european_union" : true,
3727 "iso_code" : "BE",
3728 "names" : {
3729 "de" : "Belgien",
3730 "en" : "Belgium",
3731 "es" : "Bélgica",
3732 "fr" : "Belgique",
3733 "ja" : "ベルギー王国",
3734 "pt-BR" : "Bélgica",
3735 "ru" : "Бельгия",
3736 "zh-CN" : "比利时"
3737 }
3738 },
3739 "location" : {
3740 "accuracy_radius" : 100,
3741 "latitude" : 50.83333,
3742 "longitude" : 4,
3743 "time_zone" : "Europe/Brussels"
3744 },
3745 "registered_country" : {
3746 "geoname_id" : 2802361,
3747 "is_in_european_union" : true,
3748 "iso_code" : "BE",
3749 "names" : {
3750 "de" : "Belgien",
3751 "en" : "Belgium",
3752 "es" : "Bélgica",
3753 "fr" : "Belgique",
3754 "ja" : "ベルギー王国",
3755 "pt-BR" : "Bélgica",
3756 "ru" : "Бельгия",
3757 "zh-CN" : "比利时"
3758 }
3759 }
3760 }
3761 },
3762 {
3763 "2a02:d980::/29" : {
3764 "continent" : {
3765 "code" : "AS",
3766 "geoname_id" : 6255147,
3767 "names" : {
3768 "de" : "Asien",
3769 "en" : "Asia",
3770 "es" : "Asia",
3771 "fr" : "Asie",
3772 "ja" : "アジア",
3773 "pt-BR" : "Ásia",
3774 "ru" : "Азия",
3775 "zh-CN" : "亚洲"
3776 }
3777 },
3778 "country" : {
3779 "geoname_id" : 298795,
3780 "iso_code" : "TR",
3781 "names" : {
3782 "de" : "Türkei",
3783 "en" : "Turkey",
3784 "es" : "Turquía",
3785 "fr" : "Turquie",
3786 "ja" : "トルコ共和国",
3787 "pt-BR" : "Turquia",
3788 "ru" : "Турция",
3789 "zh-CN" : "土耳其"
3790 }
3791 },
3792 "location" : {
3793 "accuracy_radius" : 100,
3794 "latitude" : 39.05901,
3795 "longitude" : 34.91155,
3796 "time_zone" : "Europe/Istanbul"
3797 },
3798 "registered_country" : {
3799 "geoname_id" : 298795,
3800 "iso_code" : "TR",
3801 "names" : {
3802 "de" : "Türkei",
3803 "en" : "Turkey",
3804 "es" : "Turquía",
3805 "fr" : "Turquie",
3806 "ja" : "トルコ共和国",
3807 "pt-BR" : "Turquia",
3808 "ru" : "Турция",
3809 "zh-CN" : "土耳其"
3810 }
3811 }
3812 }
3813 },
3814 {
3815 "2a02:d9c0::/29" : {
3816 "continent" : {
3817 "code" : "AS",
3818 "geoname_id" : 6255147,
3819 "names" : {
3820 "de" : "Asien",
3821 "en" : "Asia",
3822 "es" : "Asia",
3823 "fr" : "Asie",
3824 "ja" : "アジア",
3825 "pt-BR" : "Ásia",
3826 "ru" : "Азия",
3827 "zh-CN" : "亚洲"
3828 }
3829 },
3830 "country" : {
3831 "geoname_id" : 298795,
3832 "iso_code" : "TR",
3833 "names" : {
3834 "de" : "Türkei",
3835 "en" : "Turkey",
3836 "es" : "Turquía",
3837 "fr" : "Turquie",
3838 "ja" : "トルコ共和国",
3839 "pt-BR" : "Turquia",
3840 "ru" : "Турция",
3841 "zh-CN" : "土耳其"
3842 }
3843 },
3844 "location" : {
3845 "accuracy_radius" : 100,
3846 "latitude" : 39.05901,
3847 "longitude" : 34.91155,
3848 "time_zone" : "Europe/Istanbul"
3849 },
3850 "registered_country" : {
3851 "geoname_id" : 298795,
3852 "iso_code" : "TR",
3853 "names" : {
3854 "de" : "Türkei",
3855 "en" : "Turkey",
3856 "es" : "Turquía",
3857 "fr" : "Turquie",
3858 "ja" : "トルコ共和国",
3859 "pt-BR" : "Turquia",
3860 "ru" : "Турция",
3861 "zh-CN" : "土耳其"
3862 }
3863 }
3864 }
3865 },
3866 {
3867 "2a02:da00::/29" : {
3868 "continent" : {
3869 "code" : "EU",
3870 "geoname_id" : 6255148,
3871 "names" : {
3872 "de" : "Europa",
3873 "en" : "Europe",
3874 "es" : "Europa",
3875 "fr" : "Europe",
3876 "ja" : "ヨーロッパ",
3877 "pt-BR" : "Europa",
3878 "ru" : "Европа",
3879 "zh-CN" : "欧洲"
3880 }
3881 },
3882 "country" : {
3883 "geoname_id" : 2921044,
3884 "is_in_european_union" : true,
3885 "iso_code" : "DE",
3886 "names" : {
3887 "de" : "Deutschland",
3888 "en" : "Germany",
3889 "es" : "Alemania",
3890 "fr" : "Allemagne",
3891 "ja" : "ドイツ連邦共和国",
3892 "pt-BR" : "Alemanha",
3893 "ru" : "Германия",
3894 "zh-CN" : "德国"
3895 }
3896 },
3897 "location" : {
3898 "accuracy_radius" : 100,
3899 "latitude" : 51.5,
3900 "longitude" : 10.5,
3901 "time_zone" : "Europe/Berlin"
3902 },
3903 "registered_country" : {
3904 "geoname_id" : 2921044,
3905 "is_in_european_union" : true,
3906 "iso_code" : "DE",
3907 "names" : {
3908 "de" : "Deutschland",
3909 "en" : "Germany",
3910 "es" : "Alemania",
3911 "fr" : "Allemagne",
3912 "ja" : "ドイツ連邦共和国",
3913 "pt-BR" : "Alemanha",
3914 "ru" : "Германия",
3915 "zh-CN" : "德国"
3916 }
3917 }
3918 }
3919 },
3920 {
3921 "2a02:da40::/29" : {
3922 "continent" : {
3923 "code" : "EU",
3924 "geoname_id" : 6255148,
3925 "names" : {
3926 "de" : "Europa",
3927 "en" : "Europe",
3928 "es" : "Europa",
3929 "fr" : "Europe",
3930 "ja" : "ヨーロッパ",
3931 "pt-BR" : "Europa",
3932 "ru" : "Европа",
3933 "zh-CN" : "欧洲"
3934 }
3935 },
3936 "country" : {
3937 "geoname_id" : 2635167,
3938 "is_in_european_union" : true,
3939 "iso_code" : "GB",
3940 "names" : {
3941 "de" : "Vereinigtes Königreich",
3942 "en" : "United Kingdom",
3943 "es" : "Reino Unido",
3944 "fr" : "Royaume-Uni",
3945 "ja" : "イギリス",
3946 "pt-BR" : "Reino Unido",
3947 "ru" : "Великобритания",
3948 "zh-CN" : "英国"
3949 }
3950 },
3951 "location" : {
3952 "accuracy_radius" : 100,
3953 "latitude" : 54.75844,
3954 "longitude" : -2.69531,
3955 "time_zone" : "Europe/London"
3956 },
3957 "registered_country" : {
3958 "geoname_id" : 2635167,
3959 "is_in_european_union" : true,
3960 "iso_code" : "GB",
3961 "names" : {
3962 "de" : "Vereinigtes Königreich",
3963 "en" : "United Kingdom",
3964 "es" : "Reino Unido",
3965 "fr" : "Royaume-Uni",
3966 "ja" : "イギリス",
3967 "pt-BR" : "Reino Unido",
3968 "ru" : "Великобритания",
3969 "zh-CN" : "英国"
3970 }
3971 }
3972 }
3973 },
3974 {
3975 "2a02:da80::/29" : {
3976 "continent" : {
3977 "code" : "EU",
3978 "geoname_id" : 6255148,
3979 "names" : {
3980 "de" : "Europa",
3981 "en" : "Europe",
3982 "es" : "Europa",
3983 "fr" : "Europe",
3984 "ja" : "ヨーロッパ",
3985 "pt-BR" : "Europa",
3986 "ru" : "Европа",
3987 "zh-CN" : "欧洲"
3988 }
3989 },
3990 "country" : {
3991 "geoname_id" : 2782113,
3992 "is_in_european_union" : true,
3993 "iso_code" : "AT",
3994 "names" : {
3995 "de" : "Österreich",
3996 "en" : "Austria",
3997 "es" : "Austria",
3998 "fr" : "Autriche",
3999 "ja" : "オーストリア共和国",
4000 "pt-BR" : "Áustria",
4001 "ru" : "Австрия",
4002 "zh-CN" : "奥地利"
4003 }
4004 },
4005 "location" : {
4006 "accuracy_radius" : 100,
4007 "latitude" : 47.33333,
4008 "longitude" : 13.33333,
4009 "time_zone" : "Europe/Vienna"
4010 },
4011 "registered_country" : {
4012 "geoname_id" : 2782113,
4013 "is_in_european_union" : true,
4014 "iso_code" : "AT",
4015 "names" : {
4016 "de" : "Österreich",
4017 "en" : "Austria",
4018 "es" : "Austria",
4019 "fr" : "Autriche",
4020 "ja" : "オーストリア共和国",
4021 "pt-BR" : "Áustria",
4022 "ru" : "Австрия",
4023 "zh-CN" : "奥地利"
4024 }
4025 }
4026 }
4027 },
4028 {
4029 "2a02:dac0::/29" : {
4030 "continent" : {
4031 "code" : "EU",
4032 "geoname_id" : 6255148,
4033 "names" : {
4034 "de" : "Europa",
4035 "en" : "Europe",
4036 "es" : "Europa",
4037 "fr" : "Europe",
4038 "ja" : "ヨーロッパ",
4039 "pt-BR" : "Europa",
4040 "ru" : "Европа",
4041 "zh-CN" : "欧洲"
4042 }
4043 },
4044 "country" : {
4045 "geoname_id" : 2017370,
4046 "iso_code" : "RU",
4047 "names" : {
4048 "de" : "Russland",
4049 "en" : "Russia",
4050 "es" : "Rusia",
4051 "fr" : "Russie",
4052 "ja" : "ロシア",
4053 "pt-BR" : "Rússia",
4054 "ru" : "Россия",
4055 "zh-CN" : "俄罗斯"
4056 }
4057 },
4058 "location" : {
4059 "accuracy_radius" : 100,
4060 "latitude" : 60,
4061 "longitude" : 100
4062 },
4063 "registered_country" : {
4064 "geoname_id" : 2017370,
4065 "iso_code" : "RU",
4066 "names" : {
4067 "de" : "Russland",
4068 "en" : "Russia",
4069 "es" : "Rusia",
4070 "fr" : "Russie",
4071 "ja" : "ロシア",
4072 "pt-BR" : "Rússia",
4073 "ru" : "Россия",
4074 "zh-CN" : "俄罗斯"
4075 }
4076 }
4077 }
4078 },
4079 {
4080 "2a02:db00::/29" : {
4081 "continent" : {
4082 "code" : "EU",
4083 "geoname_id" : 6255148,
4084 "names" : {
4085 "de" : "Europa",
4086 "en" : "Europe",
4087 "es" : "Europa",
4088 "fr" : "Europe",
4089 "ja" : "ヨーロッパ",
4090 "pt-BR" : "Europa",
4091 "ru" : "Европа",
4092 "zh-CN" : "欧洲"
4093 }
4094 },
4095 "country" : {
4096 "geoname_id" : 2921044,
4097 "is_in_european_union" : true,
4098 "iso_code" : "DE",
4099 "names" : {
4100 "de" : "Deutschland",
4101 "en" : "Germany",
4102 "es" : "Alemania",
4103 "fr" : "Allemagne",
4104 "ja" : "ドイツ連邦共和国",
4105 "pt-BR" : "Alemanha",
4106 "ru" : "Германия",
4107 "zh-CN" : "德国"
4108 }
4109 },
4110 "location" : {
4111 "accuracy_radius" : 100,
4112 "latitude" : 51.5,
4113 "longitude" : 10.5,
4114 "time_zone" : "Europe/Berlin"
4115 },
4116 "registered_country" : {
4117 "geoname_id" : 2921044,
4118 "is_in_european_union" : true,
4119 "iso_code" : "DE",
4120 "names" : {
4121 "de" : "Deutschland",
4122 "en" : "Germany",
4123 "es" : "Alemania",
4124 "fr" : "Allemagne",
4125 "ja" : "ドイツ連邦共和国",
4126 "pt-BR" : "Alemanha",
4127 "ru" : "Германия",
4128 "zh-CN" : "德国"
4129 }
4130 }
4131 }
4132 },
4133 {
4134 "2a02:db40::/29" : {
4135 "continent" : {
4136 "code" : "EU",
4137 "geoname_id" : 6255148,
4138 "names" : {
4139 "de" : "Europa",
4140 "en" : "Europe",
4141 "es" : "Europa",
4142 "fr" : "Europe",
4143 "ja" : "ヨーロッパ",
4144 "pt-BR" : "Europa",
4145 "ru" : "Европа",
4146 "zh-CN" : "欧洲"
4147 }
4148 },
4149 "country" : {
4150 "geoname_id" : 798549,
4151 "is_in_european_union" : true,
4152 "iso_code" : "RO",
4153 "names" : {
4154 "de" : "Rumänien",
4155 "en" : "Romania",
4156 "es" : "Rumanía",
4157 "fr" : "Roumanie",
4158 "ja" : "ルーマニア",
4159 "pt-BR" : "Romênia",
4160 "ru" : "Румыния",
4161 "zh-CN" : "罗马尼亚"
4162 }
4163 },
4164 "location" : {
4165 "accuracy_radius" : 100,
4166 "latitude" : 46,
4167 "longitude" : 25,
4168 "time_zone" : "Europe/Bucharest"
4169 },
4170 "registered_country" : {
4171 "geoname_id" : 798549,
4172 "is_in_european_union" : true,
4173 "iso_code" : "RO",
4174 "names" : {
4175 "de" : "Rumänien",
4176 "en" : "Romania",
4177 "es" : "Rumanía",
4178 "fr" : "Roumanie",
4179 "ja" : "ルーマニア",
4180 "pt-BR" : "Romênia",
4181 "ru" : "Румыния",
4182 "zh-CN" : "罗马尼亚"
4183 }
4184 }
4185 }
4186 },
4187 {
4188 "2a02:db80::/29" : {
4189 "continent" : {
4190 "code" : "EU",
4191 "geoname_id" : 6255148,
4192 "names" : {
4193 "de" : "Europa",
4194 "en" : "Europe",
4195 "es" : "Europa",
4196 "fr" : "Europe",
4197 "ja" : "ヨーロッパ",
4198 "pt-BR" : "Europa",
4199 "ru" : "Европа",
4200 "zh-CN" : "欧洲"
4201 }
4202 },
4203 "country" : {
4204 "geoname_id" : 2017370,
4205 "iso_code" : "RU",
4206 "names" : {
4207 "de" : "Russland",
4208 "en" : "Russia",
4209 "es" : "Rusia",
4210 "fr" : "Russie",
4211 "ja" : "ロシア",
4212 "pt-BR" : "Rússia",
4213 "ru" : "Россия",
4214 "zh-CN" : "俄罗斯"
4215 }
4216 },
4217 "location" : {
4218 "accuracy_radius" : 100,
4219 "latitude" : 60,
4220 "longitude" : 100
4221 },
4222 "registered_country" : {
4223 "geoname_id" : 2017370,
4224 "iso_code" : "RU",
4225 "names" : {
4226 "de" : "Russland",
4227 "en" : "Russia",
4228 "es" : "Rusia",
4229 "fr" : "Russie",
4230 "ja" : "ロシア",
4231 "pt-BR" : "Rússia",
4232 "ru" : "Россия",
4233 "zh-CN" : "俄罗斯"
4234 }
4235 }
4236 }
4237 },
4238 {
4239 "2a02:dbc0::/29" : {
4240 "continent" : {
4241 "code" : "EU",
4242 "geoname_id" : 6255148,
4243 "names" : {
4244 "de" : "Europa",
4245 "en" : "Europe",
4246 "es" : "Europa",
4247 "fr" : "Europe",
4248 "ja" : "ヨーロッパ",
4249 "pt-BR" : "Europa",
4250 "ru" : "Европа",
4251 "zh-CN" : "欧洲"
4252 }
4253 },
4254 "country" : {
4255 "geoname_id" : 2017370,
4256 "iso_code" : "RU",
4257 "names" : {
4258 "de" : "Russland",
4259 "en" : "Russia",
4260 "es" : "Rusia",
4261 "fr" : "Russie",
4262 "ja" : "ロシア",
4263 "pt-BR" : "Rússia",
4264 "ru" : "Россия",
4265 "zh-CN" : "俄罗斯"
4266 }
4267 },
4268 "location" : {
4269 "accuracy_radius" : 100,
4270 "latitude" : 60,
4271 "longitude" : 100
4272 },
4273 "registered_country" : {
4274 "geoname_id" : 2017370,
4275 "iso_code" : "RU",
4276 "names" : {
4277 "de" : "Russland",
4278 "en" : "Russia",
4279 "es" : "Rusia",
4280 "fr" : "Russie",
4281 "ja" : "ロシア",
4282 "pt-BR" : "Rússia",
4283 "ru" : "Россия",
4284 "zh-CN" : "俄罗斯"
4285 }
4286 }
4287 }
4288 },
4289 {
4290 "2a02:dc00::/29" : {
4291 "continent" : {
4292 "code" : "EU",
4293 "geoname_id" : 6255148,
4294 "names" : {
4295 "de" : "Europa",
4296 "en" : "Europe",
4297 "es" : "Europa",
4298 "fr" : "Europe",
4299 "ja" : "ヨーロッパ",
4300 "pt-BR" : "Europa",
4301 "ru" : "Европа",
4302 "zh-CN" : "欧洲"
4303 }
4304 },
4305 "country" : {
4306 "geoname_id" : 2017370,
4307 "iso_code" : "RU",
4308 "names" : {
4309 "de" : "Russland",
4310 "en" : "Russia",
4311 "es" : "Rusia",
4312 "fr" : "Russie",
4313 "ja" : "ロシア",
4314 "pt-BR" : "Rússia",
4315 "ru" : "Россия",
4316 "zh-CN" : "俄罗斯"
4317 }
4318 },
4319 "location" : {
4320 "accuracy_radius" : 100,
4321 "latitude" : 60,
4322 "longitude" : 100
4323 },
4324 "registered_country" : {
4325 "geoname_id" : 2017370,
4326 "iso_code" : "RU",
4327 "names" : {
4328 "de" : "Russland",
4329 "en" : "Russia",
4330 "es" : "Rusia",
4331 "fr" : "Russie",
4332 "ja" : "ロシア",
4333 "pt-BR" : "Rússia",
4334 "ru" : "Россия",
4335 "zh-CN" : "俄罗斯"
4336 }
4337 }
4338 }
4339 },
4340 {
4341 "2a02:dc40::/29" : {
4342 "continent" : {
4343 "code" : "AS",
4344 "geoname_id" : 6255147,
4345 "names" : {
4346 "de" : "Asien",
4347 "en" : "Asia",
4348 "es" : "Asia",
4349 "fr" : "Asie",
4350 "ja" : "アジア",
4351 "pt-BR" : "Ásia",
4352 "ru" : "Азия",
4353 "zh-CN" : "亚洲"
4354 }
4355 },
4356 "country" : {
4357 "geoname_id" : 298795,
4358 "iso_code" : "TR",
4359 "names" : {
4360 "de" : "Türkei",
4361 "en" : "Turkey",
4362 "es" : "Turquía",
4363 "fr" : "Turquie",
4364 "ja" : "トルコ共和国",
4365 "pt-BR" : "Turquia",
4366 "ru" : "Турция",
4367 "zh-CN" : "土耳其"
4368 }
4369 },
4370 "location" : {
4371 "accuracy_radius" : 100,
4372 "latitude" : 39.05901,
4373 "longitude" : 34.91155,
4374 "time_zone" : "Europe/Istanbul"
4375 },
4376 "registered_country" : {
4377 "geoname_id" : 298795,
4378 "iso_code" : "TR",
4379 "names" : {
4380 "de" : "Türkei",
4381 "en" : "Turkey",
4382 "es" : "Turquía",
4383 "fr" : "Turquie",
4384 "ja" : "トルコ共和国",
4385 "pt-BR" : "Turquia",
4386 "ru" : "Турция",
4387 "zh-CN" : "土耳其"
4388 }
4389 }
4390 }
4391 },
4392 {
4393 "2a02:dc80::/29" : {
4394 "continent" : {
4395 "code" : "EU",
4396 "geoname_id" : 6255148,
4397 "names" : {
4398 "de" : "Europa",
4399 "en" : "Europe",
4400 "es" : "Europa",
4401 "fr" : "Europe",
4402 "ja" : "ヨーロッパ",
4403 "pt-BR" : "Europa",
4404 "ru" : "Европа",
4405 "zh-CN" : "欧洲"
4406 }
4407 },
4408 "country" : {
4409 "geoname_id" : 2017370,
4410 "iso_code" : "RU",
4411 "names" : {
4412 "de" : "Russland",
4413 "en" : "Russia",
4414 "es" : "Rusia",
4415 "fr" : "Russie",
4416 "ja" : "ロシア",
4417 "pt-BR" : "Rússia",
4418 "ru" : "Россия",
4419 "zh-CN" : "俄罗斯"
4420 }
4421 },
4422 "location" : {
4423 "accuracy_radius" : 100,
4424 "latitude" : 60,
4425 "longitude" : 100
4426 },
4427 "registered_country" : {
4428 "geoname_id" : 2017370,
4429 "iso_code" : "RU",
4430 "names" : {
4431 "de" : "Russland",
4432 "en" : "Russia",
4433 "es" : "Rusia",
4434 "fr" : "Russie",
4435 "ja" : "ロシア",
4436 "pt-BR" : "Rússia",
4437 "ru" : "Россия",
4438 "zh-CN" : "俄罗斯"
4439 }
4440 }
4441 }
4442 },
4443 {
4444 "2a02:dcc0::/29" : {
4445 "continent" : {
4446 "code" : "EU",
4447 "geoname_id" : 6255148,
4448 "names" : {
4449 "de" : "Europa",
4450 "en" : "Europe",
4451 "es" : "Europa",
4452 "fr" : "Europe",
4453 "ja" : "ヨーロッパ",
4454 "pt-BR" : "Europa",
4455 "ru" : "Европа",
4456 "zh-CN" : "欧洲"
4457 }
4458 },
4459 "country" : {
4460 "geoname_id" : 690791,
4461 "iso_code" : "UA",
4462 "names" : {
4463 "de" : "Ukraine",
4464 "en" : "Ukraine",
4465 "es" : "Ucrania",
4466 "fr" : "Ukraine",
4467 "ja" : "ウクライナ共和国",
4468 "pt-BR" : "Ucrânia",
4469 "ru" : "Украина",
4470 "zh-CN" : "乌克兰"
4471 }
4472 },
4473 "location" : {
4474 "accuracy_radius" : 100,
4475 "latitude" : 49,
4476 "longitude" : 32
4477 },
4478 "registered_country" : {
4479 "geoname_id" : 690791,
4480 "iso_code" : "UA",
4481 "names" : {
4482 "de" : "Ukraine",
4483 "en" : "Ukraine",
4484 "es" : "Ucrania",
4485 "fr" : "Ukraine",
4486 "ja" : "ウクライナ共和国",
4487 "pt-BR" : "Ucrânia",
4488 "ru" : "Украина",
4489 "zh-CN" : "乌克兰"
4490 }
4491 }
4492 }
4493 },
4494 {
4495 "2a02:dd00::/29" : {
4496 "continent" : {
4497 "code" : "EU",
4498 "geoname_id" : 6255148,
4499 "names" : {
4500 "de" : "Europa",
4501 "en" : "Europe",
4502 "es" : "Europa",
4503 "fr" : "Europe",
4504 "ja" : "ヨーロッパ",
4505 "pt-BR" : "Europa",
4506 "ru" : "Европа",
4507 "zh-CN" : "欧洲"
4508 }
4509 },
4510 "country" : {
4511 "geoname_id" : 783754,
4512 "iso_code" : "AL",
4513 "names" : {
4514 "de" : "Albanien",
4515 "en" : "Albania",
4516 "es" : "Albania",
4517 "fr" : "Albanie",
4518 "ja" : "アルバニア共和国",
4519 "pt-BR" : "Albânia",
4520 "ru" : "Албания",
4521 "zh-CN" : "阿尔巴尼亚"
4522 }
4523 },
4524 "location" : {
4525 "accuracy_radius" : 100,
4526 "latitude" : 41,
4527 "longitude" : 20,
4528 "time_zone" : "Europe/Tirane"
4529 },
4530 "registered_country" : {
4531 "geoname_id" : 783754,
4532 "iso_code" : "AL",
4533 "names" : {
4534 "de" : "Albanien",
4535 "en" : "Albania",
4536 "es" : "Albania",
4537 "fr" : "Albanie",
4538 "ja" : "アルバニア共和国",
4539 "pt-BR" : "Albânia",
4540 "ru" : "Албания",
4541 "zh-CN" : "阿尔巴尼亚"
4542 }
4543 }
4544 }
4545 },
4546 {
4547 "2a02:dd40::/29" : {
4548 "continent" : {
4549 "code" : "EU",
4550 "geoname_id" : 6255148,
4551 "names" : {
4552 "de" : "Europa",
4553 "en" : "Europe",
4554 "es" : "Europa",
4555 "fr" : "Europe",
4556 "ja" : "ヨーロッパ",
4557 "pt-BR" : "Europa",
4558 "ru" : "Европа",
4559 "zh-CN" : "欧洲"
4560 }
4561 },
4562 "country" : {
4563 "geoname_id" : 2635167,
4564 "is_in_european_union" : true,
4565 "iso_code" : "GB",
4566 "names" : {
4567 "de" : "Vereinigtes Königreich",
4568 "en" : "United Kingdom",
4569 "es" : "Reino Unido",
4570 "fr" : "Royaume-Uni",
4571 "ja" : "イギリス",
4572 "pt-BR" : "Reino Unido",
4573 "ru" : "Великобритания",
4574 "zh-CN" : "英国"
4575 }
4576 },
4577 "location" : {
4578 "accuracy_radius" : 100,
4579 "latitude" : 54.75844,
4580 "longitude" : -2.69531,
4581 "time_zone" : "Europe/London"
4582 },
4583 "registered_country" : {
4584 "geoname_id" : 2635167,
4585 "is_in_european_union" : true,
4586 "iso_code" : "GB",
4587 "names" : {
4588 "de" : "Vereinigtes Königreich",
4589 "en" : "United Kingdom",
4590 "es" : "Reino Unido",
4591 "fr" : "Royaume-Uni",
4592 "ja" : "イギリス",
4593 "pt-BR" : "Reino Unido",
4594 "ru" : "Великобритания",
4595 "zh-CN" : "英国"
4596 }
4597 }
4598 }
4599 },
4600 {
4601 "2a02:dd80::/29" : {
4602 "continent" : {
4603 "code" : "EU",
4604 "geoname_id" : 6255148,
4605 "names" : {
4606 "de" : "Europa",
4607 "en" : "Europe",
4608 "es" : "Europa",
4609 "fr" : "Europe",
4610 "ja" : "ヨーロッパ",
4611 "pt-BR" : "Europa",
4612 "ru" : "Европа",
4613 "zh-CN" : "欧洲"
4614 }
4615 },
4616 "country" : {
4617 "geoname_id" : 2661886,
4618 "is_in_european_union" : true,
4619 "iso_code" : "SE",
4620 "names" : {
4621 "de" : "Schweden",
4622 "en" : "Sweden",
4623 "es" : "Suecia",
4624 "fr" : "Suède",
4625 "ja" : "スウェーデン王国",
4626 "pt-BR" : "Suécia",
4627 "ru" : "Швеция",
4628 "zh-CN" : "瑞典"
4629 }
4630 },
4631 "location" : {
4632 "accuracy_radius" : 100,
4633 "latitude" : 62,
4634 "longitude" : 15,
4635 "time_zone" : "Europe/Stockholm"
4636 },
4637 "registered_country" : {
4638 "geoname_id" : 2661886,
4639 "is_in_european_union" : true,
4640 "iso_code" : "SE",
4641 "names" : {
4642 "de" : "Schweden",
4643 "en" : "Sweden",
4644 "es" : "Suecia",
4645 "fr" : "Suède",
4646 "ja" : "スウェーデン王国",
4647 "pt-BR" : "Suécia",
4648 "ru" : "Швеция",
4649 "zh-CN" : "瑞典"
4650 }
4651 }
4652 }
4653 },
4654 {
4655 "2a02:ddc0::/29" : {
4656 "continent" : {
4657 "code" : "EU",
4658 "geoname_id" : 6255148,
4659 "names" : {
4660 "de" : "Europa",
4661 "en" : "Europe",
4662 "es" : "Europa",
4663 "fr" : "Europe",
4664 "ja" : "ヨーロッパ",
4665 "pt-BR" : "Europa",
4666 "ru" : "Европа",
4667 "zh-CN" : "欧洲"
4668 }
4669 },
4670 "country" : {
4671 "geoname_id" : 2017370,
4672 "iso_code" : "RU",
4673 "names" : {
4674 "de" : "Russland",
4675 "en" : "Russia",
4676 "es" : "Rusia",
4677 "fr" : "Russie",
4678 "ja" : "ロシア",
4679 "pt-BR" : "Rússia",
4680 "ru" : "Россия",
4681 "zh-CN" : "俄罗斯"
4682 }
4683 },
4684 "location" : {
4685 "accuracy_radius" : 100,
4686 "latitude" : 60,
4687 "longitude" : 100
4688 },
4689 "registered_country" : {
4690 "geoname_id" : 2017370,
4691 "iso_code" : "RU",
4692 "names" : {
4693 "de" : "Russland",
4694 "en" : "Russia",
4695 "es" : "Rusia",
4696 "fr" : "Russie",
4697 "ja" : "ロシア",
4698 "pt-BR" : "Rússia",
4699 "ru" : "Россия",
4700 "zh-CN" : "俄罗斯"
4701 }
4702 }
4703 }
4704 },
4705 {
4706 "2a02:de00::/29" : {
4707 "continent" : {
4708 "code" : "EU",
4709 "geoname_id" : 6255148,
4710 "names" : {
4711 "de" : "Europa",
4712 "en" : "Europe",
4713 "es" : "Europa",
4714 "fr" : "Europe",
4715 "ja" : "ヨーロッパ",
4716 "pt-BR" : "Europa",
4717 "ru" : "Европа",
4718 "zh-CN" : "欧洲"
4719 }
4720 },
4721 "country" : {
4722 "geoname_id" : 2017370,
4723 "iso_code" : "RU",
4724 "names" : {
4725 "de" : "Russland",
4726 "en" : "Russia",
4727 "es" : "Rusia",
4728 "fr" : "Russie",
4729 "ja" : "ロシア",
4730 "pt-BR" : "Rússia",
4731 "ru" : "Россия",
4732 "zh-CN" : "俄罗斯"
4733 }
4734 },
4735 "location" : {
4736 "accuracy_radius" : 100,
4737 "latitude" : 60,
4738 "longitude" : 100
4739 },
4740 "registered_country" : {
4741 "geoname_id" : 2017370,
4742 "iso_code" : "RU",
4743 "names" : {
4744 "de" : "Russland",
4745 "en" : "Russia",
4746 "es" : "Rusia",
4747 "fr" : "Russie",
4748 "ja" : "ロシア",
4749 "pt-BR" : "Rússia",
4750 "ru" : "Россия",
4751 "zh-CN" : "俄罗斯"
4752 }
4753 }
4754 }
4755 },
4756 {
4757 "2a02:de40::/29" : {
4758 "continent" : {
4759 "code" : "AS",
4760 "geoname_id" : 6255147,
4761 "names" : {
4762 "de" : "Asien",
4763 "en" : "Asia",
4764 "es" : "Asia",
4765 "fr" : "Asie",
4766 "ja" : "アジア",
4767 "pt-BR" : "Ásia",
4768 "ru" : "Азия",
4769 "zh-CN" : "亚洲"
4770 }
4771 },
4772 "country" : {
4773 "geoname_id" : 294640,
4774 "iso_code" : "IL",
4775 "names" : {
4776 "de" : "Israel",
4777 "en" : "Israel",
4778 "es" : "Israel",
4779 "fr" : "Israël",
4780 "ja" : "イスラエル国",
4781 "pt-BR" : "Israel",
4782 "ru" : "Израиль",
4783 "zh-CN" : "以色列"
4784 }
4785 },
4786 "location" : {
4787 "accuracy_radius" : 100,
4788 "latitude" : 31.5,
4789 "longitude" : 34.75,
4790 "time_zone" : "Asia/Jerusalem"
4791 },
4792 "registered_country" : {
4793 "geoname_id" : 294640,
4794 "iso_code" : "IL",
4795 "names" : {
4796 "de" : "Israel",
4797 "en" : "Israel",
4798 "es" : "Israel",
4799 "fr" : "Israël",
4800 "ja" : "イスラエル国",
4801 "pt-BR" : "Israel",
4802 "ru" : "Израиль",
4803 "zh-CN" : "以色列"
4804 }
4805 }
4806 }
4807 },
4808 {
4809 "2a02:de80::/29" : {
4810 "continent" : {
4811 "code" : "EU",
4812 "geoname_id" : 6255148,
4813 "names" : {
4814 "de" : "Europa",
4815 "en" : "Europe",
4816 "es" : "Europa",
4817 "fr" : "Europe",
4818 "ja" : "ヨーロッパ",
4819 "pt-BR" : "Europa",
4820 "ru" : "Европа",
4821 "zh-CN" : "欧洲"
4822 }
4823 },
4824 "country" : {
4825 "geoname_id" : 2017370,
4826 "iso_code" : "RU",
4827 "names" : {
4828 "de" : "Russland",
4829 "en" : "Russia",
4830 "es" : "Rusia",
4831 "fr" : "Russie",
4832 "ja" : "ロシア",
4833 "pt-BR" : "Rússia",
4834 "ru" : "Россия",
4835 "zh-CN" : "俄罗斯"
4836 }
4837 },
4838 "location" : {
4839 "accuracy_radius" : 100,
4840 "latitude" : 60,
4841 "longitude" : 100
4842 },
4843 "registered_country" : {
4844 "geoname_id" : 2017370,
4845 "iso_code" : "RU",
4846 "names" : {
4847 "de" : "Russland",
4848 "en" : "Russia",
4849 "es" : "Rusia",
4850 "fr" : "Russie",
4851 "ja" : "ロシア",
4852 "pt-BR" : "Rússia",
4853 "ru" : "Россия",
4854 "zh-CN" : "俄罗斯"
4855 }
4856 }
4857 }
4858 },
4859 {
4860 "2a02:dec0::/29" : {
4861 "continent" : {
4862 "code" : "AS",
4863 "geoname_id" : 6255147,
4864 "names" : {
4865 "de" : "Asien",
4866 "en" : "Asia",
4867 "es" : "Asia",
4868 "fr" : "Asie",
4869 "ja" : "アジア",
4870 "pt-BR" : "Ásia",
4871 "ru" : "Азия",
4872 "zh-CN" : "亚洲"
4873 }
4874 },
4875 "country" : {
4876 "geoname_id" : 272103,
4877 "iso_code" : "LB",
4878 "names" : {
4879 "de" : "Libanon",
4880 "en" : "Lebanon",
4881 "es" : "Líbano",
4882 "fr" : "Liban",
4883 "ja" : "レバノン共和国",
4884 "pt-BR" : "Líbano",
4885 "ru" : "Ливан",
4886 "zh-CN" : "黎巴嫩"
4887 }
4888 },
4889 "location" : {
4890 "accuracy_radius" : 100,
4891 "latitude" : 33.83333,
4892 "longitude" : 35.83333,
4893 "time_zone" : "Asia/Beirut"
4894 },
4895 "registered_country" : {
4896 "geoname_id" : 272103,
4897 "iso_code" : "LB",
4898 "names" : {
4899 "de" : "Libanon",
4900 "en" : "Lebanon",
4901 "es" : "Líbano",
4902 "fr" : "Liban",
4903 "ja" : "レバノン共和国",
4904 "pt-BR" : "Líbano",
4905 "ru" : "Ливан",
4906 "zh-CN" : "黎巴嫩"
4907 }
4908 }
4909 }
4910 },
4911 {
4912 "2a02:df00::/29" : {
4913 "continent" : {
4914 "code" : "AS",
4915 "geoname_id" : 6255147,
4916 "names" : {
4917 "de" : "Asien",
4918 "en" : "Asia",
4919 "es" : "Asia",
4920 "fr" : "Asie",
4921 "ja" : "アジア",
4922 "pt-BR" : "Ásia",
4923 "ru" : "Азия",
4924 "zh-CN" : "亚洲"
4925 }
4926 },
4927 "country" : {
4928 "geoname_id" : 130758,
4929 "iso_code" : "IR",
4930 "names" : {
4931 "de" : "Iran (Islamische Republik)",
4932 "en" : "Iran",
4933 "es" : "Irán (República Islámica)",
4934 "fr" : "Iran (République islamique de)",
4935 "ja" : "イラン・イスラム共和国",
4936 "pt-BR" : "República Islâmica do Irã",
4937 "ru" : "Иран",
4938 "zh-CN" : "伊朗伊斯兰共和国"
4939 }
4940 },
4941 "location" : {
4942 "accuracy_radius" : 100,
4943 "latitude" : 32,
4944 "longitude" : 53,
4945 "time_zone" : "Asia/Tehran"
4946 },
4947 "registered_country" : {
4948 "geoname_id" : 130758,
4949 "iso_code" : "IR",
4950 "names" : {
4951 "de" : "Iran (Islamische Republik)",
4952 "en" : "Iran",
4953 "es" : "Irán (República Islámica)",
4954 "fr" : "Iran (République islamique de)",
4955 "ja" : "イラン・イスラム共和国",
4956 "pt-BR" : "República Islâmica do Irã",
4957 "ru" : "Иран",
4958 "zh-CN" : "伊朗伊斯兰共和国"
4959 }
4960 }
4961 }
4962 },
4963 {
4964 "2a02:df40::/29" : {
4965 "continent" : {
4966 "code" : "AS",
4967 "geoname_id" : 6255147,
4968 "names" : {
4969 "de" : "Asien",
4970 "en" : "Asia",
4971 "es" : "Asia",
4972 "fr" : "Asie",
4973 "ja" : "アジア",
4974 "pt-BR" : "Ásia",
4975 "ru" : "Азия",
4976 "zh-CN" : "亚洲"
4977 }
4978 },
4979 "country" : {
4980 "geoname_id" : 298795,
4981 "iso_code" : "TR",
4982 "names" : {
4983 "de" : "Türkei",
4984 "en" : "Turkey",
4985 "es" : "Turquía",
4986 "fr" : "Turquie",
4987 "ja" : "トルコ共和国",
4988 "pt-BR" : "Turquia",
4989 "ru" : "Турция",
4990 "zh-CN" : "土耳其"
4991 }
4992 },
4993 "location" : {
4994 "accuracy_radius" : 100,
4995 "latitude" : 39.05901,
4996 "longitude" : 34.91155,
4997 "time_zone" : "Europe/Istanbul"
4998 },
4999 "registered_country" : {
5000 "geoname_id" : 298795,
5001 "iso_code" : "TR",
5002 "names" : {
5003 "de" : "Türkei",
5004 "en" : "Turkey",
5005 "es" : "Turquía",
5006 "fr" : "Turquie",
5007 "ja" : "トルコ共和国",
5008 "pt-BR" : "Turquia",
5009 "ru" : "Турция",
5010 "zh-CN" : "土耳其"
5011 }
5012 }
5013 }
5014 },
5015 {
5016 "2a02:df80::/29" : {
5017 "continent" : {
5018 "code" : "EU",
5019 "geoname_id" : 6255148,
5020 "names" : {
5021 "de" : "Europa",
5022 "en" : "Europe",
5023 "es" : "Europa",
5024 "fr" : "Europe",
5025 "ja" : "ヨーロッパ",
5026 "pt-BR" : "Europa",
5027 "ru" : "Европа",
5028 "zh-CN" : "欧洲"
5029 }
5030 },
5031 "country" : {
5032 "geoname_id" : 2635167,
5033 "is_in_european_union" : true,
5034 "iso_code" : "GB",
5035 "names" : {
5036 "de" : "Vereinigtes Königreich",
5037 "en" : "United Kingdom",
5038 "es" : "Reino Unido",
5039 "fr" : "Royaume-Uni",
5040 "ja" : "イギリス",
5041 "pt-BR" : "Reino Unido",
5042 "ru" : "Великобритания",
5043 "zh-CN" : "英国"
5044 }
5045 },
5046 "location" : {
5047 "accuracy_radius" : 100,
5048 "latitude" : 54.75844,
5049 "longitude" : -2.69531,
5050 "time_zone" : "Europe/London"
5051 },
5052 "registered_country" : {
5053 "geoname_id" : 2635167,
5054 "is_in_european_union" : true,
5055 "iso_code" : "GB",
5056 "names" : {
5057 "de" : "Vereinigtes Königreich",
5058 "en" : "United Kingdom",
5059 "es" : "Reino Unido",
5060 "fr" : "Royaume-Uni",
5061 "ja" : "イギリス",
5062 "pt-BR" : "Reino Unido",
5063 "ru" : "Великобритания",
5064 "zh-CN" : "英国"
5065 }
5066 }
5067 }
5068 },
5069 {
5070 "2a02:dfc0::/29" : {
5071 "continent" : {
5072 "code" : "AS",
5073 "geoname_id" : 6255147,
5074 "names" : {
5075 "de" : "Asien",
5076 "en" : "Asia",
5077 "es" : "Asia",
5078 "fr" : "Asie",
5079 "ja" : "アジア",
5080 "pt-BR" : "Ásia",
5081 "ru" : "Азия",
5082 "zh-CN" : "亚洲"
5083 }
5084 },
5085 "country" : {
5086 "geoname_id" : 130758,
5087 "iso_code" : "IR",
5088 "names" : {
5089 "de" : "Iran (Islamische Republik)",
5090 "en" : "Iran",
5091 "es" : "Irán (República Islámica)",
5092 "fr" : "Iran (République islamique de)",
5093 "ja" : "イラン・イスラム共和国",
5094 "pt-BR" : "República Islâmica do Irã",
5095 "ru" : "Иран",
5096 "zh-CN" : "伊朗伊斯兰共和国"
5097 }
5098 },
5099 "location" : {
5100 "accuracy_radius" : 100,
5101 "latitude" : 32,
5102 "longitude" : 53,
5103 "time_zone" : "Asia/Tehran"
5104 },
5105 "registered_country" : {
5106 "geoname_id" : 130758,
5107 "iso_code" : "IR",
5108 "names" : {
5109 "de" : "Iran (Islamische Republik)",
5110 "en" : "Iran",
5111 "es" : "Irán (República Islámica)",
5112 "fr" : "Iran (République islamique de)",
5113 "ja" : "イラン・イスラム共和国",
5114 "pt-BR" : "República Islâmica do Irã",
5115 "ru" : "Иран",
5116 "zh-CN" : "伊朗伊斯兰共和国"
5117 }
5118 }
5119 }
5120 },
5121 {
5122 "2a02:e000::/29" : {
5123 "continent" : {
5124 "code" : "EU",
5125 "geoname_id" : 6255148,
5126 "names" : {
5127 "de" : "Europa",
5128 "en" : "Europe",
5129 "es" : "Europa",
5130 "fr" : "Europe",
5131 "ja" : "ヨーロッパ",
5132 "pt-BR" : "Europa",
5133 "ru" : "Европа",
5134 "zh-CN" : "欧洲"
5135 }
5136 },
5137 "country" : {
5138 "geoname_id" : 3017382,
5139 "is_in_european_union" : true,
5140 "iso_code" : "FR",
5141 "names" : {
5142 "de" : "Frankreich",
5143 "en" : "France",
5144 "es" : "Francia",
5145 "fr" : "France",
5146 "ja" : "フランス共和国",
5147 "pt-BR" : "França",
5148 "ru" : "Франция",
5149 "zh-CN" : "法国"
5150 }
5151 },
5152 "location" : {
5153 "accuracy_radius" : 100,
5154 "latitude" : 46,
5155 "longitude" : 2,
5156 "time_zone" : "Europe/Paris"
5157 },
5158 "registered_country" : {
5159 "geoname_id" : 3017382,
5160 "is_in_european_union" : true,
5161 "iso_code" : "FR",
5162 "names" : {
5163 "de" : "Frankreich",
5164 "en" : "France",
5165 "es" : "Francia",
5166 "fr" : "France",
5167 "ja" : "フランス共和国",
5168 "pt-BR" : "França",
5169 "ru" : "Франция",
5170 "zh-CN" : "法国"
5171 }
5172 }
5173 }
5174 },
5175 {
5176 "2a02:e040::/29" : {
5177 "continent" : {
5178 "code" : "EU",
5179 "geoname_id" : 6255148,
5180 "names" : {
5181 "de" : "Europa",
5182 "en" : "Europe",
5183 "es" : "Europa",
5184 "fr" : "Europe",
5185 "ja" : "ヨーロッパ",
5186 "pt-BR" : "Europa",
5187 "ru" : "Европа",
5188 "zh-CN" : "欧洲"
5189 }
5190 },
5191 "country" : {
5192 "geoname_id" : 2750405,
5193 "is_in_european_union" : true,
5194 "iso_code" : "NL",
5195 "names" : {
5196 "de" : "Niederlande",
5197 "en" : "Netherlands",
5198 "es" : "Holanda",
5199 "fr" : "Pays-Bas",
5200 "ja" : "オランダ王国",
5201 "pt-BR" : "Países Baixos",
5202 "ru" : "Нидерланды",
5203 "zh-CN" : "荷兰"
5204 }
5205 },
5206 "location" : {
5207 "accuracy_radius" : 100,
5208 "latitude" : 52.5,
5209 "longitude" : 5.75,
5210 "time_zone" : "Europe/Amsterdam"
5211 },
5212 "registered_country" : {
5213 "geoname_id" : 2750405,
5214 "is_in_european_union" : true,
5215 "iso_code" : "NL",
5216 "names" : {
5217 "de" : "Niederlande",
5218 "en" : "Netherlands",
5219 "es" : "Holanda",
5220 "fr" : "Pays-Bas",
5221 "ja" : "オランダ王国",
5222 "pt-BR" : "Países Baixos",
5223 "ru" : "Нидерланды",
5224 "zh-CN" : "荷兰"
5225 }
5226 }
5227 }
5228 },
5229 {
5230 "2a02:e080::/29" : {
5231 "continent" : {
5232 "code" : "AS",
5233 "geoname_id" : 6255147,
5234 "names" : {
5235 "de" : "Asien",
5236 "en" : "Asia",
5237 "es" : "Asia",
5238 "fr" : "Asie",
5239 "ja" : "アジア",
5240 "pt-BR" : "Ásia",
5241 "ru" : "Азия",
5242 "zh-CN" : "亚洲"
5243 }
5244 },
5245 "country" : {
5246 "geoname_id" : 285570,
5247 "iso_code" : "KW",
5248 "names" : {
5249 "de" : "Kuwait",
5250 "en" : "Kuwait",
5251 "es" : "Kuwait",
5252 "fr" : "Koweït",
5253 "ja" : "クウェート",
5254 "pt-BR" : "Kuwait",
5255 "ru" : "Кувейт",
5256 "zh-CN" : "科威特"
5257 }
5258 },
5259 "location" : {
5260 "accuracy_radius" : 100,
5261 "latitude" : 29.5,
5262 "longitude" : 47.75,
5263 "time_zone" : "Asia/Kuwait"
5264 },
5265 "registered_country" : {
5266 "geoname_id" : 285570,
5267 "iso_code" : "KW",
5268 "names" : {
5269 "de" : "Kuwait",
5270 "en" : "Kuwait",
5271 "es" : "Kuwait",
5272 "fr" : "Koweït",
5273 "ja" : "クウェート",
5274 "pt-BR" : "Kuwait",
5275 "ru" : "Кувейт",
5276 "zh-CN" : "科威特"
5277 }
5278 }
5279 }
5280 },
5281 {
5282 "2a02:e0c0::/29" : {
5283 "continent" : {
5284 "code" : "EU",
5285 "geoname_id" : 6255148,
5286 "names" : {
5287 "de" : "Europa",
5288 "en" : "Europe",
5289 "es" : "Europa",
5290 "fr" : "Europe",
5291 "ja" : "ヨーロッパ",
5292 "pt-BR" : "Europa",
5293 "ru" : "Европа",
5294 "zh-CN" : "欧洲"
5295 }
5296 },
5297 "country" : {
5298 "geoname_id" : 2658434,
5299 "iso_code" : "CH",
5300 "names" : {
5301 "de" : "Schweiz",
5302 "en" : "Switzerland",
5303 "es" : "Suiza",
5304 "fr" : "Suisse",
5305 "ja" : "スイス連邦",
5306 "pt-BR" : "Suíça",
5307 "ru" : "Швейцария",
5308 "zh-CN" : "瑞士"
5309 }
5310 },
5311 "location" : {
5312 "accuracy_radius" : 100,
5313 "latitude" : 47.00016,
5314 "longitude" : 8.01427,
5315 "time_zone" : "Europe/Zurich"
5316 },
5317 "registered_country" : {
5318 "geoname_id" : 2658434,
5319 "iso_code" : "CH",
5320 "names" : {
5321 "de" : "Schweiz",
5322 "en" : "Switzerland",
5323 "es" : "Suiza",
5324 "fr" : "Suisse",
5325 "ja" : "スイス連邦",
5326 "pt-BR" : "Suíça",
5327 "ru" : "Швейцария",
5328 "zh-CN" : "瑞士"
5329 }
5330 }
5331 }
5332 },
5333 {
5334 "2a02:e100::/29" : {
5335 "continent" : {
5336 "code" : "EU",
5337 "geoname_id" : 6255148,
5338 "names" : {
5339 "de" : "Europa",
5340 "en" : "Europe",
5341 "es" : "Europa",
5342 "fr" : "Europe",
5343 "ja" : "ヨーロッパ",
5344 "pt-BR" : "Europa",
5345 "ru" : "Европа",
5346 "zh-CN" : "欧洲"
5347 }
5348 },
5349 "country" : {
5350 "geoname_id" : 2635167,
5351 "is_in_european_union" : true,
5352 "iso_code" : "GB",
5353 "names" : {
5354 "de" : "Vereinigtes Königreich",
5355 "en" : "United Kingdom",
5356 "es" : "Reino Unido",
5357 "fr" : "Royaume-Uni",
5358 "ja" : "イギリス",
5359 "pt-BR" : "Reino Unido",
5360 "ru" : "Великобритания",
5361 "zh-CN" : "英国"
5362 }
5363 },
5364 "location" : {
5365 "accuracy_radius" : 100,
5366 "latitude" : 54.75844,
5367 "longitude" : -2.69531,
5368 "time_zone" : "Europe/London"
5369 },
5370 "registered_country" : {
5371 "geoname_id" : 2635167,
5372 "is_in_european_union" : true,
5373 "iso_code" : "GB",
5374 "names" : {
5375 "de" : "Vereinigtes Königreich",
5376 "en" : "United Kingdom",
5377 "es" : "Reino Unido",
5378 "fr" : "Royaume-Uni",
5379 "ja" : "イギリス",
5380 "pt-BR" : "Reino Unido",
5381 "ru" : "Великобритания",
5382 "zh-CN" : "英国"
5383 }
5384 }
5385 }
5386 },
5387 {
5388 "2a02:e140::/29" : {
5389 "continent" : {
5390 "code" : "EU",
5391 "geoname_id" : 6255148,
5392 "names" : {
5393 "de" : "Europa",
5394 "en" : "Europe",
5395 "es" : "Europa",
5396 "fr" : "Europe",
5397 "ja" : "ヨーロッパ",
5398 "pt-BR" : "Europa",
5399 "ru" : "Европа",
5400 "zh-CN" : "欧洲"
5401 }
5402 },
5403 "country" : {
5404 "geoname_id" : 798544,
5405 "is_in_european_union" : true,
5406 "iso_code" : "PL",
5407 "names" : {
5408 "de" : "Polen",
5409 "en" : "Poland",
5410 "es" : "Polonia",
5411 "fr" : "Pologne",
5412 "ja" : "ポーランド共和国",
5413 "pt-BR" : "Polônia",
5414 "ru" : "Польша",
5415 "zh-CN" : "波兰"
5416 }
5417 },
5418 "location" : {
5419 "accuracy_radius" : 100,
5420 "latitude" : 52,
5421 "longitude" : 20,
5422 "time_zone" : "Europe/Warsaw"
5423 },
5424 "registered_country" : {
5425 "geoname_id" : 798544,
5426 "is_in_european_union" : true,
5427 "iso_code" : "PL",
5428 "names" : {
5429 "de" : "Polen",
5430 "en" : "Poland",
5431 "es" : "Polonia",
5432 "fr" : "Pologne",
5433 "ja" : "ポーランド共和国",
5434 "pt-BR" : "Polônia",
5435 "ru" : "Польша",
5436 "zh-CN" : "波兰"
5437 }
5438 }
5439 }
5440 },
5441 {
5442 "2a02:e180::/29" : {
5443 "continent" : {
5444 "code" : "EU",
5445 "geoname_id" : 6255148,
5446 "names" : {
5447 "de" : "Europa",
5448 "en" : "Europe",
5449 "es" : "Europa",
5450 "fr" : "Europe",
5451 "ja" : "ヨーロッパ",
5452 "pt-BR" : "Europa",
5453 "ru" : "Европа",
5454 "zh-CN" : "欧洲"
5455 }
5456 },
5457 "country" : {
5458 "geoname_id" : 2635167,
5459 "is_in_european_union" : true,
5460 "iso_code" : "GB",
5461 "names" : {
5462 "de" : "Vereinigtes Königreich",
5463 "en" : "United Kingdom",
5464 "es" : "Reino Unido",
5465 "fr" : "Royaume-Uni",
5466 "ja" : "イギリス",
5467 "pt-BR" : "Reino Unido",
5468 "ru" : "Великобритания",
5469 "zh-CN" : "英国"
5470 }
5471 },
5472 "location" : {
5473 "accuracy_radius" : 100,
5474 "latitude" : 54.75844,
5475 "longitude" : -2.69531,
5476 "time_zone" : "Europe/London"
5477 },
5478 "registered_country" : {
5479 "geoname_id" : 2635167,
5480 "is_in_european_union" : true,
5481 "iso_code" : "GB",
5482 "names" : {
5483 "de" : "Vereinigtes Königreich",
5484 "en" : "United Kingdom",
5485 "es" : "Reino Unido",
5486 "fr" : "Royaume-Uni",
5487 "ja" : "イギリス",
5488 "pt-BR" : "Reino Unido",
5489 "ru" : "Великобритания",
5490 "zh-CN" : "英国"
5491 }
5492 }
5493 }
5494 },
5495 {
5496 "2a02:e1c0::/29" : {
5497 "continent" : {
5498 "code" : "EU",
5499 "geoname_id" : 6255148,
5500 "names" : {
5501 "de" : "Europa",
5502 "en" : "Europe",
5503 "es" : "Europa",
5504 "fr" : "Europe",
5505 "ja" : "ヨーロッパ",
5506 "pt-BR" : "Europa",
5507 "ru" : "Европа",
5508 "zh-CN" : "欧洲"
5509 }
5510 },
5511 "country" : {
5512 "geoname_id" : 2750405,
5513 "is_in_european_union" : true,
5514 "iso_code" : "NL",
5515 "names" : {
5516 "de" : "Niederlande",
5517 "en" : "Netherlands",
5518 "es" : "Holanda",
5519 "fr" : "Pays-Bas",
5520 "ja" : "オランダ王国",
5521 "pt-BR" : "Países Baixos",
5522 "ru" : "Нидерланды",
5523 "zh-CN" : "荷兰"
5524 }
5525 },
5526 "location" : {
5527 "accuracy_radius" : 100,
5528 "latitude" : 52.5,
5529 "longitude" : 5.75,
5530 "time_zone" : "Europe/Amsterdam"
5531 },
5532 "registered_country" : {
5533 "geoname_id" : 2750405,
5534 "is_in_european_union" : true,
5535 "iso_code" : "NL",
5536 "names" : {
5537 "de" : "Niederlande",
5538 "en" : "Netherlands",
5539 "es" : "Holanda",
5540 "fr" : "Pays-Bas",
5541 "ja" : "オランダ王国",
5542 "pt-BR" : "Países Baixos",
5543 "ru" : "Нидерланды",
5544 "zh-CN" : "荷兰"
5545 }
5546 }
5547 }
5548 },
5549 {
5550 "2a02:e200::/30" : {
5551 "continent" : {
5552 "code" : "EU",
5553 "geoname_id" : 6255148,
5554 "names" : {
5555 "de" : "Europa",
5556 "en" : "Europe",
5557 "es" : "Europa",
5558 "fr" : "Europe",
5559 "ja" : "ヨーロッパ",
5560 "pt-BR" : "Europa",
5561 "ru" : "Европа",
5562 "zh-CN" : "欧洲"
5563 }
5564 },
5565 "country" : {
5566 "geoname_id" : 2782113,
5567 "is_in_european_union" : true,
5568 "iso_code" : "AT",
5569 "names" : {
5570 "de" : "Österreich",
5571 "en" : "Austria",
5572 "es" : "Austria",
5573 "fr" : "Autriche",
5574 "ja" : "オーストリア共和国",
5575 "pt-BR" : "Áustria",
5576 "ru" : "Австрия",
5577 "zh-CN" : "奥地利"
5578 }
5579 },
5580 "location" : {
5581 "accuracy_radius" : 100,
5582 "latitude" : 47.33333,
5583 "longitude" : 13.33333,
5584 "time_zone" : "Europe/Vienna"
5585 },
5586 "registered_country" : {
5587 "geoname_id" : 2782113,
5588 "is_in_european_union" : true,
5589 "iso_code" : "AT",
5590 "names" : {
5591 "de" : "Österreich",
5592 "en" : "Austria",
5593 "es" : "Austria",
5594 "fr" : "Autriche",
5595 "ja" : "オーストリア共和国",
5596 "pt-BR" : "Áustria",
5597 "ru" : "Австрия",
5598 "zh-CN" : "奥地利"
5599 }
5600 }
5601 }
5602 },
5603 {
5604 "2a02:e220::/30" : {
5605 "continent" : {
5606 "code" : "AS",
5607 "geoname_id" : 6255147,
5608 "names" : {
5609 "de" : "Asien",
5610 "en" : "Asia",
5611 "es" : "Asia",
5612 "fr" : "Asie",
5613 "ja" : "アジア",
5614 "pt-BR" : "Ásia",
5615 "ru" : "Азия",
5616 "zh-CN" : "亚洲"
5617 }
5618 },
5619 "country" : {
5620 "geoname_id" : 102358,
5621 "iso_code" : "SA",
5622 "names" : {
5623 "de" : "Saudi-Arabien",
5624 "en" : "Saudi Arabia",
5625 "es" : "Arabia Saudita",
5626 "fr" : "Arabie saoudite",
5627 "ja" : "サウジアラビア王国",
5628 "pt-BR" : "Arábia Saudita",
5629 "ru" : "Саудовская Аравия",
5630 "zh-CN" : "沙特阿拉伯"
5631 }
5632 },
5633 "location" : {
5634 "accuracy_radius" : 100,
5635 "latitude" : 25,
5636 "longitude" : 45,
5637 "time_zone" : "Asia/Riyadh"
5638 },
5639 "registered_country" : {
5640 "geoname_id" : 102358,
5641 "iso_code" : "SA",
5642 "names" : {
5643 "de" : "Saudi-Arabien",
5644 "en" : "Saudi Arabia",
5645 "es" : "Arabia Saudita",
5646 "fr" : "Arabie saoudite",
5647 "ja" : "サウジアラビア王国",
5648 "pt-BR" : "Arábia Saudita",
5649 "ru" : "Саудовская Аравия",
5650 "zh-CN" : "沙特阿拉伯"
5651 }
5652 }
5653 }
5654 },
5655 {
5656 "2a02:e240::/29" : {
5657 "continent" : {
5658 "code" : "EU",
5659 "geoname_id" : 6255148,
5660 "names" : {
5661 "de" : "Europa",
5662 "en" : "Europe",
5663 "es" : "Europa",
5664 "fr" : "Europe",
5665 "ja" : "ヨーロッパ",
5666 "pt-BR" : "Europa",
5667 "ru" : "Европа",
5668 "zh-CN" : "欧洲"
5669 }
5670 },
5671 "country" : {
5672 "geoname_id" : 2921044,
5673 "is_in_european_union" : true,
5674 "iso_code" : "DE",
5675 "names" : {
5676 "de" : "Deutschland",
5677 "en" : "Germany",
5678 "es" : "Alemania",
5679 "fr" : "Allemagne",
5680 "ja" : "ドイツ連邦共和国",
5681 "pt-BR" : "Alemanha",
5682 "ru" : "Германия",
5683 "zh-CN" : "德国"
5684 }
5685 },
5686 "location" : {
5687 "accuracy_radius" : 100,
5688 "latitude" : 51.5,
5689 "longitude" : 10.5,
5690 "time_zone" : "Europe/Berlin"
5691 },
5692 "registered_country" : {
5693 "geoname_id" : 2921044,
5694 "is_in_european_union" : true,
5695 "iso_code" : "DE",
5696 "names" : {
5697 "de" : "Deutschland",
5698 "en" : "Germany",
5699 "es" : "Alemania",
5700 "fr" : "Allemagne",
5701 "ja" : "ドイツ連邦共和国",
5702 "pt-BR" : "Alemanha",
5703 "ru" : "Германия",
5704 "zh-CN" : "德国"
5705 }
5706 }
5707 }
5708 },
5709 {
5710 "2a02:e280::/29" : {
5711 "continent" : {
5712 "code" : "EU",
5713 "geoname_id" : 6255148,
5714 "names" : {
5715 "de" : "Europa",
5716 "en" : "Europe",
5717 "es" : "Europa",
5718 "fr" : "Europe",
5719 "ja" : "ヨーロッパ",
5720 "pt-BR" : "Europa",
5721 "ru" : "Европа",
5722 "zh-CN" : "欧洲"
5723 }
5724 },
5725 "country" : {
5726 "geoname_id" : 2921044,
5727 "is_in_european_union" : true,
5728 "iso_code" : "DE",
5729 "names" : {
5730 "de" : "Deutschland",
5731 "en" : "Germany",
5732 "es" : "Alemania",
5733 "fr" : "Allemagne",
5734 "ja" : "ドイツ連邦共和国",
5735 "pt-BR" : "Alemanha",
5736 "ru" : "Германия",
5737 "zh-CN" : "德国"
5738 }
5739 },
5740 "location" : {
5741 "accuracy_radius" : 100,
5742 "latitude" : 51.5,
5743 "longitude" : 10.5,
5744 "time_zone" : "Europe/Berlin"
5745 },
5746 "registered_country" : {
5747 "geoname_id" : 2921044,
5748 "is_in_european_union" : true,
5749 "iso_code" : "DE",
5750 "names" : {
5751 "de" : "Deutschland",
5752 "en" : "Germany",
5753 "es" : "Alemania",
5754 "fr" : "Allemagne",
5755 "ja" : "ドイツ連邦共和国",
5756 "pt-BR" : "Alemanha",
5757 "ru" : "Германия",
5758 "zh-CN" : "德国"
5759 }
5760 }
5761 }
5762 },
5763 {
5764 "2a02:e2c0::/29" : {
5765 "continent" : {
5766 "code" : "EU",
5767 "geoname_id" : 6255148,
5768 "names" : {
5769 "de" : "Europa",
5770 "en" : "Europe",
5771 "es" : "Europa",
5772 "fr" : "Europe",
5773 "ja" : "ヨーロッパ",
5774 "pt-BR" : "Europa",
5775 "ru" : "Европа",
5776 "zh-CN" : "欧洲"
5777 }
5778 },
5779 "country" : {
5780 "geoname_id" : 3175395,
5781 "is_in_european_union" : true,
5782 "iso_code" : "IT",
5783 "names" : {
5784 "de" : "Italien",
5785 "en" : "Italy",
5786 "es" : "Italia",
5787 "fr" : "Italie",
5788 "ja" : "イタリア共和国",
5789 "pt-BR" : "Itália",
5790 "ru" : "Италия",
5791 "zh-CN" : "意大利"
5792 }
5793 },
5794 "location" : {
5795 "accuracy_radius" : 100,
5796 "latitude" : 42.83333,
5797 "longitude" : 12.83333,
5798 "time_zone" : "Europe/Rome"
5799 },
5800 "registered_country" : {
5801 "geoname_id" : 3175395,
5802 "is_in_european_union" : true,
5803 "iso_code" : "IT",
5804 "names" : {
5805 "de" : "Italien",
5806 "en" : "Italy",
5807 "es" : "Italia",
5808 "fr" : "Italie",
5809 "ja" : "イタリア共和国",
5810 "pt-BR" : "Itália",
5811 "ru" : "Италия",
5812 "zh-CN" : "意大利"
5813 }
5814 }
5815 }
5816 },
5817 {
5818 "2a02:e300::/29" : {
5819 "continent" : {
5820 "code" : "EU",
5821 "geoname_id" : 6255148,
5822 "names" : {
5823 "de" : "Europa",
5824 "en" : "Europe",
5825 "es" : "Europa",
5826 "fr" : "Europe",
5827 "ja" : "ヨーロッパ",
5828 "pt-BR" : "Europa",
5829 "ru" : "Европа",
5830 "zh-CN" : "欧洲"
5831 }
5832 },
5833 "country" : {
5834 "geoname_id" : 630336,
5835 "iso_code" : "BY",
5836 "names" : {
5837 "de" : "Weißrussland",
5838 "en" : "Belarus",
5839 "es" : "Bielorrusia",
5840 "fr" : "Biélorussie",
5841 "ja" : "ベラルーシ共和国",
5842 "pt-BR" : "Bielo-Rússia",
5843 "ru" : "Беларусь",
5844 "zh-CN" : "白俄罗斯"
5845 }
5846 },
5847 "location" : {
5848 "accuracy_radius" : 100,
5849 "latitude" : 53,
5850 "longitude" : 28,
5851 "time_zone" : "Europe/Minsk"
5852 },
5853 "registered_country" : {
5854 "geoname_id" : 630336,
5855 "iso_code" : "BY",
5856 "names" : {
5857 "de" : "Weißrussland",
5858 "en" : "Belarus",
5859 "es" : "Bielorrusia",
5860 "fr" : "Biélorussie",
5861 "ja" : "ベラルーシ共和国",
5862 "pt-BR" : "Bielo-Rússia",
5863 "ru" : "Беларусь",
5864 "zh-CN" : "白俄罗斯"
5865 }
5866 }
5867 }
5868 },
5869 {
5870 "2a02:e340::/29" : {
5871 "continent" : {
5872 "code" : "EU",
5873 "geoname_id" : 6255148,
5874 "names" : {
5875 "de" : "Europa",
5876 "en" : "Europe",
5877 "es" : "Europa",
5878 "fr" : "Europe",
5879 "ja" : "ヨーロッパ",
5880 "pt-BR" : "Europa",
5881 "ru" : "Европа",
5882 "zh-CN" : "欧洲"
5883 }
5884 },
5885 "country" : {
5886 "geoname_id" : 3144096,
5887 "iso_code" : "NO",
5888 "names" : {
5889 "de" : "Norwegen",
5890 "en" : "Norway",
5891 "es" : "Noruega",
5892 "fr" : "Norvège",
5893 "ja" : "ノルウェー王国",
5894 "pt-BR" : "Noruega",
5895 "ru" : "Норвегия",
5896 "zh-CN" : "挪威"
5897 }
5898 },
5899 "location" : {
5900 "accuracy_radius" : 100,
5901 "latitude" : 62,
5902 "longitude" : 10,
5903 "time_zone" : "Europe/Oslo"
5904 },
5905 "registered_country" : {
5906 "geoname_id" : 3144096,
5907 "iso_code" : "NO",
5908 "names" : {
5909 "de" : "Norwegen",
5910 "en" : "Norway",
5911 "es" : "Noruega",
5912 "fr" : "Norvège",
5913 "ja" : "ノルウェー王国",
5914 "pt-BR" : "Noruega",
5915 "ru" : "Норвегия",
5916 "zh-CN" : "挪威"
5917 }
5918 }
5919 }
5920 },
5921 {
5922 "2a02:e380::/29" : {
5923 "continent" : {
5924 "code" : "EU",
5925 "geoname_id" : 6255148,
5926 "names" : {
5927 "de" : "Europa",
5928 "en" : "Europe",
5929 "es" : "Europa",
5930 "fr" : "Europe",
5931 "ja" : "ヨーロッパ",
5932 "pt-BR" : "Europa",
5933 "ru" : "Европа",
5934 "zh-CN" : "欧洲"
5935 }
5936 },
5937 "country" : {
5938 "geoname_id" : 3175395,
5939 "is_in_european_union" : true,
5940 "iso_code" : "IT",
5941 "names" : {
5942 "de" : "Italien",
5943 "en" : "Italy",
5944 "es" : "Italia",
5945 "fr" : "Italie",
5946 "ja" : "イタリア共和国",
5947 "pt-BR" : "Itália",
5948 "ru" : "Италия",
5949 "zh-CN" : "意大利"
5950 }
5951 },
5952 "location" : {
5953 "accuracy_radius" : 100,
5954 "latitude" : 42.83333,
5955 "longitude" : 12.83333,
5956 "time_zone" : "Europe/Rome"
5957 },
5958 "registered_country" : {
5959 "geoname_id" : 3175395,
5960 "is_in_european_union" : true,
5961 "iso_code" : "IT",
5962 "names" : {
5963 "de" : "Italien",
5964 "en" : "Italy",
5965 "es" : "Italia",
5966 "fr" : "Italie",
5967 "ja" : "イタリア共和国",
5968 "pt-BR" : "Itália",
5969 "ru" : "Италия",
5970 "zh-CN" : "意大利"
5971 }
5972 }
5973 }
5974 },
5975 {
5976 "2a02:e3c0::/29" : {
5977 "continent" : {
5978 "code" : "EU",
5979 "geoname_id" : 6255148,
5980 "names" : {
5981 "de" : "Europa",
5982 "en" : "Europe",
5983 "es" : "Europa",
5984 "fr" : "Europe",
5985 "ja" : "ヨーロッパ",
5986 "pt-BR" : "Europa",
5987 "ru" : "Европа",
5988 "zh-CN" : "欧洲"
5989 }
5990 },
5991 "country" : {
5992 "geoname_id" : 3017382,
5993 "is_in_european_union" : true,
5994 "iso_code" : "FR",
5995 "names" : {
5996 "de" : "Frankreich",
5997 "en" : "France",
5998 "es" : "Francia",
5999 "fr" : "France",
6000 "ja" : "フランス共和国",
6001 "pt-BR" : "França",
6002 "ru" : "Франция",
6003 "zh-CN" : "法国"
6004 }
6005 },
6006 "location" : {
6007 "accuracy_radius" : 100,
6008 "latitude" : 46,
6009 "longitude" : 2,
6010 "time_zone" : "Europe/Paris"
6011 },
6012 "registered_country" : {
6013 "geoname_id" : 3017382,
6014 "is_in_european_union" : true,
6015 "iso_code" : "FR",
6016 "names" : {
6017 "de" : "Frankreich",
6018 "en" : "France",
6019 "es" : "Francia",
6020 "fr" : "France",
6021 "ja" : "フランス共和国",
6022 "pt-BR" : "França",
6023 "ru" : "Франция",
6024 "zh-CN" : "法国"
6025 }
6026 }
6027 }
6028 },
6029 {
6030 "2a02:e400::/29" : {
6031 "continent" : {
6032 "code" : "EU",
6033 "geoname_id" : 6255148,
6034 "names" : {
6035 "de" : "Europa",
6036 "en" : "Europe",
6037 "es" : "Europa",
6038 "fr" : "Europe",
6039 "ja" : "ヨーロッパ",
6040 "pt-BR" : "Europa",
6041 "ru" : "Европа",
6042 "zh-CN" : "欧洲"
6043 }
6044 },
6045 "country" : {
6046 "geoname_id" : 2661886,
6047 "is_in_european_union" : true,
6048 "iso_code" : "SE",
6049 "names" : {
6050 "de" : "Schweden",
6051 "en" : "Sweden",
6052 "es" : "Suecia",
6053 "fr" : "Suède",
6054 "ja" : "スウェーデン王国",
6055 "pt-BR" : "Suécia",
6056 "ru" : "Швеция",
6057 "zh-CN" : "瑞典"
6058 }
6059 },
6060 "location" : {
6061 "accuracy_radius" : 100,
6062 "latitude" : 62,
6063 "longitude" : 15,
6064 "time_zone" : "Europe/Stockholm"
6065 },
6066 "registered_country" : {
6067 "geoname_id" : 2661886,
6068 "is_in_european_union" : true,
6069 "iso_code" : "SE",
6070 "names" : {
6071 "de" : "Schweden",
6072 "en" : "Sweden",
6073 "es" : "Suecia",
6074 "fr" : "Suède",
6075 "ja" : "スウェーデン王国",
6076 "pt-BR" : "Suécia",
6077 "ru" : "Швеция",
6078 "zh-CN" : "瑞典"
6079 }
6080 }
6081 }
6082 },
6083 {
6084 "2a02:e440::/29" : {
6085 "continent" : {
6086 "code" : "EU",
6087 "geoname_id" : 6255148,
6088 "names" : {
6089 "de" : "Europa",
6090 "en" : "Europe",
6091 "es" : "Europa",
6092 "fr" : "Europe",
6093 "ja" : "ヨーロッパ",
6094 "pt-BR" : "Europa",
6095 "ru" : "Европа",
6096 "zh-CN" : "欧洲"
6097 }
6098 },
6099 "country" : {
6100 "geoname_id" : 2921044,
6101 "is_in_european_union" : true,
6102 "iso_code" : "DE",
6103 "names" : {
6104 "de" : "Deutschland",
6105 "en" : "Germany",
6106 "es" : "Alemania",
6107 "fr" : "Allemagne",
6108 "ja" : "ドイツ連邦共和国",
6109 "pt-BR" : "Alemanha",
6110 "ru" : "Германия",
6111 "zh-CN" : "德国"
6112 }
6113 },
6114 "location" : {
6115 "accuracy_radius" : 100,
6116 "latitude" : 51.5,
6117 "longitude" : 10.5,
6118 "time_zone" : "Europe/Berlin"
6119 },
6120 "registered_country" : {
6121 "geoname_id" : 2921044,
6122 "is_in_european_union" : true,
6123 "iso_code" : "DE",
6124 "names" : {
6125 "de" : "Deutschland",
6126 "en" : "Germany",
6127 "es" : "Alemania",
6128 "fr" : "Allemagne",
6129 "ja" : "ドイツ連邦共和国",
6130 "pt-BR" : "Alemanha",
6131 "ru" : "Германия",
6132 "zh-CN" : "德国"
6133 }
6134 }
6135 }
6136 },
6137 {
6138 "2a02:e480::/29" : {
6139 "continent" : {
6140 "code" : "EU",
6141 "geoname_id" : 6255148,
6142 "names" : {
6143 "de" : "Europa",
6144 "en" : "Europe",
6145 "es" : "Europa",
6146 "fr" : "Europe",
6147 "ja" : "ヨーロッパ",
6148 "pt-BR" : "Europa",
6149 "ru" : "Европа",
6150 "zh-CN" : "欧洲"
6151 }
6152 },
6153 "country" : {
6154 "geoname_id" : 2017370,
6155 "iso_code" : "RU",
6156 "names" : {
6157 "de" : "Russland",
6158 "en" : "Russia",
6159 "es" : "Rusia",
6160 "fr" : "Russie",
6161 "ja" : "ロシア",
6162 "pt-BR" : "Rússia",
6163 "ru" : "Россия",
6164 "zh-CN" : "俄罗斯"
6165 }
6166 },
6167 "location" : {
6168 "accuracy_radius" : 100,
6169 "latitude" : 60,
6170 "longitude" : 100
6171 },
6172 "registered_country" : {
6173 "geoname_id" : 2017370,
6174 "iso_code" : "RU",
6175 "names" : {
6176 "de" : "Russland",
6177 "en" : "Russia",
6178 "es" : "Rusia",
6179 "fr" : "Russie",
6180 "ja" : "ロシア",
6181 "pt-BR" : "Rússia",
6182 "ru" : "Россия",
6183 "zh-CN" : "俄罗斯"
6184 }
6185 }
6186 }
6187 },
6188 {
6189 "2a02:e4c0::/29" : {
6190 "continent" : {
6191 "code" : "EU",
6192 "geoname_id" : 6255148,
6193 "names" : {
6194 "de" : "Europa",
6195 "en" : "Europe",
6196 "es" : "Europa",
6197 "fr" : "Europe",
6198 "ja" : "ヨーロッパ",
6199 "pt-BR" : "Europa",
6200 "ru" : "Европа",
6201 "zh-CN" : "欧洲"
6202 }
6203 },
6204 "country" : {
6205 "geoname_id" : 2750405,
6206 "is_in_european_union" : true,
6207 "iso_code" : "NL",
6208 "names" : {
6209 "de" : "Niederlande",
6210 "en" : "Netherlands",
6211 "es" : "Holanda",
6212 "fr" : "Pays-Bas",
6213 "ja" : "オランダ王国",
6214 "pt-BR" : "Países Baixos",
6215 "ru" : "Нидерланды",
6216 "zh-CN" : "荷兰"
6217 }
6218 },
6219 "location" : {
6220 "accuracy_radius" : 100,
6221 "latitude" : 52.5,
6222 "longitude" : 5.75,
6223 "time_zone" : "Europe/Amsterdam"
6224 },
6225 "registered_country" : {
6226 "geoname_id" : 2750405,
6227 "is_in_european_union" : true,
6228 "iso_code" : "NL",
6229 "names" : {
6230 "de" : "Niederlande",
6231 "en" : "Netherlands",
6232 "es" : "Holanda",
6233 "fr" : "Pays-Bas",
6234 "ja" : "オランダ王国",
6235 "pt-BR" : "Países Baixos",
6236 "ru" : "Нидерланды",
6237 "zh-CN" : "荷兰"
6238 }
6239 }
6240 }
6241 },
6242 {
6243 "2a02:e500::/29" : {
6244 "continent" : {
6245 "code" : "EU",
6246 "geoname_id" : 6255148,
6247 "names" : {
6248 "de" : "Europa",
6249 "en" : "Europe",
6250 "es" : "Europa",
6251 "fr" : "Europe",
6252 "ja" : "ヨーロッパ",
6253 "pt-BR" : "Europa",
6254 "ru" : "Европа",
6255 "zh-CN" : "欧洲"
6256 }
6257 },
6258 "country" : {
6259 "geoname_id" : 3017382,
6260 "is_in_european_union" : true,
6261 "iso_code" : "FR",
6262 "names" : {
6263 "de" : "Frankreich",
6264 "en" : "France",
6265 "es" : "Francia",
6266 "fr" : "France",
6267 "ja" : "フランス共和国",
6268 "pt-BR" : "França",
6269 "ru" : "Франция",
6270 "zh-CN" : "法国"
6271 }
6272 },
6273 "location" : {
6274 "accuracy_radius" : 100,
6275 "latitude" : 46,
6276 "longitude" : 2,
6277 "time_zone" : "Europe/Paris"
6278 },
6279 "registered_country" : {
6280 "geoname_id" : 3017382,
6281 "is_in_european_union" : true,
6282 "iso_code" : "FR",
6283 "names" : {
6284 "de" : "Frankreich",
6285 "en" : "France",
6286 "es" : "Francia",
6287 "fr" : "France",
6288 "ja" : "フランス共和国",
6289 "pt-BR" : "França",
6290 "ru" : "Франция",
6291 "zh-CN" : "法国"
6292 }
6293 }
6294 }
6295 },
6296 {
6297 "2a02:e540::/29" : {
6298 "continent" : {
6299 "code" : "EU",
6300 "geoname_id" : 6255148,
6301 "names" : {
6302 "de" : "Europa",
6303 "en" : "Europe",
6304 "es" : "Europa",
6305 "fr" : "Europe",
6306 "ja" : "ヨーロッパ",
6307 "pt-BR" : "Europa",
6308 "ru" : "Европа",
6309 "zh-CN" : "欧洲"
6310 }
6311 },
6312 "country" : {
6313 "geoname_id" : 6290252,
6314 "iso_code" : "RS",
6315 "names" : {
6316 "de" : "Serbien",
6317 "en" : "Serbia",
6318 "es" : "Serbia",
6319 "fr" : "Serbie",
6320 "ja" : "セルビア",
6321 "pt-BR" : "Sérvia",
6322 "ru" : "Сербия",
6323 "zh-CN" : "塞尔维亚"
6324 }
6325 },
6326 "location" : {
6327 "accuracy_radius" : 100,
6328 "latitude" : 44.81892,
6329 "longitude" : 20.45998,
6330 "time_zone" : "Europe/Belgrade"
6331 },
6332 "registered_country" : {
6333 "geoname_id" : 6290252,
6334 "iso_code" : "RS",
6335 "names" : {
6336 "de" : "Serbien",
6337 "en" : "Serbia",
6338 "es" : "Serbia",
6339 "fr" : "Serbie",
6340 "ja" : "セルビア",
6341 "pt-BR" : "Sérvia",
6342 "ru" : "Сербия",
6343 "zh-CN" : "塞尔维亚"
6344 }
6345 }
6346 }
6347 },
6348 {
6349 "2a02:e580::/29" : {
6350 "continent" : {
6351 "code" : "EU",
6352 "geoname_id" : 6255148,
6353 "names" : {
6354 "de" : "Europa",
6355 "en" : "Europe",
6356 "es" : "Europa",
6357 "fr" : "Europe",
6358 "ja" : "ヨーロッパ",
6359 "pt-BR" : "Europa",
6360 "ru" : "Европа",
6361 "zh-CN" : "欧洲"
6362 }
6363 },
6364 "country" : {
6365 "geoname_id" : 3144096,
6366 "iso_code" : "NO",
6367 "names" : {
6368 "de" : "Norwegen",
6369 "en" : "Norway",
6370 "es" : "Noruega",
6371 "fr" : "Norvège",
6372 "ja" : "ノルウェー王国",
6373 "pt-BR" : "Noruega",
6374 "ru" : "Норвегия",
6375 "zh-CN" : "挪威"
6376 }
6377 },
6378 "location" : {
6379 "accuracy_radius" : 100,
6380 "latitude" : 62,
6381 "longitude" : 10,
6382 "time_zone" : "Europe/Oslo"
6383 },
6384 "registered_country" : {
6385 "geoname_id" : 3144096,
6386 "iso_code" : "NO",
6387 "names" : {
6388 "de" : "Norwegen",
6389 "en" : "Norway",
6390 "es" : "Noruega",
6391 "fr" : "Norvège",
6392 "ja" : "ノルウェー王国",
6393 "pt-BR" : "Noruega",
6394 "ru" : "Норвегия",
6395 "zh-CN" : "挪威"
6396 }
6397 }
6398 }
6399 },
6400 {
6401 "2a02:e5c0::/29" : {
6402 "continent" : {
6403 "code" : "EU",
6404 "geoname_id" : 6255148,
6405 "names" : {
6406 "de" : "Europa",
6407 "en" : "Europe",
6408 "es" : "Europa",
6409 "fr" : "Europe",
6410 "ja" : "ヨーロッパ",
6411 "pt-BR" : "Europa",
6412 "ru" : "Европа",
6413 "zh-CN" : "欧洲"
6414 }
6415 },
6416 "country" : {
6417 "geoname_id" : 2017370,
6418 "iso_code" : "RU",
6419 "names" : {
6420 "de" : "Russland",
6421 "en" : "Russia",
6422 "es" : "Rusia",
6423 "fr" : "Russie",
6424 "ja" : "ロシア",
6425 "pt-BR" : "Rússia",
6426 "ru" : "Россия",
6427 "zh-CN" : "俄罗斯"
6428 }
6429 },
6430 "location" : {
6431 "accuracy_radius" : 100,
6432 "latitude" : 60,
6433 "longitude" : 100
6434 },
6435 "registered_country" : {
6436 "geoname_id" : 2017370,
6437 "iso_code" : "RU",
6438 "names" : {
6439 "de" : "Russland",
6440 "en" : "Russia",
6441 "es" : "Rusia",
6442 "fr" : "Russie",
6443 "ja" : "ロシア",
6444 "pt-BR" : "Rússia",
6445 "ru" : "Россия",
6446 "zh-CN" : "俄罗斯"
6447 }
6448 }
6449 }
6450 },
6451 {
6452 "2a02:e600::/30" : {
6453 "continent" : {
6454 "code" : "EU",
6455 "geoname_id" : 6255148,
6456 "names" : {
6457 "de" : "Europa",
6458 "en" : "Europe",
6459 "es" : "Europa",
6460 "fr" : "Europe",
6461 "ja" : "ヨーロッパ",
6462 "pt-BR" : "Europa",
6463 "ru" : "Европа",
6464 "zh-CN" : "欧洲"
6465 }
6466 },
6467 "country" : {
6468 "geoname_id" : 3017382,
6469 "is_in_european_union" : true,
6470 "iso_code" : "FR",
6471 "names" : {
6472 "de" : "Frankreich",
6473 "en" : "France",
6474 "es" : "Francia",
6475 "fr" : "France",
6476 "ja" : "フランス共和国",
6477 "pt-BR" : "França",
6478 "ru" : "Франция",
6479 "zh-CN" : "法国"
6480 }
6481 },
6482 "location" : {
6483 "accuracy_radius" : 100,
6484 "latitude" : 46,
6485 "longitude" : 2,
6486 "time_zone" : "Europe/Paris"
6487 },
6488 "registered_country" : {
6489 "geoname_id" : 3017382,
6490 "is_in_european_union" : true,
6491 "iso_code" : "FR",
6492 "names" : {
6493 "de" : "Frankreich",
6494 "en" : "France",
6495 "es" : "Francia",
6496 "fr" : "France",
6497 "ja" : "フランス共和国",
6498 "pt-BR" : "França",
6499 "ru" : "Франция",
6500 "zh-CN" : "法国"
6501 }
6502 }
6503 }
6504 },
6505 {
6506 "2a02:e620::/30" : {
6507 "continent" : {
6508 "code" : "EU",
6509 "geoname_id" : 6255148,
6510 "names" : {
6511 "de" : "Europa",
6512 "en" : "Europe",
6513 "es" : "Europa",
6514 "fr" : "Europe",
6515 "ja" : "ヨーロッパ",
6516 "pt-BR" : "Europa",
6517 "ru" : "Европа",
6518 "zh-CN" : "欧洲"
6519 }
6520 },
6521 "country" : {
6522 "geoname_id" : 2017370,
6523 "iso_code" : "RU",
6524 "names" : {
6525 "de" : "Russland",
6526 "en" : "Russia",
6527 "es" : "Rusia",
6528 "fr" : "Russie",
6529 "ja" : "ロシア",
6530 "pt-BR" : "Rússia",
6531 "ru" : "Россия",
6532 "zh-CN" : "俄罗斯"
6533 }
6534 },
6535 "location" : {
6536 "accuracy_radius" : 100,
6537 "latitude" : 60,
6538 "longitude" : 100
6539 },
6540 "registered_country" : {
6541 "geoname_id" : 2017370,
6542 "iso_code" : "RU",
6543 "names" : {
6544 "de" : "Russland",
6545 "en" : "Russia",
6546 "es" : "Rusia",
6547 "fr" : "Russie",
6548 "ja" : "ロシア",
6549 "pt-BR" : "Rússia",
6550 "ru" : "Россия",
6551 "zh-CN" : "俄罗斯"
6552 }
6553 }
6554 }
6555 },
6556 {
6557 "2a02:e640::/29" : {
6558 "continent" : {
6559 "code" : "EU",
6560 "geoname_id" : 6255148,
6561 "names" : {
6562 "de" : "Europa",
6563 "en" : "Europe",
6564 "es" : "Europa",
6565 "fr" : "Europe",
6566 "ja" : "ヨーロッパ",
6567 "pt-BR" : "Europa",
6568 "ru" : "Европа",
6569 "zh-CN" : "欧洲"
6570 }
6571 },
6572 "country" : {
6573 "geoname_id" : 3017382,
6574 "is_in_european_union" : true,
6575 "iso_code" : "FR",
6576 "names" : {
6577 "de" : "Frankreich",
6578 "en" : "France",
6579 "es" : "Francia",
6580 "fr" : "France",
6581 "ja" : "フランス共和国",
6582 "pt-BR" : "França",
6583 "ru" : "Франция",
6584 "zh-CN" : "法国"
6585 }
6586 },
6587 "location" : {
6588 "accuracy_radius" : 100,
6589 "latitude" : 46,
6590 "longitude" : 2,
6591 "time_zone" : "Europe/Paris"
6592 },
6593 "registered_country" : {
6594 "geoname_id" : 3017382,
6595 "is_in_european_union" : true,
6596 "iso_code" : "FR",
6597 "names" : {
6598 "de" : "Frankreich",
6599 "en" : "France",
6600 "es" : "Francia",
6601 "fr" : "France",
6602 "ja" : "フランス共和国",
6603 "pt-BR" : "França",
6604 "ru" : "Франция",
6605 "zh-CN" : "法国"
6606 }
6607 }
6608 }
6609 },
6610 {
6611 "2a02:e680::/29" : {
6612 "continent" : {
6613 "code" : "AS",
6614 "geoname_id" : 6255147,
6615 "names" : {
6616 "de" : "Asien",
6617 "en" : "Asia",
6618 "es" : "Asia",
6619 "fr" : "Asie",
6620 "ja" : "アジア",
6621 "pt-BR" : "Ásia",
6622 "ru" : "Азия",
6623 "zh-CN" : "亚洲"
6624 }
6625 },
6626 "country" : {
6627 "geoname_id" : 248816,
6628 "iso_code" : "JO",
6629 "names" : {
6630 "de" : "Jordanien",
6631 "en" : "Hashemite Kingdom of Jordan",
6632 "es" : "Jordania",
6633 "fr" : "Jordanie",
6634 "ja" : "ヨルダン・ハシミテ王国",
6635 "pt-BR" : "Jordânia",
6636 "ru" : "Иордания",
6637 "zh-CN" : "约旦"
6638 }
6639 },
6640 "location" : {
6641 "accuracy_radius" : 100,
6642 "latitude" : 31,
6643 "longitude" : 36,
6644 "time_zone" : "Asia/Amman"
6645 },
6646 "registered_country" : {
6647 "geoname_id" : 248816,
6648 "iso_code" : "JO",
6649 "names" : {
6650 "de" : "Jordanien",
6651 "en" : "Hashemite Kingdom of Jordan",
6652 "es" : "Jordania",
6653 "fr" : "Jordanie",
6654 "ja" : "ヨルダン・ハシミテ王国",
6655 "pt-BR" : "Jordânia",
6656 "ru" : "Иордания",
6657 "zh-CN" : "约旦"
6658 }
6659 }
6660 }
6661 },
6662 {
6663 "2a02:e6c0::/29" : {
6664 "continent" : {
6665 "code" : "EU",
6666 "geoname_id" : 6255148,
6667 "names" : {
6668 "de" : "Europa",
6669 "en" : "Europe",
6670 "es" : "Europa",
6671 "fr" : "Europe",
6672 "ja" : "ヨーロッパ",
6673 "pt-BR" : "Europa",
6674 "ru" : "Европа",
6675 "zh-CN" : "欧洲"
6676 }
6677 },
6678 "country" : {
6679 "geoname_id" : 2017370,
6680 "iso_code" : "RU",
6681 "names" : {
6682 "de" : "Russland",
6683 "en" : "Russia",
6684 "es" : "Rusia",
6685 "fr" : "Russie",
6686 "ja" : "ロシア",
6687 "pt-BR" : "Rússia",
6688 "ru" : "Россия",
6689 "zh-CN" : "俄罗斯"
6690 }
6691 },
6692 "location" : {
6693 "accuracy_radius" : 100,
6694 "latitude" : 60,
6695 "longitude" : 100
6696 },
6697 "registered_country" : {
6698 "geoname_id" : 2017370,
6699 "iso_code" : "RU",
6700 "names" : {
6701 "de" : "Russland",
6702 "en" : "Russia",
6703 "es" : "Rusia",
6704 "fr" : "Russie",
6705 "ja" : "ロシア",
6706 "pt-BR" : "Rússia",
6707 "ru" : "Россия",
6708 "zh-CN" : "俄罗斯"
6709 }
6710 }
6711 }
6712 },
6713 {
6714 "2a02:e700::/29" : {
6715 "continent" : {
6716 "code" : "AF",
6717 "geoname_id" : 6255146,
6718 "names" : {
6719 "de" : "Afrika",
6720 "en" : "Africa",
6721 "es" : "África",
6722 "fr" : "Afrique",
6723 "ja" : "アフリカ",
6724 "pt-BR" : "África",
6725 "ru" : "Африка",
6726 "zh-CN" : "非洲"
6727 }
6728 },
6729 "country" : {
6730 "geoname_id" : 2215636,
6731 "iso_code" : "LY",
6732 "names" : {
6733 "de" : "Libysch-Arabische Dschamahirija",
6734 "en" : "Libya",
6735 "es" : "Libia, República Árabe",
6736 "fr" : "Libye",
6737 "ja" : "社会主義人民リビア・アラブ国",
6738 "pt-BR" : "Líbia Árabe Jamahiriya",
6739 "ru" : "Ливия",
6740 "zh-CN" : "阿拉伯利比亚民众国"
6741 }
6742 },
6743 "location" : {
6744 "accuracy_radius" : 100,
6745 "latitude" : 28,
6746 "longitude" : 17,
6747 "time_zone" : "Africa/Tripoli"
6748 },
6749 "registered_country" : {
6750 "geoname_id" : 2215636,
6751 "iso_code" : "LY",
6752 "names" : {
6753 "de" : "Libysch-Arabische Dschamahirija",
6754 "en" : "Libya",
6755 "es" : "Libia, República Árabe",
6756 "fr" : "Libye",
6757 "ja" : "社会主義人民リビア・アラブ国",
6758 "pt-BR" : "Líbia Árabe Jamahiriya",
6759 "ru" : "Ливия",
6760 "zh-CN" : "阿拉伯利比亚民众国"
6761 }
6762 }
6763 }
6764 },
6765 {
6766 "2a02:e740::/29" : {
6767 "continent" : {
6768 "code" : "EU",
6769 "geoname_id" : 6255148,
6770 "names" : {
6771 "de" : "Europa",
6772 "en" : "Europe",
6773 "es" : "Europa",
6774 "fr" : "Europe",
6775 "ja" : "ヨーロッパ",
6776 "pt-BR" : "Europa",
6777 "ru" : "Европа",
6778 "zh-CN" : "欧洲"
6779 }
6780 },
6781 "country" : {
6782 "geoname_id" : 2921044,
6783 "is_in_european_union" : true,
6784 "iso_code" : "DE",
6785 "names" : {
6786 "de" : "Deutschland",
6787 "en" : "Germany",
6788 "es" : "Alemania",
6789 "fr" : "Allemagne",
6790 "ja" : "ドイツ連邦共和国",
6791 "pt-BR" : "Alemanha",
6792 "ru" : "Германия",
6793 "zh-CN" : "德国"
6794 }
6795 },
6796 "location" : {
6797 "accuracy_radius" : 100,
6798 "latitude" : 51.5,
6799 "longitude" : 10.5,
6800 "time_zone" : "Europe/Berlin"
6801 },
6802 "registered_country" : {
6803 "geoname_id" : 2921044,
6804 "is_in_european_union" : true,
6805 "iso_code" : "DE",
6806 "names" : {
6807 "de" : "Deutschland",
6808 "en" : "Germany",
6809 "es" : "Alemania",
6810 "fr" : "Allemagne",
6811 "ja" : "ドイツ連邦共和国",
6812 "pt-BR" : "Alemanha",
6813 "ru" : "Германия",
6814 "zh-CN" : "德国"
6815 }
6816 }
6817 }
6818 },
6819 {
6820 "2a02:e780::/29" : {
6821 "continent" : {
6822 "code" : "AS",
6823 "geoname_id" : 6255147,
6824 "names" : {
6825 "de" : "Asien",
6826 "en" : "Asia",
6827 "es" : "Asia",
6828 "fr" : "Asie",
6829 "ja" : "アジア",
6830 "pt-BR" : "Ásia",
6831 "ru" : "Азия",
6832 "zh-CN" : "亚洲"
6833 }
6834 },
6835 "country" : {
6836 "geoname_id" : 298795,
6837 "iso_code" : "TR",
6838 "names" : {
6839 "de" : "Türkei",
6840 "en" : "Turkey",
6841 "es" : "Turquía",
6842 "fr" : "Turquie",
6843 "ja" : "トルコ共和国",
6844 "pt-BR" : "Turquia",
6845 "ru" : "Турция",
6846 "zh-CN" : "土耳其"
6847 }
6848 },
6849 "location" : {
6850 "accuracy_radius" : 100,
6851 "latitude" : 39.05901,
6852 "longitude" : 34.91155,
6853 "time_zone" : "Europe/Istanbul"
6854 },
6855 "registered_country" : {
6856 "geoname_id" : 298795,
6857 "iso_code" : "TR",
6858 "names" : {
6859 "de" : "Türkei",
6860 "en" : "Turkey",
6861 "es" : "Turquía",
6862 "fr" : "Turquie",
6863 "ja" : "トルコ共和国",
6864 "pt-BR" : "Turquia",
6865 "ru" : "Турция",
6866 "zh-CN" : "土耳其"
6867 }
6868 }
6869 }
6870 },
6871 {
6872 "2a02:e7c0::/29" : {
6873 "continent" : {
6874 "code" : "EU",
6875 "geoname_id" : 6255148,
6876 "names" : {
6877 "de" : "Europa",
6878 "en" : "Europe",
6879 "es" : "Europa",
6880 "fr" : "Europe",
6881 "ja" : "ヨーロッパ",
6882 "pt-BR" : "Europa",
6883 "ru" : "Европа",
6884 "zh-CN" : "欧洲"
6885 }
6886 },
6887 "country" : {
6888 "geoname_id" : 798544,
6889 "is_in_european_union" : true,
6890 "iso_code" : "PL",
6891 "names" : {
6892 "de" : "Polen",
6893 "en" : "Poland",
6894 "es" : "Polonia",
6895 "fr" : "Pologne",
6896 "ja" : "ポーランド共和国",
6897 "pt-BR" : "Polônia",
6898 "ru" : "Польша",
6899 "zh-CN" : "波兰"
6900 }
6901 },
6902 "location" : {
6903 "accuracy_radius" : 100,
6904 "latitude" : 52,
6905 "longitude" : 20,
6906 "time_zone" : "Europe/Warsaw"
6907 },
6908 "registered_country" : {
6909 "geoname_id" : 798544,
6910 "is_in_european_union" : true,
6911 "iso_code" : "PL",
6912 "names" : {
6913 "de" : "Polen",
6914 "en" : "Poland",
6915 "es" : "Polonia",
6916 "fr" : "Pologne",
6917 "ja" : "ポーランド共和国",
6918 "pt-BR" : "Polônia",
6919 "ru" : "Польша",
6920 "zh-CN" : "波兰"
6921 }
6922 }
6923 }
6924 },
6925 {
6926 "2a02:e800::/29" : {
6927 "continent" : {
6928 "code" : "EU",
6929 "geoname_id" : 6255148,
6930 "names" : {
6931 "de" : "Europa",
6932 "en" : "Europe",
6933 "es" : "Europa",
6934 "fr" : "Europe",
6935 "ja" : "ヨーロッパ",
6936 "pt-BR" : "Europa",
6937 "ru" : "Европа",
6938 "zh-CN" : "欧洲"
6939 }
6940 },
6941 "country" : {
6942 "geoname_id" : 2921044,
6943 "is_in_european_union" : true,
6944 "iso_code" : "DE",
6945 "names" : {
6946 "de" : "Deutschland",
6947 "en" : "Germany",
6948 "es" : "Alemania",
6949 "fr" : "Allemagne",
6950 "ja" : "ドイツ連邦共和国",
6951 "pt-BR" : "Alemanha",
6952 "ru" : "Германия",
6953 "zh-CN" : "德国"
6954 }
6955 },
6956 "location" : {
6957 "accuracy_radius" : 100,
6958 "latitude" : 51.5,
6959 "longitude" : 10.5,
6960 "time_zone" : "Europe/Berlin"
6961 },
6962 "registered_country" : {
6963 "geoname_id" : 2921044,
6964 "is_in_european_union" : true,
6965 "iso_code" : "DE",
6966 "names" : {
6967 "de" : "Deutschland",
6968 "en" : "Germany",
6969 "es" : "Alemania",
6970 "fr" : "Allemagne",
6971 "ja" : "ドイツ連邦共和国",
6972 "pt-BR" : "Alemanha",
6973 "ru" : "Германия",
6974 "zh-CN" : "德国"
6975 }
6976 }
6977 }
6978 },
6979 {
6980 "2a02:e840::/29" : {
6981 "continent" : {
6982 "code" : "EU",
6983 "geoname_id" : 6255148,
6984 "names" : {
6985 "de" : "Europa",
6986 "en" : "Europe",
6987 "es" : "Europa",
6988 "fr" : "Europe",
6989 "ja" : "ヨーロッパ",
6990 "pt-BR" : "Europa",
6991 "ru" : "Европа",
6992 "zh-CN" : "欧洲"
6993 }
6994 },
6995 "country" : {
6996 "geoname_id" : 2017370,
6997 "iso_code" : "RU",
6998 "names" : {
6999 "de" : "Russland",
7000 "en" : "Russia",
7001 "es" : "Rusia",
7002 "fr" : "Russie",
7003 "ja" : "ロシア",
7004 "pt-BR" : "Rússia",
7005 "ru" : "Россия",
7006 "zh-CN" : "俄罗斯"
7007 }
7008 },
7009 "location" : {
7010 "accuracy_radius" : 100,
7011 "latitude" : 60,
7012 "longitude" : 100
7013 },
7014 "registered_country" : {
7015 "geoname_id" : 2017370,
7016 "iso_code" : "RU",
7017 "names" : {
7018 "de" : "Russland",
7019 "en" : "Russia",
7020 "es" : "Rusia",
7021 "fr" : "Russie",
7022 "ja" : "ロシア",
7023 "pt-BR" : "Rússia",
7024 "ru" : "Россия",
7025 "zh-CN" : "俄罗斯"
7026 }
7027 }
7028 }
7029 },
7030 {
7031 "2a02:e880::/29" : {
7032 "continent" : {
7033 "code" : "EU",
7034 "geoname_id" : 6255148,
7035 "names" : {
7036 "de" : "Europa",
7037 "en" : "Europe",
7038 "es" : "Europa",
7039 "fr" : "Europe",
7040 "ja" : "ヨーロッパ",
7041 "pt-BR" : "Europa",
7042 "ru" : "Европа",
7043 "zh-CN" : "欧洲"
7044 }
7045 },
7046 "country" : {
7047 "geoname_id" : 2017370,
7048 "iso_code" : "RU",
7049 "names" : {
7050 "de" : "Russland",
7051 "en" : "Russia",
7052 "es" : "Rusia",
7053 "fr" : "Russie",
7054 "ja" : "ロシア",
7055 "pt-BR" : "Rússia",
7056 "ru" : "Россия",
7057 "zh-CN" : "俄罗斯"
7058 }
7059 },
7060 "location" : {
7061 "accuracy_radius" : 100,
7062 "latitude" : 60,
7063 "longitude" : 100
7064 },
7065 "registered_country" : {
7066 "geoname_id" : 2017370,
7067 "iso_code" : "RU",
7068 "names" : {
7069 "de" : "Russland",
7070 "en" : "Russia",
7071 "es" : "Rusia",
7072 "fr" : "Russie",
7073 "ja" : "ロシア",
7074 "pt-BR" : "Rússia",
7075 "ru" : "Россия",
7076 "zh-CN" : "俄罗斯"
7077 }
7078 }
7079 }
7080 },
7081 {
7082 "2a02:e900::/29" : {
7083 "continent" : {
7084 "code" : "EU",
7085 "geoname_id" : 6255148,
7086 "names" : {
7087 "de" : "Europa",
7088 "en" : "Europe",
7089 "es" : "Europa",
7090 "fr" : "Europe",
7091 "ja" : "ヨーロッパ",
7092 "pt-BR" : "Europa",
7093 "ru" : "Европа",
7094 "zh-CN" : "欧洲"
7095 }
7096 },
7097 "country" : {
7098 "geoname_id" : 2963597,
7099 "is_in_european_union" : true,
7100 "iso_code" : "IE",
7101 "names" : {
7102 "de" : "Irland",
7103 "en" : "Ireland",
7104 "es" : "República de Irlanda",
7105 "fr" : "Irlande",
7106 "ja" : "アイルランド",
7107 "pt-BR" : "Irlanda",
7108 "ru" : "Ирландия",
7109 "zh-CN" : "爱尔兰"
7110 }
7111 },
7112 "location" : {
7113 "accuracy_radius" : 100,
7114 "latitude" : 53,
7115 "longitude" : -8,
7116 "time_zone" : "Europe/Dublin"
7117 },
7118 "registered_country" : {
7119 "geoname_id" : 2963597,
7120 "is_in_european_union" : true,
7121 "iso_code" : "IE",
7122 "names" : {
7123 "de" : "Irland",
7124 "en" : "Ireland",
7125 "es" : "República de Irlanda",
7126 "fr" : "Irlande",
7127 "ja" : "アイルランド",
7128 "pt-BR" : "Irlanda",
7129 "ru" : "Ирландия",
7130 "zh-CN" : "爱尔兰"
7131 }
7132 }
7133 }
7134 },
7135 {
7136 "2a02:e940::/29" : {
7137 "continent" : {
7138 "code" : "EU",
7139 "geoname_id" : 6255148,
7140 "names" : {
7141 "de" : "Europa",
7142 "en" : "Europe",
7143 "es" : "Europa",
7144 "fr" : "Europe",
7145 "ja" : "ヨーロッパ",
7146 "pt-BR" : "Europa",
7147 "ru" : "Европа",
7148 "zh-CN" : "欧洲"
7149 }
7150 },
7151 "country" : {
7152 "geoname_id" : 798549,
7153 "is_in_european_union" : true,
7154 "iso_code" : "RO",
7155 "names" : {
7156 "de" : "Rumänien",
7157 "en" : "Romania",
7158 "es" : "Rumanía",
7159 "fr" : "Roumanie",
7160 "ja" : "ルーマニア",
7161 "pt-BR" : "Romênia",
7162 "ru" : "Румыния",
7163 "zh-CN" : "罗马尼亚"
7164 }
7165 },
7166 "location" : {
7167 "accuracy_radius" : 100,
7168 "latitude" : 46,
7169 "longitude" : 25,
7170 "time_zone" : "Europe/Bucharest"
7171 },
7172 "registered_country" : {
7173 "geoname_id" : 798549,
7174 "is_in_european_union" : true,
7175 "iso_code" : "RO",
7176 "names" : {
7177 "de" : "Rumänien",
7178 "en" : "Romania",
7179 "es" : "Rumanía",
7180 "fr" : "Roumanie",
7181 "ja" : "ルーマニア",
7182 "pt-BR" : "Romênia",
7183 "ru" : "Румыния",
7184 "zh-CN" : "罗马尼亚"
7185 }
7186 }
7187 }
7188 },
7189 {
7190 "2a02:e980::/29" : {
7191 "continent" : {
7192 "code" : "AS",
7193 "geoname_id" : 6255147,
7194 "names" : {
7195 "de" : "Asien",
7196 "en" : "Asia",
7197 "es" : "Asia",
7198 "fr" : "Asie",
7199 "ja" : "アジア",
7200 "pt-BR" : "Ásia",
7201 "ru" : "Азия",
7202 "zh-CN" : "亚洲"
7203 }
7204 },
7205 "country" : {
7206 "geoname_id" : 294640,
7207 "iso_code" : "IL",
7208 "names" : {
7209 "de" : "Israel",
7210 "en" : "Israel",
7211 "es" : "Israel",
7212 "fr" : "Israël",
7213 "ja" : "イスラエル国",
7214 "pt-BR" : "Israel",
7215 "ru" : "Израиль",
7216 "zh-CN" : "以色列"
7217 }
7218 },
7219 "location" : {
7220 "accuracy_radius" : 100,
7221 "latitude" : 31.5,
7222 "longitude" : 34.75,
7223 "time_zone" : "Asia/Jerusalem"
7224 },
7225 "registered_country" : {
7226 "geoname_id" : 294640,
7227 "iso_code" : "IL",
7228 "names" : {
7229 "de" : "Israel",
7230 "en" : "Israel",
7231 "es" : "Israel",
7232 "fr" : "Israël",
7233 "ja" : "イスラエル国",
7234 "pt-BR" : "Israel",
7235 "ru" : "Израиль",
7236 "zh-CN" : "以色列"
7237 }
7238 }
7239 }
7240 },
7241 {
7242 "2a02:e9c0::/29" : {
7243 "continent" : {
7244 "code" : "EU",
7245 "geoname_id" : 6255148,
7246 "names" : {
7247 "de" : "Europa",
7248 "en" : "Europe",
7249 "es" : "Europa",
7250 "fr" : "Europe",
7251 "ja" : "ヨーロッパ",
7252 "pt-BR" : "Europa",
7253 "ru" : "Европа",
7254 "zh-CN" : "欧洲"
7255 }
7256 },
7257 "country" : {
7258 "geoname_id" : 2661886,
7259 "is_in_european_union" : true,
7260 "iso_code" : "SE",
7261 "names" : {
7262 "de" : "Schweden",
7263 "en" : "Sweden",
7264 "es" : "Suecia",
7265 "fr" : "Suède",
7266 "ja" : "スウェーデン王国",
7267 "pt-BR" : "Suécia",
7268 "ru" : "Швеция",
7269 "zh-CN" : "瑞典"
7270 }
7271 },
7272 "location" : {
7273 "accuracy_radius" : 100,
7274 "latitude" : 62,
7275 "longitude" : 15,
7276 "time_zone" : "Europe/Stockholm"
7277 },
7278 "registered_country" : {
7279 "geoname_id" : 2661886,
7280 "is_in_european_union" : true,
7281 "iso_code" : "SE",
7282 "names" : {
7283 "de" : "Schweden",
7284 "en" : "Sweden",
7285 "es" : "Suecia",
7286 "fr" : "Suède",
7287 "ja" : "スウェーデン王国",
7288 "pt-BR" : "Suécia",
7289 "ru" : "Швеция",
7290 "zh-CN" : "瑞典"
7291 }
7292 }
7293 }
7294 },
7295 {
7296 "2a02:ea00::/29" : {
7297 "continent" : {
7298 "code" : "EU",
7299 "geoname_id" : 6255148,
7300 "names" : {
7301 "de" : "Europa",
7302 "en" : "Europe",
7303 "es" : "Europa",
7304 "fr" : "Europe",
7305 "ja" : "ヨーロッパ",
7306 "pt-BR" : "Europa",
7307 "ru" : "Европа",
7308 "zh-CN" : "欧洲"
7309 }
7310 },
7311 "country" : {
7312 "geoname_id" : 2658434,
7313 "iso_code" : "CH",
7314 "names" : {
7315 "de" : "Schweiz",
7316 "en" : "Switzerland",
7317 "es" : "Suiza",
7318 "fr" : "Suisse",
7319 "ja" : "スイス連邦",
7320 "pt-BR" : "Suíça",
7321 "ru" : "Швейцария",
7322 "zh-CN" : "瑞士"
7323 }
7324 },
7325 "location" : {
7326 "accuracy_radius" : 100,
7327 "latitude" : 47.00016,
7328 "longitude" : 8.01427,
7329 "time_zone" : "Europe/Zurich"
7330 },
7331 "registered_country" : {
7332 "geoname_id" : 2658434,
7333 "iso_code" : "CH",
7334 "names" : {
7335 "de" : "Schweiz",
7336 "en" : "Switzerland",
7337 "es" : "Suiza",
7338 "fr" : "Suisse",
7339 "ja" : "スイス連邦",
7340 "pt-BR" : "Suíça",
7341 "ru" : "Швейцария",
7342 "zh-CN" : "瑞士"
7343 }
7344 }
7345 }
7346 },
7347 {
7348 "2a02:ea40::/29" : {
7349 "continent" : {
7350 "code" : "EU",
7351 "geoname_id" : 6255148,
7352 "names" : {
7353 "de" : "Europa",
7354 "en" : "Europe",
7355 "es" : "Europa",
7356 "fr" : "Europe",
7357 "ja" : "ヨーロッパ",
7358 "pt-BR" : "Europa",
7359 "ru" : "Европа",
7360 "zh-CN" : "欧洲"
7361 }
7362 },
7363 "country" : {
7364 "geoname_id" : 2635167,
7365 "is_in_european_union" : true,
7366 "iso_code" : "GB",
7367 "names" : {
7368 "de" : "Vereinigtes Königreich",
7369 "en" : "United Kingdom",
7370 "es" : "Reino Unido",
7371 "fr" : "Royaume-Uni",
7372 "ja" : "イギリス",
7373 "pt-BR" : "Reino Unido",
7374 "ru" : "Великобритания",
7375 "zh-CN" : "英国"
7376 }
7377 },
7378 "location" : {
7379 "accuracy_radius" : 100,
7380 "latitude" : 54.75844,
7381 "longitude" : -2.69531,
7382 "time_zone" : "Europe/London"
7383 },
7384 "registered_country" : {
7385 "geoname_id" : 2635167,
7386 "is_in_european_union" : true,
7387 "iso_code" : "GB",
7388 "names" : {
7389 "de" : "Vereinigtes Königreich",
7390 "en" : "United Kingdom",
7391 "es" : "Reino Unido",
7392 "fr" : "Royaume-Uni",
7393 "ja" : "イギリス",
7394 "pt-BR" : "Reino Unido",
7395 "ru" : "Великобритания",
7396 "zh-CN" : "英国"
7397 }
7398 }
7399 }
7400 },
7401 {
7402 "2a02:ea80::/29" : {
7403 "continent" : {
7404 "code" : "EU",
7405 "geoname_id" : 6255148,
7406 "names" : {
7407 "de" : "Europa",
7408 "en" : "Europe",
7409 "es" : "Europa",
7410 "fr" : "Europe",
7411 "ja" : "ヨーロッパ",
7412 "pt-BR" : "Europa",
7413 "ru" : "Европа",
7414 "zh-CN" : "欧洲"
7415 }
7416 },
7417 "country" : {
7418 "geoname_id" : 798544,
7419 "is_in_european_union" : true,
7420 "iso_code" : "PL",
7421 "names" : {
7422 "de" : "Polen",
7423 "en" : "Poland",
7424 "es" : "Polonia",
7425 "fr" : "Pologne",
7426 "ja" : "ポーランド共和国",
7427 "pt-BR" : "Polônia",
7428 "ru" : "Польша",
7429 "zh-CN" : "波兰"
7430 }
7431 },
7432 "location" : {
7433 "accuracy_radius" : 100,
7434 "latitude" : 52,
7435 "longitude" : 20,
7436 "time_zone" : "Europe/Warsaw"
7437 },
7438 "registered_country" : {
7439 "geoname_id" : 798544,
7440 "is_in_european_union" : true,
7441 "iso_code" : "PL",
7442 "names" : {
7443 "de" : "Polen",
7444 "en" : "Poland",
7445 "es" : "Polonia",
7446 "fr" : "Pologne",
7447 "ja" : "ポーランド共和国",
7448 "pt-BR" : "Polônia",
7449 "ru" : "Польша",
7450 "zh-CN" : "波兰"
7451 }
7452 }
7453 }
7454 },
7455 {
7456 "2a02:eac0::/29" : {
7457 "continent" : {
7458 "code" : "EU",
7459 "geoname_id" : 6255148,
7460 "names" : {
7461 "de" : "Europa",
7462 "en" : "Europe",
7463 "es" : "Europa",
7464 "fr" : "Europe",
7465 "ja" : "ヨーロッパ",
7466 "pt-BR" : "Europa",
7467 "ru" : "Европа",
7468 "zh-CN" : "欧洲"
7469 }
7470 },
7471 "country" : {
7472 "geoname_id" : 798544,
7473 "is_in_european_union" : true,
7474 "iso_code" : "PL",
7475 "names" : {
7476 "de" : "Polen",
7477 "en" : "Poland",
7478 "es" : "Polonia",
7479 "fr" : "Pologne",
7480 "ja" : "ポーランド共和国",
7481 "pt-BR" : "Polônia",
7482 "ru" : "Польша",
7483 "zh-CN" : "波兰"
7484 }
7485 },
7486 "location" : {
7487 "accuracy_radius" : 100,
7488 "latitude" : 52,
7489 "longitude" : 20,
7490 "time_zone" : "Europe/Warsaw"
7491 },
7492 "registered_country" : {
7493 "geoname_id" : 798544,
7494 "is_in_european_union" : true,
7495 "iso_code" : "PL",
7496 "names" : {
7497 "de" : "Polen",
7498 "en" : "Poland",
7499 "es" : "Polonia",
7500 "fr" : "Pologne",
7501 "ja" : "ポーランド共和国",
7502 "pt-BR" : "Polônia",
7503 "ru" : "Польша",
7504 "zh-CN" : "波兰"
7505 }
7506 }
7507 }
7508 },
7509 {
7510 "2a02:eb00::/29" : {
7511 "continent" : {
7512 "code" : "EU",
7513 "geoname_id" : 6255148,
7514 "names" : {
7515 "de" : "Europa",
7516 "en" : "Europe",
7517 "es" : "Europa",
7518 "fr" : "Europe",
7519 "ja" : "ヨーロッパ",
7520 "pt-BR" : "Europa",
7521 "ru" : "Европа",
7522 "zh-CN" : "欧洲"
7523 }
7524 },
7525 "country" : {
7526 "geoname_id" : 2017370,
7527 "iso_code" : "RU",
7528 "names" : {
7529 "de" : "Russland",
7530 "en" : "Russia",
7531 "es" : "Rusia",
7532 "fr" : "Russie",
7533 "ja" : "ロシア",
7534 "pt-BR" : "Rússia",
7535 "ru" : "Россия",
7536 "zh-CN" : "俄罗斯"
7537 }
7538 },
7539 "location" : {
7540 "accuracy_radius" : 100,
7541 "latitude" : 60,
7542 "longitude" : 100
7543 },
7544 "registered_country" : {
7545 "geoname_id" : 2017370,
7546 "iso_code" : "RU",
7547 "names" : {
7548 "de" : "Russland",
7549 "en" : "Russia",
7550 "es" : "Rusia",
7551 "fr" : "Russie",
7552 "ja" : "ロシア",
7553 "pt-BR" : "Rússia",
7554 "ru" : "Россия",
7555 "zh-CN" : "俄罗斯"
7556 }
7557 }
7558 }
7559 },
7560 {
7561 "2a02:eb40::/29" : {
7562 "continent" : {
7563 "code" : "EU",
7564 "geoname_id" : 6255148,
7565 "names" : {
7566 "de" : "Europa",
7567 "en" : "Europe",
7568 "es" : "Europa",
7569 "fr" : "Europe",
7570 "ja" : "ヨーロッパ",
7571 "pt-BR" : "Europa",
7572 "ru" : "Европа",
7573 "zh-CN" : "欧洲"
7574 }
7575 },
7576 "country" : {
7577 "geoname_id" : 2635167,
7578 "is_in_european_union" : true,
7579 "iso_code" : "GB",
7580 "names" : {
7581 "de" : "Vereinigtes Königreich",
7582 "en" : "United Kingdom",
7583 "es" : "Reino Unido",
7584 "fr" : "Royaume-Uni",
7585 "ja" : "イギリス",
7586 "pt-BR" : "Reino Unido",
7587 "ru" : "Великобритания",
7588 "zh-CN" : "英国"
7589 }
7590 },
7591 "location" : {
7592 "accuracy_radius" : 100,
7593 "latitude" : 54.75844,
7594 "longitude" : -2.69531,
7595 "time_zone" : "Europe/London"
7596 },
7597 "registered_country" : {
7598 "geoname_id" : 2635167,
7599 "is_in_european_union" : true,
7600 "iso_code" : "GB",
7601 "names" : {
7602 "de" : "Vereinigtes Königreich",
7603 "en" : "United Kingdom",
7604 "es" : "Reino Unido",
7605 "fr" : "Royaume-Uni",
7606 "ja" : "イギリス",
7607 "pt-BR" : "Reino Unido",
7608 "ru" : "Великобритания",
7609 "zh-CN" : "英国"
7610 }
7611 }
7612 }
7613 },
7614 {
7615 "2a02:eb80::/29" : {
7616 "continent" : {
7617 "code" : "EU",
7618 "geoname_id" : 6255148,
7619 "names" : {
7620 "de" : "Europa",
7621 "en" : "Europe",
7622 "es" : "Europa",
7623 "fr" : "Europe",
7624 "ja" : "ヨーロッパ",
7625 "pt-BR" : "Europa",
7626 "ru" : "Европа",
7627 "zh-CN" : "欧洲"
7628 }
7629 },
7630 "country" : {
7631 "geoname_id" : 2017370,
7632 "iso_code" : "RU",
7633 "names" : {
7634 "de" : "Russland",
7635 "en" : "Russia",
7636 "es" : "Rusia",
7637 "fr" : "Russie",
7638 "ja" : "ロシア",
7639 "pt-BR" : "Rússia",
7640 "ru" : "Россия",
7641 "zh-CN" : "俄罗斯"
7642 }
7643 },
7644 "location" : {
7645 "accuracy_radius" : 100,
7646 "latitude" : 60,
7647 "longitude" : 100
7648 },
7649 "registered_country" : {
7650 "geoname_id" : 2017370,
7651 "iso_code" : "RU",
7652 "names" : {
7653 "de" : "Russland",
7654 "en" : "Russia",
7655 "es" : "Rusia",
7656 "fr" : "Russie",
7657 "ja" : "ロシア",
7658 "pt-BR" : "Rússia",
7659 "ru" : "Россия",
7660 "zh-CN" : "俄罗斯"
7661 }
7662 }
7663 }
7664 },
7665 {
7666 "2a02:ebc0::/29" : {
7667 "continent" : {
7668 "code" : "EU",
7669 "geoname_id" : 6255148,
7670 "names" : {
7671 "de" : "Europa",
7672 "en" : "Europe",
7673 "es" : "Europa",
7674 "fr" : "Europe",
7675 "ja" : "ヨーロッパ",
7676 "pt-BR" : "Europa",
7677 "ru" : "Европа",
7678 "zh-CN" : "欧洲"
7679 }
7680 },
7681 "country" : {
7682 "geoname_id" : 3017382,
7683 "is_in_european_union" : true,
7684 "iso_code" : "FR",
7685 "names" : {
7686 "de" : "Frankreich",
7687 "en" : "France",
7688 "es" : "Francia",
7689 "fr" : "France",
7690 "ja" : "フランス共和国",
7691 "pt-BR" : "França",
7692 "ru" : "Франция",
7693 "zh-CN" : "法国"
7694 }
7695 },
7696 "location" : {
7697 "accuracy_radius" : 100,
7698 "latitude" : 46,
7699 "longitude" : 2,
7700 "time_zone" : "Europe/Paris"
7701 },
7702 "registered_country" : {
7703 "geoname_id" : 3017382,
7704 "is_in_european_union" : true,
7705 "iso_code" : "FR",
7706 "names" : {
7707 "de" : "Frankreich",
7708 "en" : "France",
7709 "es" : "Francia",
7710 "fr" : "France",
7711 "ja" : "フランス共和国",
7712 "pt-BR" : "França",
7713 "ru" : "Франция",
7714 "zh-CN" : "法国"
7715 }
7716 }
7717 }
7718 },
7719 {
7720 "2a02:ec00::/29" : {
7721 "continent" : {
7722 "code" : "EU",
7723 "geoname_id" : 6255148,
7724 "names" : {
7725 "de" : "Europa",
7726 "en" : "Europe",
7727 "es" : "Europa",
7728 "fr" : "Europe",
7729 "ja" : "ヨーロッパ",
7730 "pt-BR" : "Europa",
7731 "ru" : "Европа",
7732 "zh-CN" : "欧洲"
7733 }
7734 },
7735 "country" : {
7736 "geoname_id" : 3017382,
7737 "is_in_european_union" : true,
7738 "iso_code" : "FR",
7739 "names" : {
7740 "de" : "Frankreich",
7741 "en" : "France",
7742 "es" : "Francia",
7743 "fr" : "France",
7744 "ja" : "フランス共和国",
7745 "pt-BR" : "França",
7746 "ru" : "Франция",
7747 "zh-CN" : "法国"
7748 }
7749 },
7750 "location" : {
7751 "accuracy_radius" : 100,
7752 "latitude" : 46,
7753 "longitude" : 2,
7754 "time_zone" : "Europe/Paris"
7755 },
7756 "registered_country" : {
7757 "geoname_id" : 3017382,
7758 "is_in_european_union" : true,
7759 "iso_code" : "FR",
7760 "names" : {
7761 "de" : "Frankreich",
7762 "en" : "France",
7763 "es" : "Francia",
7764 "fr" : "France",
7765 "ja" : "フランス共和国",
7766 "pt-BR" : "França",
7767 "ru" : "Франция",
7768 "zh-CN" : "法国"
7769 }
7770 }
7771 }
7772 },
7773 {
7774 "2a02:ec40::/29" : {
7775 "continent" : {
7776 "code" : "EU",
7777 "geoname_id" : 6255148,
7778 "names" : {
7779 "de" : "Europa",
7780 "en" : "Europe",
7781 "es" : "Europa",
7782 "fr" : "Europe",
7783 "ja" : "ヨーロッパ",
7784 "pt-BR" : "Europa",
7785 "ru" : "Европа",
7786 "zh-CN" : "欧洲"
7787 }
7788 },
7789 "country" : {
7790 "geoname_id" : 2017370,
7791 "iso_code" : "RU",
7792 "names" : {
7793 "de" : "Russland",
7794 "en" : "Russia",
7795 "es" : "Rusia",
7796 "fr" : "Russie",
7797 "ja" : "ロシア",
7798 "pt-BR" : "Rússia",
7799 "ru" : "Россия",
7800 "zh-CN" : "俄罗斯"
7801 }
7802 },
7803 "location" : {
7804 "accuracy_radius" : 100,
7805 "latitude" : 60,
7806 "longitude" : 100
7807 },
7808 "registered_country" : {
7809 "geoname_id" : 2017370,
7810 "iso_code" : "RU",
7811 "names" : {
7812 "de" : "Russland",
7813 "en" : "Russia",
7814 "es" : "Rusia",
7815 "fr" : "Russie",
7816 "ja" : "ロシア",
7817 "pt-BR" : "Rússia",
7818 "ru" : "Россия",
7819 "zh-CN" : "俄罗斯"
7820 }
7821 }
7822 }
7823 },
7824 {
7825 "2a02:ec80::/29" : {
7826 "continent" : {
7827 "code" : "EU",
7828 "geoname_id" : 6255148,
7829 "names" : {
7830 "de" : "Europa",
7831 "en" : "Europe",
7832 "es" : "Europa",
7833 "fr" : "Europe",
7834 "ja" : "ヨーロッパ",
7835 "pt-BR" : "Europa",
7836 "ru" : "Европа",
7837 "zh-CN" : "欧洲"
7838 }
7839 },
7840 "location" : {
7841 "accuracy_radius" : 100,
7842 "latitude" : 48.69096,
7843 "longitude" : 9.14062,
7844 "time_zone" : "Europe/Vaduz"
7845 }
7846 }
7847 },
7848 {
7849 "2a02:ecc0::/29" : {
7850 "continent" : {
7851 "code" : "AS",
7852 "geoname_id" : 6255147,
7853 "names" : {
7854 "de" : "Asien",
7855 "en" : "Asia",
7856 "es" : "Asia",
7857 "fr" : "Asie",
7858 "ja" : "アジア",
7859 "pt-BR" : "Ásia",
7860 "ru" : "Азия",
7861 "zh-CN" : "亚洲"
7862 }
7863 },
7864 "country" : {
7865 "geoname_id" : 587116,
7866 "iso_code" : "AZ",
7867 "names" : {
7868 "de" : "Aserbaidschan",
7869 "en" : "Azerbaijan",
7870 "es" : "Azerbaiyán",
7871 "fr" : "Azerbaïdjan",
7872 "ja" : "アゼルバイジャン共和国",
7873 "pt-BR" : "Azerbaijão",
7874 "ru" : "Азербайджан",
7875 "zh-CN" : "阿塞拜疆"
7876 }
7877 },
7878 "location" : {
7879 "accuracy_radius" : 100,
7880 "latitude" : 40.5,
7881 "longitude" : 47.5,
7882 "time_zone" : "Asia/Baku"
7883 },
7884 "registered_country" : {
7885 "geoname_id" : 587116,
7886 "iso_code" : "AZ",
7887 "names" : {
7888 "de" : "Aserbaidschan",
7889 "en" : "Azerbaijan",
7890 "es" : "Azerbaiyán",
7891 "fr" : "Azerbaïdjan",
7892 "ja" : "アゼルバイジャン共和国",
7893 "pt-BR" : "Azerbaijão",
7894 "ru" : "Азербайджан",
7895 "zh-CN" : "阿塞拜疆"
7896 }
7897 }
7898 }
7899 },
7900 {
7901 "2a02:ed00::/29" : {
7902 "continent" : {
7903 "code" : "EU",
7904 "geoname_id" : 6255148,
7905 "names" : {
7906 "de" : "Europa",
7907 "en" : "Europe",
7908 "es" : "Europa",
7909 "fr" : "Europe",
7910 "ja" : "ヨーロッパ",
7911 "pt-BR" : "Europa",
7912 "ru" : "Европа",
7913 "zh-CN" : "欧洲"
7914 }
7915 },
7916 "country" : {
7917 "geoname_id" : 3144096,
7918 "iso_code" : "NO",
7919 "names" : {
7920 "de" : "Norwegen",
7921 "en" : "Norway",
7922 "es" : "Noruega",
7923 "fr" : "Norvège",
7924 "ja" : "ノルウェー王国",
7925 "pt-BR" : "Noruega",
7926 "ru" : "Норвегия",
7927 "zh-CN" : "挪威"
7928 }
7929 },
7930 "location" : {
7931 "accuracy_radius" : 100,
7932 "latitude" : 62,
7933 "longitude" : 10,
7934 "time_zone" : "Europe/Oslo"
7935 },
7936 "registered_country" : {
7937 "geoname_id" : 3144096,
7938 "iso_code" : "NO",
7939 "names" : {
7940 "de" : "Norwegen",
7941 "en" : "Norway",
7942 "es" : "Noruega",
7943 "fr" : "Norvège",
7944 "ja" : "ノルウェー王国",
7945 "pt-BR" : "Noruega",
7946 "ru" : "Норвегия",
7947 "zh-CN" : "挪威"
7948 }
7949 }
7950 }
7951 },
7952 {
7953 "2a02:ed40::/29" : {
7954 "continent" : {
7955 "code" : "AS",
7956 "geoname_id" : 6255147,
7957 "names" : {
7958 "de" : "Asien",
7959 "en" : "Asia",
7960 "es" : "Asia",
7961 "fr" : "Asie",
7962 "ja" : "アジア",
7963 "pt-BR" : "Ásia",
7964 "ru" : "Азия",
7965 "zh-CN" : "亚洲"
7966 }
7967 },
7968 "country" : {
7969 "geoname_id" : 298795,
7970 "iso_code" : "TR",
7971 "names" : {
7972 "de" : "Türkei",
7973 "en" : "Turkey",
7974 "es" : "Turquía",
7975 "fr" : "Turquie",
7976 "ja" : "トルコ共和国",
7977 "pt-BR" : "Turquia",
7978 "ru" : "Турция",
7979 "zh-CN" : "土耳其"
7980 }
7981 },
7982 "location" : {
7983 "accuracy_radius" : 100,
7984 "latitude" : 39.05901,
7985 "longitude" : 34.91155,
7986 "time_zone" : "Europe/Istanbul"
7987 },
7988 "registered_country" : {
7989 "geoname_id" : 298795,
7990 "iso_code" : "TR",
7991 "names" : {
7992 "de" : "Türkei",
7993 "en" : "Turkey",
7994 "es" : "Turquía",
7995 "fr" : "Turquie",
7996 "ja" : "トルコ共和国",
7997 "pt-BR" : "Turquia",
7998 "ru" : "Турция",
7999 "zh-CN" : "土耳其"
8000 }
8001 }
8002 }
8003 },
8004 {
8005 "2a02:ed80::/29" : {
8006 "continent" : {
8007 "code" : "EU",
8008 "geoname_id" : 6255148,
8009 "names" : {
8010 "de" : "Europa",
8011 "en" : "Europe",
8012 "es" : "Europa",
8013 "fr" : "Europe",
8014 "ja" : "ヨーロッパ",
8015 "pt-BR" : "Europa",
8016 "ru" : "Европа",
8017 "zh-CN" : "欧洲"
8018 }
8019 },
8020 "country" : {
8021 "geoname_id" : 2921044,
8022 "is_in_european_union" : true,
8023 "iso_code" : "DE",
8024 "names" : {
8025 "de" : "Deutschland",
8026 "en" : "Germany",
8027 "es" : "Alemania",
8028 "fr" : "Allemagne",
8029 "ja" : "ドイツ連邦共和国",
8030 "pt-BR" : "Alemanha",
8031 "ru" : "Германия",
8032 "zh-CN" : "德国"
8033 }
8034 },
8035 "location" : {
8036 "accuracy_radius" : 100,
8037 "latitude" : 51.5,
8038 "longitude" : 10.5,
8039 "time_zone" : "Europe/Berlin"
8040 },
8041 "registered_country" : {
8042 "geoname_id" : 2921044,
8043 "is_in_european_union" : true,
8044 "iso_code" : "DE",
8045 "names" : {
8046 "de" : "Deutschland",
8047 "en" : "Germany",
8048 "es" : "Alemania",
8049 "fr" : "Allemagne",
8050 "ja" : "ドイツ連邦共和国",
8051 "pt-BR" : "Alemanha",
8052 "ru" : "Германия",
8053 "zh-CN" : "德国"
8054 }
8055 }
8056 }
8057 },
8058 {
8059 "2a02:edc0::/29" : {
8060 "continent" : {
8061 "code" : "AS",
8062 "geoname_id" : 6255147,
8063 "names" : {
8064 "de" : "Asien",
8065 "en" : "Asia",
8066 "es" : "Asia",
8067 "fr" : "Asie",
8068 "ja" : "アジア",
8069 "pt-BR" : "Ásia",
8070 "ru" : "Азия",
8071 "zh-CN" : "亚洲"
8072 }
8073 },
8074 "country" : {
8075 "geoname_id" : 102358,
8076 "iso_code" : "SA",
8077 "names" : {
8078 "de" : "Saudi-Arabien",
8079 "en" : "Saudi Arabia",
8080 "es" : "Arabia Saudita",
8081 "fr" : "Arabie saoudite",
8082 "ja" : "サウジアラビア王国",
8083 "pt-BR" : "Arábia Saudita",
8084 "ru" : "Саудовская Аравия",
8085 "zh-CN" : "沙特阿拉伯"
8086 }
8087 },
8088 "location" : {
8089 "accuracy_radius" : 100,
8090 "latitude" : 25,
8091 "longitude" : 45,
8092 "time_zone" : "Asia/Riyadh"
8093 },
8094 "registered_country" : {
8095 "geoname_id" : 102358,
8096 "iso_code" : "SA",
8097 "names" : {
8098 "de" : "Saudi-Arabien",
8099 "en" : "Saudi Arabia",
8100 "es" : "Arabia Saudita",
8101 "fr" : "Arabie saoudite",
8102 "ja" : "サウジアラビア王国",
8103 "pt-BR" : "Arábia Saudita",
8104 "ru" : "Саудовская Аравия",
8105 "zh-CN" : "沙特阿拉伯"
8106 }
8107 }
8108 }
8109 },
8110 {
8111 "2a02:ee00::/29" : {
8112 "continent" : {
8113 "code" : "EU",
8114 "geoname_id" : 6255148,
8115 "names" : {
8116 "de" : "Europa",
8117 "en" : "Europe",
8118 "es" : "Europa",
8119 "fr" : "Europe",
8120 "ja" : "ヨーロッパ",
8121 "pt-BR" : "Europa",
8122 "ru" : "Европа",
8123 "zh-CN" : "欧洲"
8124 }
8125 },
8126 "country" : {
8127 "geoname_id" : 690791,
8128 "iso_code" : "UA",
8129 "names" : {
8130 "de" : "Ukraine",
8131 "en" : "Ukraine",
8132 "es" : "Ucrania",
8133 "fr" : "Ukraine",
8134 "ja" : "ウクライナ共和国",
8135 "pt-BR" : "Ucrânia",
8136 "ru" : "Украина",
8137 "zh-CN" : "乌克兰"
8138 }
8139 },
8140 "location" : {
8141 "accuracy_radius" : 100,
8142 "latitude" : 49,
8143 "longitude" : 32
8144 },
8145 "registered_country" : {
8146 "geoname_id" : 690791,
8147 "iso_code" : "UA",
8148 "names" : {
8149 "de" : "Ukraine",
8150 "en" : "Ukraine",
8151 "es" : "Ucrania",
8152 "fr" : "Ukraine",
8153 "ja" : "ウクライナ共和国",
8154 "pt-BR" : "Ucrânia",
8155 "ru" : "Украина",
8156 "zh-CN" : "乌克兰"
8157 }
8158 }
8159 }
8160 },
8161 {
8162 "2a02:ee40::/29" : {
8163 "continent" : {
8164 "code" : "EU",
8165 "geoname_id" : 6255148,
8166 "names" : {
8167 "de" : "Europa",
8168 "en" : "Europe",
8169 "es" : "Europa",
8170 "fr" : "Europe",
8171 "ja" : "ヨーロッパ",
8172 "pt-BR" : "Europa",
8173 "ru" : "Европа",
8174 "zh-CN" : "欧洲"
8175 }
8176 },
8177 "country" : {
8178 "geoname_id" : 2017370,
8179 "iso_code" : "RU",
8180 "names" : {
8181 "de" : "Russland",
8182 "en" : "Russia",
8183 "es" : "Rusia",
8184 "fr" : "Russie",
8185 "ja" : "ロシア",
8186 "pt-BR" : "Rússia",
8187 "ru" : "Россия",
8188 "zh-CN" : "俄罗斯"
8189 }
8190 },
8191 "location" : {
8192 "accuracy_radius" : 100,
8193 "latitude" : 60,
8194 "longitude" : 100
8195 },
8196 "registered_country" : {
8197 "geoname_id" : 2017370,
8198 "iso_code" : "RU",
8199 "names" : {
8200 "de" : "Russland",
8201 "en" : "Russia",
8202 "es" : "Rusia",
8203 "fr" : "Russie",
8204 "ja" : "ロシア",
8205 "pt-BR" : "Rússia",
8206 "ru" : "Россия",
8207 "zh-CN" : "俄罗斯"
8208 }
8209 }
8210 }
8211 },
8212 {
8213 "2a02:ee80::/29" : {
8214 "continent" : {
8215 "code" : "EU",
8216 "geoname_id" : 6255148,
8217 "names" : {
8218 "de" : "Europa",
8219 "en" : "Europe",
8220 "es" : "Europa",
8221 "fr" : "Europe",
8222 "ja" : "ヨーロッパ",
8223 "pt-BR" : "Europa",
8224 "ru" : "Европа",
8225 "zh-CN" : "欧洲"
8226 }
8227 },
8228 "country" : {
8229 "geoname_id" : 2750405,
8230 "is_in_european_union" : true,
8231 "iso_code" : "NL",
8232 "names" : {
8233 "de" : "Niederlande",
8234 "en" : "Netherlands",
8235 "es" : "Holanda",
8236 "fr" : "Pays-Bas",
8237 "ja" : "オランダ王国",
8238 "pt-BR" : "Países Baixos",
8239 "ru" : "Нидерланды",
8240 "zh-CN" : "荷兰"
8241 }
8242 },
8243 "location" : {
8244 "accuracy_radius" : 100,
8245 "latitude" : 52.5,
8246 "longitude" : 5.75,
8247 "time_zone" : "Europe/Amsterdam"
8248 },
8249 "registered_country" : {
8250 "geoname_id" : 2750405,
8251 "is_in_european_union" : true,
8252 "iso_code" : "NL",
8253 "names" : {
8254 "de" : "Niederlande",
8255 "en" : "Netherlands",
8256 "es" : "Holanda",
8257 "fr" : "Pays-Bas",
8258 "ja" : "オランダ王国",
8259 "pt-BR" : "Países Baixos",
8260 "ru" : "Нидерланды",
8261 "zh-CN" : "荷兰"
8262 }
8263 }
8264 }
8265 },
8266 {
8267 "2a02:eec0::/29" : {
8268 "continent" : {
8269 "code" : "EU",
8270 "geoname_id" : 6255148,
8271 "names" : {
8272 "de" : "Europa",
8273 "en" : "Europe",
8274 "es" : "Europa",
8275 "fr" : "Europe",
8276 "ja" : "ヨーロッパ",
8277 "pt-BR" : "Europa",
8278 "ru" : "Европа",
8279 "zh-CN" : "欧洲"
8280 }
8281 },
8282 "country" : {
8283 "geoname_id" : 2661886,
8284 "is_in_european_union" : true,
8285 "iso_code" : "SE",
8286 "names" : {
8287 "de" : "Schweden",
8288 "en" : "Sweden",
8289 "es" : "Suecia",
8290 "fr" : "Suède",
8291 "ja" : "スウェーデン王国",
8292 "pt-BR" : "Suécia",
8293 "ru" : "Швеция",
8294 "zh-CN" : "瑞典"
8295 }
8296 },
8297 "location" : {
8298 "accuracy_radius" : 100,
8299 "latitude" : 62,
8300 "longitude" : 15,
8301 "time_zone" : "Europe/Stockholm"
8302 },
8303 "registered_country" : {
8304 "geoname_id" : 2661886,
8305 "is_in_european_union" : true,
8306 "iso_code" : "SE",
8307 "names" : {
8308 "de" : "Schweden",
8309 "en" : "Sweden",
8310 "es" : "Suecia",
8311 "fr" : "Suède",
8312 "ja" : "スウェーデン王国",
8313 "pt-BR" : "Suécia",
8314 "ru" : "Швеция",
8315 "zh-CN" : "瑞典"
8316 }
8317 }
8318 }
8319 },
8320 {
8321 "2a02:ef00::/29" : {
8322 "continent" : {
8323 "code" : "EU",
8324 "geoname_id" : 6255148,
8325 "names" : {
8326 "de" : "Europa",
8327 "en" : "Europe",
8328 "es" : "Europa",
8329 "fr" : "Europe",
8330 "ja" : "ヨーロッパ",
8331 "pt-BR" : "Europa",
8332 "ru" : "Европа",
8333 "zh-CN" : "欧洲"
8334 }
8335 },
8336 "country" : {
8337 "geoname_id" : 2017370,
8338 "iso_code" : "RU",
8339 "names" : {
8340 "de" : "Russland",
8341 "en" : "Russia",
8342 "es" : "Rusia",
8343 "fr" : "Russie",
8344 "ja" : "ロシア",
8345 "pt-BR" : "Rússia",
8346 "ru" : "Россия",
8347 "zh-CN" : "俄罗斯"
8348 }
8349 },
8350 "location" : {
8351 "accuracy_radius" : 100,
8352 "latitude" : 60,
8353 "longitude" : 100
8354 },
8355 "registered_country" : {
8356 "geoname_id" : 2017370,
8357 "iso_code" : "RU",
8358 "names" : {
8359 "de" : "Russland",
8360 "en" : "Russia",
8361 "es" : "Rusia",
8362 "fr" : "Russie",
8363 "ja" : "ロシア",
8364 "pt-BR" : "Rússia",
8365 "ru" : "Россия",
8366 "zh-CN" : "俄罗斯"
8367 }
8368 }
8369 }
8370 },
8371 {
8372 "2a02:ef40::/29" : {
8373 "continent" : {
8374 "code" : "EU",
8375 "geoname_id" : 6255148,
8376 "names" : {
8377 "de" : "Europa",
8378 "en" : "Europe",
8379 "es" : "Europa",
8380 "fr" : "Europe",
8381 "ja" : "ヨーロッパ",
8382 "pt-BR" : "Europa",
8383 "ru" : "Европа",
8384 "zh-CN" : "欧洲"
8385 }
8386 },
8387 "country" : {
8388 "geoname_id" : 2017370,
8389 "iso_code" : "RU",
8390 "names" : {
8391 "de" : "Russland",
8392 "en" : "Russia",
8393 "es" : "Rusia",
8394 "fr" : "Russie",
8395 "ja" : "ロシア",
8396 "pt-BR" : "Rússia",
8397 "ru" : "Россия",
8398 "zh-CN" : "俄罗斯"
8399 }
8400 },
8401 "location" : {
8402 "accuracy_radius" : 100,
8403 "latitude" : 60,
8404 "longitude" : 100
8405 },
8406 "registered_country" : {
8407 "geoname_id" : 2017370,
8408 "iso_code" : "RU",
8409 "names" : {
8410 "de" : "Russland",
8411 "en" : "Russia",
8412 "es" : "Rusia",
8413 "fr" : "Russie",
8414 "ja" : "ロシア",
8415 "pt-BR" : "Rússia",
8416 "ru" : "Россия",
8417 "zh-CN" : "俄罗斯"
8418 }
8419 }
8420 }
8421 },
8422 {
8423 "2a02:ef80::/29" : {
8424 "continent" : {
8425 "code" : "AS",
8426 "geoname_id" : 6255147,
8427 "names" : {
8428 "de" : "Asien",
8429 "en" : "Asia",
8430 "es" : "Asia",
8431 "fr" : "Asie",
8432 "ja" : "アジア",
8433 "pt-BR" : "Ásia",
8434 "ru" : "Азия",
8435 "zh-CN" : "亚洲"
8436 }
8437 },
8438 "country" : {
8439 "geoname_id" : 298795,
8440 "iso_code" : "TR",
8441 "names" : {
8442 "de" : "Türkei",
8443 "en" : "Turkey",
8444 "es" : "Turquía",
8445 "fr" : "Turquie",
8446 "ja" : "トルコ共和国",
8447 "pt-BR" : "Turquia",
8448 "ru" : "Турция",
8449 "zh-CN" : "土耳其"
8450 }
8451 },
8452 "location" : {
8453 "accuracy_radius" : 100,
8454 "latitude" : 39.05901,
8455 "longitude" : 34.91155,
8456 "time_zone" : "Europe/Istanbul"
8457 },
8458 "registered_country" : {
8459 "geoname_id" : 298795,
8460 "iso_code" : "TR",
8461 "names" : {
8462 "de" : "Türkei",
8463 "en" : "Turkey",
8464 "es" : "Turquía",
8465 "fr" : "Turquie",
8466 "ja" : "トルコ共和国",
8467 "pt-BR" : "Turquia",
8468 "ru" : "Турция",
8469 "zh-CN" : "土耳其"
8470 }
8471 }
8472 }
8473 },
8474 {
8475 "2a02:efc0::/29" : {
8476 "continent" : {
8477 "code" : "EU",
8478 "geoname_id" : 6255148,
8479 "names" : {
8480 "de" : "Europa",
8481 "en" : "Europe",
8482 "es" : "Europa",
8483 "fr" : "Europe",
8484 "ja" : "ヨーロッパ",
8485 "pt-BR" : "Europa",
8486 "ru" : "Европа",
8487 "zh-CN" : "欧洲"
8488 }
8489 },
8490 "country" : {
8491 "geoname_id" : 2017370,
8492 "iso_code" : "RU",
8493 "names" : {
8494 "de" : "Russland",
8495 "en" : "Russia",
8496 "es" : "Rusia",
8497 "fr" : "Russie",
8498 "ja" : "ロシア",
8499 "pt-BR" : "Rússia",
8500 "ru" : "Россия",
8501 "zh-CN" : "俄罗斯"
8502 }
8503 },
8504 "location" : {
8505 "accuracy_radius" : 100,
8506 "latitude" : 60,
8507 "longitude" : 100
8508 },
8509 "registered_country" : {
8510 "geoname_id" : 2017370,
8511 "iso_code" : "RU",
8512 "names" : {
8513 "de" : "Russland",
8514 "en" : "Russia",
8515 "es" : "Rusia",
8516 "fr" : "Russie",
8517 "ja" : "ロシア",
8518 "pt-BR" : "Rússia",
8519 "ru" : "Россия",
8520 "zh-CN" : "俄罗斯"
8521 }
8522 }
8523 }
8524 },
8525 {
8526 "2a02:f000::/29" : {
8527 "continent" : {
8528 "code" : "EU",
8529 "geoname_id" : 6255148,
8530 "names" : {
8531 "de" : "Europa",
8532 "en" : "Europe",
8533 "es" : "Europa",
8534 "fr" : "Europe",
8535 "ja" : "ヨーロッパ",
8536 "pt-BR" : "Europa",
8537 "ru" : "Европа",
8538 "zh-CN" : "欧洲"
8539 }
8540 },
8541 "country" : {
8542 "geoname_id" : 3077311,
8543 "is_in_european_union" : true,
8544 "iso_code" : "CZ",
8545 "names" : {
8546 "de" : "Tschechische Republik",
8547 "en" : "Czech Republic",
8548 "es" : "República Checa",
8549 "fr" : "Tchéquie",
8550 "ja" : "チェコ共和国",
8551 "pt-BR" : "República Checa",
8552 "ru" : "Чешская Республика",
8553 "zh-CN" : "捷克共和国"
8554 }
8555 },
8556 "location" : {
8557 "accuracy_radius" : 100,
8558 "latitude" : 49.75,
8559 "longitude" : 15,
8560 "time_zone" : "Europe/Prague"
8561 },
8562 "registered_country" : {
8563 "geoname_id" : 3077311,
8564 "is_in_european_union" : true,
8565 "iso_code" : "CZ",
8566 "names" : {
8567 "de" : "Tschechische Republik",
8568 "en" : "Czech Republic",
8569 "es" : "República Checa",
8570 "fr" : "Tchéquie",
8571 "ja" : "チェコ共和国",
8572 "pt-BR" : "República Checa",
8573 "ru" : "Чешская Республика",
8574 "zh-CN" : "捷克共和国"
8575 }
8576 }
8577 }
8578 },
8579 {
8580 "2a02:f040::/29" : {
8581 "continent" : {
8582 "code" : "AS",
8583 "geoname_id" : 6255147,
8584 "names" : {
8585 "de" : "Asien",
8586 "en" : "Asia",
8587 "es" : "Asia",
8588 "fr" : "Asie",
8589 "ja" : "アジア",
8590 "pt-BR" : "Ásia",
8591 "ru" : "Азия",
8592 "zh-CN" : "亚洲"
8593 }
8594 },
8595 "country" : {
8596 "geoname_id" : 290291,
8597 "iso_code" : "BH",
8598 "names" : {
8599 "de" : "Bahrain",
8600 "en" : "Bahrain",
8601 "es" : "Bahréin",
8602 "fr" : "Bahreïn",
8603 "ja" : "バーレーン",
8604 "pt-BR" : "Bahrain",
8605 "ru" : "Бахрейн",
8606 "zh-CN" : "巴林"
8607 }
8608 },
8609 "location" : {
8610 "accuracy_radius" : 100,
8611 "latitude" : 26,
8612 "longitude" : 50.5,
8613 "time_zone" : "Asia/Bahrain"
8614 },
8615 "registered_country" : {
8616 "geoname_id" : 290291,
8617 "iso_code" : "BH",
8618 "names" : {
8619 "de" : "Bahrain",
8620 "en" : "Bahrain",
8621 "es" : "Bahréin",
8622 "fr" : "Bahreïn",
8623 "ja" : "バーレーン",
8624 "pt-BR" : "Bahrain",
8625 "ru" : "Бахрейн",
8626 "zh-CN" : "巴林"
8627 }
8628 }
8629 }
8630 },
8631 {
8632 "2a02:f080::/30" : {
8633 "continent" : {
8634 "code" : "EU",
8635 "geoname_id" : 6255148,
8636 "names" : {
8637 "de" : "Europa",
8638 "en" : "Europe",
8639 "es" : "Europa",
8640 "fr" : "Europe",
8641 "ja" : "ヨーロッパ",
8642 "pt-BR" : "Europa",
8643 "ru" : "Европа",
8644 "zh-CN" : "欧洲"
8645 }
8646 },
8647 "country" : {
8648 "geoname_id" : 690791,
8649 "iso_code" : "UA",
8650 "names" : {
8651 "de" : "Ukraine",
8652 "en" : "Ukraine",
8653 "es" : "Ucrania",
8654 "fr" : "Ukraine",
8655 "ja" : "ウクライナ共和国",
8656 "pt-BR" : "Ucrânia",
8657 "ru" : "Украина",
8658 "zh-CN" : "乌克兰"
8659 }
8660 },
8661 "location" : {
8662 "accuracy_radius" : 100,
8663 "latitude" : 49,
8664 "longitude" : 32
8665 },
8666 "registered_country" : {
8667 "geoname_id" : 690791,
8668 "iso_code" : "UA",
8669 "names" : {
8670 "de" : "Ukraine",
8671 "en" : "Ukraine",
8672 "es" : "Ucrania",
8673 "fr" : "Ukraine",
8674 "ja" : "ウクライナ共和国",
8675 "pt-BR" : "Ucrânia",
8676 "ru" : "Украина",
8677 "zh-CN" : "乌克兰"
8678 }
8679 }
8680 }
8681 },
8682 {
8683 "2a02:f0a0::/30" : {
8684 "continent" : {
8685 "code" : "EU",
8686 "geoname_id" : 6255148,
8687 "names" : {
8688 "de" : "Europa",
8689 "en" : "Europe",
8690 "es" : "Europa",
8691 "fr" : "Europe",
8692 "ja" : "ヨーロッパ",
8693 "pt-BR" : "Europa",
8694 "ru" : "Европа",
8695 "zh-CN" : "欧洲"
8696 }
8697 },
8698 "country" : {
8699 "geoname_id" : 2635167,
8700 "is_in_european_union" : true,
8701 "iso_code" : "GB",
8702 "names" : {
8703 "de" : "Vereinigtes Königreich",
8704 "en" : "United Kingdom",
8705 "es" : "Reino Unido",
8706 "fr" : "Royaume-Uni",
8707 "ja" : "イギリス",
8708 "pt-BR" : "Reino Unido",
8709 "ru" : "Великобритания",
8710 "zh-CN" : "英国"
8711 }
8712 },
8713 "location" : {
8714 "accuracy_radius" : 100,
8715 "latitude" : 54.75844,
8716 "longitude" : -2.69531,
8717 "time_zone" : "Europe/London"
8718 },
8719 "registered_country" : {
8720 "geoname_id" : 2635167,
8721 "is_in_european_union" : true,
8722 "iso_code" : "GB",
8723 "names" : {
8724 "de" : "Vereinigtes Königreich",
8725 "en" : "United Kingdom",
8726 "es" : "Reino Unido",
8727 "fr" : "Royaume-Uni",
8728 "ja" : "イギリス",
8729 "pt-BR" : "Reino Unido",
8730 "ru" : "Великобритания",
8731 "zh-CN" : "英国"
8732 }
8733 }
8734 }
8735 },
8736 {
8737 "2a02:f0c0::/29" : {
8738 "continent" : {
8739 "code" : "AS",
8740 "geoname_id" : 6255147,
8741 "names" : {
8742 "de" : "Asien",
8743 "en" : "Asia",
8744 "es" : "Asia",
8745 "fr" : "Asie",
8746 "ja" : "アジア",
8747 "pt-BR" : "Ásia",
8748 "ru" : "Азия",
8749 "zh-CN" : "亚洲"
8750 }
8751 },
8752 "country" : {
8753 "geoname_id" : 248816,
8754 "iso_code" : "JO",
8755 "names" : {
8756 "de" : "Jordanien",
8757 "en" : "Hashemite Kingdom of Jordan",
8758 "es" : "Jordania",
8759 "fr" : "Jordanie",
8760 "ja" : "ヨルダン・ハシミテ王国",
8761 "pt-BR" : "Jordânia",
8762 "ru" : "Иордания",
8763 "zh-CN" : "约旦"
8764 }
8765 },
8766 "location" : {
8767 "accuracy_radius" : 100,
8768 "latitude" : 31,
8769 "longitude" : 36,
8770 "time_zone" : "Asia/Amman"
8771 },
8772 "registered_country" : {
8773 "geoname_id" : 248816,
8774 "iso_code" : "JO",
8775 "names" : {
8776 "de" : "Jordanien",
8777 "en" : "Hashemite Kingdom of Jordan",
8778 "es" : "Jordania",
8779 "fr" : "Jordanie",
8780 "ja" : "ヨルダン・ハシミテ王国",
8781 "pt-BR" : "Jordânia",
8782 "ru" : "Иордания",
8783 "zh-CN" : "约旦"
8784 }
8785 }
8786 }
8787 },
8788 {
8789 "2a02:f100::/29" : {
8790 "continent" : {
8791 "code" : "EU",
8792 "geoname_id" : 6255148,
8793 "names" : {
8794 "de" : "Europa",
8795 "en" : "Europe",
8796 "es" : "Europa",
8797 "fr" : "Europe",
8798 "ja" : "ヨーロッパ",
8799 "pt-BR" : "Europa",
8800 "ru" : "Европа",
8801 "zh-CN" : "欧洲"
8802 }
8803 },
8804 "country" : {
8805 "geoname_id" : 2635167,
8806 "is_in_european_union" : true,
8807 "iso_code" : "GB",
8808 "names" : {
8809 "de" : "Vereinigtes Königreich",
8810 "en" : "United Kingdom",
8811 "es" : "Reino Unido",
8812 "fr" : "Royaume-Uni",
8813 "ja" : "イギリス",
8814 "pt-BR" : "Reino Unido",
8815 "ru" : "Великобритания",
8816 "zh-CN" : "英国"
8817 }
8818 },
8819 "location" : {
8820 "accuracy_radius" : 100,
8821 "latitude" : 54.75844,
8822 "longitude" : -2.69531,
8823 "time_zone" : "Europe/London"
8824 },
8825 "registered_country" : {
8826 "geoname_id" : 2635167,
8827 "is_in_european_union" : true,
8828 "iso_code" : "GB",
8829 "names" : {
8830 "de" : "Vereinigtes Königreich",
8831 "en" : "United Kingdom",
8832 "es" : "Reino Unido",
8833 "fr" : "Royaume-Uni",
8834 "ja" : "イギリス",
8835 "pt-BR" : "Reino Unido",
8836 "ru" : "Великобритания",
8837 "zh-CN" : "英国"
8838 }
8839 }
8840 }
8841 },
8842 {
8843 "2a02:f140::/29" : {
8844 "continent" : {
8845 "code" : "EU",
8846 "geoname_id" : 6255148,
8847 "names" : {
8848 "de" : "Europa",
8849 "en" : "Europe",
8850 "es" : "Europa",
8851 "fr" : "Europe",
8852 "ja" : "ヨーロッパ",
8853 "pt-BR" : "Europa",
8854 "ru" : "Европа",
8855 "zh-CN" : "欧洲"
8856 }
8857 },
8858 "country" : {
8859 "geoname_id" : 2921044,
8860 "is_in_european_union" : true,
8861 "iso_code" : "DE",
8862 "names" : {
8863 "de" : "Deutschland",
8864 "en" : "Germany",
8865 "es" : "Alemania",
8866 "fr" : "Allemagne",
8867 "ja" : "ドイツ連邦共和国",
8868 "pt-BR" : "Alemanha",
8869 "ru" : "Германия",
8870 "zh-CN" : "德国"
8871 }
8872 },
8873 "location" : {
8874 "accuracy_radius" : 100,
8875 "latitude" : 51.5,
8876 "longitude" : 10.5,
8877 "time_zone" : "Europe/Berlin"
8878 },
8879 "registered_country" : {
8880 "geoname_id" : 2921044,
8881 "is_in_european_union" : true,
8882 "iso_code" : "DE",
8883 "names" : {
8884 "de" : "Deutschland",
8885 "en" : "Germany",
8886 "es" : "Alemania",
8887 "fr" : "Allemagne",
8888 "ja" : "ドイツ連邦共和国",
8889 "pt-BR" : "Alemanha",
8890 "ru" : "Германия",
8891 "zh-CN" : "德国"
8892 }
8893 }
8894 }
8895 },
8896 {
8897 "2a02:f180::/29" : {
8898 "continent" : {
8899 "code" : "EU",
8900 "geoname_id" : 6255148,
8901 "names" : {
8902 "de" : "Europa",
8903 "en" : "Europe",
8904 "es" : "Europa",
8905 "fr" : "Europe",
8906 "ja" : "ヨーロッパ",
8907 "pt-BR" : "Europa",
8908 "ru" : "Европа",
8909 "zh-CN" : "欧洲"
8910 }
8911 },
8912 "country" : {
8913 "geoname_id" : 3017382,
8914 "is_in_european_union" : true,
8915 "iso_code" : "FR",
8916 "names" : {
8917 "de" : "Frankreich",
8918 "en" : "France",
8919 "es" : "Francia",
8920 "fr" : "France",
8921 "ja" : "フランス共和国",
8922 "pt-BR" : "França",
8923 "ru" : "Франция",
8924 "zh-CN" : "法国"
8925 }
8926 },
8927 "location" : {
8928 "accuracy_radius" : 100,
8929 "latitude" : 46,
8930 "longitude" : 2,
8931 "time_zone" : "Europe/Paris"
8932 },
8933 "registered_country" : {
8934 "geoname_id" : 3017382,
8935 "is_in_european_union" : true,
8936 "iso_code" : "FR",
8937 "names" : {
8938 "de" : "Frankreich",
8939 "en" : "France",
8940 "es" : "Francia",
8941 "fr" : "France",
8942 "ja" : "フランス共和国",
8943 "pt-BR" : "França",
8944 "ru" : "Франция",
8945 "zh-CN" : "法国"
8946 }
8947 }
8948 }
8949 },
8950 {
8951 "2a02:f1c0::/29" : {
8952 "continent" : {
8953 "code" : "EU",
8954 "geoname_id" : 6255148,
8955 "names" : {
8956 "de" : "Europa",
8957 "en" : "Europe",
8958 "es" : "Europa",
8959 "fr" : "Europe",
8960 "ja" : "ヨーロッパ",
8961 "pt-BR" : "Europa",
8962 "ru" : "Европа",
8963 "zh-CN" : "欧洲"
8964 }
8965 },
8966 "country" : {
8967 "geoname_id" : 690791,
8968 "iso_code" : "UA",
8969 "names" : {
8970 "de" : "Ukraine",
8971 "en" : "Ukraine",
8972 "es" : "Ucrania",
8973 "fr" : "Ukraine",
8974 "ja" : "ウクライナ共和国",
8975 "pt-BR" : "Ucrânia",
8976 "ru" : "Украина",
8977 "zh-CN" : "乌克兰"
8978 }
8979 },
8980 "location" : {
8981 "accuracy_radius" : 100,
8982 "latitude" : 49,
8983 "longitude" : 32
8984 },
8985 "registered_country" : {
8986 "geoname_id" : 690791,
8987 "iso_code" : "UA",
8988 "names" : {
8989 "de" : "Ukraine",
8990 "en" : "Ukraine",
8991 "es" : "Ucrania",
8992 "fr" : "Ukraine",
8993 "ja" : "ウクライナ共和国",
8994 "pt-BR" : "Ucrânia",
8995 "ru" : "Украина",
8996 "zh-CN" : "乌克兰"
8997 }
8998 }
8999 }
9000 },
9001 {
9002 "2a02:f200::/29" : {
9003 "continent" : {
9004 "code" : "EU",
9005 "geoname_id" : 6255148,
9006 "names" : {
9007 "de" : "Europa",
9008 "en" : "Europe",
9009 "es" : "Europa",
9010 "fr" : "Europe",
9011 "ja" : "ヨーロッパ",
9012 "pt-BR" : "Europa",
9013 "ru" : "Европа",
9014 "zh-CN" : "欧洲"
9015 }
9016 },
9017 "country" : {
9018 "geoname_id" : 2921044,
9019 "is_in_european_union" : true,
9020 "iso_code" : "DE",
9021 "names" : {
9022 "de" : "Deutschland",
9023 "en" : "Germany",
9024 "es" : "Alemania",
9025 "fr" : "Allemagne",
9026 "ja" : "ドイツ連邦共和国",
9027 "pt-BR" : "Alemanha",
9028 "ru" : "Германия",
9029 "zh-CN" : "德国"
9030 }
9031 },
9032 "location" : {
9033 "accuracy_radius" : 100,
9034 "latitude" : 51.5,
9035 "longitude" : 10.5,
9036 "time_zone" : "Europe/Berlin"
9037 },
9038 "registered_country" : {
9039 "geoname_id" : 2921044,
9040 "is_in_european_union" : true,
9041 "iso_code" : "DE",
9042 "names" : {
9043 "de" : "Deutschland",
9044 "en" : "Germany",
9045 "es" : "Alemania",
9046 "fr" : "Allemagne",
9047 "ja" : "ドイツ連邦共和国",
9048 "pt-BR" : "Alemanha",
9049 "ru" : "Германия",
9050 "zh-CN" : "德国"
9051 }
9052 }
9053 }
9054 },
9055 {
9056 "2a02:f240::/29" : {
9057 "continent" : {
9058 "code" : "AS",
9059 "geoname_id" : 6255147,
9060 "names" : {
9061 "de" : "Asien",
9062 "en" : "Asia",
9063 "es" : "Asia",
9064 "fr" : "Asie",
9065 "ja" : "アジア",
9066 "pt-BR" : "Ásia",
9067 "ru" : "Азия",
9068 "zh-CN" : "亚洲"
9069 }
9070 },
9071 "country" : {
9072 "geoname_id" : 130758,
9073 "iso_code" : "IR",
9074 "names" : {
9075 "de" : "Iran (Islamische Republik)",
9076 "en" : "Iran",
9077 "es" : "Irán (República Islámica)",
9078 "fr" : "Iran (République islamique de)",
9079 "ja" : "イラン・イスラム共和国",
9080 "pt-BR" : "República Islâmica do Irã",
9081 "ru" : "Иран",
9082 "zh-CN" : "伊朗伊斯兰共和国"
9083 }
9084 },
9085 "location" : {
9086 "accuracy_radius" : 100,
9087 "latitude" : 32,
9088 "longitude" : 53,
9089 "time_zone" : "Asia/Tehran"
9090 },
9091 "registered_country" : {
9092 "geoname_id" : 130758,
9093 "iso_code" : "IR",
9094 "names" : {
9095 "de" : "Iran (Islamische Republik)",
9096 "en" : "Iran",
9097 "es" : "Irán (República Islámica)",
9098 "fr" : "Iran (République islamique de)",
9099 "ja" : "イラン・イスラム共和国",
9100 "pt-BR" : "República Islâmica do Irã",
9101 "ru" : "Иран",
9102 "zh-CN" : "伊朗伊斯兰共和国"
9103 }
9104 }
9105 }
9106 },
9107 {
9108 "2a02:f280::/29" : {
9109 "continent" : {
9110 "code" : "EU",
9111 "geoname_id" : 6255148,
9112 "names" : {
9113 "de" : "Europa",
9114 "en" : "Europe",
9115 "es" : "Europa",
9116 "fr" : "Europe",
9117 "ja" : "ヨーロッパ",
9118 "pt-BR" : "Europa",
9119 "ru" : "Европа",
9120 "zh-CN" : "欧洲"
9121 }
9122 },
9123 "country" : {
9124 "geoname_id" : 3017382,
9125 "is_in_european_union" : true,
9126 "iso_code" : "FR",
9127 "names" : {
9128 "de" : "Frankreich",
9129 "en" : "France",
9130 "es" : "Francia",
9131 "fr" : "France",
9132 "ja" : "フランス共和国",
9133 "pt-BR" : "França",
9134 "ru" : "Франция",
9135 "zh-CN" : "法国"
9136 }
9137 },
9138 "location" : {
9139 "accuracy_radius" : 100,
9140 "latitude" : 46,
9141 "longitude" : 2,
9142 "time_zone" : "Europe/Paris"
9143 },
9144 "registered_country" : {
9145 "geoname_id" : 3017382,
9146 "is_in_european_union" : true,
9147 "iso_code" : "FR",
9148 "names" : {
9149 "de" : "Frankreich",
9150 "en" : "France",
9151 "es" : "Francia",
9152 "fr" : "France",
9153 "ja" : "フランス共和国",
9154 "pt-BR" : "França",
9155 "ru" : "Франция",
9156 "zh-CN" : "法国"
9157 }
9158 }
9159 }
9160 },
9161 {
9162 "2a02:f2c0::/29" : {
9163 "continent" : {
9164 "code" : "EU",
9165 "geoname_id" : 6255148,
9166 "names" : {
9167 "de" : "Europa",
9168 "en" : "Europe",
9169 "es" : "Europa",
9170 "fr" : "Europe",
9171 "ja" : "ヨーロッパ",
9172 "pt-BR" : "Europa",
9173 "ru" : "Европа",
9174 "zh-CN" : "欧洲"
9175 }
9176 },
9177 "country" : {
9178 "geoname_id" : 2017370,
9179 "iso_code" : "RU",
9180 "names" : {
9181 "de" : "Russland",
9182 "en" : "Russia",
9183 "es" : "Rusia",
9184 "fr" : "Russie",
9185 "ja" : "ロシア",
9186 "pt-BR" : "Rússia",
9187 "ru" : "Россия",
9188 "zh-CN" : "俄罗斯"
9189 }
9190 },
9191 "location" : {
9192 "accuracy_radius" : 100,
9193 "latitude" : 60,
9194 "longitude" : 100
9195 },
9196 "registered_country" : {
9197 "geoname_id" : 2017370,
9198 "iso_code" : "RU",
9199 "names" : {
9200 "de" : "Russland",
9201 "en" : "Russia",
9202 "es" : "Rusia",
9203 "fr" : "Russie",
9204 "ja" : "ロシア",
9205 "pt-BR" : "Rússia",
9206 "ru" : "Россия",
9207 "zh-CN" : "俄罗斯"
9208 }
9209 }
9210 }
9211 },
9212 {
9213 "2a02:f300::/29" : {
9214 "continent" : {
9215 "code" : "EU",
9216 "geoname_id" : 6255148,
9217 "names" : {
9218 "de" : "Europa",
9219 "en" : "Europe",
9220 "es" : "Europa",
9221 "fr" : "Europe",
9222 "ja" : "ヨーロッパ",
9223 "pt-BR" : "Europa",
9224 "ru" : "Европа",
9225 "zh-CN" : "欧洲"
9226 }
9227 },
9228 "country" : {
9229 "geoname_id" : 3144096,
9230 "iso_code" : "NO",
9231 "names" : {
9232 "de" : "Norwegen",
9233 "en" : "Norway",
9234 "es" : "Noruega",
9235 "fr" : "Norvège",
9236 "ja" : "ノルウェー王国",
9237 "pt-BR" : "Noruega",
9238 "ru" : "Норвегия",
9239 "zh-CN" : "挪威"
9240 }
9241 },
9242 "location" : {
9243 "accuracy_radius" : 100,
9244 "latitude" : 62,
9245 "longitude" : 10,
9246 "time_zone" : "Europe/Oslo"
9247 },
9248 "registered_country" : {
9249 "geoname_id" : 3144096,
9250 "iso_code" : "NO",
9251 "names" : {
9252 "de" : "Norwegen",
9253 "en" : "Norway",
9254 "es" : "Noruega",
9255 "fr" : "Norvège",
9256 "ja" : "ノルウェー王国",
9257 "pt-BR" : "Noruega",
9258 "ru" : "Норвегия",
9259 "zh-CN" : "挪威"
9260 }
9261 }
9262 }
9263 },
9264 {
9265 "2a02:f340::/29" : {
9266 "continent" : {
9267 "code" : "EU",
9268 "geoname_id" : 6255148,
9269 "names" : {
9270 "de" : "Europa",
9271 "en" : "Europe",
9272 "es" : "Europa",
9273 "fr" : "Europe",
9274 "ja" : "ヨーロッパ",
9275 "pt-BR" : "Europa",
9276 "ru" : "Европа",
9277 "zh-CN" : "欧洲"
9278 }
9279 },
9280 "country" : {
9281 "geoname_id" : 2921044,
9282 "is_in_european_union" : true,
9283 "iso_code" : "DE",
9284 "names" : {
9285 "de" : "Deutschland",
9286 "en" : "Germany",
9287 "es" : "Alemania",
9288 "fr" : "Allemagne",
9289 "ja" : "ドイツ連邦共和国",
9290 "pt-BR" : "Alemanha",
9291 "ru" : "Германия",
9292 "zh-CN" : "德国"
9293 }
9294 },
9295 "location" : {
9296 "accuracy_radius" : 100,
9297 "latitude" : 51.5,
9298 "longitude" : 10.5,
9299 "time_zone" : "Europe/Berlin"
9300 },
9301 "registered_country" : {
9302 "geoname_id" : 2921044,
9303 "is_in_european_union" : true,
9304 "iso_code" : "DE",
9305 "names" : {
9306 "de" : "Deutschland",
9307 "en" : "Germany",
9308 "es" : "Alemania",
9309 "fr" : "Allemagne",
9310 "ja" : "ドイツ連邦共和国",
9311 "pt-BR" : "Alemanha",
9312 "ru" : "Германия",
9313 "zh-CN" : "德国"
9314 }
9315 }
9316 }
9317 },
9318 {
9319 "2a02:f380::/29" : {
9320 "continent" : {
9321 "code" : "EU",
9322 "geoname_id" : 6255148,
9323 "names" : {
9324 "de" : "Europa",
9325 "en" : "Europe",
9326 "es" : "Europa",
9327 "fr" : "Europe",
9328 "ja" : "ヨーロッパ",
9329 "pt-BR" : "Europa",
9330 "ru" : "Европа",
9331 "zh-CN" : "欧洲"
9332 }
9333 },
9334 "country" : {
9335 "geoname_id" : 2635167,
9336 "is_in_european_union" : true,
9337 "iso_code" : "GB",
9338 "names" : {
9339 "de" : "Vereinigtes Königreich",
9340 "en" : "United Kingdom",
9341 "es" : "Reino Unido",
9342 "fr" : "Royaume-Uni",
9343 "ja" : "イギリス",
9344 "pt-BR" : "Reino Unido",
9345 "ru" : "Великобритания",
9346 "zh-CN" : "英国"
9347 }
9348 },
9349 "location" : {
9350 "accuracy_radius" : 100,
9351 "latitude" : 54.75844,
9352 "longitude" : -2.69531,
9353 "time_zone" : "Europe/London"
9354 },
9355 "registered_country" : {
9356 "geoname_id" : 2635167,
9357 "is_in_european_union" : true,
9358 "iso_code" : "GB",
9359 "names" : {
9360 "de" : "Vereinigtes Königreich",
9361 "en" : "United Kingdom",
9362 "es" : "Reino Unido",
9363 "fr" : "Royaume-Uni",
9364 "ja" : "イギリス",
9365 "pt-BR" : "Reino Unido",
9366 "ru" : "Великобритания",
9367 "zh-CN" : "英国"
9368 }
9369 }
9370 }
9371 },
9372 {
9373 "2a02:f3c0::/29" : {
9374 "continent" : {
9375 "code" : "EU",
9376 "geoname_id" : 6255148,
9377 "names" : {
9378 "de" : "Europa",
9379 "en" : "Europe",
9380 "es" : "Europa",
9381 "fr" : "Europe",
9382 "ja" : "ヨーロッパ",
9383 "pt-BR" : "Europa",
9384 "ru" : "Европа",
9385 "zh-CN" : "欧洲"
9386 }
9387 },
9388 "country" : {
9389 "geoname_id" : 798544,
9390 "is_in_european_union" : true,
9391 "iso_code" : "PL",
9392 "names" : {
9393 "de" : "Polen",
9394 "en" : "Poland",
9395 "es" : "Polonia",
9396 "fr" : "Pologne",
9397 "ja" : "ポーランド共和国",
9398 "pt-BR" : "Polônia",
9399 "ru" : "Польша",
9400 "zh-CN" : "波兰"
9401 }
9402 },
9403 "location" : {
9404 "accuracy_radius" : 100,
9405 "latitude" : 52,
9406 "longitude" : 20,
9407 "time_zone" : "Europe/Warsaw"
9408 },
9409 "registered_country" : {
9410 "geoname_id" : 798544,
9411 "is_in_european_union" : true,
9412 "iso_code" : "PL",
9413 "names" : {
9414 "de" : "Polen",
9415 "en" : "Poland",
9416 "es" : "Polonia",
9417 "fr" : "Pologne",
9418 "ja" : "ポーランド共和国",
9419 "pt-BR" : "Polônia",
9420 "ru" : "Польша",
9421 "zh-CN" : "波兰"
9422 }
9423 }
9424 }
9425 },
9426 {
9427 "2a02:f400::/29" : {
9428 "continent" : {
9429 "code" : "AS",
9430 "geoname_id" : 6255147,
9431 "names" : {
9432 "de" : "Asien",
9433 "en" : "Asia",
9434 "es" : "Asia",
9435 "fr" : "Asie",
9436 "ja" : "アジア",
9437 "pt-BR" : "Ásia",
9438 "ru" : "Азия",
9439 "zh-CN" : "亚洲"
9440 }
9441 },
9442 "country" : {
9443 "geoname_id" : 290557,
9444 "iso_code" : "AE",
9445 "names" : {
9446 "de" : "Vereinigte Arabische Emirate",
9447 "en" : "United Arab Emirates",
9448 "es" : "Emiratos Árabes Unidos",
9449 "fr" : "Émirats Arabes Unis",
9450 "ja" : "アラブ首長国連邦",
9451 "pt-BR" : "Emirados Árabes Unidos",
9452 "ru" : "Объединенные Арабские Эмираты",
9453 "zh-CN" : "阿拉伯联合酋长国"
9454 }
9455 },
9456 "location" : {
9457 "accuracy_radius" : 100,
9458 "latitude" : 24,
9459 "longitude" : 54,
9460 "time_zone" : "Asia/Dubai"
9461 },
9462 "registered_country" : {
9463 "geoname_id" : 290557,
9464 "iso_code" : "AE",
9465 "names" : {
9466 "de" : "Vereinigte Arabische Emirate",
9467 "en" : "United Arab Emirates",
9468 "es" : "Emiratos Árabes Unidos",
9469 "fr" : "Émirats Arabes Unis",
9470 "ja" : "アラブ首長国連邦",
9471 "pt-BR" : "Emirados Árabes Unidos",
9472 "ru" : "Объединенные Арабские Эмираты",
9473 "zh-CN" : "阿拉伯联合酋长国"
9474 }
9475 }
9476 }
9477 },
9478 {
9479 "2a02:f440::/29" : {
9480 "continent" : {
9481 "code" : "EU",
9482 "geoname_id" : 6255148,
9483 "names" : {
9484 "de" : "Europa",
9485 "en" : "Europe",
9486 "es" : "Europa",
9487 "fr" : "Europe",
9488 "ja" : "ヨーロッパ",
9489 "pt-BR" : "Europa",
9490 "ru" : "Европа",
9491 "zh-CN" : "欧洲"
9492 }
9493 },
9494 "country" : {
9495 "geoname_id" : 2635167,
9496 "is_in_european_union" : true,
9497 "iso_code" : "GB",
9498 "names" : {
9499 "de" : "Vereinigtes Königreich",
9500 "en" : "United Kingdom",
9501 "es" : "Reino Unido",
9502 "fr" : "Royaume-Uni",
9503 "ja" : "イギリス",
9504 "pt-BR" : "Reino Unido",
9505 "ru" : "Великобритания",
9506 "zh-CN" : "英国"
9507 }
9508 },
9509 "location" : {
9510 "accuracy_radius" : 100,
9511 "latitude" : 54.75844,
9512 "longitude" : -2.69531,
9513 "time_zone" : "Europe/London"
9514 },
9515 "registered_country" : {
9516 "geoname_id" : 2635167,
9517 "is_in_european_union" : true,
9518 "iso_code" : "GB",
9519 "names" : {
9520 "de" : "Vereinigtes Königreich",
9521 "en" : "United Kingdom",
9522 "es" : "Reino Unido",
9523 "fr" : "Royaume-Uni",
9524 "ja" : "イギリス",
9525 "pt-BR" : "Reino Unido",
9526 "ru" : "Великобритания",
9527 "zh-CN" : "英国"
9528 }
9529 }
9530 }
9531 },
9532 {
9533 "2a02:f480::/29" : {
9534 "continent" : {
9535 "code" : "EU",
9536 "geoname_id" : 6255148,
9537 "names" : {
9538 "de" : "Europa",
9539 "en" : "Europe",
9540 "es" : "Europa",
9541 "fr" : "Europe",
9542 "ja" : "ヨーロッパ",
9543 "pt-BR" : "Europa",
9544 "ru" : "Европа",
9545 "zh-CN" : "欧洲"
9546 }
9547 },
9548 "country" : {
9549 "geoname_id" : 3144096,
9550 "iso_code" : "NO",
9551 "names" : {
9552 "de" : "Norwegen",
9553 "en" : "Norway",
9554 "es" : "Noruega",
9555 "fr" : "Norvège",
9556 "ja" : "ノルウェー王国",
9557 "pt-BR" : "Noruega",
9558 "ru" : "Норвегия",
9559 "zh-CN" : "挪威"
9560 }
9561 },
9562 "location" : {
9563 "accuracy_radius" : 100,
9564 "latitude" : 62,
9565 "longitude" : 10,
9566 "time_zone" : "Europe/Oslo"
9567 },
9568 "registered_country" : {
9569 "geoname_id" : 3144096,
9570 "iso_code" : "NO",
9571 "names" : {
9572 "de" : "Norwegen",
9573 "en" : "Norway",
9574 "es" : "Noruega",
9575 "fr" : "Norvège",
9576 "ja" : "ノルウェー王国",
9577 "pt-BR" : "Noruega",
9578 "ru" : "Норвегия",
9579 "zh-CN" : "挪威"
9580 }
9581 }
9582 }
9583 },
9584 {
9585 "2a02:f4c0::/29" : {
9586 "continent" : {
9587 "code" : "EU",
9588 "geoname_id" : 6255148,
9589 "names" : {
9590 "de" : "Europa",
9591 "en" : "Europe",
9592 "es" : "Europa",
9593 "fr" : "Europe",
9594 "ja" : "ヨーロッパ",
9595 "pt-BR" : "Europa",
9596 "ru" : "Европа",
9597 "zh-CN" : "欧洲"
9598 }
9599 },
9600 "country" : {
9601 "geoname_id" : 2510769,
9602 "is_in_european_union" : true,
9603 "iso_code" : "ES",
9604 "names" : {
9605 "de" : "Spanien",
9606 "en" : "Spain",
9607 "es" : "España",
9608 "fr" : "Espagne",
9609 "ja" : "スペイン",
9610 "pt-BR" : "Espanha",
9611 "ru" : "Испания",
9612 "zh-CN" : "西班牙"
9613 }
9614 },
9615 "location" : {
9616 "accuracy_radius" : 100,
9617 "latitude" : 40,
9618 "longitude" : -4
9619 },
9620 "registered_country" : {
9621 "geoname_id" : 2510769,
9622 "is_in_european_union" : true,
9623 "iso_code" : "ES",
9624 "names" : {
9625 "de" : "Spanien",
9626 "en" : "Spain",
9627 "es" : "España",
9628 "fr" : "Espagne",
9629 "ja" : "スペイン",
9630 "pt-BR" : "Espanha",
9631 "ru" : "Испания",
9632 "zh-CN" : "西班牙"
9633 }
9634 }
9635 }
9636 },
9637 {
9638 "2a02:f500::/29" : {
9639 "continent" : {
9640 "code" : "EU",
9641 "geoname_id" : 6255148,
9642 "names" : {
9643 "de" : "Europa",
9644 "en" : "Europe",
9645 "es" : "Europa",
9646 "fr" : "Europe",
9647 "ja" : "ヨーロッパ",
9648 "pt-BR" : "Europa",
9649 "ru" : "Европа",
9650 "zh-CN" : "欧洲"
9651 }
9652 },
9653 "country" : {
9654 "geoname_id" : 2017370,
9655 "iso_code" : "RU",
9656 "names" : {
9657 "de" : "Russland",
9658 "en" : "Russia",
9659 "es" : "Rusia",
9660 "fr" : "Russie",
9661 "ja" : "ロシア",
9662 "pt-BR" : "Rússia",
9663 "ru" : "Россия",
9664 "zh-CN" : "俄罗斯"
9665 }
9666 },
9667 "location" : {
9668 "accuracy_radius" : 100,
9669 "latitude" : 60,
9670 "longitude" : 100
9671 },
9672 "registered_country" : {
9673 "geoname_id" : 2017370,
9674 "iso_code" : "RU",
9675 "names" : {
9676 "de" : "Russland",
9677 "en" : "Russia",
9678 "es" : "Rusia",
9679 "fr" : "Russie",
9680 "ja" : "ロシア",
9681 "pt-BR" : "Rússia",
9682 "ru" : "Россия",
9683 "zh-CN" : "俄罗斯"
9684 }
9685 }
9686 }
9687 },
9688 {
9689 "2a02:f540::/30" : {
9690 "continent" : {
9691 "code" : "EU",
9692 "geoname_id" : 6255148,
9693 "names" : {
9694 "de" : "Europa",
9695 "en" : "Europe",
9696 "es" : "Europa",
9697 "fr" : "Europe",
9698 "ja" : "ヨーロッパ",
9699 "pt-BR" : "Europa",
9700 "ru" : "Европа",
9701 "zh-CN" : "欧洲"
9702 }
9703 },
9704 "country" : {
9705 "geoname_id" : 2635167,
9706 "is_in_european_union" : true,
9707 "iso_code" : "GB",
9708 "names" : {
9709 "de" : "Vereinigtes Königreich",
9710 "en" : "United Kingdom",
9711 "es" : "Reino Unido",
9712 "fr" : "Royaume-Uni",
9713 "ja" : "イギリス",
9714 "pt-BR" : "Reino Unido",
9715 "ru" : "Великобритания",
9716 "zh-CN" : "英国"
9717 }
9718 },
9719 "location" : {
9720 "accuracy_radius" : 100,
9721 "latitude" : 54.75844,
9722 "longitude" : -2.69531,
9723 "time_zone" : "Europe/London"
9724 },
9725 "registered_country" : {
9726 "geoname_id" : 2635167,
9727 "is_in_european_union" : true,
9728 "iso_code" : "GB",
9729 "names" : {
9730 "de" : "Vereinigtes Königreich",
9731 "en" : "United Kingdom",
9732 "es" : "Reino Unido",
9733 "fr" : "Royaume-Uni",
9734 "ja" : "イギリス",
9735 "pt-BR" : "Reino Unido",
9736 "ru" : "Великобритания",
9737 "zh-CN" : "英国"
9738 }
9739 }
9740 }
9741 },
9742 {
9743 "2a02:f560::/30" : {
9744 "continent" : {
9745 "code" : "EU",
9746 "geoname_id" : 6255148,
9747 "names" : {
9748 "de" : "Europa",
9749 "en" : "Europe",
9750 "es" : "Europa",
9751 "fr" : "Europe",
9752 "ja" : "ヨーロッパ",
9753 "pt-BR" : "Europa",
9754 "ru" : "Европа",
9755 "zh-CN" : "欧洲"
9756 }
9757 },
9758 "country" : {
9759 "geoname_id" : 2017370,
9760 "iso_code" : "RU",
9761 "names" : {
9762 "de" : "Russland",
9763 "en" : "Russia",
9764 "es" : "Rusia",
9765 "fr" : "Russie",
9766 "ja" : "ロシア",
9767 "pt-BR" : "Rússia",
9768 "ru" : "Россия",
9769 "zh-CN" : "俄罗斯"
9770 }
9771 },
9772 "location" : {
9773 "accuracy_radius" : 100,
9774 "latitude" : 60,
9775 "longitude" : 100
9776 },
9777 "registered_country" : {
9778 "geoname_id" : 2017370,
9779 "iso_code" : "RU",
9780 "names" : {
9781 "de" : "Russland",
9782 "en" : "Russia",
9783 "es" : "Rusia",
9784 "fr" : "Russie",
9785 "ja" : "ロシア",
9786 "pt-BR" : "Rússia",
9787 "ru" : "Россия",
9788 "zh-CN" : "俄罗斯"
9789 }
9790 }
9791 }
9792 },
9793 {
9794 "2a02:f580::/29" : {
9795 "continent" : {
9796 "code" : "AS",
9797 "geoname_id" : 6255147,
9798 "names" : {
9799 "de" : "Asien",
9800 "en" : "Asia",
9801 "es" : "Asia",
9802 "fr" : "Asie",
9803 "ja" : "アジア",
9804 "pt-BR" : "Ásia",
9805 "ru" : "Азия",
9806 "zh-CN" : "亚洲"
9807 }
9808 },
9809 "country" : {
9810 "geoname_id" : 174982,
9811 "iso_code" : "AM",
9812 "names" : {
9813 "de" : "Armenien",
9814 "en" : "Armenia",
9815 "es" : "Armenia",
9816 "fr" : "Arménie",
9817 "ja" : "アルメニア共和国",
9818 "pt-BR" : "Armênia",
9819 "ru" : "Армения",
9820 "zh-CN" : "亚美尼亚"
9821 }
9822 },
9823 "location" : {
9824 "accuracy_radius" : 100,
9825 "latitude" : 40,
9826 "longitude" : 45,
9827 "time_zone" : "Asia/Yerevan"
9828 },
9829 "registered_country" : {
9830 "geoname_id" : 174982,
9831 "iso_code" : "AM",
9832 "names" : {
9833 "de" : "Armenien",
9834 "en" : "Armenia",
9835 "es" : "Armenia",
9836 "fr" : "Arménie",
9837 "ja" : "アルメニア共和国",
9838 "pt-BR" : "Armênia",
9839 "ru" : "Армения",
9840 "zh-CN" : "亚美尼亚"
9841 }
9842 }
9843 }
9844 },
9845 {
9846 "2a02:f5c0::/29" : {
9847 "continent" : {
9848 "code" : "EU",
9849 "geoname_id" : 6255148,
9850 "names" : {
9851 "de" : "Europa",
9852 "en" : "Europe",
9853 "es" : "Europa",
9854 "fr" : "Europe",
9855 "ja" : "ヨーロッパ",
9856 "pt-BR" : "Europa",
9857 "ru" : "Европа",
9858 "zh-CN" : "欧洲"
9859 }
9860 },
9861 "country" : {
9862 "geoname_id" : 2750405,
9863 "is_in_european_union" : true,
9864 "iso_code" : "NL",
9865 "names" : {
9866 "de" : "Niederlande",
9867 "en" : "Netherlands",
9868 "es" : "Holanda",
9869 "fr" : "Pays-Bas",
9870 "ja" : "オランダ王国",
9871 "pt-BR" : "Países Baixos",
9872 "ru" : "Нидерланды",
9873 "zh-CN" : "荷兰"
9874 }
9875 },
9876 "location" : {
9877 "accuracy_radius" : 100,
9878 "latitude" : 52.5,
9879 "longitude" : 5.75,
9880 "time_zone" : "Europe/Amsterdam"
9881 },
9882 "registered_country" : {
9883 "geoname_id" : 2750405,
9884 "is_in_european_union" : true,
9885 "iso_code" : "NL",
9886 "names" : {
9887 "de" : "Niederlande",
9888 "en" : "Netherlands",
9889 "es" : "Holanda",
9890 "fr" : "Pays-Bas",
9891 "ja" : "オランダ王国",
9892 "pt-BR" : "Países Baixos",
9893 "ru" : "Нидерланды",
9894 "zh-CN" : "荷兰"
9895 }
9896 }
9897 }
9898 },
9899 {
9900 "2a02:f600::/29" : {
9901 "continent" : {
9902 "code" : "EU",
9903 "geoname_id" : 6255148,
9904 "names" : {
9905 "de" : "Europa",
9906 "en" : "Europe",
9907 "es" : "Europa",
9908 "fr" : "Europe",
9909 "ja" : "ヨーロッパ",
9910 "pt-BR" : "Europa",
9911 "ru" : "Европа",
9912 "zh-CN" : "欧洲"
9913 }
9914 },
9915 "country" : {
9916 "geoname_id" : 2750405,
9917 "is_in_european_union" : true,
9918 "iso_code" : "NL",
9919 "names" : {
9920 "de" : "Niederlande",
9921 "en" : "Netherlands",
9922 "es" : "Holanda",
9923 "fr" : "Pays-Bas",
9924 "ja" : "オランダ王国",
9925 "pt-BR" : "Países Baixos",
9926 "ru" : "Нидерланды",
9927 "zh-CN" : "荷兰"
9928 }
9929 },
9930 "location" : {
9931 "accuracy_radius" : 100,
9932 "latitude" : 52.5,
9933 "longitude" : 5.75,
9934 "time_zone" : "Europe/Amsterdam"
9935 },
9936 "registered_country" : {
9937 "geoname_id" : 2750405,
9938 "is_in_european_union" : true,
9939 "iso_code" : "NL",
9940 "names" : {
9941 "de" : "Niederlande",
9942 "en" : "Netherlands",
9943 "es" : "Holanda",
9944 "fr" : "Pays-Bas",
9945 "ja" : "オランダ王国",
9946 "pt-BR" : "Países Baixos",
9947 "ru" : "Нидерланды",
9948 "zh-CN" : "荷兰"
9949 }
9950 }
9951 }
9952 },
9953 {
9954 "2a02:f640::/29" : {
9955 "continent" : {
9956 "code" : "EU",
9957 "geoname_id" : 6255148,
9958 "names" : {
9959 "de" : "Europa",
9960 "en" : "Europe",
9961 "es" : "Europa",
9962 "fr" : "Europe",
9963 "ja" : "ヨーロッパ",
9964 "pt-BR" : "Europa",
9965 "ru" : "Европа",
9966 "zh-CN" : "欧洲"
9967 }
9968 },
9969 "country" : {
9970 "geoname_id" : 2750405,
9971 "is_in_european_union" : true,
9972 "iso_code" : "NL",
9973 "names" : {
9974 "de" : "Niederlande",
9975 "en" : "Netherlands",
9976 "es" : "Holanda",
9977 "fr" : "Pays-Bas",
9978 "ja" : "オランダ王国",
9979 "pt-BR" : "Países Baixos",
9980 "ru" : "Нидерланды",
9981 "zh-CN" : "荷兰"
9982 }
9983 },
9984 "location" : {
9985 "accuracy_radius" : 100,
9986 "latitude" : 52.5,
9987 "longitude" : 5.75,
9988 "time_zone" : "Europe/Amsterdam"
9989 },
9990 "registered_country" : {
9991 "geoname_id" : 2750405,
9992 "is_in_european_union" : true,
9993 "iso_code" : "NL",
9994 "names" : {
9995 "de" : "Niederlande",
9996 "en" : "Netherlands",
9997 "es" : "Holanda",
9998 "fr" : "Pays-Bas",
9999 "ja" : "オランダ王国",
10000 "pt-BR" : "Países Baixos",
10001 "ru" : "Нидерланды",
10002 "zh-CN" : "荷兰"
10003 }
10004 }
10005 }
10006 },
10007 {
10008 "2a02:f680::/29" : {
10009 "continent" : {
10010 "code" : "EU",
10011 "geoname_id" : 6255148,
10012 "names" : {
10013 "de" : "Europa",
10014 "en" : "Europe",
10015 "es" : "Europa",
10016 "fr" : "Europe",
10017 "ja" : "ヨーロッパ",
10018 "pt-BR" : "Europa",
10019 "ru" : "Европа",
10020 "zh-CN" : "欧洲"
10021 }
10022 },
10023 "country" : {
10024 "geoname_id" : 2017370,
10025 "iso_code" : "RU",
10026 "names" : {
10027 "de" : "Russland",
10028 "en" : "Russia",
10029 "es" : "Rusia",
10030 "fr" : "Russie",
10031 "ja" : "ロシア",
10032 "pt-BR" : "Rússia",
10033 "ru" : "Россия",
10034 "zh-CN" : "俄罗斯"
10035 }
10036 },
10037 "location" : {
10038 "accuracy_radius" : 100,
10039 "latitude" : 60,
10040 "longitude" : 100
10041 },
10042 "registered_country" : {
10043 "geoname_id" : 2017370,
10044 "iso_code" : "RU",
10045 "names" : {
10046 "de" : "Russland",
10047 "en" : "Russia",
10048 "es" : "Rusia",
10049 "fr" : "Russie",
10050 "ja" : "ロシア",
10051 "pt-BR" : "Rússia",
10052 "ru" : "Россия",
10053 "zh-CN" : "俄罗斯"
10054 }
10055 }
10056 }
10057 },
10058 {
10059 "2a02:f6c0::/29" : {
10060 "continent" : {
10061 "code" : "EU",
10062 "geoname_id" : 6255148,
10063 "names" : {
10064 "de" : "Europa",
10065 "en" : "Europe",
10066 "es" : "Europa",
10067 "fr" : "Europe",
10068 "ja" : "ヨーロッパ",
10069 "pt-BR" : "Europa",
10070 "ru" : "Европа",
10071 "zh-CN" : "欧洲"
10072 }
10073 },
10074 "country" : {
10075 "geoname_id" : 2017370,
10076 "iso_code" : "RU",
10077 "names" : {
10078 "de" : "Russland",
10079 "en" : "Russia",
10080 "es" : "Rusia",
10081 "fr" : "Russie",
10082 "ja" : "ロシア",
10083 "pt-BR" : "Rússia",
10084 "ru" : "Россия",
10085 "zh-CN" : "俄罗斯"
10086 }
10087 },
10088 "location" : {
10089 "accuracy_radius" : 100,
10090 "latitude" : 60,
10091 "longitude" : 100
10092 },
10093 "registered_country" : {
10094 "geoname_id" : 2017370,
10095 "iso_code" : "RU",
10096 "names" : {
10097 "de" : "Russland",
10098 "en" : "Russia",
10099 "es" : "Rusia",
10100 "fr" : "Russie",
10101 "ja" : "ロシア",
10102 "pt-BR" : "Rússia",
10103 "ru" : "Россия",
10104 "zh-CN" : "俄罗斯"
10105 }
10106 }
10107 }
10108 },
10109 {
10110 "2a02:f700::/29" : {
10111 "continent" : {
10112 "code" : "AS",
10113 "geoname_id" : 6255147,
10114 "names" : {
10115 "de" : "Asien",
10116 "en" : "Asia",
10117 "es" : "Asia",
10118 "fr" : "Asie",
10119 "ja" : "アジア",
10120 "pt-BR" : "Ásia",
10121 "ru" : "Азия",
10122 "zh-CN" : "亚洲"
10123 }
10124 },
10125 "country" : {
10126 "geoname_id" : 272103,
10127 "iso_code" : "LB",
10128 "names" : {
10129 "de" : "Libanon",
10130 "en" : "Lebanon",
10131 "es" : "Líbano",
10132 "fr" : "Liban",
10133 "ja" : "レバノン共和国",
10134 "pt-BR" : "Líbano",
10135 "ru" : "Ливан",
10136 "zh-CN" : "黎巴嫩"
10137 }
10138 },
10139 "location" : {
10140 "accuracy_radius" : 100,
10141 "latitude" : 33.83333,
10142 "longitude" : 35.83333,
10143 "time_zone" : "Asia/Beirut"
10144 },
10145 "registered_country" : {
10146 "geoname_id" : 272103,
10147 "iso_code" : "LB",
10148 "names" : {
10149 "de" : "Libanon",
10150 "en" : "Lebanon",
10151 "es" : "Líbano",
10152 "fr" : "Liban",
10153 "ja" : "レバノン共和国",
10154 "pt-BR" : "Líbano",
10155 "ru" : "Ливан",
10156 "zh-CN" : "黎巴嫩"
10157 }
10158 }
10159 }
10160 },
10161 {
10162 "2a02:f740::/29" : {
10163 "continent" : {
10164 "code" : "EU",
10165 "geoname_id" : 6255148,
10166 "names" : {
10167 "de" : "Europa",
10168 "en" : "Europe",
10169 "es" : "Europa",
10170 "fr" : "Europe",
10171 "ja" : "ヨーロッパ",
10172 "pt-BR" : "Europa",
10173 "ru" : "Европа",
10174 "zh-CN" : "欧洲"
10175 }
10176 },
10177 "country" : {
10178 "geoname_id" : 798544,
10179 "is_in_european_union" : true,
10180 "iso_code" : "PL",
10181 "names" : {
10182 "de" : "Polen",
10183 "en" : "Poland",
10184 "es" : "Polonia",
10185 "fr" : "Pologne",
10186 "ja" : "ポーランド共和国",
10187 "pt-BR" : "Polônia",
10188 "ru" : "Польша",
10189 "zh-CN" : "波兰"
10190 }
10191 },
10192 "location" : {
10193 "accuracy_radius" : 100,
10194 "latitude" : 52,
10195 "longitude" : 20,
10196 "time_zone" : "Europe/Warsaw"
10197 },
10198 "registered_country" : {
10199 "geoname_id" : 798544,
10200 "is_in_european_union" : true,
10201 "iso_code" : "PL",
10202 "names" : {
10203 "de" : "Polen",
10204 "en" : "Poland",
10205 "es" : "Polonia",
10206 "fr" : "Pologne",
10207 "ja" : "ポーランド共和国",
10208 "pt-BR" : "Polônia",
10209 "ru" : "Польша",
10210 "zh-CN" : "波兰"
10211 }
10212 }
10213 }
10214 },
10215 {
10216 "2a02:f780::/29" : {
10217 "continent" : {
10218 "code" : "EU",
10219 "geoname_id" : 6255148,
10220 "names" : {
10221 "de" : "Europa",
10222 "en" : "Europe",
10223 "es" : "Europa",
10224 "fr" : "Europe",
10225 "ja" : "ヨーロッパ",
10226 "pt-BR" : "Europa",
10227 "ru" : "Европа",
10228 "zh-CN" : "欧洲"
10229 }
10230 },
10231 "country" : {
10232 "geoname_id" : 2661886,
10233 "is_in_european_union" : true,
10234 "iso_code" : "SE",
10235 "names" : {
10236 "de" : "Schweden",
10237 "en" : "Sweden",
10238 "es" : "Suecia",
10239 "fr" : "Suède",
10240 "ja" : "スウェーデン王国",
10241 "pt-BR" : "Suécia",
10242 "ru" : "Швеция",
10243 "zh-CN" : "瑞典"
10244 }
10245 },
10246 "location" : {
10247 "accuracy_radius" : 100,
10248 "latitude" : 62,
10249 "longitude" : 15,
10250 "time_zone" : "Europe/Stockholm"
10251 },
10252 "registered_country" : {
10253 "geoname_id" : 2661886,
10254 "is_in_european_union" : true,
10255 "iso_code" : "SE",
10256 "names" : {
10257 "de" : "Schweden",
10258 "en" : "Sweden",
10259 "es" : "Suecia",
10260 "fr" : "Suède",
10261 "ja" : "スウェーデン王国",
10262 "pt-BR" : "Suécia",
10263 "ru" : "Швеция",
10264 "zh-CN" : "瑞典"
10265 }
10266 }
10267 }
10268 },
10269 {
10270 "2a02:f7c0::/29" : {
10271 "continent" : {
10272 "code" : "EU",
10273 "geoname_id" : 6255148,
10274 "names" : {
10275 "de" : "Europa",
10276 "en" : "Europe",
10277 "es" : "Europa",
10278 "fr" : "Europe",
10279 "ja" : "ヨーロッパ",
10280 "pt-BR" : "Europa",
10281 "ru" : "Европа",
10282 "zh-CN" : "欧洲"
10283 }
10284 },
10285 "country" : {
10286 "geoname_id" : 798544,
10287 "is_in_european_union" : true,
10288 "iso_code" : "PL",
10289 "names" : {
10290 "de" : "Polen",
10291 "en" : "Poland",
10292 "es" : "Polonia",
10293 "fr" : "Pologne",
10294 "ja" : "ポーランド共和国",
10295 "pt-BR" : "Polônia",
10296 "ru" : "Польша",
10297 "zh-CN" : "波兰"
10298 }
10299 },
10300 "location" : {
10301 "accuracy_radius" : 100,
10302 "latitude" : 52,
10303 "longitude" : 20,
10304 "time_zone" : "Europe/Warsaw"
10305 },
10306 "registered_country" : {
10307 "geoname_id" : 798544,
10308 "is_in_european_union" : true,
10309 "iso_code" : "PL",
10310 "names" : {
10311 "de" : "Polen",
10312 "en" : "Poland",
10313 "es" : "Polonia",
10314 "fr" : "Pologne",
10315 "ja" : "ポーランド共和国",
10316 "pt-BR" : "Polônia",
10317 "ru" : "Польша",
10318 "zh-CN" : "波兰"
10319 }
10320 }
10321 }
10322 },
10323 {
10324 "2a02:f800::/29" : {
10325 "continent" : {
10326 "code" : "EU",
10327 "geoname_id" : 6255148,
10328 "names" : {
10329 "de" : "Europa",
10330 "en" : "Europe",
10331 "es" : "Europa",
10332 "fr" : "Europe",
10333 "ja" : "ヨーロッパ",
10334 "pt-BR" : "Europa",
10335 "ru" : "Европа",
10336 "zh-CN" : "欧洲"
10337 }
10338 },
10339 "country" : {
10340 "geoname_id" : 2017370,
10341 "iso_code" : "RU",
10342 "names" : {
10343 "de" : "Russland",
10344 "en" : "Russia",
10345 "es" : "Rusia",
10346 "fr" : "Russie",
10347 "ja" : "ロシア",
10348 "pt-BR" : "Rússia",
10349 "ru" : "Россия",
10350 "zh-CN" : "俄罗斯"
10351 }
10352 },
10353 "location" : {
10354 "accuracy_radius" : 100,
10355 "latitude" : 60,
10356 "longitude" : 100
10357 },
10358 "registered_country" : {
10359 "geoname_id" : 2017370,
10360 "iso_code" : "RU",
10361 "names" : {
10362 "de" : "Russland",
10363 "en" : "Russia",
10364 "es" : "Rusia",
10365 "fr" : "Russie",
10366 "ja" : "ロシア",
10367 "pt-BR" : "Rússia",
10368 "ru" : "Россия",
10369 "zh-CN" : "俄罗斯"
10370 }
10371 }
10372 }
10373 },
10374 {
10375 "2a02:f840::/29" : {
10376 "continent" : {
10377 "code" : "EU",
10378 "geoname_id" : 6255148,
10379 "names" : {
10380 "de" : "Europa",
10381 "en" : "Europe",
10382 "es" : "Europa",
10383 "fr" : "Europe",
10384 "ja" : "ヨーロッパ",
10385 "pt-BR" : "Europa",
10386 "ru" : "Европа",
10387 "zh-CN" : "欧洲"
10388 }
10389 },
10390 "country" : {
10391 "geoname_id" : 2750405,
10392 "is_in_european_union" : true,
10393 "iso_code" : "NL",
10394 "names" : {
10395 "de" : "Niederlande",
10396 "en" : "Netherlands",
10397 "es" : "Holanda",
10398 "fr" : "Pays-Bas",
10399 "ja" : "オランダ王国",
10400 "pt-BR" : "Países Baixos",
10401 "ru" : "Нидерланды",
10402 "zh-CN" : "荷兰"
10403 }
10404 },
10405 "location" : {
10406 "accuracy_radius" : 100,
10407 "latitude" : 52.5,
10408 "longitude" : 5.75,
10409 "time_zone" : "Europe/Amsterdam"
10410 },
10411 "registered_country" : {
10412 "geoname_id" : 2750405,
10413 "is_in_european_union" : true,
10414 "iso_code" : "NL",
10415 "names" : {
10416 "de" : "Niederlande",
10417 "en" : "Netherlands",
10418 "es" : "Holanda",
10419 "fr" : "Pays-Bas",
10420 "ja" : "オランダ王国",
10421 "pt-BR" : "Países Baixos",
10422 "ru" : "Нидерланды",
10423 "zh-CN" : "荷兰"
10424 }
10425 }
10426 }
10427 },
10428 {
10429 "2a02:f880::/29" : {
10430 "continent" : {
10431 "code" : "EU",
10432 "geoname_id" : 6255148,
10433 "names" : {
10434 "de" : "Europa",
10435 "en" : "Europe",
10436 "es" : "Europa",
10437 "fr" : "Europe",
10438 "ja" : "ヨーロッパ",
10439 "pt-BR" : "Europa",
10440 "ru" : "Европа",
10441 "zh-CN" : "欧洲"
10442 }
10443 },
10444 "country" : {
10445 "geoname_id" : 2921044,
10446 "is_in_european_union" : true,
10447 "iso_code" : "DE",
10448 "names" : {
10449 "de" : "Deutschland",
10450 "en" : "Germany",
10451 "es" : "Alemania",
10452 "fr" : "Allemagne",
10453 "ja" : "ドイツ連邦共和国",
10454 "pt-BR" : "Alemanha",
10455 "ru" : "Германия",
10456 "zh-CN" : "德国"
10457 }
10458 },
10459 "location" : {
10460 "accuracy_radius" : 100,
10461 "latitude" : 51.5,
10462 "longitude" : 10.5,
10463 "time_zone" : "Europe/Berlin"
10464 },
10465 "registered_country" : {
10466 "geoname_id" : 2921044,
10467 "is_in_european_union" : true,
10468 "iso_code" : "DE",
10469 "names" : {
10470 "de" : "Deutschland",
10471 "en" : "Germany",
10472 "es" : "Alemania",
10473 "fr" : "Allemagne",
10474 "ja" : "ドイツ連邦共和国",
10475 "pt-BR" : "Alemanha",
10476 "ru" : "Германия",
10477 "zh-CN" : "德国"
10478 }
10479 }
10480 }
10481 },
10482 {
10483 "2a02:f8c0::/29" : {
10484 "continent" : {
10485 "code" : "EU",
10486 "geoname_id" : 6255148,
10487 "names" : {
10488 "de" : "Europa",
10489 "en" : "Europe",
10490 "es" : "Europa",
10491 "fr" : "Europe",
10492 "ja" : "ヨーロッパ",
10493 "pt-BR" : "Europa",
10494 "ru" : "Европа",
10495 "zh-CN" : "欧洲"
10496 }
10497 },
10498 "country" : {
10499 "geoname_id" : 798544,
10500 "is_in_european_union" : true,
10501 "iso_code" : "PL",
10502 "names" : {
10503 "de" : "Polen",
10504 "en" : "Poland",
10505 "es" : "Polonia",
10506 "fr" : "Pologne",
10507 "ja" : "ポーランド共和国",
10508 "pt-BR" : "Polônia",
10509 "ru" : "Польша",
10510 "zh-CN" : "波兰"
10511 }
10512 },
10513 "location" : {
10514 "accuracy_radius" : 100,
10515 "latitude" : 52,
10516 "longitude" : 20,
10517 "time_zone" : "Europe/Warsaw"
10518 },
10519 "registered_country" : {
10520 "geoname_id" : 798544,
10521 "is_in_european_union" : true,
10522 "iso_code" : "PL",
10523 "names" : {
10524 "de" : "Polen",
10525 "en" : "Poland",
10526 "es" : "Polonia",
10527 "fr" : "Pologne",
10528 "ja" : "ポーランド共和国",
10529 "pt-BR" : "Polônia",
10530 "ru" : "Польша",
10531 "zh-CN" : "波兰"
10532 }
10533 }
10534 }
10535 },
10536 {
10537 "2a02:f900::/29" : {
10538 "continent" : {
10539 "code" : "AS",
10540 "geoname_id" : 6255147,
10541 "names" : {
10542 "de" : "Asien",
10543 "en" : "Asia",
10544 "es" : "Asia",
10545 "fr" : "Asie",
10546 "ja" : "アジア",
10547 "pt-BR" : "Ásia",
10548 "ru" : "Азия",
10549 "zh-CN" : "亚洲"
10550 }
10551 },
10552 "country" : {
10553 "geoname_id" : 130758,
10554 "iso_code" : "IR",
10555 "names" : {
10556 "de" : "Iran (Islamische Republik)",
10557 "en" : "Iran",
10558 "es" : "Irán (República Islámica)",
10559 "fr" : "Iran (République islamique de)",
10560 "ja" : "イラン・イスラム共和国",
10561 "pt-BR" : "República Islâmica do Irã",
10562 "ru" : "Иран",
10563 "zh-CN" : "伊朗伊斯兰共和国"
10564 }
10565 },
10566 "location" : {
10567 "accuracy_radius" : 100,
10568 "latitude" : 32,
10569 "longitude" : 53,
10570 "time_zone" : "Asia/Tehran"
10571 },
10572 "registered_country" : {
10573 "geoname_id" : 130758,
10574 "iso_code" : "IR",
10575 "names" : {
10576 "de" : "Iran (Islamische Republik)",
10577 "en" : "Iran",
10578 "es" : "Irán (República Islámica)",
10579 "fr" : "Iran (République islamique de)",
10580 "ja" : "イラン・イスラム共和国",
10581 "pt-BR" : "República Islâmica do Irã",
10582 "ru" : "Иран",
10583 "zh-CN" : "伊朗伊斯兰共和国"
10584 }
10585 }
10586 }
10587 },
10588 {
10589 "2a02:f940::/29" : {
10590 "continent" : {
10591 "code" : "EU",
10592 "geoname_id" : 6255148,
10593 "names" : {
10594 "de" : "Europa",
10595 "en" : "Europe",
10596 "es" : "Europa",
10597 "fr" : "Europe",
10598 "ja" : "ヨーロッパ",
10599 "pt-BR" : "Europa",
10600 "ru" : "Европа",
10601 "zh-CN" : "欧洲"
10602 }
10603 },
10604 "country" : {
10605 "geoname_id" : 719819,
10606 "is_in_european_union" : true,
10607 "iso_code" : "HU",
10608 "names" : {
10609 "de" : "Ungarn",
10610 "en" : "Hungary",
10611 "es" : "Hungría",
10612 "fr" : "Hongrie",
10613 "ja" : "ハンガリー共和国",
10614 "pt-BR" : "Hungria",
10615 "ru" : "Венгрия",
10616 "zh-CN" : "匈牙利"
10617 }
10618 },
10619 "location" : {
10620 "accuracy_radius" : 100,
10621 "latitude" : 47,
10622 "longitude" : 20,
10623 "time_zone" : "Europe/Budapest"
10624 },
10625 "registered_country" : {
10626 "geoname_id" : 719819,
10627 "is_in_european_union" : true,
10628 "iso_code" : "HU",
10629 "names" : {
10630 "de" : "Ungarn",
10631 "en" : "Hungary",
10632 "es" : "Hungría",
10633 "fr" : "Hongrie",
10634 "ja" : "ハンガリー共和国",
10635 "pt-BR" : "Hungria",
10636 "ru" : "Венгрия",
10637 "zh-CN" : "匈牙利"
10638 }
10639 }
10640 }
10641 },
10642 {
10643 "2a02:f980::/29" : {
10644 "continent" : {
10645 "code" : "EU",
10646 "geoname_id" : 6255148,
10647 "names" : {
10648 "de" : "Europa",
10649 "en" : "Europe",
10650 "es" : "Europa",
10651 "fr" : "Europe",
10652 "ja" : "ヨーロッパ",
10653 "pt-BR" : "Europa",
10654 "ru" : "Европа",
10655 "zh-CN" : "欧洲"
10656 }
10657 },
10658 "country" : {
10659 "geoname_id" : 2635167,
10660 "is_in_european_union" : true,
10661 "iso_code" : "GB",
10662 "names" : {
10663 "de" : "Vereinigtes Königreich",
10664 "en" : "United Kingdom",
10665 "es" : "Reino Unido",
10666 "fr" : "Royaume-Uni",
10667 "ja" : "イギリス",
10668 "pt-BR" : "Reino Unido",
10669 "ru" : "Великобритания",
10670 "zh-CN" : "英国"
10671 }
10672 },
10673 "location" : {
10674 "accuracy_radius" : 100,
10675 "latitude" : 54.75844,
10676 "longitude" : -2.69531,
10677 "time_zone" : "Europe/London"
10678 },
10679 "registered_country" : {
10680 "geoname_id" : 2635167,
10681 "is_in_european_union" : true,
10682 "iso_code" : "GB",
10683 "names" : {
10684 "de" : "Vereinigtes Königreich",
10685 "en" : "United Kingdom",
10686 "es" : "Reino Unido",
10687 "fr" : "Royaume-Uni",
10688 "ja" : "イギリス",
10689 "pt-BR" : "Reino Unido",
10690 "ru" : "Великобритания",
10691 "zh-CN" : "英国"
10692 }
10693 }
10694 }
10695 },
10696 {
10697 "2a02:f9c0::/29" : {
10698 "continent" : {
10699 "code" : "EU",
10700 "geoname_id" : 6255148,
10701 "names" : {
10702 "de" : "Europa",
10703 "en" : "Europe",
10704 "es" : "Europa",
10705 "fr" : "Europe",
10706 "ja" : "ヨーロッパ",
10707 "pt-BR" : "Europa",
10708 "ru" : "Европа",
10709 "zh-CN" : "欧洲"
10710 }
10711 },
10712 "country" : {
10713 "geoname_id" : 2635167,
10714 "is_in_european_union" : true,
10715 "iso_code" : "GB",
10716 "names" : {
10717 "de" : "Vereinigtes Königreich",
10718 "en" : "United Kingdom",
10719 "es" : "Reino Unido",
10720 "fr" : "Royaume-Uni",
10721 "ja" : "イギリス",
10722 "pt-BR" : "Reino Unido",
10723 "ru" : "Великобритания",
10724 "zh-CN" : "英国"
10725 }
10726 },
10727 "location" : {
10728 "accuracy_radius" : 100,
10729 "latitude" : 54.75844,
10730 "longitude" : -2.69531,
10731 "time_zone" : "Europe/London"
10732 },
10733 "registered_country" : {
10734 "geoname_id" : 2635167,
10735 "is_in_european_union" : true,
10736 "iso_code" : "GB",
10737 "names" : {
10738 "de" : "Vereinigtes Königreich",
10739 "en" : "United Kingdom",
10740 "es" : "Reino Unido",
10741 "fr" : "Royaume-Uni",
10742 "ja" : "イギリス",
10743 "pt-BR" : "Reino Unido",
10744 "ru" : "Великобритания",
10745 "zh-CN" : "英国"
10746 }
10747 }
10748 }
10749 },
10750 {
10751 "2a02:fa00::/29" : {
10752 "continent" : {
10753 "code" : "AS",
10754 "geoname_id" : 6255147,
10755 "names" : {
10756 "de" : "Asien",
10757 "en" : "Asia",
10758 "es" : "Asia",
10759 "fr" : "Asie",
10760 "ja" : "アジア",
10761 "pt-BR" : "Ásia",
10762 "ru" : "Азия",
10763 "zh-CN" : "亚洲"
10764 }
10765 },
10766 "country" : {
10767 "geoname_id" : 102358,
10768 "iso_code" : "SA",
10769 "names" : {
10770 "de" : "Saudi-Arabien",
10771 "en" : "Saudi Arabia",
10772 "es" : "Arabia Saudita",
10773 "fr" : "Arabie saoudite",
10774 "ja" : "サウジアラビア王国",
10775 "pt-BR" : "Arábia Saudita",
10776 "ru" : "Саудовская Аравия",
10777 "zh-CN" : "沙特阿拉伯"
10778 }
10779 },
10780 "location" : {
10781 "accuracy_radius" : 100,
10782 "latitude" : 25,
10783 "longitude" : 45,
10784 "time_zone" : "Asia/Riyadh"
10785 },
10786 "registered_country" : {
10787 "geoname_id" : 102358,
10788 "iso_code" : "SA",
10789 "names" : {
10790 "de" : "Saudi-Arabien",
10791 "en" : "Saudi Arabia",
10792 "es" : "Arabia Saudita",
10793 "fr" : "Arabie saoudite",
10794 "ja" : "サウジアラビア王国",
10795 "pt-BR" : "Arábia Saudita",
10796 "ru" : "Саудовская Аравия",
10797 "zh-CN" : "沙特阿拉伯"
10798 }
10799 }
10800 }
10801 },
10802 {
10803 "2a02:fa40::/29" : {
10804 "continent" : {
10805 "code" : "AS",
10806 "geoname_id" : 6255147,
10807 "names" : {
10808 "de" : "Asien",
10809 "en" : "Asia",
10810 "es" : "Asia",
10811 "fr" : "Asie",
10812 "ja" : "アジア",
10813 "pt-BR" : "Ásia",
10814 "ru" : "Азия",
10815 "zh-CN" : "亚洲"
10816 }
10817 },
10818 "country" : {
10819 "geoname_id" : 298795,
10820 "iso_code" : "TR",
10821 "names" : {
10822 "de" : "Türkei",
10823 "en" : "Turkey",
10824 "es" : "Turquía",
10825 "fr" : "Turquie",
10826 "ja" : "トルコ共和国",
10827 "pt-BR" : "Turquia",
10828 "ru" : "Турция",
10829 "zh-CN" : "土耳其"
10830 }
10831 },
10832 "location" : {
10833 "accuracy_radius" : 100,
10834 "latitude" : 39.05901,
10835 "longitude" : 34.91155,
10836 "time_zone" : "Europe/Istanbul"
10837 },
10838 "registered_country" : {
10839 "geoname_id" : 298795,
10840 "iso_code" : "TR",
10841 "names" : {
10842 "de" : "Türkei",
10843 "en" : "Turkey",
10844 "es" : "Turquía",
10845 "fr" : "Turquie",
10846 "ja" : "トルコ共和国",
10847 "pt-BR" : "Turquia",
10848 "ru" : "Турция",
10849 "zh-CN" : "土耳其"
10850 }
10851 }
10852 }
10853 },
10854 {
10855 "2a02:fa80::/29" : {
10856 "continent" : {
10857 "code" : "EU",
10858 "geoname_id" : 6255148,
10859 "names" : {
10860 "de" : "Europa",
10861 "en" : "Europe",
10862 "es" : "Europa",
10863 "fr" : "Europe",
10864 "ja" : "ヨーロッパ",
10865 "pt-BR" : "Europa",
10866 "ru" : "Европа",
10867 "zh-CN" : "欧洲"
10868 }
10869 },
10870 "country" : {
10871 "geoname_id" : 2921044,
10872 "is_in_european_union" : true,
10873 "iso_code" : "DE",
10874 "names" : {
10875 "de" : "Deutschland",
10876 "en" : "Germany",
10877 "es" : "Alemania",
10878 "fr" : "Allemagne",
10879 "ja" : "ドイツ連邦共和国",
10880 "pt-BR" : "Alemanha",
10881 "ru" : "Германия",
10882 "zh-CN" : "德国"
10883 }
10884 },
10885 "location" : {
10886 "accuracy_radius" : 100,
10887 "latitude" : 51.5,
10888 "longitude" : 10.5,
10889 "time_zone" : "Europe/Berlin"
10890 },
10891 "registered_country" : {
10892 "geoname_id" : 2921044,
10893 "is_in_european_union" : true,
10894 "iso_code" : "DE",
10895 "names" : {
10896 "de" : "Deutschland",
10897 "en" : "Germany",
10898 "es" : "Alemania",
10899 "fr" : "Allemagne",
10900 "ja" : "ドイツ連邦共和国",
10901 "pt-BR" : "Alemanha",
10902 "ru" : "Германия",
10903 "zh-CN" : "德国"
10904 }
10905 }
10906 }
10907 },
10908 {
10909 "2a02:fac0::/29" : {
10910 "continent" : {
10911 "code" : "EU",
10912 "geoname_id" : 6255148,
10913 "names" : {
10914 "de" : "Europa",
10915 "en" : "Europe",
10916 "es" : "Europa",
10917 "fr" : "Europe",
10918 "ja" : "ヨーロッパ",
10919 "pt-BR" : "Europa",
10920 "ru" : "Европа",
10921 "zh-CN" : "欧洲"
10922 }
10923 },
10924 "country" : {
10925 "geoname_id" : 798544,
10926 "is_in_european_union" : true,
10927 "iso_code" : "PL",
10928 "names" : {
10929 "de" : "Polen",
10930 "en" : "Poland",
10931 "es" : "Polonia",
10932 "fr" : "Pologne",
10933 "ja" : "ポーランド共和国",
10934 "pt-BR" : "Polônia",
10935 "ru" : "Польша",
10936 "zh-CN" : "波兰"
10937 }
10938 },
10939 "location" : {
10940 "accuracy_radius" : 100,
10941 "latitude" : 52,
10942 "longitude" : 20,
10943 "time_zone" : "Europe/Warsaw"
10944 },
10945 "registered_country" : {
10946 "geoname_id" : 798544,
10947 "is_in_european_union" : true,
10948 "iso_code" : "PL",
10949 "names" : {
10950 "de" : "Polen",
10951 "en" : "Poland",
10952 "es" : "Polonia",
10953 "fr" : "Pologne",
10954 "ja" : "ポーランド共和国",
10955 "pt-BR" : "Polônia",
10956 "ru" : "Польша",
10957 "zh-CN" : "波兰"
10958 }
10959 }
10960 }
10961 },
10962 {
10963 "2a02:fb00::/29" : {
10964 "continent" : {
10965 "code" : "EU",
10966 "geoname_id" : 6255148,
10967 "names" : {
10968 "de" : "Europa",
10969 "en" : "Europe",
10970 "es" : "Europa",
10971 "fr" : "Europe",
10972 "ja" : "ヨーロッパ",
10973 "pt-BR" : "Europa",
10974 "ru" : "Европа",
10975 "zh-CN" : "欧洲"
10976 }
10977 },
10978 "country" : {
10979 "geoname_id" : 2921044,
10980 "is_in_european_union" : true,
10981 "iso_code" : "DE",
10982 "names" : {
10983 "de" : "Deutschland",
10984 "en" : "Germany",
10985 "es" : "Alemania",
10986 "fr" : "Allemagne",
10987 "ja" : "ドイツ連邦共和国",
10988 "pt-BR" : "Alemanha",
10989 "ru" : "Германия",
10990 "zh-CN" : "德国"
10991 }
10992 },
10993 "location" : {
10994 "accuracy_radius" : 100,
10995 "latitude" : 51.5,
10996 "longitude" : 10.5,
10997 "time_zone" : "Europe/Berlin"
10998 },
10999 "registered_country" : {
11000 "geoname_id" : 2921044,
11001 "is_in_european_union" : true,
11002 "iso_code" : "DE",
11003 "names" : {
11004 "de" : "Deutschland",
11005 "en" : "Germany",
11006 "es" : "Alemania",
11007 "fr" : "Allemagne",
11008 "ja" : "ドイツ連邦共和国",
11009 "pt-BR" : "Alemanha",
11010 "ru" : "Германия",
11011 "zh-CN" : "德国"
11012 }
11013 }
11014 }
11015 },
11016 {
11017 "2a02:fb40::/29" : {
11018 "continent" : {
11019 "code" : "EU",
11020 "geoname_id" : 6255148,
11021 "names" : {
11022 "de" : "Europa",
11023 "en" : "Europe",
11024 "es" : "Europa",
11025 "fr" : "Europe",
11026 "ja" : "ヨーロッパ",
11027 "pt-BR" : "Europa",
11028 "ru" : "Европа",
11029 "zh-CN" : "欧洲"
11030 }
11031 },
11032 "country" : {
11033 "geoname_id" : 2635167,
11034 "is_in_european_union" : true,
11035 "iso_code" : "GB",
11036 "names" : {
11037 "de" : "Vereinigtes Königreich",
11038 "en" : "United Kingdom",
11039 "es" : "Reino Unido",
11040 "fr" : "Royaume-Uni",
11041 "ja" : "イギリス",
11042 "pt-BR" : "Reino Unido",
11043 "ru" : "Великобритания",
11044 "zh-CN" : "英国"
11045 }
11046 },
11047 "location" : {
11048 "accuracy_radius" : 100,
11049 "latitude" : 54.75844,
11050 "longitude" : -2.69531,
11051 "time_zone" : "Europe/London"
11052 },
11053 "registered_country" : {
11054 "geoname_id" : 2635167,
11055 "is_in_european_union" : true,
11056 "iso_code" : "GB",
11057 "names" : {
11058 "de" : "Vereinigtes Königreich",
11059 "en" : "United Kingdom",
11060 "es" : "Reino Unido",
11061 "fr" : "Royaume-Uni",
11062 "ja" : "イギリス",
11063 "pt-BR" : "Reino Unido",
11064 "ru" : "Великобритания",
11065 "zh-CN" : "英国"
11066 }
11067 }
11068 }
11069 },
11070 {
11071 "2a02:fb80::/29" : {
11072 "continent" : {
11073 "code" : "EU",
11074 "geoname_id" : 6255148,
11075 "names" : {
11076 "de" : "Europa",
11077 "en" : "Europe",
11078 "es" : "Europa",
11079 "fr" : "Europe",
11080 "ja" : "ヨーロッパ",
11081 "pt-BR" : "Europa",
11082 "ru" : "Европа",
11083 "zh-CN" : "欧洲"
11084 }
11085 },
11086 "country" : {
11087 "geoname_id" : 3175395,
11088 "is_in_european_union" : true,
11089 "iso_code" : "IT",
11090 "names" : {
11091 "de" : "Italien",
11092 "en" : "Italy",
11093 "es" : "Italia",
11094 "fr" : "Italie",
11095 "ja" : "イタリア共和国",
11096 "pt-BR" : "Itália",
11097 "ru" : "Италия",
11098 "zh-CN" : "意大利"
11099 }
11100 },
11101 "location" : {
11102 "accuracy_radius" : 100,
11103 "latitude" : 42.83333,
11104 "longitude" : 12.83333,
11105 "time_zone" : "Europe/Rome"
11106 },
11107 "registered_country" : {
11108 "geoname_id" : 3175395,
11109 "is_in_european_union" : true,
11110 "iso_code" : "IT",
11111 "names" : {
11112 "de" : "Italien",
11113 "en" : "Italy",
11114 "es" : "Italia",
11115 "fr" : "Italie",
11116 "ja" : "イタリア共和国",
11117 "pt-BR" : "Itália",
11118 "ru" : "Италия",
11119 "zh-CN" : "意大利"
11120 }
11121 }
11122 }
11123 },
11124 {
11125 "2a02:fbc0::/29" : {
11126 "continent" : {
11127 "code" : "EU",
11128 "geoname_id" : 6255148,
11129 "names" : {
11130 "de" : "Europa",
11131 "en" : "Europe",
11132 "es" : "Europa",
11133 "fr" : "Europe",
11134 "ja" : "ヨーロッパ",
11135 "pt-BR" : "Europa",
11136 "ru" : "Европа",
11137 "zh-CN" : "欧洲"
11138 }
11139 },
11140 "country" : {
11141 "geoname_id" : 798544,
11142 "is_in_european_union" : true,
11143 "iso_code" : "PL",
11144 "names" : {
11145 "de" : "Polen",
11146 "en" : "Poland",
11147 "es" : "Polonia",
11148 "fr" : "Pologne",
11149 "ja" : "ポーランド共和国",
11150 "pt-BR" : "Polônia",
11151 "ru" : "Польша",
11152 "zh-CN" : "波兰"
11153 }
11154 },
11155 "location" : {
11156 "accuracy_radius" : 100,
11157 "latitude" : 52,
11158 "longitude" : 20,
11159 "time_zone" : "Europe/Warsaw"
11160 },
11161 "registered_country" : {
11162 "geoname_id" : 798544,
11163 "is_in_european_union" : true,
11164 "iso_code" : "PL",
11165 "names" : {
11166 "de" : "Polen",
11167 "en" : "Poland",
11168 "es" : "Polonia",
11169 "fr" : "Pologne",
11170 "ja" : "ポーランド共和国",
11171 "pt-BR" : "Polônia",
11172 "ru" : "Польша",
11173 "zh-CN" : "波兰"
11174 }
11175 }
11176 }
11177 },
11178 {
11179 "2a02:fc00::/29" : {
11180 "continent" : {
11181 "code" : "EU",
11182 "geoname_id" : 6255148,
11183 "names" : {
11184 "de" : "Europa",
11185 "en" : "Europe",
11186 "es" : "Europa",
11187 "fr" : "Europe",
11188 "ja" : "ヨーロッパ",
11189 "pt-BR" : "Europa",
11190 "ru" : "Европа",
11191 "zh-CN" : "欧洲"
11192 }
11193 },
11194 "country" : {
11195 "geoname_id" : 2661886,
11196 "is_in_european_union" : true,
11197 "iso_code" : "SE",
11198 "names" : {
11199 "de" : "Schweden",
11200 "en" : "Sweden",
11201 "es" : "Suecia",
11202 "fr" : "Suède",
11203 "ja" : "スウェーデン王国",
11204 "pt-BR" : "Suécia",
11205 "ru" : "Швеция",
11206 "zh-CN" : "瑞典"
11207 }
11208 },
11209 "location" : {
11210 "accuracy_radius" : 100,
11211 "latitude" : 62,
11212 "longitude" : 15,
11213 "time_zone" : "Europe/Stockholm"
11214 },
11215 "registered_country" : {
11216 "geoname_id" : 2661886,
11217 "is_in_european_union" : true,
11218 "iso_code" : "SE",
11219 "names" : {
11220 "de" : "Schweden",
11221 "en" : "Sweden",
11222 "es" : "Suecia",
11223 "fr" : "Suède",
11224 "ja" : "スウェーデン王国",
11225 "pt-BR" : "Suécia",
11226 "ru" : "Швеция",
11227 "zh-CN" : "瑞典"
11228 }
11229 }
11230 }
11231 },
11232 {
11233 "2a02:fc40::/29" : {
11234 "continent" : {
11235 "code" : "EU",
11236 "geoname_id" : 6255148,
11237 "names" : {
11238 "de" : "Europa",
11239 "en" : "Europe",
11240 "es" : "Europa",
11241 "fr" : "Europe",
11242 "ja" : "ヨーロッパ",
11243 "pt-BR" : "Europa",
11244 "ru" : "Европа",
11245 "zh-CN" : "欧洲"
11246 }
11247 },
11248 "country" : {
11249 "geoname_id" : 2623032,
11250 "is_in_european_union" : true,
11251 "iso_code" : "DK",
11252 "names" : {
11253 "de" : "Dänemark",
11254 "en" : "Denmark",
11255 "es" : "Dinamarca",
11256 "fr" : "Danemark",
11257 "ja" : "デンマーク王国",
11258 "pt-BR" : "Dinamarca",
11259 "ru" : "Дания",
11260 "zh-CN" : "丹麦"
11261 }
11262 },
11263 "location" : {
11264 "accuracy_radius" : 100,
11265 "latitude" : 56,
11266 "longitude" : 10,
11267 "time_zone" : "Europe/Copenhagen"
11268 },
11269 "registered_country" : {
11270 "geoname_id" : 2623032,
11271 "is_in_european_union" : true,
11272 "iso_code" : "DK",
11273 "names" : {
11274 "de" : "Dänemark",
11275 "en" : "Denmark",
11276 "es" : "Dinamarca",
11277 "fr" : "Danemark",
11278 "ja" : "デンマーク王国",
11279 "pt-BR" : "Dinamarca",
11280 "ru" : "Дания",
11281 "zh-CN" : "丹麦"
11282 }
11283 }
11284 }
11285 },
11286 {
11287 "2a02:fc80::/29" : {
11288 "continent" : {
11289 "code" : "EU",
11290 "geoname_id" : 6255148,
11291 "names" : {
11292 "de" : "Europa",
11293 "en" : "Europe",
11294 "es" : "Europa",
11295 "fr" : "Europe",
11296 "ja" : "ヨーロッパ",
11297 "pt-BR" : "Europa",
11298 "ru" : "Европа",
11299 "zh-CN" : "欧洲"
11300 }
11301 },
11302 "country" : {
11303 "geoname_id" : 3144096,
11304 "iso_code" : "NO",
11305 "names" : {
11306 "de" : "Norwegen",
11307 "en" : "Norway",
11308 "es" : "Noruega",
11309 "fr" : "Norvège",
11310 "ja" : "ノルウェー王国",
11311 "pt-BR" : "Noruega",
11312 "ru" : "Норвегия",
11313 "zh-CN" : "挪威"
11314 }
11315 },
11316 "location" : {
11317 "accuracy_radius" : 100,
11318 "latitude" : 62,
11319 "longitude" : 10,
11320 "time_zone" : "Europe/Oslo"
11321 },
11322 "registered_country" : {
11323 "geoname_id" : 3144096,
11324 "iso_code" : "NO",
11325 "names" : {
11326 "de" : "Norwegen",
11327 "en" : "Norway",
11328 "es" : "Noruega",
11329 "fr" : "Norvège",
11330 "ja" : "ノルウェー王国",
11331 "pt-BR" : "Noruega",
11332 "ru" : "Норвегия",
11333 "zh-CN" : "挪威"
11334 }
11335 }
11336 }
11337 },
11338 {
11339 "2a02:fcc0::/29" : {
11340 "continent" : {
11341 "code" : "EU",
11342 "geoname_id" : 6255148,
11343 "names" : {
11344 "de" : "Europa",
11345 "en" : "Europe",
11346 "es" : "Europa",
11347 "fr" : "Europe",
11348 "ja" : "ヨーロッパ",
11349 "pt-BR" : "Europa",
11350 "ru" : "Европа",
11351 "zh-CN" : "欧洲"
11352 }
11353 },
11354 "country" : {
11355 "geoname_id" : 2635167,
11356 "is_in_european_union" : true,
11357 "iso_code" : "GB",
11358 "names" : {
11359 "de" : "Vereinigtes Königreich",
11360 "en" : "United Kingdom",
11361 "es" : "Reino Unido",
11362 "fr" : "Royaume-Uni",
11363 "ja" : "イギリス",
11364 "pt-BR" : "Reino Unido",
11365 "ru" : "Великобритания",
11366 "zh-CN" : "英国"
11367 }
11368 },
11369 "location" : {
11370 "accuracy_radius" : 100,
11371 "latitude" : 54.75844,
11372 "longitude" : -2.69531,
11373 "time_zone" : "Europe/London"
11374 },
11375 "registered_country" : {
11376 "geoname_id" : 2635167,
11377 "is_in_european_union" : true,
11378 "iso_code" : "GB",
11379 "names" : {
11380 "de" : "Vereinigtes Königreich",
11381 "en" : "United Kingdom",
11382 "es" : "Reino Unido",
11383 "fr" : "Royaume-Uni",
11384 "ja" : "イギリス",
11385 "pt-BR" : "Reino Unido",
11386 "ru" : "Великобритания",
11387 "zh-CN" : "英国"
11388 }
11389 }
11390 }
11391 },
11392 {
11393 "2a02:fd00::/29" : {
11394 "continent" : {
11395 "code" : "EU",
11396 "geoname_id" : 6255148,
11397 "names" : {
11398 "de" : "Europa",
11399 "en" : "Europe",
11400 "es" : "Europa",
11401 "fr" : "Europe",
11402 "ja" : "ヨーロッパ",
11403 "pt-BR" : "Europa",
11404 "ru" : "Европа",
11405 "zh-CN" : "欧洲"
11406 }
11407 },
11408 "country" : {
11409 "geoname_id" : 2921044,
11410 "is_in_european_union" : true,
11411 "iso_code" : "DE",
11412 "names" : {
11413 "de" : "Deutschland",
11414 "en" : "Germany",
11415 "es" : "Alemania",
11416 "fr" : "Allemagne",
11417 "ja" : "ドイツ連邦共和国",
11418 "pt-BR" : "Alemanha",
11419 "ru" : "Германия",
11420 "zh-CN" : "德国"
11421 }
11422 },
11423 "location" : {
11424 "accuracy_radius" : 100,
11425 "latitude" : 51.5,
11426 "longitude" : 10.5,
11427 "time_zone" : "Europe/Berlin"
11428 },
11429 "registered_country" : {
11430 "geoname_id" : 2921044,
11431 "is_in_european_union" : true,
11432 "iso_code" : "DE",
11433 "names" : {
11434 "de" : "Deutschland",
11435 "en" : "Germany",
11436 "es" : "Alemania",
11437 "fr" : "Allemagne",
11438 "ja" : "ドイツ連邦共和国",
11439 "pt-BR" : "Alemanha",
11440 "ru" : "Германия",
11441 "zh-CN" : "德国"
11442 }
11443 }
11444 }
11445 },
11446 {
11447 "2a02:fd40::/29" : {
11448 "continent" : {
11449 "code" : "EU",
11450 "geoname_id" : 6255148,
11451 "names" : {
11452 "de" : "Europa",
11453 "en" : "Europe",
11454 "es" : "Europa",
11455 "fr" : "Europe",
11456 "ja" : "ヨーロッパ",
11457 "pt-BR" : "Europa",
11458 "ru" : "Европа",
11459 "zh-CN" : "欧洲"
11460 }
11461 },
11462 "country" : {
11463 "geoname_id" : 3175395,
11464 "is_in_european_union" : true,
11465 "iso_code" : "IT",
11466 "names" : {
11467 "de" : "Italien",
11468 "en" : "Italy",
11469 "es" : "Italia",
11470 "fr" : "Italie",
11471 "ja" : "イタリア共和国",
11472 "pt-BR" : "Itália",
11473 "ru" : "Италия",
11474 "zh-CN" : "意大利"
11475 }
11476 },
11477 "location" : {
11478 "accuracy_radius" : 100,
11479 "latitude" : 42.83333,
11480 "longitude" : 12.83333,
11481 "time_zone" : "Europe/Rome"
11482 },
11483 "registered_country" : {
11484 "geoname_id" : 3175395,
11485 "is_in_european_union" : true,
11486 "iso_code" : "IT",
11487 "names" : {
11488 "de" : "Italien",
11489 "en" : "Italy",
11490 "es" : "Italia",
11491 "fr" : "Italie",
11492 "ja" : "イタリア共和国",
11493 "pt-BR" : "Itália",
11494 "ru" : "Италия",
11495 "zh-CN" : "意大利"
11496 }
11497 }
11498 }
11499 },
11500 {
11501 "2a02:fd80::/29" : {
11502 "continent" : {
11503 "code" : "EU",
11504 "geoname_id" : 6255148,
11505 "names" : {
11506 "de" : "Europa",
11507 "en" : "Europe",
11508 "es" : "Europa",
11509 "fr" : "Europe",
11510 "ja" : "ヨーロッパ",
11511 "pt-BR" : "Europa",
11512 "ru" : "Европа",
11513 "zh-CN" : "欧洲"
11514 }
11515 },
11516 "country" : {
11517 "geoname_id" : 2623032,
11518 "is_in_european_union" : true,
11519 "iso_code" : "DK",
11520 "names" : {
11521 "de" : "Dänemark",
11522 "en" : "Denmark",
11523 "es" : "Dinamarca",
11524 "fr" : "Danemark",
11525 "ja" : "デンマーク王国",
11526 "pt-BR" : "Dinamarca",
11527 "ru" : "Дания",
11528 "zh-CN" : "丹麦"
11529 }
11530 },
11531 "location" : {
11532 "accuracy_radius" : 100,
11533 "latitude" : 56,
11534 "longitude" : 10,
11535 "time_zone" : "Europe/Copenhagen"
11536 },
11537 "registered_country" : {
11538 "geoname_id" : 2623032,
11539 "is_in_european_union" : true,
11540 "iso_code" : "DK",
11541 "names" : {
11542 "de" : "Dänemark",
11543 "en" : "Denmark",
11544 "es" : "Dinamarca",
11545 "fr" : "Danemark",
11546 "ja" : "デンマーク王国",
11547 "pt-BR" : "Dinamarca",
11548 "ru" : "Дания",
11549 "zh-CN" : "丹麦"
11550 }
11551 }
11552 }
11553 },
11554 {
11555 "2a02:fdc0::/29" : {
11556 "continent" : {
11557 "code" : "EU",
11558 "geoname_id" : 6255148,
11559 "names" : {
11560 "de" : "Europa",
11561 "en" : "Europe",
11562 "es" : "Europa",
11563 "fr" : "Europe",
11564 "ja" : "ヨーロッパ",
11565 "pt-BR" : "Europa",
11566 "ru" : "Европа",
11567 "zh-CN" : "欧洲"
11568 }
11569 },
11570 "country" : {
11571 "geoname_id" : 2782113,
11572 "is_in_european_union" : true,
11573 "iso_code" : "AT",
11574 "names" : {
11575 "de" : "Österreich",
11576 "en" : "Austria",
11577 "es" : "Austria",
11578 "fr" : "Autriche",
11579 "ja" : "オーストリア共和国",
11580 "pt-BR" : "Áustria",
11581 "ru" : "Австрия",
11582 "zh-CN" : "奥地利"
11583 }
11584 },
11585 "location" : {
11586 "accuracy_radius" : 100,
11587 "latitude" : 47.33333,
11588 "longitude" : 13.33333,
11589 "time_zone" : "Europe/Vienna"
11590 },
11591 "registered_country" : {
11592 "geoname_id" : 2782113,
11593 "is_in_european_union" : true,
11594 "iso_code" : "AT",
11595 "names" : {
11596 "de" : "Österreich",
11597 "en" : "Austria",
11598 "es" : "Austria",
11599 "fr" : "Autriche",
11600 "ja" : "オーストリア共和国",
11601 "pt-BR" : "Áustria",
11602 "ru" : "Австрия",
11603 "zh-CN" : "奥地利"
11604 }
11605 }
11606 }
11607 },
11608 {
11609 "2a02:fe00::/29" : {
11610 "continent" : {
11611 "code" : "EU",
11612 "geoname_id" : 6255148,
11613 "names" : {
11614 "de" : "Europa",
11615 "en" : "Europe",
11616 "es" : "Europa",
11617 "fr" : "Europe",
11618 "ja" : "ヨーロッパ",
11619 "pt-BR" : "Europa",
11620 "ru" : "Европа",
11621 "zh-CN" : "欧洲"
11622 }
11623 },
11624 "country" : {
11625 "geoname_id" : 2750405,
11626 "is_in_european_union" : true,
11627 "iso_code" : "NL",
11628 "names" : {
11629 "de" : "Niederlande",
11630 "en" : "Netherlands",
11631 "es" : "Holanda",
11632 "fr" : "Pays-Bas",
11633 "ja" : "オランダ王国",
11634 "pt-BR" : "Países Baixos",
11635 "ru" : "Нидерланды",
11636 "zh-CN" : "荷兰"
11637 }
11638 },
11639 "location" : {
11640 "accuracy_radius" : 100,
11641 "latitude" : 52.5,
11642 "longitude" : 5.75,
11643 "time_zone" : "Europe/Amsterdam"
11644 },
11645 "registered_country" : {
11646 "geoname_id" : 2750405,
11647 "is_in_european_union" : true,
11648 "iso_code" : "NL",
11649 "names" : {
11650 "de" : "Niederlande",
11651 "en" : "Netherlands",
11652 "es" : "Holanda",
11653 "fr" : "Pays-Bas",
11654 "ja" : "オランダ王国",
11655 "pt-BR" : "Países Baixos",
11656 "ru" : "Нидерланды",
11657 "zh-CN" : "荷兰"
11658 }
11659 }
11660 }
11661 },
11662 {
11663 "2a02:fe40::/29" : {
11664 "continent" : {
11665 "code" : "EU",
11666 "geoname_id" : 6255148,
11667 "names" : {
11668 "de" : "Europa",
11669 "en" : "Europe",
11670 "es" : "Europa",
11671 "fr" : "Europe",
11672 "ja" : "ヨーロッパ",
11673 "pt-BR" : "Europa",
11674 "ru" : "Европа",
11675 "zh-CN" : "欧洲"
11676 }
11677 },
11678 "country" : {
11679 "geoname_id" : 2635167,
11680 "is_in_european_union" : true,
11681 "iso_code" : "GB",
11682 "names" : {
11683 "de" : "Vereinigtes Königreich",
11684 "en" : "United Kingdom",
11685 "es" : "Reino Unido",
11686 "fr" : "Royaume-Uni",
11687 "ja" : "イギリス",
11688 "pt-BR" : "Reino Unido",
11689 "ru" : "Великобритания",
11690 "zh-CN" : "英国"
11691 }
11692 },
11693 "location" : {
11694 "accuracy_radius" : 100,
11695 "latitude" : 54.75844,
11696 "longitude" : -2.69531,
11697 "time_zone" : "Europe/London"
11698 },
11699 "registered_country" : {
11700 "geoname_id" : 2635167,
11701 "is_in_european_union" : true,
11702 "iso_code" : "GB",
11703 "names" : {
11704 "de" : "Vereinigtes Königreich",
11705 "en" : "United Kingdom",
11706 "es" : "Reino Unido",
11707 "fr" : "Royaume-Uni",
11708 "ja" : "イギリス",
11709 "pt-BR" : "Reino Unido",
11710 "ru" : "Великобритания",
11711 "zh-CN" : "英国"
11712 }
11713 }
11714 }
11715 },
11716 {
11717 "2a02:fe80::/29" : {
11718 "continent" : {
11719 "code" : "EU",
11720 "geoname_id" : 6255148,
11721 "names" : {
11722 "de" : "Europa",
11723 "en" : "Europe",
11724 "es" : "Europa",
11725 "fr" : "Europe",
11726 "ja" : "ヨーロッパ",
11727 "pt-BR" : "Europa",
11728 "ru" : "Европа",
11729 "zh-CN" : "欧洲"
11730 }
11731 },
11732 "country" : {
11733 "geoname_id" : 3175395,
11734 "is_in_european_union" : true,
11735 "iso_code" : "IT",
11736 "names" : {
11737 "de" : "Italien",
11738 "en" : "Italy",
11739 "es" : "Italia",
11740 "fr" : "Italie",
11741 "ja" : "イタリア共和国",
11742 "pt-BR" : "Itália",
11743 "ru" : "Италия",
11744 "zh-CN" : "意大利"
11745 }
11746 },
11747 "location" : {
11748 "accuracy_radius" : 100,
11749 "latitude" : 42.83333,
11750 "longitude" : 12.83333,
11751 "time_zone" : "Europe/Rome"
11752 },
11753 "registered_country" : {
11754 "geoname_id" : 3175395,
11755 "is_in_european_union" : true,
11756 "iso_code" : "IT",
11757 "names" : {
11758 "de" : "Italien",
11759 "en" : "Italy",
11760 "es" : "Italia",
11761 "fr" : "Italie",
11762 "ja" : "イタリア共和国",
11763 "pt-BR" : "Itália",
11764 "ru" : "Италия",
11765 "zh-CN" : "意大利"
11766 }
11767 }
11768 }
11769 },
11770 {
11771 "2a02:fec0::/29" : {
11772 "continent" : {
11773 "code" : "EU",
11774 "geoname_id" : 6255148,
11775 "names" : {
11776 "de" : "Europa",
11777 "en" : "Europe",
11778 "es" : "Europa",
11779 "fr" : "Europe",
11780 "ja" : "ヨーロッパ",
11781 "pt-BR" : "Europa",
11782 "ru" : "Европа",
11783 "zh-CN" : "欧洲"
11784 }
11785 },
11786 "country" : {
11787 "geoname_id" : 2635167,
11788 "is_in_european_union" : true,
11789 "iso_code" : "GB",
11790 "names" : {
11791 "de" : "Vereinigtes Königreich",
11792 "en" : "United Kingdom",
11793 "es" : "Reino Unido",
11794 "fr" : "Royaume-Uni",
11795 "ja" : "イギリス",
11796 "pt-BR" : "Reino Unido",
11797 "ru" : "Великобритания",
11798 "zh-CN" : "英国"
11799 }
11800 },
11801 "location" : {
11802 "accuracy_radius" : 100,
11803 "latitude" : 54.75844,
11804 "longitude" : -2.69531,
11805 "time_zone" : "Europe/London"
11806 },
11807 "registered_country" : {
11808 "geoname_id" : 2635167,
11809 "is_in_european_union" : true,
11810 "iso_code" : "GB",
11811 "names" : {
11812 "de" : "Vereinigtes Königreich",
11813 "en" : "United Kingdom",
11814 "es" : "Reino Unido",
11815 "fr" : "Royaume-Uni",
11816 "ja" : "イギリス",
11817 "pt-BR" : "Reino Unido",
11818 "ru" : "Великобритания",
11819 "zh-CN" : "英国"
11820 }
11821 }
11822 }
11823 },
11824 {
11825 "2a02:ff00::/29" : {
11826 "continent" : {
11827 "code" : "EU",
11828 "geoname_id" : 6255148,
11829 "names" : {
11830 "de" : "Europa",
11831 "en" : "Europe",
11832 "es" : "Europa",
11833 "fr" : "Europe",
11834 "ja" : "ヨーロッパ",
11835 "pt-BR" : "Europa",
11836 "ru" : "Европа",
11837 "zh-CN" : "欧洲"
11838 }
11839 },
11840 "country" : {
11841 "geoname_id" : 3175395,
11842 "is_in_european_union" : true,
11843 "iso_code" : "IT",
11844 "names" : {
11845 "de" : "Italien",
11846 "en" : "Italy",
11847 "es" : "Italia",
11848 "fr" : "Italie",
11849 "ja" : "イタリア共和国",
11850 "pt-BR" : "Itália",
11851 "ru" : "Италия",
11852 "zh-CN" : "意大利"
11853 }
11854 },
11855 "location" : {
11856 "accuracy_radius" : 100,
11857 "latitude" : 42.83333,
11858 "longitude" : 12.83333,
11859 "time_zone" : "Europe/Rome"
11860 },
11861 "registered_country" : {
11862 "geoname_id" : 3175395,
11863 "is_in_european_union" : true,
11864 "iso_code" : "IT",
11865 "names" : {
11866 "de" : "Italien",
11867 "en" : "Italy",
11868 "es" : "Italia",
11869 "fr" : "Italie",
11870 "ja" : "イタリア共和国",
11871 "pt-BR" : "Itália",
11872 "ru" : "Италия",
11873 "zh-CN" : "意大利"
11874 }
11875 }
11876 }
11877 },
11878 {
11879 "2a02:ff40::/29" : {
11880 "continent" : {
11881 "code" : "EU",
11882 "geoname_id" : 6255148,
11883 "names" : {
11884 "de" : "Europa",
11885 "en" : "Europe",
11886 "es" : "Europa",
11887 "fr" : "Europe",
11888 "ja" : "ヨーロッパ",
11889 "pt-BR" : "Europa",
11890 "ru" : "Европа",
11891 "zh-CN" : "欧洲"
11892 }
11893 },
11894 "country" : {
11895 "geoname_id" : 3042225,
11896 "iso_code" : "IM",
11897 "names" : {
11898 "de" : "Insel Man",
11899 "en" : "Isle of Man",
11900 "es" : "Isla de Man",
11901 "fr" : "Île de Man",
11902 "ja" : "マン島",
11903 "pt-BR" : "Ilha de Man",
11904 "ru" : "Мэн, о-в",
11905 "zh-CN" : "曼岛"
11906 }
11907 },
11908 "location" : {
11909 "accuracy_radius" : 100,
11910 "latitude" : 54.25,
11911 "longitude" : -4.5,
11912 "time_zone" : "Europe/Isle_of_Man"
11913 },
11914 "registered_country" : {
11915 "geoname_id" : 3042225,
11916 "iso_code" : "IM",
11917 "names" : {
11918 "de" : "Insel Man",
11919 "en" : "Isle of Man",
11920 "es" : "Isla de Man",
11921 "fr" : "Île de Man",
11922 "ja" : "マン島",
11923 "pt-BR" : "Ilha de Man",
11924 "ru" : "Мэн, о-в",
11925 "zh-CN" : "曼岛"
11926 }
11927 }
11928 }
11929 },
11930 {
11931 "2a02:ff80::/29" : {
11932 "continent" : {
11933 "code" : "EU",
11934 "geoname_id" : 6255148,
11935 "names" : {
11936 "de" : "Europa",
11937 "en" : "Europe",
11938 "es" : "Europa",
11939 "fr" : "Europe",
11940 "ja" : "ヨーロッパ",
11941 "pt-BR" : "Europa",
11942 "ru" : "Европа",
11943 "zh-CN" : "欧洲"
11944 }
11945 },
11946 "country" : {
11947 "geoname_id" : 2921044,
11948 "is_in_european_union" : true,
11949 "iso_code" : "DE",
11950 "names" : {
11951 "de" : "Deutschland",
11952 "en" : "Germany",
11953 "es" : "Alemania",
11954 "fr" : "Allemagne",
11955 "ja" : "ドイツ連邦共和国",
11956 "pt-BR" : "Alemanha",
11957 "ru" : "Германия",
11958 "zh-CN" : "德国"
11959 }
11960 },
11961 "location" : {
11962 "accuracy_radius" : 100,
11963 "latitude" : 51.5,
11964 "longitude" : 10.5,
11965 "time_zone" : "Europe/Berlin"
11966 },
11967 "registered_country" : {
11968 "geoname_id" : 2921044,
11969 "is_in_european_union" : true,
11970 "iso_code" : "DE",
11971 "names" : {
11972 "de" : "Deutschland",
11973 "en" : "Germany",
11974 "es" : "Alemania",
11975 "fr" : "Allemagne",
11976 "ja" : "ドイツ連邦共和国",
11977 "pt-BR" : "Alemanha",
11978 "ru" : "Германия",
11979 "zh-CN" : "德国"
11980 }
11981 }
11982 }
11983 },
11984 {
11985 "2a02:ffc0::/29" : {
11986 "continent" : {
11987 "code" : "EU",
11988 "geoname_id" : 6255148,
11989 "names" : {
11990 "de" : "Europa",
11991 "en" : "Europe",
11992 "es" : "Europa",
11993 "fr" : "Europe",
11994 "ja" : "ヨーロッパ",
11995 "pt-BR" : "Europa",
11996 "ru" : "Европа",
11997 "zh-CN" : "欧洲"
11998 }
11999 },
12000 "country" : {
12001 "geoname_id" : 2411586,
12002 "iso_code" : "GI",
12003 "names" : {
12004 "de" : "Gibraltar",
12005 "en" : "Gibraltar",
12006 "es" : "Gibraltar",
12007 "fr" : "Gibraltar",
12008 "ja" : "ジブラルタル",
12009 "pt-BR" : "Gibraltar",
12010 "ru" : "Гибралтар"
12011 }
12012 },
12013 "location" : {
12014 "accuracy_radius" : 100,
12015 "latitude" : 36.13333,
12016 "longitude" : -5.35,
12017 "time_zone" : "Europe/Gibraltar"
12018 },
12019 "registered_country" : {
12020 "geoname_id" : 2411586,
12021 "iso_code" : "GI",
12022 "names" : {
12023 "de" : "Gibraltar",
12024 "en" : "Gibraltar",
12025 "es" : "Gibraltar",
12026 "fr" : "Gibraltar",
12027 "ja" : "ジブラルタル",
12028 "pt-BR" : "Gibraltar",
12029 "ru" : "Гибралтар"
12030 }
12031 }
12032 }
12033 },
12034 {
12035 "::2.125.160.216/125" : {
12036 "city" : {
12037 "geoname_id" : 2655045,
12038 "names" : {
12039 "en" : "Boxford"
12040 }
12041 },
12042 "continent" : {
12043 "code" : "EU",
12044 "geoname_id" : 6255148,
12045 "names" : {
12046 "de" : "Europa",
12047 "en" : "Europe",
12048 "es" : "Europa",
12049 "fr" : "Europe",
12050 "ja" : "ヨーロッパ",
12051 "pt-BR" : "Europa",
12052 "ru" : "Европа",
12053 "zh-CN" : "欧洲"
12054 }
12055 },
12056 "country" : {
12057 "geoname_id" : 2635167,
12058 "is_in_european_union" : true,
12059 "iso_code" : "GB",
12060 "names" : {
12061 "de" : "Vereinigtes Königreich",
12062 "en" : "United Kingdom",
12063 "es" : "Reino Unido",
12064 "fr" : "Royaume-Uni",
12065 "ja" : "イギリス",
12066 "pt-BR" : "Reino Unido",
12067 "ru" : "Великобритания",
12068 "zh-CN" : "英国"
12069 }
12070 },
12071 "location" : {
12072 "accuracy_radius" : 100,
12073 "latitude" : 51.75,
12074 "longitude" : -1.25,
12075 "time_zone" : "Europe/London"
12076 },
12077 "postal" : {
12078 "code" : "OX1"
12079 },
12080 "registered_country" : {
12081 "geoname_id" : 3017382,
12082 "is_in_european_union" : true,
12083 "iso_code" : "FR",
12084 "names" : {
12085 "de" : "Frankreich",
12086 "en" : "France",
12087 "es" : "Francia",
12088 "fr" : "France",
12089 "ja" : "フランス共和国",
12090 "pt-BR" : "França",
12091 "ru" : "Франция",
12092 "zh-CN" : "法国"
12093 }
12094 },
12095 "subdivisions" : [
12096 {
12097 "geoname_id" : 6269131,
12098 "iso_code" : "ENG",
12099 "names" : {
12100 "en" : "England",
12101 "es" : "Inglaterra",
12102 "fr" : "Angleterre",
12103 "pt-BR" : "Inglaterra"
12104 }
12105 },
12106 {
12107 "geoname_id" : 3333217,
12108 "iso_code" : "WBK",
12109 "names" : {
12110 "en" : "West Berkshire",
12111 "ru" : "Западный Беркшир",
12112 "zh-CN" : "西伯克郡"
12113 }
12114 }
12115 ]
12116 }
12117 },
12118 {
12119 "::81.2.69.142/127" : {
12120 "city" : {
12121 "geoname_id" : 2643743,
12122 "names" : {
12123 "de" : "London",
12124 "en" : "London",
12125 "es" : "Londres",
12126 "fr" : "Londres",
12127 "ja" : "ロンドン",
12128 "pt-BR" : "Londres",
12129 "ru" : "Лондон"
12130 }
12131 },
12132 "continent" : {
12133 "code" : "EU",
12134 "geoname_id" : 6255148,
12135 "names" : {
12136 "de" : "Europa",
12137 "en" : "Europe",
12138 "es" : "Europa",
12139 "fr" : "Europe",
12140 "ja" : "ヨーロッパ",
12141 "pt-BR" : "Europa",
12142 "ru" : "Европа",
12143 "zh-CN" : "欧洲"
12144 }
12145 },
12146 "country" : {
12147 "geoname_id" : 2635167,
12148 "is_in_european_union" : true,
12149 "iso_code" : "GB",
12150 "names" : {
12151 "de" : "Vereinigtes Königreich",
12152 "en" : "United Kingdom",
12153 "es" : "Reino Unido",
12154 "fr" : "Royaume-Uni",
12155 "ja" : "イギリス",
12156 "pt-BR" : "Reino Unido",
12157 "ru" : "Великобритания",
12158 "zh-CN" : "英国"
12159 }
12160 },
12161 "location" : {
12162 "accuracy_radius" : 10,
12163 "latitude" : 51.5142,
12164 "longitude" : -0.0931,
12165 "time_zone" : "Europe/London"
12166 },
12167 "registered_country" : {
12168 "geoname_id" : 6252001,
12169 "iso_code" : "US",
12170 "names" : {
12171 "de" : "USA",
12172 "en" : "United States",
12173 "es" : "Estados Unidos",
12174 "fr" : "États-Unis",
12175 "ja" : "アメリカ合衆国",
12176 "pt-BR" : "Estados Unidos",
12177 "ru" : "США",
12178 "zh-CN" : "美国"
12179 }
12180 },
12181 "subdivisions" : [
12182 {
12183 "geoname_id" : 6269131,
12184 "iso_code" : "ENG",
12185 "names" : {
12186 "en" : "England",
12187 "es" : "Inglaterra",
12188 "fr" : "Angleterre",
12189 "pt-BR" : "Inglaterra"
12190 }
12191 }
12192 ]
12193 }
12194 },
12195 {
12196 "::81.2.69.144/124" : {
12197 "city" : {
12198 "geoname_id" : 2643743,
12199 "names" : {
12200 "de" : "London",
12201 "en" : "London",
12202 "es" : "Londres",
12203 "fr" : "Londres",
12204 "ja" : "ロンドン",
12205 "pt-BR" : "Londres",
12206 "ru" : "Лондон"
12207 }
12208 },
12209 "continent" : {
12210 "code" : "EU",
12211 "geoname_id" : 6255148,
12212 "names" : {
12213 "de" : "Europa",
12214 "en" : "Europe",
12215 "es" : "Europa",
12216 "fr" : "Europe",
12217 "ja" : "ヨーロッパ",
12218 "pt-BR" : "Europa",
12219 "ru" : "Европа",
12220 "zh-CN" : "欧洲"
12221 }
12222 },
12223 "country" : {
12224 "geoname_id" : 2635167,
12225 "is_in_european_union" : true,
12226 "iso_code" : "GB",
12227 "names" : {
12228 "de" : "Vereinigtes Königreich",
12229 "en" : "United Kingdom",
12230 "es" : "Reino Unido",
12231 "fr" : "Royaume-Uni",
12232 "ja" : "イギリス",
12233 "pt-BR" : "Reino Unido",
12234 "ru" : "Великобритания",
12235 "zh-CN" : "英国"
12236 }
12237 },
12238 "location" : {
12239 "accuracy_radius" : 3,
12240 "latitude" : 51.5142,
12241 "longitude" : -0.0931,
12242 "time_zone" : "Europe/London"
12243 },
12244 "registered_country" : {
12245 "geoname_id" : 6252001,
12246 "iso_code" : "US",
12247 "names" : {
12248 "de" : "USA",
12249 "en" : "United States",
12250 "es" : "Estados Unidos",
12251 "fr" : "États-Unis",
12252 "ja" : "アメリカ合衆国",
12253 "pt-BR" : "Estados Unidos",
12254 "ru" : "США",
12255 "zh-CN" : "美国"
12256 }
12257 },
12258 "subdivisions" : [
12259 {
12260 "geoname_id" : 6269131,
12261 "iso_code" : "ENG",
12262 "names" : {
12263 "en" : "England",
12264 "es" : "Inglaterra",
12265 "fr" : "Angleterre",
12266 "pt-BR" : "Inglaterra"
12267 }
12268 }
12269 ]
12270 }
12271 },
12272 {
12273 "::81.2.69.160/123" : {
12274 "city" : {
12275 "geoname_id" : 2643743,
12276 "names" : {
12277 "de" : "London",
12278 "en" : "London",
12279 "es" : "Londres",
12280 "fr" : "Londres",
12281 "ja" : "ロンドン",
12282 "pt-BR" : "Londres",
12283 "ru" : "Лондон"
12284 }
12285 },
12286 "continent" : {
12287 "code" : "EU",
12288 "geoname_id" : 6255148,
12289 "names" : {
12290 "de" : "Europa",
12291 "en" : "Europe",
12292 "es" : "Europa",
12293 "fr" : "Europe",
12294 "ja" : "ヨーロッパ",
12295 "pt-BR" : "Europa",
12296 "ru" : "Европа",
12297 "zh-CN" : "欧洲"
12298 }
12299 },
12300 "country" : {
12301 "geoname_id" : 2635167,
12302 "is_in_european_union" : true,
12303 "iso_code" : "GB",
12304 "names" : {
12305 "de" : "Vereinigtes Königreich",
12306 "en" : "United Kingdom",
12307 "es" : "Reino Unido",
12308 "fr" : "Royaume-Uni",
12309 "ja" : "イギリス",
12310 "pt-BR" : "Reino Unido",
12311 "ru" : "Великобритания",
12312 "zh-CN" : "英国"
12313 }
12314 },
12315 "location" : {
12316 "accuracy_radius" : 100,
12317 "latitude" : 51.5142,
12318 "longitude" : -0.0931,
12319 "time_zone" : "Europe/London"
12320 },
12321 "registered_country" : {
12322 "geoname_id" : 6252001,
12323 "iso_code" : "US",
12324 "names" : {
12325 "de" : "USA",
12326 "en" : "United States",
12327 "es" : "Estados Unidos",
12328 "fr" : "États-Unis",
12329 "ja" : "アメリカ合衆国",
12330 "pt-BR" : "Estados Unidos",
12331 "ru" : "США",
12332 "zh-CN" : "美国"
12333 }
12334 },
12335 "subdivisions" : [
12336 {
12337 "geoname_id" : 6269131,
12338 "iso_code" : "ENG",
12339 "names" : {
12340 "en" : "England",
12341 "es" : "Inglaterra",
12342 "fr" : "Angleterre",
12343 "pt-BR" : "Inglaterra"
12344 }
12345 }
12346 ]
12347 }
12348 },
12349 {
12350 "::81.2.69.192/124" : {
12351 "city" : {
12352 "geoname_id" : 2643743,
12353 "names" : {
12354 "de" : "London",
12355 "en" : "London",
12356 "es" : "Londres",
12357 "fr" : "Londres",
12358 "ja" : "ロンドン",
12359 "pt-BR" : "Londres",
12360 "ru" : "Лондон"
12361 }
12362 },
12363 "continent" : {
12364 "code" : "EU",
12365 "geoname_id" : 6255148,
12366 "names" : {
12367 "de" : "Europa",
12368 "en" : "Europe",
12369 "es" : "Europa",
12370 "fr" : "Europe",
12371 "ja" : "ヨーロッパ",
12372 "pt-BR" : "Europa",
12373 "ru" : "Европа",
12374 "zh-CN" : "欧洲"
12375 }
12376 },
12377 "country" : {
12378 "geoname_id" : 2635167,
12379 "is_in_european_union" : true,
12380 "iso_code" : "GB",
12381 "names" : {
12382 "de" : "Vereinigtes Königreich",
12383 "en" : "United Kingdom",
12384 "es" : "Reino Unido",
12385 "fr" : "Royaume-Uni",
12386 "ja" : "イギリス",
12387 "pt-BR" : "Reino Unido",
12388 "ru" : "Великобритания",
12389 "zh-CN" : "英国"
12390 }
12391 },
12392 "location" : {
12393 "accuracy_radius" : 100,
12394 "latitude" : 51.5142,
12395 "longitude" : -0.0931,
12396 "time_zone" : "Europe/London"
12397 },
12398 "registered_country" : {
12399 "geoname_id" : 6252001,
12400 "iso_code" : "US",
12401 "names" : {
12402 "de" : "USA",
12403 "en" : "United States",
12404 "es" : "Estados Unidos",
12405 "fr" : "États-Unis",
12406 "ja" : "アメリカ合衆国",
12407 "pt-BR" : "Estados Unidos",
12408 "ru" : "США",
12409 "zh-CN" : "美国"
12410 }
12411 },
12412 "subdivisions" : [
12413 {
12414 "geoname_id" : 6269131,
12415 "iso_code" : "ENG",
12416 "names" : {
12417 "en" : "England",
12418 "es" : "Inglaterra",
12419 "fr" : "Angleterre",
12420 "pt-BR" : "Inglaterra"
12421 }
12422 }
12423 ]
12424 }
12425 },
12426 {
12427 "::216.160.83.56/125" : {
12428 "city" : {
12429 "geoname_id" : 5803556,
12430 "names" : {
12431 "en" : "Milton",
12432 "ru" : "Мильтон"
12433 }
12434 },
12435 "continent" : {
12436 "code" : "NA",
12437 "geoname_id" : 6255149,
12438 "names" : {
12439 "de" : "Nordamerika",
12440 "en" : "North America",
12441 "es" : "América del Norte",
12442 "fr" : "Amérique du Nord",
12443 "ja" : "北アメリカ",
12444 "pt-BR" : "América do Norte",
12445 "ru" : "Северная Америка",
12446 "zh-CN" : "北美洲"
12447 }
12448 },
12449 "country" : {
12450 "geoname_id" : 6252001,
12451 "iso_code" : "US",
12452 "names" : {
12453 "de" : "USA",
12454 "en" : "United States",
12455 "es" : "Estados Unidos",
12456 "fr" : "États-Unis",
12457 "ja" : "アメリカ合衆国",
12458 "pt-BR" : "Estados Unidos",
12459 "ru" : "США",
12460 "zh-CN" : "美国"
12461 }
12462 },
12463 "location" : {
12464 "accuracy_radius" : 22,
12465 "latitude" : 47.2513,
12466 "longitude" : -122.3149,
12467 "metro_code" : 819,
12468 "time_zone" : "America/Los_Angeles"
12469 },
12470 "postal" : {
12471 "code" : "98354"
12472 },
12473 "registered_country" : {
12474 "geoname_id" : 2635167,
12475 "is_in_european_union" : true,
12476 "iso_code" : "GB",
12477 "names" : {
12478 "de" : "Vereinigtes Königreich",
12479 "en" : "United Kingdom",
12480 "es" : "Reino Unido",
12481 "fr" : "Royaume-Uni",
12482 "ja" : "イギリス",
12483 "pt-BR" : "Reino Unido",
12484 "ru" : "Великобритания",
12485 "zh-CN" : "英国"
12486 }
12487 },
12488 "subdivisions" : [
12489 {
12490 "geoname_id" : 5815135,
12491 "iso_code" : "WA",
12492 "names" : {
12493 "en" : "Washington",
12494 "es" : "Washington",
12495 "fr" : "État de Washington",
12496 "ja" : "ワシントン州",
12497 "ru" : "Вашингтон",
12498 "zh-CN" : "华盛顿州"
12499 }
12500 }
12501 ]
12502 }
12503 },
12504 {
12505 "::89.160.20.112/124" : {
12506 "city" : {
12507 "geoname_id" : 2694762,
12508 "names" : {
12509 "de" : "Linköping",
12510 "en" : "Linköping",
12511 "fr" : "Linköping",
12512 "ja" : "リンシェーピング",
12513 "zh-CN" : "林雪平"
12514 }
12515 },
12516 "continent" : {
12517 "code" : "EU",
12518 "geoname_id" : 6255148,
12519 "names" : {
12520 "de" : "Europa",
12521 "en" : "Europe",
12522 "es" : "Europa",
12523 "fr" : "Europe",
12524 "ja" : "ヨーロッパ",
12525 "pt-BR" : "Europa",
12526 "ru" : "Европа",
12527 "zh-CN" : "欧洲"
12528 }
12529 },
12530 "country" : {
12531 "geoname_id" : 2661886,
12532 "is_in_european_union" : true,
12533 "iso_code" : "SE",
12534 "names" : {
12535 "de" : "Schweden",
12536 "en" : "Sweden",
12537 "es" : "Suecia",
12538 "fr" : "Suède",
12539 "ja" : "スウェーデン王国",
12540 "pt-BR" : "Suécia",
12541 "ru" : "Швеция",
12542 "zh-CN" : "瑞典"
12543 }
12544 },
12545 "location" : {
12546 "accuracy_radius" : 76,
12547 "latitude" : 58.4167,
12548 "longitude" : 15.6167,
12549 "time_zone" : "Europe/Stockholm"
12550 },
12551 "registered_country" : {
12552 "geoname_id" : 2921044,
12553 "is_in_european_union" : true,
12554 "iso_code" : "DE",
12555 "names" : {
12556 "de" : "Deutschland",
12557 "en" : "Germany",
12558 "es" : "Alemania",
12559 "fr" : "Allemagne",
12560 "ja" : "ドイツ連邦共和国",
12561 "pt-BR" : "Alemanha",
12562 "ru" : "Германия",
12563 "zh-CN" : "德国"
12564 }
12565 },
12566 "subdivisions" : [
12567 {
12568 "geoname_id" : 2685867,
12569 "iso_code" : "E",
12570 "names" : {
12571 "en" : "Östergötland County",
12572 "fr" : "Comté d'Östergötland"
12573 }
12574 }
12575 ]
12576 }
12577 },
12578 {
12579 "::89.160.20.128/121" : {
12580 "city" : {
12581 "geoname_id" : 2694762,
12582 "names" : {
12583 "de" : "Linköping",
12584 "en" : "Linköping",
12585 "fr" : "Linköping",
12586 "ja" : "リンシェーピング",
12587 "zh-CN" : "林雪平"
12588 }
12589 },
12590 "continent" : {
12591 "code" : "EU",
12592 "geoname_id" : 6255148,
12593 "names" : {
12594 "de" : "Europa",
12595 "en" : "Europe",
12596 "es" : "Europa",
12597 "fr" : "Europe",
12598 "ja" : "ヨーロッパ",
12599 "pt-BR" : "Europa",
12600 "ru" : "Европа",
12601 "zh-CN" : "欧洲"
12602 }
12603 },
12604 "country" : {
12605 "geoname_id" : 2661886,
12606 "is_in_european_union" : true,
12607 "iso_code" : "SE",
12608 "names" : {
12609 "de" : "Schweden",
12610 "en" : "Sweden",
12611 "es" : "Suecia",
12612 "fr" : "Suède",
12613 "ja" : "スウェーデン王国",
12614 "pt-BR" : "Suécia",
12615 "ru" : "Швеция",
12616 "zh-CN" : "瑞典"
12617 }
12618 },
12619 "location" : {
12620 "accuracy_radius" : 76,
12621 "latitude" : 58.4167,
12622 "longitude" : 15.6167,
12623 "time_zone" : "Europe/Stockholm"
12624 },
12625 "registered_country" : {
12626 "geoname_id" : 2921044,
12627 "is_in_european_union" : true,
12628 "iso_code" : "DE",
12629 "names" : {
12630 "de" : "Deutschland",
12631 "en" : "Germany",
12632 "es" : "Alemania",
12633 "fr" : "Allemagne",
12634 "ja" : "ドイツ連邦共和国",
12635 "pt-BR" : "Alemanha",
12636 "ru" : "Германия",
12637 "zh-CN" : "德国"
12638 }
12639 },
12640 "subdivisions" : [
12641 {
12642 "geoname_id" : 2685867,
12643 "iso_code" : "E",
12644 "names" : {
12645 "en" : "Östergötland County",
12646 "fr" : "Comté d'Östergötland"
12647 }
12648 }
12649 ]
12650 }
12651 },
12652 {
12653 "::67.43.156.0/120" : {
12654 "continent" : {
12655 "code" : "AS",
12656 "geoname_id" : 6255147,
12657 "names" : {
12658 "de" : "Asien",
12659 "en" : "Asia",
12660 "es" : "Asia",
12661 "fr" : "Asie",
12662 "ja" : "アジア",
12663 "pt-BR" : "Ásia",
12664 "ru" : "Азия",
12665 "zh-CN" : "亚洲"
12666 }
12667 },
12668 "country" : {
12669 "geoname_id" : 1252634,
12670 "iso_code" : "BT",
12671 "names" : {
12672 "de" : "Bhutan",
12673 "en" : "Bhutan",
12674 "es" : "Bután",
12675 "fr" : "Bhutan",
12676 "ja" : "ブータン王国",
12677 "pt-BR" : "Butão",
12678 "ru" : "Бутан",
12679 "zh-CN" : "不丹"
12680 }
12681 },
12682 "location" : {
12683 "accuracy_radius" : 534,
12684 "latitude" : 27.5,
12685 "longitude" : 90.5,
12686 "time_zone" : "Asia/Thimphu"
12687 },
12688 "registered_country" : {
12689 "geoname_id" : 798549,
12690 "is_in_european_union" : true,
12691 "iso_code" : "RO",
12692 "names" : {
12693 "de" : "Rumänien",
12694 "en" : "Romania",
12695 "es" : "Rumanía",
12696 "fr" : "Roumanie",
12697 "ja" : "ルーマニア",
12698 "pt-BR" : "Romênia",
12699 "ru" : "Румыния",
12700 "zh-CN" : "罗马尼亚"
12701 }
12702 },
12703 "traits" : {
12704 "is_anonymous_proxy" : true
12705 }
12706 }
12707 },
12708 {
12709 "::202.196.224.0/116" : {
12710 "continent" : {
12711 "code" : "AS",
12712 "geoname_id" : 6255147,
12713 "names" : {
12714 "de" : "Asien",
12715 "en" : "Asia",
12716 "es" : "Asia",
12717 "fr" : "Asie",
12718 "ja" : "アジア",
12719 "pt-BR" : "Ásia",
12720 "ru" : "Азия",
12721 "zh-CN" : "亚洲"
12722 }
12723 },
12724 "country" : {
12725 "geoname_id" : 1694008,
12726 "iso_code" : "PH",
12727 "names" : {
12728 "de" : "Philippinen",
12729 "en" : "Philippines",
12730 "es" : "Filipinas",
12731 "fr" : "Philippines",
12732 "ja" : "フィリピン共和国",
12733 "pt-BR" : "Filipinas",
12734 "ru" : "Филиппины",
12735 "zh-CN" : "菲律宾"
12736 }
12737 },
12738 "location" : {
12739 "accuracy_radius" : 121,
12740 "latitude" : 13,
12741 "longitude" : 122,
12742 "time_zone" : "Asia/Manila"
12743 },
12744 "postal" : {
12745 "code" : "34021"
12746 },
12747 "registered_country" : {
12748 "geoname_id" : 1694008,
12749 "iso_code" : "PH",
12750 "names" : {
12751 "de" : "Philippinen",
12752 "en" : "Philippines",
12753 "es" : "Filipinas",
12754 "fr" : "Philippines",
12755 "ja" : "フィリピン共和国",
12756 "pt-BR" : "Filipinas",
12757 "ru" : "Филиппины",
12758 "zh-CN" : "菲律宾"
12759 }
12760 },
12761 "represented_country" : {
12762 "geoname_id" : 6252001,
12763 "iso_code" : "US",
12764 "names" : {
12765 "de" : "USA",
12766 "en" : "United States",
12767 "es" : "Estados Unidos",
12768 "fr" : "États-Unis",
12769 "ja" : "アメリカ合衆国",
12770 "pt-BR" : "Estados Unidos",
12771 "ru" : "США",
12772 "zh-CN" : "美国"
12773 },
12774 "type" : "military"
12775 }
12776 }
12777 },
12778 {
12779 "::175.16.199.0/120" : {
12780 "city" : {
12781 "geoname_id" : 2038180,
12782 "names" : {
12783 "de" : "Chángchūn",
12784 "en" : "Changchun",
12785 "fr" : "Changchun",
12786 "ja" : "長春市",
12787 "ru" : "Чанчунь",
12788 "zh-CN" : "长春"
12789 }
12790 },
12791 "continent" : {
12792 "code" : "AS",
12793 "geoname_id" : 6255147,
12794 "names" : {
12795 "de" : "Asien",
12796 "en" : "Asia",
12797 "es" : "Asia",
12798 "fr" : "Asie",
12799 "ja" : "アジア",
12800 "pt-BR" : "Ásia",
12801 "ru" : "Азия",
12802 "zh-CN" : "亚洲"
12803 }
12804 },
12805 "country" : {
12806 "geoname_id" : 1814991,
12807 "iso_code" : "CN",
12808 "names" : {
12809 "de" : "China",
12810 "en" : "China",
12811 "es" : "China",
12812 "fr" : "Chine",
12813 "ja" : "中国",
12814 "pt-BR" : "China",
12815 "ru" : "Китай",
12816 "zh-CN" : "中国"
12817 }
12818 },
12819 "location" : {
12820 "accuracy_radius" : 100,
12821 "latitude" : 43.88,
12822 "longitude" : 125.3228,
12823 "time_zone" : "Asia/Harbin"
12824 },
12825 "registered_country" : {
12826 "geoname_id" : 1814991,
12827 "iso_code" : "CN",
12828 "names" : {
12829 "de" : "China",
12830 "en" : "China",
12831 "es" : "China",
12832 "fr" : "Chine",
12833 "ja" : "中国",
12834 "pt-BR" : "China",
12835 "ru" : "Китай",
12836 "zh-CN" : "中国"
12837 }
12838 },
12839 "subdivisions" : [
12840 {
12841 "geoname_id" : 2036500,
12842 "iso_code" : "22",
12843 "names" : {
12844 "en" : "Jilin Sheng",
12845 "zh-CN" : "吉林"
12846 }
12847 }
12848 ]
12849 }
12850 }
12851 ]
+0
-102
test/data/source-data/GeoIP2-Connection-Type-Test.json less more
0 [
1 {
2 "::1.0.0.0/120" : {
3 "connection_type" : "Dialup"
4 }
5 },
6 {
7 "::1.0.1.0/120" : {
8 "connection_type" : "Cable/DSL"
9 }
10 },
11 {
12 "::1.0.2.0/119" : {
13 "connection_type" : "Dialup"
14 }
15 },
16 {
17 "::1.0.4.0/118" : {
18 "connection_type" : "Dialup"
19 }
20 },
21 {
22 "::1.0.8.0/117" : {
23 "connection_type" : "Dialup"
24 }
25 },
26 {
27 "::1.0.16.0/116" : {
28 "connection_type" : "Dialup"
29 }
30 },
31 {
32 "::1.0.32.0/115" : {
33 "connection_type" : "Dialup"
34 }
35 },
36 {
37 "::1.0.64.0/114" : {
38 "connection_type" : "Dialup"
39 }
40 },
41 {
42 "::1.0.128.0/113" : {
43 "connection_type" : "Dialup"
44 }
45 },
46 {
47 "::80.214.0.0/116" : {
48 "connection_type" : "Cellular"
49 }
50 },
51 {
52 "::96.1.0.0/112" : {
53 "connection_type" : "Cable/DSL"
54 }
55 },
56 {
57 "::96.10.0.0/111" : {
58 "connection_type" : "Cable/DSL"
59 }
60 },
61 {
62 "::96.69.0.0/112" : {
63 "connection_type" : "Cable/DSL"
64 }
65 },
66 {
67 "::96.94.0.0/111" : {
68 "connection_type" : "Cable/DSL"
69 }
70 },
71 {
72 "::108.96.0.0/107" : {
73 "connection_type" : "Cellular"
74 }
75 },
76 {
77 "::175.16.199.0/120" : {
78 "connection_type" : "Dialup"
79 }
80 },
81 {
82 "::187.156.138.0/120" : {
83 "connection_type" : "Cable/DSL"
84 }
85 },
86 {
87 "::201.243.200.0/120" : {
88 "connection_type" : "Corporate"
89 }
90 },
91 {
92 "::207.179.48.0/116" : {
93 "connection_type" : "Cellular"
94 }
95 },
96 {
97 "2003::/24" : {
98 "connection_type" : "Cable/DSL"
99 }
100 }
101 ]
+0
-15916
test/data/source-data/GeoIP2-Country-Test.json less more
0 [
1 {
2 "2001:218::/32" : {
3 "continent" : {
4 "code" : "AS",
5 "geoname_id" : 6255147,
6 "names" : {
7 "de" : "Asien",
8 "en" : "Asia",
9 "es" : "Asia",
10 "fr" : "Asie",
11 "ja" : "アジア",
12 "pt-BR" : "Ásia",
13 "ru" : "Азия",
14 "zh-CN" : "亚洲"
15 }
16 },
17 "country" : {
18 "geoname_id" : 1861060,
19 "iso_code" : "JP",
20 "names" : {
21 "de" : "Japan",
22 "en" : "Japan",
23 "es" : "Japón",
24 "fr" : "Japon",
25 "ja" : "日本",
26 "pt-BR" : "Japão",
27 "ru" : "Япония",
28 "zh-CN" : "日本"
29 }
30 },
31 "registered_country" : {
32 "geoname_id" : 1861060,
33 "iso_code" : "JP",
34 "names" : {
35 "de" : "Japan",
36 "en" : "Japan",
37 "es" : "Japón",
38 "fr" : "Japon",
39 "ja" : "日本",
40 "pt-BR" : "Japão",
41 "ru" : "Япония",
42 "zh-CN" : "日本"
43 }
44 }
45 }
46 },
47 {
48 "2001:220::1/128" : {
49 "continent" : {
50 "code" : "AS",
51 "geoname_id" : 6255147,
52 "names" : {
53 "de" : "Asien",
54 "en" : "Asia",
55 "es" : "Asia",
56 "fr" : "Asie",
57 "ja" : "アジア",
58 "pt-BR" : "Ásia",
59 "ru" : "Азия",
60 "zh-CN" : "亚洲"
61 }
62 },
63 "country" : {
64 "geoname_id" : 1835841,
65 "iso_code" : "KR",
66 "names" : {
67 "de" : "Republik Korea",
68 "en" : "South Korea",
69 "es" : "Corea, República de",
70 "fr" : "Corée du Sud",
71 "ja" : "大韓民国",
72 "pt-BR" : "Coréia, República da",
73 "ru" : "Южная Корея",
74 "zh-CN" : "韩国"
75 }
76 },
77 "registered_country" : {
78 "geoname_id" : 1835841,
79 "iso_code" : "KR",
80 "names" : {
81 "de" : "Republik Korea",
82 "en" : "South Korea",
83 "es" : "Corea, República de",
84 "fr" : "Corée du Sud",
85 "ja" : "大韓民国",
86 "pt-BR" : "Coréia, República da",
87 "ru" : "Южная Корея",
88 "zh-CN" : "韩国"
89 }
90 }
91 }
92 },
93 {
94 "2001:220::2/127" : {
95 "continent" : {
96 "code" : "AS",
97 "geoname_id" : 6255147,
98 "names" : {
99 "de" : "Asien",
100 "en" : "Asia",
101 "es" : "Asia",
102 "fr" : "Asie",
103 "ja" : "アジア",
104 "pt-BR" : "Ásia",
105 "ru" : "Азия",
106 "zh-CN" : "亚洲"
107 }
108 },
109 "country" : {
110 "geoname_id" : 1835841,
111 "iso_code" : "KR",
112 "names" : {
113 "de" : "Republik Korea",
114 "en" : "South Korea",
115 "es" : "Corea, República de",
116 "fr" : "Corée du Sud",
117 "ja" : "大韓民国",
118 "pt-BR" : "Coréia, República da",
119 "ru" : "Южная Корея",
120 "zh-CN" : "韩国"
121 }
122 },
123 "registered_country" : {
124 "geoname_id" : 1835841,
125 "iso_code" : "KR",
126 "names" : {
127 "de" : "Republik Korea",
128 "en" : "South Korea",
129 "es" : "Corea, República de",
130 "fr" : "Corée du Sud",
131 "ja" : "大韓民国",
132 "pt-BR" : "Coréia, República da",
133 "ru" : "Южная Корея",
134 "zh-CN" : "韩国"
135 }
136 }
137 }
138 },
139 {
140 "2001:220::4/126" : {
141 "continent" : {
142 "code" : "AS",
143 "geoname_id" : 6255147,
144 "names" : {
145 "de" : "Asien",
146 "en" : "Asia",
147 "es" : "Asia",
148 "fr" : "Asie",
149 "ja" : "アジア",
150 "pt-BR" : "Ásia",
151 "ru" : "Азия",
152 "zh-CN" : "亚洲"
153 }
154 },
155 "country" : {
156 "geoname_id" : 1835841,
157 "iso_code" : "KR",
158 "names" : {
159 "de" : "Republik Korea",
160 "en" : "South Korea",
161 "es" : "Corea, República de",
162 "fr" : "Corée du Sud",
163 "ja" : "大韓民国",
164 "pt-BR" : "Coréia, República da",
165 "ru" : "Южная Корея",
166 "zh-CN" : "韩国"
167 }
168 },
169 "registered_country" : {
170 "geoname_id" : 1835841,
171 "iso_code" : "KR",
172 "names" : {
173 "de" : "Republik Korea",
174 "en" : "South Korea",
175 "es" : "Corea, República de",
176 "fr" : "Corée du Sud",
177 "ja" : "大韓民国",
178 "pt-BR" : "Coréia, República da",
179 "ru" : "Южная Корея",
180 "zh-CN" : "韩国"
181 }
182 }
183 }
184 },
185 {
186 "2001:220::8/125" : {
187 "continent" : {
188 "code" : "AS",
189 "geoname_id" : 6255147,
190 "names" : {
191 "de" : "Asien",
192 "en" : "Asia",
193 "es" : "Asia",
194 "fr" : "Asie",
195 "ja" : "アジア",
196 "pt-BR" : "Ásia",
197 "ru" : "Азия",
198 "zh-CN" : "亚洲"
199 }
200 },
201 "country" : {
202 "geoname_id" : 1835841,
203 "iso_code" : "KR",
204 "names" : {
205 "de" : "Republik Korea",
206 "en" : "South Korea",
207 "es" : "Corea, República de",
208 "fr" : "Corée du Sud",
209 "ja" : "大韓民国",
210 "pt-BR" : "Coréia, República da",
211 "ru" : "Южная Корея",
212 "zh-CN" : "韩国"
213 }
214 },
215 "registered_country" : {
216 "geoname_id" : 1835841,
217 "iso_code" : "KR",
218 "names" : {
219 "de" : "Republik Korea",
220 "en" : "South Korea",
221 "es" : "Corea, República de",
222 "fr" : "Corée du Sud",
223 "ja" : "大韓民国",
224 "pt-BR" : "Coréia, República da",
225 "ru" : "Южная Корея",
226 "zh-CN" : "韩国"
227 }
228 }
229 }
230 },
231 {
232 "2001:220::10/124" : {
233 "continent" : {
234 "code" : "AS",
235 "geoname_id" : 6255147,
236 "names" : {
237 "de" : "Asien",
238 "en" : "Asia",
239 "es" : "Asia",
240 "fr" : "Asie",
241 "ja" : "アジア",
242 "pt-BR" : "Ásia",
243 "ru" : "Азия",
244 "zh-CN" : "亚洲"
245 }
246 },
247 "country" : {
248 "geoname_id" : 1835841,
249 "iso_code" : "KR",
250 "names" : {
251 "de" : "Republik Korea",
252 "en" : "South Korea",
253 "es" : "Corea, República de",
254 "fr" : "Corée du Sud",
255 "ja" : "大韓民国",
256 "pt-BR" : "Coréia, República da",
257 "ru" : "Южная Корея",
258 "zh-CN" : "韩国"
259 }
260 },
261 "registered_country" : {
262 "geoname_id" : 1835841,
263 "iso_code" : "KR",
264 "names" : {
265 "de" : "Republik Korea",
266 "en" : "South Korea",
267 "es" : "Corea, República de",
268 "fr" : "Corée du Sud",
269 "ja" : "大韓民国",
270 "pt-BR" : "Coréia, República da",
271 "ru" : "Южная Корея",
272 "zh-CN" : "韩国"
273 }
274 }
275 }
276 },
277 {
278 "2001:220::20/123" : {
279 "continent" : {
280 "code" : "AS",
281 "geoname_id" : 6255147,
282 "names" : {
283 "de" : "Asien",
284 "en" : "Asia",
285 "es" : "Asia",
286 "fr" : "Asie",
287 "ja" : "アジア",
288 "pt-BR" : "Ásia",
289 "ru" : "Азия",
290 "zh-CN" : "亚洲"
291 }
292 },
293 "country" : {
294 "geoname_id" : 1835841,
295 "iso_code" : "KR",
296 "names" : {
297 "de" : "Republik Korea",
298 "en" : "South Korea",
299 "es" : "Corea, República de",
300 "fr" : "Corée du Sud",
301 "ja" : "大韓民国",
302 "pt-BR" : "Coréia, República da",
303 "ru" : "Южная Корея",
304 "zh-CN" : "韩国"
305 }
306 },
307 "registered_country" : {
308 "geoname_id" : 1835841,
309 "iso_code" : "KR",
310 "names" : {
311 "de" : "Republik Korea",
312 "en" : "South Korea",
313 "es" : "Corea, República de",
314 "fr" : "Corée du Sud",
315 "ja" : "大韓民国",
316 "pt-BR" : "Coréia, República da",
317 "ru" : "Южная Корея",
318 "zh-CN" : "韩国"
319 }
320 }
321 }
322 },
323 {
324 "2001:220::40/122" : {
325 "continent" : {
326 "code" : "AS",
327 "geoname_id" : 6255147,
328 "names" : {
329 "de" : "Asien",
330 "en" : "Asia",
331 "es" : "Asia",
332 "fr" : "Asie",
333 "ja" : "アジア",
334 "pt-BR" : "Ásia",
335 "ru" : "Азия",
336 "zh-CN" : "亚洲"
337 }
338 },
339 "country" : {
340 "geoname_id" : 1835841,
341 "iso_code" : "KR",
342 "names" : {
343 "de" : "Republik Korea",
344 "en" : "South Korea",
345 "es" : "Corea, República de",
346 "fr" : "Corée du Sud",
347 "ja" : "大韓民国",
348 "pt-BR" : "Coréia, República da",
349 "ru" : "Южная Корея",
350 "zh-CN" : "韩国"
351 }
352 },
353 "registered_country" : {
354 "geoname_id" : 1835841,
355 "iso_code" : "KR",
356 "names" : {
357 "de" : "Republik Korea",
358 "en" : "South Korea",
359 "es" : "Corea, República de",
360 "fr" : "Corée du Sud",
361 "ja" : "大韓民国",
362 "pt-BR" : "Coréia, República da",
363 "ru" : "Южная Корея",
364 "zh-CN" : "韩国"
365 }
366 }
367 }
368 },
369 {
370 "2001:220::80/121" : {
371 "continent" : {
372 "code" : "AS",
373 "geoname_id" : 6255147,
374 "names" : {
375 "de" : "Asien",
376 "en" : "Asia",
377 "es" : "Asia",
378 "fr" : "Asie",
379 "ja" : "アジア",
380 "pt-BR" : "Ásia",
381 "ru" : "Азия",
382 "zh-CN" : "亚洲"
383 }
384 },
385 "country" : {
386 "geoname_id" : 1835841,
387 "iso_code" : "KR",
388 "names" : {
389 "de" : "Republik Korea",
390 "en" : "South Korea",
391 "es" : "Corea, República de",
392 "fr" : "Corée du Sud",
393 "ja" : "大韓民国",
394 "pt-BR" : "Coréia, República da",
395 "ru" : "Южная Корея",
396 "zh-CN" : "韩国"
397 }
398 },
399 "registered_country" : {
400 "geoname_id" : 1835841,
401 "iso_code" : "KR",
402 "names" : {
403 "de" : "Republik Korea",
404 "en" : "South Korea",
405 "es" : "Corea, República de",
406 "fr" : "Corée du Sud",
407 "ja" : "大韓民国",
408 "pt-BR" : "Coréia, República da",
409 "ru" : "Южная Корея",
410 "zh-CN" : "韩国"
411 }
412 }
413 }
414 },
415 {
416 "2001:220::100/120" : {
417 "continent" : {
418 "code" : "AS",
419 "geoname_id" : 6255147,
420 "names" : {
421 "de" : "Asien",
422 "en" : "Asia",
423 "es" : "Asia",
424 "fr" : "Asie",
425 "ja" : "アジア",
426 "pt-BR" : "Ásia",
427 "ru" : "Азия",
428 "zh-CN" : "亚洲"
429 }
430 },
431 "country" : {
432 "geoname_id" : 1835841,
433 "iso_code" : "KR",
434 "names" : {
435 "de" : "Republik Korea",
436 "en" : "South Korea",
437 "es" : "Corea, República de",
438 "fr" : "Corée du Sud",
439 "ja" : "大韓民国",
440 "pt-BR" : "Coréia, República da",
441 "ru" : "Южная Корея",
442 "zh-CN" : "韩国"
443 }
444 },
445 "registered_country" : {
446 "geoname_id" : 1835841,
447 "iso_code" : "KR",
448 "names" : {
449 "de" : "Republik Korea",
450 "en" : "South Korea",
451 "es" : "Corea, República de",
452 "fr" : "Corée du Sud",
453 "ja" : "大韓民国",
454 "pt-BR" : "Coréia, República da",
455 "ru" : "Южная Корея",
456 "zh-CN" : "韩国"
457 }
458 }
459 }
460 },
461 {
462 "2001:220::200/119" : {
463 "continent" : {
464 "code" : "AS",
465 "geoname_id" : 6255147,
466 "names" : {
467 "de" : "Asien",
468 "en" : "Asia",
469 "es" : "Asia",
470 "fr" : "Asie",
471 "ja" : "アジア",
472 "pt-BR" : "Ásia",
473 "ru" : "Азия",
474 "zh-CN" : "亚洲"
475 }
476 },
477 "country" : {
478 "geoname_id" : 1835841,
479 "iso_code" : "KR",
480 "names" : {
481 "de" : "Republik Korea",
482 "en" : "South Korea",
483 "es" : "Corea, República de",
484 "fr" : "Corée du Sud",
485 "ja" : "大韓民国",
486 "pt-BR" : "Coréia, República da",
487 "ru" : "Южная Корея",
488 "zh-CN" : "韩国"
489 }
490 },
491 "registered_country" : {
492 "geoname_id" : 1835841,
493 "iso_code" : "KR",
494 "names" : {
495 "de" : "Republik Korea",
496 "en" : "South Korea",
497 "es" : "Corea, República de",
498 "fr" : "Corée du Sud",
499 "ja" : "大韓民国",
500 "pt-BR" : "Coréia, República da",
501 "ru" : "Южная Корея",
502 "zh-CN" : "韩国"
503 }
504 }
505 }
506 },
507 {
508 "2001:220::400/118" : {
509 "continent" : {
510 "code" : "AS",
511 "geoname_id" : 6255147,
512 "names" : {
513 "de" : "Asien",
514 "en" : "Asia",
515 "es" : "Asia",
516 "fr" : "Asie",
517 "ja" : "アジア",
518 "pt-BR" : "Ásia",
519 "ru" : "Азия",
520 "zh-CN" : "亚洲"
521 }
522 },
523 "country" : {
524 "geoname_id" : 1835841,
525 "iso_code" : "KR",
526 "names" : {
527 "de" : "Republik Korea",
528 "en" : "South Korea",
529 "es" : "Corea, República de",
530 "fr" : "Corée du Sud",
531 "ja" : "大韓民国",
532 "pt-BR" : "Coréia, República da",
533 "ru" : "Южная Корея",
534 "zh-CN" : "韩国"
535 }
536 },
537 "registered_country" : {
538 "geoname_id" : 1835841,
539 "iso_code" : "KR",
540 "names" : {
541 "de" : "Republik Korea",
542 "en" : "South Korea",
543 "es" : "Corea, República de",
544 "fr" : "Corée du Sud",
545 "ja" : "大韓民国",
546 "pt-BR" : "Coréia, República da",
547 "ru" : "Южная Корея",
548 "zh-CN" : "韩国"
549 }
550 }
551 }
552 },
553 {
554 "2001:220::800/117" : {
555 "continent" : {
556 "code" : "AS",
557 "geoname_id" : 6255147,
558 "names" : {
559 "de" : "Asien",
560 "en" : "Asia",
561 "es" : "Asia",
562 "fr" : "Asie",
563 "ja" : "アジア",
564 "pt-BR" : "Ásia",
565 "ru" : "Азия",
566 "zh-CN" : "亚洲"
567 }
568 },
569 "country" : {
570 "geoname_id" : 1835841,
571 "iso_code" : "KR",
572 "names" : {
573 "de" : "Republik Korea",
574 "en" : "South Korea",
575 "es" : "Corea, República de",
576 "fr" : "Corée du Sud",
577 "ja" : "大韓民国",
578 "pt-BR" : "Coréia, República da",
579 "ru" : "Южная Корея",
580 "zh-CN" : "韩国"
581 }
582 },
583 "registered_country" : {
584 "geoname_id" : 1835841,
585 "iso_code" : "KR",
586 "names" : {
587 "de" : "Republik Korea",
588 "en" : "South Korea",
589 "es" : "Corea, República de",
590 "fr" : "Corée du Sud",
591 "ja" : "大韓民国",
592 "pt-BR" : "Coréia, República da",
593 "ru" : "Южная Корея",
594 "zh-CN" : "韩国"
595 }
596 }
597 }
598 },
599 {
600 "2001:220::1000/116" : {
601 "continent" : {
602 "code" : "AS",
603 "geoname_id" : 6255147,
604 "names" : {
605 "de" : "Asien",
606 "en" : "Asia",
607 "es" : "Asia",
608 "fr" : "Asie",
609 "ja" : "アジア",
610 "pt-BR" : "Ásia",
611 "ru" : "Азия",
612 "zh-CN" : "亚洲"
613 }
614 },
615 "country" : {
616 "geoname_id" : 1835841,
617 "iso_code" : "KR",
618 "names" : {
619 "de" : "Republik Korea",
620 "en" : "South Korea",
621 "es" : "Corea, República de",
622 "fr" : "Corée du Sud",
623 "ja" : "大韓民国",
624 "pt-BR" : "Coréia, República da",
625 "ru" : "Южная Корея",
626 "zh-CN" : "韩国"
627 }
628 },
629 "registered_country" : {
630 "geoname_id" : 1835841,
631 "iso_code" : "KR",
632 "names" : {
633 "de" : "Republik Korea",
634 "en" : "South Korea",
635 "es" : "Corea, República de",
636 "fr" : "Corée du Sud",
637 "ja" : "大韓民国",
638 "pt-BR" : "Coréia, República da",
639 "ru" : "Южная Корея",
640 "zh-CN" : "韩国"
641 }
642 }
643 }
644 },
645 {
646 "2001:220::2000/115" : {
647 "continent" : {
648 "code" : "AS",
649 "geoname_id" : 6255147,
650 "names" : {
651 "de" : "Asien",
652 "en" : "Asia",
653 "es" : "Asia",
654 "fr" : "Asie",
655 "ja" : "アジア",
656 "pt-BR" : "Ásia",
657 "ru" : "Азия",
658 "zh-CN" : "亚洲"
659 }
660 },
661 "country" : {
662 "geoname_id" : 1835841,
663 "iso_code" : "KR",
664 "names" : {
665 "de" : "Republik Korea",
666 "en" : "South Korea",
667 "es" : "Corea, República de",
668 "fr" : "Corée du Sud",
669 "ja" : "大韓民国",
670 "pt-BR" : "Coréia, República da",
671 "ru" : "Южная Корея",
672 "zh-CN" : "韩国"
673 }
674 },
675 "registered_country" : {
676 "geoname_id" : 1835841,
677 "iso_code" : "KR",
678 "names" : {
679 "de" : "Republik Korea",
680 "en" : "South Korea",
681 "es" : "Corea, República de",
682 "fr" : "Corée du Sud",
683 "ja" : "大韓民国",
684 "pt-BR" : "Coréia, República da",
685 "ru" : "Южная Корея",
686 "zh-CN" : "韩国"
687 }
688 }
689 }
690 },
691 {
692 "2001:220::4000/114" : {
693 "continent" : {
694 "code" : "AS",
695 "geoname_id" : 6255147,
696 "names" : {
697 "de" : "Asien",
698 "en" : "Asia",
699 "es" : "Asia",
700 "fr" : "Asie",
701 "ja" : "アジア",
702 "pt-BR" : "Ásia",
703 "ru" : "Азия",
704 "zh-CN" : "亚洲"
705 }
706 },
707 "country" : {
708 "geoname_id" : 1835841,
709 "iso_code" : "KR",
710 "names" : {
711 "de" : "Republik Korea",
712 "en" : "South Korea",
713 "es" : "Corea, República de",
714 "fr" : "Corée du Sud",
715 "ja" : "大韓民国",
716 "pt-BR" : "Coréia, República da",
717 "ru" : "Южная Корея",
718 "zh-CN" : "韩国"
719 }
720 },
721 "registered_country" : {
722 "geoname_id" : 1835841,
723 "iso_code" : "KR",
724 "names" : {
725 "de" : "Republik Korea",
726 "en" : "South Korea",
727 "es" : "Corea, República de",
728 "fr" : "Corée du Sud",
729 "ja" : "大韓民国",
730 "pt-BR" : "Coréia, República da",
731 "ru" : "Южная Корея",
732 "zh-CN" : "韩国"
733 }
734 }
735 }
736 },
737 {
738 "2001:220::8000/113" : {
739 "continent" : {
740 "code" : "AS",
741 "geoname_id" : 6255147,
742 "names" : {
743 "de" : "Asien",
744 "en" : "Asia",
745 "es" : "Asia",
746 "fr" : "Asie",
747 "ja" : "アジア",
748 "pt-BR" : "Ásia",
749 "ru" : "Азия",
750 "zh-CN" : "亚洲"
751 }
752 },
753 "country" : {
754 "geoname_id" : 1835841,
755 "iso_code" : "KR",
756 "names" : {
757 "de" : "Republik Korea",
758 "en" : "South Korea",
759 "es" : "Corea, República de",
760 "fr" : "Corée du Sud",
761 "ja" : "大韓民国",
762 "pt-BR" : "Coréia, República da",
763 "ru" : "Южная Корея",
764 "zh-CN" : "韩国"
765 }
766 },
767 "registered_country" : {
768 "geoname_id" : 1835841,
769 "iso_code" : "KR",
770 "names" : {
771 "de" : "Republik Korea",
772 "en" : "South Korea",
773 "es" : "Corea, República de",
774 "fr" : "Corée du Sud",
775 "ja" : "大韓民国",
776 "pt-BR" : "Coréia, República da",
777 "ru" : "Южная Корея",
778 "zh-CN" : "韩国"
779 }
780 }
781 }
782 },
783 {
784 "2001:220::1:0/112" : {
785 "continent" : {
786 "code" : "AS",
787 "geoname_id" : 6255147,
788 "names" : {
789 "de" : "Asien",
790 "en" : "Asia",
791 "es" : "Asia",
792 "fr" : "Asie",
793 "ja" : "アジア",
794 "pt-BR" : "Ásia",
795 "ru" : "Азия",
796 "zh-CN" : "亚洲"
797 }
798 },
799 "country" : {
800 "geoname_id" : 1835841,
801 "iso_code" : "KR",
802 "names" : {
803 "de" : "Republik Korea",
804 "en" : "South Korea",
805 "es" : "Corea, República de",
806 "fr" : "Corée du Sud",
807 "ja" : "大韓民国",
808 "pt-BR" : "Coréia, República da",
809 "ru" : "Южная Корея",
810 "zh-CN" : "韩国"
811 }
812 },
813 "registered_country" : {
814 "geoname_id" : 1835841,
815 "iso_code" : "KR",
816 "names" : {
817 "de" : "Republik Korea",
818 "en" : "South Korea",
819 "es" : "Corea, República de",
820 "fr" : "Corée du Sud",
821 "ja" : "大韓民国",
822 "pt-BR" : "Coréia, República da",
823 "ru" : "Южная Корея",
824 "zh-CN" : "韩国"
825 }
826 }
827 }
828 },
829 {
830 "2001:220::2:0/111" : {
831 "continent" : {
832 "code" : "AS",
833 "geoname_id" : 6255147,
834 "names" : {
835 "de" : "Asien",
836 "en" : "Asia",
837 "es" : "Asia",
838 "fr" : "Asie",
839 "ja" : "アジア",
840 "pt-BR" : "Ásia",
841 "ru" : "Азия",
842 "zh-CN" : "亚洲"
843 }
844 },
845 "country" : {
846 "geoname_id" : 1835841,
847 "iso_code" : "KR",
848 "names" : {
849 "de" : "Republik Korea",
850 "en" : "South Korea",
851 "es" : "Corea, República de",
852 "fr" : "Corée du Sud",
853 "ja" : "大韓民国",
854 "pt-BR" : "Coréia, República da",
855 "ru" : "Южная Корея",
856 "zh-CN" : "韩国"
857 }
858 },
859 "registered_country" : {
860 "geoname_id" : 1835841,
861 "iso_code" : "KR",
862 "names" : {
863 "de" : "Republik Korea",
864 "en" : "South Korea",
865 "es" : "Corea, República de",
866 "fr" : "Corée du Sud",
867 "ja" : "大韓民国",
868 "pt-BR" : "Coréia, República da",
869 "ru" : "Южная Корея",
870 "zh-CN" : "韩国"
871 }
872 }
873 }
874 },
875 {
876 "2001:220::4:0/110" : {
877 "continent" : {
878 "code" : "AS",
879 "geoname_id" : 6255147,
880 "names" : {
881 "de" : "Asien",
882 "en" : "Asia",
883 "es" : "Asia",
884 "fr" : "Asie",
885 "ja" : "アジア",
886 "pt-BR" : "Ásia",
887 "ru" : "Азия",
888 "zh-CN" : "亚洲"
889 }
890 },
891 "country" : {
892 "geoname_id" : 1835841,
893 "iso_code" : "KR",
894 "names" : {
895 "de" : "Republik Korea",
896 "en" : "South Korea",
897 "es" : "Corea, República de",
898 "fr" : "Corée du Sud",
899 "ja" : "大韓民国",
900 "pt-BR" : "Coréia, República da",
901 "ru" : "Южная Корея",
902 "zh-CN" : "韩国"
903 }
904 },
905 "registered_country" : {
906 "geoname_id" : 1835841,
907 "iso_code" : "KR",
908 "names" : {
909 "de" : "Republik Korea",
910 "en" : "South Korea",
911 "es" : "Corea, República de",
912 "fr" : "Corée du Sud",
913 "ja" : "大韓民国",
914 "pt-BR" : "Coréia, República da",
915 "ru" : "Южная Корея",
916 "zh-CN" : "韩国"
917 }
918 }
919 }
920 },
921 {
922 "2001:220::8:0/109" : {
923 "continent" : {
924 "code" : "AS",
925 "geoname_id" : 6255147,
926 "names" : {
927 "de" : "Asien",
928 "en" : "Asia",
929 "es" : "Asia",
930 "fr" : "Asie",
931 "ja" : "アジア",
932 "pt-BR" : "Ásia",
933 "ru" : "Азия",
934 "zh-CN" : "亚洲"
935 }
936 },
937 "country" : {
938 "geoname_id" : 1835841,
939 "iso_code" : "KR",
940 "names" : {
941 "de" : "Republik Korea",
942 "en" : "South Korea",
943 "es" : "Corea, República de",
944 "fr" : "Corée du Sud",
945 "ja" : "大韓民国",
946 "pt-BR" : "Coréia, República da",
947 "ru" : "Южная Корея",
948 "zh-CN" : "韩国"
949 }
950 },
951 "registered_country" : {
952 "geoname_id" : 1835841,
953 "iso_code" : "KR",
954 "names" : {
955 "de" : "Republik Korea",
956 "en" : "South Korea",
957 "es" : "Corea, República de",
958 "fr" : "Corée du Sud",
959 "ja" : "大韓民国",
960 "pt-BR" : "Coréia, República da",
961 "ru" : "Южная Корея",
962 "zh-CN" : "韩国"
963 }
964 }
965 }
966 },
967 {
968 "2001:220::10:0/108" : {
969 "continent" : {
970 "code" : "AS",
971 "geoname_id" : 6255147,
972 "names" : {
973 "de" : "Asien",
974 "en" : "Asia",
975 "es" : "Asia",
976 "fr" : "Asie",
977 "ja" : "アジア",
978 "pt-BR" : "Ásia",
979 "ru" : "Азия",
980 "zh-CN" : "亚洲"
981 }
982 },
983 "country" : {
984 "geoname_id" : 1835841,
985 "iso_code" : "KR",
986 "names" : {
987 "de" : "Republik Korea",
988 "en" : "South Korea",
989 "es" : "Corea, República de",
990 "fr" : "Corée du Sud",
991 "ja" : "大韓民国",
992 "pt-BR" : "Coréia, República da",
993 "ru" : "Южная Корея",
994 "zh-CN" : "韩国"
995 }
996 },
997 "registered_country" : {
998 "geoname_id" : 1835841,
999 "iso_code" : "KR",
1000 "names" : {
1001 "de" : "Republik Korea",
1002 "en" : "South Korea",
1003 "es" : "Corea, República de",
1004 "fr" : "Corée du Sud",
1005 "ja" : "大韓民国",
1006 "pt-BR" : "Coréia, República da",
1007 "ru" : "Южная Корея",
1008 "zh-CN" : "韩国"
1009 }
1010 }
1011 }
1012 },
1013 {
1014 "2001:220::20:0/107" : {
1015 "continent" : {
1016 "code" : "AS",
1017 "geoname_id" : 6255147,
1018 "names" : {
1019 "de" : "Asien",
1020 "en" : "Asia",
1021 "es" : "Asia",
1022 "fr" : "Asie",
1023 "ja" : "アジア",
1024 "pt-BR" : "Ásia",
1025 "ru" : "Азия",
1026 "zh-CN" : "亚洲"
1027 }
1028 },
1029 "country" : {
1030 "geoname_id" : 1835841,
1031 "iso_code" : "KR",
1032 "names" : {
1033 "de" : "Republik Korea",
1034 "en" : "South Korea",
1035 "es" : "Corea, República de",
1036 "fr" : "Corée du Sud",
1037 "ja" : "大韓民国",
1038 "pt-BR" : "Coréia, República da",
1039 "ru" : "Южная Корея",
1040 "zh-CN" : "韩国"
1041 }
1042 },
1043 "registered_country" : {
1044 "geoname_id" : 1835841,
1045 "iso_code" : "KR",
1046 "names" : {
1047 "de" : "Republik Korea",
1048 "en" : "South Korea",
1049 "es" : "Corea, República de",
1050 "fr" : "Corée du Sud",
1051 "ja" : "大韓民国",
1052 "pt-BR" : "Coréia, República da",
1053 "ru" : "Южная Корея",
1054 "zh-CN" : "韩国"
1055 }
1056 }
1057 }
1058 },
1059 {
1060 "2001:220::40:0/106" : {
1061 "continent" : {
1062 "code" : "AS",
1063 "geoname_id" : 6255147,
1064 "names" : {
1065 "de" : "Asien",
1066 "en" : "Asia",
1067 "es" : "Asia",
1068 "fr" : "Asie",
1069 "ja" : "アジア",
1070 "pt-BR" : "Ásia",
1071 "ru" : "Азия",
1072 "zh-CN" : "亚洲"
1073 }
1074 },
1075 "country" : {
1076 "geoname_id" : 1835841,
1077 "iso_code" : "KR",
1078 "names" : {
1079 "de" : "Republik Korea",
1080 "en" : "South Korea",
1081 "es" : "Corea, República de",
1082 "fr" : "Corée du Sud",
1083 "ja" : "大韓民国",
1084 "pt-BR" : "Coréia, República da",
1085 "ru" : "Южная Корея",
1086 "zh-CN" : "韩国"
1087 }
1088 },
1089 "registered_country" : {
1090 "geoname_id" : 1835841,
1091 "iso_code" : "KR",
1092 "names" : {
1093 "de" : "Republik Korea",
1094 "en" : "South Korea",
1095 "es" : "Corea, República de",
1096 "fr" : "Corée du Sud",
1097 "ja" : "大韓民国",
1098 "pt-BR" : "Coréia, República da",
1099 "ru" : "Южная Корея",
1100 "zh-CN" : "韩国"
1101 }
1102 }
1103 }
1104 },
1105 {
1106 "2001:220::80:0/105" : {
1107 "continent" : {
1108 "code" : "AS",
1109 "geoname_id" : 6255147,
1110 "names" : {
1111 "de" : "Asien",
1112 "en" : "Asia",
1113 "es" : "Asia",
1114 "fr" : "Asie",
1115 "ja" : "アジア",
1116 "pt-BR" : "Ásia",
1117 "ru" : "Азия",
1118 "zh-CN" : "亚洲"
1119 }
1120 },
1121 "country" : {
1122 "geoname_id" : 1835841,
1123 "iso_code" : "KR",
1124 "names" : {
1125 "de" : "Republik Korea",
1126 "en" : "South Korea",
1127 "es" : "Corea, República de",
1128 "fr" : "Corée du Sud",
1129 "ja" : "大韓民国",
1130 "pt-BR" : "Coréia, República da",
1131 "ru" : "Южная Корея",
1132 "zh-CN" : "韩国"
1133 }
1134 },
1135 "registered_country" : {
1136 "geoname_id" : 1835841,
1137 "iso_code" : "KR",
1138 "names" : {
1139 "de" : "Republik Korea",
1140 "en" : "South Korea",
1141 "es" : "Corea, República de",
1142 "fr" : "Corée du Sud",
1143 "ja" : "大韓民国",
1144 "pt-BR" : "Coréia, República da",
1145 "ru" : "Южная Корея",
1146 "zh-CN" : "韩国"
1147 }
1148 }
1149 }
1150 },
1151 {
1152 "2001:220::100:0/104" : {
1153 "continent" : {
1154 "code" : "AS",
1155 "geoname_id" : 6255147,
1156 "names" : {
1157 "de" : "Asien",
1158 "en" : "Asia",
1159 "es" : "Asia",
1160 "fr" : "Asie",
1161 "ja" : "アジア",
1162 "pt-BR" : "Ásia",
1163 "ru" : "Азия",
1164 "zh-CN" : "亚洲"
1165 }
1166 },
1167 "country" : {
1168 "geoname_id" : 1835841,
1169 "iso_code" : "KR",
1170 "names" : {
1171 "de" : "Republik Korea",
1172 "en" : "South Korea",
1173 "es" : "Corea, República de",
1174 "fr" : "Corée du Sud",
1175 "ja" : "大韓民国",
1176 "pt-BR" : "Coréia, República da",
1177 "ru" : "Южная Корея",
1178 "zh-CN" : "韩国"
1179 }
1180 },
1181 "registered_country" : {
1182 "geoname_id" : 1835841,
1183 "iso_code" : "KR",
1184 "names" : {
1185 "de" : "Republik Korea",
1186 "en" : "South Korea",
1187 "es" : "Corea, República de",
1188 "fr" : "Corée du Sud",
1189 "ja" : "大韓民国",
1190 "pt-BR" : "Coréia, República da",
1191 "ru" : "Южная Корея",
1192 "zh-CN" : "韩国"
1193 }
1194 }
1195 }
1196 },
1197 {
1198 "2001:220::200:0/103" : {
1199 "continent" : {
1200 "code" : "AS",
1201 "geoname_id" : 6255147,
1202 "names" : {
1203 "de" : "Asien",
1204 "en" : "Asia",
1205 "es" : "Asia",
1206 "fr" : "Asie",
1207 "ja" : "アジア",
1208 "pt-BR" : "Ásia",
1209 "ru" : "Азия",
1210 "zh-CN" : "亚洲"
1211 }
1212 },
1213 "country" : {
1214 "geoname_id" : 1835841,
1215 "iso_code" : "KR",
1216 "names" : {
1217 "de" : "Republik Korea",
1218 "en" : "South Korea",
1219 "es" : "Corea, República de",
1220 "fr" : "Corée du Sud",
1221 "ja" : "大韓民国",
1222 "pt-BR" : "Coréia, República da",
1223 "ru" : "Южная Корея",
1224 "zh-CN" : "韩国"
1225 }
1226 },
1227 "registered_country" : {
1228 "geoname_id" : 1835841,
1229 "iso_code" : "KR",
1230 "names" : {
1231 "de" : "Republik Korea",
1232 "en" : "South Korea",
1233 "es" : "Corea, República de",
1234 "fr" : "Corée du Sud",
1235 "ja" : "大韓民国",
1236 "pt-BR" : "Coréia, República da",
1237 "ru" : "Южная Корея",
1238 "zh-CN" : "韩国"
1239 }
1240 }
1241 }
1242 },
1243 {
1244 "2001:220::400:0/102" : {
1245 "continent" : {
1246 "code" : "AS",
1247 "geoname_id" : 6255147,
1248 "names" : {
1249 "de" : "Asien",
1250 "en" : "Asia",
1251 "es" : "Asia",
1252 "fr" : "Asie",
1253 "ja" : "アジア",
1254 "pt-BR" : "Ásia",
1255 "ru" : "Азия",
1256 "zh-CN" : "亚洲"
1257 }
1258 },
1259 "country" : {
1260 "geoname_id" : 1835841,
1261 "iso_code" : "KR",
1262 "names" : {
1263 "de" : "Republik Korea",
1264 "en" : "South Korea",
1265 "es" : "Corea, República de",
1266 "fr" : "Corée du Sud",
1267 "ja" : "大韓民国",
1268 "pt-BR" : "Coréia, República da",
1269 "ru" : "Южная Корея",
1270 "zh-CN" : "韩国"
1271 }
1272 },
1273 "registered_country" : {
1274 "geoname_id" : 1835841,
1275 "iso_code" : "KR",
1276 "names" : {
1277 "de" : "Republik Korea",
1278 "en" : "South Korea",
1279 "es" : "Corea, República de",
1280 "fr" : "Corée du Sud",
1281 "ja" : "大韓民国",
1282 "pt-BR" : "Coréia, República da",
1283 "ru" : "Южная Корея",
1284 "zh-CN" : "韩国"
1285 }
1286 }
1287 }
1288 },
1289 {
1290 "2001:220::800:0/101" : {
1291 "continent" : {
1292 "code" : "AS",
1293 "geoname_id" : 6255147,
1294 "names" : {
1295 "de" : "Asien",
1296 "en" : "Asia",
1297 "es" : "Asia",
1298 "fr" : "Asie",
1299 "ja" : "アジア",
1300 "pt-BR" : "Ásia",
1301 "ru" : "Азия",
1302 "zh-CN" : "亚洲"
1303 }
1304 },
1305 "country" : {
1306 "geoname_id" : 1835841,
1307 "iso_code" : "KR",
1308 "names" : {
1309 "de" : "Republik Korea",
1310 "en" : "South Korea",
1311 "es" : "Corea, República de",
1312 "fr" : "Corée du Sud",
1313 "ja" : "大韓民国",
1314 "pt-BR" : "Coréia, República da",
1315 "ru" : "Южная Корея",
1316 "zh-CN" : "韩国"
1317 }
1318 },
1319 "registered_country" : {
1320 "geoname_id" : 1835841,
1321 "iso_code" : "KR",
1322 "names" : {
1323 "de" : "Republik Korea",
1324 "en" : "South Korea",
1325 "es" : "Corea, República de",
1326 "fr" : "Corée du Sud",
1327 "ja" : "大韓民国",
1328 "pt-BR" : "Coréia, República da",
1329 "ru" : "Южная Корея",
1330 "zh-CN" : "韩国"
1331 }
1332 }
1333 }
1334 },
1335 {
1336 "2001:220::1000:0/100" : {
1337 "continent" : {
1338 "code" : "AS",
1339 "geoname_id" : 6255147,
1340 "names" : {
1341 "de" : "Asien",
1342 "en" : "Asia",
1343 "es" : "Asia",
1344 "fr" : "Asie",
1345 "ja" : "アジア",
1346 "pt-BR" : "Ásia",
1347 "ru" : "Азия",
1348 "zh-CN" : "亚洲"
1349 }
1350 },
1351 "country" : {
1352 "geoname_id" : 1835841,
1353 "iso_code" : "KR",
1354 "names" : {
1355 "de" : "Republik Korea",
1356 "en" : "South Korea",
1357 "es" : "Corea, República de",
1358 "fr" : "Corée du Sud",
1359 "ja" : "大韓民国",
1360 "pt-BR" : "Coréia, República da",
1361 "ru" : "Южная Корея",
1362 "zh-CN" : "韩国"
1363 }
1364 },
1365 "registered_country" : {
1366 "geoname_id" : 1835841,
1367 "iso_code" : "KR",
1368 "names" : {
1369 "de" : "Republik Korea",
1370 "en" : "South Korea",
1371 "es" : "Corea, República de",
1372 "fr" : "Corée du Sud",
1373 "ja" : "大韓民国",
1374 "pt-BR" : "Coréia, República da",
1375 "ru" : "Южная Корея",
1376 "zh-CN" : "韩国"
1377 }
1378 }
1379 }
1380 },
1381 {
1382 "2001:220::2000:0/99" : {
1383 "continent" : {
1384 "code" : "AS",
1385 "geoname_id" : 6255147,
1386 "names" : {
1387 "de" : "Asien",
1388 "en" : "Asia",
1389 "es" : "Asia",
1390 "fr" : "Asie",
1391 "ja" : "アジア",
1392 "pt-BR" : "Ásia",
1393 "ru" : "Азия",
1394 "zh-CN" : "亚洲"
1395 }
1396 },
1397 "country" : {
1398 "geoname_id" : 1835841,
1399 "iso_code" : "KR",
1400 "names" : {
1401 "de" : "Republik Korea",
1402 "en" : "South Korea",
1403 "es" : "Corea, República de",
1404 "fr" : "Corée du Sud",
1405 "ja" : "大韓民国",
1406 "pt-BR" : "Coréia, República da",
1407 "ru" : "Южная Корея",
1408 "zh-CN" : "韩国"
1409 }
1410 },
1411 "registered_country" : {
1412 "geoname_id" : 1835841,
1413 "iso_code" : "KR",
1414 "names" : {
1415 "de" : "Republik Korea",
1416 "en" : "South Korea",
1417 "es" : "Corea, República de",
1418 "fr" : "Corée du Sud",
1419 "ja" : "大韓民国",
1420 "pt-BR" : "Coréia, República da",
1421 "ru" : "Южная Корея",
1422 "zh-CN" : "韩国"
1423 }
1424 }
1425 }
1426 },
1427 {
1428 "2001:220::4000:0/98" : {
1429 "continent" : {
1430 "code" : "AS",
1431 "geoname_id" : 6255147,
1432 "names" : {
1433 "de" : "Asien",
1434 "en" : "Asia",
1435 "es" : "Asia",
1436 "fr" : "Asie",
1437 "ja" : "アジア",
1438 "pt-BR" : "Ásia",
1439 "ru" : "Азия",
1440 "zh-CN" : "亚洲"
1441 }
1442 },
1443 "country" : {
1444 "geoname_id" : 1835841,
1445 "iso_code" : "KR",
1446 "names" : {
1447 "de" : "Republik Korea",
1448 "en" : "South Korea",
1449 "es" : "Corea, República de",
1450 "fr" : "Corée du Sud",
1451 "ja" : "大韓民国",
1452 "pt-BR" : "Coréia, República da",
1453 "ru" : "Южная Корея",
1454 "zh-CN" : "韩国"
1455 }
1456 },
1457 "registered_country" : {
1458 "geoname_id" : 1835841,
1459 "iso_code" : "KR",
1460 "names" : {
1461 "de" : "Republik Korea",
1462 "en" : "South Korea",
1463 "es" : "Corea, República de",
1464 "fr" : "Corée du Sud",
1465 "ja" : "大韓民国",
1466 "pt-BR" : "Coréia, República da",
1467 "ru" : "Южная Корея",
1468 "zh-CN" : "韩国"
1469 }
1470 }
1471 }
1472 },
1473 {
1474 "2001:220::8000:0/97" : {
1475 "continent" : {
1476 "code" : "AS",
1477 "geoname_id" : 6255147,
1478 "names" : {
1479 "de" : "Asien",
1480 "en" : "Asia",
1481 "es" : "Asia",
1482 "fr" : "Asie",
1483 "ja" : "アジア",
1484 "pt-BR" : "Ásia",
1485 "ru" : "Азия",
1486 "zh-CN" : "亚洲"
1487 }
1488 },
1489 "country" : {
1490 "geoname_id" : 1835841,
1491 "iso_code" : "KR",
1492 "names" : {
1493 "de" : "Republik Korea",
1494 "en" : "South Korea",
1495 "es" : "Corea, República de",
1496 "fr" : "Corée du Sud",
1497 "ja" : "大韓民国",
1498 "pt-BR" : "Coréia, República da",
1499 "ru" : "Южная Корея",
1500 "zh-CN" : "韩国"
1501 }
1502 },
1503 "registered_country" : {
1504 "geoname_id" : 1835841,
1505 "iso_code" : "KR",
1506 "names" : {
1507 "de" : "Republik Korea",
1508 "en" : "South Korea",
1509 "es" : "Corea, República de",
1510 "fr" : "Corée du Sud",
1511 "ja" : "大韓民国",
1512 "pt-BR" : "Coréia, República da",
1513 "ru" : "Южная Корея",
1514 "zh-CN" : "韩国"
1515 }
1516 }
1517 }
1518 },
1519 {
1520 "2001:220::1:0:0/96" : {
1521 "continent" : {
1522 "code" : "AS",
1523 "geoname_id" : 6255147,
1524 "names" : {
1525 "de" : "Asien",
1526 "en" : "Asia",
1527 "es" : "Asia",
1528 "fr" : "Asie",
1529 "ja" : "アジア",
1530 "pt-BR" : "Ásia",
1531 "ru" : "Азия",
1532 "zh-CN" : "亚洲"
1533 }
1534 },
1535 "country" : {
1536 "geoname_id" : 1835841,
1537 "iso_code" : "KR",
1538 "names" : {
1539 "de" : "Republik Korea",
1540 "en" : "South Korea",
1541 "es" : "Corea, República de",
1542 "fr" : "Corée du Sud",
1543 "ja" : "大韓民国",
1544 "pt-BR" : "Coréia, República da",
1545 "ru" : "Южная Корея",
1546 "zh-CN" : "韩国"
1547 }
1548 },
1549 "registered_country" : {
1550 "geoname_id" : 1835841,
1551 "iso_code" : "KR",
1552 "names" : {
1553 "de" : "Republik Korea",
1554 "en" : "South Korea",
1555 "es" : "Corea, República de",
1556 "fr" : "Corée du Sud",
1557 "ja" : "大韓民国",
1558 "pt-BR" : "Coréia, República da",
1559 "ru" : "Южная Корея",
1560 "zh-CN" : "韩国"
1561 }
1562 }
1563 }
1564 },
1565 {
1566 "2001:220::2:0:0/95" : {
1567 "continent" : {
1568 "code" : "AS",
1569 "geoname_id" : 6255147,
1570 "names" : {
1571 "de" : "Asien",
1572 "en" : "Asia",
1573 "es" : "Asia",
1574 "fr" : "Asie",
1575 "ja" : "アジア",
1576 "pt-BR" : "Ásia",
1577 "ru" : "Азия",
1578 "zh-CN" : "亚洲"
1579 }
1580 },
1581 "country" : {
1582 "geoname_id" : 1835841,
1583 "iso_code" : "KR",
1584 "names" : {
1585 "de" : "Republik Korea",
1586 "en" : "South Korea",
1587 "es" : "Corea, República de",
1588 "fr" : "Corée du Sud",
1589 "ja" : "大韓民国",
1590 "pt-BR" : "Coréia, República da",
1591 "ru" : "Южная Корея",
1592 "zh-CN" : "韩国"
1593 }
1594 },
1595 "registered_country" : {
1596 "geoname_id" : 1835841,
1597 "iso_code" : "KR",
1598 "names" : {
1599 "de" : "Republik Korea",
1600 "en" : "South Korea",
1601 "es" : "Corea, República de",
1602 "fr" : "Corée du Sud",
1603 "ja" : "大韓民国",
1604 "pt-BR" : "Coréia, República da",
1605 "ru" : "Южная Корея",
1606 "zh-CN" : "韩国"
1607 }
1608 }
1609 }
1610 },
1611 {
1612 "2001:220::4:0:0/94" : {
1613 "continent" : {
1614 "code" : "AS",
1615 "geoname_id" : 6255147,
1616 "names" : {
1617 "de" : "Asien",
1618 "en" : "Asia",
1619 "es" : "Asia",
1620 "fr" : "Asie",
1621 "ja" : "アジア",
1622 "pt-BR" : "Ásia",
1623 "ru" : "Азия",
1624 "zh-CN" : "亚洲"
1625 }
1626 },
1627 "country" : {
1628 "geoname_id" : 1835841,
1629 "iso_code" : "KR",
1630 "names" : {
1631 "de" : "Republik Korea",
1632 "en" : "South Korea",
1633 "es" : "Corea, República de",
1634 "fr" : "Corée du Sud",
1635 "ja" : "大韓民国",
1636 "pt-BR" : "Coréia, República da",
1637 "ru" : "Южная Корея",
1638 "zh-CN" : "韩国"
1639 }
1640 },
1641 "registered_country" : {
1642 "geoname_id" : 1835841,
1643 "iso_code" : "KR",
1644 "names" : {
1645 "de" : "Republik Korea",
1646 "en" : "South Korea",
1647 "es" : "Corea, República de",
1648 "fr" : "Corée du Sud",
1649 "ja" : "大韓民国",
1650 "pt-BR" : "Coréia, República da",
1651 "ru" : "Южная Корея",
1652 "zh-CN" : "韩国"
1653 }
1654 }
1655 }
1656 },
1657 {
1658 "2001:220::8:0:0/93" : {
1659 "continent" : {
1660 "code" : "AS",
1661 "geoname_id" : 6255147,
1662 "names" : {
1663 "de" : "Asien",
1664 "en" : "Asia",
1665 "es" : "Asia",
1666 "fr" : "Asie",
1667 "ja" : "アジア",
1668 "pt-BR" : "Ásia",
1669 "ru" : "Азия",
1670 "zh-CN" : "亚洲"
1671 }
1672 },
1673 "country" : {
1674 "geoname_id" : 1835841,
1675 "iso_code" : "KR",
1676 "names" : {
1677 "de" : "Republik Korea",
1678 "en" : "South Korea",
1679 "es" : "Corea, República de",
1680 "fr" : "Corée du Sud",
1681 "ja" : "大韓民国",
1682 "pt-BR" : "Coréia, República da",
1683 "ru" : "Южная Корея",
1684 "zh-CN" : "韩国"
1685 }
1686 },
1687 "registered_country" : {
1688 "geoname_id" : 1835841,
1689 "iso_code" : "KR",
1690 "names" : {
1691 "de" : "Republik Korea",
1692 "en" : "South Korea",
1693 "es" : "Corea, República de",
1694 "fr" : "Corée du Sud",
1695 "ja" : "大韓民国",
1696 "pt-BR" : "Coréia, República da",
1697 "ru" : "Южная Корея",
1698 "zh-CN" : "韩国"
1699 }
1700 }
1701 }
1702 },
1703 {
1704 "2001:220::10:0:0/92" : {
1705 "continent" : {
1706 "code" : "AS",
1707 "geoname_id" : 6255147,
1708 "names" : {
1709 "de" : "Asien",
1710 "en" : "Asia",
1711 "es" : "Asia",
1712 "fr" : "Asie",
1713 "ja" : "アジア",
1714 "pt-BR" : "Ásia",
1715 "ru" : "Азия",
1716 "zh-CN" : "亚洲"
1717 }
1718 },
1719 "country" : {
1720 "geoname_id" : 1835841,
1721 "iso_code" : "KR",
1722 "names" : {
1723 "de" : "Republik Korea",
1724 "en" : "South Korea",
1725 "es" : "Corea, República de",
1726 "fr" : "Corée du Sud",
1727 "ja" : "大韓民国",
1728 "pt-BR" : "Coréia, República da",
1729 "ru" : "Южная Корея",
1730 "zh-CN" : "韩国"
1731 }
1732 },
1733 "registered_country" : {
1734 "geoname_id" : 1835841,
1735 "iso_code" : "KR",
1736 "names" : {
1737 "de" : "Republik Korea",
1738 "en" : "South Korea",
1739 "es" : "Corea, República de",
1740 "fr" : "Corée du Sud",
1741 "ja" : "大韓民国",
1742 "pt-BR" : "Coréia, República da",
1743 "ru" : "Южная Корея",
1744 "zh-CN" : "韩国"
1745 }
1746 }
1747 }
1748 },
1749 {
1750 "2001:220::20:0:0/91" : {
1751 "continent" : {
1752 "code" : "AS",
1753 "geoname_id" : 6255147,
1754 "names" : {
1755 "de" : "Asien",
1756 "en" : "Asia",
1757 "es" : "Asia",
1758 "fr" : "Asie",
1759 "ja" : "アジア",
1760 "pt-BR" : "Ásia",
1761 "ru" : "Азия",
1762 "zh-CN" : "亚洲"
1763 }
1764 },
1765 "country" : {
1766 "geoname_id" : 1835841,
1767 "iso_code" : "KR",
1768 "names" : {
1769 "de" : "Republik Korea",
1770 "en" : "South Korea",
1771 "es" : "Corea, República de",
1772 "fr" : "Corée du Sud",
1773 "ja" : "大韓民国",
1774 "pt-BR" : "Coréia, República da",
1775 "ru" : "Южная Корея",
1776 "zh-CN" : "韩国"
1777 }
1778 },
1779 "registered_country" : {
1780 "geoname_id" : 1835841,
1781 "iso_code" : "KR",
1782 "names" : {
1783 "de" : "Republik Korea",
1784 "en" : "South Korea",
1785 "es" : "Corea, República de",
1786 "fr" : "Corée du Sud",
1787 "ja" : "大韓民国",
1788 "pt-BR" : "Coréia, República da",
1789 "ru" : "Южная Корея",
1790 "zh-CN" : "韩国"
1791 }
1792 }
1793 }
1794 },
1795 {
1796 "2001:220::40:0:0/90" : {
1797 "continent" : {
1798 "code" : "AS",
1799 "geoname_id" : 6255147,
1800 "names" : {
1801 "de" : "Asien",
1802 "en" : "Asia",
1803 "es" : "Asia",
1804 "fr" : "Asie",
1805 "ja" : "アジア",
1806 "pt-BR" : "Ásia",
1807 "ru" : "Азия",
1808 "zh-CN" : "亚洲"
1809 }
1810 },
1811 "country" : {
1812 "geoname_id" : 1835841,
1813 "iso_code" : "KR",
1814 "names" : {
1815 "de" : "Republik Korea",
1816 "en" : "South Korea",
1817 "es" : "Corea, República de",
1818 "fr" : "Corée du Sud",
1819 "ja" : "大韓民国",
1820 "pt-BR" : "Coréia, República da",
1821 "ru" : "Южная Корея",
1822 "zh-CN" : "韩国"
1823 }
1824 },
1825 "registered_country" : {
1826 "geoname_id" : 1835841,
1827 "iso_code" : "KR",
1828 "names" : {
1829 "de" : "Republik Korea",
1830 "en" : "South Korea",
1831 "es" : "Corea, República de",
1832 "fr" : "Corée du Sud",
1833 "ja" : "大韓民国",
1834 "pt-BR" : "Coréia, República da",
1835 "ru" : "Южная Корея",
1836 "zh-CN" : "韩国"
1837 }
1838 }
1839 }
1840 },
1841 {
1842 "2001:220::80:0:0/89" : {
1843 "continent" : {
1844 "code" : "AS",
1845 "geoname_id" : 6255147,
1846 "names" : {
1847 "de" : "Asien",
1848 "en" : "Asia",
1849 "es" : "Asia",
1850 "fr" : "Asie",
1851 "ja" : "アジア",
1852 "pt-BR" : "Ásia",
1853 "ru" : "Азия",
1854 "zh-CN" : "亚洲"
1855 }
1856 },
1857 "country" : {
1858 "geoname_id" : 1835841,
1859 "iso_code" : "KR",
1860 "names" : {
1861 "de" : "Republik Korea",
1862 "en" : "South Korea",
1863 "es" : "Corea, República de",
1864 "fr" : "Corée du Sud",
1865 "ja" : "大韓民国",
1866 "pt-BR" : "Coréia, República da",
1867 "ru" : "Южная Корея",
1868 "zh-CN" : "韩国"
1869 }
1870 },
1871 "registered_country" : {
1872 "geoname_id" : 1835841,
1873 "iso_code" : "KR",
1874 "names" : {
1875 "de" : "Republik Korea",
1876 "en" : "South Korea",
1877 "es" : "Corea, República de",
1878 "fr" : "Corée du Sud",
1879 "ja" : "大韓民国",
1880 "pt-BR" : "Coréia, República da",
1881 "ru" : "Южная Корея",
1882 "zh-CN" : "韩国"
1883 }
1884 }
1885 }
1886 },
1887 {
1888 "2001:220::100:0:0/88" : {
1889 "continent" : {
1890 "code" : "AS",
1891 "geoname_id" : 6255147,
1892 "names" : {
1893 "de" : "Asien",
1894 "en" : "Asia",
1895 "es" : "Asia",
1896 "fr" : "Asie",
1897 "ja" : "アジア",
1898 "pt-BR" : "Ásia",
1899 "ru" : "Азия",
1900 "zh-CN" : "亚洲"
1901 }
1902 },
1903 "country" : {
1904 "geoname_id" : 1835841,
1905 "iso_code" : "KR",
1906 "names" : {
1907 "de" : "Republik Korea",
1908 "en" : "South Korea",
1909 "es" : "Corea, República de",
1910 "fr" : "Corée du Sud",
1911 "ja" : "大韓民国",
1912 "pt-BR" : "Coréia, República da",
1913 "ru" : "Южная Корея",
1914 "zh-CN" : "韩国"
1915 }
1916 },
1917 "registered_country" : {
1918 "geoname_id" : 1835841,
1919 "iso_code" : "KR",
1920 "names" : {
1921 "de" : "Republik Korea",
1922 "en" : "South Korea",
1923 "es" : "Corea, República de",
1924 "fr" : "Corée du Sud",
1925 "ja" : "大韓民国",
1926 "pt-BR" : "Coréia, República da",
1927 "ru" : "Южная Корея",
1928 "zh-CN" : "韩国"
1929 }
1930 }
1931 }
1932 },
1933 {
1934 "2001:220::200:0:0/87" : {
1935 "continent" : {
1936 "code" : "AS",
1937 "geoname_id" : 6255147,
1938 "names" : {
1939 "de" : "Asien",
1940 "en" : "Asia",
1941 "es" : "Asia",
1942 "fr" : "Asie",
1943 "ja" : "アジア",
1944 "pt-BR" : "Ásia",
1945 "ru" : "Азия",
1946 "zh-CN" : "亚洲"
1947 }
1948 },
1949 "country" : {
1950 "geoname_id" : 1835841,
1951 "iso_code" : "KR",
1952 "names" : {
1953 "de" : "Republik Korea",
1954 "en" : "South Korea",
1955 "es" : "Corea, República de",
1956 "fr" : "Corée du Sud",
1957 "ja" : "大韓民国",
1958 "pt-BR" : "Coréia, República da",
1959 "ru" : "Южная Корея",
1960 "zh-CN" : "韩国"
1961 }
1962 },
1963 "registered_country" : {
1964 "geoname_id" : 1835841,
1965 "iso_code" : "KR",
1966 "names" : {
1967 "de" : "Republik Korea",
1968 "en" : "South Korea",
1969 "es" : "Corea, República de",
1970 "fr" : "Corée du Sud",
1971 "ja" : "大韓民国",
1972 "pt-BR" : "Coréia, República da",
1973 "ru" : "Южная Корея",
1974 "zh-CN" : "韩国"
1975 }
1976 }
1977 }
1978 },
1979 {
1980 "2001:220::400:0:0/86" : {
1981 "continent" : {
1982 "code" : "AS",
1983 "geoname_id" : 6255147,
1984 "names" : {
1985 "de" : "Asien",
1986 "en" : "Asia",
1987 "es" : "Asia",
1988 "fr" : "Asie",
1989 "ja" : "アジア",
1990 "pt-BR" : "Ásia",
1991 "ru" : "Азия",
1992 "zh-CN" : "亚洲"
1993 }
1994 },
1995 "country" : {
1996 "geoname_id" : 1835841,
1997 "iso_code" : "KR",
1998 "names" : {
1999 "de" : "Republik Korea",
2000 "en" : "South Korea",
2001 "es" : "Corea, República de",
2002 "fr" : "Corée du Sud",
2003 "ja" : "大韓民国",
2004 "pt-BR" : "Coréia, República da",
2005 "ru" : "Южная Корея",
2006 "zh-CN" : "韩国"
2007 }
2008 },
2009 "registered_country" : {
2010 "geoname_id" : 1835841,
2011 "iso_code" : "KR",
2012 "names" : {
2013 "de" : "Republik Korea",
2014 "en" : "South Korea",
2015 "es" : "Corea, República de",
2016 "fr" : "Corée du Sud",
2017 "ja" : "大韓民国",
2018 "pt-BR" : "Coréia, República da",
2019 "ru" : "Южная Корея",
2020 "zh-CN" : "韩国"
2021 }
2022 }
2023 }
2024 },
2025 {
2026 "2001:220::800:0:0/85" : {
2027 "continent" : {
2028 "code" : "AS",
2029 "geoname_id" : 6255147,
2030 "names" : {
2031 "de" : "Asien",
2032 "en" : "Asia",
2033 "es" : "Asia",
2034 "fr" : "Asie",
2035 "ja" : "アジア",
2036 "pt-BR" : "Ásia",
2037 "ru" : "Азия",
2038 "zh-CN" : "亚洲"
2039 }
2040 },
2041 "country" : {
2042 "geoname_id" : 1835841,
2043 "iso_code" : "KR",
2044 "names" : {
2045 "de" : "Republik Korea",
2046 "en" : "South Korea",
2047 "es" : "Corea, República de",
2048 "fr" : "Corée du Sud",
2049 "ja" : "大韓民国",
2050 "pt-BR" : "Coréia, República da",
2051 "ru" : "Южная Корея",
2052 "zh-CN" : "韩国"
2053 }
2054 },
2055 "registered_country" : {
2056 "geoname_id" : 1835841,
2057 "iso_code" : "KR",
2058 "names" : {
2059 "de" : "Republik Korea",
2060 "en" : "South Korea",
2061 "es" : "Corea, República de",
2062 "fr" : "Corée du Sud",
2063 "ja" : "大韓民国",
2064 "pt-BR" : "Coréia, República da",
2065 "ru" : "Южная Корея",
2066 "zh-CN" : "韩国"
2067 }
2068 }
2069 }
2070 },
2071 {
2072 "2001:220::1000:0:0/84" : {
2073 "continent" : {
2074 "code" : "AS",
2075 "geoname_id" : 6255147,
2076 "names" : {
2077 "de" : "Asien",
2078 "en" : "Asia",
2079 "es" : "Asia",
2080 "fr" : "Asie",
2081 "ja" : "アジア",
2082 "pt-BR" : "Ásia",
2083 "ru" : "Азия",
2084 "zh-CN" : "亚洲"
2085 }
2086 },
2087 "country" : {
2088 "geoname_id" : 1835841,
2089 "iso_code" : "KR",
2090 "names" : {
2091 "de" : "Republik Korea",
2092 "en" : "South Korea",
2093 "es" : "Corea, República de",
2094 "fr" : "Corée du Sud",
2095 "ja" : "大韓民国",
2096 "pt-BR" : "Coréia, República da",
2097 "ru" : "Южная Корея",
2098 "zh-CN" : "韩国"
2099 }
2100 },
2101 "registered_country" : {
2102 "geoname_id" : 1835841,
2103 "iso_code" : "KR",
2104 "names" : {
2105 "de" : "Republik Korea",
2106 "en" : "South Korea",
2107 "es" : "Corea, República de",
2108 "fr" : "Corée du Sud",
2109 "ja" : "大韓民国",
2110 "pt-BR" : "Coréia, República da",
2111 "ru" : "Южная Корея",
2112 "zh-CN" : "韩国"
2113 }
2114 }
2115 }
2116 },
2117 {
2118 "2001:220::2000:0:0/83" : {
2119 "continent" : {
2120 "code" : "AS",
2121 "geoname_id" : 6255147,
2122 "names" : {
2123 "de" : "Asien",
2124 "en" : "Asia",
2125 "es" : "Asia",
2126 "fr" : "Asie",
2127 "ja" : "アジア",
2128 "pt-BR" : "Ásia",
2129 "ru" : "Азия",
2130 "zh-CN" : "亚洲"
2131 }
2132 },
2133 "country" : {
2134 "geoname_id" : 1835841,
2135 "iso_code" : "KR",
2136 "names" : {
2137 "de" : "Republik Korea",
2138 "en" : "South Korea",
2139 "es" : "Corea, República de",
2140 "fr" : "Corée du Sud",
2141 "ja" : "大韓民国",
2142 "pt-BR" : "Coréia, República da",
2143 "ru" : "Южная Корея",
2144 "zh-CN" : "韩国"
2145 }
2146 },
2147 "registered_country" : {
2148 "geoname_id" : 1835841,
2149 "iso_code" : "KR",
2150 "names" : {
2151 "de" : "Republik Korea",
2152 "en" : "South Korea",
2153 "es" : "Corea, República de",
2154 "fr" : "Corée du Sud",
2155 "ja" : "大韓民国",
2156 "pt-BR" : "Coréia, República da",
2157 "ru" : "Южная Корея",
2158 "zh-CN" : "韩国"
2159 }
2160 }
2161 }
2162 },
2163 {
2164 "2001:220::4000:0:0/82" : {
2165 "continent" : {
2166 "code" : "AS",
2167 "geoname_id" : 6255147,
2168 "names" : {
2169 "de" : "Asien",
2170 "en" : "Asia",
2171 "es" : "Asia",
2172 "fr" : "Asie",
2173 "ja" : "アジア",
2174 "pt-BR" : "Ásia",
2175 "ru" : "Азия",
2176 "zh-CN" : "亚洲"
2177 }
2178 },
2179 "country" : {
2180 "geoname_id" : 1835841,
2181 "iso_code" : "KR",
2182 "names" : {
2183 "de" : "Republik Korea",
2184 "en" : "South Korea",
2185 "es" : "Corea, República de",
2186 "fr" : "Corée du Sud",
2187 "ja" : "大韓民国",
2188 "pt-BR" : "Coréia, República da",
2189 "ru" : "Южная Корея",
2190 "zh-CN" : "韩国"
2191 }
2192 },
2193 "registered_country" : {
2194 "geoname_id" : 1835841,
2195 "iso_code" : "KR",
2196 "names" : {
2197 "de" : "Republik Korea",
2198 "en" : "South Korea",
2199 "es" : "Corea, República de",
2200 "fr" : "Corée du Sud",
2201 "ja" : "大韓民国",
2202 "pt-BR" : "Coréia, República da",
2203 "ru" : "Южная Корея",
2204 "zh-CN" : "韩国"
2205 }
2206 }
2207 }
2208 },
2209 {
2210 "2001:220::8000:0:0/81" : {
2211 "continent" : {
2212 "code" : "AS",
2213 "geoname_id" : 6255147,
2214 "names" : {
2215 "de" : "Asien",
2216 "en" : "Asia",
2217 "es" : "Asia",
2218 "fr" : "Asie",
2219 "ja" : "アジア",
2220 "pt-BR" : "Ásia",
2221 "ru" : "Азия",
2222 "zh-CN" : "亚洲"
2223 }
2224 },
2225 "country" : {
2226 "geoname_id" : 1835841,
2227 "iso_code" : "KR",
2228 "names" : {
2229 "de" : "Republik Korea",
2230 "en" : "South Korea",
2231 "es" : "Corea, República de",
2232 "fr" : "Corée du Sud",
2233 "ja" : "大韓民国",
2234 "pt-BR" : "Coréia, República da",
2235 "ru" : "Южная Корея",
2236 "zh-CN" : "韩国"
2237 }
2238 },
2239 "registered_country" : {
2240 "geoname_id" : 1835841,
2241 "iso_code" : "KR",
2242 "names" : {
2243 "de" : "Republik Korea",
2244 "en" : "South Korea",
2245 "es" : "Corea, República de",
2246 "fr" : "Corée du Sud",
2247 "ja" : "大韓民国",
2248 "pt-BR" : "Coréia, República da",
2249 "ru" : "Южная Корея",
2250 "zh-CN" : "韩国"
2251 }
2252 }
2253 }
2254 },
2255 {
2256 "2001:220:0:0:1::/80" : {
2257 "continent" : {
2258 "code" : "AS",
2259 "geoname_id" : 6255147,
2260 "names" : {
2261 "de" : "Asien",
2262 "en" : "Asia",
2263 "es" : "Asia",
2264 "fr" : "Asie",
2265 "ja" : "アジア",
2266 "pt-BR" : "Ásia",
2267 "ru" : "Азия",
2268 "zh-CN" : "亚洲"
2269 }
2270 },
2271 "country" : {
2272 "geoname_id" : 1835841,
2273 "iso_code" : "KR",
2274 "names" : {
2275 "de" : "Republik Korea",
2276 "en" : "South Korea",
2277 "es" : "Corea, República de",
2278 "fr" : "Corée du Sud",
2279 "ja" : "大韓民国",
2280 "pt-BR" : "Coréia, República da",
2281 "ru" : "Южная Корея",
2282 "zh-CN" : "韩国"
2283 }
2284 },
2285 "registered_country" : {
2286 "geoname_id" : 1835841,
2287 "iso_code" : "KR",
2288 "names" : {
2289 "de" : "Republik Korea",
2290 "en" : "South Korea",
2291 "es" : "Corea, República de",
2292 "fr" : "Corée du Sud",
2293 "ja" : "大韓民国",
2294 "pt-BR" : "Coréia, República da",
2295 "ru" : "Южная Корея",
2296 "zh-CN" : "韩国"
2297 }
2298 }
2299 }
2300 },
2301 {
2302 "2001:220:0:0:2::/79" : {
2303 "continent" : {
2304 "code" : "AS",
2305 "geoname_id" : 6255147,
2306 "names" : {
2307 "de" : "Asien",
2308 "en" : "Asia",
2309 "es" : "Asia",
2310 "fr" : "Asie",
2311 "ja" : "アジア",
2312 "pt-BR" : "Ásia",
2313 "ru" : "Азия",
2314 "zh-CN" : "亚洲"
2315 }
2316 },
2317 "country" : {
2318 "geoname_id" : 1835841,
2319 "iso_code" : "KR",
2320 "names" : {
2321 "de" : "Republik Korea",
2322 "en" : "South Korea",
2323 "es" : "Corea, República de",
2324 "fr" : "Corée du Sud",
2325 "ja" : "大韓民国",
2326 "pt-BR" : "Coréia, República da",
2327 "ru" : "Южная Корея",
2328 "zh-CN" : "韩国"
2329 }
2330 },
2331 "registered_country" : {
2332 "geoname_id" : 1835841,
2333 "iso_code" : "KR",
2334 "names" : {
2335 "de" : "Republik Korea",
2336 "en" : "South Korea",
2337 "es" : "Corea, República de",
2338 "fr" : "Corée du Sud",
2339 "ja" : "大韓民国",
2340 "pt-BR" : "Coréia, República da",
2341 "ru" : "Южная Корея",
2342 "zh-CN" : "韩国"
2343 }
2344 }
2345 }
2346 },
2347 {
2348 "2001:220:0:0:4::/78" : {
2349 "continent" : {
2350 "code" : "AS",
2351 "geoname_id" : 6255147,
2352 "names" : {
2353 "de" : "Asien",
2354 "en" : "Asia",
2355 "es" : "Asia",
2356 "fr" : "Asie",
2357 "ja" : "アジア",
2358 "pt-BR" : "Ásia",
2359 "ru" : "Азия",
2360 "zh-CN" : "亚洲"
2361 }
2362 },
2363 "country" : {
2364 "geoname_id" : 1835841,
2365 "iso_code" : "KR",
2366 "names" : {
2367 "de" : "Republik Korea",
2368 "en" : "South Korea",
2369 "es" : "Corea, República de",
2370 "fr" : "Corée du Sud",
2371 "ja" : "大韓民国",
2372 "pt-BR" : "Coréia, República da",
2373 "ru" : "Южная Корея",
2374 "zh-CN" : "韩国"
2375 }
2376 },
2377 "registered_country" : {
2378 "geoname_id" : 1835841,
2379 "iso_code" : "KR",
2380 "names" : {
2381 "de" : "Republik Korea",
2382 "en" : "South Korea",
2383 "es" : "Corea, República de",
2384 "fr" : "Corée du Sud",
2385 "ja" : "大韓民国",
2386 "pt-BR" : "Coréia, República da",
2387 "ru" : "Южная Корея",
2388 "zh-CN" : "韩国"
2389 }
2390 }
2391 }
2392 },
2393 {
2394 "2001:220:0:0:8::/77" : {
2395 "continent" : {
2396 "code" : "AS",
2397 "geoname_id" : 6255147,
2398 "names" : {
2399 "de" : "Asien",
2400 "en" : "Asia",
2401 "es" : "Asia",
2402 "fr" : "Asie",
2403 "ja" : "アジア",
2404 "pt-BR" : "Ásia",
2405 "ru" : "Азия",
2406 "zh-CN" : "亚洲"
2407 }
2408 },
2409 "country" : {
2410 "geoname_id" : 1835841,
2411 "iso_code" : "KR",
2412 "names" : {
2413 "de" : "Republik Korea",
2414 "en" : "South Korea",
2415 "es" : "Corea, República de",
2416 "fr" : "Corée du Sud",
2417 "ja" : "大韓民国",
2418 "pt-BR" : "Coréia, República da",
2419 "ru" : "Южная Корея",
2420 "zh-CN" : "韩国"
2421 }
2422 },
2423 "registered_country" : {
2424 "geoname_id" : 1835841,
2425 "iso_code" : "KR",
2426 "names" : {
2427 "de" : "Republik Korea",
2428 "en" : "South Korea",
2429 "es" : "Corea, República de",
2430 "fr" : "Corée du Sud",
2431 "ja" : "大韓民国",
2432 "pt-BR" : "Coréia, República da",
2433 "ru" : "Южная Корея",
2434 "zh-CN" : "韩国"
2435 }
2436 }
2437 }
2438 },
2439 {
2440 "2001:220:0:0:10::/76" : {
2441 "continent" : {
2442 "code" : "AS",
2443 "geoname_id" : 6255147,
2444 "names" : {
2445 "de" : "Asien",
2446 "en" : "Asia",
2447 "es" : "Asia",
2448 "fr" : "Asie",
2449 "ja" : "アジア",
2450 "pt-BR" : "Ásia",
2451 "ru" : "Азия",
2452 "zh-CN" : "亚洲"
2453 }
2454 },
2455 "country" : {
2456 "geoname_id" : 1835841,
2457 "iso_code" : "KR",
2458 "names" : {
2459 "de" : "Republik Korea",
2460 "en" : "South Korea",
2461 "es" : "Corea, República de",
2462 "fr" : "Corée du Sud",
2463 "ja" : "大韓民国",
2464 "pt-BR" : "Coréia, República da",
2465 "ru" : "Южная Корея",
2466 "zh-CN" : "韩国"
2467 }
2468 },
2469 "registered_country" : {
2470 "geoname_id" : 1835841,
2471 "iso_code" : "KR",
2472 "names" : {
2473 "de" : "Republik Korea",
2474 "en" : "South Korea",
2475 "es" : "Corea, República de",
2476 "fr" : "Corée du Sud",
2477 "ja" : "大韓民国",
2478 "pt-BR" : "Coréia, República da",
2479 "ru" : "Южная Корея",
2480 "zh-CN" : "韩国"
2481 }
2482 }
2483 }
2484 },
2485 {
2486 "2001:220:0:0:20::/75" : {
2487 "continent" : {
2488 "code" : "AS",
2489 "geoname_id" : 6255147,
2490 "names" : {
2491 "de" : "Asien",
2492 "en" : "Asia",
2493 "es" : "Asia",
2494 "fr" : "Asie",
2495 "ja" : "アジア",
2496 "pt-BR" : "Ásia",
2497 "ru" : "Азия",
2498 "zh-CN" : "亚洲"
2499 }
2500 },
2501 "country" : {
2502 "geoname_id" : 1835841,
2503 "iso_code" : "KR",
2504 "names" : {
2505 "de" : "Republik Korea",
2506 "en" : "South Korea",
2507 "es" : "Corea, República de",
2508 "fr" : "Corée du Sud",
2509 "ja" : "大韓民国",
2510 "pt-BR" : "Coréia, República da",
2511 "ru" : "Южная Корея",
2512 "zh-CN" : "韩国"
2513 }
2514 },
2515 "registered_country" : {
2516 "geoname_id" : 1835841,
2517 "iso_code" : "KR",
2518 "names" : {
2519 "de" : "Republik Korea",
2520 "en" : "South Korea",
2521 "es" : "Corea, República de",
2522 "fr" : "Corée du Sud",
2523 "ja" : "大韓民国",
2524 "pt-BR" : "Coréia, República da",
2525 "ru" : "Южная Корея",
2526 "zh-CN" : "韩国"
2527 }
2528 }
2529 }
2530 },
2531 {
2532 "2001:220:0:0:40::/74" : {
2533 "continent" : {
2534 "code" : "AS",
2535 "geoname_id" : 6255147,
2536 "names" : {
2537 "de" : "Asien",
2538 "en" : "Asia",
2539 "es" : "Asia",
2540 "fr" : "Asie",
2541 "ja" : "アジア",
2542 "pt-BR" : "Ásia",
2543 "ru" : "Азия",
2544 "zh-CN" : "亚洲"
2545 }
2546 },
2547 "country" : {
2548 "geoname_id" : 1835841,
2549 "iso_code" : "KR",
2550 "names" : {
2551 "de" : "Republik Korea",
2552 "en" : "South Korea",
2553 "es" : "Corea, República de",
2554 "fr" : "Corée du Sud",
2555 "ja" : "大韓民国",
2556 "pt-BR" : "Coréia, República da",
2557 "ru" : "Южная Корея",
2558 "zh-CN" : "韩国"
2559 }
2560 },
2561 "registered_country" : {
2562 "geoname_id" : 1835841,
2563 "iso_code" : "KR",
2564 "names" : {
2565 "de" : "Republik Korea",
2566 "en" : "South Korea",
2567 "es" : "Corea, República de",
2568 "fr" : "Corée du Sud",
2569 "ja" : "大韓民国",
2570 "pt-BR" : "Coréia, República da",
2571 "ru" : "Южная Корея",
2572 "zh-CN" : "韩国"
2573 }
2574 }
2575 }
2576 },
2577 {
2578 "2001:220:0:0:80::/73" : {
2579 "continent" : {
2580 "code" : "AS",
2581 "geoname_id" : 6255147,
2582 "names" : {
2583 "de" : "Asien",
2584 "en" : "Asia",
2585 "es" : "Asia",
2586 "fr" : "Asie",
2587 "ja" : "アジア",
2588 "pt-BR" : "Ásia",
2589 "ru" : "Азия",
2590 "zh-CN" : "亚洲"
2591 }
2592 },
2593 "country" : {
2594 "geoname_id" : 1835841,
2595 "iso_code" : "KR",
2596 "names" : {
2597 "de" : "Republik Korea",
2598 "en" : "South Korea",
2599 "es" : "Corea, República de",
2600 "fr" : "Corée du Sud",
2601 "ja" : "大韓民国",
2602 "pt-BR" : "Coréia, República da",
2603 "ru" : "Южная Корея",
2604 "zh-CN" : "韩国"
2605 }
2606 },
2607 "registered_country" : {
2608 "geoname_id" : 1835841,
2609 "iso_code" : "KR",
2610 "names" : {
2611 "de" : "Republik Korea",
2612 "en" : "South Korea",
2613 "es" : "Corea, República de",
2614 "fr" : "Corée du Sud",
2615 "ja" : "大韓民国",
2616 "pt-BR" : "Coréia, República da",
2617 "ru" : "Южная Корея",
2618 "zh-CN" : "韩国"
2619 }
2620 }
2621 }
2622 },
2623 {
2624 "2001:220:0:0:100::/72" : {
2625 "continent" : {
2626 "code" : "AS",
2627 "geoname_id" : 6255147,
2628 "names" : {
2629 "de" : "Asien",
2630 "en" : "Asia",
2631 "es" : "Asia",
2632 "fr" : "Asie",
2633 "ja" : "アジア",
2634 "pt-BR" : "Ásia",
2635 "ru" : "Азия",
2636 "zh-CN" : "亚洲"
2637 }
2638 },
2639 "country" : {
2640 "geoname_id" : 1835841,
2641 "iso_code" : "KR",
2642 "names" : {
2643 "de" : "Republik Korea",
2644 "en" : "South Korea",
2645 "es" : "Corea, República de",
2646 "fr" : "Corée du Sud",
2647 "ja" : "大韓民国",
2648 "pt-BR" : "Coréia, República da",
2649 "ru" : "Южная Корея",
2650 "zh-CN" : "韩国"
2651 }
2652 },
2653 "registered_country" : {
2654 "geoname_id" : 1835841,
2655 "iso_code" : "KR",
2656 "names" : {
2657 "de" : "Republik Korea",
2658 "en" : "South Korea",
2659 "es" : "Corea, República de",
2660 "fr" : "Corée du Sud",
2661 "ja" : "大韓民国",
2662 "pt-BR" : "Coréia, República da",
2663 "ru" : "Южная Корея",
2664 "zh-CN" : "韩国"
2665 }
2666 }
2667 }
2668 },
2669 {
2670 "2001:220:0:0:200::/71" : {
2671 "continent" : {
2672 "code" : "AS",
2673 "geoname_id" : 6255147,
2674 "names" : {
2675 "de" : "Asien",
2676 "en" : "Asia",
2677 "es" : "Asia",
2678 "fr" : "Asie",
2679 "ja" : "アジア",
2680 "pt-BR" : "Ásia",
2681 "ru" : "Азия",
2682 "zh-CN" : "亚洲"
2683 }
2684 },
2685 "country" : {
2686 "geoname_id" : 1835841,
2687 "iso_code" : "KR",
2688 "names" : {
2689 "de" : "Republik Korea",
2690 "en" : "South Korea",
2691 "es" : "Corea, República de",
2692 "fr" : "Corée du Sud",
2693 "ja" : "大韓民国",
2694 "pt-BR" : "Coréia, República da",
2695 "ru" : "Южная Корея",
2696 "zh-CN" : "韩国"
2697 }
2698 },
2699 "registered_country" : {
2700 "geoname_id" : 1835841,
2701 "iso_code" : "KR",
2702 "names" : {
2703 "de" : "Republik Korea",
2704 "en" : "South Korea",
2705 "es" : "Corea, República de",
2706 "fr" : "Corée du Sud",
2707 "ja" : "大韓民国",
2708 "pt-BR" : "Coréia, República da",
2709 "ru" : "Южная Корея",
2710 "zh-CN" : "韩国"
2711 }
2712 }
2713 }
2714 },
2715 {
2716 "2001:220:0:0:400::/70" : {
2717 "continent" : {
2718 "code" : "AS",
2719 "geoname_id" : 6255147,
2720 "names" : {
2721 "de" : "Asien",
2722 "en" : "Asia",
2723 "es" : "Asia",
2724 "fr" : "Asie",
2725 "ja" : "アジア",
2726 "pt-BR" : "Ásia",
2727 "ru" : "Азия",
2728 "zh-CN" : "亚洲"
2729 }
2730 },
2731 "country" : {
2732 "geoname_id" : 1835841,
2733 "iso_code" : "KR",
2734 "names" : {
2735 "de" : "Republik Korea",
2736 "en" : "South Korea",
2737 "es" : "Corea, República de",
2738 "fr" : "Corée du Sud",
2739 "ja" : "大韓民国",
2740 "pt-BR" : "Coréia, República da",
2741 "ru" : "Южная Корея",
2742 "zh-CN" : "韩国"
2743 }
2744 },
2745 "registered_country" : {
2746 "geoname_id" : 1835841,
2747 "iso_code" : "KR",
2748 "names" : {
2749 "de" : "Republik Korea",
2750 "en" : "South Korea",
2751 "es" : "Corea, República de",
2752 "fr" : "Corée du Sud",
2753 "ja" : "大韓民国",
2754 "pt-BR" : "Coréia, República da",
2755 "ru" : "Южная Корея",
2756 "zh-CN" : "韩国"
2757 }
2758 }
2759 }
2760 },
2761 {
2762 "2001:220:0:0:800::/69" : {
2763 "continent" : {
2764 "code" : "AS",
2765 "geoname_id" : 6255147,
2766 "names" : {
2767 "de" : "Asien",
2768 "en" : "Asia",
2769 "es" : "Asia",
2770 "fr" : "Asie",
2771 "ja" : "アジア",
2772 "pt-BR" : "Ásia",
2773 "ru" : "Азия",
2774 "zh-CN" : "亚洲"
2775 }
2776 },
2777 "country" : {
2778 "geoname_id" : 1835841,
2779 "iso_code" : "KR",
2780 "names" : {
2781 "de" : "Republik Korea",
2782 "en" : "South Korea",
2783 "es" : "Corea, República de",
2784 "fr" : "Corée du Sud",
2785 "ja" : "大韓民国",
2786 "pt-BR" : "Coréia, República da",
2787 "ru" : "Южная Корея",
2788 "zh-CN" : "韩国"
2789 }
2790 },
2791 "registered_country" : {
2792 "geoname_id" : 1835841,
2793 "iso_code" : "KR",
2794 "names" : {
2795 "de" : "Republik Korea",
2796 "en" : "South Korea",
2797 "es" : "Corea, República de",
2798 "fr" : "Corée du Sud",
2799 "ja" : "大韓民国",
2800 "pt-BR" : "Coréia, República da",
2801 "ru" : "Южная Корея",
2802 "zh-CN" : "韩国"
2803 }
2804 }
2805 }
2806 },
2807 {
2808 "2001:220:0:0:1000::/68" : {
2809 "continent" : {
2810 "code" : "AS",
2811 "geoname_id" : 6255147,
2812 "names" : {
2813 "de" : "Asien",
2814 "en" : "Asia",
2815 "es" : "Asia",
2816 "fr" : "Asie",
2817 "ja" : "アジア",
2818 "pt-BR" : "Ásia",
2819 "ru" : "Азия",
2820 "zh-CN" : "亚洲"
2821 }
2822 },
2823 "country" : {
2824 "geoname_id" : 1835841,
2825 "iso_code" : "KR",
2826 "names" : {
2827 "de" : "Republik Korea",
2828 "en" : "South Korea",
2829 "es" : "Corea, República de",
2830 "fr" : "Corée du Sud",
2831 "ja" : "大韓民国",
2832 "pt-BR" : "Coréia, República da",
2833 "ru" : "Южная Корея",
2834 "zh-CN" : "韩国"
2835 }
2836 },
2837 "registered_country" : {
2838 "geoname_id" : 1835841,
2839 "iso_code" : "KR",
2840 "names" : {
2841 "de" : "Republik Korea",
2842 "en" : "South Korea",
2843 "es" : "Corea, República de",
2844 "fr" : "Corée du Sud",
2845 "ja" : "大韓民国",
2846 "pt-BR" : "Coréia, República da",
2847 "ru" : "Южная Корея",
2848 "zh-CN" : "韩国"
2849 }
2850 }
2851 }
2852 },
2853 {
2854 "2001:220:0:0:2000::/67" : {
2855 "continent" : {
2856 "code" : "AS",
2857 "geoname_id" : 6255147,
2858 "names" : {
2859 "de" : "Asien",
2860 "en" : "Asia",
2861 "es" : "Asia",
2862 "fr" : "Asie",
2863 "ja" : "アジア",
2864 "pt-BR" : "Ásia",
2865 "ru" : "Азия",
2866 "zh-CN" : "亚洲"
2867 }
2868 },
2869 "country" : {
2870 "geoname_id" : 1835841,
2871 "iso_code" : "KR",
2872 "names" : {
2873 "de" : "Republik Korea",
2874 "en" : "South Korea",
2875 "es" : "Corea, República de",
2876 "fr" : "Corée du Sud",
2877 "ja" : "大韓民国",
2878 "pt-BR" : "Coréia, República da",
2879 "ru" : "Южная Корея",
2880 "zh-CN" : "韩国"
2881 }
2882 },
2883 "registered_country" : {
2884 "geoname_id" : 1835841,
2885 "iso_code" : "KR",
2886 "names" : {
2887 "de" : "Republik Korea",
2888 "en" : "South Korea",
2889 "es" : "Corea, República de",
2890 "fr" : "Corée du Sud",
2891 "ja" : "大韓民国",
2892 "pt-BR" : "Coréia, República da",
2893 "ru" : "Южная Корея",
2894 "zh-CN" : "韩国"
2895 }
2896 }
2897 }
2898 },
2899 {
2900 "2001:220:0:0:4000::/66" : {
2901 "continent" : {
2902 "code" : "AS",
2903 "geoname_id" : 6255147,
2904 "names" : {
2905 "de" : "Asien",
2906 "en" : "Asia",
2907 "es" : "Asia",
2908 "fr" : "Asie",
2909 "ja" : "アジア",
2910 "pt-BR" : "Ásia",
2911 "ru" : "Азия",
2912 "zh-CN" : "亚洲"
2913 }
2914 },
2915 "country" : {
2916 "geoname_id" : 1835841,
2917 "iso_code" : "KR",
2918 "names" : {
2919 "de" : "Republik Korea",
2920 "en" : "South Korea",
2921 "es" : "Corea, República de",
2922 "fr" : "Corée du Sud",
2923 "ja" : "大韓民国",
2924 "pt-BR" : "Coréia, República da",
2925 "ru" : "Южная Корея",
2926 "zh-CN" : "韩国"
2927 }
2928 },
2929 "registered_country" : {
2930 "geoname_id" : 1835841,
2931 "iso_code" : "KR",
2932 "names" : {
2933 "de" : "Republik Korea",
2934 "en" : "South Korea",
2935 "es" : "Corea, República de",
2936 "fr" : "Corée du Sud",
2937 "ja" : "大韓民国",
2938 "pt-BR" : "Coréia, República da",
2939 "ru" : "Южная Корея",
2940 "zh-CN" : "韩国"
2941 }
2942 }
2943 }
2944 },
2945 {
2946 "2001:220:0:0:8000::/65" : {
2947 "continent" : {
2948 "code" : "AS",
2949 "geoname_id" : 6255147,
2950 "names" : {
2951 "de" : "Asien",
2952 "en" : "Asia",
2953 "es" : "Asia",
2954 "fr" : "Asie",
2955 "ja" : "アジア",
2956 "pt-BR" : "Ásia",
2957 "ru" : "Азия",
2958 "zh-CN" : "亚洲"
2959 }
2960 },
2961 "country" : {
2962 "geoname_id" : 1835841,
2963 "iso_code" : "KR",
2964 "names" : {
2965 "de" : "Republik Korea",
2966 "en" : "South Korea",
2967 "es" : "Corea, República de",
2968 "fr" : "Corée du Sud",
2969 "ja" : "大韓民国",
2970 "pt-BR" : "Coréia, República da",
2971 "ru" : "Южная Корея",
2972 "zh-CN" : "韩国"
2973 }
2974 },
2975 "registered_country" : {
2976 "geoname_id" : 1835841,
2977 "iso_code" : "KR",
2978 "names" : {
2979 "de" : "Republik Korea",
2980 "en" : "South Korea",
2981 "es" : "Corea, República de",
2982 "fr" : "Corée du Sud",
2983 "ja" : "大韓民国",
2984 "pt-BR" : "Coréia, República da",
2985 "ru" : "Южная Корея",
2986 "zh-CN" : "韩国"
2987 }
2988 }
2989 }
2990 },
2991 {
2992 "2001:220:0:1::/64" : {
2993 "continent" : {
2994 "code" : "AS",
2995 "geoname_id" : 6255147,
2996 "names" : {
2997 "de" : "Asien",
2998 "en" : "Asia",
2999 "es" : "Asia",
3000 "fr" : "Asie",
3001 "ja" : "アジア",
3002 "pt-BR" : "Ásia",
3003 "ru" : "Азия",
3004 "zh-CN" : "亚洲"
3005 }
3006 },
3007 "country" : {
3008 "geoname_id" : 1835841,
3009 "iso_code" : "KR",
3010 "names" : {
3011 "de" : "Republik Korea",
3012 "en" : "South Korea",
3013 "es" : "Corea, República de",
3014 "fr" : "Corée du Sud",
3015 "ja" : "大韓民国",
3016 "pt-BR" : "Coréia, República da",
3017 "ru" : "Южная Корея",
3018 "zh-CN" : "韩国"
3019 }
3020 },
3021 "registered_country" : {
3022 "geoname_id" : 1835841,
3023 "iso_code" : "KR",
3024 "names" : {
3025 "de" : "Republik Korea",
3026 "en" : "South Korea",
3027 "es" : "Corea, República de",
3028 "fr" : "Corée du Sud",
3029 "ja" : "大韓民国",
3030 "pt-BR" : "Coréia, República da",
3031 "ru" : "Южная Корея",
3032 "zh-CN" : "韩国"
3033 }
3034 }
3035 }
3036 },
3037 {
3038 "2001:220:0:2::/63" : {
3039 "continent" : {
3040 "code" : "AS",
3041 "geoname_id" : 6255147,
3042 "names" : {
3043 "de" : "Asien",
3044 "en" : "Asia",
3045 "es" : "Asia",
3046 "fr" : "Asie",
3047 "ja" : "アジア",
3048 "pt-BR" : "Ásia",
3049 "ru" : "Азия",
3050 "zh-CN" : "亚洲"
3051 }
3052 },
3053 "country" : {
3054 "geoname_id" : 1835841,
3055 "iso_code" : "KR",
3056 "names" : {
3057 "de" : "Republik Korea",
3058 "en" : "South Korea",
3059 "es" : "Corea, República de",
3060 "fr" : "Corée du Sud",
3061 "ja" : "大韓民国",
3062 "pt-BR" : "Coréia, República da",
3063 "ru" : "Южная Корея",
3064 "zh-CN" : "韩国"
3065 }
3066 },
3067 "registered_country" : {
3068 "geoname_id" : 1835841,
3069 "iso_code" : "KR",
3070 "names" : {
3071 "de" : "Republik Korea",
3072 "en" : "South Korea",
3073 "es" : "Corea, República de",
3074 "fr" : "Corée du Sud",
3075 "ja" : "大韓民国",
3076 "pt-BR" : "Coréia, República da",
3077 "ru" : "Южная Корея",
3078 "zh-CN" : "韩国"
3079 }
3080 }
3081 }
3082 },
3083 {
3084 "2001:220:0:4::/62" : {
3085 "continent" : {
3086 "code" : "AS",
3087 "geoname_id" : 6255147,
3088 "names" : {
3089 "de" : "Asien",
3090 "en" : "Asia",
3091 "es" : "Asia",
3092 "fr" : "Asie",
3093 "ja" : "アジア",
3094 "pt-BR" : "Ásia",
3095 "ru" : "Азия",
3096 "zh-CN" : "亚洲"
3097 }
3098 },
3099 "country" : {
3100 "geoname_id" : 1835841,
3101 "iso_code" : "KR",
3102 "names" : {
3103 "de" : "Republik Korea",
3104 "en" : "South Korea",
3105 "es" : "Corea, República de",
3106 "fr" : "Corée du Sud",
3107 "ja" : "大韓民国",
3108 "pt-BR" : "Coréia, República da",
3109 "ru" : "Южная Корея",
3110 "zh-CN" : "韩国"
3111 }
3112 },
3113 "registered_country" : {
3114 "geoname_id" : 1835841,
3115 "iso_code" : "KR",
3116 "names" : {
3117 "de" : "Republik Korea",
3118 "en" : "South Korea",
3119 "es" : "Corea, República de",
3120 "fr" : "Corée du Sud",
3121 "ja" : "大韓民国",
3122 "pt-BR" : "Coréia, República da",
3123 "ru" : "Южная Корея",
3124 "zh-CN" : "韩国"
3125 }
3126 }
3127 }
3128 },
3129 {
3130 "2001:220:0:8::/61" : {
3131 "continent" : {
3132 "code" : "AS",
3133 "geoname_id" : 6255147,
3134 "names" : {
3135 "de" : "Asien",
3136 "en" : "Asia",
3137 "es" : "Asia",
3138 "fr" : "Asie",
3139 "ja" : "アジア",
3140 "pt-BR" : "Ásia",
3141 "ru" : "Азия",
3142 "zh-CN" : "亚洲"
3143 }
3144 },
3145 "country" : {
3146 "geoname_id" : 1835841,
3147 "iso_code" : "KR",
3148 "names" : {
3149 "de" : "Republik Korea",
3150 "en" : "South Korea",
3151 "es" : "Corea, República de",
3152 "fr" : "Corée du Sud",
3153 "ja" : "大韓民国",
3154 "pt-BR" : "Coréia, República da",
3155 "ru" : "Южная Корея",
3156 "zh-CN" : "韩国"
3157 }
3158 },
3159 "registered_country" : {
3160 "geoname_id" : 1835841,
3161 "iso_code" : "KR",
3162 "names" : {
3163 "de" : "Republik Korea",
3164 "en" : "South Korea",
3165 "es" : "Corea, República de",
3166 "fr" : "Corée du Sud",
3167 "ja" : "大韓民国",
3168 "pt-BR" : "Coréia, República da",
3169 "ru" : "Южная Корея",
3170 "zh-CN" : "韩国"
3171 }
3172 }
3173 }
3174 },
3175 {
3176 "2001:220:0:10::/60" : {
3177 "continent" : {
3178 "code" : "AS",
3179 "geoname_id" : 6255147,
3180 "names" : {
3181 "de" : "Asien",
3182 "en" : "Asia",
3183 "es" : "Asia",
3184 "fr" : "Asie",
3185 "ja" : "アジア",
3186 "pt-BR" : "Ásia",
3187 "ru" : "Азия",
3188 "zh-CN" : "亚洲"
3189 }
3190 },
3191 "country" : {
3192 "geoname_id" : 1835841,
3193 "iso_code" : "KR",
3194 "names" : {
3195 "de" : "Republik Korea",
3196 "en" : "South Korea",
3197 "es" : "Corea, República de",
3198 "fr" : "Corée du Sud",
3199 "ja" : "大韓民国",
3200 "pt-BR" : "Coréia, República da",
3201 "ru" : "Южная Корея",
3202 "zh-CN" : "韩国"
3203 }
3204 },
3205 "registered_country" : {
3206 "geoname_id" : 1835841,
3207 "iso_code" : "KR",
3208 "names" : {
3209 "de" : "Republik Korea",
3210 "en" : "South Korea",
3211 "es" : "Corea, República de",
3212 "fr" : "Corée du Sud",
3213 "ja" : "大韓民国",
3214 "pt-BR" : "Coréia, República da",
3215 "ru" : "Южная Корея",
3216 "zh-CN" : "韩国"
3217 }
3218 }
3219 }
3220 },
3221 {
3222 "2001:220:0:20::/59" : {
3223 "continent" : {
3224 "code" : "AS",
3225 "geoname_id" : 6255147,
3226 "names" : {
3227 "de" : "Asien",
3228 "en" : "Asia",
3229 "es" : "Asia",
3230 "fr" : "Asie",
3231 "ja" : "アジア",
3232 "pt-BR" : "Ásia",
3233 "ru" : "Азия",
3234 "zh-CN" : "亚洲"
3235 }
3236 },
3237 "country" : {
3238 "geoname_id" : 1835841,
3239 "iso_code" : "KR",
3240 "names" : {
3241 "de" : "Republik Korea",
3242 "en" : "South Korea",
3243 "es" : "Corea, República de",
3244 "fr" : "Corée du Sud",
3245 "ja" : "大韓民国",
3246 "pt-BR" : "Coréia, República da",
3247 "ru" : "Южная Корея",
3248 "zh-CN" : "韩国"
3249 }
3250 },
3251 "registered_country" : {
3252 "geoname_id" : 1835841,
3253 "iso_code" : "KR",
3254 "names" : {
3255 "de" : "Republik Korea",
3256 "en" : "South Korea",
3257 "es" : "Corea, República de",
3258 "fr" : "Corée du Sud",
3259 "ja" : "大韓民国",
3260 "pt-BR" : "Coréia, República da",
3261 "ru" : "Южная Корея",
3262 "zh-CN" : "韩国"
3263 }
3264 }
3265 }
3266 },
3267 {
3268 "2001:220:0:40::/58" : {
3269 "continent" : {
3270 "code" : "AS",
3271 "geoname_id" : 6255147,
3272 "names" : {
3273 "de" : "Asien",
3274 "en" : "Asia",
3275 "es" : "Asia",
3276 "fr" : "Asie",
3277 "ja" : "アジア",
3278 "pt-BR" : "Ásia",
3279 "ru" : "Азия",
3280 "zh-CN" : "亚洲"
3281 }
3282 },
3283 "country" : {
3284 "geoname_id" : 1835841,
3285 "iso_code" : "KR",
3286 "names" : {
3287 "de" : "Republik Korea",
3288 "en" : "South Korea",
3289 "es" : "Corea, República de",
3290 "fr" : "Corée du Sud",
3291 "ja" : "大韓民国",
3292 "pt-BR" : "Coréia, República da",
3293 "ru" : "Южная Корея",
3294 "zh-CN" : "韩国"
3295 }
3296 },
3297 "registered_country" : {
3298 "geoname_id" : 1835841,
3299 "iso_code" : "KR",
3300 "names" : {
3301 "de" : "Republik Korea",
3302 "en" : "South Korea",
3303 "es" : "Corea, República de",
3304 "fr" : "Corée du Sud",
3305 "ja" : "大韓民国",
3306 "pt-BR" : "Coréia, República da",
3307 "ru" : "Южная Корея",
3308 "zh-CN" : "韩国"
3309 }
3310 }
3311 }
3312 },
3313 {
3314 "2001:220:0:80::/57" : {
3315 "continent" : {
3316 "code" : "AS",
3317 "geoname_id" : 6255147,
3318 "names" : {
3319 "de" : "Asien",
3320 "en" : "Asia",
3321 "es" : "Asia",
3322 "fr" : "Asie",
3323 "ja" : "アジア",
3324 "pt-BR" : "Ásia",
3325 "ru" : "Азия",
3326 "zh-CN" : "亚洲"
3327 }
3328 },
3329 "country" : {
3330 "geoname_id" : 1835841,
3331 "iso_code" : "KR",
3332 "names" : {
3333 "de" : "Republik Korea",
3334 "en" : "South Korea",
3335 "es" : "Corea, República de",
3336 "fr" : "Corée du Sud",
3337 "ja" : "大韓民国",
3338 "pt-BR" : "Coréia, República da",
3339 "ru" : "Южная Корея",
3340 "zh-CN" : "韩国"
3341 }
3342 },
3343 "registered_country" : {
3344 "geoname_id" : 1835841,
3345 "iso_code" : "KR",
3346 "names" : {
3347 "de" : "Republik Korea",
3348 "en" : "South Korea",
3349 "es" : "Corea, República de",
3350 "fr" : "Corée du Sud",
3351 "ja" : "大韓民国",
3352 "pt-BR" : "Coréia, República da",
3353 "ru" : "Южная Корея",
3354 "zh-CN" : "韩国"
3355 }
3356 }
3357 }
3358 },
3359 {
3360 "2001:220:0:100::/56" : {
3361 "continent" : {
3362 "code" : "AS",
3363 "geoname_id" : 6255147,
3364 "names" : {
3365 "de" : "Asien",
3366 "en" : "Asia",
3367 "es" : "Asia",
3368 "fr" : "Asie",
3369 "ja" : "アジア",
3370 "pt-BR" : "Ásia",
3371 "ru" : "Азия",
3372 "zh-CN" : "亚洲"
3373 }
3374 },
3375 "country" : {
3376 "geoname_id" : 1835841,
3377 "iso_code" : "KR",
3378 "names" : {
3379 "de" : "Republik Korea",
3380 "en" : "South Korea",
3381 "es" : "Corea, República de",
3382 "fr" : "Corée du Sud",
3383 "ja" : "大韓民国",
3384 "pt-BR" : "Coréia, República da",
3385 "ru" : "Южная Корея",
3386 "zh-CN" : "韩国"
3387 }
3388 },
3389 "registered_country" : {
3390 "geoname_id" : 1835841,
3391 "iso_code" : "KR",
3392 "names" : {
3393 "de" : "Republik Korea",
3394 "en" : "South Korea",
3395 "es" : "Corea, República de",
3396 "fr" : "Corée du Sud",
3397 "ja" : "大韓民国",
3398 "pt-BR" : "Coréia, República da",
3399 "ru" : "Южная Корея",
3400 "zh-CN" : "韩国"
3401 }
3402 }
3403 }
3404 },
3405 {
3406 "2001:220:0:200::/55" : {
3407 "continent" : {
3408 "code" : "AS",
3409 "geoname_id" : 6255147,
3410 "names" : {
3411 "de" : "Asien",
3412 "en" : "Asia",
3413 "es" : "Asia",
3414 "fr" : "Asie",
3415 "ja" : "アジア",
3416 "pt-BR" : "Ásia",
3417 "ru" : "Азия",
3418 "zh-CN" : "亚洲"
3419 }
3420 },
3421 "country" : {
3422 "geoname_id" : 1835841,
3423 "iso_code" : "KR",
3424 "names" : {
3425 "de" : "Republik Korea",
3426 "en" : "South Korea",
3427 "es" : "Corea, República de",
3428 "fr" : "Corée du Sud",
3429 "ja" : "大韓民国",
3430 "pt-BR" : "Coréia, República da",
3431 "ru" : "Южная Корея",
3432 "zh-CN" : "韩国"
3433 }
3434 },
3435 "registered_country" : {
3436 "geoname_id" : 1835841,
3437 "iso_code" : "KR",
3438 "names" : {
3439 "de" : "Republik Korea",
3440 "en" : "South Korea",
3441 "es" : "Corea, República de",
3442 "fr" : "Corée du Sud",
3443 "ja" : "大韓民国",
3444 "pt-BR" : "Coréia, República da",
3445 "ru" : "Южная Корея",
3446 "zh-CN" : "韩国"
3447 }
3448 }
3449 }
3450 },
3451 {
3452 "2001:220:0:400::/54" : {
3453 "continent" : {
3454 "code" : "AS",
3455 "geoname_id" : 6255147,
3456 "names" : {
3457 "de" : "Asien",
3458 "en" : "Asia",
3459 "es" : "Asia",
3460 "fr" : "Asie",
3461 "ja" : "アジア",
3462 "pt-BR" : "Ásia",
3463 "ru" : "Азия",
3464 "zh-CN" : "亚洲"
3465 }
3466 },
3467 "country" : {
3468 "geoname_id" : 1835841,
3469 "iso_code" : "KR",
3470 "names" : {
3471 "de" : "Republik Korea",
3472 "en" : "South Korea",
3473 "es" : "Corea, República de",
3474 "fr" : "Corée du Sud",
3475 "ja" : "大韓民国",
3476 "pt-BR" : "Coréia, República da",
3477 "ru" : "Южная Корея",
3478 "zh-CN" : "韩国"
3479 }
3480 },
3481 "registered_country" : {
3482 "geoname_id" : 1835841,
3483 "iso_code" : "KR",
3484 "names" : {
3485 "de" : "Republik Korea",
3486 "en" : "South Korea",
3487 "es" : "Corea, República de",
3488 "fr" : "Corée du Sud",
3489 "ja" : "大韓民国",
3490 "pt-BR" : "Coréia, República da",
3491 "ru" : "Южная Корея",
3492 "zh-CN" : "韩国"
3493 }
3494 }
3495 }
3496 },
3497 {
3498 "2001:220:0:800::/53" : {
3499 "continent" : {
3500 "code" : "AS",
3501 "geoname_id" : 6255147,
3502 "names" : {
3503 "de" : "Asien",
3504 "en" : "Asia",
3505 "es" : "Asia",
3506 "fr" : "Asie",
3507 "ja" : "アジア",
3508 "pt-BR" : "Ásia",
3509 "ru" : "Азия",
3510 "zh-CN" : "亚洲"
3511 }
3512 },
3513 "country" : {
3514 "geoname_id" : 1835841,
3515 "iso_code" : "KR",
3516 "names" : {
3517 "de" : "Republik Korea",
3518 "en" : "South Korea",
3519 "es" : "Corea, República de",
3520 "fr" : "Corée du Sud",
3521 "ja" : "大韓民国",
3522 "pt-BR" : "Coréia, República da",
3523 "ru" : "Южная Корея",
3524 "zh-CN" : "韩国"
3525 }
3526 },
3527 "registered_country" : {
3528 "geoname_id" : 1835841,
3529 "iso_code" : "KR",
3530 "names" : {
3531 "de" : "Republik Korea",
3532 "en" : "South Korea",
3533 "es" : "Corea, República de",
3534 "fr" : "Corée du Sud",
3535 "ja" : "大韓民国",
3536 "pt-BR" : "Coréia, República da",
3537 "ru" : "Южная Корея",
3538 "zh-CN" : "韩国"
3539 }
3540 }
3541 }
3542 },
3543 {
3544 "2001:220:0:1000::/52" : {
3545 "continent" : {
3546 "code" : "AS",
3547 "geoname_id" : 6255147,
3548 "names" : {
3549 "de" : "Asien",
3550 "en" : "Asia",
3551 "es" : "Asia",
3552 "fr" : "Asie",
3553 "ja" : "アジア",
3554 "pt-BR" : "Ásia",
3555 "ru" : "Азия",
3556 "zh-CN" : "亚洲"
3557 }
3558 },
3559 "country" : {
3560 "geoname_id" : 1835841,
3561 "iso_code" : "KR",
3562 "names" : {
3563 "de" : "Republik Korea",
3564 "en" : "South Korea",
3565 "es" : "Corea, República de",
3566 "fr" : "Corée du Sud",
3567 "ja" : "大韓民国",
3568 "pt-BR" : "Coréia, República da",
3569 "ru" : "Южная Корея",
3570 "zh-CN" : "韩国"
3571 }
3572 },
3573 "registered_country" : {
3574 "geoname_id" : 1835841,
3575 "iso_code" : "KR",
3576 "names" : {
3577 "de" : "Republik Korea",
3578 "en" : "South Korea",
3579 "es" : "Corea, República de",
3580 "fr" : "Corée du Sud",
3581 "ja" : "大韓民国",
3582 "pt-BR" : "Coréia, República da",
3583 "ru" : "Южная Корея",
3584 "zh-CN" : "韩国"
3585 }
3586 }
3587 }
3588 },
3589 {
3590 "2001:220:0:2000::/51" : {
3591 "continent" : {
3592 "code" : "AS",
3593 "geoname_id" : 6255147,
3594 "names" : {
3595 "de" : "Asien",
3596 "en" : "Asia",
3597 "es" : "Asia",
3598 "fr" : "Asie",
3599 "ja" : "アジア",
3600 "pt-BR" : "Ásia",
3601 "ru" : "Азия",
3602 "zh-CN" : "亚洲"
3603 }
3604 },
3605 "country" : {
3606 "geoname_id" : 1835841,
3607 "iso_code" : "KR",
3608 "names" : {
3609 "de" : "Republik Korea",
3610 "en" : "South Korea",
3611 "es" : "Corea, República de",
3612 "fr" : "Corée du Sud",
3613 "ja" : "大韓民国",
3614 "pt-BR" : "Coréia, República da",
3615 "ru" : "Южная Корея",
3616 "zh-CN" : "韩国"
3617 }
3618 },
3619 "registered_country" : {
3620 "geoname_id" : 1835841,
3621 "iso_code" : "KR",
3622 "names" : {
3623 "de" : "Republik Korea",
3624 "en" : "South Korea",
3625 "es" : "Corea, República de",
3626 "fr" : "Corée du Sud",
3627 "ja" : "大韓民国",
3628 "pt-BR" : "Coréia, República da",
3629 "ru" : "Южная Корея",
3630 "zh-CN" : "韩国"
3631 }
3632 }
3633 }
3634 },
3635 {
3636 "2001:220:0:4000::/50" : {
3637 "continent" : {
3638 "code" : "AS",
3639 "geoname_id" : 6255147,
3640 "names" : {
3641 "de" : "Asien",
3642 "en" : "Asia",
3643 "es" : "Asia",
3644 "fr" : "Asie",
3645 "ja" : "アジア",
3646 "pt-BR" : "Ásia",
3647 "ru" : "Азия",
3648 "zh-CN" : "亚洲"
3649 }
3650 },
3651 "country" : {
3652 "geoname_id" : 1835841,
3653 "iso_code" : "KR",
3654 "names" : {
3655 "de" : "Republik Korea",
3656 "en" : "South Korea",
3657 "es" : "Corea, República de",
3658 "fr" : "Corée du Sud",
3659 "ja" : "大韓民国",
3660 "pt-BR" : "Coréia, República da",
3661 "ru" : "Южная Корея",
3662 "zh-CN" : "韩国"
3663 }
3664 },
3665 "registered_country" : {
3666 "geoname_id" : 1835841,
3667 "iso_code" : "KR",
3668 "names" : {
3669 "de" : "Republik Korea",
3670 "en" : "South Korea",
3671 "es" : "Corea, República de",
3672 "fr" : "Corée du Sud",
3673 "ja" : "大韓民国",
3674 "pt-BR" : "Coréia, República da",
3675 "ru" : "Южная Корея",
3676 "zh-CN" : "韩国"
3677 }
3678 }
3679 }
3680 },
3681 {
3682 "2001:220:0:8000::/49" : {
3683 "continent" : {
3684 "code" : "AS",
3685 "geoname_id" : 6255147,
3686 "names" : {
3687 "de" : "Asien",
3688 "en" : "Asia",
3689 "es" : "Asia",
3690 "fr" : "Asie",
3691 "ja" : "アジア",
3692 "pt-BR" : "Ásia",
3693 "ru" : "Азия",
3694 "zh-CN" : "亚洲"
3695 }
3696 },
3697 "country" : {
3698 "geoname_id" : 1835841,
3699 "iso_code" : "KR",
3700 "names" : {
3701 "de" : "Republik Korea",
3702 "en" : "South Korea",
3703 "es" : "Corea, República de",
3704 "fr" : "Corée du Sud",
3705 "ja" : "大韓民国",
3706 "pt-BR" : "Coréia, República da",
3707 "ru" : "Южная Корея",
3708 "zh-CN" : "韩国"
3709 }
3710 },
3711 "registered_country" : {
3712 "geoname_id" : 1835841,
3713 "iso_code" : "KR",
3714 "names" : {
3715 "de" : "Republik Korea",
3716 "en" : "South Korea",
3717 "es" : "Corea, República de",
3718 "fr" : "Corée du Sud",
3719 "ja" : "大韓民国",
3720 "pt-BR" : "Coréia, República da",
3721 "ru" : "Южная Корея",
3722 "zh-CN" : "韩国"
3723 }
3724 }
3725 }
3726 },
3727 {
3728 "2001:220:1::/48" : {
3729 "continent" : {
3730 "code" : "AS",
3731 "geoname_id" : 6255147,
3732 "names" : {
3733 "de" : "Asien",
3734 "en" : "Asia",
3735 "es" : "Asia",
3736 "fr" : "Asie",
3737 "ja" : "アジア",
3738 "pt-BR" : "Ásia",
3739 "ru" : "Азия",
3740 "zh-CN" : "亚洲"
3741 }
3742 },
3743 "country" : {
3744 "geoname_id" : 1835841,
3745 "iso_code" : "KR",
3746 "names" : {
3747 "de" : "Republik Korea",
3748 "en" : "South Korea",
3749 "es" : "Corea, República de",
3750 "fr" : "Corée du Sud",
3751 "ja" : "大韓民国",
3752 "pt-BR" : "Coréia, República da",
3753 "ru" : "Южная Корея",
3754 "zh-CN" : "韩国"
3755 }
3756 },
3757 "registered_country" : {
3758 "geoname_id" : 1835841,
3759 "iso_code" : "KR",
3760 "names" : {
3761 "de" : "Republik Korea",
3762 "en" : "South Korea",
3763 "es" : "Corea, República de",
3764 "fr" : "Corée du Sud",
3765 "ja" : "大韓民国",
3766 "pt-BR" : "Coréia, República da",
3767 "ru" : "Южная Корея",
3768 "zh-CN" : "韩国"
3769 }
3770 }
3771 }
3772 },
3773 {
3774 "2001:220:2::/47" : {
3775 "continent" : {
3776 "code" : "AS",
3777 "geoname_id" : 6255147,
3778 "names" : {
3779 "de" : "Asien",
3780 "en" : "Asia",
3781 "es" : "Asia",
3782 "fr" : "Asie",
3783 "ja" : "アジア",
3784 "pt-BR" : "Ásia",
3785 "ru" : "Азия",
3786 "zh-CN" : "亚洲"
3787 }
3788 },
3789 "country" : {
3790 "geoname_id" : 1835841,
3791 "iso_code" : "KR",
3792 "names" : {
3793 "de" : "Republik Korea",
3794 "en" : "South Korea",
3795 "es" : "Corea, República de",
3796 "fr" : "Corée du Sud",
3797 "ja" : "大韓民国",
3798 "pt-BR" : "Coréia, República da",
3799 "ru" : "Южная Корея",
3800 "zh-CN" : "韩国"
3801 }
3802 },
3803 "registered_country" : {
3804 "geoname_id" : 1835841,
3805 "iso_code" : "KR",
3806 "names" : {
3807 "de" : "Republik Korea",
3808 "en" : "South Korea",
3809 "es" : "Corea, República de",
3810 "fr" : "Corée du Sud",
3811 "ja" : "大韓民国",
3812 "pt-BR" : "Coréia, República da",
3813 "ru" : "Южная Корея",
3814 "zh-CN" : "韩国"
3815 }
3816 }
3817 }
3818 },
3819 {
3820 "2001:220:4::/46" : {
3821 "continent" : {
3822 "code" : "AS",
3823 "geoname_id" : 6255147,
3824 "names" : {
3825 "de" : "Asien",
3826 "en" : "Asia",
3827 "es" : "Asia",
3828 "fr" : "Asie",
3829 "ja" : "アジア",
3830 "pt-BR" : "Ásia",
3831 "ru" : "Азия",
3832 "zh-CN" : "亚洲"
3833 }
3834 },
3835 "country" : {
3836 "geoname_id" : 1835841,
3837 "iso_code" : "KR",
3838 "names" : {
3839 "de" : "Republik Korea",
3840 "en" : "South Korea",
3841 "es" : "Corea, República de",
3842 "fr" : "Corée du Sud",
3843 "ja" : "大韓民国",
3844 "pt-BR" : "Coréia, República da",
3845 "ru" : "Южная Корея",
3846 "zh-CN" : "韩国"
3847 }
3848 },
3849 "registered_country" : {
3850 "geoname_id" : 1835841,
3851 "iso_code" : "KR",
3852 "names" : {
3853 "de" : "Republik Korea",
3854 "en" : "South Korea",
3855 "es" : "Corea, República de",
3856 "fr" : "Corée du Sud",
3857 "ja" : "大韓民国",
3858 "pt-BR" : "Coréia, República da",
3859 "ru" : "Южная Корея",
3860 "zh-CN" : "韩国"
3861 }
3862 }
3863 }
3864 },
3865 {
3866 "2001:220:8::/45" : {
3867 "continent" : {
3868 "code" : "AS",
3869 "geoname_id" : 6255147,
3870 "names" : {
3871 "de" : "Asien",
3872 "en" : "Asia",
3873 "es" : "Asia",
3874 "fr" : "Asie",
3875 "ja" : "アジア",
3876 "pt-BR" : "Ásia",
3877 "ru" : "Азия",
3878 "zh-CN" : "亚洲"
3879 }
3880 },
3881 "country" : {
3882 "geoname_id" : 1835841,
3883 "iso_code" : "KR",
3884 "names" : {
3885 "de" : "Republik Korea",
3886 "en" : "South Korea",
3887 "es" : "Corea, República de",
3888 "fr" : "Corée du Sud",
3889 "ja" : "大韓民国",
3890 "pt-BR" : "Coréia, República da",
3891 "ru" : "Южная Корея",
3892 "zh-CN" : "韩国"
3893 }
3894 },
3895 "registered_country" : {
3896 "geoname_id" : 1835841,
3897 "iso_code" : "KR",
3898 "names" : {
3899 "de" : "Republik Korea",
3900 "en" : "South Korea",
3901 "es" : "Corea, República de",
3902 "fr" : "Corée du Sud",
3903 "ja" : "大韓民国",
3904 "pt-BR" : "Coréia, República da",
3905 "ru" : "Южная Корея",
3906 "zh-CN" : "韩国"
3907 }
3908 }
3909 }
3910 },
3911 {
3912 "2001:220:10::/44" : {
3913 "continent" : {
3914 "code" : "AS",
3915 "geoname_id" : 6255147,
3916 "names" : {
3917 "de" : "Asien",
3918 "en" : "Asia",
3919 "es" : "Asia",
3920 "fr" : "Asie",
3921 "ja" : "アジア",
3922 "pt-BR" : "Ásia",
3923 "ru" : "Азия",
3924 "zh-CN" : "亚洲"
3925 }
3926 },
3927 "country" : {
3928 "geoname_id" : 1835841,
3929 "iso_code" : "KR",
3930 "names" : {
3931 "de" : "Republik Korea",
3932 "en" : "South Korea",
3933 "es" : "Corea, República de",
3934 "fr" : "Corée du Sud",
3935 "ja" : "大韓民国",
3936 "pt-BR" : "Coréia, República da",
3937 "ru" : "Южная Корея",
3938 "zh-CN" : "韩国"
3939 }
3940 },
3941 "registered_country" : {
3942 "geoname_id" : 1835841,
3943 "iso_code" : "KR",
3944 "names" : {
3945 "de" : "Republik Korea",
3946 "en" : "South Korea",
3947 "es" : "Corea, República de",
3948 "fr" : "Corée du Sud",
3949 "ja" : "大韓民国",
3950 "pt-BR" : "Coréia, República da",
3951 "ru" : "Южная Корея",
3952 "zh-CN" : "韩国"
3953 }
3954 }
3955 }
3956 },
3957 {
3958 "2001:220:20::/43" : {
3959 "continent" : {
3960 "code" : "AS",
3961 "geoname_id" : 6255147,
3962 "names" : {
3963 "de" : "Asien",
3964 "en" : "Asia",
3965 "es" : "Asia",
3966 "fr" : "Asie",
3967 "ja" : "アジア",
3968 "pt-BR" : "Ásia",
3969 "ru" : "Азия",
3970 "zh-CN" : "亚洲"
3971 }
3972 },
3973 "country" : {
3974 "geoname_id" : 1835841,
3975 "iso_code" : "KR",
3976 "names" : {
3977 "de" : "Republik Korea",
3978 "en" : "South Korea",
3979 "es" : "Corea, República de",
3980 "fr" : "Corée du Sud",
3981 "ja" : "大韓民国",
3982 "pt-BR" : "Coréia, República da",
3983 "ru" : "Южная Корея",
3984 "zh-CN" : "韩国"
3985 }
3986 },
3987 "registered_country" : {
3988 "geoname_id" : 1835841,
3989 "iso_code" : "KR",
3990 "names" : {
3991 "de" : "Republik Korea",
3992 "en" : "South Korea",
3993 "es" : "Corea, República de",
3994 "fr" : "Corée du Sud",
3995 "ja" : "大韓民国",
3996 "pt-BR" : "Coréia, República da",
3997 "ru" : "Южная Корея",
3998 "zh-CN" : "韩国"
3999 }
4000 }
4001 }
4002 },
4003 {
4004 "2001:220:40::/42" : {
4005 "continent" : {
4006 "code" : "AS",
4007 "geoname_id" : 6255147,
4008 "names" : {
4009 "de" : "Asien",
4010 "en" : "Asia",
4011 "es" : "Asia",
4012 "fr" : "Asie",
4013 "ja" : "アジア",
4014 "pt-BR" : "Ásia",
4015 "ru" : "Азия",
4016 "zh-CN" : "亚洲"
4017 }
4018 },
4019 "country" : {
4020 "geoname_id" : 1835841,
4021 "iso_code" : "KR",
4022 "names" : {
4023 "de" : "Republik Korea",
4024 "en" : "South Korea",
4025 "es" : "Corea, República de",
4026 "fr" : "Corée du Sud",
4027 "ja" : "大韓民国",
4028 "pt-BR" : "Coréia, República da",
4029 "ru" : "Южная Корея",
4030 "zh-CN" : "韩国"
4031 }
4032 },
4033 "registered_country" : {
4034 "geoname_id" : 1835841,
4035 "iso_code" : "KR",
4036 "names" : {
4037 "de" : "Republik Korea",
4038 "en" : "South Korea",
4039 "es" : "Corea, República de",
4040 "fr" : "Corée du Sud",
4041 "ja" : "大韓民国",
4042 "pt-BR" : "Coréia, República da",
4043 "ru" : "Южная Корея",
4044 "zh-CN" : "韩国"
4045 }
4046 }
4047 }
4048 },
4049 {
4050 "2001:220:80::/41" : {
4051 "continent" : {
4052 "code" : "AS",
4053 "geoname_id" : 6255147,
4054 "names" : {
4055 "de" : "Asien",
4056 "en" : "Asia",
4057 "es" : "Asia",
4058 "fr" : "Asie",
4059 "ja" : "アジア",
4060 "pt-BR" : "Ásia",
4061 "ru" : "Азия",
4062 "zh-CN" : "亚洲"
4063 }
4064 },
4065 "country" : {
4066 "geoname_id" : 1835841,
4067 "iso_code" : "KR",
4068 "names" : {
4069 "de" : "Republik Korea",
4070 "en" : "South Korea",
4071 "es" : "Corea, República de",
4072 "fr" : "Corée du Sud",
4073 "ja" : "大韓民国",
4074 "pt-BR" : "Coréia, República da",
4075 "ru" : "Южная Корея",
4076 "zh-CN" : "韩国"
4077 }
4078 },
4079 "registered_country" : {
4080 "geoname_id" : 1835841,
4081 "iso_code" : "KR",
4082 "names" : {
4083 "de" : "Republik Korea",
4084 "en" : "South Korea",
4085 "es" : "Corea, República de",
4086 "fr" : "Corée du Sud",
4087 "ja" : "大韓民国",
4088 "pt-BR" : "Coréia, República da",
4089 "ru" : "Южная Корея",
4090 "zh-CN" : "韩国"
4091 }
4092 }
4093 }
4094 },
4095 {
4096 "2001:220:100::/40" : {
4097 "continent" : {
4098 "code" : "AS",
4099 "geoname_id" : 6255147,
4100 "names" : {
4101 "de" : "Asien",
4102 "en" : "Asia",
4103 "es" : "Asia",
4104 "fr" : "Asie",
4105 "ja" : "アジア",
4106 "pt-BR" : "Ásia",
4107 "ru" : "Азия",
4108 "zh-CN" : "亚洲"
4109 }
4110 },
4111 "country" : {
4112 "geoname_id" : 1835841,
4113 "iso_code" : "KR",
4114 "names" : {
4115 "de" : "Republik Korea",
4116 "en" : "South Korea",
4117 "es" : "Corea, República de",
4118 "fr" : "Corée du Sud",
4119 "ja" : "大韓民国",
4120 "pt-BR" : "Coréia, República da",
4121 "ru" : "Южная Корея",
4122 "zh-CN" : "韩国"
4123 }
4124 },
4125 "registered_country" : {
4126 "geoname_id" : 1835841,
4127 "iso_code" : "KR",
4128 "names" : {
4129 "de" : "Republik Korea",
4130 "en" : "South Korea",
4131 "es" : "Corea, República de",
4132 "fr" : "Corée du Sud",
4133 "ja" : "大韓民国",
4134 "pt-BR" : "Coréia, República da",
4135 "ru" : "Южная Корея",
4136 "zh-CN" : "韩国"
4137 }
4138 }
4139 }
4140 },
4141 {
4142 "2001:220:200::/39" : {
4143 "continent" : {
4144 "code" : "AS",
4145 "geoname_id" : 6255147,
4146 "names" : {
4147 "de" : "Asien",
4148 "en" : "Asia",
4149 "es" : "Asia",
4150 "fr" : "Asie",
4151 "ja" : "アジア",
4152 "pt-BR" : "Ásia",
4153 "ru" : "Азия",
4154 "zh-CN" : "亚洲"
4155 }
4156 },
4157 "country" : {
4158 "geoname_id" : 1835841,
4159 "iso_code" : "KR",
4160 "names" : {
4161 "de" : "Republik Korea",
4162 "en" : "South Korea",
4163 "es" : "Corea, República de",
4164 "fr" : "Corée du Sud",
4165 "ja" : "大韓民国",
4166 "pt-BR" : "Coréia, República da",
4167 "ru" : "Южная Корея",
4168 "zh-CN" : "韩国"
4169 }
4170 },
4171 "registered_country" : {
4172 "geoname_id" : 1835841,
4173 "iso_code" : "KR",
4174 "names" : {
4175 "de" : "Republik Korea",
4176 "en" : "South Korea",
4177 "es" : "Corea, República de",
4178 "fr" : "Corée du Sud",
4179 "ja" : "大韓民国",
4180 "pt-BR" : "Coréia, República da",
4181 "ru" : "Южная Корея",
4182 "zh-CN" : "韩国"
4183 }
4184 }
4185 }
4186 },
4187 {
4188 "2001:220:400::/38" : {
4189 "continent" : {
4190 "code" : "AS",
4191 "geoname_id" : 6255147,
4192 "names" : {
4193 "de" : "Asien",
4194 "en" : "Asia",
4195 "es" : "Asia",
4196 "fr" : "Asie",
4197 "ja" : "アジア",
4198 "pt-BR" : "Ásia",
4199 "ru" : "Азия",
4200 "zh-CN" : "亚洲"
4201 }
4202 },
4203 "country" : {
4204 "geoname_id" : 1835841,
4205 "iso_code" : "KR",
4206 "names" : {
4207 "de" : "Republik Korea",
4208 "en" : "South Korea",
4209 "es" : "Corea, República de",
4210 "fr" : "Corée du Sud",
4211 "ja" : "大韓民国",
4212 "pt-BR" : "Coréia, República da",
4213 "ru" : "Южная Корея",
4214 "zh-CN" : "韩国"
4215 }
4216 },
4217 "registered_country" : {
4218 "geoname_id" : 1835841,
4219 "iso_code" : "KR",
4220 "names" : {
4221 "de" : "Republik Korea",
4222 "en" : "South Korea",
4223 "es" : "Corea, República de",
4224 "fr" : "Corée du Sud",
4225 "ja" : "大韓民国",
4226 "pt-BR" : "Coréia, República da",
4227 "ru" : "Южная Корея",
4228 "zh-CN" : "韩国"
4229 }
4230 }
4231 }
4232 },
4233 {
4234 "2001:220:800::/37" : {
4235 "continent" : {
4236 "code" : "AS",
4237 "geoname_id" : 6255147,
4238 "names" : {
4239 "de" : "Asien",
4240 "en" : "Asia",
4241 "es" : "Asia",
4242 "fr" : "Asie",
4243 "ja" : "アジア",
4244 "pt-BR" : "Ásia",
4245 "ru" : "Азия",
4246 "zh-CN" : "亚洲"
4247 }
4248 },
4249 "country" : {
4250 "geoname_id" : 1835841,
4251 "iso_code" : "KR",
4252 "names" : {
4253 "de" : "Republik Korea",
4254 "en" : "South Korea",
4255 "es" : "Corea, República de",
4256 "fr" : "Corée du Sud",
4257 "ja" : "大韓民国",
4258 "pt-BR" : "Coréia, República da",
4259 "ru" : "Южная Корея",
4260 "zh-CN" : "韩国"
4261 }
4262 },
4263 "registered_country" : {
4264 "geoname_id" : 1835841,
4265 "iso_code" : "KR",
4266 "names" : {
4267 "de" : "Republik Korea",
4268 "en" : "South Korea",
4269 "es" : "Corea, República de",
4270 "fr" : "Corée du Sud",
4271 "ja" : "大韓民国",
4272 "pt-BR" : "Coréia, República da",
4273 "ru" : "Южная Корея",
4274 "zh-CN" : "韩国"
4275 }
4276 }
4277 }
4278 },
4279 {
4280 "2001:220:1000::/36" : {
4281 "continent" : {
4282 "code" : "AS",
4283 "geoname_id" : 6255147,
4284 "names" : {
4285 "de" : "Asien",
4286 "en" : "Asia",
4287 "es" : "Asia",
4288 "fr" : "Asie",
4289 "ja" : "アジア",
4290 "pt-BR" : "Ásia",
4291 "ru" : "Азия",
4292 "zh-CN" : "亚洲"
4293 }
4294 },
4295 "country" : {
4296 "geoname_id" : 1835841,
4297 "iso_code" : "KR",
4298 "names" : {
4299 "de" : "Republik Korea",
4300 "en" : "South Korea",
4301 "es" : "Corea, República de",
4302 "fr" : "Corée du Sud",
4303 "ja" : "大韓民国",
4304 "pt-BR" : "Coréia, República da",
4305 "ru" : "Южная Корея",
4306 "zh-CN" : "韩国"
4307 }
4308 },
4309 "registered_country" : {
4310 "geoname_id" : 1835841,
4311 "iso_code" : "KR",
4312 "names" : {
4313 "de" : "Republik Korea",
4314 "en" : "South Korea",
4315 "es" : "Corea, República de",
4316 "fr" : "Corée du Sud",
4317 "ja" : "大韓民国",
4318 "pt-BR" : "Coréia, República da",
4319 "ru" : "Южная Корея",
4320 "zh-CN" : "韩国"
4321 }
4322 }
4323 }
4324 },
4325 {
4326 "2001:220:2000::/35" : {
4327 "continent" : {
4328 "code" : "AS",
4329 "geoname_id" : 6255147,
4330 "names" : {
4331 "de" : "Asien",
4332 "en" : "Asia",
4333 "es" : "Asia",
4334 "fr" : "Asie",
4335 "ja" : "アジア",
4336 "pt-BR" : "Ásia",
4337 "ru" : "Азия",
4338 "zh-CN" : "亚洲"
4339 }
4340 },
4341 "country" : {
4342 "geoname_id" : 1835841,
4343 "iso_code" : "KR",
4344 "names" : {
4345 "de" : "Republik Korea",
4346 "en" : "South Korea",
4347 "es" : "Corea, República de",
4348 "fr" : "Corée du Sud",
4349 "ja" : "大韓民国",
4350 "pt-BR" : "Coréia, República da",
4351 "ru" : "Южная Корея",
4352 "zh-CN" : "韩国"
4353 }
4354 },
4355 "registered_country" : {
4356 "geoname_id" : 1835841,
4357 "iso_code" : "KR",
4358 "names" : {
4359 "de" : "Republik Korea",
4360 "en" : "South Korea",
4361 "es" : "Corea, República de",
4362 "fr" : "Corée du Sud",
4363 "ja" : "大韓民国",
4364 "pt-BR" : "Coréia, República da",
4365 "ru" : "Южная Корея",
4366 "zh-CN" : "韩国"
4367 }
4368 }
4369 }
4370 },
4371 {
4372 "2001:220:4000::/34" : {
4373 "continent" : {
4374 "code" : "AS",
4375 "geoname_id" : 6255147,
4376 "names" : {
4377 "de" : "Asien",
4378 "en" : "Asia",
4379 "es" : "Asia",
4380 "fr" : "Asie",
4381 "ja" : "アジア",
4382 "pt-BR" : "Ásia",
4383 "ru" : "Азия",
4384 "zh-CN" : "亚洲"
4385 }
4386 },
4387 "country" : {
4388 "geoname_id" : 1835841,
4389 "iso_code" : "KR",
4390 "names" : {
4391 "de" : "Republik Korea",
4392 "en" : "South Korea",
4393 "es" : "Corea, República de",
4394 "fr" : "Corée du Sud",
4395 "ja" : "大韓民国",
4396 "pt-BR" : "Coréia, República da",
4397 "ru" : "Южная Корея",
4398 "zh-CN" : "韩国"
4399 }
4400 },
4401 "registered_country" : {
4402 "geoname_id" : 1835841,
4403 "iso_code" : "KR",
4404 "names" : {
4405 "de" : "Republik Korea",
4406 "en" : "South Korea",
4407 "es" : "Corea, República de",
4408 "fr" : "Corée du Sud",
4409 "ja" : "大韓民国",
4410 "pt-BR" : "Coréia, República da",
4411 "ru" : "Южная Корея",
4412 "zh-CN" : "韩国"
4413 }
4414 }
4415 }
4416 },
4417 {
4418 "2001:220:8000::/33" : {
4419 "continent" : {
4420 "code" : "AS",
4421 "geoname_id" : 6255147,
4422 "names" : {
4423 "de" : "Asien",
4424 "en" : "Asia",
4425 "es" : "Asia",
4426 "fr" : "Asie",
4427 "ja" : "アジア",
4428 "pt-BR" : "Ásia",
4429 "ru" : "Азия",
4430 "zh-CN" : "亚洲"
4431 }
4432 },
4433 "country" : {
4434 "geoname_id" : 1835841,
4435 "iso_code" : "KR",
4436 "names" : {
4437 "de" : "Republik Korea",
4438 "en" : "South Korea",
4439 "es" : "Corea, República de",
4440 "fr" : "Corée du Sud",
4441 "ja" : "大韓民国",
4442 "pt-BR" : "Coréia, República da",
4443 "ru" : "Южная Корея",
4444 "zh-CN" : "韩国"
4445 }
4446 },
4447 "registered_country" : {
4448 "geoname_id" : 1835841,
4449 "iso_code" : "KR",
4450 "names" : {
4451 "de" : "Republik Korea",
4452 "en" : "South Korea",
4453 "es" : "Corea, República de",
4454 "fr" : "Corée du Sud",
4455 "ja" : "大韓民国",
4456 "pt-BR" : "Coréia, República da",
4457 "ru" : "Южная Корея",
4458 "zh-CN" : "韩国"
4459 }
4460 }
4461 }
4462 },
4463 {
4464 "2001:220::/128" : {
4465 "continent" : {
4466 "code" : "EU",
4467 "geoname_id" : 6255148,
4468 "names" : {
4469 "de" : "Europa",
4470 "en" : "Europe",
4471 "es" : "Europa",
4472 "fr" : "Europe",
4473 "ja" : "ヨーロッパ",
4474 "pt-BR" : "Europa",
4475 "ru" : "Европа",
4476 "zh-CN" : "欧洲"
4477 }
4478 },
4479 "country" : {
4480 "geoname_id" : 2661886,
4481 "is_in_european_union" : true,
4482 "iso_code" : "SE",
4483 "names" : {
4484 "de" : "Schweden",
4485 "en" : "Sweden",
4486 "es" : "Suecia",
4487 "fr" : "Suède",
4488 "ja" : "スウェーデン王国",
4489 "pt-BR" : "Suécia",
4490 "ru" : "Швеция",
4491 "zh-CN" : "瑞典"
4492 }
4493 },
4494 "registered_country" : {
4495 "geoname_id" : 2921044,
4496 "is_in_european_union" : true,
4497 "iso_code" : "DE",
4498 "names" : {
4499 "de" : "Deutschland",
4500 "en" : "Germany",
4501 "es" : "Alemania",
4502 "fr" : "Allemagne",
4503 "ja" : "ドイツ連邦共和国",
4504 "pt-BR" : "Alemanha",
4505 "ru" : "Германия",
4506 "zh-CN" : "德国"
4507 }
4508 }
4509 }
4510 },
4511 {
4512 "2001:230::/32" : {
4513 "continent" : {
4514 "code" : "AS",
4515 "geoname_id" : 6255147,
4516 "names" : {
4517 "de" : "Asien",
4518 "en" : "Asia",
4519 "es" : "Asia",
4520 "fr" : "Asie",
4521 "ja" : "アジア",
4522 "pt-BR" : "Ásia",
4523 "ru" : "Азия",
4524 "zh-CN" : "亚洲"
4525 }
4526 },
4527 "country" : {
4528 "geoname_id" : 1835841,
4529 "iso_code" : "KR",
4530 "names" : {
4531 "de" : "Republik Korea",
4532 "en" : "South Korea",
4533 "es" : "Corea, República de",
4534 "fr" : "Corée du Sud",
4535 "ja" : "大韓民国",
4536 "pt-BR" : "Coréia, República da",
4537 "ru" : "Южная Корея",
4538 "zh-CN" : "韩国"
4539 }
4540 },
4541 "registered_country" : {
4542 "geoname_id" : 1835841,
4543 "iso_code" : "KR",
4544 "names" : {
4545 "de" : "Republik Korea",
4546 "en" : "South Korea",
4547 "es" : "Corea, República de",
4548 "fr" : "Corée du Sud",
4549 "ja" : "大韓民国",
4550 "pt-BR" : "Coréia, República da",
4551 "ru" : "Южная Корея",
4552 "zh-CN" : "韩国"
4553 }
4554 }
4555 }
4556 },
4557 {
4558 "2001:238::/32" : {
4559 "continent" : {
4560 "code" : "AS",
4561 "geoname_id" : 6255147,
4562 "names" : {
4563 "de" : "Asien",
4564 "en" : "Asia",
4565 "es" : "Asia",
4566 "fr" : "Asie",
4567 "ja" : "アジア",
4568 "pt-BR" : "Ásia",
4569 "ru" : "Азия",
4570 "zh-CN" : "亚洲"
4571 }
4572 },
4573 "country" : {
4574 "geoname_id" : 1668284,
4575 "iso_code" : "TW",
4576 "names" : {
4577 "de" : "Taiwan",
4578 "en" : "Taiwan",
4579 "es" : "Taiwán",
4580 "fr" : "Taïwan",
4581 "ja" : "台湾",
4582 "pt-BR" : "Taiwan",
4583 "ru" : "Тайвань",
4584 "zh-CN" : "台湾"
4585 }
4586 },
4587 "registered_country" : {
4588 "geoname_id" : 1668284,
4589 "iso_code" : "TW",
4590 "names" : {
4591 "de" : "Taiwan",
4592 "en" : "Taiwan",
4593 "es" : "Taiwán",
4594 "fr" : "Taïwan",
4595 "ja" : "台湾",
4596 "pt-BR" : "Taiwan",
4597 "ru" : "Тайвань",
4598 "zh-CN" : "台湾"
4599 }
4600 }
4601 }
4602 },
4603 {
4604 "2001:240::/32" : {
4605 "continent" : {
4606 "code" : "AS",
4607 "geoname_id" : 6255147,
4608 "names" : {
4609 "de" : "Asien",
4610 "en" : "Asia",
4611 "es" : "Asia",
4612 "fr" : "Asie",
4613 "ja" : "アジア",
4614 "pt-BR" : "Ásia",
4615 "ru" : "Азия",
4616 "zh-CN" : "亚洲"
4617 }
4618 },
4619 "country" : {
4620 "geoname_id" : 1861060,
4621 "iso_code" : "JP",
4622 "names" : {
4623 "de" : "Japan",
4624 "en" : "Japan",
4625 "es" : "Japón",
4626 "fr" : "Japon",
4627 "ja" : "日本",
4628 "pt-BR" : "Japão",
4629 "ru" : "Япония",
4630 "zh-CN" : "日本"
4631 }
4632 },
4633 "registered_country" : {
4634 "geoname_id" : 1861060,
4635 "iso_code" : "JP",
4636 "names" : {
4637 "de" : "Japan",
4638 "en" : "Japan",
4639 "es" : "Japón",
4640 "fr" : "Japon",
4641 "ja" : "日本",
4642 "pt-BR" : "Japão",
4643 "ru" : "Япония",
4644 "zh-CN" : "日本"
4645 }
4646 }
4647 }
4648 },
4649 {
4650 "2001:250::/31" : {
4651 "continent" : {
4652 "code" : "AS",
4653 "geoname_id" : 6255147,
4654 "names" : {
4655 "de" : "Asien",
4656 "en" : "Asia",
4657 "es" : "Asia",
4658 "fr" : "Asie",
4659 "ja" : "アジア",
4660 "pt-BR" : "Ásia",
4661 "ru" : "Азия",
4662 "zh-CN" : "亚洲"
4663 }
4664 },
4665 "country" : {
4666 "geoname_id" : 1814991,
4667 "iso_code" : "CN",
4668 "names" : {
4669 "de" : "China",
4670 "en" : "People's Republic of China",
4671 "es" : "República Popular China",
4672 "fr" : "Chine",
4673 "ja" : "中国",
4674 "pt-BR" : "China",
4675 "ru" : "Китай",
4676 "zh-CN" : "中国"
4677 }
4678 },
4679 "registered_country" : {
4680 "geoname_id" : 1814991,
4681 "iso_code" : "CN",
4682 "names" : {
4683 "de" : "China",
4684 "en" : "People's Republic of China",
4685 "es" : "República Popular China",
4686 "fr" : "Chine",
4687 "ja" : "中国",
4688 "pt-BR" : "China",
4689 "ru" : "Китай",
4690 "zh-CN" : "中国"
4691 }
4692 }
4693 }
4694 },
4695 {
4696 "2001:252::/32" : {
4697 "continent" : {
4698 "code" : "AS",
4699 "geoname_id" : 6255147,
4700 "names" : {
4701 "de" : "Asien",
4702 "en" : "Asia",
4703 "es" : "Asia",
4704 "fr" : "Asie",
4705 "ja" : "アジア",
4706 "pt-BR" : "Ásia",
4707 "ru" : "Азия",
4708 "zh-CN" : "亚洲"
4709 }
4710 },
4711 "country" : {
4712 "geoname_id" : 1814991,
4713 "iso_code" : "CN",
4714 "names" : {
4715 "de" : "China",
4716 "en" : "People's Republic of China",
4717 "es" : "República Popular China",
4718 "fr" : "Chine",
4719 "ja" : "中国",
4720 "pt-BR" : "China",
4721 "ru" : "Китай",
4722 "zh-CN" : "中国"
4723 }
4724 },
4725 "registered_country" : {
4726 "geoname_id" : 1814991,
4727 "iso_code" : "CN",
4728 "names" : {
4729 "de" : "China",
4730 "en" : "People's Republic of China",
4731 "es" : "República Popular China",
4732 "fr" : "Chine",
4733 "ja" : "中国",
4734 "pt-BR" : "China",
4735 "ru" : "Китай",
4736 "zh-CN" : "中国"
4737 }
4738 }
4739 }
4740 },
4741 {
4742 "2001:254::/32" : {
4743 "continent" : {
4744 "code" : "AS",
4745 "geoname_id" : 6255147,
4746 "names" : {
4747 "de" : "Asien",
4748 "en" : "Asia",
4749 "es" : "Asia",
4750 "fr" : "Asie",
4751 "ja" : "アジア",
4752 "pt-BR" : "Ásia",
4753 "ru" : "Азия",
4754 "zh-CN" : "亚洲"
4755 }
4756 },
4757 "country" : {
4758 "geoname_id" : 1814991,
4759 "iso_code" : "CN",
4760 "names" : {
4761 "de" : "China",
4762 "en" : "People's Republic of China",
4763 "es" : "República Popular China",
4764 "fr" : "Chine",
4765 "ja" : "中国",
4766 "pt-BR" : "China",
4767 "ru" : "Китай",
4768 "zh-CN" : "中国"
4769 }
4770 },
4771 "registered_country" : {
4772 "geoname_id" : 1814991,
4773 "iso_code" : "CN",
4774 "names" : {
4775 "de" : "China",
4776 "en" : "People's Republic of China",
4777 "es" : "República Popular China",
4778 "fr" : "Chine",
4779 "ja" : "中国",
4780 "pt-BR" : "China",
4781 "ru" : "Китай",
4782 "zh-CN" : "中国"
4783 }
4784 }
4785 }
4786 },
4787 {
4788 "2001:256::/32" : {
4789 "continent" : {
4790 "code" : "AS",
4791 "geoname_id" : 6255147,
4792 "names" : {
4793 "de" : "Asien",
4794 "en" : "Asia",
4795 "es" : "Asia",
4796 "fr" : "Asie",
4797 "ja" : "アジア",
4798 "pt-BR" : "Ásia",
4799 "ru" : "Азия",
4800 "zh-CN" : "亚洲"
4801 }
4802 },
4803 "country" : {
4804 "geoname_id" : 1814991,
4805 "iso_code" : "CN",
4806 "names" : {
4807 "de" : "China",
4808 "en" : "People's Republic of China",
4809 "es" : "República Popular China",
4810 "fr" : "Chine",
4811 "ja" : "中国",
4812 "pt-BR" : "China",
4813 "ru" : "Китай",
4814 "zh-CN" : "中国"
4815 }
4816 },
4817 "registered_country" : {
4818 "geoname_id" : 1814991,
4819 "iso_code" : "CN",
4820 "names" : {
4821 "de" : "China",
4822 "en" : "People's Republic of China",
4823 "es" : "República Popular China",
4824 "fr" : "Chine",
4825 "ja" : "中国",
4826 "pt-BR" : "China",
4827 "ru" : "Китай",
4828 "zh-CN" : "中国"
4829 }
4830 }
4831 }
4832 },
4833 {
4834 "2001:258::/32" : {
4835 "continent" : {
4836 "code" : "AS",
4837 "geoname_id" : 6255147,
4838 "names" : {
4839 "de" : "Asien",
4840 "en" : "Asia",
4841 "es" : "Asia",
4842 "fr" : "Asie",
4843 "ja" : "アジア",
4844 "pt-BR" : "Ásia",
4845 "ru" : "Азия",
4846 "zh-CN" : "亚洲"
4847 }
4848 },
4849 "country" : {
4850 "geoname_id" : 1861060,
4851 "iso_code" : "JP",
4852 "names" : {
4853 "de" : "Japan",
4854 "en" : "Japan",
4855 "es" : "Japón",
4856 "fr" : "Japon",
4857 "ja" : "日本",
4858 "pt-BR" : "Japão",
4859 "ru" : "Япония",
4860 "zh-CN" : "日本"
4861 }
4862 },
4863 "registered_country" : {
4864 "geoname_id" : 1861060,
4865 "iso_code" : "JP",
4866 "names" : {
4867 "de" : "Japan",
4868 "en" : "Japan",
4869 "es" : "Japón",
4870 "fr" : "Japon",
4871 "ja" : "日本",
4872 "pt-BR" : "Japão",
4873 "ru" : "Япония",
4874 "zh-CN" : "日本"
4875 }
4876 }
4877 }
4878 },
4879 {
4880 "2001:260::/32" : {
4881 "continent" : {
4882 "code" : "AS",
4883 "geoname_id" : 6255147,
4884 "names" : {
4885 "de" : "Asien",
4886 "en" : "Asia",
4887 "es" : "Asia",
4888 "fr" : "Asie",
4889 "ja" : "アジア",
4890 "pt-BR" : "Ásia",
4891 "ru" : "Азия",
4892 "zh-CN" : "亚洲"
4893 }
4894 },
4895 "country" : {
4896 "geoname_id" : 1861060,
4897 "iso_code" : "JP",
4898 "names" : {
4899 "de" : "Japan",
4900 "en" : "Japan",
4901 "es" : "Japón",
4902 "fr" : "Japon",
4903 "ja" : "日本",
4904 "pt-BR" : "Japão",
4905 "ru" : "Япония",
4906 "zh-CN" : "日本"
4907 }
4908 },
4909 "registered_country" : {
4910 "geoname_id" : 1861060,
4911 "iso_code" : "JP",
4912 "names" : {
4913 "de" : "Japan",
4914 "en" : "Japan",
4915 "es" : "Japón",
4916 "fr" : "Japon",
4917 "ja" : "日本",
4918 "pt-BR" : "Japão",
4919 "ru" : "Япония",
4920 "zh-CN" : "日本"
4921 }
4922 }
4923 }
4924 },
4925 {
4926 "2001:268::/32" : {
4927 "continent" : {
4928 "code" : "AS",
4929 "geoname_id" : 6255147,
4930 "names" : {
4931 "de" : "Asien",
4932 "en" : "Asia",
4933 "es" : "Asia",
4934 "fr" : "Asie",
4935 "ja" : "アジア",
4936 "pt-BR" : "Ásia",
4937 "ru" : "Азия",
4938 "zh-CN" : "亚洲"
4939 }
4940 },
4941 "country" : {
4942 "geoname_id" : 1861060,
4943 "iso_code" : "JP",
4944 "names" : {
4945 "de" : "Japan",
4946 "en" : "Japan",
4947 "es" : "Japón",
4948 "fr" : "Japon",
4949 "ja" : "日本",
4950 "pt-BR" : "Japão",
4951 "ru" : "Япония",
4952 "zh-CN" : "日本"
4953 }
4954 },
4955 "registered_country" : {
4956 "geoname_id" : 1861060,
4957 "iso_code" : "JP",
4958 "names" : {
4959 "de" : "Japan",
4960 "en" : "Japan",
4961 "es" : "Japón",
4962 "fr" : "Japon",
4963 "ja" : "日本",
4964 "pt-BR" : "Japão",
4965 "ru" : "Япония",
4966 "zh-CN" : "日本"
4967 }
4968 }
4969 }
4970 },
4971 {
4972 "2001:270::/32" : {
4973 "continent" : {
4974 "code" : "AS",
4975 "geoname_id" : 6255147,
4976 "names" : {
4977 "de" : "Asien",
4978 "en" : "Asia",
4979 "es" : "Asia",
4980 "fr" : "Asie",
4981 "ja" : "アジア",
4982 "pt-BR" : "Ásia",
4983 "ru" : "Азия",
4984 "zh-CN" : "亚洲"
4985 }
4986 },
4987 "country" : {
4988 "geoname_id" : 1835841,
4989 "iso_code" : "KR",
4990 "names" : {
4991 "de" : "Republik Korea",
4992 "en" : "South Korea",
4993 "es" : "Corea, República de",
4994 "fr" : "Corée du Sud",
4995 "ja" : "大韓民国",
4996 "pt-BR" : "Coréia, República da",
4997 "ru" : "Южная Корея",
4998 "zh-CN" : "韩国"
4999 }
5000 },
5001 "registered_country" : {
5002 "geoname_id" : 1835841,
5003 "iso_code" : "KR",
5004 "names" : {
5005 "de" : "Republik Korea",
5006 "en" : "South Korea",
5007 "es" : "Corea, República de",
5008 "fr" : "Corée du Sud",
5009 "ja" : "大韓民国",
5010 "pt-BR" : "Coréia, República da",
5011 "ru" : "Южная Корея",
5012 "zh-CN" : "韩国"
5013 }
5014 }
5015 }
5016 },
5017 {
5018 "2001:278::/32" : {
5019 "continent" : {
5020 "code" : "AS",
5021 "geoname_id" : 6255147,
5022 "names" : {
5023 "de" : "Asien",
5024 "en" : "Asia",
5025 "es" : "Asia",
5026 "fr" : "Asie",
5027 "ja" : "アジア",
5028 "pt-BR" : "Ásia",
5029 "ru" : "Азия",
5030 "zh-CN" : "亚洲"
5031 }
5032 },
5033 "country" : {
5034 "geoname_id" : 1861060,
5035 "iso_code" : "JP",
5036 "names" : {
5037 "de" : "Japan",
5038 "en" : "Japan",
5039 "es" : "Japón",
5040 "fr" : "Japon",
5041 "ja" : "日本",
5042 "pt-BR" : "Japão",
5043 "ru" : "Япония",
5044 "zh-CN" : "日本"
5045 }
5046 },
5047 "registered_country" : {
5048 "geoname_id" : 1861060,
5049 "iso_code" : "JP",
5050 "names" : {
5051 "de" : "Japan",
5052 "en" : "Japan",
5053 "es" : "Japón",
5054 "fr" : "Japon",
5055 "ja" : "日本",
5056 "pt-BR" : "Japão",
5057 "ru" : "Япония",
5058 "zh-CN" : "日本"
5059 }
5060 }
5061 }
5062 },
5063 {
5064 "2001:280::/32" : {
5065 "continent" : {
5066 "code" : "AS",
5067 "geoname_id" : 6255147,
5068 "names" : {
5069 "de" : "Asien",
5070 "en" : "Asia",
5071 "es" : "Asia",
5072 "fr" : "Asie",
5073 "ja" : "アジア",
5074 "pt-BR" : "Ásia",
5075 "ru" : "Азия",
5076 "zh-CN" : "亚洲"
5077 }
5078 },
5079 "country" : {
5080 "geoname_id" : 1835841,
5081 "iso_code" : "KR",
5082 "names" : {
5083 "de" : "Republik Korea",
5084 "en" : "South Korea",
5085 "es" : "Corea, República de",
5086 "fr" : "Corée du Sud",
5087 "ja" : "大韓民国",
5088 "pt-BR" : "Coréia, República da",
5089 "ru" : "Южная Корея",
5090 "zh-CN" : "韩国"
5091 }
5092 },
5093 "registered_country" : {
5094 "geoname_id" : 1835841,
5095 "iso_code" : "KR",
5096 "names" : {
5097 "de" : "Republik Korea",
5098 "en" : "South Korea",
5099 "es" : "Corea, República de",
5100 "fr" : "Corée du Sud",
5101 "ja" : "大韓民国",
5102 "pt-BR" : "Coréia, República da",
5103 "ru" : "Южная Корея",
5104 "zh-CN" : "韩国"
5105 }
5106 }
5107 }
5108 },
5109 {
5110 "2001:288::/32" : {
5111 "continent" : {
5112 "code" : "AS",
5113 "geoname_id" : 6255147,
5114 "names" : {
5115 "de" : "Asien",
5116 "en" : "Asia",
5117 "es" : "Asia",
5118 "fr" : "Asie",
5119 "ja" : "アジア",
5120 "pt-BR" : "Ásia",
5121 "ru" : "Азия",
5122 "zh-CN" : "亚洲"
5123 }
5124 },
5125 "country" : {
5126 "geoname_id" : 1668284,
5127 "iso_code" : "TW",
5128 "names" : {
5129 "de" : "Taiwan",
5130 "en" : "Taiwan",
5131 "es" : "Taiwán",
5132 "fr" : "Taïwan",
5133 "ja" : "台湾",
5134 "pt-BR" : "Taiwan",
5135 "ru" : "Тайвань",
5136 "zh-CN" : "台湾"
5137 }
5138 },
5139 "registered_country" : {
5140 "geoname_id" : 1668284,
5141 "iso_code" : "TW",
5142 "names" : {
5143 "de" : "Taiwan",
5144 "en" : "Taiwan",
5145 "es" : "Taiwán",
5146 "fr" : "Taïwan",
5147 "ja" : "台湾",
5148 "pt-BR" : "Taiwan",
5149 "ru" : "Тайвань",
5150 "zh-CN" : "台湾"
5151 }
5152 }
5153 }
5154 },
5155 {
5156 "2001:290::/32" : {
5157 "continent" : {
5158 "code" : "AS",
5159 "geoname_id" : 6255147,
5160 "names" : {
5161 "de" : "Asien",
5162 "en" : "Asia",
5163 "es" : "Asia",
5164 "fr" : "Asie",
5165 "ja" : "アジア",
5166 "pt-BR" : "Ásia",
5167 "ru" : "Азия",
5168 "zh-CN" : "亚洲"
5169 }
5170 },
5171 "country" : {
5172 "geoname_id" : 1835841,
5173 "iso_code" : "KR",
5174 "names" : {
5175 "de" : "Republik Korea",
5176 "en" : "South Korea",
5177 "es" : "Corea, República de",
5178 "fr" : "Corée du Sud",
5179 "ja" : "大韓民国",
5180 "pt-BR" : "Coréia, República da",
5181 "ru" : "Южная Корея",
5182 "zh-CN" : "韩国"
5183 }
5184 },
5185 "registered_country" : {
5186 "geoname_id" : 1835841,
5187 "iso_code" : "KR",
5188 "names" : {
5189 "de" : "Republik Korea",
5190 "en" : "South Korea",
5191 "es" : "Corea, República de",
5192 "fr" : "Corée du Sud",
5193 "ja" : "大韓民国",
5194 "pt-BR" : "Coréia, República da",
5195 "ru" : "Южная Корея",
5196 "zh-CN" : "韩国"
5197 }
5198 }
5199 }
5200 },
5201 {
5202 "2001:298::/32" : {
5203 "continent" : {
5204 "code" : "AS",
5205 "geoname_id" : 6255147,
5206 "names" : {
5207 "de" : "Asien",
5208 "en" : "Asia",
5209 "es" : "Asia",
5210 "fr" : "Asie",
5211 "ja" : "アジア",
5212 "pt-BR" : "Ásia",
5213 "ru" : "Азия",
5214 "zh-CN" : "亚洲"
5215 }
5216 },
5217 "country" : {
5218 "geoname_id" : 1861060,
5219 "iso_code" : "JP",
5220 "names" : {
5221 "de" : "Japan",
5222 "en" : "Japan",
5223 "es" : "Japón",
5224 "fr" : "Japon",
5225 "ja" : "日本",
5226 "pt-BR" : "Japão",
5227 "ru" : "Япония",
5228 "zh-CN" : "日本"
5229 }
5230 },
5231 "registered_country" : {
5232 "geoname_id" : 1861060,
5233 "iso_code" : "JP",
5234 "names" : {
5235 "de" : "Japan",
5236 "en" : "Japan",
5237 "es" : "Japón",
5238 "fr" : "Japon",
5239 "ja" : "日本",
5240 "pt-BR" : "Japão",
5241 "ru" : "Япония",
5242 "zh-CN" : "日本"
5243 }
5244 }
5245 }
5246 },
5247 {
5248 "2001:2a0::/32" : {
5249 "continent" : {
5250 "code" : "AS",
5251 "geoname_id" : 6255147,
5252 "names" : {
5253 "de" : "Asien",
5254 "en" : "Asia",
5255 "es" : "Asia",
5256 "fr" : "Asie",
5257 "ja" : "アジア",
5258 "pt-BR" : "Ásia",
5259 "ru" : "Азия",
5260 "zh-CN" : "亚洲"
5261 }
5262 },
5263 "country" : {
5264 "geoname_id" : 1861060,
5265 "iso_code" : "JP",
5266 "names" : {
5267 "de" : "Japan",
5268 "en" : "Japan",
5269 "es" : "Japón",
5270 "fr" : "Japon",
5271 "ja" : "日本",
5272 "pt-BR" : "Japão",
5273 "ru" : "Япония",
5274 "zh-CN" : "日本"
5275 }
5276 },
5277 "registered_country" : {
5278 "geoname_id" : 1861060,
5279 "iso_code" : "JP",
5280 "names" : {
5281 "de" : "Japan",
5282 "en" : "Japan",
5283 "es" : "Japón",
5284 "fr" : "Japon",
5285 "ja" : "日本",
5286 "pt-BR" : "Japão",
5287 "ru" : "Япония",
5288 "zh-CN" : "日本"
5289 }
5290 }
5291 }
5292 },
5293 {
5294 "2001:2a8::/32" : {
5295 "continent" : {
5296 "code" : "AS",
5297 "geoname_id" : 6255147,
5298 "names" : {
5299 "de" : "Asien",
5300 "en" : "Asia",
5301 "es" : "Asia",
5302 "fr" : "Asie",
5303 "ja" : "アジア",
5304 "pt-BR" : "Ásia",
5305 "ru" : "Азия",
5306 "zh-CN" : "亚洲"
5307 }
5308 },
5309 "country" : {
5310 "geoname_id" : 1861060,
5311 "iso_code" : "JP",
5312 "names" : {
5313 "de" : "Japan",
5314 "en" : "Japan",
5315 "es" : "Japón",
5316 "fr" : "Japon",
5317 "ja" : "日本",
5318 "pt-BR" : "Japão",
5319 "ru" : "Япония",
5320 "zh-CN" : "日本"
5321 }
5322 },
5323 "registered_country" : {
5324 "geoname_id" : 1861060,
5325 "iso_code" : "JP",
5326 "names" : {
5327 "de" : "Japan",
5328 "en" : "Japan",
5329 "es" : "Japón",
5330 "fr" : "Japon",
5331 "ja" : "日本",
5332 "pt-BR" : "Japão",
5333 "ru" : "Япония",
5334 "zh-CN" : "日本"
5335 }
5336 }
5337 }
5338 },
5339 {
5340 "2001:2b0::/32" : {
5341 "continent" : {
5342 "code" : "AS",
5343 "geoname_id" : 6255147,
5344 "names" : {
5345 "de" : "Asien",
5346 "en" : "Asia",
5347 "es" : "Asia",
5348 "fr" : "Asie",
5349 "ja" : "アジア",
5350 "pt-BR" : "Ásia",
5351 "ru" : "Азия",
5352 "zh-CN" : "亚洲"
5353 }
5354 },
5355 "country" : {
5356 "geoname_id" : 1835841,
5357 "iso_code" : "KR",
5358 "names" : {
5359 "de" : "Republik Korea",
5360 "en" : "South Korea",
5361 "es" : "Corea, República de",
5362 "fr" : "Corée du Sud",
5363 "ja" : "大韓民国",
5364 "pt-BR" : "Coréia, República da",
5365 "ru" : "Южная Корея",
5366 "zh-CN" : "韩国"
5367 }
5368 },
5369 "registered_country" : {
5370 "geoname_id" : 1835841,
5371 "iso_code" : "KR",
5372 "names" : {
5373 "de" : "Republik Korea",
5374 "en" : "South Korea",
5375 "es" : "Corea, República de",
5376 "fr" : "Corée du Sud",
5377 "ja" : "大韓民国",
5378 "pt-BR" : "Coréia, República da",
5379 "ru" : "Южная Корея",
5380 "zh-CN" : "韩国"
5381 }
5382 }
5383 }
5384 },
5385 {
5386 "2001:2b8::/32" : {
5387 "continent" : {
5388 "code" : "AS",
5389 "geoname_id" : 6255147,
5390 "names" : {
5391 "de" : "Asien",
5392 "en" : "Asia",
5393 "es" : "Asia",
5394 "fr" : "Asie",
5395 "ja" : "アジア",
5396 "pt-BR" : "Ásia",
5397 "ru" : "Азия",
5398 "zh-CN" : "亚洲"
5399 }
5400 },
5401 "country" : {
5402 "geoname_id" : 1835841,
5403 "iso_code" : "KR",
5404 "names" : {
5405 "de" : "Republik Korea",
5406 "en" : "South Korea",
5407 "es" : "Corea, República de",
5408 "fr" : "Corée du Sud",
5409 "ja" : "大韓民国",
5410 "pt-BR" : "Coréia, República da",
5411 "ru" : "Южная Корея",
5412 "zh-CN" : "韩国"
5413 }
5414 },
5415 "registered_country" : {
5416 "geoname_id" : 1835841,
5417 "iso_code" : "KR",
5418 "names" : {
5419 "de" : "Republik Korea",
5420 "en" : "South Korea",
5421 "es" : "Corea, República de",
5422 "fr" : "Corée du Sud",
5423 "ja" : "大韓民国",
5424 "pt-BR" : "Coréia, República da",
5425 "ru" : "Южная Корея",
5426 "zh-CN" : "韩国"
5427 }
5428 }
5429 }
5430 },
5431 {
5432 "2001:2c0::/32" : {
5433 "continent" : {
5434 "code" : "AS",
5435 "geoname_id" : 6255147,
5436 "names" : {
5437 "de" : "Asien",
5438 "en" : "Asia",
5439 "es" : "Asia",
5440 "fr" : "Asie",
5441 "ja" : "アジア",
5442 "pt-BR" : "Ásia",
5443 "ru" : "Азия",
5444 "zh-CN" : "亚洲"
5445 }
5446 },
5447 "country" : {
5448 "geoname_id" : 1861060,
5449 "iso_code" : "JP",
5450 "names" : {
5451 "de" : "Japan",
5452 "en" : "Japan",
5453 "es" : "Japón",
5454 "fr" : "Japon",
5455 "ja" : "日本",
5456 "pt-BR" : "Japão",
5457 "ru" : "Япония",
5458 "zh-CN" : "日本"
5459 }
5460 },
5461 "registered_country" : {
5462 "geoname_id" : 1861060,
5463 "iso_code" : "JP",
5464 "names" : {
5465 "de" : "Japan",
5466 "en" : "Japan",
5467 "es" : "Japón",
5468 "fr" : "Japon",
5469 "ja" : "日本",
5470 "pt-BR" : "Japão",
5471 "ru" : "Япония",
5472 "zh-CN" : "日本"
5473 }
5474 }
5475 }
5476 },
5477 {
5478 "2001:2c8::/32" : {
5479 "continent" : {
5480 "code" : "AS",
5481 "geoname_id" : 6255147,
5482 "names" : {
5483 "de" : "Asien",
5484 "en" : "Asia",
5485 "es" : "Asia",
5486 "fr" : "Asie",
5487 "ja" : "アジア",
5488 "pt-BR" : "Ásia",
5489 "ru" : "Азия",
5490 "zh-CN" : "亚洲"
5491 }
5492 },
5493 "country" : {
5494 "geoname_id" : 1861060,
5495 "iso_code" : "JP",
5496 "names" : {
5497 "de" : "Japan",
5498 "en" : "Japan",
5499 "es" : "Japón",
5500 "fr" : "Japon",
5501 "ja" : "日本",
5502 "pt-BR" : "Japão",
5503 "ru" : "Япония",
5504 "zh-CN" : "日本"
5505 }
5506 },
5507 "registered_country" : {
5508 "geoname_id" : 1861060,
5509 "iso_code" : "JP",
5510 "names" : {
5511 "de" : "Japan",
5512 "en" : "Japan",
5513 "es" : "Japón",
5514 "fr" : "Japon",
5515 "ja" : "日本",
5516 "pt-BR" : "Japão",
5517 "ru" : "Япония",
5518 "zh-CN" : "日本"
5519 }
5520 }
5521 }
5522 },
5523 {
5524 "2001:2d8::/32" : {
5525 "continent" : {
5526 "code" : "AS",
5527 "geoname_id" : 6255147,
5528 "names" : {
5529 "de" : "Asien",
5530 "en" : "Asia",
5531 "es" : "Asia",
5532 "fr" : "Asie",
5533 "ja" : "アジア",
5534 "pt-BR" : "Ásia",
5535 "ru" : "Азия",
5536 "zh-CN" : "亚洲"
5537 }
5538 },
5539 "country" : {
5540 "geoname_id" : 1835841,
5541 "iso_code" : "KR",
5542 "names" : {
5543 "de" : "Republik Korea",
5544 "en" : "South Korea",
5545 "es" : "Corea, República de",
5546 "fr" : "Corée du Sud",
5547 "ja" : "大韓民国",
5548 "pt-BR" : "Coréia, República da",
5549 "ru" : "Южная Корея",
5550 "zh-CN" : "韩国"
5551 }
5552 },
5553 "registered_country" : {
5554 "geoname_id" : 1835841,
5555 "iso_code" : "KR",
5556 "names" : {
5557 "de" : "Republik Korea",
5558 "en" : "South Korea",
5559 "es" : "Corea, República de",
5560 "fr" : "Corée du Sud",
5561 "ja" : "大韓民国",
5562 "pt-BR" : "Coréia, República da",
5563 "ru" : "Южная Корея",
5564 "zh-CN" : "韩国"
5565 }
5566 }
5567 }
5568 },
5569 {
5570 "2001:2e0::/32" : {
5571 "continent" : {
5572 "code" : "AS",
5573 "geoname_id" : 6255147,
5574 "names" : {
5575 "de" : "Asien",
5576 "en" : "Asia",
5577 "es" : "Asia",
5578 "fr" : "Asie",
5579 "ja" : "アジア",
5580 "pt-BR" : "Ásia",
5581 "ru" : "Азия",
5582 "zh-CN" : "亚洲"
5583 }
5584 },
5585 "country" : {
5586 "geoname_id" : 1819730,
5587 "iso_code" : "HK",
5588 "names" : {
5589 "de" : "Hongkong",
5590 "en" : "Hong Kong",
5591 "es" : "Hong Kong",
5592 "fr" : "Hong Kong",
5593 "ja" : "香港",
5594 "pt-BR" : "Hong Kong",
5595 "ru" : "Гонконг",
5596 "zh-CN" : "香港"
5597 }
5598 },
5599 "registered_country" : {
5600 "geoname_id" : 1819730,
5601 "iso_code" : "HK",
5602 "names" : {
5603 "de" : "Hongkong",
5604 "en" : "Hong Kong",
5605 "es" : "Hong Kong",
5606 "fr" : "Hong Kong",
5607 "ja" : "香港",
5608 "pt-BR" : "Hong Kong",
5609 "ru" : "Гонконг",
5610 "zh-CN" : "香港"
5611 }
5612 }
5613 }
5614 },
5615 {
5616 "2001:2e8::/32" : {
5617 "continent" : {
5618 "code" : "AS",
5619 "geoname_id" : 6255147,
5620 "names" : {
5621 "de" : "Asien",
5622 "en" : "Asia",
5623 "es" : "Asia",
5624 "fr" : "Asie",
5625 "ja" : "アジア",
5626 "pt-BR" : "Ásia",
5627 "ru" : "Азия",
5628 "zh-CN" : "亚洲"
5629 }
5630 },
5631 "country" : {
5632 "geoname_id" : 1861060,
5633 "iso_code" : "JP",
5634 "names" : {
5635 "de" : "Japan",
5636 "en" : "Japan",
5637 "es" : "Japón",
5638 "fr" : "Japon",
5639 "ja" : "日本",
5640 "pt-BR" : "Japão",
5641 "ru" : "Япония",
5642 "zh-CN" : "日本"
5643 }
5644 },
5645 "registered_country" : {
5646 "geoname_id" : 1861060,
5647 "iso_code" : "JP",
5648 "names" : {
5649 "de" : "Japan",
5650 "en" : "Japan",
5651 "es" : "Japón",
5652 "fr" : "Japon",
5653 "ja" : "日本",
5654 "pt-BR" : "Japão",
5655 "ru" : "Япония",
5656 "zh-CN" : "日本"
5657 }
5658 }
5659 }
5660 },
5661 {
5662 "2001:2f0::/32" : {
5663 "continent" : {
5664 "code" : "AS",
5665 "geoname_id" : 6255147,
5666 "names" : {
5667 "de" : "Asien",
5668 "en" : "Asia",
5669 "es" : "Asia",
5670 "fr" : "Asie",
5671 "ja" : "アジア",
5672 "pt-BR" : "Ásia",
5673 "ru" : "Азия",
5674 "zh-CN" : "亚洲"
5675 }
5676 },
5677 "country" : {
5678 "geoname_id" : 1861060,
5679 "iso_code" : "JP",
5680 "names" : {
5681 "de" : "Japan",
5682 "en" : "Japan",
5683 "es" : "Japón",
5684 "fr" : "Japon",
5685 "ja" : "日本",
5686 "pt-BR" : "Japão",
5687 "ru" : "Япония",
5688 "zh-CN" : "日本"
5689 }
5690 },
5691 "registered_country" : {
5692 "geoname_id" : 1861060,
5693 "iso_code" : "JP",
5694 "names" : {
5695 "de" : "Japan",
5696 "en" : "Japan",
5697 "es" : "Japón",
5698 "fr" : "Japon",
5699 "ja" : "日本",
5700 "pt-BR" : "Japão",
5701 "ru" : "Япония",
5702 "zh-CN" : "日本"
5703 }
5704 }
5705 }
5706 },
5707 {
5708 "2001:2f8::/32" : {
5709 "continent" : {
5710 "code" : "AS",
5711 "geoname_id" : 6255147,
5712 "names" : {
5713 "de" : "Asien",
5714 "en" : "Asia",
5715 "es" : "Asia",
5716 "fr" : "Asie",
5717 "ja" : "アジア",
5718 "pt-BR" : "Ásia",
5719 "ru" : "Азия",
5720 "zh-CN" : "亚洲"
5721 }
5722 },
5723 "country" : {
5724 "geoname_id" : 1861060,
5725 "iso_code" : "JP",
5726 "names" : {
5727 "de" : "Japan",
5728 "en" : "Japan",
5729 "es" : "Japón",
5730 "fr" : "Japon",
5731 "ja" : "日本",
5732 "pt-BR" : "Japão",
5733 "ru" : "Япония",
5734 "zh-CN" : "日本"
5735 }
5736 },
5737 "registered_country" : {
5738 "geoname_id" : 1861060,
5739 "iso_code" : "JP",
5740 "names" : {
5741 "de" : "Japan",
5742 "en" : "Japan",
5743 "es" : "Japón",
5744 "fr" : "Japon",
5745 "ja" : "日本",
5746 "pt-BR" : "Japão",
5747 "ru" : "Япония",
5748 "zh-CN" : "日本"
5749 }
5750 }
5751 }
5752 },
5753 {
5754 "2a02:cf40::/29" : {
5755 "continent" : {
5756 "code" : "EU",
5757 "geoname_id" : 6255148,
5758 "names" : {
5759 "de" : "Europa",
5760 "en" : "Europe",
5761 "es" : "Europa",
5762 "fr" : "Europe",
5763 "ja" : "ヨーロッパ",
5764 "pt-BR" : "Europa",
5765 "ru" : "Европа",
5766 "zh-CN" : "欧洲"
5767 }
5768 },
5769 "country" : {
5770 "geoname_id" : 3144096,
5771 "iso_code" : "NO",
5772 "names" : {
5773 "de" : "Norwegen",
5774 "en" : "Norway",
5775 "es" : "Noruega",
5776 "fr" : "Norvège",
5777 "ja" : "ノルウェー王国",
5778 "pt-BR" : "Noruega",
5779 "ru" : "Норвегия",
5780 "zh-CN" : "挪威"
5781 }
5782 },
5783 "registered_country" : {
5784 "geoname_id" : 3144096,
5785 "iso_code" : "NO",
5786 "names" : {
5787 "de" : "Norwegen",
5788 "en" : "Norway",
5789 "es" : "Noruega",
5790 "fr" : "Norvège",
5791 "ja" : "ノルウェー王国",
5792 "pt-BR" : "Noruega",
5793 "ru" : "Норвегия",
5794 "zh-CN" : "挪威"
5795 }
5796 }
5797 }
5798 },
5799 {
5800 "2a02:cf80::/29" : {
5801 "continent" : {
5802 "code" : "AS",
5803 "geoname_id" : 6255147,
5804 "names" : {
5805 "de" : "Asien",
5806 "en" : "Asia",
5807 "es" : "Asia",
5808 "fr" : "Asie",
5809 "ja" : "アジア",
5810 "pt-BR" : "Ásia",
5811 "ru" : "Азия",
5812 "zh-CN" : "亚洲"
5813 }
5814 },
5815 "country" : {
5816 "geoname_id" : 294640,
5817 "iso_code" : "IL",
5818 "names" : {
5819 "de" : "Israel",
5820 "en" : "Israel",
5821 "es" : "Israel",
5822 "fr" : "Israël",
5823 "ja" : "イスラエル国",
5824 "pt-BR" : "Israel",
5825 "ru" : "Израиль",
5826 "zh-CN" : "以色列"
5827 }
5828 },
5829 "registered_country" : {
5830 "geoname_id" : 294640,
5831 "iso_code" : "IL",
5832 "names" : {
5833 "de" : "Israel",
5834 "en" : "Israel",
5835 "es" : "Israel",
5836 "fr" : "Israël",
5837 "ja" : "イスラエル国",
5838 "pt-BR" : "Israel",
5839 "ru" : "Израиль",
5840 "zh-CN" : "以色列"
5841 }
5842 }
5843 }
5844 },
5845 {
5846 "2a02:cfc0::/29" : {
5847 "continent" : {
5848 "code" : "EU",
5849 "geoname_id" : 6255148,
5850 "names" : {
5851 "de" : "Europa",
5852 "en" : "Europe",
5853 "es" : "Europa",
5854 "fr" : "Europe",
5855 "ja" : "ヨーロッパ",
5856 "pt-BR" : "Europa",
5857 "ru" : "Европа",
5858 "zh-CN" : "欧洲"
5859 }
5860 },
5861 "country" : {
5862 "geoname_id" : 3017382,
5863 "is_in_european_union" : true,
5864 "iso_code" : "FR",
5865 "names" : {
5866 "de" : "Frankreich",
5867 "en" : "France",
5868 "es" : "Francia",
5869 "fr" : "France",
5870 "ja" : "フランス共和国",
5871 "pt-BR" : "França",
5872 "ru" : "Франция",
5873 "zh-CN" : "法国"
5874 }
5875 },
5876 "registered_country" : {
5877 "geoname_id" : 3017382,
5878 "is_in_european_union" : true,
5879 "iso_code" : "FR",
5880 "names" : {
5881 "de" : "Frankreich",
5882 "en" : "France",
5883 "es" : "Francia",
5884 "fr" : "France",
5885 "ja" : "フランス共和国",
5886 "pt-BR" : "França",
5887 "ru" : "Франция",
5888 "zh-CN" : "法国"
5889 }
5890 }
5891 }
5892 },
5893 {
5894 "2a02:d000::/29" : {
5895 "continent" : {
5896 "code" : "EU",
5897 "geoname_id" : 6255148,
5898 "names" : {
5899 "de" : "Europa",
5900 "en" : "Europe",
5901 "es" : "Europa",
5902 "fr" : "Europe",
5903 "ja" : "ヨーロッパ",
5904 "pt-BR" : "Europa",
5905 "ru" : "Европа",
5906 "zh-CN" : "欧洲"
5907 }
5908 },
5909 "country" : {
5910 "geoname_id" : 2658434,
5911 "iso_code" : "CH",
5912 "names" : {
5913 "de" : "Schweiz",
5914 "en" : "Switzerland",
5915 "es" : "Suiza",
5916 "fr" : "Suisse",
5917 "ja" : "スイス連邦",
5918 "pt-BR" : "Suíça",
5919 "ru" : "Швейцария",
5920 "zh-CN" : "瑞士"
5921 }
5922 },
5923 "registered_country" : {
5924 "geoname_id" : 2658434,
5925 "iso_code" : "CH",
5926 "names" : {
5927 "de" : "Schweiz",
5928 "en" : "Switzerland",
5929 "es" : "Suiza",
5930 "fr" : "Suisse",
5931 "ja" : "スイス連邦",
5932 "pt-BR" : "Suíça",
5933 "ru" : "Швейцария",
5934 "zh-CN" : "瑞士"
5935 }
5936 }
5937 }
5938 },
5939 {
5940 "2a02:d040::/29" : {
5941 "continent" : {
5942 "code" : "EU",
5943 "geoname_id" : 6255148,
5944 "names" : {
5945 "de" : "Europa",
5946 "en" : "Europe",
5947 "es" : "Europa",
5948 "fr" : "Europe",
5949 "ja" : "ヨーロッパ",
5950 "pt-BR" : "Europa",
5951 "ru" : "Европа",
5952 "zh-CN" : "欧洲"
5953 }
5954 },
5955 "country" : {
5956 "geoname_id" : 2661886,
5957 "is_in_european_union" : true,
5958 "iso_code" : "SE",
5959 "names" : {
5960 "de" : "Schweden",
5961 "en" : "Sweden",
5962 "es" : "Suecia",
5963 "fr" : "Suède",
5964 "ja" : "スウェーデン王国",
5965 "pt-BR" : "Suécia",
5966 "ru" : "Швеция",
5967 "zh-CN" : "瑞典"
5968 }
5969 },
5970 "registered_country" : {
5971 "geoname_id" : 2661886,
5972 "is_in_european_union" : true,
5973 "iso_code" : "SE",
5974 "names" : {
5975 "de" : "Schweden",
5976 "en" : "Sweden",
5977 "es" : "Suecia",
5978 "fr" : "Suède",
5979 "ja" : "スウェーデン王国",
5980 "pt-BR" : "Suécia",
5981 "ru" : "Швеция",
5982 "zh-CN" : "瑞典"
5983 }
5984 }
5985 }
5986 },
5987 {
5988 "2a02:d080::/29" : {
5989 "continent" : {
5990 "code" : "AS",
5991 "geoname_id" : 6255147,
5992 "names" : {
5993 "de" : "Asien",
5994 "en" : "Asia",
5995 "es" : "Asia",
5996 "fr" : "Asie",
5997 "ja" : "アジア",
5998 "pt-BR" : "Ásia",
5999 "ru" : "Азия",
6000 "zh-CN" : "亚洲"
6001 }
6002 },
6003 "country" : {
6004 "geoname_id" : 290291,
6005 "iso_code" : "BH",
6006 "names" : {
6007 "de" : "Bahrain",
6008 "en" : "Bahrain",
6009 "es" : "Bahréin",
6010 "fr" : "Bahreïn",
6011 "ja" : "バーレーン",
6012 "pt-BR" : "Bahrain",
6013 "ru" : "Бахрейн",
6014 "zh-CN" : "巴林"
6015 }
6016 },
6017 "registered_country" : {
6018 "geoname_id" : 290291,
6019 "iso_code" : "BH",
6020 "names" : {
6021 "de" : "Bahrain",
6022 "en" : "Bahrain",
6023 "es" : "Bahréin",
6024 "fr" : "Bahreïn",
6025 "ja" : "バーレーン",
6026 "pt-BR" : "Bahrain",
6027 "ru" : "Бахрейн",
6028 "zh-CN" : "巴林"
6029 }
6030 }
6031 }
6032 },
6033 {
6034 "2a02:d0c0::/29" : {
6035 "continent" : {
6036 "code" : "EU",
6037 "geoname_id" : 6255148,
6038 "names" : {
6039 "de" : "Europa",
6040 "en" : "Europe",
6041 "es" : "Europa",
6042 "fr" : "Europe",
6043 "ja" : "ヨーロッパ",
6044 "pt-BR" : "Europa",
6045 "ru" : "Европа",
6046 "zh-CN" : "欧洲"
6047 }
6048 },
6049 "country" : {
6050 "geoname_id" : 2017370,
6051 "iso_code" : "RU",
6052 "names" : {
6053 "de" : "Russland",
6054 "en" : "Russia",
6055 "es" : "Rusia",
6056 "fr" : "Russie",
6057 "ja" : "ロシア",
6058 "pt-BR" : "Rússia",
6059 "ru" : "Россия",
6060 "zh-CN" : "俄罗斯"
6061 }
6062 },
6063 "registered_country" : {
6064 "geoname_id" : 2017370,
6065 "iso_code" : "RU",
6066 "names" : {
6067 "de" : "Russland",
6068 "en" : "Russia",
6069 "es" : "Rusia",
6070 "fr" : "Russie",
6071 "ja" : "ロシア",
6072 "pt-BR" : "Rússia",
6073 "ru" : "Россия",
6074 "zh-CN" : "俄罗斯"
6075 }
6076 }
6077 }
6078 },
6079 {
6080 "2a02:d100::/29" : {
6081 "continent" : {
6082 "code" : "EU",
6083 "geoname_id" : 6255148,
6084 "names" : {
6085 "de" : "Europa",
6086 "en" : "Europe",
6087 "es" : "Europa",
6088 "fr" : "Europe",
6089 "ja" : "ヨーロッパ",
6090 "pt-BR" : "Europa",
6091 "ru" : "Европа",
6092 "zh-CN" : "欧洲"
6093 }
6094 },
6095 "country" : {
6096 "geoname_id" : 798544,
6097 "is_in_european_union" : true,
6098 "iso_code" : "PL",
6099 "names" : {
6100 "de" : "Polen",
6101 "en" : "Poland",
6102 "es" : "Polonia",
6103 "fr" : "Pologne",
6104 "ja" : "ポーランド共和国",
6105 "pt-BR" : "Polônia",
6106 "ru" : "Польша",
6107 "zh-CN" : "波兰"
6108 }
6109 },
6110 "registered_country" : {
6111 "geoname_id" : 798544,
6112 "is_in_european_union" : true,
6113 "iso_code" : "PL",
6114 "names" : {
6115 "de" : "Polen",
6116 "en" : "Poland",
6117 "es" : "Polonia",
6118 "fr" : "Pologne",
6119 "ja" : "ポーランド共和国",
6120 "pt-BR" : "Polônia",
6121 "ru" : "Польша",
6122 "zh-CN" : "波兰"
6123 }
6124 }
6125 }
6126 },
6127 {
6128 "2a02:d140::/29" : {
6129 "continent" : {
6130 "code" : "EU",
6131 "geoname_id" : 6255148,
6132 "names" : {
6133 "de" : "Europa",
6134 "en" : "Europe",
6135 "es" : "Europa",
6136 "fr" : "Europe",
6137 "ja" : "ヨーロッパ",
6138 "pt-BR" : "Europa",
6139 "ru" : "Европа",
6140 "zh-CN" : "欧洲"
6141 }
6142 },
6143 "country" : {
6144 "geoname_id" : 3144096,
6145 "iso_code" : "NO",
6146 "names" : {
6147 "de" : "Norwegen",
6148 "en" : "Norway",
6149 "es" : "Noruega",
6150 "fr" : "Norvège",
6151 "ja" : "ノルウェー王国",
6152 "pt-BR" : "Noruega",
6153 "ru" : "Норвегия",
6154 "zh-CN" : "挪威"
6155 }
6156 },
6157 "registered_country" : {
6158 "geoname_id" : 3144096,
6159 "iso_code" : "NO",
6160 "names" : {
6161 "de" : "Norwegen",
6162 "en" : "Norway",
6163 "es" : "Noruega",
6164 "fr" : "Norvège",
6165 "ja" : "ノルウェー王国",
6166 "pt-BR" : "Noruega",
6167 "ru" : "Норвегия",
6168 "zh-CN" : "挪威"
6169 }
6170 }
6171 }
6172 },
6173 {
6174 "2a02:d180::/29" : {
6175 "continent" : {
6176 "code" : "EU",
6177 "geoname_id" : 6255148,
6178 "names" : {
6179 "de" : "Europa",
6180 "en" : "Europe",
6181 "es" : "Europa",
6182 "fr" : "Europe",
6183 "ja" : "ヨーロッパ",
6184 "pt-BR" : "Europa",
6185 "ru" : "Европа",
6186 "zh-CN" : "欧洲"
6187 }
6188 },
6189 "country" : {
6190 "geoname_id" : 2921044,
6191 "is_in_european_union" : true,
6192 "iso_code" : "DE",
6193 "names" : {
6194 "de" : "Deutschland",
6195 "en" : "Germany",
6196 "es" : "Alemania",
6197 "fr" : "Allemagne",
6198 "ja" : "ドイツ連邦共和国",
6199 "pt-BR" : "Alemanha",
6200 "ru" : "Германия",
6201 "zh-CN" : "德国"
6202 }
6203 },
6204 "registered_country" : {
6205 "geoname_id" : 2921044,
6206 "is_in_european_union" : true,
6207 "iso_code" : "DE",
6208 "names" : {
6209 "de" : "Deutschland",
6210 "en" : "Germany",
6211 "es" : "Alemania",
6212 "fr" : "Allemagne",
6213 "ja" : "ドイツ連邦共和国",
6214 "pt-BR" : "Alemanha",
6215 "ru" : "Германия",
6216 "zh-CN" : "德国"
6217 }
6218 }
6219 }
6220 },
6221 {
6222 "2a02:d1c0::/29" : {
6223 "continent" : {
6224 "code" : "EU",
6225 "geoname_id" : 6255148,
6226 "names" : {
6227 "de" : "Europa",
6228 "en" : "Europe",
6229 "es" : "Europa",
6230 "fr" : "Europe",
6231 "ja" : "ヨーロッパ",
6232 "pt-BR" : "Europa",
6233 "ru" : "Европа",
6234 "zh-CN" : "欧洲"
6235 }
6236 },
6237 "country" : {
6238 "geoname_id" : 3175395,
6239 "is_in_european_union" : true,
6240 "iso_code" : "IT",
6241 "names" : {
6242 "de" : "Italien",
6243 "en" : "Italy",
6244 "es" : "Italia",
6245 "fr" : "Italie",
6246 "ja" : "イタリア共和国",
6247 "pt-BR" : "Itália",
6248 "ru" : "Италия",
6249 "zh-CN" : "意大利"
6250 }
6251 },
6252 "registered_country" : {
6253 "geoname_id" : 3175395,
6254 "is_in_european_union" : true,
6255 "iso_code" : "IT",
6256 "names" : {
6257 "de" : "Italien",
6258 "en" : "Italy",
6259 "es" : "Italia",
6260 "fr" : "Italie",
6261 "ja" : "イタリア共和国",
6262 "pt-BR" : "Itália",
6263 "ru" : "Италия",
6264 "zh-CN" : "意大利"
6265 }
6266 }
6267 }
6268 },
6269 {
6270 "2a02:d200::/29" : {
6271 "continent" : {
6272 "code" : "EU",
6273 "geoname_id" : 6255148,
6274 "names" : {
6275 "de" : "Europa",
6276 "en" : "Europe",
6277 "es" : "Europa",
6278 "fr" : "Europe",
6279 "ja" : "ヨーロッパ",
6280 "pt-BR" : "Europa",
6281 "ru" : "Европа",
6282 "zh-CN" : "欧洲"
6283 }
6284 },
6285 "country" : {
6286 "geoname_id" : 660013,
6287 "is_in_european_union" : true,
6288 "iso_code" : "FI",
6289 "names" : {
6290 "de" : "Finnland",
6291 "en" : "Finland",
6292 "es" : "Finlandia",
6293 "fr" : "Finlande",
6294 "ja" : "フィンランド共和国",
6295 "pt-BR" : "Finlândia",
6296 "ru" : "Финляндия",
6297 "zh-CN" : "芬兰"
6298 }
6299 },
6300 "registered_country" : {
6301 "geoname_id" : 660013,
6302 "is_in_european_union" : true,
6303 "iso_code" : "FI",
6304 "names" : {
6305 "de" : "Finnland",
6306 "en" : "Finland",
6307 "es" : "Finlandia",
6308 "fr" : "Finlande",
6309 "ja" : "フィンランド共和国",
6310 "pt-BR" : "Finlândia",
6311 "ru" : "Финляндия",
6312 "zh-CN" : "芬兰"
6313 }
6314 }
6315 }
6316 },
6317 {
6318 "2a02:d240::/29" : {
6319 "continent" : {
6320 "code" : "EU",
6321 "geoname_id" : 6255148,
6322 "names" : {
6323 "de" : "Europa",
6324 "en" : "Europe",
6325 "es" : "Europa",
6326 "fr" : "Europe",
6327 "ja" : "ヨーロッパ",
6328 "pt-BR" : "Europa",
6329 "ru" : "Европа",
6330 "zh-CN" : "欧洲"
6331 }
6332 },
6333 "country" : {
6334 "geoname_id" : 630336,
6335 "iso_code" : "BY",
6336 "names" : {
6337 "de" : "Weißrussland",
6338 "en" : "Belarus",
6339 "es" : "Bielorrusia",
6340 "fr" : "Biélorussie",
6341 "ja" : "ベラルーシ共和国",
6342 "pt-BR" : "Bielo-Rússia",
6343 "ru" : "Беларусь",
6344 "zh-CN" : "白俄罗斯"
6345 }
6346 },
6347 "registered_country" : {
6348 "geoname_id" : 630336,
6349 "iso_code" : "BY",
6350 "names" : {
6351 "de" : "Weißrussland",
6352 "en" : "Belarus",
6353 "es" : "Bielorrusia",
6354 "fr" : "Biélorussie",
6355 "ja" : "ベラルーシ共和国",
6356 "pt-BR" : "Bielo-Rússia",
6357 "ru" : "Беларусь",
6358 "zh-CN" : "白俄罗斯"
6359 }
6360 }
6361 }
6362 },
6363 {
6364 "2a02:d280::/29" : {
6365 "continent" : {
6366 "code" : "EU",
6367 "geoname_id" : 6255148,
6368 "names" : {
6369 "de" : "Europa",
6370 "en" : "Europe",
6371 "es" : "Europa",
6372 "fr" : "Europe",
6373 "ja" : "ヨーロッパ",
6374 "pt-BR" : "Europa",
6375 "ru" : "Европа",
6376 "zh-CN" : "欧洲"
6377 }
6378 },
6379 "country" : {
6380 "geoname_id" : 3077311,
6381 "is_in_european_union" : true,
6382 "iso_code" : "CZ",
6383 "names" : {
6384 "de" : "Tschechische Republik",
6385 "en" : "Czech Republic",
6386 "es" : "República Checa",
6387 "fr" : "Tchéquie",
6388 "ja" : "チェコ共和国",
6389 "pt-BR" : "República Checa",
6390 "ru" : "Чешская Республика",
6391 "zh-CN" : "捷克共和国"
6392 }
6393 },
6394 "registered_country" : {
6395 "geoname_id" : 3077311,
6396 "is_in_european_union" : true,
6397 "iso_code" : "CZ",
6398 "names" : {
6399 "de" : "Tschechische Republik",
6400 "en" : "Czech Republic",
6401 "es" : "República Checa",
6402 "fr" : "Tchéquie",
6403 "ja" : "チェコ共和国",
6404 "pt-BR" : "República Checa",
6405 "ru" : "Чешская Республика",
6406 "zh-CN" : "捷克共和国"
6407 }
6408 }
6409 }
6410 },
6411 {
6412 "2a02:d2c0::/29" : {
6413 "continent" : {
6414 "code" : "AS",
6415 "geoname_id" : 6255147,
6416 "names" : {
6417 "de" : "Asien",
6418 "en" : "Asia",
6419 "es" : "Asia",
6420 "fr" : "Asie",
6421 "ja" : "アジア",
6422 "pt-BR" : "Ásia",
6423 "ru" : "Азия",
6424 "zh-CN" : "亚洲"
6425 }
6426 },
6427 "country" : {
6428 "geoname_id" : 130758,
6429 "iso_code" : "IR",
6430 "names" : {
6431 "de" : "Iran (Islamische Republik)",
6432 "en" : "Iran",
6433 "es" : "Irán (República Islámica)",
6434 "fr" : "Iran (République islamique de)",
6435 "ja" : "イラン・イスラム共和国",
6436 "pt-BR" : "República Islâmica do Irã",
6437 "ru" : "Иран",
6438 "zh-CN" : "伊朗伊斯兰共和国"
6439 }
6440 },
6441 "registered_country" : {
6442 "geoname_id" : 130758,
6443 "iso_code" : "IR",
6444 "names" : {
6445 "de" : "Iran (Islamische Republik)",
6446 "en" : "Iran",
6447 "es" : "Irán (República Islámica)",
6448 "fr" : "Iran (République islamique de)",
6449 "ja" : "イラン・イスラム共和国",
6450 "pt-BR" : "República Islâmica do Irã",
6451 "ru" : "Иран",
6452 "zh-CN" : "伊朗伊斯兰共和国"
6453 }
6454 }
6455 }
6456 },
6457 {
6458 "2a02:d300::/29" : {
6459 "continent" : {
6460 "code" : "EU",
6461 "geoname_id" : 6255148,
6462 "names" : {
6463 "de" : "Europa",
6464 "en" : "Europe",
6465 "es" : "Europa",
6466 "fr" : "Europe",
6467 "ja" : "ヨーロッパ",
6468 "pt-BR" : "Europa",
6469 "ru" : "Европа",
6470 "zh-CN" : "欧洲"
6471 }
6472 },
6473 "country" : {
6474 "geoname_id" : 690791,
6475 "iso_code" : "UA",
6476 "names" : {
6477 "de" : "Ukraine",
6478 "en" : "Ukraine",
6479 "es" : "Ucrania",
6480 "fr" : "Ukraine",
6481 "ja" : "ウクライナ共和国",
6482 "pt-BR" : "Ucrânia",
6483 "ru" : "Украина",
6484 "zh-CN" : "乌克兰"
6485 }
6486 },
6487 "registered_country" : {
6488 "geoname_id" : 690791,
6489 "iso_code" : "UA",
6490 "names" : {
6491 "de" : "Ukraine",
6492 "en" : "Ukraine",
6493 "es" : "Ucrania",
6494 "fr" : "Ukraine",
6495 "ja" : "ウクライナ共和国",
6496 "pt-BR" : "Ucrânia",
6497 "ru" : "Украина",
6498 "zh-CN" : "乌克兰"
6499 }
6500 }
6501 }
6502 },
6503 {
6504 "2a02:d340::/29" : {
6505 "continent" : {
6506 "code" : "EU",
6507 "geoname_id" : 6255148,
6508 "names" : {
6509 "de" : "Europa",
6510 "en" : "Europe",
6511 "es" : "Europa",
6512 "fr" : "Europe",
6513 "ja" : "ヨーロッパ",
6514 "pt-BR" : "Europa",
6515 "ru" : "Европа",
6516 "zh-CN" : "欧洲"
6517 }
6518 },
6519 "country" : {
6520 "geoname_id" : 3017382,
6521 "is_in_european_union" : true,
6522 "iso_code" : "FR",
6523 "names" : {
6524 "de" : "Frankreich",
6525 "en" : "France",
6526 "es" : "Francia",
6527 "fr" : "France",
6528 "ja" : "フランス共和国",
6529 "pt-BR" : "França",
6530 "ru" : "Франция",
6531 "zh-CN" : "法国"
6532 }
6533 },
6534 "registered_country" : {
6535 "geoname_id" : 3017382,
6536 "is_in_european_union" : true,
6537 "iso_code" : "FR",
6538 "names" : {
6539 "de" : "Frankreich",
6540 "en" : "France",
6541 "es" : "Francia",
6542 "fr" : "France",
6543 "ja" : "フランス共和国",
6544 "pt-BR" : "França",
6545 "ru" : "Франция",
6546 "zh-CN" : "法国"
6547 }
6548 }
6549 }
6550 },
6551 {
6552 "2a02:d380::/29" : {
6553 "continent" : {
6554 "code" : "AS",
6555 "geoname_id" : 6255147,
6556 "names" : {
6557 "de" : "Asien",
6558 "en" : "Asia",
6559 "es" : "Asia",
6560 "fr" : "Asie",
6561 "ja" : "アジア",
6562 "pt-BR" : "Ásia",
6563 "ru" : "Азия",
6564 "zh-CN" : "亚洲"
6565 }
6566 },
6567 "country" : {
6568 "geoname_id" : 130758,
6569 "iso_code" : "IR",
6570 "names" : {
6571 "de" : "Iran (Islamische Republik)",
6572 "en" : "Iran",
6573 "es" : "Irán (República Islámica)",
6574 "fr" : "Iran (République islamique de)",
6575 "ja" : "イラン・イスラム共和国",
6576 "pt-BR" : "República Islâmica do Irã",
6577 "ru" : "Иран",
6578 "zh-CN" : "伊朗伊斯兰共和国"
6579 }
6580 },
6581 "registered_country" : {
6582 "geoname_id" : 130758,
6583 "iso_code" : "IR",
6584 "names" : {
6585 "de" : "Iran (Islamische Republik)",
6586 "en" : "Iran",
6587 "es" : "Irán (República Islámica)",
6588 "fr" : "Iran (République islamique de)",
6589 "ja" : "イラン・イスラム共和国",
6590 "pt-BR" : "República Islâmica do Irã",
6591 "ru" : "Иран",
6592 "zh-CN" : "伊朗伊斯兰共和国"
6593 }
6594 }
6595 }
6596 },
6597 {
6598 "2a02:d3c0::/29" : {
6599 "continent" : {
6600 "code" : "EU",
6601 "geoname_id" : 6255148,
6602 "names" : {
6603 "de" : "Europa",
6604 "en" : "Europe",
6605 "es" : "Europa",
6606 "fr" : "Europe",
6607 "ja" : "ヨーロッパ",
6608 "pt-BR" : "Europa",
6609 "ru" : "Европа",
6610 "zh-CN" : "欧洲"
6611 }
6612 },
6613 "country" : {
6614 "geoname_id" : 2635167,
6615 "is_in_european_union" : true,
6616 "iso_code" : "GB",
6617 "names" : {
6618 "de" : "Vereinigtes Königreich",
6619 "en" : "United Kingdom",
6620 "es" : "Reino Unido",
6621 "fr" : "Royaume-Uni",
6622 "ja" : "イギリス",
6623 "pt-BR" : "Reino Unido",
6624 "ru" : "Великобритания",
6625 "zh-CN" : "英国"
6626 }
6627 },
6628 "registered_country" : {
6629 "geoname_id" : 2635167,
6630 "is_in_european_union" : true,
6631 "iso_code" : "GB",
6632 "names" : {
6633 "de" : "Vereinigtes Königreich",
6634 "en" : "United Kingdom",
6635 "es" : "Reino Unido",
6636 "fr" : "Royaume-Uni",
6637 "ja" : "イギリス",
6638 "pt-BR" : "Reino Unido",
6639 "ru" : "Великобритания",
6640 "zh-CN" : "英国"
6641 }
6642 }
6643 }
6644 },
6645 {
6646 "2a02:d400::/29" : {
6647 "continent" : {
6648 "code" : "EU",
6649 "geoname_id" : 6255148,
6650 "names" : {
6651 "de" : "Europa",
6652 "en" : "Europe",
6653 "es" : "Europa",
6654 "fr" : "Europe",
6655 "ja" : "ヨーロッパ",
6656 "pt-BR" : "Europa",
6657 "ru" : "Европа",
6658 "zh-CN" : "欧洲"
6659 }
6660 },
6661 "country" : {
6662 "geoname_id" : 719819,
6663 "is_in_european_union" : true,
6664 "iso_code" : "HU",
6665 "names" : {
6666 "de" : "Ungarn",
6667 "en" : "Hungary",
6668 "es" : "Hungría",
6669 "fr" : "Hongrie",
6670 "ja" : "ハンガリー共和国",
6671 "pt-BR" : "Hungria",
6672 "ru" : "Венгрия",
6673 "zh-CN" : "匈牙利"
6674 }
6675 },
6676 "registered_country" : {
6677 "geoname_id" : 719819,
6678 "is_in_european_union" : true,
6679 "iso_code" : "HU",
6680 "names" : {
6681 "de" : "Ungarn",
6682 "en" : "Hungary",
6683 "es" : "Hungría",
6684 "fr" : "Hongrie",
6685 "ja" : "ハンガリー共和国",
6686 "pt-BR" : "Hungria",
6687 "ru" : "Венгрия",
6688 "zh-CN" : "匈牙利"
6689 }
6690 }
6691 }
6692 },
6693 {
6694 "2a02:d440::/29" : {
6695 "continent" : {
6696 "code" : "EU",
6697 "geoname_id" : 6255148,
6698 "names" : {
6699 "de" : "Europa",
6700 "en" : "Europe",
6701 "es" : "Europa",
6702 "fr" : "Europe",
6703 "ja" : "ヨーロッパ",
6704 "pt-BR" : "Europa",
6705 "ru" : "Европа",
6706 "zh-CN" : "欧洲"
6707 }
6708 },
6709 "country" : {
6710 "geoname_id" : 2661886,
6711 "is_in_european_union" : true,
6712 "iso_code" : "SE",
6713 "names" : {
6714 "de" : "Schweden",
6715 "en" : "Sweden",
6716 "es" : "Suecia",
6717 "fr" : "Suède",
6718 "ja" : "スウェーデン王国",
6719 "pt-BR" : "Suécia",
6720 "ru" : "Швеция",
6721 "zh-CN" : "瑞典"
6722 }
6723 },
6724 "registered_country" : {
6725 "geoname_id" : 2661886,
6726 "is_in_european_union" : true,
6727 "iso_code" : "SE",
6728 "names" : {
6729 "de" : "Schweden",
6730 "en" : "Sweden",
6731 "es" : "Suecia",
6732 "fr" : "Suède",
6733 "ja" : "スウェーデン王国",
6734 "pt-BR" : "Suécia",
6735 "ru" : "Швеция",
6736 "zh-CN" : "瑞典"
6737 }
6738 }
6739 }
6740 },
6741 {
6742 "2a02:d480::/29" : {
6743 "continent" : {
6744 "code" : "EU",
6745 "geoname_id" : 6255148,
6746 "names" : {
6747 "de" : "Europa",
6748 "en" : "Europe",
6749 "es" : "Europa",
6750 "fr" : "Europe",
6751 "ja" : "ヨーロッパ",
6752 "pt-BR" : "Europa",
6753 "ru" : "Европа",
6754 "zh-CN" : "欧洲"
6755 }
6756 },
6757 "country" : {
6758 "geoname_id" : 2921044,
6759 "is_in_european_union" : true,
6760 "iso_code" : "DE",
6761 "names" : {
6762 "de" : "Deutschland",
6763 "en" : "Germany",
6764 "es" : "Alemania",
6765 "fr" : "Allemagne",
6766 "ja" : "ドイツ連邦共和国",
6767 "pt-BR" : "Alemanha",
6768 "ru" : "Германия",
6769 "zh-CN" : "德国"
6770 }
6771 },
6772 "registered_country" : {
6773 "geoname_id" : 2921044,
6774 "is_in_european_union" : true,
6775 "iso_code" : "DE",
6776 "names" : {
6777 "de" : "Deutschland",
6778 "en" : "Germany",
6779 "es" : "Alemania",
6780 "fr" : "Allemagne",
6781 "ja" : "ドイツ連邦共和国",
6782 "pt-BR" : "Alemanha",
6783 "ru" : "Германия",
6784 "zh-CN" : "德国"
6785 }
6786 }
6787 }
6788 },
6789 {
6790 "2a02:d4c0::/30" : {
6791 "continent" : {
6792 "code" : "EU",
6793 "geoname_id" : 6255148,
6794 "names" : {
6795 "de" : "Europa",
6796 "en" : "Europe",
6797 "es" : "Europa",
6798 "fr" : "Europe",
6799 "ja" : "ヨーロッパ",
6800 "pt-BR" : "Europa",
6801 "ru" : "Европа",
6802 "zh-CN" : "欧洲"
6803 }
6804 },
6805 "country" : {
6806 "geoname_id" : 660013,
6807 "is_in_european_union" : true,
6808 "iso_code" : "FI",
6809 "names" : {
6810 "de" : "Finnland",
6811 "en" : "Finland",
6812 "es" : "Finlandia",
6813 "fr" : "Finlande",
6814 "ja" : "フィンランド共和国",
6815 "pt-BR" : "Finlândia",
6816 "ru" : "Финляндия",
6817 "zh-CN" : "芬兰"
6818 }
6819 },
6820 "registered_country" : {
6821 "geoname_id" : 660013,
6822 "is_in_european_union" : true,
6823 "iso_code" : "FI",
6824 "names" : {
6825 "de" : "Finnland",
6826 "en" : "Finland",
6827 "es" : "Finlandia",
6828 "fr" : "Finlande",
6829 "ja" : "フィンランド共和国",
6830 "pt-BR" : "Finlândia",
6831 "ru" : "Финляндия",
6832 "zh-CN" : "芬兰"
6833 }
6834 }
6835 }
6836 },
6837 {
6838 "2a02:d4e0::/30" : {
6839 "continent" : {
6840 "code" : "EU",
6841 "geoname_id" : 6255148,
6842 "names" : {
6843 "de" : "Europa",
6844 "en" : "Europe",
6845 "es" : "Europa",
6846 "fr" : "Europe",
6847 "ja" : "ヨーロッパ",
6848 "pt-BR" : "Europa",
6849 "ru" : "Европа",
6850 "zh-CN" : "欧洲"
6851 }
6852 },
6853 "country" : {
6854 "geoname_id" : 2921044,
6855 "is_in_european_union" : true,
6856 "iso_code" : "DE",
6857 "names" : {
6858 "de" : "Deutschland",
6859 "en" : "Germany",
6860 "es" : "Alemania",
6861 "fr" : "Allemagne",
6862 "ja" : "ドイツ連邦共和国",
6863 "pt-BR" : "Alemanha",
6864 "ru" : "Германия",
6865 "zh-CN" : "德国"
6866 }
6867 },
6868 "registered_country" : {
6869 "geoname_id" : 2921044,
6870 "is_in_european_union" : true,
6871 "iso_code" : "DE",
6872 "names" : {
6873 "de" : "Deutschland",
6874 "en" : "Germany",
6875 "es" : "Alemania",
6876 "fr" : "Allemagne",
6877 "ja" : "ドイツ連邦共和国",
6878 "pt-BR" : "Alemanha",
6879 "ru" : "Германия",
6880 "zh-CN" : "德国"
6881 }
6882 }
6883 }
6884 },
6885 {
6886 "2a02:d500::/29" : {
6887 "continent" : {
6888 "code" : "EU",
6889 "geoname_id" : 6255148,
6890 "names" : {
6891 "de" : "Europa",
6892 "en" : "Europe",
6893 "es" : "Europa",
6894 "fr" : "Europe",
6895 "ja" : "ヨーロッパ",
6896 "pt-BR" : "Europa",
6897 "ru" : "Европа",
6898 "zh-CN" : "欧洲"
6899 }
6900 },
6901 "location" : {
6902 "latitude" : 48.69096,
6903 "longitude" : 9.14062,
6904 "time_zone" : "Europe/Vaduz"
6905 }
6906 }
6907 },
6908 {
6909 "2a02:d540::/29" : {
6910 "continent" : {
6911 "code" : "EU",
6912 "geoname_id" : 6255148,
6913 "names" : {
6914 "de" : "Europa",
6915 "en" : "Europe",
6916 "es" : "Europa",
6917 "fr" : "Europe",
6918 "ja" : "ヨーロッパ",
6919 "pt-BR" : "Europa",
6920 "ru" : "Европа",
6921 "zh-CN" : "欧洲"
6922 }
6923 },
6924 "country" : {
6925 "geoname_id" : 2635167,
6926 "is_in_european_union" : true,
6927 "iso_code" : "GB",
6928 "names" : {
6929 "de" : "Vereinigtes Königreich",
6930 "en" : "United Kingdom",
6931 "es" : "Reino Unido",
6932 "fr" : "Royaume-Uni",
6933 "ja" : "イギリス",
6934 "pt-BR" : "Reino Unido",
6935 "ru" : "Великобритания",
6936 "zh-CN" : "英国"
6937 }
6938 },
6939 "registered_country" : {
6940 "geoname_id" : 2635167,
6941 "is_in_european_union" : true,
6942 "iso_code" : "GB",
6943 "names" : {
6944 "de" : "Vereinigtes Königreich",
6945 "en" : "United Kingdom",
6946 "es" : "Reino Unido",
6947 "fr" : "Royaume-Uni",
6948 "ja" : "イギリス",
6949 "pt-BR" : "Reino Unido",
6950 "ru" : "Великобритания",
6951 "zh-CN" : "英国"
6952 }
6953 }
6954 }
6955 },
6956 {
6957 "2a02:d580::/29" : {
6958 "continent" : {
6959 "code" : "EU",
6960 "geoname_id" : 6255148,
6961 "names" : {
6962 "de" : "Europa",
6963 "en" : "Europe",
6964 "es" : "Europa",
6965 "fr" : "Europe",
6966 "ja" : "ヨーロッパ",
6967 "pt-BR" : "Europa",
6968 "ru" : "Европа",
6969 "zh-CN" : "欧洲"
6970 }
6971 },
6972 "country" : {
6973 "geoname_id" : 3017382,
6974 "is_in_european_union" : true,
6975 "iso_code" : "FR",
6976 "names" : {
6977 "de" : "Frankreich",
6978 "en" : "France",
6979 "es" : "Francia",
6980 "fr" : "France",
6981 "ja" : "フランス共和国",
6982 "pt-BR" : "França",
6983 "ru" : "Франция",
6984 "zh-CN" : "法国"
6985 }
6986 },
6987 "registered_country" : {
6988 "geoname_id" : 3017382,
6989 "is_in_european_union" : true,
6990 "iso_code" : "FR",
6991 "names" : {
6992 "de" : "Frankreich",
6993 "en" : "France",
6994 "es" : "Francia",
6995 "fr" : "France",
6996 "ja" : "フランス共和国",
6997 "pt-BR" : "França",
6998 "ru" : "Франция",
6999 "zh-CN" : "法国"
7000 }
7001 }
7002 }
7003 },
7004 {
7005 "2a02:d5c0::/29" : {
7006 "continent" : {
7007 "code" : "EU",
7008 "geoname_id" : 6255148,
7009 "names" : {
7010 "de" : "Europa",
7011 "en" : "Europe",
7012 "es" : "Europa",
7013 "fr" : "Europe",
7014 "ja" : "ヨーロッパ",
7015 "pt-BR" : "Europa",
7016 "ru" : "Европа",
7017 "zh-CN" : "欧洲"
7018 }
7019 },
7020 "country" : {
7021 "geoname_id" : 2510769,
7022 "is_in_european_union" : true,
7023 "iso_code" : "ES",
7024 "names" : {
7025 "de" : "Spanien",
7026 "en" : "Spain",
7027 "es" : "España",
7028 "fr" : "Espagne",
7029 "ja" : "スペイン",
7030 "pt-BR" : "Espanha",
7031 "ru" : "Испания",
7032 "zh-CN" : "西班牙"
7033 }
7034 },
7035 "registered_country" : {
7036 "geoname_id" : 2510769,
7037 "is_in_european_union" : true,
7038 "iso_code" : "ES",
7039 "names" : {
7040 "de" : "Spanien",
7041 "en" : "Spain",
7042 "es" : "España",
7043 "fr" : "Espagne",
7044 "ja" : "スペイン",
7045 "pt-BR" : "Espanha",
7046 "ru" : "Испания",
7047 "zh-CN" : "西班牙"
7048 }
7049 }
7050 }
7051 },
7052 {
7053 "2a02:d600::/29" : {
7054 "continent" : {
7055 "code" : "EU",
7056 "geoname_id" : 6255148,
7057 "names" : {
7058 "de" : "Europa",
7059 "en" : "Europe",
7060 "es" : "Europa",
7061 "fr" : "Europe",
7062 "ja" : "ヨーロッパ",
7063 "pt-BR" : "Europa",
7064 "ru" : "Европа",
7065 "zh-CN" : "欧洲"
7066 }
7067 },
7068 "country" : {
7069 "geoname_id" : 2921044,
7070 "is_in_european_union" : true,
7071 "iso_code" : "DE",
7072 "names" : {
7073 "de" : "Deutschland",
7074 "en" : "Germany",
7075 "es" : "Alemania",
7076 "fr" : "Allemagne",
7077 "ja" : "ドイツ連邦共和国",
7078 "pt-BR" : "Alemanha",
7079 "ru" : "Германия",
7080 "zh-CN" : "德国"
7081 }
7082 },
7083 "registered_country" : {
7084 "geoname_id" : 2921044,
7085 "is_in_european_union" : true,
7086 "iso_code" : "DE",
7087 "names" : {
7088 "de" : "Deutschland",
7089 "en" : "Germany",
7090 "es" : "Alemania",
7091 "fr" : "Allemagne",
7092 "ja" : "ドイツ連邦共和国",
7093 "pt-BR" : "Alemanha",
7094 "ru" : "Германия",
7095 "zh-CN" : "德国"
7096 }
7097 }
7098 }
7099 },
7100 {
7101 "2a02:d640::/29" : {
7102 "continent" : {
7103 "code" : "EU",
7104 "geoname_id" : 6255148,
7105 "names" : {
7106 "de" : "Europa",
7107 "en" : "Europe",
7108 "es" : "Europa",
7109 "fr" : "Europe",
7110 "ja" : "ヨーロッパ",
7111 "pt-BR" : "Europa",
7112 "ru" : "Европа",
7113 "zh-CN" : "欧洲"
7114 }
7115 },
7116 "country" : {
7117 "geoname_id" : 3017382,
7118 "is_in_european_union" : true,
7119 "iso_code" : "FR",
7120 "names" : {
7121 "de" : "Frankreich",
7122 "en" : "France",
7123 "es" : "Francia",
7124 "fr" : "France",
7125 "ja" : "フランス共和国",
7126 "pt-BR" : "França",
7127 "ru" : "Франция",
7128 "zh-CN" : "法国"
7129 }
7130 },
7131 "registered_country" : {
7132 "geoname_id" : 3017382,
7133 "is_in_european_union" : true,
7134 "iso_code" : "FR",
7135 "names" : {
7136 "de" : "Frankreich",
7137 "en" : "France",
7138 "es" : "Francia",
7139 "fr" : "France",
7140 "ja" : "フランス共和国",
7141 "pt-BR" : "França",
7142 "ru" : "Франция",
7143 "zh-CN" : "法国"
7144 }
7145 }
7146 }
7147 },
7148 {
7149 "2a02:d680::/30" : {
7150 "continent" : {
7151 "code" : "EU",
7152 "geoname_id" : 6255148,
7153 "names" : {
7154 "de" : "Europa",
7155 "en" : "Europe",
7156 "es" : "Europa",
7157 "fr" : "Europe",
7158 "ja" : "ヨーロッパ",
7159 "pt-BR" : "Europa",
7160 "ru" : "Европа",
7161 "zh-CN" : "欧洲"
7162 }
7163 },
7164 "country" : {
7165 "geoname_id" : 2635167,
7166 "is_in_european_union" : true,
7167 "iso_code" : "GB",
7168 "names" : {
7169 "de" : "Vereinigtes Königreich",
7170 "en" : "United Kingdom",
7171 "es" : "Reino Unido",
7172 "fr" : "Royaume-Uni",
7173 "ja" : "イギリス",
7174 "pt-BR" : "Reino Unido",
7175 "ru" : "Великобритания",
7176 "zh-CN" : "英国"
7177 }
7178 },
7179 "registered_country" : {
7180 "geoname_id" : 2635167,
7181 "is_in_european_union" : true,
7182 "iso_code" : "GB",
7183 "names" : {
7184 "de" : "Vereinigtes Königreich",
7185 "en" : "United Kingdom",
7186 "es" : "Reino Unido",
7187 "fr" : "Royaume-Uni",
7188 "ja" : "イギリス",
7189 "pt-BR" : "Reino Unido",
7190 "ru" : "Великобритания",
7191 "zh-CN" : "英国"
7192 }
7193 }
7194 }
7195 },
7196 {
7197 "2a02:d6a0::/30" : {
7198 "continent" : {
7199 "code" : "EU",
7200 "geoname_id" : 6255148,
7201 "names" : {
7202 "de" : "Europa",
7203 "en" : "Europe",
7204 "es" : "Europa",
7205 "fr" : "Europe",
7206 "ja" : "ヨーロッパ",
7207 "pt-BR" : "Europa",
7208 "ru" : "Европа",
7209 "zh-CN" : "欧洲"
7210 }
7211 },
7212 "country" : {
7213 "geoname_id" : 2921044,
7214 "is_in_european_union" : true,
7215 "iso_code" : "DE",
7216 "names" : {
7217 "de" : "Deutschland",
7218 "en" : "Germany",
7219 "es" : "Alemania",
7220 "fr" : "Allemagne",
7221 "ja" : "ドイツ連邦共和国",
7222 "pt-BR" : "Alemanha",
7223 "ru" : "Германия",
7224 "zh-CN" : "德国"
7225 }
7226 },
7227 "registered_country" : {
7228 "geoname_id" : 2921044,
7229 "is_in_european_union" : true,
7230 "iso_code" : "DE",
7231 "names" : {
7232 "de" : "Deutschland",
7233 "en" : "Germany",
7234 "es" : "Alemania",
7235 "fr" : "Allemagne",
7236 "ja" : "ドイツ連邦共和国",
7237 "pt-BR" : "Alemanha",
7238 "ru" : "Германия",
7239 "zh-CN" : "德国"
7240 }
7241 }
7242 }
7243 },
7244 {
7245 "2a02:d6c0::/29" : {
7246 "continent" : {
7247 "code" : "EU",
7248 "geoname_id" : 6255148,
7249 "names" : {
7250 "de" : "Europa",
7251 "en" : "Europe",
7252 "es" : "Europa",
7253 "fr" : "Europe",
7254 "ja" : "ヨーロッパ",
7255 "pt-BR" : "Europa",
7256 "ru" : "Европа",
7257 "zh-CN" : "欧洲"
7258 }
7259 },
7260 "country" : {
7261 "geoname_id" : 732800,
7262 "is_in_european_union" : true,
7263 "iso_code" : "BG",
7264 "names" : {
7265 "de" : "Bulgarien",
7266 "en" : "Bulgaria",
7267 "es" : "Bulgaria",
7268 "fr" : "Bulgarie",
7269 "ja" : "ブルガリア共和国",
7270 "pt-BR" : "Bulgária",
7271 "ru" : "Болгария",
7272 "zh-CN" : "保加利亚"
7273 }
7274 },
7275 "registered_country" : {
7276 "geoname_id" : 732800,
7277 "is_in_european_union" : true,
7278 "iso_code" : "BG",
7279 "names" : {
7280 "de" : "Bulgarien",
7281 "en" : "Bulgaria",
7282 "es" : "Bulgaria",
7283 "fr" : "Bulgarie",
7284 "ja" : "ブルガリア共和国",
7285 "pt-BR" : "Bulgária",
7286 "ru" : "Болгария",
7287 "zh-CN" : "保加利亚"
7288 }
7289 }
7290 }
7291 },
7292 {
7293 "2a02:d700::/29" : {
7294 "continent" : {
7295 "code" : "EU",
7296 "geoname_id" : 6255148,
7297 "names" : {
7298 "de" : "Europa",
7299 "en" : "Europe",
7300 "es" : "Europa",
7301 "fr" : "Europe",
7302 "ja" : "ヨーロッパ",
7303 "pt-BR" : "Europa",
7304 "ru" : "Европа",
7305 "zh-CN" : "欧洲"
7306 }
7307 },
7308 "country" : {
7309 "geoname_id" : 2921044,
7310 "is_in_european_union" : true,
7311 "iso_code" : "DE",
7312 "names" : {
7313 "de" : "Deutschland",
7314 "en" : "Germany",
7315 "es" : "Alemania",
7316 "fr" : "Allemagne",
7317 "ja" : "ドイツ連邦共和国",
7318 "pt-BR" : "Alemanha",
7319 "ru" : "Германия",
7320 "zh-CN" : "德国"
7321 }
7322 },
7323 "registered_country" : {
7324 "geoname_id" : 2921044,
7325 "is_in_european_union" : true,
7326 "iso_code" : "DE",
7327 "names" : {
7328 "de" : "Deutschland",
7329 "en" : "Germany",
7330 "es" : "Alemania",
7331 "fr" : "Allemagne",
7332 "ja" : "ドイツ連邦共和国",
7333 "pt-BR" : "Alemanha",
7334 "ru" : "Германия",
7335 "zh-CN" : "德国"
7336 }
7337 }
7338 }
7339 },
7340 {
7341 "2a02:d740::/29" : {
7342 "continent" : {
7343 "code" : "EU",
7344 "geoname_id" : 6255148,
7345 "names" : {
7346 "de" : "Europa",
7347 "en" : "Europe",
7348 "es" : "Europa",
7349 "fr" : "Europe",
7350 "ja" : "ヨーロッパ",
7351 "pt-BR" : "Europa",
7352 "ru" : "Европа",
7353 "zh-CN" : "欧洲"
7354 }
7355 },
7356 "country" : {
7357 "geoname_id" : 2658434,
7358 "iso_code" : "CH",
7359 "names" : {
7360 "de" : "Schweiz",
7361 "en" : "Switzerland",
7362 "es" : "Suiza",
7363 "fr" : "Suisse",
7364 "ja" : "スイス連邦",
7365 "pt-BR" : "Suíça",
7366 "ru" : "Швейцария",
7367 "zh-CN" : "瑞士"
7368 }
7369 },
7370 "registered_country" : {
7371 "geoname_id" : 2658434,
7372 "iso_code" : "CH",
7373 "names" : {
7374 "de" : "Schweiz",
7375 "en" : "Switzerland",
7376 "es" : "Suiza",
7377 "fr" : "Suisse",
7378 "ja" : "スイス連邦",
7379 "pt-BR" : "Suíça",
7380 "ru" : "Швейцария",
7381 "zh-CN" : "瑞士"
7382 }
7383 }
7384 }
7385 },
7386 {
7387 "2a02:d780::/29" : {
7388 "continent" : {
7389 "code" : "AS",
7390 "geoname_id" : 6255147,
7391 "names" : {
7392 "de" : "Asien",
7393 "en" : "Asia",
7394 "es" : "Asia",
7395 "fr" : "Asie",
7396 "ja" : "アジア",
7397 "pt-BR" : "Ásia",
7398 "ru" : "Азия",
7399 "zh-CN" : "亚洲"
7400 }
7401 },
7402 "country" : {
7403 "geoname_id" : 130758,
7404 "iso_code" : "IR",
7405 "names" : {
7406 "de" : "Iran (Islamische Republik)",
7407 "en" : "Iran",
7408 "es" : "Irán (República Islámica)",
7409 "fr" : "Iran (République islamique de)",
7410 "ja" : "イラン・イスラム共和国",
7411 "pt-BR" : "República Islâmica do Irã",
7412 "ru" : "Иран",
7413 "zh-CN" : "伊朗伊斯兰共和国"
7414 }
7415 },
7416 "registered_country" : {
7417 "geoname_id" : 130758,
7418 "iso_code" : "IR",
7419 "names" : {
7420 "de" : "Iran (Islamische Republik)",
7421 "en" : "Iran",
7422 "es" : "Irán (República Islámica)",
7423 "fr" : "Iran (République islamique de)",
7424 "ja" : "イラン・イスラム共和国",
7425 "pt-BR" : "República Islâmica do Irã",
7426 "ru" : "Иран",
7427 "zh-CN" : "伊朗伊斯兰共和国"
7428 }
7429 }
7430 }
7431 },
7432 {
7433 "2a02:d7c0::/29" : {
7434 "continent" : {
7435 "code" : "EU",
7436 "geoname_id" : 6255148,
7437 "names" : {
7438 "de" : "Europa",
7439 "en" : "Europe",
7440 "es" : "Europa",
7441 "fr" : "Europe",
7442 "ja" : "ヨーロッパ",
7443 "pt-BR" : "Europa",
7444 "ru" : "Европа",
7445 "zh-CN" : "欧洲"
7446 }
7447 },
7448 "country" : {
7449 "geoname_id" : 3017382,
7450 "is_in_european_union" : true,
7451 "iso_code" : "FR",
7452 "names" : {
7453 "de" : "Frankreich",
7454 "en" : "France",
7455 "es" : "Francia",
7456 "fr" : "France",
7457 "ja" : "フランス共和国",
7458 "pt-BR" : "França",
7459 "ru" : "Франция",
7460 "zh-CN" : "法国"
7461 }
7462 },
7463 "registered_country" : {
7464 "geoname_id" : 3017382,
7465 "is_in_european_union" : true,
7466 "iso_code" : "FR",
7467 "names" : {
7468 "de" : "Frankreich",
7469 "en" : "France",
7470 "es" : "Francia",
7471 "fr" : "France",
7472 "ja" : "フランス共和国",
7473 "pt-BR" : "França",
7474 "ru" : "Франция",
7475 "zh-CN" : "法国"
7476 }
7477 }
7478 }
7479 },
7480 {
7481 "2a02:d800::/29" : {
7482 "continent" : {
7483 "code" : "EU",
7484 "geoname_id" : 6255148,
7485 "names" : {
7486 "de" : "Europa",
7487 "en" : "Europe",
7488 "es" : "Europa",
7489 "fr" : "Europe",
7490 "ja" : "ヨーロッパ",
7491 "pt-BR" : "Europa",
7492 "ru" : "Европа",
7493 "zh-CN" : "欧洲"
7494 }
7495 },
7496 "country" : {
7497 "geoname_id" : 798549,
7498 "is_in_european_union" : true,
7499 "iso_code" : "RO",
7500 "names" : {
7501 "de" : "Rumänien",
7502 "en" : "Romania",
7503 "es" : "Rumanía",
7504 "fr" : "Roumanie",
7505 "ja" : "ルーマニア",
7506 "pt-BR" : "Romênia",
7507 "ru" : "Румыния",
7508 "zh-CN" : "罗马尼亚"
7509 }
7510 },
7511 "registered_country" : {
7512 "geoname_id" : 798549,
7513 "is_in_european_union" : true,
7514 "iso_code" : "RO",
7515 "names" : {
7516 "de" : "Rumänien",
7517 "en" : "Romania",
7518 "es" : "Rumanía",
7519 "fr" : "Roumanie",
7520 "ja" : "ルーマニア",
7521 "pt-BR" : "Romênia",
7522 "ru" : "Румыния",
7523 "zh-CN" : "罗马尼亚"
7524 }
7525 }
7526 }
7527 },
7528 {
7529 "2a02:d840::/29" : {
7530 "continent" : {
7531 "code" : "EU",
7532 "geoname_id" : 6255148,
7533 "names" : {
7534 "de" : "Europa",
7535 "en" : "Europe",
7536 "es" : "Europa",
7537 "fr" : "Europe",
7538 "ja" : "ヨーロッパ",
7539 "pt-BR" : "Europa",
7540 "ru" : "Европа",
7541 "zh-CN" : "欧洲"
7542 }
7543 },
7544 "country" : {
7545 "geoname_id" : 2017370,
7546 "iso_code" : "RU",
7547 "names" : {
7548 "de" : "Russland",
7549 "en" : "Russia",
7550 "es" : "Rusia",
7551 "fr" : "Russie",
7552 "ja" : "ロシア",
7553 "pt-BR" : "Rússia",
7554 "ru" : "Россия",
7555 "zh-CN" : "俄罗斯"
7556 }
7557 },
7558 "registered_country" : {
7559 "geoname_id" : 2017370,
7560 "iso_code" : "RU",
7561 "names" : {
7562 "de" : "Russland",
7563 "en" : "Russia",
7564 "es" : "Rusia",
7565 "fr" : "Russie",
7566 "ja" : "ロシア",
7567 "pt-BR" : "Rússia",
7568 "ru" : "Россия",
7569 "zh-CN" : "俄罗斯"
7570 }
7571 }
7572 }
7573 },
7574 {
7575 "2a02:d880::/29" : {
7576 "continent" : {
7577 "code" : "EU",
7578 "geoname_id" : 6255148,
7579 "names" : {
7580 "de" : "Europa",
7581 "en" : "Europe",
7582 "es" : "Europa",
7583 "fr" : "Europe",
7584 "ja" : "ヨーロッパ",
7585 "pt-BR" : "Europa",
7586 "ru" : "Европа",
7587 "zh-CN" : "欧洲"
7588 }
7589 },
7590 "country" : {
7591 "geoname_id" : 2017370,
7592 "iso_code" : "RU",
7593 "names" : {
7594 "de" : "Russland",
7595 "en" : "Russia",
7596 "es" : "Rusia",
7597 "fr" : "Russie",
7598 "ja" : "ロシア",
7599 "pt-BR" : "Rússia",
7600 "ru" : "Россия",
7601 "zh-CN" : "俄罗斯"
7602 }
7603 },
7604 "registered_country" : {
7605 "geoname_id" : 2017370,
7606 "iso_code" : "RU",
7607 "names" : {
7608 "de" : "Russland",
7609 "en" : "Russia",
7610 "es" : "Rusia",
7611 "fr" : "Russie",
7612 "ja" : "ロシア",
7613 "pt-BR" : "Rússia",
7614 "ru" : "Россия",
7615 "zh-CN" : "俄罗斯"
7616 }
7617 }
7618 }
7619 },
7620 {
7621 "2a02:d8c0::/29" : {
7622 "continent" : {
7623 "code" : "EU",
7624 "geoname_id" : 6255148,
7625 "names" : {
7626 "de" : "Europa",
7627 "en" : "Europe",
7628 "es" : "Europa",
7629 "fr" : "Europe",
7630 "ja" : "ヨーロッパ",
7631 "pt-BR" : "Europa",
7632 "ru" : "Европа",
7633 "zh-CN" : "欧洲"
7634 }
7635 },
7636 "country" : {
7637 "geoname_id" : 3144096,
7638 "iso_code" : "NO",
7639 "names" : {
7640 "de" : "Norwegen",
7641 "en" : "Norway",
7642 "es" : "Noruega",
7643 "fr" : "Norvège",
7644 "ja" : "ノルウェー王国",
7645 "pt-BR" : "Noruega",
7646 "ru" : "Норвегия",
7647 "zh-CN" : "挪威"
7648 }
7649 },
7650 "registered_country" : {
7651 "geoname_id" : 3144096,
7652 "iso_code" : "NO",
7653 "names" : {
7654 "de" : "Norwegen",
7655 "en" : "Norway",
7656 "es" : "Noruega",
7657 "fr" : "Norvège",
7658 "ja" : "ノルウェー王国",
7659 "pt-BR" : "Noruega",
7660 "ru" : "Норвегия",
7661 "zh-CN" : "挪威"
7662 }
7663 }
7664 }
7665 },
7666 {
7667 "2a02:d900::/29" : {
7668 "continent" : {
7669 "code" : "EU",
7670 "geoname_id" : 6255148,
7671 "names" : {
7672 "de" : "Europa",
7673 "en" : "Europe",
7674 "es" : "Europa",
7675 "fr" : "Europe",
7676 "ja" : "ヨーロッパ",
7677 "pt-BR" : "Europa",
7678 "ru" : "Европа",
7679 "zh-CN" : "欧洲"
7680 }
7681 },
7682 "country" : {
7683 "geoname_id" : 2661886,
7684 "is_in_european_union" : true,
7685 "iso_code" : "SE",
7686 "names" : {
7687 "de" : "Schweden",
7688 "en" : "Sweden",
7689 "es" : "Suecia",
7690 "fr" : "Suède",
7691 "ja" : "スウェーデン王国",
7692 "pt-BR" : "Suécia",
7693 "ru" : "Швеция",
7694 "zh-CN" : "瑞典"
7695 }
7696 },
7697 "registered_country" : {
7698 "geoname_id" : 2661886,
7699 "is_in_european_union" : true,
7700 "iso_code" : "SE",
7701 "names" : {
7702 "de" : "Schweden",
7703 "en" : "Sweden",
7704 "es" : "Suecia",
7705 "fr" : "Suède",
7706 "ja" : "スウェーデン王国",
7707 "pt-BR" : "Suécia",
7708 "ru" : "Швеция",
7709 "zh-CN" : "瑞典"
7710 }
7711 }
7712 }
7713 },
7714 {
7715 "2a02:d940::/29" : {
7716 "continent" : {
7717 "code" : "EU",
7718 "geoname_id" : 6255148,
7719 "names" : {
7720 "de" : "Europa",
7721 "en" : "Europe",
7722 "es" : "Europa",
7723 "fr" : "Europe",
7724 "ja" : "ヨーロッパ",
7725 "pt-BR" : "Europa",
7726 "ru" : "Европа",
7727 "zh-CN" : "欧洲"
7728 }
7729 },
7730 "country" : {
7731 "geoname_id" : 2802361,
7732 "is_in_european_union" : true,
7733 "iso_code" : "BE",
7734 "names" : {
7735 "de" : "Belgien",
7736 "en" : "Belgium",
7737 "es" : "Bélgica",
7738 "fr" : "Belgique",
7739 "ja" : "ベルギー王国",
7740 "pt-BR" : "Bélgica",
7741 "ru" : "Бельгия",
7742 "zh-CN" : "比利时"
7743 }
7744 },
7745 "registered_country" : {
7746 "geoname_id" : 2802361,
7747 "is_in_european_union" : true,
7748 "iso_code" : "BE",
7749 "names" : {
7750 "de" : "Belgien",
7751 "en" : "Belgium",
7752 "es" : "Bélgica",
7753 "fr" : "Belgique",
7754 "ja" : "ベルギー王国",
7755 "pt-BR" : "Bélgica",
7756 "ru" : "Бельгия",
7757 "zh-CN" : "比利时"
7758 }
7759 }
7760 }
7761 },
7762 {
7763 "2a02:d980::/29" : {
7764 "continent" : {
7765 "code" : "AS",
7766 "geoname_id" : 6255147,
7767 "names" : {
7768 "de" : "Asien",
7769 "en" : "Asia",
7770 "es" : "Asia",
7771 "fr" : "Asie",
7772 "ja" : "アジア",
7773 "pt-BR" : "Ásia",
7774 "ru" : "Азия",
7775 "zh-CN" : "亚洲"
7776 }
7777 },
7778 "country" : {
7779 "geoname_id" : 298795,
7780 "iso_code" : "TR",
7781 "names" : {
7782 "de" : "Türkei",
7783 "en" : "Turkey",
7784 "es" : "Turquía",
7785 "fr" : "Turquie",
7786 "ja" : "トルコ共和国",
7787 "pt-BR" : "Turquia",
7788 "ru" : "Турция",
7789 "zh-CN" : "土耳其"
7790 }
7791 },
7792 "registered_country" : {
7793 "geoname_id" : 298795,
7794 "iso_code" : "TR",
7795 "names" : {
7796 "de" : "Türkei",
7797 "en" : "Turkey",
7798 "es" : "Turquía",
7799 "fr" : "Turquie",
7800 "ja" : "トルコ共和国",
7801 "pt-BR" : "Turquia",
7802 "ru" : "Турция",
7803 "zh-CN" : "土耳其"
7804 }
7805 }
7806 }
7807 },
7808 {
7809 "2a02:d9c0::/29" : {
7810 "continent" : {
7811 "code" : "AS",
7812 "geoname_id" : 6255147,
7813 "names" : {
7814 "de" : "Asien",
7815 "en" : "Asia",
7816 "es" : "Asia",
7817 "fr" : "Asie",
7818 "ja" : "アジア",
7819 "pt-BR" : "Ásia",
7820 "ru" : "Азия",
7821 "zh-CN" : "亚洲"
7822 }
7823 },
7824 "country" : {
7825 "geoname_id" : 298795,
7826 "iso_code" : "TR",
7827 "names" : {
7828 "de" : "Türkei",
7829 "en" : "Turkey",
7830 "es" : "Turquía",
7831 "fr" : "Turquie",
7832 "ja" : "トルコ共和国",
7833 "pt-BR" : "Turquia",
7834 "ru" : "Турция",
7835 "zh-CN" : "土耳其"
7836 }
7837 },
7838 "registered_country" : {
7839 "geoname_id" : 298795,
7840 "iso_code" : "TR",
7841 "names" : {
7842 "de" : "Türkei",
7843 "en" : "Turkey",
7844 "es" : "Turquía",
7845 "fr" : "Turquie",
7846 "ja" : "トルコ共和国",
7847 "pt-BR" : "Turquia",
7848 "ru" : "Турция",
7849 "zh-CN" : "土耳其"
7850 }
7851 }
7852 }
7853 },
7854 {
7855 "2a02:da00::/29" : {
7856 "continent" : {
7857 "code" : "EU",
7858 "geoname_id" : 6255148,
7859 "names" : {
7860 "de" : "Europa",
7861 "en" : "Europe",
7862 "es" : "Europa",
7863 "fr" : "Europe",
7864 "ja" : "ヨーロッパ",
7865 "pt-BR" : "Europa",
7866 "ru" : "Европа",
7867 "zh-CN" : "欧洲"
7868 }
7869 },
7870 "country" : {
7871 "geoname_id" : 2921044,
7872 "is_in_european_union" : true,
7873 "iso_code" : "DE",
7874 "names" : {
7875 "de" : "Deutschland",
7876 "en" : "Germany",
7877 "es" : "Alemania",
7878 "fr" : "Allemagne",
7879 "ja" : "ドイツ連邦共和国",
7880 "pt-BR" : "Alemanha",
7881 "ru" : "Германия",
7882 "zh-CN" : "德国"
7883 }
7884 },
7885 "registered_country" : {
7886 "geoname_id" : 2921044,
7887 "is_in_european_union" : true,
7888 "iso_code" : "DE",
7889 "names" : {
7890 "de" : "Deutschland",
7891 "en" : "Germany",
7892 "es" : "Alemania",
7893 "fr" : "Allemagne",
7894 "ja" : "ドイツ連邦共和国",
7895 "pt-BR" : "Alemanha",
7896 "ru" : "Германия",
7897 "zh-CN" : "德国"
7898 }
7899 }
7900 }
7901 },
7902 {
7903 "2a02:da40::/29" : {
7904 "continent" : {
7905 "code" : "EU",
7906 "geoname_id" : 6255148,
7907 "names" : {
7908 "de" : "Europa",
7909 "en" : "Europe",
7910 "es" : "Europa",
7911 "fr" : "Europe",
7912 "ja" : "ヨーロッパ",
7913 "pt-BR" : "Europa",
7914 "ru" : "Европа",
7915 "zh-CN" : "欧洲"
7916 }
7917 },
7918 "country" : {
7919 "geoname_id" : 2635167,
7920 "is_in_european_union" : true,
7921 "iso_code" : "GB",
7922 "names" : {
7923 "de" : "Vereinigtes Königreich",
7924 "en" : "United Kingdom",
7925 "es" : "Reino Unido",
7926 "fr" : "Royaume-Uni",
7927 "ja" : "イギリス",
7928 "pt-BR" : "Reino Unido",
7929 "ru" : "Великобритания",
7930 "zh-CN" : "英国"
7931 }
7932 },
7933 "registered_country" : {
7934 "geoname_id" : 2635167,
7935 "is_in_european_union" : true,
7936 "iso_code" : "GB",
7937 "names" : {
7938 "de" : "Vereinigtes Königreich",
7939 "en" : "United Kingdom",
7940 "es" : "Reino Unido",
7941 "fr" : "Royaume-Uni",
7942 "ja" : "イギリス",
7943 "pt-BR" : "Reino Unido",
7944 "ru" : "Великобритания",
7945 "zh-CN" : "英国"
7946 }
7947 }
7948 }
7949 },
7950 {
7951 "2a02:da80::/29" : {
7952 "continent" : {
7953 "code" : "EU",
7954 "geoname_id" : 6255148,
7955 "names" : {
7956 "de" : "Europa",
7957 "en" : "Europe",
7958 "es" : "Europa",
7959 "fr" : "Europe",
7960 "ja" : "ヨーロッパ",
7961 "pt-BR" : "Europa",
7962 "ru" : "Европа",
7963 "zh-CN" : "欧洲"
7964 }
7965 },
7966 "country" : {
7967 "geoname_id" : 2782113,
7968 "is_in_european_union" : true,
7969 "iso_code" : "AT",
7970 "names" : {
7971 "de" : "Österreich",
7972 "en" : "Austria",
7973 "es" : "Austria",
7974 "fr" : "Autriche",
7975 "ja" : "オーストリア共和国",
7976 "pt-BR" : "Áustria",
7977 "ru" : "Австрия",
7978 "zh-CN" : "奥地利"
7979 }
7980 },
7981 "registered_country" : {
7982 "geoname_id" : 2782113,
7983 "is_in_european_union" : true,
7984 "iso_code" : "AT",
7985 "names" : {
7986 "de" : "Österreich",
7987 "en" : "Austria",
7988 "es" : "Austria",
7989 "fr" : "Autriche",
7990 "ja" : "オーストリア共和国",
7991 "pt-BR" : "Áustria",
7992 "ru" : "Австрия",
7993 "zh-CN" : "奥地利"
7994 }
7995 }
7996 }
7997 },
7998 {
7999 "2a02:dac0::/29" : {
8000 "continent" : {
8001 "code" : "EU",
8002 "geoname_id" : 6255148,
8003 "names" : {
8004 "de" : "Europa",
8005 "en" : "Europe",
8006 "es" : "Europa",
8007 "fr" : "Europe",
8008 "ja" : "ヨーロッパ",
8009 "pt-BR" : "Europa",
8010 "ru" : "Европа",
8011 "zh-CN" : "欧洲"
8012 }
8013 },
8014 "country" : {
8015 "geoname_id" : 2017370,
8016 "iso_code" : "RU",
8017 "names" : {
8018 "de" : "Russland",
8019 "en" : "Russia",
8020 "es" : "Rusia",
8021 "fr" : "Russie",
8022 "ja" : "ロシア",
8023 "pt-BR" : "Rússia",
8024 "ru" : "Россия",
8025 "zh-CN" : "俄罗斯"
8026 }
8027 },
8028 "registered_country" : {
8029 "geoname_id" : 2017370,
8030 "iso_code" : "RU",
8031 "names" : {
8032 "de" : "Russland",
8033 "en" : "Russia",
8034 "es" : "Rusia",
8035 "fr" : "Russie",
8036 "ja" : "ロシア",
8037 "pt-BR" : "Rússia",
8038 "ru" : "Россия",
8039 "zh-CN" : "俄罗斯"
8040 }
8041 }
8042 }
8043 },
8044 {
8045 "2a02:db00::/29" : {
8046 "continent" : {
8047 "code" : "EU",
8048 "geoname_id" : 6255148,
8049 "names" : {
8050 "de" : "Europa",
8051 "en" : "Europe",
8052 "es" : "Europa",
8053 "fr" : "Europe",
8054 "ja" : "ヨーロッパ",
8055 "pt-BR" : "Europa",
8056 "ru" : "Европа",
8057 "zh-CN" : "欧洲"
8058 }
8059 },
8060 "country" : {
8061 "geoname_id" : 2921044,
8062 "is_in_european_union" : true,
8063 "iso_code" : "DE",
8064 "names" : {
8065 "de" : "Deutschland",
8066 "en" : "Germany",
8067 "es" : "Alemania",
8068 "fr" : "Allemagne",
8069 "ja" : "ドイツ連邦共和国",
8070 "pt-BR" : "Alemanha",
8071 "ru" : "Германия",
8072 "zh-CN" : "德国"
8073 }
8074 },
8075 "registered_country" : {
8076 "geoname_id" : 2921044,
8077 "is_in_european_union" : true,
8078 "iso_code" : "DE",
8079 "names" : {
8080 "de" : "Deutschland",
8081 "en" : "Germany",
8082 "es" : "Alemania",
8083 "fr" : "Allemagne",
8084 "ja" : "ドイツ連邦共和国",
8085 "pt-BR" : "Alemanha",
8086 "ru" : "Германия",
8087 "zh-CN" : "德国"
8088 }
8089 }
8090 }
8091 },
8092 {
8093 "2a02:db40::/29" : {
8094 "continent" : {
8095 "code" : "EU",
8096 "geoname_id" : 6255148,
8097 "names" : {
8098 "de" : "Europa",
8099 "en" : "Europe",
8100 "es" : "Europa",
8101 "fr" : "Europe",
8102 "ja" : "ヨーロッパ",
8103 "pt-BR" : "Europa",
8104 "ru" : "Европа",
8105 "zh-CN" : "欧洲"
8106 }
8107 },
8108 "country" : {
8109 "geoname_id" : 798549,
8110 "is_in_european_union" : true,
8111 "iso_code" : "RO",
8112 "names" : {
8113 "de" : "Rumänien",
8114 "en" : "Romania",
8115 "es" : "Rumanía",
8116 "fr" : "Roumanie",
8117 "ja" : "ルーマニア",
8118 "pt-BR" : "Romênia",
8119 "ru" : "Румыния",
8120 "zh-CN" : "罗马尼亚"
8121 }
8122 },
8123 "registered_country" : {
8124 "geoname_id" : 798549,
8125 "is_in_european_union" : true,
8126 "iso_code" : "RO",
8127 "names" : {
8128 "de" : "Rumänien",
8129 "en" : "Romania",
8130 "es" : "Rumanía",
8131 "fr" : "Roumanie",
8132 "ja" : "ルーマニア",
8133 "pt-BR" : "Romênia",
8134 "ru" : "Румыния",
8135 "zh-CN" : "罗马尼亚"
8136 }
8137 }
8138 }
8139 },
8140 {
8141 "2a02:db80::/29" : {
8142 "continent" : {
8143 "code" : "EU",
8144 "geoname_id" : 6255148,
8145 "names" : {
8146 "de" : "Europa",
8147 "en" : "Europe",
8148 "es" : "Europa",
8149 "fr" : "Europe",
8150 "ja" : "ヨーロッパ",
8151 "pt-BR" : "Europa",
8152 "ru" : "Европа",
8153 "zh-CN" : "欧洲"
8154 }
8155 },
8156 "country" : {
8157 "geoname_id" : 2017370,
8158 "iso_code" : "RU",
8159 "names" : {
8160 "de" : "Russland",
8161 "en" : "Russia",
8162 "es" : "Rusia",
8163 "fr" : "Russie",
8164 "ja" : "ロシア",
8165 "pt-BR" : "Rússia",
8166 "ru" : "Россия",
8167 "zh-CN" : "俄罗斯"
8168 }
8169 },
8170 "registered_country" : {
8171 "geoname_id" : 2017370,
8172 "iso_code" : "RU",
8173 "names" : {
8174 "de" : "Russland",
8175 "en" : "Russia",
8176 "es" : "Rusia",
8177 "fr" : "Russie",
8178 "ja" : "ロシア",
8179 "pt-BR" : "Rússia",
8180 "ru" : "Россия",
8181 "zh-CN" : "俄罗斯"
8182 }
8183 }
8184 }
8185 },
8186 {
8187 "2a02:dbc0::/29" : {
8188 "continent" : {
8189 "code" : "EU",
8190 "geoname_id" : 6255148,
8191 "names" : {
8192 "de" : "Europa",
8193 "en" : "Europe",
8194 "es" : "Europa",
8195 "fr" : "Europe",
8196 "ja" : "ヨーロッパ",
8197 "pt-BR" : "Europa",
8198 "ru" : "Европа",
8199 "zh-CN" : "欧洲"
8200 }
8201 },
8202 "country" : {
8203 "geoname_id" : 2017370,
8204 "iso_code" : "RU",
8205 "names" : {
8206 "de" : "Russland",
8207 "en" : "Russia",
8208 "es" : "Rusia",
8209 "fr" : "Russie",
8210 "ja" : "ロシア",
8211 "pt-BR" : "Rússia",
8212 "ru" : "Россия",
8213 "zh-CN" : "俄罗斯"
8214 }
8215 },
8216 "registered_country" : {
8217 "geoname_id" : 2017370,
8218 "iso_code" : "RU",
8219 "names" : {
8220 "de" : "Russland",
8221 "en" : "Russia",
8222 "es" : "Rusia",
8223 "fr" : "Russie",
8224 "ja" : "ロシア",
8225 "pt-BR" : "Rússia",
8226 "ru" : "Россия",
8227 "zh-CN" : "俄罗斯"
8228 }
8229 }
8230 }
8231 },
8232 {
8233 "2a02:dc00::/29" : {
8234 "continent" : {
8235 "code" : "EU",
8236 "geoname_id" : 6255148,
8237 "names" : {
8238 "de" : "Europa",
8239 "en" : "Europe",
8240 "es" : "Europa",
8241 "fr" : "Europe",
8242 "ja" : "ヨーロッパ",
8243 "pt-BR" : "Europa",
8244 "ru" : "Европа",
8245 "zh-CN" : "欧洲"
8246 }
8247 },
8248 "country" : {
8249 "geoname_id" : 2017370,
8250 "iso_code" : "RU",
8251 "names" : {
8252 "de" : "Russland",
8253 "en" : "Russia",
8254 "es" : "Rusia",
8255 "fr" : "Russie",
8256 "ja" : "ロシア",
8257 "pt-BR" : "Rússia",
8258 "ru" : "Россия",
8259 "zh-CN" : "俄罗斯"
8260 }
8261 },
8262 "registered_country" : {
8263 "geoname_id" : 2017370,
8264 "iso_code" : "RU",
8265 "names" : {
8266 "de" : "Russland",
8267 "en" : "Russia",
8268 "es" : "Rusia",
8269 "fr" : "Russie",
8270 "ja" : "ロシア",
8271 "pt-BR" : "Rússia",
8272 "ru" : "Россия",
8273 "zh-CN" : "俄罗斯"
8274 }
8275 }
8276 }
8277 },
8278 {
8279 "2a02:dc40::/29" : {
8280 "continent" : {
8281 "code" : "AS",
8282 "geoname_id" : 6255147,
8283 "names" : {
8284 "de" : "Asien",
8285 "en" : "Asia",
8286 "es" : "Asia",
8287 "fr" : "Asie",
8288 "ja" : "アジア",
8289 "pt-BR" : "Ásia",
8290 "ru" : "Азия",
8291 "zh-CN" : "亚洲"
8292 }
8293 },
8294 "country" : {
8295 "geoname_id" : 298795,
8296 "iso_code" : "TR",
8297 "names" : {
8298 "de" : "Türkei",
8299 "en" : "Turkey",
8300 "es" : "Turquía",
8301 "fr" : "Turquie",
8302 "ja" : "トルコ共和国",
8303 "pt-BR" : "Turquia",
8304 "ru" : "Турция",
8305 "zh-CN" : "土耳其"
8306 }
8307 },
8308 "registered_country" : {
8309 "geoname_id" : 298795,
8310 "iso_code" : "TR",
8311 "names" : {
8312 "de" : "Türkei",
8313 "en" : "Turkey",
8314 "es" : "Turquía",
8315 "fr" : "Turquie",
8316 "ja" : "トルコ共和国",
8317 "pt-BR" : "Turquia",
8318 "ru" : "Турция",
8319 "zh-CN" : "土耳其"
8320 }
8321 }
8322 }
8323 },
8324 {
8325 "2a02:dc80::/29" : {
8326 "continent" : {
8327 "code" : "EU",
8328 "geoname_id" : 6255148,
8329 "names" : {
8330 "de" : "Europa",
8331 "en" : "Europe",
8332 "es" : "Europa",
8333 "fr" : "Europe",
8334 "ja" : "ヨーロッパ",
8335 "pt-BR" : "Europa",
8336 "ru" : "Европа",
8337 "zh-CN" : "欧洲"
8338 }
8339 },
8340 "country" : {
8341 "geoname_id" : 2017370,
8342 "iso_code" : "RU",
8343 "names" : {
8344 "de" : "Russland",
8345 "en" : "Russia",
8346 "es" : "Rusia",
8347 "fr" : "Russie",
8348 "ja" : "ロシア",
8349 "pt-BR" : "Rússia",
8350 "ru" : "Россия",
8351 "zh-CN" : "俄罗斯"
8352 }
8353 },
8354 "registered_country" : {
8355 "geoname_id" : 2017370,
8356 "iso_code" : "RU",
8357 "names" : {
8358 "de" : "Russland",
8359 "en" : "Russia",
8360 "es" : "Rusia",
8361 "fr" : "Russie",
8362 "ja" : "ロシア",
8363 "pt-BR" : "Rússia",
8364 "ru" : "Россия",
8365 "zh-CN" : "俄罗斯"
8366 }
8367 }
8368 }
8369 },
8370 {
8371 "2a02:dcc0::/29" : {
8372 "continent" : {
8373 "code" : "EU",
8374 "geoname_id" : 6255148,
8375 "names" : {
8376 "de" : "Europa",
8377 "en" : "Europe",
8378 "es" : "Europa",
8379 "fr" : "Europe",
8380 "ja" : "ヨーロッパ",
8381 "pt-BR" : "Europa",
8382 "ru" : "Европа",
8383 "zh-CN" : "欧洲"
8384 }
8385 },
8386 "country" : {
8387 "geoname_id" : 690791,
8388 "iso_code" : "UA",
8389 "names" : {
8390 "de" : "Ukraine",
8391 "en" : "Ukraine",
8392 "es" : "Ucrania",
8393 "fr" : "Ukraine",
8394 "ja" : "ウクライナ共和国",
8395 "pt-BR" : "Ucrânia",
8396 "ru" : "Украина",
8397 "zh-CN" : "乌克兰"
8398 }
8399 },
8400 "registered_country" : {
8401 "geoname_id" : 690791,
8402 "iso_code" : "UA",
8403 "names" : {
8404 "de" : "Ukraine",
8405 "en" : "Ukraine",
8406 "es" : "Ucrania",
8407 "fr" : "Ukraine",
8408 "ja" : "ウクライナ共和国",
8409 "pt-BR" : "Ucrânia",
8410 "ru" : "Украина",
8411 "zh-CN" : "乌克兰"
8412 }
8413 }
8414 }
8415 },
8416 {
8417 "2a02:dd00::/29" : {
8418 "continent" : {
8419 "code" : "EU",
8420 "geoname_id" : 6255148,
8421 "names" : {
8422 "de" : "Europa",
8423 "en" : "Europe",
8424 "es" : "Europa",
8425 "fr" : "Europe",
8426 "ja" : "ヨーロッパ",
8427 "pt-BR" : "Europa",
8428 "ru" : "Европа",
8429 "zh-CN" : "欧洲"
8430 }
8431 },
8432 "country" : {
8433 "geoname_id" : 783754,
8434 "iso_code" : "AL",
8435 "names" : {
8436 "de" : "Albanien",
8437 "en" : "Albania",
8438 "es" : "Albania",
8439 "fr" : "Albanie",
8440 "ja" : "アルバニア共和国",
8441 "pt-BR" : "Albânia",
8442 "ru" : "Албания",
8443 "zh-CN" : "阿尔巴尼亚"
8444 }
8445 },
8446 "registered_country" : {
8447 "geoname_id" : 783754,
8448 "iso_code" : "AL",
8449 "names" : {
8450 "de" : "Albanien",
8451 "en" : "Albania",
8452 "es" : "Albania",
8453 "fr" : "Albanie",
8454 "ja" : "アルバニア共和国",
8455 "pt-BR" : "Albânia",
8456 "ru" : "Албания",
8457 "zh-CN" : "阿尔巴尼亚"
8458 }
8459 }
8460 }
8461 },
8462 {
8463 "2a02:dd40::/29" : {
8464 "continent" : {
8465 "code" : "EU",
8466 "geoname_id" : 6255148,
8467 "names" : {
8468 "de" : "Europa",
8469 "en" : "Europe",
8470 "es" : "Europa",
8471 "fr" : "Europe",
8472 "ja" : "ヨーロッパ",
8473 "pt-BR" : "Europa",
8474 "ru" : "Европа",
8475 "zh-CN" : "欧洲"
8476 }
8477 },
8478 "country" : {
8479 "geoname_id" : 2635167,
8480 "is_in_european_union" : true,
8481 "iso_code" : "GB",
8482 "names" : {
8483 "de" : "Vereinigtes Königreich",
8484 "en" : "United Kingdom",
8485 "es" : "Reino Unido",
8486 "fr" : "Royaume-Uni",
8487 "ja" : "イギリス",
8488 "pt-BR" : "Reino Unido",
8489 "ru" : "Великобритания",
8490 "zh-CN" : "英国"
8491 }
8492 },
8493 "registered_country" : {
8494 "geoname_id" : 2635167,
8495 "is_in_european_union" : true,
8496 "iso_code" : "GB",
8497 "names" : {
8498 "de" : "Vereinigtes Königreich",
8499 "en" : "United Kingdom",
8500 "es" : "Reino Unido",
8501 "fr" : "Royaume-Uni",
8502 "ja" : "イギリス",
8503 "pt-BR" : "Reino Unido",
8504 "ru" : "Великобритания",
8505 "zh-CN" : "英国"
8506 }
8507 }
8508 }
8509 },
8510 {
8511 "2a02:dd80::/29" : {
8512 "continent" : {
8513 "code" : "EU",
8514 "geoname_id" : 6255148,
8515 "names" : {
8516 "de" : "Europa",
8517 "en" : "Europe",
8518 "es" : "Europa",
8519 "fr" : "Europe",
8520 "ja" : "ヨーロッパ",
8521 "pt-BR" : "Europa",
8522 "ru" : "Европа",
8523 "zh-CN" : "欧洲"
8524 }
8525 },
8526 "country" : {
8527 "geoname_id" : 2661886,
8528 "is_in_european_union" : true,
8529 "iso_code" : "SE",
8530 "names" : {
8531 "de" : "Schweden",
8532 "en" : "Sweden",
8533 "es" : "Suecia",
8534 "fr" : "Suède",
8535 "ja" : "スウェーデン王国",
8536 "pt-BR" : "Suécia",
8537 "ru" : "Швеция",
8538 "zh-CN" : "瑞典"
8539 }
8540 },
8541 "registered_country" : {
8542 "geoname_id" : 2661886,
8543 "is_in_european_union" : true,
8544 "iso_code" : "SE",
8545 "names" : {
8546 "de" : "Schweden",
8547 "en" : "Sweden",
8548 "es" : "Suecia",
8549 "fr" : "Suède",
8550 "ja" : "スウェーデン王国",
8551 "pt-BR" : "Suécia",
8552 "ru" : "Швеция",
8553 "zh-CN" : "瑞典"
8554 }
8555 }
8556 }
8557 },
8558 {
8559 "2a02:ddc0::/29" : {
8560 "continent" : {
8561 "code" : "EU",
8562 "geoname_id" : 6255148,
8563 "names" : {
8564 "de" : "Europa",
8565 "en" : "Europe",
8566 "es" : "Europa",
8567 "fr" : "Europe",
8568 "ja" : "ヨーロッパ",
8569 "pt-BR" : "Europa",
8570 "ru" : "Европа",
8571 "zh-CN" : "欧洲"
8572 }
8573 },
8574 "country" : {
8575 "geoname_id" : 2017370,
8576 "iso_code" : "RU",
8577 "names" : {
8578 "de" : "Russland",
8579 "en" : "Russia",
8580 "es" : "Rusia",
8581 "fr" : "Russie",
8582 "ja" : "ロシア",
8583 "pt-BR" : "Rússia",
8584 "ru" : "Россия",
8585 "zh-CN" : "俄罗斯"
8586 }
8587 },
8588 "registered_country" : {
8589 "geoname_id" : 2017370,
8590 "iso_code" : "RU",
8591 "names" : {
8592 "de" : "Russland",
8593 "en" : "Russia",
8594 "es" : "Rusia",
8595 "fr" : "Russie",
8596 "ja" : "ロシア",
8597 "pt-BR" : "Rússia",
8598 "ru" : "Россия",
8599 "zh-CN" : "俄罗斯"
8600 }
8601 }
8602 }
8603 },
8604 {
8605 "2a02:de00::/29" : {
8606 "continent" : {
8607 "code" : "EU",
8608 "geoname_id" : 6255148,
8609 "names" : {
8610 "de" : "Europa",
8611 "en" : "Europe",
8612 "es" : "Europa",
8613 "fr" : "Europe",
8614 "ja" : "ヨーロッパ",
8615 "pt-BR" : "Europa",
8616 "ru" : "Европа",
8617 "zh-CN" : "欧洲"
8618 }
8619 },
8620 "country" : {
8621 "geoname_id" : 2017370,
8622 "iso_code" : "RU",
8623 "names" : {
8624 "de" : "Russland",
8625 "en" : "Russia",
8626 "es" : "Rusia",
8627 "fr" : "Russie",
8628 "ja" : "ロシア",
8629 "pt-BR" : "Rússia",
8630 "ru" : "Россия",
8631 "zh-CN" : "俄罗斯"
8632 }
8633 },
8634 "registered_country" : {
8635 "geoname_id" : 2017370,
8636 "iso_code" : "RU",
8637 "names" : {
8638 "de" : "Russland",
8639 "en" : "Russia",
8640 "es" : "Rusia",
8641 "fr" : "Russie",
8642 "ja" : "ロシア",
8643 "pt-BR" : "Rússia",
8644 "ru" : "Россия",
8645 "zh-CN" : "俄罗斯"
8646 }
8647 }
8648 }
8649 },
8650 {
8651 "2a02:de40::/29" : {
8652 "continent" : {
8653 "code" : "AS",
8654 "geoname_id" : 6255147,
8655 "names" : {
8656 "de" : "Asien",
8657 "en" : "Asia",
8658 "es" : "Asia",
8659 "fr" : "Asie",
8660 "ja" : "アジア",
8661 "pt-BR" : "Ásia",
8662 "ru" : "Азия",
8663 "zh-CN" : "亚洲"
8664 }
8665 },
8666 "country" : {
8667 "geoname_id" : 294640,
8668 "iso_code" : "IL",
8669 "names" : {
8670 "de" : "Israel",
8671 "en" : "Israel",
8672 "es" : "Israel",
8673 "fr" : "Israël",
8674 "ja" : "イスラエル国",
8675 "pt-BR" : "Israel",
8676 "ru" : "Израиль",
8677 "zh-CN" : "以色列"
8678 }
8679 },
8680 "registered_country" : {
8681 "geoname_id" : 294640,
8682 "iso_code" : "IL",
8683 "names" : {
8684 "de" : "Israel",
8685 "en" : "Israel",
8686 "es" : "Israel",
8687 "fr" : "Israël",
8688 "ja" : "イスラエル国",
8689 "pt-BR" : "Israel",
8690 "ru" : "Израиль",
8691 "zh-CN" : "以色列"
8692 }
8693 }
8694 }
8695 },
8696 {
8697 "2a02:de80::/29" : {
8698 "continent" : {
8699 "code" : "EU",
8700 "geoname_id" : 6255148,
8701 "names" : {
8702 "de" : "Europa",
8703 "en" : "Europe",
8704 "es" : "Europa",
8705 "fr" : "Europe",
8706 "ja" : "ヨーロッパ",
8707 "pt-BR" : "Europa",
8708 "ru" : "Европа",
8709 "zh-CN" : "欧洲"
8710 }
8711 },
8712 "country" : {
8713 "geoname_id" : 2017370,
8714 "iso_code" : "RU",
8715 "names" : {
8716 "de" : "Russland",
8717 "en" : "Russia",
8718 "es" : "Rusia",
8719 "fr" : "Russie",
8720 "ja" : "ロシア",
8721 "pt-BR" : "Rússia",
8722 "ru" : "Россия",
8723 "zh-CN" : "俄罗斯"
8724 }
8725 },
8726 "registered_country" : {
8727 "geoname_id" : 2017370,
8728 "iso_code" : "RU",
8729 "names" : {
8730 "de" : "Russland",
8731 "en" : "Russia",
8732 "es" : "Rusia",
8733 "fr" : "Russie",
8734 "ja" : "ロシア",
8735 "pt-BR" : "Rússia",
8736 "ru" : "Россия",
8737 "zh-CN" : "俄罗斯"
8738 }
8739 }
8740 }
8741 },
8742 {
8743 "2a02:dec0::/29" : {
8744 "continent" : {
8745 "code" : "AS",
8746 "geoname_id" : 6255147,
8747 "names" : {
8748 "de" : "Asien",
8749 "en" : "Asia",
8750 "es" : "Asia",
8751 "fr" : "Asie",
8752 "ja" : "アジア",
8753 "pt-BR" : "Ásia",
8754 "ru" : "Азия",
8755 "zh-CN" : "亚洲"
8756 }
8757 },
8758 "country" : {
8759 "geoname_id" : 272103,
8760 "iso_code" : "LB",
8761 "names" : {
8762 "de" : "Libanon",
8763 "en" : "Lebanon",
8764 "es" : "Líbano",
8765 "fr" : "Liban",
8766 "ja" : "レバノン共和国",
8767 "pt-BR" : "Líbano",
8768 "ru" : "Ливан",
8769 "zh-CN" : "黎巴嫩"
8770 }
8771 },
8772 "registered_country" : {
8773 "geoname_id" : 272103,
8774 "iso_code" : "LB",
8775 "names" : {
8776 "de" : "Libanon",
8777 "en" : "Lebanon",
8778 "es" : "Líbano",
8779 "fr" : "Liban",
8780 "ja" : "レバノン共和国",
8781 "pt-BR" : "Líbano",
8782 "ru" : "Ливан",
8783 "zh-CN" : "黎巴嫩"
8784 }
8785 }
8786 }
8787 },
8788 {
8789 "2a02:df00::/29" : {
8790 "continent" : {
8791 "code" : "AS",
8792 "geoname_id" : 6255147,
8793 "names" : {
8794 "de" : "Asien",
8795 "en" : "Asia",
8796 "es" : "Asia",
8797 "fr" : "Asie",
8798 "ja" : "アジア",
8799 "pt-BR" : "Ásia",
8800 "ru" : "Азия",
8801 "zh-CN" : "亚洲"
8802 }
8803 },
8804 "country" : {
8805 "geoname_id" : 130758,
8806 "iso_code" : "IR",
8807 "names" : {
8808 "de" : "Iran (Islamische Republik)",
8809 "en" : "Iran",
8810 "es" : "Irán (República Islámica)",
8811 "fr" : "Iran (République islamique de)",
8812 "ja" : "イラン・イスラム共和国",
8813 "pt-BR" : "República Islâmica do Irã",
8814 "ru" : "Иран",
8815 "zh-CN" : "伊朗伊斯兰共和国"
8816 }
8817 },
8818 "registered_country" : {
8819 "geoname_id" : 130758,
8820 "iso_code" : "IR",
8821 "names" : {
8822 "de" : "Iran (Islamische Republik)",
8823 "en" : "Iran",
8824 "es" : "Irán (República Islámica)",
8825 "fr" : "Iran (République islamique de)",
8826 "ja" : "イラン・イスラム共和国",
8827 "pt-BR" : "República Islâmica do Irã",
8828 "ru" : "Иран",
8829 "zh-CN" : "伊朗伊斯兰共和国"
8830 }
8831 }
8832 }
8833 },
8834 {
8835 "2a02:df40::/29" : {
8836 "continent" : {
8837 "code" : "AS",
8838 "geoname_id" : 6255147,
8839 "names" : {
8840 "de" : "Asien",
8841 "en" : "Asia",
8842 "es" : "Asia",
8843 "fr" : "Asie",
8844 "ja" : "アジア",
8845 "pt-BR" : "Ásia",
8846 "ru" : "Азия",
8847 "zh-CN" : "亚洲"
8848 }
8849 },
8850 "country" : {
8851 "geoname_id" : 298795,
8852 "iso_code" : "TR",
8853 "names" : {
8854 "de" : "Türkei",
8855 "en" : "Turkey",
8856 "es" : "Turquía",
8857 "fr" : "Turquie",
8858 "ja" : "トルコ共和国",
8859 "pt-BR" : "Turquia",
8860 "ru" : "Турция",
8861 "zh-CN" : "土耳其"
8862 }
8863 },
8864 "registered_country" : {
8865 "geoname_id" : 298795,
8866 "iso_code" : "TR",
8867 "names" : {
8868 "de" : "Türkei",
8869 "en" : "Turkey",
8870 "es" : "Turquía",
8871 "fr" : "Turquie",
8872 "ja" : "トルコ共和国",
8873 "pt-BR" : "Turquia",
8874 "ru" : "Турция",
8875 "zh-CN" : "土耳其"
8876 }
8877 }
8878 }
8879 },
8880 {
8881 "2a02:df80::/29" : {
8882 "continent" : {
8883 "code" : "EU",
8884 "geoname_id" : 6255148,
8885 "names" : {
8886 "de" : "Europa",
8887 "en" : "Europe",
8888 "es" : "Europa",
8889 "fr" : "Europe",
8890 "ja" : "ヨーロッパ",
8891 "pt-BR" : "Europa",
8892 "ru" : "Европа",
8893 "zh-CN" : "欧洲"
8894 }
8895 },
8896 "country" : {
8897 "geoname_id" : 2635167,
8898 "is_in_european_union" : true,
8899 "iso_code" : "GB",
8900 "names" : {
8901 "de" : "Vereinigtes Königreich",
8902 "en" : "United Kingdom",
8903 "es" : "Reino Unido",
8904 "fr" : "Royaume-Uni",
8905 "ja" : "イギリス",
8906 "pt-BR" : "Reino Unido",
8907 "ru" : "Великобритания",
8908 "zh-CN" : "英国"
8909 }
8910 },
8911 "registered_country" : {
8912 "geoname_id" : 2635167,
8913 "is_in_european_union" : true,
8914 "iso_code" : "GB",
8915 "names" : {
8916 "de" : "Vereinigtes Königreich",
8917 "en" : "United Kingdom",
8918 "es" : "Reino Unido",
8919 "fr" : "Royaume-Uni",
8920 "ja" : "イギリス",
8921 "pt-BR" : "Reino Unido",
8922 "ru" : "Великобритания",
8923 "zh-CN" : "英国"
8924 }
8925 }
8926 }
8927 },
8928 {
8929 "2a02:dfc0::/29" : {
8930 "continent" : {
8931 "code" : "AS",
8932 "geoname_id" : 6255147,
8933 "names" : {
8934 "de" : "Asien",
8935 "en" : "Asia",
8936 "es" : "Asia",
8937 "fr" : "Asie",
8938 "ja" : "アジア",
8939 "pt-BR" : "Ásia",
8940 "ru" : "Азия",
8941 "zh-CN" : "亚洲"
8942 }
8943 },
8944 "country" : {
8945 "geoname_id" : 130758,
8946 "iso_code" : "IR",
8947 "names" : {
8948 "de" : "Iran (Islamische Republik)",
8949 "en" : "Iran",
8950 "es" : "Irán (República Islámica)",
8951 "fr" : "Iran (République islamique de)",
8952 "ja" : "イラン・イスラム共和国",
8953 "pt-BR" : "República Islâmica do Irã",
8954 "ru" : "Иран",
8955 "zh-CN" : "伊朗伊斯兰共和国"
8956 }
8957 },
8958 "registered_country" : {
8959 "geoname_id" : 130758,
8960 "iso_code" : "IR",
8961 "names" : {
8962 "de" : "Iran (Islamische Republik)",
8963 "en" : "Iran",
8964 "es" : "Irán (República Islámica)",
8965 "fr" : "Iran (République islamique de)",
8966 "ja" : "イラン・イスラム共和国",
8967 "pt-BR" : "República Islâmica do Irã",
8968 "ru" : "Иран",
8969 "zh-CN" : "伊朗伊斯兰共和国"
8970 }
8971 }
8972 }
8973 },
8974 {
8975 "2a02:e000::/29" : {
8976 "continent" : {
8977 "code" : "EU",
8978 "geoname_id" : 6255148,
8979 "names" : {
8980 "de" : "Europa",
8981 "en" : "Europe",
8982 "es" : "Europa",
8983 "fr" : "Europe",
8984 "ja" : "ヨーロッパ",
8985 "pt-BR" : "Europa",
8986 "ru" : "Европа",
8987 "zh-CN" : "欧洲"
8988 }
8989 },
8990 "country" : {
8991 "geoname_id" : 3017382,
8992 "is_in_european_union" : true,
8993 "iso_code" : "FR",
8994 "names" : {
8995 "de" : "Frankreich",
8996 "en" : "France",
8997 "es" : "Francia",
8998 "fr" : "France",
8999 "ja" : "フランス共和国",
9000 "pt-BR" : "França",
9001 "ru" : "Франция",
9002 "zh-CN" : "法国"
9003 }
9004 },
9005 "registered_country" : {
9006 "geoname_id" : 3017382,
9007 "is_in_european_union" : true,
9008 "iso_code" : "FR",
9009 "names" : {
9010 "de" : "Frankreich",
9011 "en" : "France",
9012 "es" : "Francia",
9013 "fr" : "France",
9014 "ja" : "フランス共和国",
9015 "pt-BR" : "França",
9016 "ru" : "Франция",
9017 "zh-CN" : "法国"
9018 }
9019 }
9020 }
9021 },
9022 {
9023 "2a02:e040::/29" : {
9024 "continent" : {
9025 "code" : "EU",
9026 "geoname_id" : 6255148,
9027 "names" : {
9028 "de" : "Europa",
9029 "en" : "Europe",
9030 "es" : "Europa",
9031 "fr" : "Europe",
9032 "ja" : "ヨーロッパ",
9033 "pt-BR" : "Europa",
9034 "ru" : "Европа",
9035 "zh-CN" : "欧洲"
9036 }
9037 },
9038 "country" : {
9039 "geoname_id" : 2750405,
9040 "is_in_european_union" : true,
9041 "iso_code" : "NL",
9042 "names" : {
9043 "de" : "Niederlande",
9044 "en" : "Netherlands",
9045 "es" : "Holanda",
9046 "fr" : "Pays-Bas",
9047 "ja" : "オランダ王国",
9048 "pt-BR" : "Países Baixos",
9049 "ru" : "Нидерланды",
9050 "zh-CN" : "荷兰"
9051 }
9052 },
9053 "registered_country" : {
9054 "geoname_id" : 2750405,
9055 "is_in_european_union" : true,
9056 "iso_code" : "NL",
9057 "names" : {
9058 "de" : "Niederlande",
9059 "en" : "Netherlands",
9060 "es" : "Holanda",
9061 "fr" : "Pays-Bas",
9062 "ja" : "オランダ王国",
9063 "pt-BR" : "Países Baixos",
9064 "ru" : "Нидерланды",
9065 "zh-CN" : "荷兰"
9066 }
9067 }
9068 }
9069 },
9070 {
9071 "2a02:e080::/29" : {
9072 "continent" : {
9073 "code" : "AS",
9074 "geoname_id" : 6255147,
9075 "names" : {
9076 "de" : "Asien",
9077 "en" : "Asia",
9078 "es" : "Asia",
9079 "fr" : "Asie",
9080 "ja" : "アジア",
9081 "pt-BR" : "Ásia",
9082 "ru" : "Азия",
9083 "zh-CN" : "亚洲"
9084 }
9085 },
9086 "country" : {
9087 "geoname_id" : 285570,
9088 "iso_code" : "KW",
9089 "names" : {
9090 "de" : "Kuwait",
9091 "en" : "Kuwait",
9092 "es" : "Kuwait",
9093 "fr" : "Koweït",
9094 "ja" : "クウェート",
9095 "pt-BR" : "Kuwait",
9096 "ru" : "Кувейт",
9097 "zh-CN" : "科威特"
9098 }
9099 },
9100 "registered_country" : {
9101 "geoname_id" : 285570,
9102 "iso_code" : "KW",
9103 "names" : {
9104 "de" : "Kuwait",
9105 "en" : "Kuwait",
9106 "es" : "Kuwait",
9107 "fr" : "Koweït",
9108 "ja" : "クウェート",
9109 "pt-BR" : "Kuwait",
9110 "ru" : "Кувейт",
9111 "zh-CN" : "科威特"
9112 }
9113 }
9114 }
9115 },
9116 {
9117 "2a02:e0c0::/29" : {
9118 "continent" : {
9119 "code" : "EU",
9120 "geoname_id" : 6255148,
9121 "names" : {
9122 "de" : "Europa",
9123 "en" : "Europe",
9124 "es" : "Europa",
9125 "fr" : "Europe",
9126 "ja" : "ヨーロッパ",
9127 "pt-BR" : "Europa",
9128 "ru" : "Европа",
9129 "zh-CN" : "欧洲"
9130 }
9131 },
9132 "country" : {
9133 "geoname_id" : 2658434,
9134 "iso_code" : "CH",
9135 "names" : {
9136 "de" : "Schweiz",
9137 "en" : "Switzerland",
9138 "es" : "Suiza",
9139 "fr" : "Suisse",
9140 "ja" : "スイス連邦",
9141 "pt-BR" : "Suíça",
9142 "ru" : "Швейцария",
9143 "zh-CN" : "瑞士"
9144 }
9145 },
9146 "registered_country" : {
9147 "geoname_id" : 2658434,
9148 "iso_code" : "CH",
9149 "names" : {
9150 "de" : "Schweiz",
9151 "en" : "Switzerland",
9152 "es" : "Suiza",
9153 "fr" : "Suisse",
9154 "ja" : "スイス連邦",
9155 "pt-BR" : "Suíça",
9156 "ru" : "Швейцария",
9157 "zh-CN" : "瑞士"
9158 }
9159 }
9160 }
9161 },
9162 {
9163 "2a02:e100::/29" : {
9164 "continent" : {
9165 "code" : "EU",
9166 "geoname_id" : 6255148,
9167 "names" : {
9168 "de" : "Europa",
9169 "en" : "Europe",
9170 "es" : "Europa",
9171 "fr" : "Europe",
9172 "ja" : "ヨーロッパ",
9173 "pt-BR" : "Europa",
9174 "ru" : "Европа",
9175 "zh-CN" : "欧洲"
9176 }
9177 },
9178 "country" : {
9179 "geoname_id" : 2635167,
9180 "is_in_european_union" : true,
9181 "iso_code" : "GB",
9182 "names" : {
9183 "de" : "Vereinigtes Königreich",
9184 "en" : "United Kingdom",
9185 "es" : "Reino Unido",
9186 "fr" : "Royaume-Uni",
9187 "ja" : "イギリス",
9188 "pt-BR" : "Reino Unido",
9189 "ru" : "Великобритания",
9190 "zh-CN" : "英国"
9191 }
9192 },
9193 "registered_country" : {
9194 "geoname_id" : 2635167,
9195 "is_in_european_union" : true,
9196 "iso_code" : "GB",
9197 "names" : {
9198 "de" : "Vereinigtes Königreich",
9199 "en" : "United Kingdom",
9200 "es" : "Reino Unido",
9201 "fr" : "Royaume-Uni",
9202 "ja" : "イギリス",
9203 "pt-BR" : "Reino Unido",
9204 "ru" : "Великобритания",
9205 "zh-CN" : "英国"
9206 }
9207 }
9208 }
9209 },
9210 {
9211 "2a02:e140::/29" : {
9212 "continent" : {
9213 "code" : "EU",
9214 "geoname_id" : 6255148,
9215 "names" : {
9216 "de" : "Europa",
9217 "en" : "Europe",
9218 "es" : "Europa",
9219 "fr" : "Europe",
9220 "ja" : "ヨーロッパ",
9221 "pt-BR" : "Europa",
9222 "ru" : "Европа",
9223 "zh-CN" : "欧洲"
9224 }
9225 },
9226 "country" : {
9227 "geoname_id" : 798544,
9228 "is_in_european_union" : true,
9229 "iso_code" : "PL",
9230 "names" : {
9231 "de" : "Polen",
9232 "en" : "Poland",
9233 "es" : "Polonia",
9234 "fr" : "Pologne",
9235 "ja" : "ポーランド共和国",
9236 "pt-BR" : "Polônia",
9237 "ru" : "Польша",
9238 "zh-CN" : "波兰"
9239 }
9240 },
9241 "registered_country" : {
9242 "geoname_id" : 798544,
9243 "is_in_european_union" : true,
9244 "iso_code" : "PL",
9245 "names" : {
9246 "de" : "Polen",
9247 "en" : "Poland",
9248 "es" : "Polonia",
9249 "fr" : "Pologne",
9250 "ja" : "ポーランド共和国",
9251 "pt-BR" : "Polônia",
9252 "ru" : "Польша",
9253 "zh-CN" : "波兰"
9254 }
9255 }
9256 }
9257 },
9258 {
9259 "2a02:e180::/29" : {
9260 "continent" : {
9261 "code" : "EU",
9262 "geoname_id" : 6255148,
9263 "names" : {
9264 "de" : "Europa",
9265 "en" : "Europe",
9266 "es" : "Europa",
9267 "fr" : "Europe",
9268 "ja" : "ヨーロッパ",
9269 "pt-BR" : "Europa",
9270 "ru" : "Европа",
9271 "zh-CN" : "欧洲"
9272 }
9273 },
9274 "country" : {
9275 "geoname_id" : 2635167,
9276 "is_in_european_union" : true,
9277 "iso_code" : "GB",
9278 "names" : {
9279 "de" : "Vereinigtes Königreich",
9280 "en" : "United Kingdom",
9281 "es" : "Reino Unido",
9282 "fr" : "Royaume-Uni",
9283 "ja" : "イギリス",
9284 "pt-BR" : "Reino Unido",
9285 "ru" : "Великобритания",
9286 "zh-CN" : "英国"
9287 }
9288 },
9289 "registered_country" : {
9290 "geoname_id" : 2635167,
9291 "is_in_european_union" : true,
9292 "iso_code" : "GB",
9293 "names" : {
9294 "de" : "Vereinigtes Königreich",
9295 "en" : "United Kingdom",
9296 "es" : "Reino Unido",
9297 "fr" : "Royaume-Uni",
9298 "ja" : "イギリス",
9299 "pt-BR" : "Reino Unido",
9300 "ru" : "Великобритания",
9301 "zh-CN" : "英国"
9302 }
9303 }
9304 }
9305 },
9306 {
9307 "2a02:e1c0::/29" : {
9308 "continent" : {
9309 "code" : "EU",
9310 "geoname_id" : 6255148,
9311 "names" : {
9312 "de" : "Europa",
9313 "en" : "Europe",
9314 "es" : "Europa",
9315 "fr" : "Europe",
9316 "ja" : "ヨーロッパ",
9317 "pt-BR" : "Europa",
9318 "ru" : "Европа",
9319 "zh-CN" : "欧洲"
9320 }
9321 },
9322 "country" : {
9323 "geoname_id" : 2750405,
9324 "is_in_european_union" : true,
9325 "iso_code" : "NL",
9326 "names" : {
9327 "de" : "Niederlande",
9328 "en" : "Netherlands",
9329 "es" : "Holanda",
9330 "fr" : "Pays-Bas",
9331 "ja" : "オランダ王国",
9332 "pt-BR" : "Países Baixos",
9333 "ru" : "Нидерланды",
9334 "zh-CN" : "荷兰"
9335 }
9336 },
9337 "registered_country" : {
9338 "geoname_id" : 2750405,
9339 "is_in_european_union" : true,
9340 "iso_code" : "NL",
9341 "names" : {
9342 "de" : "Niederlande",
9343 "en" : "Netherlands",
9344 "es" : "Holanda",
9345 "fr" : "Pays-Bas",
9346 "ja" : "オランダ王国",
9347 "pt-BR" : "Países Baixos",
9348 "ru" : "Нидерланды",
9349 "zh-CN" : "荷兰"
9350 }
9351 }
9352 }
9353 },
9354 {
9355 "2a02:e200::/30" : {
9356 "continent" : {
9357 "code" : "EU",
9358 "geoname_id" : 6255148,
9359 "names" : {
9360 "de" : "Europa",
9361 "en" : "Europe",
9362 "es" : "Europa",
9363 "fr" : "Europe",
9364 "ja" : "ヨーロッパ",
9365 "pt-BR" : "Europa",
9366 "ru" : "Европа",
9367 "zh-CN" : "欧洲"
9368 }
9369 },
9370 "country" : {
9371 "geoname_id" : 2782113,
9372 "is_in_european_union" : true,
9373 "iso_code" : "AT",
9374 "names" : {
9375 "de" : "Österreich",
9376 "en" : "Austria",
9377 "es" : "Austria",
9378 "fr" : "Autriche",
9379 "ja" : "オーストリア共和国",
9380 "pt-BR" : "Áustria",
9381 "ru" : "Австрия",
9382 "zh-CN" : "奥地利"
9383 }
9384 },
9385 "registered_country" : {
9386 "geoname_id" : 2782113,
9387 "is_in_european_union" : true,
9388 "iso_code" : "AT",
9389 "names" : {
9390 "de" : "Österreich",
9391 "en" : "Austria",
9392 "es" : "Austria",
9393 "fr" : "Autriche",
9394 "ja" : "オーストリア共和国",
9395 "pt-BR" : "Áustria",
9396 "ru" : "Австрия",
9397 "zh-CN" : "奥地利"
9398 }
9399 }
9400 }
9401 },
9402 {
9403 "2a02:e220::/30" : {
9404 "continent" : {
9405 "code" : "AS",
9406 "geoname_id" : 6255147,
9407 "names" : {
9408 "de" : "Asien",
9409 "en" : "Asia",
9410 "es" : "Asia",
9411 "fr" : "Asie",
9412 "ja" : "アジア",
9413 "pt-BR" : "Ásia",
9414 "ru" : "Азия",
9415 "zh-CN" : "亚洲"
9416 }
9417 },
9418 "country" : {
9419 "geoname_id" : 102358,
9420 "iso_code" : "SA",
9421 "names" : {
9422 "de" : "Saudi-Arabien",
9423 "en" : "Saudi Arabia",
9424 "es" : "Arabia Saudita",
9425 "fr" : "Arabie saoudite",
9426 "ja" : "サウジアラビア王国",
9427 "pt-BR" : "Arábia Saudita",
9428 "ru" : "Саудовская Аравия",
9429 "zh-CN" : "沙特阿拉伯"
9430 }
9431 },
9432 "registered_country" : {
9433 "geoname_id" : 102358,
9434 "iso_code" : "SA",
9435 "names" : {
9436 "de" : "Saudi-Arabien",
9437 "en" : "Saudi Arabia",
9438 "es" : "Arabia Saudita",
9439 "fr" : "Arabie saoudite",
9440 "ja" : "サウジアラビア王国",
9441 "pt-BR" : "Arábia Saudita",
9442 "ru" : "Саудовская Аравия",
9443 "zh-CN" : "沙特阿拉伯"
9444 }
9445 }
9446 }
9447 },
9448 {
9449 "2a02:e240::/29" : {
9450 "continent" : {
9451 "code" : "EU",
9452 "geoname_id" : 6255148,
9453 "names" : {
9454 "de" : "Europa",
9455 "en" : "Europe",
9456 "es" : "Europa",
9457 "fr" : "Europe",
9458 "ja" : "ヨーロッパ",
9459 "pt-BR" : "Europa",
9460 "ru" : "Европа",
9461 "zh-CN" : "欧洲"
9462 }
9463 },
9464 "country" : {
9465 "geoname_id" : 2921044,
9466 "is_in_european_union" : true,
9467 "iso_code" : "DE",
9468 "names" : {
9469 "de" : "Deutschland",
9470 "en" : "Germany",
9471 "es" : "Alemania",
9472 "fr" : "Allemagne",
9473 "ja" : "ドイツ連邦共和国",
9474 "pt-BR" : "Alemanha",
9475 "ru" : "Германия",
9476 "zh-CN" : "德国"
9477 }
9478 },
9479 "registered_country" : {
9480 "geoname_id" : 2921044,
9481 "is_in_european_union" : true,
9482 "iso_code" : "DE",
9483 "names" : {
9484 "de" : "Deutschland",
9485 "en" : "Germany",
9486 "es" : "Alemania",
9487 "fr" : "Allemagne",
9488 "ja" : "ドイツ連邦共和国",
9489 "pt-BR" : "Alemanha",
9490 "ru" : "Германия",
9491 "zh-CN" : "德国"
9492 }
9493 }
9494 }
9495 },
9496 {
9497 "2a02:e280::/29" : {
9498 "continent" : {
9499 "code" : "EU",
9500 "geoname_id" : 6255148,
9501 "names" : {
9502 "de" : "Europa",
9503 "en" : "Europe",
9504 "es" : "Europa",
9505 "fr" : "Europe",
9506 "ja" : "ヨーロッパ",
9507 "pt-BR" : "Europa",
9508 "ru" : "Европа",
9509 "zh-CN" : "欧洲"
9510 }
9511 },
9512 "country" : {
9513 "geoname_id" : 2921044,
9514 "is_in_european_union" : true,
9515 "iso_code" : "DE",
9516 "names" : {
9517 "de" : "Deutschland",
9518 "en" : "Germany",
9519 "es" : "Alemania",
9520 "fr" : "Allemagne",
9521 "ja" : "ドイツ連邦共和国",
9522 "pt-BR" : "Alemanha",
9523 "ru" : "Германия",
9524 "zh-CN" : "德国"
9525 }
9526 },
9527 "registered_country" : {
9528 "geoname_id" : 2921044,
9529 "is_in_european_union" : true,
9530 "iso_code" : "DE",
9531 "names" : {
9532 "de" : "Deutschland",
9533 "en" : "Germany",
9534 "es" : "Alemania",
9535 "fr" : "Allemagne",
9536 "ja" : "ドイツ連邦共和国",
9537 "pt-BR" : "Alemanha",
9538 "ru" : "Германия",
9539 "zh-CN" : "德国"
9540 }
9541 }
9542 }
9543 },
9544 {
9545 "2a02:e2c0::/29" : {
9546 "continent" : {
9547 "code" : "EU",
9548 "geoname_id" : 6255148,
9549 "names" : {
9550 "de" : "Europa",
9551 "en" : "Europe",
9552 "es" : "Europa",
9553 "fr" : "Europe",
9554 "ja" : "ヨーロッパ",
9555 "pt-BR" : "Europa",
9556 "ru" : "Европа",
9557 "zh-CN" : "欧洲"
9558 }
9559 },
9560 "country" : {
9561 "geoname_id" : 3175395,
9562 "is_in_european_union" : true,
9563 "iso_code" : "IT",
9564 "names" : {
9565 "de" : "Italien",
9566 "en" : "Italy",
9567 "es" : "Italia",
9568 "fr" : "Italie",
9569 "ja" : "イタリア共和国",
9570 "pt-BR" : "Itália",
9571 "ru" : "Италия",
9572 "zh-CN" : "意大利"
9573 }
9574 },
9575 "registered_country" : {
9576 "geoname_id" : 3175395,
9577 "is_in_european_union" : true,
9578 "iso_code" : "IT",
9579 "names" : {
9580 "de" : "Italien",
9581 "en" : "Italy",
9582 "es" : "Italia",
9583 "fr" : "Italie",
9584 "ja" : "イタリア共和国",
9585 "pt-BR" : "Itália",
9586 "ru" : "Италия",
9587 "zh-CN" : "意大利"
9588 }
9589 }
9590 }
9591 },
9592 {
9593 "2a02:e300::/29" : {
9594 "continent" : {
9595 "code" : "EU",
9596 "geoname_id" : 6255148,
9597 "names" : {
9598 "de" : "Europa",
9599 "en" : "Europe",
9600 "es" : "Europa",
9601 "fr" : "Europe",
9602 "ja" : "ヨーロッパ",
9603 "pt-BR" : "Europa",
9604 "ru" : "Европа",
9605 "zh-CN" : "欧洲"
9606 }
9607 },
9608 "country" : {
9609 "geoname_id" : 630336,
9610 "iso_code" : "BY",
9611 "names" : {
9612 "de" : "Weißrussland",
9613 "en" : "Belarus",
9614 "es" : "Bielorrusia",
9615 "fr" : "Biélorussie",
9616 "ja" : "ベラルーシ共和国",
9617 "pt-BR" : "Bielo-Rússia",
9618 "ru" : "Беларусь",
9619 "zh-CN" : "白俄罗斯"
9620 }
9621 },
9622 "registered_country" : {
9623 "geoname_id" : 630336,
9624 "iso_code" : "BY",
9625 "names" : {
9626 "de" : "Weißrussland",
9627 "en" : "Belarus",
9628 "es" : "Bielorrusia",
9629 "fr" : "Biélorussie",
9630 "ja" : "ベラルーシ共和国",
9631 "pt-BR" : "Bielo-Rússia",
9632 "ru" : "Беларусь",
9633 "zh-CN" : "白俄罗斯"
9634 }
9635 }
9636 }
9637 },
9638 {
9639 "2a02:e340::/29" : {
9640 "continent" : {
9641 "code" : "EU",
9642 "geoname_id" : 6255148,
9643 "names" : {
9644 "de" : "Europa",
9645 "en" : "Europe",
9646 "es" : "Europa",
9647 "fr" : "Europe",
9648 "ja" : "ヨーロッパ",
9649 "pt-BR" : "Europa",
9650 "ru" : "Европа",
9651 "zh-CN" : "欧洲"
9652 }
9653 },
9654 "country" : {
9655 "geoname_id" : 3144096,
9656 "iso_code" : "NO",
9657 "names" : {
9658 "de" : "Norwegen",
9659 "en" : "Norway",
9660 "es" : "Noruega",
9661 "fr" : "Norvège",
9662 "ja" : "ノルウェー王国",
9663 "pt-BR" : "Noruega",
9664 "ru" : "Норвегия",
9665 "zh-CN" : "挪威"
9666 }
9667 },
9668 "registered_country" : {
9669 "geoname_id" : 3144096,
9670 "iso_code" : "NO",
9671 "names" : {
9672 "de" : "Norwegen",
9673 "en" : "Norway",
9674 "es" : "Noruega",
9675 "fr" : "Norvège",
9676 "ja" : "ノルウェー王国",
9677 "pt-BR" : "Noruega",
9678 "ru" : "Норвегия",
9679 "zh-CN" : "挪威"
9680 }
9681 }
9682 }
9683 },
9684 {
9685 "2a02:e380::/29" : {
9686 "continent" : {
9687 "code" : "EU",
9688 "geoname_id" : 6255148,
9689 "names" : {
9690 "de" : "Europa",
9691 "en" : "Europe",
9692 "es" : "Europa",
9693 "fr" : "Europe",
9694 "ja" : "ヨーロッパ",
9695 "pt-BR" : "Europa",
9696 "ru" : "Европа",
9697 "zh-CN" : "欧洲"
9698 }
9699 },
9700 "country" : {
9701 "geoname_id" : 3175395,
9702 "is_in_european_union" : true,
9703 "iso_code" : "IT",
9704 "names" : {
9705 "de" : "Italien",
9706 "en" : "Italy",
9707 "es" : "Italia",
9708 "fr" : "Italie",
9709 "ja" : "イタリア共和国",
9710 "pt-BR" : "Itália",
9711 "ru" : "Италия",
9712 "zh-CN" : "意大利"
9713 }
9714 },
9715 "registered_country" : {
9716 "geoname_id" : 3175395,
9717 "is_in_european_union" : true,
9718 "iso_code" : "IT",
9719 "names" : {
9720 "de" : "Italien",
9721 "en" : "Italy",
9722 "es" : "Italia",
9723 "fr" : "Italie",
9724 "ja" : "イタリア共和国",
9725 "pt-BR" : "Itália",
9726 "ru" : "Италия",
9727 "zh-CN" : "意大利"
9728 }
9729 }
9730 }
9731 },
9732 {
9733 "2a02:e3c0::/29" : {
9734 "continent" : {
9735 "code" : "EU",
9736 "geoname_id" : 6255148,
9737 "names" : {
9738 "de" : "Europa",
9739 "en" : "Europe",
9740 "es" : "Europa",
9741 "fr" : "Europe",
9742 "ja" : "ヨーロッパ",
9743 "pt-BR" : "Europa",
9744 "ru" : "Европа",
9745 "zh-CN" : "欧洲"
9746 }
9747 },
9748 "country" : {
9749 "geoname_id" : 3017382,
9750 "is_in_european_union" : true,
9751 "iso_code" : "FR",
9752 "names" : {
9753 "de" : "Frankreich",
9754 "en" : "France",
9755 "es" : "Francia",
9756 "fr" : "France",
9757 "ja" : "フランス共和国",
9758 "pt-BR" : "França",
9759 "ru" : "Франция",
9760 "zh-CN" : "法国"
9761 }
9762 },
9763 "registered_country" : {
9764 "geoname_id" : 3017382,
9765 "is_in_european_union" : true,
9766 "iso_code" : "FR",
9767 "names" : {
9768 "de" : "Frankreich",
9769 "en" : "France",
9770 "es" : "Francia",
9771 "fr" : "France",
9772 "ja" : "フランス共和国",
9773 "pt-BR" : "França",
9774 "ru" : "Франция",
9775 "zh-CN" : "法国"
9776 }
9777 }
9778 }
9779 },
9780 {
9781 "2a02:e400::/29" : {
9782 "continent" : {
9783 "code" : "EU",
9784 "geoname_id" : 6255148,
9785 "names" : {
9786 "de" : "Europa",
9787 "en" : "Europe",
9788 "es" : "Europa",
9789 "fr" : "Europe",
9790 "ja" : "ヨーロッパ",
9791 "pt-BR" : "Europa",
9792 "ru" : "Европа",
9793 "zh-CN" : "欧洲"
9794 }
9795 },
9796 "country" : {
9797 "geoname_id" : 2661886,
9798 "is_in_european_union" : true,
9799 "iso_code" : "SE",
9800 "names" : {
9801 "de" : "Schweden",
9802 "en" : "Sweden",
9803 "es" : "Suecia",
9804 "fr" : "Suède",
9805 "ja" : "スウェーデン王国",
9806 "pt-BR" : "Suécia",
9807 "ru" : "Швеция",
9808 "zh-CN" : "瑞典"
9809 }
9810 },
9811 "registered_country" : {
9812 "geoname_id" : 2661886,
9813 "is_in_european_union" : true,
9814 "iso_code" : "SE",
9815 "names" : {
9816 "de" : "Schweden",
9817 "en" : "Sweden",
9818 "es" : "Suecia",
9819 "fr" : "Suède",
9820 "ja" : "スウェーデン王国",
9821 "pt-BR" : "Suécia",
9822 "ru" : "Швеция",
9823 "zh-CN" : "瑞典"
9824 }
9825 }
9826 }
9827 },
9828 {
9829 "2a02:e440::/29" : {
9830 "continent" : {
9831 "code" : "EU",
9832 "geoname_id" : 6255148,
9833 "names" : {
9834 "de" : "Europa",
9835 "en" : "Europe",
9836 "es" : "Europa",
9837 "fr" : "Europe",
9838 "ja" : "ヨーロッパ",
9839 "pt-BR" : "Europa",
9840 "ru" : "Европа",
9841 "zh-CN" : "欧洲"
9842 }
9843 },
9844 "country" : {
9845 "geoname_id" : 2921044,
9846 "is_in_european_union" : true,
9847 "iso_code" : "DE",
9848 "names" : {
9849 "de" : "Deutschland",
9850 "en" : "Germany",
9851 "es" : "Alemania",
9852 "fr" : "Allemagne",
9853 "ja" : "ドイツ連邦共和国",
9854 "pt-BR" : "Alemanha",
9855 "ru" : "Германия",
9856 "zh-CN" : "德国"
9857 }
9858 },
9859 "registered_country" : {
9860 "geoname_id" : 2921044,
9861 "is_in_european_union" : true,
9862 "iso_code" : "DE",
9863 "names" : {
9864 "de" : "Deutschland",
9865 "en" : "Germany",
9866 "es" : "Alemania",
9867 "fr" : "Allemagne",
9868 "ja" : "ドイツ連邦共和国",
9869 "pt-BR" : "Alemanha",
9870 "ru" : "Германия",
9871 "zh-CN" : "德国"
9872 }
9873 }
9874 }
9875 },
9876 {
9877 "2a02:e480::/29" : {
9878 "continent" : {
9879 "code" : "EU",
9880 "geoname_id" : 6255148,
9881 "names" : {
9882 "de" : "Europa",
9883 "en" : "Europe",
9884 "es" : "Europa",
9885 "fr" : "Europe",
9886 "ja" : "ヨーロッパ",
9887 "pt-BR" : "Europa",
9888 "ru" : "Европа",
9889 "zh-CN" : "欧洲"
9890 }
9891 },
9892 "country" : {
9893 "geoname_id" : 2017370,
9894 "iso_code" : "RU",
9895 "names" : {
9896 "de" : "Russland",
9897 "en" : "Russia",
9898 "es" : "Rusia",
9899 "fr" : "Russie",
9900 "ja" : "ロシア",
9901 "pt-BR" : "Rússia",
9902 "ru" : "Россия",
9903 "zh-CN" : "俄罗斯"
9904 }
9905 },
9906 "registered_country" : {
9907 "geoname_id" : 2017370,
9908 "iso_code" : "RU",
9909 "names" : {
9910 "de" : "Russland",
9911 "en" : "Russia",
9912 "es" : "Rusia",
9913 "fr" : "Russie",
9914 "ja" : "ロシア",
9915 "pt-BR" : "Rússia",
9916 "ru" : "Россия",
9917 "zh-CN" : "俄罗斯"
9918 }
9919 }
9920 }
9921 },
9922 {
9923 "2a02:e4c0::/29" : {
9924 "continent" : {
9925 "code" : "EU",
9926 "geoname_id" : 6255148,
9927 "names" : {
9928 "de" : "Europa",
9929 "en" : "Europe",
9930 "es" : "Europa",
9931 "fr" : "Europe",
9932 "ja" : "ヨーロッパ",
9933 "pt-BR" : "Europa",
9934 "ru" : "Европа",
9935 "zh-CN" : "欧洲"
9936 }
9937 },
9938 "country" : {
9939 "geoname_id" : 2750405,
9940 "is_in_european_union" : true,
9941 "iso_code" : "NL",
9942 "names" : {
9943 "de" : "Niederlande",
9944 "en" : "Netherlands",
9945 "es" : "Holanda",
9946 "fr" : "Pays-Bas",
9947 "ja" : "オランダ王国",
9948 "pt-BR" : "Países Baixos",
9949 "ru" : "Нидерланды",
9950 "zh-CN" : "荷兰"
9951 }
9952 },
9953 "registered_country" : {
9954 "geoname_id" : 2750405,
9955 "is_in_european_union" : true,
9956 "iso_code" : "NL",
9957 "names" : {
9958 "de" : "Niederlande",
9959 "en" : "Netherlands",
9960 "es" : "Holanda",
9961 "fr" : "Pays-Bas",
9962 "ja" : "オランダ王国",
9963 "pt-BR" : "Países Baixos",
9964 "ru" : "Нидерланды",
9965 "zh-CN" : "荷兰"
9966 }
9967 }
9968 }
9969 },
9970 {
9971 "2a02:e500::/29" : {
9972 "continent" : {
9973 "code" : "EU",
9974 "geoname_id" : 6255148,
9975 "names" : {
9976 "de" : "Europa",
9977 "en" : "Europe",
9978 "es" : "Europa",
9979 "fr" : "Europe",
9980 "ja" : "ヨーロッパ",
9981 "pt-BR" : "Europa",
9982 "ru" : "Европа",
9983 "zh-CN" : "欧洲"
9984 }
9985 },
9986 "country" : {
9987 "geoname_id" : 3017382,
9988 "is_in_european_union" : true,
9989 "iso_code" : "FR",
9990 "names" : {
9991 "de" : "Frankreich",
9992 "en" : "France",
9993 "es" : "Francia",
9994 "fr" : "France",
9995 "ja" : "フランス共和国",
9996 "pt-BR" : "França",
9997 "ru" : "Франция",
9998 "zh-CN" : "法国"
9999 }
10000 },
10001 "registered_country" : {
10002 "geoname_id" : 3017382,
10003 "is_in_european_union" : true,
10004 "iso_code" : "FR",
10005 "names" : {
10006 "de" : "Frankreich",
10007 "en" : "France",
10008 "es" : "Francia",
10009 "fr" : "France",
10010 "ja" : "フランス共和国",
10011 "pt-BR" : "França",
10012 "ru" : "Франция",
10013 "zh-CN" : "法国"
10014 }
10015 }
10016 }
10017 },
10018 {
10019 "2a02:e540::/29" : {
10020 "continent" : {
10021 "code" : "EU",
10022 "geoname_id" : 6255148,
10023 "names" : {
10024 "de" : "Europa",
10025 "en" : "Europe",
10026 "es" : "Europa",
10027 "fr" : "Europe",
10028 "ja" : "ヨーロッパ",
10029 "pt-BR" : "Europa",
10030 "ru" : "Европа",
10031 "zh-CN" : "欧洲"
10032 }
10033 },
10034 "country" : {
10035 "geoname_id" : 6290252,
10036 "iso_code" : "RS",
10037 "names" : {
10038 "de" : "Serbien",
10039 "en" : "Serbia",
10040 "es" : "Serbia",
10041 "fr" : "Serbie",
10042 "ja" : "セルビア",
10043 "pt-BR" : "Sérvia",
10044 "ru" : "Сербия",
10045 "zh-CN" : "塞尔维亚"
10046 }
10047 },
10048 "registered_country" : {
10049 "geoname_id" : 6290252,
10050 "iso_code" : "RS",
10051 "names" : {
10052 "de" : "Serbien",
10053 "en" : "Serbia",
10054 "es" : "Serbia",
10055 "fr" : "Serbie",
10056 "ja" : "セルビア",
10057 "pt-BR" : "Sérvia",
10058 "ru" : "Сербия",
10059 "zh-CN" : "塞尔维亚"
10060 }
10061 }
10062 }
10063 },
10064 {
10065 "2a02:e580::/29" : {
10066 "continent" : {
10067 "code" : "EU",
10068 "geoname_id" : 6255148,
10069 "names" : {
10070 "de" : "Europa",
10071 "en" : "Europe",
10072 "es" : "Europa",
10073 "fr" : "Europe",
10074 "ja" : "ヨーロッパ",
10075 "pt-BR" : "Europa",
10076 "ru" : "Европа",
10077 "zh-CN" : "欧洲"
10078 }
10079 },
10080 "country" : {
10081 "geoname_id" : 3144096,
10082 "iso_code" : "NO",
10083 "names" : {
10084 "de" : "Norwegen",
10085 "en" : "Norway",
10086 "es" : "Noruega",
10087 "fr" : "Norvège",
10088 "ja" : "ノルウェー王国",
10089 "pt-BR" : "Noruega",
10090 "ru" : "Норвегия",
10091 "zh-CN" : "挪威"
10092 }
10093 },
10094 "registered_country" : {
10095 "geoname_id" : 3144096,
10096 "iso_code" : "NO",
10097 "names" : {
10098 "de" : "Norwegen",
10099 "en" : "Norway",
10100 "es" : "Noruega",
10101 "fr" : "Norvège",
10102 "ja" : "ノルウェー王国",
10103 "pt-BR" : "Noruega",
10104 "ru" : "Норвегия",
10105 "zh-CN" : "挪威"
10106 }
10107 }
10108 }
10109 },
10110 {
10111 "2a02:e5c0::/29" : {
10112 "continent" : {
10113 "code" : "EU",
10114 "geoname_id" : 6255148,
10115 "names" : {
10116 "de" : "Europa",
10117 "en" : "Europe",
10118 "es" : "Europa",
10119 "fr" : "Europe",
10120 "ja" : "ヨーロッパ",
10121 "pt-BR" : "Europa",
10122 "ru" : "Европа",
10123 "zh-CN" : "欧洲"
10124 }
10125 },
10126 "country" : {
10127 "geoname_id" : 2017370,
10128 "iso_code" : "RU",
10129 "names" : {
10130 "de" : "Russland",
10131 "en" : "Russia",
10132 "es" : "Rusia",
10133 "fr" : "Russie",
10134 "ja" : "ロシア",
10135 "pt-BR" : "Rússia",
10136 "ru" : "Россия",
10137 "zh-CN" : "俄罗斯"
10138 }
10139 },
10140 "registered_country" : {
10141 "geoname_id" : 2017370,
10142 "iso_code" : "RU",
10143 "names" : {
10144 "de" : "Russland",
10145 "en" : "Russia",
10146 "es" : "Rusia",
10147 "fr" : "Russie",
10148 "ja" : "ロシア",
10149 "pt-BR" : "Rússia",
10150 "ru" : "Россия",
10151 "zh-CN" : "俄罗斯"
10152 }
10153 }
10154 }
10155 },
10156 {
10157 "2a02:e600::/30" : {
10158 "continent" : {
10159 "code" : "EU",
10160 "geoname_id" : 6255148,
10161 "names" : {
10162 "de" : "Europa",
10163 "en" : "Europe",
10164 "es" : "Europa",
10165 "fr" : "Europe",
10166 "ja" : "ヨーロッパ",
10167 "pt-BR" : "Europa",
10168 "ru" : "Европа",
10169 "zh-CN" : "欧洲"
10170 }
10171 },
10172 "country" : {
10173 "geoname_id" : 3017382,
10174 "is_in_european_union" : true,
10175 "iso_code" : "FR",
10176 "names" : {
10177 "de" : "Frankreich",
10178 "en" : "France",
10179 "es" : "Francia",
10180 "fr" : "France",
10181 "ja" : "フランス共和国",
10182 "pt-BR" : "França",
10183 "ru" : "Франция",
10184 "zh-CN" : "法国"
10185 }
10186 },
10187 "registered_country" : {
10188 "geoname_id" : 3017382,
10189 "is_in_european_union" : true,
10190 "iso_code" : "FR",
10191 "names" : {
10192 "de" : "Frankreich",
10193 "en" : "France",
10194 "es" : "Francia",
10195 "fr" : "France",
10196 "ja" : "フランス共和国",
10197 "pt-BR" : "França",
10198 "ru" : "Франция",
10199 "zh-CN" : "法国"
10200 }
10201 }
10202 }
10203 },
10204 {
10205 "2a02:e620::/30" : {
10206 "continent" : {
10207 "code" : "EU",
10208 "geoname_id" : 6255148,
10209 "names" : {
10210 "de" : "Europa",
10211 "en" : "Europe",
10212 "es" : "Europa",
10213 "fr" : "Europe",
10214 "ja" : "ヨーロッパ",
10215 "pt-BR" : "Europa",
10216 "ru" : "Европа",
10217 "zh-CN" : "欧洲"
10218 }
10219 },
10220 "country" : {
10221 "geoname_id" : 2017370,
10222 "iso_code" : "RU",
10223 "names" : {
10224 "de" : "Russland",
10225 "en" : "Russia",
10226 "es" : "Rusia",
10227 "fr" : "Russie",
10228 "ja" : "ロシア",
10229 "pt-BR" : "Rússia",
10230 "ru" : "Россия",
10231 "zh-CN" : "俄罗斯"
10232 }
10233 },
10234 "registered_country" : {
10235 "geoname_id" : 2017370,
10236 "iso_code" : "RU",
10237 "names" : {
10238 "de" : "Russland",
10239 "en" : "Russia",
10240 "es" : "Rusia",
10241 "fr" : "Russie",
10242 "ja" : "ロシア",
10243 "pt-BR" : "Rússia",
10244 "ru" : "Россия",
10245 "zh-CN" : "俄罗斯"
10246 }
10247 }
10248 }
10249 },
10250 {
10251 "2a02:e640::/29" : {
10252 "continent" : {
10253 "code" : "EU",
10254 "geoname_id" : 6255148,
10255 "names" : {
10256 "de" : "Europa",
10257 "en" : "Europe",
10258 "es" : "Europa",
10259 "fr" : "Europe",
10260 "ja" : "ヨーロッパ",
10261 "pt-BR" : "Europa",
10262 "ru" : "Европа",
10263 "zh-CN" : "欧洲"
10264 }
10265 },
10266 "country" : {
10267 "geoname_id" : 3017382,
10268 "is_in_european_union" : true,
10269 "iso_code" : "FR",
10270 "names" : {
10271 "de" : "Frankreich",
10272 "en" : "France",
10273 "es" : "Francia",
10274 "fr" : "France",
10275 "ja" : "フランス共和国",
10276 "pt-BR" : "França",
10277 "ru" : "Франция",
10278 "zh-CN" : "法国"
10279 }
10280 },
10281 "registered_country" : {
10282 "geoname_id" : 3017382,
10283 "is_in_european_union" : true,
10284 "iso_code" : "FR",
10285 "names" : {
10286 "de" : "Frankreich",
10287 "en" : "France",
10288 "es" : "Francia",
10289 "fr" : "France",
10290 "ja" : "フランス共和国",
10291 "pt-BR" : "França",
10292 "ru" : "Франция",
10293 "zh-CN" : "法国"
10294 }
10295 }
10296 }
10297 },
10298 {
10299 "2a02:e680::/29" : {
10300 "continent" : {
10301 "code" : "AS",
10302 "geoname_id" : 6255147,
10303 "names" : {
10304 "de" : "Asien",
10305 "en" : "Asia",
10306 "es" : "Asia",
10307 "fr" : "Asie",
10308 "ja" : "アジア",
10309 "pt-BR" : "Ásia",
10310 "ru" : "Азия",
10311 "zh-CN" : "亚洲"
10312 }
10313 },
10314 "country" : {
10315 "geoname_id" : 248816,
10316 "iso_code" : "JO",
10317 "names" : {
10318 "de" : "Jordanien",
10319 "en" : "Hashemite Kingdom of Jordan",
10320 "es" : "Jordania",
10321 "fr" : "Jordanie",
10322 "ja" : "ヨルダン・ハシミテ王国",
10323 "pt-BR" : "Jordânia",
10324 "ru" : "Иордания",
10325 "zh-CN" : "约旦"
10326 }
10327 },
10328 "registered_country" : {
10329 "geoname_id" : 248816,
10330 "iso_code" : "JO",
10331 "names" : {
10332 "de" : "Jordanien",
10333 "en" : "Hashemite Kingdom of Jordan",
10334 "es" : "Jordania",
10335 "fr" : "Jordanie",
10336 "ja" : "ヨルダン・ハシミテ王国",
10337 "pt-BR" : "Jordânia",
10338 "ru" : "Иордания",
10339 "zh-CN" : "约旦"
10340 }
10341 }
10342 }
10343 },
10344 {
10345 "2a02:e6c0::/29" : {
10346 "continent" : {
10347 "code" : "EU",
10348 "geoname_id" : 6255148,
10349 "names" : {
10350 "de" : "Europa",
10351 "en" : "Europe",
10352 "es" : "Europa",
10353 "fr" : "Europe",
10354 "ja" : "ヨーロッパ",
10355 "pt-BR" : "Europa",
10356 "ru" : "Европа",
10357 "zh-CN" : "欧洲"
10358 }
10359 },
10360 "country" : {
10361 "geoname_id" : 2017370,
10362 "iso_code" : "RU",
10363 "names" : {
10364 "de" : "Russland",
10365 "en" : "Russia",
10366 "es" : "Rusia",
10367 "fr" : "Russie",
10368 "ja" : "ロシア",
10369 "pt-BR" : "Rússia",
10370 "ru" : "Россия",
10371 "zh-CN" : "俄罗斯"
10372 }
10373 },
10374 "registered_country" : {
10375 "geoname_id" : 2017370,
10376 "iso_code" : "RU",
10377 "names" : {
10378 "de" : "Russland",
10379 "en" : "Russia",
10380 "es" : "Rusia",
10381 "fr" : "Russie",
10382 "ja" : "ロシア",
10383 "pt-BR" : "Rússia",
10384 "ru" : "Россия",
10385 "zh-CN" : "俄罗斯"
10386 }
10387 }
10388 }
10389 },
10390 {
10391 "2a02:e700::/29" : {
10392 "continent" : {
10393 "code" : "AF",
10394 "geoname_id" : 6255146,
10395 "names" : {
10396 "de" : "Afrika",
10397 "en" : "Africa",
10398 "es" : "África",
10399 "fr" : "Afrique",
10400 "ja" : "アフリカ",
10401 "pt-BR" : "África",
10402 "ru" : "Африка",
10403 "zh-CN" : "非洲"
10404 }
10405 },
10406 "country" : {
10407 "geoname_id" : 2215636,
10408 "iso_code" : "LY",
10409 "names" : {
10410 "de" : "Libysch-Arabische Dschamahirija",
10411 "en" : "Libya",
10412 "es" : "Libia, República Árabe",
10413 "fr" : "Libye",
10414 "ja" : "社会主義人民リビア・アラブ国",
10415 "pt-BR" : "Líbia Árabe Jamahiriya",
10416 "ru" : "Ливия",
10417 "zh-CN" : "阿拉伯利比亚民众国"
10418 }
10419 },
10420 "registered_country" : {
10421 "geoname_id" : 2215636,
10422 "iso_code" : "LY",
10423 "names" : {
10424 "de" : "Libysch-Arabische Dschamahirija",
10425 "en" : "Libya",
10426 "es" : "Libia, República Árabe",
10427 "fr" : "Libye",
10428 "ja" : "社会主義人民リビア・アラブ国",
10429 "pt-BR" : "Líbia Árabe Jamahiriya",
10430 "ru" : "Ливия",
10431 "zh-CN" : "阿拉伯利比亚民众国"
10432 }
10433 }
10434 }
10435 },
10436 {
10437 "2a02:e740::/29" : {
10438 "continent" : {
10439 "code" : "EU",
10440 "geoname_id" : 6255148,
10441 "names" : {
10442 "de" : "Europa",
10443 "en" : "Europe",
10444 "es" : "Europa",
10445 "fr" : "Europe",
10446 "ja" : "ヨーロッパ",
10447 "pt-BR" : "Europa",
10448 "ru" : "Европа",
10449 "zh-CN" : "欧洲"
10450 }
10451 },
10452 "country" : {
10453 "geoname_id" : 2921044,
10454 "is_in_european_union" : true,
10455 "iso_code" : "DE",
10456 "names" : {
10457 "de" : "Deutschland",
10458 "en" : "Germany",
10459 "es" : "Alemania",
10460 "fr" : "Allemagne",
10461 "ja" : "ドイツ連邦共和国",
10462 "pt-BR" : "Alemanha",
10463 "ru" : "Германия",
10464 "zh-CN" : "德国"
10465 }
10466 },
10467 "registered_country" : {
10468 "geoname_id" : 2921044,
10469 "is_in_european_union" : true,
10470 "iso_code" : "DE",
10471 "names" : {
10472 "de" : "Deutschland",
10473 "en" : "Germany",
10474 "es" : "Alemania",
10475 "fr" : "Allemagne",
10476 "ja" : "ドイツ連邦共和国",
10477 "pt-BR" : "Alemanha",
10478 "ru" : "Германия",
10479 "zh-CN" : "德国"
10480 }
10481 }
10482 }
10483 },
10484 {
10485 "2a02:e780::/29" : {
10486 "continent" : {
10487 "code" : "AS",
10488 "geoname_id" : 6255147,
10489 "names" : {
10490 "de" : "Asien",
10491 "en" : "Asia",
10492 "es" : "Asia",
10493 "fr" : "Asie",
10494 "ja" : "アジア",
10495 "pt-BR" : "Ásia",
10496 "ru" : "Азия",
10497 "zh-CN" : "亚洲"
10498 }
10499 },
10500 "country" : {
10501 "geoname_id" : 298795,
10502 "iso_code" : "TR",
10503 "names" : {
10504 "de" : "Türkei",
10505 "en" : "Turkey",
10506 "es" : "Turquía",
10507 "fr" : "Turquie",
10508 "ja" : "トルコ共和国",
10509 "pt-BR" : "Turquia",
10510 "ru" : "Турция",
10511 "zh-CN" : "土耳其"
10512 }
10513 },
10514 "registered_country" : {
10515 "geoname_id" : 298795,
10516 "iso_code" : "TR",
10517 "names" : {
10518 "de" : "Türkei",
10519 "en" : "Turkey",
10520 "es" : "Turquía",
10521 "fr" : "Turquie",
10522 "ja" : "トルコ共和国",
10523 "pt-BR" : "Turquia",
10524 "ru" : "Турция",
10525 "zh-CN" : "土耳其"
10526 }
10527 }
10528 }
10529 },
10530 {
10531 "2a02:e7c0::/29" : {
10532 "continent" : {
10533 "code" : "EU",
10534 "geoname_id" : 6255148,
10535 "names" : {
10536 "de" : "Europa",
10537 "en" : "Europe",
10538 "es" : "Europa",
10539 "fr" : "Europe",
10540 "ja" : "ヨーロッパ",
10541 "pt-BR" : "Europa",
10542 "ru" : "Европа",
10543 "zh-CN" : "欧洲"
10544 }
10545 },
10546 "country" : {
10547 "geoname_id" : 798544,
10548 "is_in_european_union" : true,
10549 "iso_code" : "PL",
10550 "names" : {
10551 "de" : "Polen",
10552 "en" : "Poland",
10553 "es" : "Polonia",
10554 "fr" : "Pologne",
10555 "ja" : "ポーランド共和国",
10556 "pt-BR" : "Polônia",
10557 "ru" : "Польша",
10558 "zh-CN" : "波兰"
10559 }
10560 },
10561 "registered_country" : {
10562 "geoname_id" : 798544,
10563 "is_in_european_union" : true,
10564 "iso_code" : "PL",
10565 "names" : {
10566 "de" : "Polen",
10567 "en" : "Poland",
10568 "es" : "Polonia",
10569 "fr" : "Pologne",
10570 "ja" : "ポーランド共和国",
10571 "pt-BR" : "Polônia",
10572 "ru" : "Польша",
10573 "zh-CN" : "波兰"
10574 }
10575 }
10576 }
10577 },
10578 {
10579 "2a02:e800::/29" : {
10580 "continent" : {
10581 "code" : "EU",
10582 "geoname_id" : 6255148,
10583 "names" : {
10584 "de" : "Europa",
10585 "en" : "Europe",
10586 "es" : "Europa",
10587 "fr" : "Europe",
10588 "ja" : "ヨーロッパ",
10589 "pt-BR" : "Europa",
10590 "ru" : "Европа",
10591 "zh-CN" : "欧洲"
10592 }
10593 },
10594 "country" : {
10595 "geoname_id" : 2921044,
10596 "is_in_european_union" : true,
10597 "iso_code" : "DE",
10598 "names" : {
10599 "de" : "Deutschland",
10600 "en" : "Germany",
10601 "es" : "Alemania",
10602 "fr" : "Allemagne",
10603 "ja" : "ドイツ連邦共和国",
10604 "pt-BR" : "Alemanha",
10605 "ru" : "Германия",
10606 "zh-CN" : "德国"
10607 }
10608 },
10609 "registered_country" : {
10610 "geoname_id" : 2921044,
10611 "is_in_european_union" : true,
10612 "iso_code" : "DE",
10613 "names" : {
10614 "de" : "Deutschland",
10615 "en" : "Germany",
10616 "es" : "Alemania",
10617 "fr" : "Allemagne",
10618 "ja" : "ドイツ連邦共和国",
10619 "pt-BR" : "Alemanha",
10620 "ru" : "Германия",
10621 "zh-CN" : "德国"
10622 }
10623 }
10624 }
10625 },
10626 {
10627 "2a02:e840::/29" : {
10628 "continent" : {
10629 "code" : "EU",
10630 "geoname_id" : 6255148,
10631 "names" : {
10632 "de" : "Europa",
10633 "en" : "Europe",
10634 "es" : "Europa",
10635 "fr" : "Europe",
10636 "ja" : "ヨーロッパ",
10637 "pt-BR" : "Europa",
10638 "ru" : "Европа",
10639 "zh-CN" : "欧洲"
10640 }
10641 },
10642 "country" : {
10643 "geoname_id" : 2017370,
10644 "iso_code" : "RU",
10645 "names" : {
10646 "de" : "Russland",
10647 "en" : "Russia",
10648 "es" : "Rusia",
10649 "fr" : "Russie",
10650 "ja" : "ロシア",
10651 "pt-BR" : "Rússia",
10652 "ru" : "Россия",
10653 "zh-CN" : "俄罗斯"
10654 }
10655 },
10656 "registered_country" : {
10657 "geoname_id" : 2017370,
10658 "iso_code" : "RU",
10659 "names" : {
10660 "de" : "Russland",
10661 "en" : "Russia",
10662 "es" : "Rusia",
10663 "fr" : "Russie",
10664 "ja" : "ロシア",
10665 "pt-BR" : "Rússia",
10666 "ru" : "Россия",
10667 "zh-CN" : "俄罗斯"
10668 }
10669 }
10670 }
10671 },
10672 {
10673 "2a02:e880::/29" : {
10674 "continent" : {
10675 "code" : "EU",
10676 "geoname_id" : 6255148,
10677 "names" : {
10678 "de" : "Europa",
10679 "en" : "Europe",
10680 "es" : "Europa",
10681 "fr" : "Europe",
10682 "ja" : "ヨーロッパ",
10683 "pt-BR" : "Europa",
10684 "ru" : "Европа",
10685 "zh-CN" : "欧洲"
10686 }
10687 },
10688 "country" : {
10689 "geoname_id" : 2017370,
10690 "iso_code" : "RU",
10691 "names" : {
10692 "de" : "Russland",
10693 "en" : "Russia",
10694 "es" : "Rusia",
10695 "fr" : "Russie",
10696 "ja" : "ロシア",
10697 "pt-BR" : "Rússia",
10698 "ru" : "Россия",
10699 "zh-CN" : "俄罗斯"
10700 }
10701 },
10702 "registered_country" : {
10703 "geoname_id" : 2017370,
10704 "iso_code" : "RU",
10705 "names" : {
10706 "de" : "Russland",
10707 "en" : "Russia",
10708 "es" : "Rusia",
10709 "fr" : "Russie",
10710 "ja" : "ロシア",
10711 "pt-BR" : "Rússia",
10712 "ru" : "Россия",
10713 "zh-CN" : "俄罗斯"
10714 }
10715 }
10716 }
10717 },
10718 {
10719 "2a02:e900::/29" : {
10720 "continent" : {
10721 "code" : "EU",
10722 "geoname_id" : 6255148,
10723 "names" : {
10724 "de" : "Europa",
10725 "en" : "Europe",
10726 "es" : "Europa",
10727 "fr" : "Europe",
10728 "ja" : "ヨーロッパ",
10729 "pt-BR" : "Europa",
10730 "ru" : "Европа",
10731 "zh-CN" : "欧洲"
10732 }
10733 },
10734 "country" : {
10735 "geoname_id" : 2963597,
10736 "is_in_european_union" : true,
10737 "iso_code" : "IE",
10738 "names" : {
10739 "de" : "Irland",
10740 "en" : "Ireland",
10741 "es" : "República de Irlanda",
10742 "fr" : "Irlande",
10743 "ja" : "アイルランド",
10744 "pt-BR" : "Irlanda",
10745 "ru" : "Ирландия",
10746 "zh-CN" : "爱尔兰"
10747 }
10748 },
10749 "registered_country" : {
10750 "geoname_id" : 2963597,
10751 "is_in_european_union" : true,
10752 "iso_code" : "IE",
10753 "names" : {
10754 "de" : "Irland",
10755 "en" : "Ireland",
10756 "es" : "República de Irlanda",
10757 "fr" : "Irlande",
10758 "ja" : "アイルランド",
10759 "pt-BR" : "Irlanda",
10760 "ru" : "Ирландия",
10761 "zh-CN" : "爱尔兰"
10762 }
10763 }
10764 }
10765 },
10766 {
10767 "2a02:e940::/29" : {
10768 "continent" : {
10769 "code" : "EU",
10770 "geoname_id" : 6255148,
10771 "names" : {
10772 "de" : "Europa",
10773 "en" : "Europe",
10774 "es" : "Europa",
10775 "fr" : "Europe",
10776 "ja" : "ヨーロッパ",
10777 "pt-BR" : "Europa",
10778 "ru" : "Европа",
10779 "zh-CN" : "欧洲"
10780 }
10781 },
10782 "country" : {
10783 "geoname_id" : 798549,
10784 "is_in_european_union" : true,
10785 "iso_code" : "RO",
10786 "names" : {
10787 "de" : "Rumänien",
10788 "en" : "Romania",
10789 "es" : "Rumanía",
10790 "fr" : "Roumanie",
10791 "ja" : "ルーマニア",
10792 "pt-BR" : "Romênia",
10793 "ru" : "Румыния",
10794 "zh-CN" : "罗马尼亚"
10795 }
10796 },
10797 "registered_country" : {
10798 "geoname_id" : 798549,
10799 "is_in_european_union" : true,
10800 "iso_code" : "RO",
10801 "names" : {
10802 "de" : "Rumänien",
10803 "en" : "Romania",
10804 "es" : "Rumanía",
10805 "fr" : "Roumanie",
10806 "ja" : "ルーマニア",
10807 "pt-BR" : "Romênia",
10808 "ru" : "Румыния",
10809 "zh-CN" : "罗马尼亚"
10810 }
10811 }
10812 }
10813 },
10814 {
10815 "2a02:e980::/29" : {
10816 "continent" : {
10817 "code" : "AS",
10818 "geoname_id" : 6255147,
10819 "names" : {
10820 "de" : "Asien",
10821 "en" : "Asia",
10822 "es" : "Asia",
10823 "fr" : "Asie",
10824 "ja" : "アジア",
10825 "pt-BR" : "Ásia",
10826 "ru" : "Азия",
10827 "zh-CN" : "亚洲"
10828 }
10829 },
10830 "country" : {
10831 "geoname_id" : 294640,
10832 "iso_code" : "IL",
10833 "names" : {
10834 "de" : "Israel",
10835 "en" : "Israel",
10836 "es" : "Israel",
10837 "fr" : "Israël",
10838 "ja" : "イスラエル国",
10839 "pt-BR" : "Israel",
10840 "ru" : "Израиль",
10841 "zh-CN" : "以色列"
10842 }
10843 },
10844 "registered_country" : {
10845 "geoname_id" : 294640,
10846 "iso_code" : "IL",
10847 "names" : {
10848 "de" : "Israel",
10849 "en" : "Israel",
10850 "es" : "Israel",
10851 "fr" : "Israël",
10852 "ja" : "イスラエル国",
10853 "pt-BR" : "Israel",
10854 "ru" : "Израиль",
10855 "zh-CN" : "以色列"
10856 }
10857 }
10858 }
10859 },
10860 {
10861 "2a02:e9c0::/29" : {
10862 "continent" : {
10863 "code" : "EU",
10864 "geoname_id" : 6255148,
10865 "names" : {
10866 "de" : "Europa",
10867 "en" : "Europe",
10868 "es" : "Europa",
10869 "fr" : "Europe",
10870 "ja" : "ヨーロッパ",
10871 "pt-BR" : "Europa",
10872 "ru" : "Европа",
10873 "zh-CN" : "欧洲"
10874 }
10875 },
10876 "country" : {
10877 "geoname_id" : 2661886,
10878 "is_in_european_union" : true,
10879 "iso_code" : "SE",
10880 "names" : {
10881 "de" : "Schweden",
10882 "en" : "Sweden",
10883 "es" : "Suecia",
10884 "fr" : "Suède",
10885 "ja" : "スウェーデン王国",
10886 "pt-BR" : "Suécia",
10887 "ru" : "Швеция",
10888 "zh-CN" : "瑞典"
10889 }
10890 },
10891 "registered_country" : {
10892 "geoname_id" : 2661886,
10893 "is_in_european_union" : true,
10894 "iso_code" : "SE",
10895 "names" : {
10896 "de" : "Schweden",
10897 "en" : "Sweden",
10898 "es" : "Suecia",
10899 "fr" : "Suède",
10900 "ja" : "スウェーデン王国",
10901 "pt-BR" : "Suécia",
10902 "ru" : "Швеция",
10903 "zh-CN" : "瑞典"
10904 }
10905 }
10906 }
10907 },
10908 {
10909 "2a02:ea00::/29" : {
10910 "continent" : {
10911 "code" : "EU",
10912 "geoname_id" : 6255148,
10913 "names" : {
10914 "de" : "Europa",
10915 "en" : "Europe",
10916 "es" : "Europa",
10917 "fr" : "Europe",
10918 "ja" : "ヨーロッパ",
10919 "pt-BR" : "Europa",
10920 "ru" : "Европа",
10921 "zh-CN" : "欧洲"
10922 }
10923 },
10924 "country" : {
10925 "geoname_id" : 2658434,
10926 "iso_code" : "CH",
10927 "names" : {
10928 "de" : "Schweiz",
10929 "en" : "Switzerland",
10930 "es" : "Suiza",
10931 "fr" : "Suisse",
10932 "ja" : "スイス連邦",
10933 "pt-BR" : "Suíça",
10934 "ru" : "Швейцария",
10935 "zh-CN" : "瑞士"
10936 }
10937 },
10938 "registered_country" : {
10939 "geoname_id" : 2658434,
10940 "iso_code" : "CH",
10941 "names" : {
10942 "de" : "Schweiz",
10943 "en" : "Switzerland",
10944 "es" : "Suiza",
10945 "fr" : "Suisse",
10946 "ja" : "スイス連邦",
10947 "pt-BR" : "Suíça",
10948 "ru" : "Швейцария",
10949 "zh-CN" : "瑞士"
10950 }
10951 }
10952 }
10953 },
10954 {
10955 "2a02:ea40::/29" : {
10956 "continent" : {
10957 "code" : "EU",
10958 "geoname_id" : 6255148,
10959 "names" : {
10960 "de" : "Europa",
10961 "en" : "Europe",
10962 "es" : "Europa",
10963 "fr" : "Europe",
10964 "ja" : "ヨーロッパ",
10965 "pt-BR" : "Europa",
10966 "ru" : "Европа",
10967 "zh-CN" : "欧洲"
10968 }
10969 },
10970 "country" : {
10971 "geoname_id" : 2635167,
10972 "is_in_european_union" : true,
10973 "iso_code" : "GB",
10974 "names" : {
10975 "de" : "Vereinigtes Königreich",
10976 "en" : "United Kingdom",
10977 "es" : "Reino Unido",
10978 "fr" : "Royaume-Uni",
10979 "ja" : "イギリス",
10980 "pt-BR" : "Reino Unido",
10981 "ru" : "Великобритания",
10982 "zh-CN" : "英国"
10983 }
10984 },
10985 "registered_country" : {
10986 "geoname_id" : 2635167,
10987 "is_in_european_union" : true,
10988 "iso_code" : "GB",
10989 "names" : {
10990 "de" : "Vereinigtes Königreich",
10991 "en" : "United Kingdom",
10992 "es" : "Reino Unido",
10993 "fr" : "Royaume-Uni",
10994 "ja" : "イギリス",
10995 "pt-BR" : "Reino Unido",
10996 "ru" : "Великобритания",
10997 "zh-CN" : "英国"
10998 }
10999 }
11000 }
11001 },
11002 {
11003 "2a02:ea80::/29" : {
11004 "continent" : {
11005 "code" : "EU",
11006 "geoname_id" : 6255148,
11007 "names" : {
11008 "de" : "Europa",
11009 "en" : "Europe",
11010 "es" : "Europa",
11011 "fr" : "Europe",
11012 "ja" : "ヨーロッパ",
11013 "pt-BR" : "Europa",
11014 "ru" : "Европа",
11015 "zh-CN" : "欧洲"
11016 }
11017 },
11018 "country" : {
11019 "geoname_id" : 798544,
11020 "is_in_european_union" : true,
11021 "iso_code" : "PL",
11022 "names" : {
11023 "de" : "Polen",
11024 "en" : "Poland",
11025 "es" : "Polonia",
11026 "fr" : "Pologne",
11027 "ja" : "ポーランド共和国",
11028 "pt-BR" : "Polônia",
11029 "ru" : "Польша",
11030 "zh-CN" : "波兰"
11031 }
11032 },
11033 "registered_country" : {
11034 "geoname_id" : 798544,
11035 "is_in_european_union" : true,
11036 "iso_code" : "PL",
11037 "names" : {
11038 "de" : "Polen",
11039 "en" : "Poland",
11040 "es" : "Polonia",
11041 "fr" : "Pologne",
11042 "ja" : "ポーランド共和国",
11043 "pt-BR" : "Polônia",
11044 "ru" : "Польша",
11045 "zh-CN" : "波兰"
11046 }
11047 }
11048 }
11049 },
11050 {
11051 "2a02:eac0::/29" : {
11052 "continent" : {
11053 "code" : "EU",
11054 "geoname_id" : 6255148,
11055 "names" : {
11056 "de" : "Europa",
11057 "en" : "Europe",
11058 "es" : "Europa",
11059 "fr" : "Europe",
11060 "ja" : "ヨーロッパ",
11061 "pt-BR" : "Europa",
11062 "ru" : "Европа",
11063 "zh-CN" : "欧洲"
11064 }
11065 },
11066 "country" : {
11067 "geoname_id" : 798544,
11068 "is_in_european_union" : true,
11069 "iso_code" : "PL",
11070 "names" : {
11071 "de" : "Polen",
11072 "en" : "Poland",
11073 "es" : "Polonia",
11074 "fr" : "Pologne",
11075 "ja" : "ポーランド共和国",
11076 "pt-BR" : "Polônia",
11077 "ru" : "Польша",
11078 "zh-CN" : "波兰"
11079 }
11080 },
11081 "registered_country" : {
11082 "geoname_id" : 798544,
11083 "is_in_european_union" : true,
11084 "iso_code" : "PL",
11085 "names" : {
11086 "de" : "Polen",
11087 "en" : "Poland",
11088 "es" : "Polonia",
11089 "fr" : "Pologne",
11090 "ja" : "ポーランド共和国",
11091 "pt-BR" : "Polônia",
11092 "ru" : "Польша",
11093 "zh-CN" : "波兰"
11094 }
11095 }
11096 }
11097 },
11098 {
11099 "2a02:eb00::/29" : {
11100 "continent" : {
11101 "code" : "EU",
11102 "geoname_id" : 6255148,
11103 "names" : {
11104 "de" : "Europa",
11105 "en" : "Europe",
11106 "es" : "Europa",
11107 "fr" : "Europe",
11108 "ja" : "ヨーロッパ",
11109 "pt-BR" : "Europa",
11110 "ru" : "Европа",
11111 "zh-CN" : "欧洲"
11112 }
11113 },
11114 "country" : {
11115 "geoname_id" : 2017370,
11116 "iso_code" : "RU",
11117 "names" : {
11118 "de" : "Russland",
11119 "en" : "Russia",
11120 "es" : "Rusia",
11121 "fr" : "Russie",
11122 "ja" : "ロシア",
11123 "pt-BR" : "Rússia",
11124 "ru" : "Россия",
11125 "zh-CN" : "俄罗斯"
11126 }
11127 },
11128 "registered_country" : {
11129 "geoname_id" : 2017370,
11130 "iso_code" : "RU",
11131 "names" : {
11132 "de" : "Russland",
11133 "en" : "Russia",
11134 "es" : "Rusia",
11135 "fr" : "Russie",
11136 "ja" : "ロシア",
11137 "pt-BR" : "Rússia",
11138 "ru" : "Россия",
11139 "zh-CN" : "俄罗斯"
11140 }
11141 }
11142 }
11143 },
11144 {
11145 "2a02:eb40::/29" : {
11146 "continent" : {
11147 "code" : "EU",
11148 "geoname_id" : 6255148,
11149 "names" : {
11150 "de" : "Europa",
11151 "en" : "Europe",
11152 "es" : "Europa",
11153 "fr" : "Europe",
11154 "ja" : "ヨーロッパ",
11155 "pt-BR" : "Europa",
11156 "ru" : "Европа",
11157 "zh-CN" : "欧洲"
11158 }
11159 },
11160 "country" : {
11161 "geoname_id" : 2635167,
11162 "is_in_european_union" : true,
11163 "iso_code" : "GB",
11164 "names" : {
11165 "de" : "Vereinigtes Königreich",
11166 "en" : "United Kingdom",
11167 "es" : "Reino Unido",
11168 "fr" : "Royaume-Uni",
11169 "ja" : "イギリス",
11170 "pt-BR" : "Reino Unido",
11171 "ru" : "Великобритания",
11172 "zh-CN" : "英国"
11173 }
11174 },
11175 "registered_country" : {
11176 "geoname_id" : 2635167,
11177 "is_in_european_union" : true,
11178 "iso_code" : "GB",
11179 "names" : {
11180 "de" : "Vereinigtes Königreich",
11181 "en" : "United Kingdom",
11182 "es" : "Reino Unido",
11183 "fr" : "Royaume-Uni",
11184 "ja" : "イギリス",
11185 "pt-BR" : "Reino Unido",
11186 "ru" : "Великобритания",
11187 "zh-CN" : "英国"
11188 }
11189 }
11190 }
11191 },
11192 {
11193 "2a02:eb80::/29" : {
11194 "continent" : {
11195 "code" : "EU",
11196 "geoname_id" : 6255148,
11197 "names" : {
11198 "de" : "Europa",
11199 "en" : "Europe",
11200 "es" : "Europa",
11201 "fr" : "Europe",
11202 "ja" : "ヨーロッパ",
11203 "pt-BR" : "Europa",
11204 "ru" : "Европа",
11205 "zh-CN" : "欧洲"
11206 }
11207 },
11208 "country" : {
11209 "geoname_id" : 2017370,
11210 "iso_code" : "RU",
11211 "names" : {
11212 "de" : "Russland",
11213 "en" : "Russia",
11214 "es" : "Rusia",
11215 "fr" : "Russie",
11216 "ja" : "ロシア",
11217 "pt-BR" : "Rússia",
11218 "ru" : "Россия",
11219 "zh-CN" : "俄罗斯"
11220 }
11221 },
11222 "registered_country" : {
11223 "geoname_id" : 2017370,
11224 "iso_code" : "RU",
11225 "names" : {
11226 "de" : "Russland",
11227 "en" : "Russia",
11228 "es" : "Rusia",
11229 "fr" : "Russie",
11230 "ja" : "ロシア",
11231 "pt-BR" : "Rússia",
11232 "ru" : "Россия",
11233 "zh-CN" : "俄罗斯"
11234 }
11235 }
11236 }
11237 },
11238 {
11239 "2a02:ebc0::/29" : {
11240 "continent" : {
11241 "code" : "EU",
11242 "geoname_id" : 6255148,
11243 "names" : {
11244 "de" : "Europa",
11245 "en" : "Europe",
11246 "es" : "Europa",
11247 "fr" : "Europe",
11248 "ja" : "ヨーロッパ",
11249 "pt-BR" : "Europa",
11250 "ru" : "Европа",
11251 "zh-CN" : "欧洲"
11252 }
11253 },
11254 "country" : {
11255 "geoname_id" : 3017382,
11256 "is_in_european_union" : true,
11257 "iso_code" : "FR",
11258 "names" : {
11259 "de" : "Frankreich",
11260 "en" : "France",
11261 "es" : "Francia",
11262 "fr" : "France",
11263 "ja" : "フランス共和国",
11264 "pt-BR" : "França",
11265 "ru" : "Франция",
11266 "zh-CN" : "法国"
11267 }
11268 },
11269 "registered_country" : {
11270 "geoname_id" : 3017382,
11271 "is_in_european_union" : true,
11272 "iso_code" : "FR",
11273 "names" : {
11274 "de" : "Frankreich",
11275 "en" : "France",
11276 "es" : "Francia",
11277 "fr" : "France",
11278 "ja" : "フランス共和国",
11279 "pt-BR" : "França",
11280 "ru" : "Франция",
11281 "zh-CN" : "法国"
11282 }
11283 }
11284 }
11285 },
11286 {
11287 "2a02:ec00::/29" : {
11288 "continent" : {
11289 "code" : "EU",
11290 "geoname_id" : 6255148,
11291 "names" : {
11292 "de" : "Europa",
11293 "en" : "Europe",
11294 "es" : "Europa",
11295 "fr" : "Europe",
11296 "ja" : "ヨーロッパ",
11297 "pt-BR" : "Europa",
11298 "ru" : "Европа",
11299 "zh-CN" : "欧洲"
11300 }
11301 },
11302 "country" : {
11303 "geoname_id" : 3017382,
11304 "is_in_european_union" : true,
11305 "iso_code" : "FR",
11306 "names" : {
11307 "de" : "Frankreich",
11308 "en" : "France",
11309 "es" : "Francia",
11310 "fr" : "France",
11311 "ja" : "フランス共和国",
11312 "pt-BR" : "França",
11313 "ru" : "Франция",
11314 "zh-CN" : "法国"
11315 }
11316 },
11317 "registered_country" : {
11318 "geoname_id" : 3017382,
11319 "is_in_european_union" : true,
11320 "iso_code" : "FR",
11321 "names" : {
11322 "de" : "Frankreich",
11323 "en" : "France",
11324 "es" : "Francia",
11325 "fr" : "France",
11326 "ja" : "フランス共和国",
11327 "pt-BR" : "França",
11328 "ru" : "Франция",
11329 "zh-CN" : "法国"
11330 }
11331 }
11332 }
11333 },
11334 {
11335 "2a02:ec40::/29" : {
11336 "continent" : {
11337 "code" : "EU",
11338 "geoname_id" : 6255148,
11339 "names" : {
11340 "de" : "Europa",
11341 "en" : "Europe",
11342 "es" : "Europa",
11343 "fr" : "Europe",
11344 "ja" : "ヨーロッパ",
11345 "pt-BR" : "Europa",
11346 "ru" : "Европа",
11347 "zh-CN" : "欧洲"
11348 }
11349 },
11350 "country" : {
11351 "geoname_id" : 2017370,
11352 "iso_code" : "RU",
11353 "names" : {
11354 "de" : "Russland",
11355 "en" : "Russia",
11356 "es" : "Rusia",
11357 "fr" : "Russie",
11358 "ja" : "ロシア",
11359 "pt-BR" : "Rússia",
11360 "ru" : "Россия",
11361 "zh-CN" : "俄罗斯"
11362 }
11363 },
11364 "registered_country" : {
11365 "geoname_id" : 2017370,
11366 "iso_code" : "RU",
11367 "names" : {
11368 "de" : "Russland",
11369 "en" : "Russia",
11370 "es" : "Rusia",
11371 "fr" : "Russie",
11372 "ja" : "ロシア",
11373 "pt-BR" : "Rússia",
11374 "ru" : "Россия",
11375 "zh-CN" : "俄罗斯"
11376 }
11377 }
11378 }
11379 },
11380 {
11381 "2a02:ec80::/29" : {
11382 "continent" : {
11383 "code" : "EU",
11384 "geoname_id" : 6255148,
11385 "names" : {
11386 "de" : "Europa",
11387 "en" : "Europe",
11388 "es" : "Europa",
11389 "fr" : "Europe",
11390 "ja" : "ヨーロッパ",
11391 "pt-BR" : "Europa",
11392 "ru" : "Европа",
11393 "zh-CN" : "欧洲"
11394 }
11395 },
11396 "location" : {
11397 "latitude" : 48.69096,
11398 "longitude" : 9.14062,
11399 "time_zone" : "Europe/Vaduz"
11400 }
11401 }
11402 },
11403 {
11404 "2a02:ecc0::/29" : {
11405 "continent" : {
11406 "code" : "AS",
11407 "geoname_id" : 6255147,
11408 "names" : {
11409 "de" : "Asien",
11410 "en" : "Asia",
11411 "es" : "Asia",
11412 "fr" : "Asie",
11413 "ja" : "アジア",
11414 "pt-BR" : "Ásia",
11415 "ru" : "Азия",
11416 "zh-CN" : "亚洲"
11417 }
11418 },
11419 "country" : {
11420 "geoname_id" : 587116,
11421 "iso_code" : "AZ",
11422 "names" : {
11423 "de" : "Aserbaidschan",
11424 "en" : "Azerbaijan",
11425 "es" : "Azerbaiyán",
11426 "fr" : "Azerbaïdjan",
11427 "ja" : "アゼルバイジャン共和国",
11428 "pt-BR" : "Azerbaijão",
11429 "ru" : "Азербайджан",
11430 "zh-CN" : "阿塞拜疆"
11431 }
11432 },
11433 "registered_country" : {
11434 "geoname_id" : 587116,
11435 "iso_code" : "AZ",
11436 "names" : {
11437 "de" : "Aserbaidschan",
11438 "en" : "Azerbaijan",
11439 "es" : "Azerbaiyán",
11440 "fr" : "Azerbaïdjan",
11441 "ja" : "アゼルバイジャン共和国",
11442 "pt-BR" : "Azerbaijão",
11443 "ru" : "Азербайджан",
11444 "zh-CN" : "阿塞拜疆"
11445 }
11446 }
11447 }
11448 },
11449 {
11450 "2a02:ed00::/29" : {
11451 "continent" : {
11452 "code" : "EU",
11453 "geoname_id" : 6255148,
11454 "names" : {
11455 "de" : "Europa",
11456 "en" : "Europe",
11457 "es" : "Europa",
11458 "fr" : "Europe",
11459 "ja" : "ヨーロッパ",
11460 "pt-BR" : "Europa",
11461 "ru" : "Европа",
11462 "zh-CN" : "欧洲"
11463 }
11464 },
11465 "country" : {
11466 "geoname_id" : 3144096,
11467 "iso_code" : "NO",
11468 "names" : {
11469 "de" : "Norwegen",
11470 "en" : "Norway",
11471 "es" : "Noruega",
11472 "fr" : "Norvège",
11473 "ja" : "ノルウェー王国",
11474 "pt-BR" : "Noruega",
11475 "ru" : "Норвегия",
11476 "zh-CN" : "挪威"
11477 }
11478 },
11479 "registered_country" : {
11480 "geoname_id" : 3144096,
11481 "iso_code" : "NO",
11482 "names" : {
11483 "de" : "Norwegen",
11484 "en" : "Norway",
11485 "es" : "Noruega",
11486 "fr" : "Norvège",
11487 "ja" : "ノルウェー王国",
11488 "pt-BR" : "Noruega",
11489 "ru" : "Норвегия",
11490 "zh-CN" : "挪威"
11491 }
11492 }
11493 }
11494 },
11495 {
11496 "2a02:ed40::/29" : {
11497 "continent" : {
11498 "code" : "AS",
11499 "geoname_id" : 6255147,
11500 "names" : {
11501 "de" : "Asien",
11502 "en" : "Asia",
11503 "es" : "Asia",
11504 "fr" : "Asie",
11505 "ja" : "アジア",
11506 "pt-BR" : "Ásia",
11507 "ru" : "Азия",
11508 "zh-CN" : "亚洲"
11509 }
11510 },
11511 "country" : {
11512 "geoname_id" : 298795,
11513 "iso_code" : "TR",
11514 "names" : {
11515 "de" : "Türkei",
11516 "en" : "Turkey",
11517 "es" : "Turquía",
11518 "fr" : "Turquie",
11519 "ja" : "トルコ共和国",
11520 "pt-BR" : "Turquia",
11521 "ru" : "Турция",
11522 "zh-CN" : "土耳其"
11523 }
11524 },
11525 "registered_country" : {
11526 "geoname_id" : 298795,
11527 "iso_code" : "TR",
11528 "names" : {
11529 "de" : "Türkei",
11530 "en" : "Turkey",
11531 "es" : "Turquía",
11532 "fr" : "Turquie",
11533 "ja" : "トルコ共和国",
11534 "pt-BR" : "Turquia",
11535 "ru" : "Турция",
11536 "zh-CN" : "土耳其"
11537 }
11538 }
11539 }
11540 },
11541 {
11542 "2a02:ed80::/29" : {
11543 "continent" : {
11544 "code" : "EU",
11545 "geoname_id" : 6255148,
11546 "names" : {
11547 "de" : "Europa",
11548 "en" : "Europe",
11549 "es" : "Europa",
11550 "fr" : "Europe",
11551 "ja" : "ヨーロッパ",
11552 "pt-BR" : "Europa",
11553 "ru" : "Европа",
11554 "zh-CN" : "欧洲"
11555 }
11556 },
11557 "country" : {
11558 "geoname_id" : 2921044,
11559 "is_in_european_union" : true,
11560 "iso_code" : "DE",
11561 "names" : {
11562 "de" : "Deutschland",
11563 "en" : "Germany",
11564 "es" : "Alemania",
11565 "fr" : "Allemagne",
11566 "ja" : "ドイツ連邦共和国",
11567 "pt-BR" : "Alemanha",
11568 "ru" : "Германия",
11569 "zh-CN" : "德国"
11570 }
11571 },
11572 "registered_country" : {
11573 "geoname_id" : 2921044,
11574 "is_in_european_union" : true,
11575 "iso_code" : "DE",
11576 "names" : {
11577 "de" : "Deutschland",
11578 "en" : "Germany",
11579 "es" : "Alemania",
11580 "fr" : "Allemagne",
11581 "ja" : "ドイツ連邦共和国",
11582 "pt-BR" : "Alemanha",
11583 "ru" : "Германия",
11584 "zh-CN" : "德国"
11585 }
11586 }
11587 }
11588 },
11589 {
11590 "2a02:edc0::/29" : {
11591 "continent" : {
11592 "code" : "AS",
11593 "geoname_id" : 6255147,
11594 "names" : {
11595 "de" : "Asien",
11596 "en" : "Asia",
11597 "es" : "Asia",
11598 "fr" : "Asie",
11599 "ja" : "アジア",
11600 "pt-BR" : "Ásia",
11601 "ru" : "Азия",
11602 "zh-CN" : "亚洲"
11603 }
11604 },
11605 "country" : {
11606 "geoname_id" : 102358,
11607 "iso_code" : "SA",
11608 "names" : {
11609 "de" : "Saudi-Arabien",
11610 "en" : "Saudi Arabia",
11611 "es" : "Arabia Saudita",
11612 "fr" : "Arabie saoudite",
11613 "ja" : "サウジアラビア王国",
11614 "pt-BR" : "Arábia Saudita",
11615 "ru" : "Саудовская Аравия",
11616 "zh-CN" : "沙特阿拉伯"
11617 }
11618 },
11619 "registered_country" : {
11620 "geoname_id" : 102358,
11621 "iso_code" : "SA",
11622 "names" : {
11623 "de" : "Saudi-Arabien",
11624 "en" : "Saudi Arabia",
11625 "es" : "Arabia Saudita",
11626 "fr" : "Arabie saoudite",
11627 "ja" : "サウジアラビア王国",
11628 "pt-BR" : "Arábia Saudita",
11629 "ru" : "Саудовская Аравия",
11630 "zh-CN" : "沙特阿拉伯"
11631 }
11632 }
11633 }
11634 },
11635 {
11636 "2a02:ee00::/29" : {
11637 "continent" : {
11638 "code" : "EU",
11639 "geoname_id" : 6255148,
11640 "names" : {
11641 "de" : "Europa",
11642 "en" : "Europe",
11643 "es" : "Europa",
11644 "fr" : "Europe",
11645 "ja" : "ヨーロッパ",
11646 "pt-BR" : "Europa",
11647 "ru" : "Европа",
11648 "zh-CN" : "欧洲"
11649 }
11650 },
11651 "country" : {
11652 "geoname_id" : 690791,
11653 "iso_code" : "UA",
11654 "names" : {
11655 "de" : "Ukraine",
11656 "en" : "Ukraine",
11657 "es" : "Ucrania",
11658 "fr" : "Ukraine",
11659 "ja" : "ウクライナ共和国",
11660 "pt-BR" : "Ucrânia",
11661 "ru" : "Украина",
11662 "zh-CN" : "乌克兰"
11663 }
11664 },
11665 "registered_country" : {
11666 "geoname_id" : 690791,
11667 "iso_code" : "UA",
11668 "names" : {
11669 "de" : "Ukraine",
11670 "en" : "Ukraine",
11671 "es" : "Ucrania",
11672 "fr" : "Ukraine",
11673 "ja" : "ウクライナ共和国",
11674 "pt-BR" : "Ucrânia",
11675 "ru" : "Украина",
11676 "zh-CN" : "乌克兰"
11677 }
11678 }
11679 }
11680 },
11681 {
11682 "2a02:ee40::/29" : {
11683 "continent" : {
11684 "code" : "EU",
11685 "geoname_id" : 6255148,
11686 "names" : {
11687 "de" : "Europa",
11688 "en" : "Europe",
11689 "es" : "Europa",
11690 "fr" : "Europe",
11691 "ja" : "ヨーロッパ",
11692 "pt-BR" : "Europa",
11693 "ru" : "Европа",
11694 "zh-CN" : "欧洲"
11695 }
11696 },
11697 "country" : {
11698 "geoname_id" : 2017370,
11699 "iso_code" : "RU",
11700 "names" : {
11701 "de" : "Russland",
11702 "en" : "Russia",
11703 "es" : "Rusia",
11704 "fr" : "Russie",
11705 "ja" : "ロシア",
11706 "pt-BR" : "Rússia",
11707 "ru" : "Россия",
11708 "zh-CN" : "俄罗斯"
11709 }
11710 },
11711 "registered_country" : {
11712 "geoname_id" : 2017370,
11713 "iso_code" : "RU",
11714 "names" : {
11715 "de" : "Russland",
11716 "en" : "Russia",
11717 "es" : "Rusia",
11718 "fr" : "Russie",
11719 "ja" : "ロシア",
11720 "pt-BR" : "Rússia",
11721 "ru" : "Россия",
11722 "zh-CN" : "俄罗斯"
11723 }
11724 }
11725 }
11726 },
11727 {
11728 "2a02:ee80::/29" : {
11729 "continent" : {
11730 "code" : "EU",
11731 "geoname_id" : 6255148,
11732 "names" : {
11733 "de" : "Europa",
11734 "en" : "Europe",
11735 "es" : "Europa",
11736 "fr" : "Europe",
11737 "ja" : "ヨーロッパ",
11738 "pt-BR" : "Europa",
11739 "ru" : "Европа",
11740 "zh-CN" : "欧洲"
11741 }
11742 },
11743 "country" : {
11744 "geoname_id" : 2750405,
11745 "is_in_european_union" : true,
11746 "iso_code" : "NL",
11747 "names" : {
11748 "de" : "Niederlande",
11749 "en" : "Netherlands",
11750 "es" : "Holanda",
11751 "fr" : "Pays-Bas",
11752 "ja" : "オランダ王国",
11753 "pt-BR" : "Países Baixos",
11754 "ru" : "Нидерланды",
11755 "zh-CN" : "荷兰"
11756 }
11757 },
11758 "registered_country" : {
11759 "geoname_id" : 2750405,
11760 "is_in_european_union" : true,
11761 "iso_code" : "NL",
11762 "names" : {
11763 "de" : "Niederlande",
11764 "en" : "Netherlands",
11765 "es" : "Holanda",
11766 "fr" : "Pays-Bas",
11767 "ja" : "オランダ王国",
11768 "pt-BR" : "Países Baixos",
11769 "ru" : "Нидерланды",
11770 "zh-CN" : "荷兰"
11771 }
11772 }
11773 }
11774 },
11775 {
11776 "2a02:eec0::/29" : {
11777 "continent" : {
11778 "code" : "EU",
11779 "geoname_id" : 6255148,
11780 "names" : {
11781 "de" : "Europa",
11782 "en" : "Europe",
11783 "es" : "Europa",
11784 "fr" : "Europe",
11785 "ja" : "ヨーロッパ",
11786 "pt-BR" : "Europa",
11787 "ru" : "Европа",
11788 "zh-CN" : "欧洲"
11789 }
11790 },
11791 "country" : {
11792 "geoname_id" : 2661886,
11793 "is_in_european_union" : true,
11794 "iso_code" : "SE",
11795 "names" : {
11796 "de" : "Schweden",
11797 "en" : "Sweden",
11798 "es" : "Suecia",
11799 "fr" : "Suède",
11800 "ja" : "スウェーデン王国",
11801 "pt-BR" : "Suécia",
11802 "ru" : "Швеция",
11803 "zh-CN" : "瑞典"
11804 }
11805 },
11806 "registered_country" : {
11807 "geoname_id" : 2661886,
11808 "is_in_european_union" : true,
11809 "iso_code" : "SE",
11810 "names" : {
11811 "de" : "Schweden",
11812 "en" : "Sweden",
11813 "es" : "Suecia",
11814 "fr" : "Suède",
11815 "ja" : "スウェーデン王国",
11816 "pt-BR" : "Suécia",
11817 "ru" : "Швеция",
11818 "zh-CN" : "瑞典"
11819 }
11820 }
11821 }
11822 },
11823 {
11824 "2a02:ef00::/29" : {
11825 "continent" : {
11826 "code" : "EU",
11827 "geoname_id" : 6255148,
11828 "names" : {
11829 "de" : "Europa",
11830 "en" : "Europe",
11831 "es" : "Europa",
11832 "fr" : "Europe",
11833 "ja" : "ヨーロッパ",
11834 "pt-BR" : "Europa",
11835 "ru" : "Европа",
11836 "zh-CN" : "欧洲"
11837 }
11838 },
11839 "country" : {
11840 "geoname_id" : 2017370,
11841 "iso_code" : "RU",
11842 "names" : {
11843 "de" : "Russland",
11844 "en" : "Russia",
11845 "es" : "Rusia",
11846 "fr" : "Russie",
11847 "ja" : "ロシア",
11848 "pt-BR" : "Rússia",
11849 "ru" : "Россия",
11850 "zh-CN" : "俄罗斯"
11851 }
11852 },
11853 "registered_country" : {
11854 "geoname_id" : 2017370,
11855 "iso_code" : "RU",
11856 "names" : {
11857 "de" : "Russland",
11858 "en" : "Russia",
11859 "es" : "Rusia",
11860 "fr" : "Russie",
11861 "ja" : "ロシア",
11862 "pt-BR" : "Rússia",
11863 "ru" : "Россия",
11864 "zh-CN" : "俄罗斯"
11865 }
11866 }
11867 }
11868 },
11869 {
11870 "2a02:ef40::/29" : {
11871 "continent" : {
11872 "code" : "EU",
11873 "geoname_id" : 6255148,
11874 "names" : {
11875 "de" : "Europa",
11876 "en" : "Europe",
11877 "es" : "Europa",
11878 "fr" : "Europe",
11879 "ja" : "ヨーロッパ",
11880 "pt-BR" : "Europa",
11881 "ru" : "Европа",
11882 "zh-CN" : "欧洲"
11883 }
11884 },
11885 "country" : {
11886 "geoname_id" : 2017370,
11887 "iso_code" : "RU",
11888 "names" : {
11889 "de" : "Russland",
11890 "en" : "Russia",
11891 "es" : "Rusia",
11892 "fr" : "Russie",
11893 "ja" : "ロシア",
11894 "pt-BR" : "Rússia",
11895 "ru" : "Россия",
11896 "zh-CN" : "俄罗斯"
11897 }
11898 },
11899 "registered_country" : {
11900 "geoname_id" : 2017370,
11901 "iso_code" : "RU",
11902 "names" : {
11903 "de" : "Russland",
11904 "en" : "Russia",
11905 "es" : "Rusia",
11906 "fr" : "Russie",
11907 "ja" : "ロシア",
11908 "pt-BR" : "Rússia",
11909 "ru" : "Россия",
11910 "zh-CN" : "俄罗斯"
11911 }
11912 }
11913 }
11914 },
11915 {
11916 "2a02:ef80::/29" : {
11917 "continent" : {
11918 "code" : "AS",
11919 "geoname_id" : 6255147,
11920 "names" : {
11921 "de" : "Asien",
11922 "en" : "Asia",
11923 "es" : "Asia",
11924 "fr" : "Asie",
11925 "ja" : "アジア",
11926 "pt-BR" : "Ásia",
11927 "ru" : "Азия",
11928 "zh-CN" : "亚洲"
11929 }
11930 },
11931 "country" : {
11932 "geoname_id" : 298795,
11933 "iso_code" : "TR",
11934 "names" : {
11935 "de" : "Türkei",
11936 "en" : "Turkey",
11937 "es" : "Turquía",
11938 "fr" : "Turquie",
11939 "ja" : "トルコ共和国",
11940 "pt-BR" : "Turquia",
11941 "ru" : "Турция",
11942 "zh-CN" : "土耳其"
11943 }
11944 },
11945 "registered_country" : {
11946 "geoname_id" : 298795,
11947 "iso_code" : "TR",
11948 "names" : {
11949 "de" : "Türkei",
11950 "en" : "Turkey",
11951 "es" : "Turquía",
11952 "fr" : "Turquie",
11953 "ja" : "トルコ共和国",
11954 "pt-BR" : "Turquia",
11955 "ru" : "Турция",
11956 "zh-CN" : "土耳其"
11957 }
11958 }
11959 }
11960 },
11961 {
11962 "2a02:efc0::/29" : {
11963 "continent" : {
11964 "code" : "EU",
11965 "geoname_id" : 6255148,
11966 "names" : {
11967 "de" : "Europa",
11968 "en" : "Europe",
11969 "es" : "Europa",
11970 "fr" : "Europe",
11971 "ja" : "ヨーロッパ",
11972 "pt-BR" : "Europa",
11973 "ru" : "Европа",
11974 "zh-CN" : "欧洲"
11975 }
11976 },
11977 "country" : {
11978 "geoname_id" : 2017370,
11979 "iso_code" : "RU",
11980 "names" : {
11981 "de" : "Russland",
11982 "en" : "Russia",
11983 "es" : "Rusia",
11984 "fr" : "Russie",
11985 "ja" : "ロシア",
11986 "pt-BR" : "Rússia",
11987 "ru" : "Россия",
11988 "zh-CN" : "俄罗斯"
11989 }
11990 },
11991 "registered_country" : {
11992 "geoname_id" : 2017370,
11993 "iso_code" : "RU",
11994 "names" : {
11995 "de" : "Russland",
11996 "en" : "Russia",
11997 "es" : "Rusia",
11998 "fr" : "Russie",
11999 "ja" : "ロシア",
12000 "pt-BR" : "Rússia",
12001 "ru" : "Россия",
12002 "zh-CN" : "俄罗斯"
12003 }
12004 }
12005 }
12006 },
12007 {
12008 "2a02:f000::/29" : {
12009 "continent" : {
12010 "code" : "EU",
12011 "geoname_id" : 6255148,
12012 "names" : {
12013 "de" : "Europa",
12014 "en" : "Europe",
12015 "es" : "Europa",
12016 "fr" : "Europe",
12017 "ja" : "ヨーロッパ",
12018 "pt-BR" : "Europa",
12019 "ru" : "Европа",
12020 "zh-CN" : "欧洲"
12021 }
12022 },
12023 "country" : {
12024 "geoname_id" : 3077311,
12025 "is_in_european_union" : true,
12026 "iso_code" : "CZ",
12027 "names" : {
12028 "de" : "Tschechische Republik",
12029 "en" : "Czech Republic",
12030 "es" : "República Checa",
12031 "fr" : "Tchéquie",
12032 "ja" : "チェコ共和国",
12033 "pt-BR" : "República Checa",
12034 "ru" : "Чешская Республика",
12035 "zh-CN" : "捷克共和国"
12036 }
12037 },
12038 "registered_country" : {
12039 "geoname_id" : 3077311,
12040 "is_in_european_union" : true,
12041 "iso_code" : "CZ",
12042 "names" : {
12043 "de" : "Tschechische Republik",
12044 "en" : "Czech Republic",
12045 "es" : "República Checa",
12046 "fr" : "Tchéquie",
12047 "ja" : "チェコ共和国",
12048 "pt-BR" : "República Checa",
12049 "ru" : "Чешская Республика",
12050 "zh-CN" : "捷克共和国"
12051 }
12052 }
12053 }
12054 },
12055 {
12056 "2a02:f040::/29" : {
12057 "continent" : {
12058 "code" : "AS",
12059 "geoname_id" : 6255147,
12060 "names" : {
12061 "de" : "Asien",
12062 "en" : "Asia",
12063 "es" : "Asia",
12064 "fr" : "Asie",
12065 "ja" : "アジア",
12066 "pt-BR" : "Ásia",
12067 "ru" : "Азия",
12068 "zh-CN" : "亚洲"
12069 }
12070 },
12071 "country" : {
12072 "geoname_id" : 290291,
12073 "iso_code" : "BH",
12074 "names" : {
12075 "de" : "Bahrain",
12076 "en" : "Bahrain",
12077 "es" : "Bahréin",
12078 "fr" : "Bahreïn",
12079 "ja" : "バーレーン",
12080 "pt-BR" : "Bahrain",
12081 "ru" : "Бахрейн",
12082 "zh-CN" : "巴林"
12083 }
12084 },
12085 "registered_country" : {
12086 "geoname_id" : 290291,
12087 "iso_code" : "BH",
12088 "names" : {
12089 "de" : "Bahrain",
12090 "en" : "Bahrain",
12091 "es" : "Bahréin",
12092 "fr" : "Bahreïn",
12093 "ja" : "バーレーン",
12094 "pt-BR" : "Bahrain",
12095 "ru" : "Бахрейн",
12096 "zh-CN" : "巴林"
12097 }
12098 }
12099 }
12100 },
12101 {
12102 "2a02:f080::/30" : {
12103 "continent" : {
12104 "code" : "EU",
12105 "geoname_id" : 6255148,
12106 "names" : {
12107 "de" : "Europa",
12108 "en" : "Europe",
12109 "es" : "Europa",
12110 "fr" : "Europe",
12111 "ja" : "ヨーロッパ",
12112 "pt-BR" : "Europa",
12113 "ru" : "Европа",
12114 "zh-CN" : "欧洲"
12115 }
12116 },
12117 "country" : {
12118 "geoname_id" : 690791,
12119 "iso_code" : "UA",
12120 "names" : {
12121 "de" : "Ukraine",
12122 "en" : "Ukraine",
12123 "es" : "Ucrania",
12124 "fr" : "Ukraine",
12125 "ja" : "ウクライナ共和国",
12126 "pt-BR" : "Ucrânia",
12127 "ru" : "Украина",
12128 "zh-CN" : "乌克兰"
12129 }
12130 },
12131 "registered_country" : {
12132 "geoname_id" : 690791,
12133 "iso_code" : "UA",
12134 "names" : {
12135 "de" : "Ukraine",
12136 "en" : "Ukraine",
12137 "es" : "Ucrania",
12138 "fr" : "Ukraine",
12139 "ja" : "ウクライナ共和国",
12140 "pt-BR" : "Ucrânia",
12141 "ru" : "Украина",
12142 "zh-CN" : "乌克兰"
12143 }
12144 }
12145 }
12146 },
12147 {
12148 "2a02:f0a0::/30" : {
12149 "continent" : {
12150 "code" : "EU",
12151 "geoname_id" : 6255148,
12152 "names" : {
12153 "de" : "Europa",
12154 "en" : "Europe",
12155 "es" : "Europa",
12156 "fr" : "Europe",
12157 "ja" : "ヨーロッパ",
12158 "pt-BR" : "Europa",
12159 "ru" : "Европа",
12160 "zh-CN" : "欧洲"
12161 }
12162 },
12163 "country" : {
12164 "geoname_id" : 2635167,
12165 "is_in_european_union" : true,
12166 "iso_code" : "GB",
12167 "names" : {
12168 "de" : "Vereinigtes Königreich",
12169 "en" : "United Kingdom",
12170 "es" : "Reino Unido",
12171 "fr" : "Royaume-Uni",
12172 "ja" : "イギリス",
12173 "pt-BR" : "Reino Unido",
12174 "ru" : "Великобритания",
12175 "zh-CN" : "英国"
12176 }
12177 },
12178 "registered_country" : {
12179 "geoname_id" : 2635167,
12180 "is_in_european_union" : true,
12181 "iso_code" : "GB",
12182 "names" : {
12183 "de" : "Vereinigtes Königreich",
12184 "en" : "United Kingdom",
12185 "es" : "Reino Unido",
12186 "fr" : "Royaume-Uni",
12187 "ja" : "イギリス",
12188 "pt-BR" : "Reino Unido",
12189 "ru" : "Великобритания",
12190 "zh-CN" : "英国"
12191 }
12192 }
12193 }
12194 },
12195 {
12196 "2a02:f0c0::/29" : {
12197 "continent" : {
12198 "code" : "AS",
12199 "geoname_id" : 6255147,
12200 "names" : {
12201 "de" : "Asien",
12202 "en" : "Asia",
12203 "es" : "Asia",
12204 "fr" : "Asie",
12205 "ja" : "アジア",
12206 "pt-BR" : "Ásia",
12207 "ru" : "Азия",
12208 "zh-CN" : "亚洲"
12209 }
12210 },
12211 "country" : {
12212 "geoname_id" : 248816,
12213 "iso_code" : "JO",
12214 "names" : {
12215 "de" : "Jordanien",
12216 "en" : "Hashemite Kingdom of Jordan",
12217 "es" : "Jordania",
12218 "fr" : "Jordanie",
12219 "ja" : "ヨルダン・ハシミテ王国",
12220 "pt-BR" : "Jordânia",
12221 "ru" : "Иордания",
12222 "zh-CN" : "约旦"
12223 }
12224 },
12225 "registered_country" : {
12226 "geoname_id" : 248816,
12227 "iso_code" : "JO",
12228 "names" : {
12229 "de" : "Jordanien",
12230 "en" : "Hashemite Kingdom of Jordan",
12231 "es" : "Jordania",
12232 "fr" : "Jordanie",
12233 "ja" : "ヨルダン・ハシミテ王国",
12234 "pt-BR" : "Jordânia",
12235 "ru" : "Иордания",
12236 "zh-CN" : "约旦"
12237 }
12238 }
12239 }
12240 },
12241 {
12242 "2a02:f100::/29" : {
12243 "continent" : {
12244 "code" : "EU",
12245 "geoname_id" : 6255148,
12246 "names" : {
12247 "de" : "Europa",
12248 "en" : "Europe",
12249 "es" : "Europa",
12250 "fr" : "Europe",
12251 "ja" : "ヨーロッパ",
12252 "pt-BR" : "Europa",
12253 "ru" : "Европа",
12254 "zh-CN" : "欧洲"
12255 }
12256 },
12257 "country" : {
12258 "geoname_id" : 2635167,
12259 "is_in_european_union" : true,
12260 "iso_code" : "GB",
12261 "names" : {
12262 "de" : "Vereinigtes Königreich",
12263 "en" : "United Kingdom",
12264 "es" : "Reino Unido",
12265 "fr" : "Royaume-Uni",
12266 "ja" : "イギリス",
12267 "pt-BR" : "Reino Unido",
12268 "ru" : "Великобритания",
12269 "zh-CN" : "英国"
12270 }
12271 },
12272 "registered_country" : {
12273 "geoname_id" : 2635167,
12274 "is_in_european_union" : true,
12275 "iso_code" : "GB",
12276 "names" : {
12277 "de" : "Vereinigtes Königreich",
12278 "en" : "United Kingdom",
12279 "es" : "Reino Unido",
12280 "fr" : "Royaume-Uni",
12281 "ja" : "イギリス",
12282 "pt-BR" : "Reino Unido",
12283 "ru" : "Великобритания",
12284 "zh-CN" : "英国"
12285 }
12286 }
12287 }
12288 },
12289 {
12290 "2a02:f140::/29" : {
12291 "continent" : {
12292 "code" : "EU",
12293 "geoname_id" : 6255148,
12294 "names" : {
12295 "de" : "Europa",
12296 "en" : "Europe",
12297 "es" : "Europa",
12298 "fr" : "Europe",
12299 "ja" : "ヨーロッパ",
12300 "pt-BR" : "Europa",
12301 "ru" : "Европа",
12302 "zh-CN" : "欧洲"
12303 }
12304 },
12305 "country" : {
12306 "geoname_id" : 2921044,
12307 "is_in_european_union" : true,
12308 "iso_code" : "DE",
12309 "names" : {
12310 "de" : "Deutschland",
12311 "en" : "Germany",
12312 "es" : "Alemania",
12313 "fr" : "Allemagne",
12314 "ja" : "ドイツ連邦共和国",
12315 "pt-BR" : "Alemanha",
12316 "ru" : "Германия",
12317 "zh-CN" : "德国"
12318 }
12319 },
12320 "registered_country" : {
12321 "geoname_id" : 2921044,
12322 "is_in_european_union" : true,
12323 "iso_code" : "DE",
12324 "names" : {
12325 "de" : "Deutschland",
12326 "en" : "Germany",
12327 "es" : "Alemania",
12328 "fr" : "Allemagne",
12329 "ja" : "ドイツ連邦共和国",
12330 "pt-BR" : "Alemanha",
12331 "ru" : "Германия",
12332 "zh-CN" : "德国"
12333 }
12334 }
12335 }
12336 },
12337 {
12338 "2a02:f180::/29" : {
12339 "continent" : {
12340 "code" : "EU",
12341 "geoname_id" : 6255148,
12342 "names" : {
12343 "de" : "Europa",
12344 "en" : "Europe",
12345 "es" : "Europa",
12346 "fr" : "Europe",
12347 "ja" : "ヨーロッパ",
12348 "pt-BR" : "Europa",
12349 "ru" : "Европа",
12350 "zh-CN" : "欧洲"
12351 }
12352 },
12353 "country" : {
12354 "geoname_id" : 3017382,
12355 "is_in_european_union" : true,
12356 "iso_code" : "FR",
12357 "names" : {
12358 "de" : "Frankreich",
12359 "en" : "France",
12360 "es" : "Francia",
12361 "fr" : "France",
12362 "ja" : "フランス共和国",
12363 "pt-BR" : "França",
12364 "ru" : "Франция",
12365 "zh-CN" : "法国"
12366 }
12367 },
12368 "registered_country" : {
12369 "geoname_id" : 3017382,
12370 "is_in_european_union" : true,
12371 "iso_code" : "FR",
12372 "names" : {
12373 "de" : "Frankreich",
12374 "en" : "France",
12375 "es" : "Francia",
12376 "fr" : "France",
12377 "ja" : "フランス共和国",
12378 "pt-BR" : "França",
12379 "ru" : "Франция",
12380 "zh-CN" : "法国"
12381 }
12382 }
12383 }
12384 },
12385 {
12386 "2a02:f1c0::/29" : {
12387 "continent" : {
12388 "code" : "EU",
12389 "geoname_id" : 6255148,
12390 "names" : {
12391 "de" : "Europa",
12392 "en" : "Europe",
12393 "es" : "Europa",
12394 "fr" : "Europe",
12395 "ja" : "ヨーロッパ",
12396 "pt-BR" : "Europa",
12397 "ru" : "Европа",
12398 "zh-CN" : "欧洲"
12399 }
12400 },
12401 "country" : {
12402 "geoname_id" : 690791,
12403 "iso_code" : "UA",
12404 "names" : {
12405 "de" : "Ukraine",
12406 "en" : "Ukraine",
12407 "es" : "Ucrania",
12408 "fr" : "Ukraine",
12409 "ja" : "ウクライナ共和国",
12410 "pt-BR" : "Ucrânia",
12411 "ru" : "Украина",
12412 "zh-CN" : "乌克兰"
12413 }
12414 },
12415 "registered_country" : {
12416 "geoname_id" : 690791,
12417 "iso_code" : "UA",
12418 "names" : {
12419 "de" : "Ukraine",
12420 "en" : "Ukraine",
12421 "es" : "Ucrania",
12422 "fr" : "Ukraine",
12423 "ja" : "ウクライナ共和国",
12424 "pt-BR" : "Ucrânia",
12425 "ru" : "Украина",
12426 "zh-CN" : "乌克兰"
12427 }
12428 }
12429 }
12430 },
12431 {
12432 "2a02:f200::/29" : {
12433 "continent" : {
12434 "code" : "EU",
12435 "geoname_id" : 6255148,
12436 "names" : {
12437 "de" : "Europa",
12438 "en" : "Europe",
12439 "es" : "Europa",
12440 "fr" : "Europe",
12441 "ja" : "ヨーロッパ",
12442 "pt-BR" : "Europa",
12443 "ru" : "Европа",
12444 "zh-CN" : "欧洲"
12445 }
12446 },
12447 "country" : {
12448 "geoname_id" : 2921044,
12449 "is_in_european_union" : true,
12450 "iso_code" : "DE",
12451 "names" : {
12452 "de" : "Deutschland",
12453 "en" : "Germany",
12454 "es" : "Alemania",
12455 "fr" : "Allemagne",
12456 "ja" : "ドイツ連邦共和国",
12457 "pt-BR" : "Alemanha",
12458 "ru" : "Германия",
12459 "zh-CN" : "德国"
12460 }
12461 },
12462 "registered_country" : {
12463 "geoname_id" : 2921044,
12464 "is_in_european_union" : true,
12465 "iso_code" : "DE",
12466 "names" : {
12467 "de" : "Deutschland",
12468 "en" : "Germany",
12469 "es" : "Alemania",
12470 "fr" : "Allemagne",
12471 "ja" : "ドイツ連邦共和国",
12472 "pt-BR" : "Alemanha",
12473 "ru" : "Германия",
12474 "zh-CN" : "德国"
12475 }
12476 }
12477 }
12478 },
12479 {
12480 "2a02:f240::/29" : {
12481 "continent" : {
12482 "code" : "AS",
12483 "geoname_id" : 6255147,
12484 "names" : {
12485 "de" : "Asien",
12486 "en" : "Asia",
12487 "es" : "Asia",
12488 "fr" : "Asie",
12489 "ja" : "アジア",
12490 "pt-BR" : "Ásia",
12491 "ru" : "Азия",
12492 "zh-CN" : "亚洲"
12493 }
12494 },
12495 "country" : {
12496 "geoname_id" : 130758,
12497 "iso_code" : "IR",
12498 "names" : {
12499 "de" : "Iran (Islamische Republik)",
12500 "en" : "Iran",
12501 "es" : "Irán (República Islámica)",
12502 "fr" : "Iran (République islamique de)",
12503 "ja" : "イラン・イスラム共和国",
12504 "pt-BR" : "República Islâmica do Irã",
12505 "ru" : "Иран",
12506 "zh-CN" : "伊朗伊斯兰共和国"
12507 }
12508 },
12509 "registered_country" : {
12510 "geoname_id" : 130758,
12511 "iso_code" : "IR",
12512 "names" : {
12513 "de" : "Iran (Islamische Republik)",
12514 "en" : "Iran",
12515 "es" : "Irán (República Islámica)",
12516 "fr" : "Iran (République islamique de)",
12517 "ja" : "イラン・イスラム共和国",
12518 "pt-BR" : "República Islâmica do Irã",
12519 "ru" : "Иран",
12520 "zh-CN" : "伊朗伊斯兰共和国"
12521 }
12522 }
12523 }
12524 },
12525 {
12526 "2a02:f280::/29" : {
12527 "continent" : {
12528 "code" : "EU",
12529 "geoname_id" : 6255148,
12530 "names" : {
12531 "de" : "Europa",
12532 "en" : "Europe",
12533 "es" : "Europa",
12534 "fr" : "Europe",
12535 "ja" : "ヨーロッパ",
12536 "pt-BR" : "Europa",
12537 "ru" : "Европа",
12538 "zh-CN" : "欧洲"
12539 }
12540 },
12541 "country" : {
12542 "geoname_id" : 3017382,
12543 "is_in_european_union" : true,
12544 "iso_code" : "FR",
12545 "names" : {
12546 "de" : "Frankreich",
12547 "en" : "France",
12548 "es" : "Francia",
12549 "fr" : "France",
12550 "ja" : "フランス共和国",
12551 "pt-BR" : "França",
12552 "ru" : "Франция",
12553 "zh-CN" : "法国"
12554 }
12555 },
12556 "registered_country" : {
12557 "geoname_id" : 3017382,
12558 "is_in_european_union" : true,
12559 "iso_code" : "FR",
12560 "names" : {
12561 "de" : "Frankreich",
12562 "en" : "France",
12563 "es" : "Francia",
12564 "fr" : "France",
12565 "ja" : "フランス共和国",
12566 "pt-BR" : "França",
12567 "ru" : "Франция",
12568 "zh-CN" : "法国"
12569 }
12570 }
12571 }
12572 },
12573 {
12574 "2a02:f2c0::/29" : {
12575 "continent" : {
12576 "code" : "EU",
12577 "geoname_id" : 6255148,
12578 "names" : {
12579 "de" : "Europa",
12580 "en" : "Europe",
12581 "es" : "Europa",
12582 "fr" : "Europe",
12583 "ja" : "ヨーロッパ",
12584 "pt-BR" : "Europa",
12585 "ru" : "Европа",
12586 "zh-CN" : "欧洲"
12587 }
12588 },
12589 "country" : {
12590 "geoname_id" : 2017370,
12591 "iso_code" : "RU",
12592 "names" : {
12593 "de" : "Russland",
12594 "en" : "Russia",
12595 "es" : "Rusia",
12596 "fr" : "Russie",
12597 "ja" : "ロシア",
12598 "pt-BR" : "Rússia",
12599 "ru" : "Россия",
12600 "zh-CN" : "俄罗斯"
12601 }
12602 },
12603 "registered_country" : {
12604 "geoname_id" : 2017370,
12605 "iso_code" : "RU",
12606 "names" : {
12607 "de" : "Russland",
12608 "en" : "Russia",
12609 "es" : "Rusia",
12610 "fr" : "Russie",
12611 "ja" : "ロシア",
12612 "pt-BR" : "Rússia",
12613 "ru" : "Россия",
12614 "zh-CN" : "俄罗斯"
12615 }
12616 }
12617 }
12618 },
12619 {
12620 "2a02:f300::/29" : {
12621 "continent" : {
12622 "code" : "EU",
12623 "geoname_id" : 6255148,
12624 "names" : {
12625 "de" : "Europa",
12626 "en" : "Europe",
12627 "es" : "Europa",
12628 "fr" : "Europe",
12629 "ja" : "ヨーロッパ",
12630 "pt-BR" : "Europa",
12631 "ru" : "Европа",
12632 "zh-CN" : "欧洲"
12633 }
12634 },
12635 "country" : {
12636 "geoname_id" : 3144096,
12637 "iso_code" : "NO",
12638 "names" : {
12639 "de" : "Norwegen",
12640 "en" : "Norway",
12641 "es" : "Noruega",
12642 "fr" : "Norvège",
12643 "ja" : "ノルウェー王国",
12644 "pt-BR" : "Noruega",
12645 "ru" : "Норвегия",
12646 "zh-CN" : "挪威"
12647 }
12648 },
12649 "registered_country" : {
12650 "geoname_id" : 3144096,
12651 "iso_code" : "NO",
12652 "names" : {
12653 "de" : "Norwegen",
12654 "en" : "Norway",
12655 "es" : "Noruega",
12656 "fr" : "Norvège",
12657 "ja" : "ノルウェー王国",
12658 "pt-BR" : "Noruega",
12659 "ru" : "Норвегия",
12660 "zh-CN" : "挪威"
12661 }
12662 }
12663 }
12664 },
12665 {
12666 "2a02:f340::/29" : {
12667 "continent" : {
12668 "code" : "EU",
12669 "geoname_id" : 6255148,
12670 "names" : {
12671 "de" : "Europa",
12672 "en" : "Europe",
12673 "es" : "Europa",
12674 "fr" : "Europe",
12675 "ja" : "ヨーロッパ",
12676 "pt-BR" : "Europa",
12677 "ru" : "Европа",
12678 "zh-CN" : "欧洲"
12679 }
12680 },
12681 "country" : {
12682 "geoname_id" : 2921044,
12683 "is_in_european_union" : true,
12684 "iso_code" : "DE",
12685 "names" : {
12686 "de" : "Deutschland",
12687 "en" : "Germany",
12688 "es" : "Alemania",
12689 "fr" : "Allemagne",
12690 "ja" : "ドイツ連邦共和国",
12691 "pt-BR" : "Alemanha",
12692 "ru" : "Германия",
12693 "zh-CN" : "德国"
12694 }
12695 },
12696 "registered_country" : {
12697 "geoname_id" : 2921044,
12698 "is_in_european_union" : true,
12699 "iso_code" : "DE",
12700 "names" : {
12701 "de" : "Deutschland",
12702 "en" : "Germany",
12703 "es" : "Alemania",
12704 "fr" : "Allemagne",
12705 "ja" : "ドイツ連邦共和国",
12706 "pt-BR" : "Alemanha",
12707 "ru" : "Германия",
12708 "zh-CN" : "德国"
12709 }
12710 }
12711 }
12712 },
12713 {
12714 "2a02:f380::/29" : {
12715 "continent" : {
12716 "code" : "EU",
12717 "geoname_id" : 6255148,
12718 "names" : {
12719 "de" : "Europa",
12720 "en" : "Europe",
12721 "es" : "Europa",
12722 "fr" : "Europe",
12723 "ja" : "ヨーロッパ",
12724 "pt-BR" : "Europa",
12725 "ru" : "Европа",
12726 "zh-CN" : "欧洲"
12727 }
12728 },
12729 "country" : {
12730 "geoname_id" : 2635167,
12731 "is_in_european_union" : true,
12732 "iso_code" : "GB",
12733 "names" : {
12734 "de" : "Vereinigtes Königreich",
12735 "en" : "United Kingdom",
12736 "es" : "Reino Unido",
12737 "fr" : "Royaume-Uni",
12738 "ja" : "イギリス",
12739 "pt-BR" : "Reino Unido",
12740 "ru" : "Великобритания",
12741 "zh-CN" : "英国"
12742 }
12743 },
12744 "registered_country" : {
12745 "geoname_id" : 2635167,
12746 "is_in_european_union" : true,
12747 "iso_code" : "GB",
12748 "names" : {
12749 "de" : "Vereinigtes Königreich",
12750 "en" : "United Kingdom",
12751 "es" : "Reino Unido",
12752 "fr" : "Royaume-Uni",
12753 "ja" : "イギリス",
12754 "pt-BR" : "Reino Unido",
12755 "ru" : "Великобритания",
12756 "zh-CN" : "英国"
12757 }
12758 }
12759 }
12760 },
12761 {
12762 "2a02:f3c0::/29" : {
12763 "continent" : {
12764 "code" : "EU",
12765 "geoname_id" : 6255148,
12766 "names" : {
12767 "de" : "Europa",
12768 "en" : "Europe",
12769 "es" : "Europa",
12770 "fr" : "Europe",
12771 "ja" : "ヨーロッパ",
12772 "pt-BR" : "Europa",
12773 "ru" : "Европа",
12774 "zh-CN" : "欧洲"
12775 }
12776 },
12777 "country" : {
12778 "geoname_id" : 798544,
12779 "is_in_european_union" : true,
12780 "iso_code" : "PL",
12781 "names" : {
12782 "de" : "Polen",
12783 "en" : "Poland",
12784 "es" : "Polonia",
12785 "fr" : "Pologne",
12786 "ja" : "ポーランド共和国",
12787 "pt-BR" : "Polônia",
12788 "ru" : "Польша",
12789 "zh-CN" : "波兰"
12790 }
12791 },
12792 "registered_country" : {
12793 "geoname_id" : 798544,
12794 "is_in_european_union" : true,
12795 "iso_code" : "PL",
12796 "names" : {
12797 "de" : "Polen",
12798 "en" : "Poland",
12799 "es" : "Polonia",
12800 "fr" : "Pologne",
12801 "ja" : "ポーランド共和国",
12802 "pt-BR" : "Polônia",
12803 "ru" : "Польша",
12804 "zh-CN" : "波兰"
12805 }
12806 }
12807 }
12808 },
12809 {
12810 "2a02:f400::/29" : {
12811 "continent" : {
12812 "code" : "AS",
12813 "geoname_id" : 6255147,
12814 "names" : {
12815 "de" : "Asien",
12816 "en" : "Asia",
12817 "es" : "Asia",
12818 "fr" : "Asie",
12819 "ja" : "アジア",
12820 "pt-BR" : "Ásia",
12821 "ru" : "Азия",
12822 "zh-CN" : "亚洲"
12823 }
12824 },
12825 "country" : {
12826 "geoname_id" : 290557,
12827 "iso_code" : "AE",
12828 "names" : {
12829 "de" : "Vereinigte Arabische Emirate",
12830 "en" : "United Arab Emirates",
12831 "es" : "Emiratos Árabes Unidos",
12832 "fr" : "Émirats Arabes Unis",
12833 "ja" : "アラブ首長国連邦",
12834 "pt-BR" : "Emirados Árabes Unidos",
12835 "ru" : "Объединенные Арабские Эмираты",
12836 "zh-CN" : "阿拉伯联合酋长国"
12837 }
12838 },
12839 "registered_country" : {
12840 "geoname_id" : 290557,
12841 "iso_code" : "AE",
12842 "names" : {
12843 "de" : "Vereinigte Arabische Emirate",
12844 "en" : "United Arab Emirates",
12845 "es" : "Emiratos Árabes Unidos",
12846 "fr" : "Émirats Arabes Unis",
12847 "ja" : "アラブ首長国連邦",
12848 "pt-BR" : "Emirados Árabes Unidos",
12849 "ru" : "Объединенные Арабские Эмираты",
12850 "zh-CN" : "阿拉伯联合酋长国"
12851 }
12852 }
12853 }
12854 },
12855 {
12856 "2a02:f440::/29" : {
12857 "continent" : {
12858 "code" : "EU",
12859 "geoname_id" : 6255148,
12860 "names" : {
12861 "de" : "Europa",
12862 "en" : "Europe",
12863 "es" : "Europa",
12864 "fr" : "Europe",
12865 "ja" : "ヨーロッパ",
12866 "pt-BR" : "Europa",
12867 "ru" : "Европа",
12868 "zh-CN" : "欧洲"
12869 }
12870 },
12871 "country" : {
12872 "geoname_id" : 2635167,
12873 "is_in_european_union" : true,
12874 "iso_code" : "GB",
12875 "names" : {
12876 "de" : "Vereinigtes Königreich",
12877 "en" : "United Kingdom",
12878 "es" : "Reino Unido",
12879 "fr" : "Royaume-Uni",
12880 "ja" : "イギリス",
12881 "pt-BR" : "Reino Unido",
12882 "ru" : "Великобритания",
12883 "zh-CN" : "英国"
12884 }
12885 },
12886 "registered_country" : {
12887 "geoname_id" : 2635167,
12888 "is_in_european_union" : true,
12889 "iso_code" : "GB",
12890 "names" : {
12891 "de" : "Vereinigtes Königreich",
12892 "en" : "United Kingdom",
12893 "es" : "Reino Unido",
12894 "fr" : "Royaume-Uni",
12895 "ja" : "イギリス",
12896 "pt-BR" : "Reino Unido",
12897 "ru" : "Великобритания",
12898 "zh-CN" : "英国"
12899 }
12900 }
12901 }
12902 },
12903 {
12904 "2a02:f480::/29" : {
12905 "continent" : {
12906 "code" : "EU",
12907 "geoname_id" : 6255148,
12908 "names" : {
12909 "de" : "Europa",
12910 "en" : "Europe",
12911 "es" : "Europa",
12912 "fr" : "Europe",
12913 "ja" : "ヨーロッパ",
12914 "pt-BR" : "Europa",
12915 "ru" : "Европа",
12916 "zh-CN" : "欧洲"
12917 }
12918 },
12919 "country" : {
12920 "geoname_id" : 3144096,
12921 "iso_code" : "NO",
12922 "names" : {
12923 "de" : "Norwegen",
12924 "en" : "Norway",
12925 "es" : "Noruega",
12926 "fr" : "Norvège",
12927 "ja" : "ノルウェー王国",
12928 "pt-BR" : "Noruega",
12929 "ru" : "Норвегия",
12930 "zh-CN" : "挪威"
12931 }
12932 },
12933 "registered_country" : {
12934 "geoname_id" : 3144096,
12935 "iso_code" : "NO",
12936 "names" : {
12937 "de" : "Norwegen",
12938 "en" : "Norway",
12939 "es" : "Noruega",
12940 "fr" : "Norvège",
12941 "ja" : "ノルウェー王国",
12942 "pt-BR" : "Noruega",
12943 "ru" : "Норвегия",
12944 "zh-CN" : "挪威"
12945 }
12946 }
12947 }
12948 },
12949 {
12950 "2a02:f4c0::/29" : {
12951 "continent" : {
12952 "code" : "EU",
12953 "geoname_id" : 6255148,
12954 "names" : {
12955 "de" : "Europa",
12956 "en" : "Europe",
12957 "es" : "Europa",
12958 "fr" : "Europe",
12959 "ja" : "ヨーロッパ",
12960 "pt-BR" : "Europa",
12961 "ru" : "Европа",
12962 "zh-CN" : "欧洲"
12963 }
12964 },
12965 "country" : {
12966 "geoname_id" : 2510769,
12967 "is_in_european_union" : true,
12968 "iso_code" : "ES",
12969 "names" : {
12970 "de" : "Spanien",
12971 "en" : "Spain",
12972 "es" : "España",
12973 "fr" : "Espagne",
12974 "ja" : "スペイン",
12975 "pt-BR" : "Espanha",
12976 "ru" : "Испания",
12977 "zh-CN" : "西班牙"
12978 }
12979 },
12980 "registered_country" : {
12981 "geoname_id" : 2510769,
12982 "is_in_european_union" : true,
12983 "iso_code" : "ES",
12984 "names" : {
12985 "de" : "Spanien",
12986 "en" : "Spain",
12987 "es" : "España",
12988 "fr" : "Espagne",
12989 "ja" : "スペイン",
12990 "pt-BR" : "Espanha",
12991 "ru" : "Испания",
12992 "zh-CN" : "西班牙"
12993 }
12994 }
12995 }
12996 },
12997 {
12998 "2a02:f500::/29" : {
12999 "continent" : {
13000 "code" : "EU",
13001 "geoname_id" : 6255148,
13002 "names" : {
13003 "de" : "Europa",
13004 "en" : "Europe",
13005 "es" : "Europa",
13006 "fr" : "Europe",
13007 "ja" : "ヨーロッパ",
13008 "pt-BR" : "Europa",
13009 "ru" : "Европа",
13010 "zh-CN" : "欧洲"
13011 }
13012 },
13013 "country" : {
13014 "geoname_id" : 2017370,
13015 "iso_code" : "RU",
13016 "names" : {
13017 "de" : "Russland",
13018 "en" : "Russia",
13019 "es" : "Rusia",
13020 "fr" : "Russie",
13021 "ja" : "ロシア",
13022 "pt-BR" : "Rússia",
13023 "ru" : "Россия",
13024 "zh-CN" : "俄罗斯"
13025 }
13026 },
13027 "registered_country" : {
13028 "geoname_id" : 2017370,
13029 "iso_code" : "RU",
13030 "names" : {
13031 "de" : "Russland",
13032 "en" : "Russia",
13033 "es" : "Rusia",
13034 "fr" : "Russie",
13035 "ja" : "ロシア",
13036 "pt-BR" : "Rússia",
13037 "ru" : "Россия",
13038 "zh-CN" : "俄罗斯"
13039 }
13040 }
13041 }
13042 },
13043 {
13044 "2a02:f540::/30" : {
13045 "continent" : {
13046 "code" : "EU",
13047 "geoname_id" : 6255148,
13048 "names" : {
13049 "de" : "Europa",
13050 "en" : "Europe",
13051 "es" : "Europa",
13052 "fr" : "Europe",
13053 "ja" : "ヨーロッパ",
13054 "pt-BR" : "Europa",
13055 "ru" : "Европа",
13056 "zh-CN" : "欧洲"
13057 }
13058 },
13059 "country" : {
13060 "geoname_id" : 2635167,
13061 "is_in_european_union" : true,
13062 "iso_code" : "GB",
13063 "names" : {
13064 "de" : "Vereinigtes Königreich",
13065 "en" : "United Kingdom",
13066 "es" : "Reino Unido",
13067 "fr" : "Royaume-Uni",
13068 "ja" : "イギリス",
13069 "pt-BR" : "Reino Unido",
13070 "ru" : "Великобритания",
13071 "zh-CN" : "英国"
13072 }
13073 },
13074 "registered_country" : {
13075 "geoname_id" : 2635167,
13076 "is_in_european_union" : true,
13077 "iso_code" : "GB",
13078 "names" : {
13079 "de" : "Vereinigtes Königreich",
13080 "en" : "United Kingdom",
13081 "es" : "Reino Unido",
13082 "fr" : "Royaume-Uni",
13083 "ja" : "イギリス",
13084 "pt-BR" : "Reino Unido",
13085 "ru" : "Великобритания",
13086 "zh-CN" : "英国"
13087 }
13088 }
13089 }
13090 },
13091 {
13092 "2a02:f560::/30" : {
13093 "continent" : {
13094 "code" : "EU",
13095 "geoname_id" : 6255148,
13096 "names" : {
13097 "de" : "Europa",
13098 "en" : "Europe",
13099 "es" : "Europa",
13100 "fr" : "Europe",
13101 "ja" : "ヨーロッパ",
13102 "pt-BR" : "Europa",
13103 "ru" : "Европа",
13104 "zh-CN" : "欧洲"
13105 }
13106 },
13107 "country" : {
13108 "geoname_id" : 2017370,
13109 "iso_code" : "RU",
13110 "names" : {
13111 "de" : "Russland",
13112 "en" : "Russia",
13113 "es" : "Rusia",
13114 "fr" : "Russie",
13115 "ja" : "ロシア",
13116 "pt-BR" : "Rússia",
13117 "ru" : "Россия",
13118 "zh-CN" : "俄罗斯"
13119 }
13120 },
13121 "registered_country" : {
13122 "geoname_id" : 2017370,
13123 "iso_code" : "RU",
13124 "names" : {
13125 "de" : "Russland",
13126 "en" : "Russia",
13127 "es" : "Rusia",
13128 "fr" : "Russie",
13129 "ja" : "ロシア",
13130 "pt-BR" : "Rússia",
13131 "ru" : "Россия",
13132 "zh-CN" : "俄罗斯"
13133 }
13134 }
13135 }
13136 },
13137 {
13138 "2a02:f580::/29" : {
13139 "continent" : {
13140 "code" : "AS",
13141 "geoname_id" : 6255147,
13142 "names" : {
13143 "de" : "Asien",
13144 "en" : "Asia",
13145 "es" : "Asia",
13146 "fr" : "Asie",
13147 "ja" : "アジア",
13148 "pt-BR" : "Ásia",
13149 "ru" : "Азия",
13150 "zh-CN" : "亚洲"
13151 }
13152 },
13153 "country" : {
13154 "geoname_id" : 174982,
13155 "iso_code" : "AM",
13156 "names" : {
13157 "de" : "Armenien",
13158 "en" : "Armenia",
13159 "es" : "Armenia",
13160 "fr" : "Arménie",
13161 "ja" : "アルメニア共和国",
13162 "pt-BR" : "Armênia",
13163 "ru" : "Армения",
13164 "zh-CN" : "亚美尼亚"
13165 }
13166 },
13167 "registered_country" : {
13168 "geoname_id" : 174982,
13169 "iso_code" : "AM",
13170 "names" : {
13171 "de" : "Armenien",
13172 "en" : "Armenia",
13173 "es" : "Armenia",
13174 "fr" : "Arménie",
13175 "ja" : "アルメニア共和国",
13176 "pt-BR" : "Armênia",
13177 "ru" : "Армения",
13178 "zh-CN" : "亚美尼亚"
13179 }
13180 }
13181 }
13182 },
13183 {
13184 "2a02:f5c0::/29" : {
13185 "continent" : {
13186 "code" : "EU",
13187 "geoname_id" : 6255148,
13188 "names" : {
13189 "de" : "Europa",
13190 "en" : "Europe",
13191 "es" : "Europa",
13192 "fr" : "Europe",
13193 "ja" : "ヨーロッパ",
13194 "pt-BR" : "Europa",
13195 "ru" : "Европа",
13196 "zh-CN" : "欧洲"
13197 }
13198 },
13199 "country" : {
13200 "geoname_id" : 2750405,
13201 "is_in_european_union" : true,
13202 "iso_code" : "NL",
13203 "names" : {
13204 "de" : "Niederlande",
13205 "en" : "Netherlands",
13206 "es" : "Holanda",
13207 "fr" : "Pays-Bas",
13208 "ja" : "オランダ王国",
13209 "pt-BR" : "Países Baixos",
13210 "ru" : "Нидерланды",
13211 "zh-CN" : "荷兰"
13212 }
13213 },
13214 "registered_country" : {
13215 "geoname_id" : 2750405,
13216 "is_in_european_union" : true,
13217 "iso_code" : "NL",
13218 "names" : {
13219 "de" : "Niederlande",
13220 "en" : "Netherlands",
13221 "es" : "Holanda",
13222 "fr" : "Pays-Bas",
13223 "ja" : "オランダ王国",
13224 "pt-BR" : "Países Baixos",
13225 "ru" : "Нидерланды",
13226 "zh-CN" : "荷兰"
13227 }
13228 }
13229 }
13230 },
13231 {
13232 "2a02:f600::/29" : {
13233 "continent" : {
13234 "code" : "EU",
13235 "geoname_id" : 6255148,
13236 "names" : {
13237 "de" : "Europa",
13238 "en" : "Europe",
13239 "es" : "Europa",
13240 "fr" : "Europe",
13241 "ja" : "ヨーロッパ",
13242 "pt-BR" : "Europa",
13243 "ru" : "Европа",
13244 "zh-CN" : "欧洲"
13245 }
13246 },
13247 "country" : {
13248 "geoname_id" : 2750405,
13249 "is_in_european_union" : true,
13250 "iso_code" : "NL",
13251 "names" : {
13252 "de" : "Niederlande",
13253 "en" : "Netherlands",
13254 "es" : "Holanda",
13255 "fr" : "Pays-Bas",
13256 "ja" : "オランダ王国",
13257 "pt-BR" : "Países Baixos",
13258 "ru" : "Нидерланды",
13259 "zh-CN" : "荷兰"
13260 }
13261 },
13262 "registered_country" : {
13263 "geoname_id" : 2750405,
13264 "is_in_european_union" : true,
13265 "iso_code" : "NL",
13266 "names" : {
13267 "de" : "Niederlande",
13268 "en" : "Netherlands",
13269 "es" : "Holanda",
13270 "fr" : "Pays-Bas",
13271 "ja" : "オランダ王国",
13272 "pt-BR" : "Países Baixos",
13273 "ru" : "Нидерланды",
13274 "zh-CN" : "荷兰"
13275 }
13276 }
13277 }
13278 },
13279 {
13280 "2a02:f640::/29" : {
13281 "continent" : {
13282 "code" : "EU",
13283 "geoname_id" : 6255148,
13284 "names" : {
13285 "de" : "Europa",
13286 "en" : "Europe",
13287 "es" : "Europa",
13288 "fr" : "Europe",
13289 "ja" : "ヨーロッパ",
13290 "pt-BR" : "Europa",
13291 "ru" : "Европа",
13292 "zh-CN" : "欧洲"
13293 }
13294 },
13295 "country" : {
13296 "geoname_id" : 2750405,
13297 "is_in_european_union" : true,
13298 "iso_code" : "NL",
13299 "names" : {
13300 "de" : "Niederlande",
13301 "en" : "Netherlands",
13302 "es" : "Holanda",
13303 "fr" : "Pays-Bas",
13304 "ja" : "オランダ王国",
13305 "pt-BR" : "Países Baixos",
13306 "ru" : "Нидерланды",
13307 "zh-CN" : "荷兰"
13308 }
13309 },
13310 "registered_country" : {
13311 "geoname_id" : 2750405,
13312 "is_in_european_union" : true,
13313 "iso_code" : "NL",
13314 "names" : {
13315 "de" : "Niederlande",
13316 "en" : "Netherlands",
13317 "es" : "Holanda",
13318 "fr" : "Pays-Bas",
13319 "ja" : "オランダ王国",
13320 "pt-BR" : "Países Baixos",
13321 "ru" : "Нидерланды",
13322 "zh-CN" : "荷兰"
13323 }
13324 }
13325 }
13326 },
13327 {
13328 "2a02:f680::/29" : {
13329 "continent" : {
13330 "code" : "EU",
13331 "geoname_id" : 6255148,
13332 "names" : {
13333 "de" : "Europa",
13334 "en" : "Europe",
13335 "es" : "Europa",
13336 "fr" : "Europe",
13337 "ja" : "ヨーロッパ",
13338 "pt-BR" : "Europa",
13339 "ru" : "Европа",
13340 "zh-CN" : "欧洲"
13341 }
13342 },
13343 "country" : {
13344 "geoname_id" : 2017370,
13345 "iso_code" : "RU",
13346 "names" : {
13347 "de" : "Russland",
13348 "en" : "Russia",
13349 "es" : "Rusia",
13350 "fr" : "Russie",
13351 "ja" : "ロシア",
13352 "pt-BR" : "Rússia",
13353 "ru" : "Россия",
13354 "zh-CN" : "俄罗斯"
13355 }
13356 },
13357 "registered_country" : {
13358 "geoname_id" : 2017370,
13359 "iso_code" : "RU",
13360 "names" : {
13361 "de" : "Russland",
13362 "en" : "Russia",
13363 "es" : "Rusia",
13364 "fr" : "Russie",
13365 "ja" : "ロシア",
13366 "pt-BR" : "Rússia",
13367 "ru" : "Россия",
13368 "zh-CN" : "俄罗斯"
13369 }
13370 }
13371 }
13372 },
13373 {
13374 "2a02:f6c0::/29" : {
13375 "continent" : {
13376 "code" : "EU",
13377 "geoname_id" : 6255148,
13378 "names" : {
13379 "de" : "Europa",
13380 "en" : "Europe",
13381 "es" : "Europa",
13382 "fr" : "Europe",
13383 "ja" : "ヨーロッパ",
13384 "pt-BR" : "Europa",
13385 "ru" : "Европа",
13386 "zh-CN" : "欧洲"
13387 }
13388 },
13389 "country" : {
13390 "geoname_id" : 2017370,
13391 "iso_code" : "RU",
13392 "names" : {
13393 "de" : "Russland",
13394 "en" : "Russia",
13395 "es" : "Rusia",
13396 "fr" : "Russie",
13397 "ja" : "ロシア",
13398 "pt-BR" : "Rússia",
13399 "ru" : "Россия",
13400 "zh-CN" : "俄罗斯"
13401 }
13402 },
13403 "registered_country" : {
13404 "geoname_id" : 2017370,
13405 "iso_code" : "RU",
13406 "names" : {
13407 "de" : "Russland",
13408 "en" : "Russia",
13409 "es" : "Rusia",
13410 "fr" : "Russie",
13411 "ja" : "ロシア",
13412 "pt-BR" : "Rússia",
13413 "ru" : "Россия",
13414 "zh-CN" : "俄罗斯"
13415 }
13416 }
13417 }
13418 },
13419 {
13420 "2a02:f700::/29" : {
13421 "continent" : {
13422 "code" : "AS",
13423 "geoname_id" : 6255147,
13424 "names" : {
13425 "de" : "Asien",
13426 "en" : "Asia",
13427 "es" : "Asia",
13428 "fr" : "Asie",
13429 "ja" : "アジア",
13430 "pt-BR" : "Ásia",
13431 "ru" : "Азия",
13432 "zh-CN" : "亚洲"
13433 }
13434 },
13435 "country" : {
13436 "geoname_id" : 272103,
13437 "iso_code" : "LB",
13438 "names" : {
13439 "de" : "Libanon",
13440 "en" : "Lebanon",
13441 "es" : "Líbano",
13442 "fr" : "Liban",
13443 "ja" : "レバノン共和国",
13444 "pt-BR" : "Líbano",
13445 "ru" : "Ливан",
13446 "zh-CN" : "黎巴嫩"
13447 }
13448 },
13449 "registered_country" : {
13450 "geoname_id" : 272103,
13451 "iso_code" : "LB",
13452 "names" : {
13453 "de" : "Libanon",
13454 "en" : "Lebanon",
13455 "es" : "Líbano",
13456 "fr" : "Liban",
13457 "ja" : "レバノン共和国",
13458 "pt-BR" : "Líbano",
13459 "ru" : "Ливан",
13460 "zh-CN" : "黎巴嫩"
13461 }
13462 }
13463 }
13464 },
13465 {
13466 "2a02:f740::/29" : {
13467 "continent" : {
13468 "code" : "EU",
13469 "geoname_id" : 6255148,
13470 "names" : {
13471 "de" : "Europa",
13472 "en" : "Europe",
13473 "es" : "Europa",
13474 "fr" : "Europe",
13475 "ja" : "ヨーロッパ",
13476 "pt-BR" : "Europa",
13477 "ru" : "Европа",
13478 "zh-CN" : "欧洲"
13479 }
13480 },
13481 "country" : {
13482 "geoname_id" : 798544,
13483 "is_in_european_union" : true,
13484 "iso_code" : "PL",
13485 "names" : {
13486 "de" : "Polen",
13487 "en" : "Poland",
13488 "es" : "Polonia",
13489 "fr" : "Pologne",
13490 "ja" : "ポーランド共和国",
13491 "pt-BR" : "Polônia",
13492 "ru" : "Польша",
13493 "zh-CN" : "波兰"
13494 }
13495 },
13496 "registered_country" : {
13497 "geoname_id" : 798544,
13498 "is_in_european_union" : true,
13499 "iso_code" : "PL",
13500 "names" : {
13501 "de" : "Polen",
13502 "en" : "Poland",
13503 "es" : "Polonia",
13504 "fr" : "Pologne",
13505 "ja" : "ポーランド共和国",
13506 "pt-BR" : "Polônia",
13507 "ru" : "Польша",
13508 "zh-CN" : "波兰"
13509 }
13510 }
13511 }
13512 },
13513 {
13514 "2a02:f780::/29" : {
13515 "continent" : {
13516 "code" : "EU",
13517 "geoname_id" : 6255148,
13518 "names" : {
13519 "de" : "Europa",
13520 "en" : "Europe",
13521 "es" : "Europa",
13522 "fr" : "Europe",
13523 "ja" : "ヨーロッパ",
13524 "pt-BR" : "Europa",
13525 "ru" : "Европа",
13526 "zh-CN" : "欧洲"
13527 }
13528 },
13529 "country" : {
13530 "geoname_id" : 2661886,
13531 "is_in_european_union" : true,
13532 "iso_code" : "SE",
13533 "names" : {
13534 "de" : "Schweden",
13535 "en" : "Sweden",
13536 "es" : "Suecia",
13537 "fr" : "Suède",
13538 "ja" : "スウェーデン王国",
13539 "pt-BR" : "Suécia",
13540 "ru" : "Швеция",
13541 "zh-CN" : "瑞典"
13542 }
13543 },
13544 "registered_country" : {
13545 "geoname_id" : 2661886,
13546 "is_in_european_union" : true,
13547 "iso_code" : "SE",
13548 "names" : {
13549 "de" : "Schweden",
13550 "en" : "Sweden",
13551 "es" : "Suecia",
13552 "fr" : "Suède",
13553 "ja" : "スウェーデン王国",
13554 "pt-BR" : "Suécia",
13555 "ru" : "Швеция",
13556 "zh-CN" : "瑞典"
13557 }
13558 }
13559 }
13560 },
13561 {
13562 "2a02:f7c0::/29" : {
13563 "continent" : {
13564 "code" : "EU",
13565 "geoname_id" : 6255148,
13566 "names" : {
13567 "de" : "Europa",
13568 "en" : "Europe",
13569 "es" : "Europa",
13570 "fr" : "Europe",
13571 "ja" : "ヨーロッパ",
13572 "pt-BR" : "Europa",
13573 "ru" : "Европа",
13574 "zh-CN" : "欧洲"
13575 }
13576 },
13577 "country" : {
13578 "geoname_id" : 798544,
13579 "is_in_european_union" : true,
13580 "iso_code" : "PL",
13581 "names" : {
13582 "de" : "Polen",
13583 "en" : "Poland",
13584 "es" : "Polonia",
13585 "fr" : "Pologne",
13586 "ja" : "ポーランド共和国",
13587 "pt-BR" : "Polônia",
13588 "ru" : "Польша",
13589 "zh-CN" : "波兰"
13590 }
13591 },
13592 "registered_country" : {
13593 "geoname_id" : 798544,
13594 "is_in_european_union" : true,
13595 "iso_code" : "PL",
13596 "names" : {
13597 "de" : "Polen",
13598 "en" : "Poland",
13599 "es" : "Polonia",
13600 "fr" : "Pologne",
13601 "ja" : "ポーランド共和国",
13602 "pt-BR" : "Polônia",
13603 "ru" : "Польша",
13604 "zh-CN" : "波兰"
13605 }
13606 }
13607 }
13608 },
13609 {
13610 "2a02:f800::/29" : {
13611 "continent" : {
13612 "code" : "EU",
13613 "geoname_id" : 6255148,
13614 "names" : {
13615 "de" : "Europa",
13616 "en" : "Europe",
13617 "es" : "Europa",
13618 "fr" : "Europe",
13619 "ja" : "ヨーロッパ",
13620 "pt-BR" : "Europa",
13621 "ru" : "Европа",
13622 "zh-CN" : "欧洲"
13623 }
13624 },
13625 "country" : {
13626 "geoname_id" : 2017370,
13627 "iso_code" : "RU",
13628 "names" : {
13629 "de" : "Russland",
13630 "en" : "Russia",
13631 "es" : "Rusia",
13632 "fr" : "Russie",
13633 "ja" : "ロシア",
13634 "pt-BR" : "Rússia",
13635 "ru" : "Россия",
13636 "zh-CN" : "俄罗斯"
13637 }
13638 },
13639 "registered_country" : {
13640 "geoname_id" : 2017370,
13641 "iso_code" : "RU",
13642 "names" : {
13643 "de" : "Russland",
13644 "en" : "Russia",
13645 "es" : "Rusia",
13646 "fr" : "Russie",
13647 "ja" : "ロシア",
13648 "pt-BR" : "Rússia",
13649 "ru" : "Россия",
13650 "zh-CN" : "俄罗斯"
13651 }
13652 }
13653 }
13654 },
13655 {
13656 "2a02:f840::/29" : {
13657 "continent" : {
13658 "code" : "EU",
13659 "geoname_id" : 6255148,
13660 "names" : {
13661 "de" : "Europa",
13662 "en" : "Europe",
13663 "es" : "Europa",
13664 "fr" : "Europe",
13665 "ja" : "ヨーロッパ",
13666 "pt-BR" : "Europa",
13667 "ru" : "Европа",
13668 "zh-CN" : "欧洲"
13669 }
13670 },
13671 "country" : {
13672 "geoname_id" : 2750405,
13673 "is_in_european_union" : true,
13674 "iso_code" : "NL",
13675 "names" : {
13676 "de" : "Niederlande",
13677 "en" : "Netherlands",
13678 "es" : "Holanda",
13679 "fr" : "Pays-Bas",
13680 "ja" : "オランダ王国",
13681 "pt-BR" : "Países Baixos",
13682 "ru" : "Нидерланды",
13683 "zh-CN" : "荷兰"
13684 }
13685 },
13686 "registered_country" : {
13687 "geoname_id" : 2750405,
13688 "is_in_european_union" : true,
13689 "iso_code" : "NL",
13690 "names" : {
13691 "de" : "Niederlande",
13692 "en" : "Netherlands",
13693 "es" : "Holanda",
13694 "fr" : "Pays-Bas",
13695 "ja" : "オランダ王国",
13696 "pt-BR" : "Países Baixos",
13697 "ru" : "Нидерланды",
13698 "zh-CN" : "荷兰"
13699 }
13700 }
13701 }
13702 },
13703 {
13704 "2a02:f880::/29" : {
13705 "continent" : {
13706 "code" : "EU",
13707 "geoname_id" : 6255148,
13708 "names" : {
13709 "de" : "Europa",
13710 "en" : "Europe",
13711 "es" : "Europa",
13712 "fr" : "Europe",
13713 "ja" : "ヨーロッパ",
13714 "pt-BR" : "Europa",
13715 "ru" : "Европа",
13716 "zh-CN" : "欧洲"
13717 }
13718 },
13719 "country" : {
13720 "geoname_id" : 2921044,
13721 "is_in_european_union" : true,
13722 "iso_code" : "DE",
13723 "names" : {
13724 "de" : "Deutschland",
13725 "en" : "Germany",
13726 "es" : "Alemania",
13727 "fr" : "Allemagne",
13728 "ja" : "ドイツ連邦共和国",
13729 "pt-BR" : "Alemanha",
13730 "ru" : "Германия",
13731 "zh-CN" : "德国"
13732 }
13733 },
13734 "registered_country" : {
13735 "geoname_id" : 2921044,
13736 "is_in_european_union" : true,
13737 "iso_code" : "DE",
13738 "names" : {
13739 "de" : "Deutschland",
13740 "en" : "Germany",
13741 "es" : "Alemania",
13742 "fr" : "Allemagne",
13743 "ja" : "ドイツ連邦共和国",
13744 "pt-BR" : "Alemanha",
13745 "ru" : "Германия",
13746 "zh-CN" : "德国"
13747 }
13748 }
13749 }
13750 },
13751 {
13752 "2a02:f8c0::/29" : {
13753 "continent" : {
13754 "code" : "EU",
13755 "geoname_id" : 6255148,
13756 "names" : {
13757 "de" : "Europa",
13758 "en" : "Europe",
13759 "es" : "Europa",
13760 "fr" : "Europe",
13761 "ja" : "ヨーロッパ",
13762 "pt-BR" : "Europa",
13763 "ru" : "Европа",
13764 "zh-CN" : "欧洲"
13765 }
13766 },
13767 "country" : {
13768 "geoname_id" : 798544,
13769 "is_in_european_union" : true,
13770 "iso_code" : "PL",
13771 "names" : {
13772 "de" : "Polen",
13773 "en" : "Poland",
13774 "es" : "Polonia",
13775 "fr" : "Pologne",
13776 "ja" : "ポーランド共和国",
13777 "pt-BR" : "Polônia",
13778 "ru" : "Польша",
13779 "zh-CN" : "波兰"
13780 }
13781 },
13782 "registered_country" : {
13783 "geoname_id" : 798544,
13784 "is_in_european_union" : true,
13785 "iso_code" : "PL",
13786 "names" : {
13787 "de" : "Polen",
13788 "en" : "Poland",
13789 "es" : "Polonia",
13790 "fr" : "Pologne",
13791 "ja" : "ポーランド共和国",
13792 "pt-BR" : "Polônia",
13793 "ru" : "Польша",
13794 "zh-CN" : "波兰"
13795 }
13796 }
13797 }
13798 },
13799 {
13800 "2a02:f900::/29" : {
13801 "continent" : {
13802 "code" : "AS",
13803 "geoname_id" : 6255147,
13804 "names" : {
13805 "de" : "Asien",
13806 "en" : "Asia",
13807 "es" : "Asia",
13808 "fr" : "Asie",
13809 "ja" : "アジア",
13810 "pt-BR" : "Ásia",
13811 "ru" : "Азия",
13812 "zh-CN" : "亚洲"
13813 }
13814 },
13815 "country" : {
13816 "geoname_id" : 130758,
13817 "iso_code" : "IR",
13818 "names" : {
13819 "de" : "Iran (Islamische Republik)",
13820 "en" : "Iran",
13821 "es" : "Irán (República Islámica)",
13822 "fr" : "Iran (République islamique de)",
13823 "ja" : "イラン・イスラム共和国",
13824 "pt-BR" : "República Islâmica do Irã",
13825 "ru" : "Иран",
13826 "zh-CN" : "伊朗伊斯兰共和国"
13827 }
13828 },
13829 "registered_country" : {
13830 "geoname_id" : 130758,
13831 "iso_code" : "IR",
13832 "names" : {
13833 "de" : "Iran (Islamische Republik)",
13834 "en" : "Iran",
13835 "es" : "Irán (República Islámica)",
13836 "fr" : "Iran (République islamique de)",
13837 "ja" : "イラン・イスラム共和国",
13838 "pt-BR" : "República Islâmica do Irã",
13839 "ru" : "Иран",
13840 "zh-CN" : "伊朗伊斯兰共和国"
13841 }
13842 }
13843 }
13844 },
13845 {
13846 "2a02:f940::/29" : {
13847 "continent" : {
13848 "code" : "EU",
13849 "geoname_id" : 6255148,
13850 "names" : {
13851 "de" : "Europa",
13852 "en" : "Europe",
13853 "es" : "Europa",
13854 "fr" : "Europe",
13855 "ja" : "ヨーロッパ",
13856 "pt-BR" : "Europa",
13857 "ru" : "Европа",
13858 "zh-CN" : "欧洲"
13859 }
13860 },
13861 "country" : {
13862 "geoname_id" : 719819,
13863 "is_in_european_union" : true,
13864 "iso_code" : "HU",
13865 "names" : {
13866 "de" : "Ungarn",
13867 "en" : "Hungary",
13868 "es" : "Hungría",
13869 "fr" : "Hongrie",
13870 "ja" : "ハンガリー共和国",
13871 "pt-BR" : "Hungria",
13872 "ru" : "Венгрия",
13873 "zh-CN" : "匈牙利"
13874 }
13875 },
13876 "registered_country" : {
13877 "geoname_id" : 719819,
13878 "is_in_european_union" : true,
13879 "iso_code" : "HU",
13880 "names" : {
13881 "de" : "Ungarn",
13882 "en" : "Hungary",
13883 "es" : "Hungría",
13884 "fr" : "Hongrie",
13885 "ja" : "ハンガリー共和国",
13886 "pt-BR" : "Hungria",
13887 "ru" : "Венгрия",
13888 "zh-CN" : "匈牙利"
13889 }
13890 }
13891 }
13892 },
13893 {
13894 "2a02:f980::/29" : {
13895 "continent" : {
13896 "code" : "EU",
13897 "geoname_id" : 6255148,
13898 "names" : {
13899 "de" : "Europa",
13900 "en" : "Europe",
13901 "es" : "Europa",
13902 "fr" : "Europe",
13903 "ja" : "ヨーロッパ",
13904 "pt-BR" : "Europa",
13905 "ru" : "Европа",
13906 "zh-CN" : "欧洲"
13907 }
13908 },
13909 "country" : {
13910 "geoname_id" : 2635167,
13911 "is_in_european_union" : true,
13912 "iso_code" : "GB",
13913 "names" : {
13914 "de" : "Vereinigtes Königreich",
13915 "en" : "United Kingdom",
13916 "es" : "Reino Unido",
13917 "fr" : "Royaume-Uni",
13918 "ja" : "イギリス",
13919 "pt-BR" : "Reino Unido",
13920 "ru" : "Великобритания",
13921 "zh-CN" : "英国"
13922 }
13923 },
13924 "registered_country" : {
13925 "geoname_id" : 2635167,
13926 "is_in_european_union" : true,
13927 "iso_code" : "GB",
13928 "names" : {
13929 "de" : "Vereinigtes Königreich",
13930 "en" : "United Kingdom",
13931 "es" : "Reino Unido",
13932 "fr" : "Royaume-Uni",
13933 "ja" : "イギリス",
13934 "pt-BR" : "Reino Unido",
13935 "ru" : "Великобритания",
13936 "zh-CN" : "英国"
13937 }
13938 }
13939 }
13940 },
13941 {
13942 "2a02:f9c0::/29" : {
13943 "continent" : {
13944 "code" : "EU",
13945 "geoname_id" : 6255148,
13946 "names" : {
13947 "de" : "Europa",
13948 "en" : "Europe",
13949 "es" : "Europa",
13950 "fr" : "Europe",
13951 "ja" : "ヨーロッパ",
13952 "pt-BR" : "Europa",
13953 "ru" : "Европа",
13954 "zh-CN" : "欧洲"
13955 }
13956 },
13957 "country" : {
13958 "geoname_id" : 2635167,
13959 "is_in_european_union" : true,
13960 "iso_code" : "GB",
13961 "names" : {
13962 "de" : "Vereinigtes Königreich",
13963 "en" : "United Kingdom",
13964 "es" : "Reino Unido",
13965 "fr" : "Royaume-Uni",
13966 "ja" : "イギリス",
13967 "pt-BR" : "Reino Unido",
13968 "ru" : "Великобритания",
13969 "zh-CN" : "英国"
13970 }
13971 },
13972 "registered_country" : {
13973 "geoname_id" : 2635167,
13974 "is_in_european_union" : true,
13975 "iso_code" : "GB",
13976 "names" : {
13977 "de" : "Vereinigtes Königreich",
13978 "en" : "United Kingdom",
13979 "es" : "Reino Unido",
13980 "fr" : "Royaume-Uni",
13981 "ja" : "イギリス",
13982 "pt-BR" : "Reino Unido",
13983 "ru" : "Великобритания",
13984 "zh-CN" : "英国"
13985 }
13986 }
13987 }
13988 },
13989 {
13990 "2a02:fa00::/29" : {
13991 "continent" : {
13992 "code" : "AS",
13993 "geoname_id" : 6255147,
13994 "names" : {
13995 "de" : "Asien",
13996 "en" : "Asia",
13997 "es" : "Asia",
13998 "fr" : "Asie",
13999 "ja" : "アジア",
14000 "pt-BR" : "Ásia",
14001 "ru" : "Азия",
14002 "zh-CN" : "亚洲"
14003 }
14004 },
14005 "country" : {
14006 "geoname_id" : 102358,
14007 "iso_code" : "SA",
14008 "names" : {
14009 "de" : "Saudi-Arabien",
14010 "en" : "Saudi Arabia",
14011 "es" : "Arabia Saudita",
14012 "fr" : "Arabie saoudite",
14013 "ja" : "サウジアラビア王国",
14014 "pt-BR" : "Arábia Saudita",
14015 "ru" : "Саудовская Аравия",
14016 "zh-CN" : "沙特阿拉伯"
14017 }
14018 },
14019 "registered_country" : {
14020 "geoname_id" : 102358,
14021 "iso_code" : "SA",
14022 "names" : {
14023 "de" : "Saudi-Arabien",
14024 "en" : "Saudi Arabia",
14025 "es" : "Arabia Saudita",
14026 "fr" : "Arabie saoudite",
14027 "ja" : "サウジアラビア王国",
14028 "pt-BR" : "Arábia Saudita",
14029 "ru" : "Саудовская Аравия",
14030 "zh-CN" : "沙特阿拉伯"
14031 }
14032 }
14033 }
14034 },
14035 {
14036 "2a02:fa40::/29" : {
14037 "continent" : {
14038 "code" : "AS",
14039 "geoname_id" : 6255147,
14040 "names" : {
14041 "de" : "Asien",
14042 "en" : "Asia",
14043 "es" : "Asia",
14044 "fr" : "Asie",
14045 "ja" : "アジア",
14046 "pt-BR" : "Ásia",
14047 "ru" : "Азия",
14048 "zh-CN" : "亚洲"
14049 }
14050 },
14051 "country" : {
14052 "geoname_id" : 298795,
14053 "iso_code" : "TR",
14054 "names" : {
14055 "de" : "Türkei",
14056 "en" : "Turkey",
14057 "es" : "Turquía",
14058 "fr" : "Turquie",
14059 "ja" : "トルコ共和国",
14060 "pt-BR" : "Turquia",
14061 "ru" : "Турция",
14062 "zh-CN" : "土耳其"
14063 }
14064 },
14065 "registered_country" : {
14066 "geoname_id" : 298795,
14067 "iso_code" : "TR",
14068 "names" : {
14069 "de" : "Türkei",
14070 "en" : "Turkey",
14071 "es" : "Turquía",
14072 "fr" : "Turquie",
14073 "ja" : "トルコ共和国",
14074 "pt-BR" : "Turquia",
14075 "ru" : "Турция",
14076 "zh-CN" : "土耳其"
14077 }
14078 }
14079 }
14080 },
14081 {
14082 "2a02:fa80::/29" : {
14083 "continent" : {
14084 "code" : "EU",
14085 "geoname_id" : 6255148,
14086 "names" : {
14087 "de" : "Europa",
14088 "en" : "Europe",
14089 "es" : "Europa",
14090 "fr" : "Europe",
14091 "ja" : "ヨーロッパ",
14092 "pt-BR" : "Europa",
14093 "ru" : "Европа",
14094 "zh-CN" : "欧洲"
14095 }
14096 },
14097 "country" : {
14098 "geoname_id" : 2921044,
14099 "is_in_european_union" : true,
14100 "iso_code" : "DE",
14101 "names" : {
14102 "de" : "Deutschland",
14103 "en" : "Germany",
14104 "es" : "Alemania",
14105 "fr" : "Allemagne",
14106 "ja" : "ドイツ連邦共和国",
14107 "pt-BR" : "Alemanha",
14108 "ru" : "Германия",
14109 "zh-CN" : "德国"
14110 }
14111 },
14112 "registered_country" : {
14113 "geoname_id" : 2921044,
14114 "is_in_european_union" : true,
14115 "iso_code" : "DE",
14116 "names" : {
14117 "de" : "Deutschland",
14118 "en" : "Germany",
14119 "es" : "Alemania",
14120 "fr" : "Allemagne",
14121 "ja" : "ドイツ連邦共和国",
14122 "pt-BR" : "Alemanha",
14123 "ru" : "Германия",
14124 "zh-CN" : "德国"
14125 }
14126 }
14127 }
14128 },
14129 {
14130 "2a02:fac0::/29" : {
14131 "continent" : {
14132 "code" : "EU",
14133 "geoname_id" : 6255148,
14134 "names" : {
14135 "de" : "Europa",
14136 "en" : "Europe",
14137 "es" : "Europa",
14138 "fr" : "Europe",
14139 "ja" : "ヨーロッパ",
14140 "pt-BR" : "Europa",
14141 "ru" : "Европа",
14142 "zh-CN" : "欧洲"
14143 }
14144 },
14145 "country" : {
14146 "geoname_id" : 798544,
14147 "is_in_european_union" : true,
14148 "iso_code" : "PL",
14149 "names" : {
14150 "de" : "Polen",
14151 "en" : "Poland",
14152 "es" : "Polonia",
14153 "fr" : "Pologne",
14154 "ja" : "ポーランド共和国",
14155 "pt-BR" : "Polônia",
14156 "ru" : "Польша",
14157 "zh-CN" : "波兰"
14158 }
14159 },
14160 "registered_country" : {
14161 "geoname_id" : 798544,
14162 "is_in_european_union" : true,
14163 "iso_code" : "PL",
14164 "names" : {
14165 "de" : "Polen",
14166 "en" : "Poland",
14167 "es" : "Polonia",
14168 "fr" : "Pologne",
14169 "ja" : "ポーランド共和国",
14170 "pt-BR" : "Polônia",
14171 "ru" : "Польша",
14172 "zh-CN" : "波兰"
14173 }
14174 }
14175 }
14176 },
14177 {
14178 "2a02:fb00::/29" : {
14179 "continent" : {
14180 "code" : "EU",
14181 "geoname_id" : 6255148,
14182 "names" : {
14183 "de" : "Europa",
14184 "en" : "Europe",
14185 "es" : "Europa",
14186 "fr" : "Europe",
14187 "ja" : "ヨーロッパ",
14188 "pt-BR" : "Europa",
14189 "ru" : "Европа",
14190 "zh-CN" : "欧洲"
14191 }
14192 },
14193 "country" : {
14194 "geoname_id" : 2921044,
14195 "is_in_european_union" : true,
14196 "iso_code" : "DE",
14197 "names" : {
14198 "de" : "Deutschland",
14199 "en" : "Germany",
14200 "es" : "Alemania",
14201 "fr" : "Allemagne",
14202 "ja" : "ドイツ連邦共和国",
14203 "pt-BR" : "Alemanha",
14204 "ru" : "Германия",
14205 "zh-CN" : "德国"
14206 }
14207 },
14208 "registered_country" : {
14209 "geoname_id" : 2921044,
14210 "is_in_european_union" : true,
14211 "iso_code" : "DE",
14212 "names" : {
14213 "de" : "Deutschland",
14214 "en" : "Germany",
14215 "es" : "Alemania",
14216 "fr" : "Allemagne",
14217 "ja" : "ドイツ連邦共和国",
14218 "pt-BR" : "Alemanha",
14219 "ru" : "Германия",
14220 "zh-CN" : "德国"
14221 }
14222 }
14223 }
14224 },
14225 {
14226 "2a02:fb40::/29" : {
14227 "continent" : {
14228 "code" : "EU",
14229 "geoname_id" : 6255148,
14230 "names" : {
14231 "de" : "Europa",
14232 "en" : "Europe",
14233 "es" : "Europa",
14234 "fr" : "Europe",
14235 "ja" : "ヨーロッパ",
14236 "pt-BR" : "Europa",
14237 "ru" : "Европа",
14238 "zh-CN" : "欧洲"
14239 }
14240 },
14241 "country" : {
14242 "geoname_id" : 2635167,
14243 "is_in_european_union" : true,
14244 "iso_code" : "GB",
14245 "names" : {
14246 "de" : "Vereinigtes Königreich",
14247 "en" : "United Kingdom",
14248 "es" : "Reino Unido",
14249 "fr" : "Royaume-Uni",
14250 "ja" : "イギリス",
14251 "pt-BR" : "Reino Unido",
14252 "ru" : "Великобритания",
14253 "zh-CN" : "英国"
14254 }
14255 },
14256 "registered_country" : {
14257 "geoname_id" : 2635167,
14258 "is_in_european_union" : true,
14259 "iso_code" : "GB",
14260 "names" : {
14261 "de" : "Vereinigtes Königreich",
14262 "en" : "United Kingdom",
14263 "es" : "Reino Unido",
14264 "fr" : "Royaume-Uni",
14265 "ja" : "イギリス",
14266 "pt-BR" : "Reino Unido",
14267 "ru" : "Великобритания",
14268 "zh-CN" : "英国"
14269 }
14270 }
14271 }
14272 },
14273 {
14274 "2a02:fb80::/29" : {
14275 "continent" : {
14276 "code" : "EU",
14277 "geoname_id" : 6255148,
14278 "names" : {
14279 "de" : "Europa",
14280 "en" : "Europe",
14281 "es" : "Europa",
14282 "fr" : "Europe",
14283 "ja" : "ヨーロッパ",
14284 "pt-BR" : "Europa",
14285 "ru" : "Европа",
14286 "zh-CN" : "欧洲"
14287 }
14288 },
14289 "country" : {
14290 "geoname_id" : 3175395,
14291 "is_in_european_union" : true,
14292 "iso_code" : "IT",
14293 "names" : {
14294 "de" : "Italien",
14295 "en" : "Italy",
14296 "es" : "Italia",
14297 "fr" : "Italie",
14298 "ja" : "イタリア共和国",
14299 "pt-BR" : "Itália",
14300 "ru" : "Италия",
14301 "zh-CN" : "意大利"
14302 }
14303 },
14304 "registered_country" : {
14305 "geoname_id" : 3175395,
14306 "is_in_european_union" : true,
14307 "iso_code" : "IT",
14308 "names" : {
14309 "de" : "Italien",
14310 "en" : "Italy",
14311 "es" : "Italia",
14312 "fr" : "Italie",
14313 "ja" : "イタリア共和国",
14314 "pt-BR" : "Itália",
14315 "ru" : "Италия",
14316 "zh-CN" : "意大利"
14317 }
14318 }
14319 }
14320 },
14321 {
14322 "2a02:fbc0::/29" : {
14323 "continent" : {
14324 "code" : "EU",
14325 "geoname_id" : 6255148,
14326 "names" : {
14327 "de" : "Europa",
14328 "en" : "Europe",
14329 "es" : "Europa",
14330 "fr" : "Europe",
14331 "ja" : "ヨーロッパ",
14332 "pt-BR" : "Europa",
14333 "ru" : "Европа",
14334 "zh-CN" : "欧洲"
14335 }
14336 },
14337 "country" : {
14338 "geoname_id" : 798544,
14339 "is_in_european_union" : true,
14340 "iso_code" : "PL",
14341 "names" : {
14342 "de" : "Polen",
14343 "en" : "Poland",
14344 "es" : "Polonia",
14345 "fr" : "Pologne",
14346 "ja" : "ポーランド共和国",
14347 "pt-BR" : "Polônia",
14348 "ru" : "Польша",
14349 "zh-CN" : "波兰"
14350 }
14351 },
14352 "registered_country" : {
14353 "geoname_id" : 798544,
14354 "is_in_european_union" : true,
14355 "iso_code" : "PL",
14356 "names" : {
14357 "de" : "Polen",
14358 "en" : "Poland",
14359 "es" : "Polonia",
14360 "fr" : "Pologne",
14361 "ja" : "ポーランド共和国",
14362 "pt-BR" : "Polônia",
14363 "ru" : "Польша",
14364 "zh-CN" : "波兰"
14365 }
14366 }
14367 }
14368 },
14369 {
14370 "2a02:fc00::/29" : {
14371 "continent" : {
14372 "code" : "EU",
14373 "geoname_id" : 6255148,
14374 "names" : {
14375 "de" : "Europa",
14376 "en" : "Europe",
14377 "es" : "Europa",
14378 "fr" : "Europe",
14379 "ja" : "ヨーロッパ",
14380 "pt-BR" : "Europa",
14381 "ru" : "Европа",
14382 "zh-CN" : "欧洲"
14383 }
14384 },
14385 "country" : {
14386 "geoname_id" : 2661886,
14387 "is_in_european_union" : true,
14388 "iso_code" : "SE",
14389 "names" : {
14390 "de" : "Schweden",
14391 "en" : "Sweden",
14392 "es" : "Suecia",
14393 "fr" : "Suède",
14394 "ja" : "スウェーデン王国",
14395 "pt-BR" : "Suécia",
14396 "ru" : "Швеция",
14397 "zh-CN" : "瑞典"
14398 }
14399 },
14400 "registered_country" : {
14401 "geoname_id" : 2661886,
14402 "is_in_european_union" : true,
14403 "iso_code" : "SE",
14404 "names" : {
14405 "de" : "Schweden",
14406 "en" : "Sweden",
14407 "es" : "Suecia",
14408 "fr" : "Suède",
14409 "ja" : "スウェーデン王国",
14410 "pt-BR" : "Suécia",
14411 "ru" : "Швеция",
14412 "zh-CN" : "瑞典"
14413 }
14414 }
14415 }
14416 },
14417 {
14418 "2a02:fc40::/29" : {
14419 "continent" : {
14420 "code" : "EU",
14421 "geoname_id" : 6255148,
14422 "names" : {
14423 "de" : "Europa",
14424 "en" : "Europe",
14425 "es" : "Europa",
14426 "fr" : "Europe",
14427 "ja" : "ヨーロッパ",
14428 "pt-BR" : "Europa",
14429 "ru" : "Европа",
14430 "zh-CN" : "欧洲"
14431 }
14432 },
14433 "country" : {
14434 "geoname_id" : 2623032,
14435 "is_in_european_union" : true,
14436 "iso_code" : "DK",
14437 "names" : {
14438 "de" : "Dänemark",
14439 "en" : "Denmark",
14440 "es" : "Dinamarca",
14441 "fr" : "Danemark",
14442 "ja" : "デンマーク王国",
14443 "pt-BR" : "Dinamarca",
14444 "ru" : "Дания",
14445 "zh-CN" : "丹麦"
14446 }
14447 },
14448 "registered_country" : {
14449 "geoname_id" : 2623032,
14450 "is_in_european_union" : true,
14451 "iso_code" : "DK",
14452 "names" : {
14453 "de" : "Dänemark",
14454 "en" : "Denmark",
14455 "es" : "Dinamarca",
14456 "fr" : "Danemark",
14457 "ja" : "デンマーク王国",
14458 "pt-BR" : "Dinamarca",
14459 "ru" : "Дания",
14460 "zh-CN" : "丹麦"
14461 }
14462 }
14463 }
14464 },
14465 {
14466 "2a02:fc80::/29" : {
14467 "continent" : {
14468 "code" : "EU",
14469 "geoname_id" : 6255148,
14470 "names" : {
14471 "de" : "Europa",
14472 "en" : "Europe",
14473 "es" : "Europa",
14474 "fr" : "Europe",
14475 "ja" : "ヨーロッパ",
14476 "pt-BR" : "Europa",
14477 "ru" : "Европа",
14478 "zh-CN" : "欧洲"
14479 }
14480 },
14481 "country" : {
14482 "geoname_id" : 3144096,
14483 "iso_code" : "NO",
14484 "names" : {
14485 "de" : "Norwegen",
14486 "en" : "Norway",
14487 "es" : "Noruega",
14488 "fr" : "Norvège",
14489 "ja" : "ノルウェー王国",
14490 "pt-BR" : "Noruega",
14491 "ru" : "Норвегия",
14492 "zh-CN" : "挪威"
14493 }
14494 },
14495 "registered_country" : {
14496 "geoname_id" : 3144096,
14497 "iso_code" : "NO",
14498 "names" : {
14499 "de" : "Norwegen",
14500 "en" : "Norway",
14501 "es" : "Noruega",
14502 "fr" : "Norvège",
14503 "ja" : "ノルウェー王国",
14504 "pt-BR" : "Noruega",
14505 "ru" : "Норвегия",
14506 "zh-CN" : "挪威"
14507 }
14508 }
14509 }
14510 },
14511 {
14512 "2a02:fcc0::/29" : {
14513 "continent" : {
14514 "code" : "EU",
14515 "geoname_id" : 6255148,
14516 "names" : {
14517 "de" : "Europa",
14518 "en" : "Europe",
14519 "es" : "Europa",
14520 "fr" : "Europe",
14521 "ja" : "ヨーロッパ",
14522 "pt-BR" : "Europa",
14523 "ru" : "Европа",
14524 "zh-CN" : "欧洲"
14525 }
14526 },
14527 "country" : {
14528 "geoname_id" : 2635167,
14529 "is_in_european_union" : true,
14530 "iso_code" : "GB",
14531 "names" : {
14532 "de" : "Vereinigtes Königreich",
14533 "en" : "United Kingdom",
14534 "es" : "Reino Unido",
14535 "fr" : "Royaume-Uni",
14536 "ja" : "イギリス",
14537 "pt-BR" : "Reino Unido",
14538 "ru" : "Великобритания",
14539 "zh-CN" : "英国"
14540 }
14541 },
14542 "registered_country" : {
14543 "geoname_id" : 2635167,
14544 "is_in_european_union" : true,
14545 "iso_code" : "GB",
14546 "names" : {
14547 "de" : "Vereinigtes Königreich",
14548 "en" : "United Kingdom",
14549 "es" : "Reino Unido",
14550 "fr" : "Royaume-Uni",
14551 "ja" : "イギリス",
14552 "pt-BR" : "Reino Unido",
14553 "ru" : "Великобритания",
14554 "zh-CN" : "英国"
14555 }
14556 }
14557 }
14558 },
14559 {
14560 "2a02:fd00::/29" : {
14561 "continent" : {
14562 "code" : "EU",
14563 "geoname_id" : 6255148,
14564 "names" : {
14565 "de" : "Europa",
14566 "en" : "Europe",
14567 "es" : "Europa",
14568 "fr" : "Europe",
14569 "ja" : "ヨーロッパ",
14570 "pt-BR" : "Europa",
14571 "ru" : "Европа",
14572 "zh-CN" : "欧洲"
14573 }
14574 },
14575 "country" : {
14576 "geoname_id" : 2921044,
14577 "is_in_european_union" : true,
14578 "iso_code" : "DE",
14579 "names" : {
14580 "de" : "Deutschland",
14581 "en" : "Germany",
14582 "es" : "Alemania",
14583 "fr" : "Allemagne",
14584 "ja" : "ドイツ連邦共和国",
14585 "pt-BR" : "Alemanha",
14586 "ru" : "Германия",
14587 "zh-CN" : "德国"
14588 }
14589 },
14590 "registered_country" : {
14591 "geoname_id" : 2921044,
14592 "is_in_european_union" : true,
14593 "iso_code" : "DE",
14594 "names" : {
14595 "de" : "Deutschland",
14596 "en" : "Germany",
14597 "es" : "Alemania",
14598 "fr" : "Allemagne",
14599 "ja" : "ドイツ連邦共和国",
14600 "pt-BR" : "Alemanha",
14601 "ru" : "Германия",
14602 "zh-CN" : "德国"
14603 }
14604 }
14605 }
14606 },
14607 {
14608 "2a02:fd40::/29" : {
14609 "continent" : {
14610 "code" : "EU",
14611 "geoname_id" : 6255148,
14612 "names" : {
14613 "de" : "Europa",
14614 "en" : "Europe",
14615 "es" : "Europa",
14616 "fr" : "Europe",
14617 "ja" : "ヨーロッパ",
14618 "pt-BR" : "Europa",
14619 "ru" : "Европа",
14620 "zh-CN" : "欧洲"
14621 }
14622 },
14623 "country" : {
14624 "geoname_id" : 3175395,
14625 "is_in_european_union" : true,
14626 "iso_code" : "IT",
14627 "names" : {
14628 "de" : "Italien",
14629 "en" : "Italy",
14630 "es" : "Italia",
14631 "fr" : "Italie",
14632 "ja" : "イタリア共和国",
14633 "pt-BR" : "Itália",
14634 "ru" : "Италия",
14635 "zh-CN" : "意大利"
14636 }
14637 },
14638 "registered_country" : {
14639 "geoname_id" : 3175395,
14640 "is_in_european_union" : true,
14641 "iso_code" : "IT",
14642 "names" : {
14643 "de" : "Italien",
14644 "en" : "Italy",
14645 "es" : "Italia",
14646 "fr" : "Italie",
14647 "ja" : "イタリア共和国",
14648 "pt-BR" : "Itália",
14649 "ru" : "Италия",
14650 "zh-CN" : "意大利"
14651 }
14652 }
14653 }
14654 },
14655 {
14656 "2a02:fd80::/29" : {
14657 "continent" : {
14658 "code" : "EU",
14659 "geoname_id" : 6255148,
14660 "names" : {
14661 "de" : "Europa",
14662 "en" : "Europe",
14663 "es" : "Europa",
14664 "fr" : "Europe",
14665 "ja" : "ヨーロッパ",
14666 "pt-BR" : "Europa",
14667 "ru" : "Европа",
14668 "zh-CN" : "欧洲"
14669 }
14670 },
14671 "country" : {
14672 "geoname_id" : 2623032,
14673 "is_in_european_union" : true,
14674 "iso_code" : "DK",
14675 "names" : {
14676 "de" : "Dänemark",
14677 "en" : "Denmark",
14678 "es" : "Dinamarca",
14679 "fr" : "Danemark",
14680 "ja" : "デンマーク王国",
14681 "pt-BR" : "Dinamarca",
14682 "ru" : "Дания",
14683 "zh-CN" : "丹麦"
14684 }
14685 },
14686 "registered_country" : {
14687 "geoname_id" : 2623032,
14688 "is_in_european_union" : true,
14689 "iso_code" : "DK",
14690 "names" : {
14691 "de" : "Dänemark",
14692 "en" : "Denmark",
14693 "es" : "Dinamarca",
14694 "fr" : "Danemark",
14695 "ja" : "デンマーク王国",
14696 "pt-BR" : "Dinamarca",
14697 "ru" : "Дания",
14698 "zh-CN" : "丹麦"
14699 }
14700 }
14701 }
14702 },
14703 {
14704 "2a02:fdc0::/29" : {
14705 "continent" : {
14706 "code" : "EU",
14707 "geoname_id" : 6255148,
14708 "names" : {
14709 "de" : "Europa",
14710 "en" : "Europe",
14711 "es" : "Europa",
14712 "fr" : "Europe",
14713 "ja" : "ヨーロッパ",
14714 "pt-BR" : "Europa",
14715 "ru" : "Европа",
14716 "zh-CN" : "欧洲"
14717 }
14718 },
14719 "country" : {
14720 "geoname_id" : 2782113,
14721 "is_in_european_union" : true,
14722 "iso_code" : "AT",
14723 "names" : {
14724 "de" : "Österreich",
14725 "en" : "Austria",
14726 "es" : "Austria",
14727 "fr" : "Autriche",
14728 "ja" : "オーストリア共和国",
14729 "pt-BR" : "Áustria",
14730 "ru" : "Австрия",
14731 "zh-CN" : "奥地利"
14732 }
14733 },
14734 "registered_country" : {
14735 "geoname_id" : 2782113,
14736 "is_in_european_union" : true,
14737 "iso_code" : "AT",
14738 "names" : {
14739 "de" : "Österreich",
14740 "en" : "Austria",
14741 "es" : "Austria",
14742 "fr" : "Autriche",
14743 "ja" : "オーストリア共和国",
14744 "pt-BR" : "Áustria",
14745 "ru" : "Австрия",
14746 "zh-CN" : "奥地利"
14747 }
14748 }
14749 }
14750 },
14751 {
14752 "2a02:fe00::/29" : {
14753 "continent" : {
14754 "code" : "EU",
14755 "geoname_id" : 6255148,
14756 "names" : {
14757 "de" : "Europa",
14758 "en" : "Europe",
14759 "es" : "Europa",
14760 "fr" : "Europe",
14761 "ja" : "ヨーロッパ",
14762 "pt-BR" : "Europa",
14763 "ru" : "Европа",
14764 "zh-CN" : "欧洲"
14765 }
14766 },
14767 "country" : {
14768 "geoname_id" : 2750405,
14769 "is_in_european_union" : true,
14770 "iso_code" : "NL",
14771 "names" : {
14772 "de" : "Niederlande",
14773 "en" : "Netherlands",
14774 "es" : "Holanda",
14775 "fr" : "Pays-Bas",
14776 "ja" : "オランダ王国",
14777 "pt-BR" : "Países Baixos",
14778 "ru" : "Нидерланды",
14779 "zh-CN" : "荷兰"
14780 }
14781 },
14782 "registered_country" : {
14783 "geoname_id" : 2750405,
14784 "is_in_european_union" : true,
14785 "iso_code" : "NL",
14786 "names" : {
14787 "de" : "Niederlande",
14788 "en" : "Netherlands",
14789 "es" : "Holanda",
14790 "fr" : "Pays-Bas",
14791 "ja" : "オランダ王国",
14792 "pt-BR" : "Países Baixos",
14793 "ru" : "Нидерланды",
14794 "zh-CN" : "荷兰"
14795 }
14796 }
14797 }
14798 },
14799 {
14800 "2a02:fe40::/29" : {
14801 "continent" : {
14802 "code" : "EU",
14803 "geoname_id" : 6255148,
14804 "names" : {
14805 "de" : "Europa",
14806 "en" : "Europe",
14807 "es" : "Europa",
14808 "fr" : "Europe",
14809 "ja" : "ヨーロッパ",
14810 "pt-BR" : "Europa",
14811 "ru" : "Европа",
14812 "zh-CN" : "欧洲"
14813 }
14814 },
14815 "country" : {
14816 "geoname_id" : 2635167,
14817 "is_in_european_union" : true,
14818 "iso_code" : "GB",
14819 "names" : {
14820 "de" : "Vereinigtes Königreich",
14821 "en" : "United Kingdom",
14822 "es" : "Reino Unido",
14823 "fr" : "Royaume-Uni",
14824 "ja" : "イギリス",
14825 "pt-BR" : "Reino Unido",
14826 "ru" : "Великобритания",
14827 "zh-CN" : "英国"
14828 }
14829 },
14830 "registered_country" : {
14831 "geoname_id" : 2635167,
14832 "is_in_european_union" : true,
14833 "iso_code" : "GB",
14834 "names" : {
14835 "de" : "Vereinigtes Königreich",
14836 "en" : "United Kingdom",
14837 "es" : "Reino Unido",
14838 "fr" : "Royaume-Uni",
14839 "ja" : "イギリス",
14840 "pt-BR" : "Reino Unido",
14841 "ru" : "Великобритания",
14842 "zh-CN" : "英国"
14843 }
14844 }
14845 }
14846 },
14847 {
14848 "2a02:fe80::/29" : {
14849 "continent" : {
14850 "code" : "EU",
14851 "geoname_id" : 6255148,
14852 "names" : {
14853 "de" : "Europa",
14854 "en" : "Europe",
14855 "es" : "Europa",
14856 "fr" : "Europe",
14857 "ja" : "ヨーロッパ",
14858 "pt-BR" : "Europa",
14859 "ru" : "Европа",
14860 "zh-CN" : "欧洲"
14861 }
14862 },
14863 "country" : {
14864 "geoname_id" : 3175395,
14865 "is_in_european_union" : true,
14866 "iso_code" : "IT",
14867 "names" : {
14868 "de" : "Italien",
14869 "en" : "Italy",
14870 "es" : "Italia",
14871 "fr" : "Italie",
14872 "ja" : "イタリア共和国",
14873 "pt-BR" : "Itália",
14874 "ru" : "Италия",
14875 "zh-CN" : "意大利"
14876 }
14877 },
14878 "registered_country" : {
14879 "geoname_id" : 3175395,
14880 "is_in_european_union" : true,
14881 "iso_code" : "IT",
14882 "names" : {
14883 "de" : "Italien",
14884 "en" : "Italy",
14885 "es" : "Italia",
14886 "fr" : "Italie",
14887 "ja" : "イタリア共和国",
14888 "pt-BR" : "Itália",
14889 "ru" : "Италия",
14890 "zh-CN" : "意大利"
14891 }
14892 }
14893 }
14894 },
14895 {
14896 "2a02:fec0::/29" : {
14897 "continent" : {
14898 "code" : "EU",
14899 "geoname_id" : 6255148,
14900 "names" : {
14901 "de" : "Europa",
14902 "en" : "Europe",
14903 "es" : "Europa",
14904 "fr" : "Europe",
14905 "ja" : "ヨーロッパ",
14906 "pt-BR" : "Europa",
14907 "ru" : "Европа",
14908 "zh-CN" : "欧洲"
14909 }
14910 },
14911 "country" : {
14912 "geoname_id" : 2635167,
14913 "is_in_european_union" : true,
14914 "iso_code" : "GB",
14915 "names" : {
14916 "de" : "Vereinigtes Königreich",
14917 "en" : "United Kingdom",
14918 "es" : "Reino Unido",
14919 "fr" : "Royaume-Uni",
14920 "ja" : "イギリス",
14921 "pt-BR" : "Reino Unido",
14922 "ru" : "Великобритания",
14923 "zh-CN" : "英国"
14924 }
14925 },
14926 "registered_country" : {
14927 "geoname_id" : 2635167,
14928 "is_in_european_union" : true,
14929 "iso_code" : "GB",
14930 "names" : {
14931 "de" : "Vereinigtes Königreich",
14932 "en" : "United Kingdom",
14933 "es" : "Reino Unido",
14934 "fr" : "Royaume-Uni",
14935 "ja" : "イギリス",
14936 "pt-BR" : "Reino Unido",
14937 "ru" : "Великобритания",
14938 "zh-CN" : "英国"
14939 }
14940 }
14941 }
14942 },
14943 {
14944 "2a02:ff00::/29" : {
14945 "continent" : {
14946 "code" : "EU",
14947 "geoname_id" : 6255148,
14948 "names" : {
14949 "de" : "Europa",
14950 "en" : "Europe",
14951 "es" : "Europa",
14952 "fr" : "Europe",
14953 "ja" : "ヨーロッパ",
14954 "pt-BR" : "Europa",
14955 "ru" : "Европа",
14956 "zh-CN" : "欧洲"
14957 }
14958 },
14959 "country" : {
14960 "geoname_id" : 3175395,
14961 "is_in_european_union" : true,
14962 "iso_code" : "IT",
14963 "names" : {
14964 "de" : "Italien",
14965 "en" : "Italy",
14966 "es" : "Italia",
14967 "fr" : "Italie",
14968 "ja" : "イタリア共和国",
14969 "pt-BR" : "Itália",
14970 "ru" : "Италия",
14971 "zh-CN" : "意大利"
14972 }
14973 },
14974 "registered_country" : {
14975 "geoname_id" : 3175395,
14976 "is_in_european_union" : true,
14977 "iso_code" : "IT",
14978 "names" : {
14979 "de" : "Italien",
14980 "en" : "Italy",
14981 "es" : "Italia",
14982 "fr" : "Italie",
14983 "ja" : "イタリア共和国",
14984 "pt-BR" : "Itália",
14985 "ru" : "Италия",
14986 "zh-CN" : "意大利"
14987 }
14988 }
14989 }
14990 },
14991 {
14992 "2a02:ff40::/29" : {
14993 "continent" : {
14994 "code" : "EU",
14995 "geoname_id" : 6255148,
14996 "names" : {
14997 "de" : "Europa",
14998 "en" : "Europe",
14999 "es" : "Europa",
15000 "fr" : "Europe",
15001 "ja" : "ヨーロッパ",
15002 "pt-BR" : "Europa",
15003 "ru" : "Европа",
15004 "zh-CN" : "欧洲"
15005 }
15006 },
15007 "country" : {
15008 "geoname_id" : 3042225,
15009 "iso_code" : "IM",
15010 "names" : {
15011 "de" : "Insel Man",
15012 "en" : "Isle of Man",
15013 "es" : "Isla de Man",
15014 "fr" : "Île de Man",
15015 "ja" : "マン島",
15016 "pt-BR" : "Ilha de Man",
15017 "ru" : "Мэн, о-в",
15018 "zh-CN" : "曼岛"
15019 }
15020 },
15021 "registered_country" : {
15022 "geoname_id" : 3042225,
15023 "iso_code" : "IM",
15024 "names" : {
15025 "de" : "Insel Man",
15026 "en" : "Isle of Man",
15027 "es" : "Isla de Man",
15028 "fr" : "Île de Man",
15029 "ja" : "マン島",
15030 "pt-BR" : "Ilha de Man",
15031 "ru" : "Мэн, о-в",
15032 "zh-CN" : "曼岛"
15033 }
15034 }
15035 }
15036 },
15037 {
15038 "2a02:ff80::/29" : {
15039 "continent" : {
15040 "code" : "EU",
15041 "geoname_id" : 6255148,
15042 "names" : {
15043 "de" : "Europa",
15044 "en" : "Europe",
15045 "es" : "Europa",
15046 "fr" : "Europe",
15047 "ja" : "ヨーロッパ",
15048 "pt-BR" : "Europa",
15049 "ru" : "Европа",
15050 "zh-CN" : "欧洲"
15051 }
15052 },
15053 "country" : {
15054 "geoname_id" : 2921044,
15055 "is_in_european_union" : true,
15056 "iso_code" : "DE",
15057 "names" : {
15058 "de" : "Deutschland",
15059 "en" : "Germany",
15060 "es" : "Alemania",
15061 "fr" : "Allemagne",
15062 "ja" : "ドイツ連邦共和国",
15063 "pt-BR" : "Alemanha",
15064 "ru" : "Германия",
15065 "zh-CN" : "德国"
15066 }
15067 },
15068 "registered_country" : {
15069 "geoname_id" : 2921044,
15070 "is_in_european_union" : true,
15071 "iso_code" : "DE",
15072 "names" : {
15073 "de" : "Deutschland",
15074 "en" : "Germany",
15075 "es" : "Alemania",
15076 "fr" : "Allemagne",
15077 "ja" : "ドイツ連邦共和国",
15078 "pt-BR" : "Alemanha",
15079 "ru" : "Германия",
15080 "zh-CN" : "德国"
15081 }
15082 }
15083 }
15084 },
15085 {
15086 "2a02:ffc0::/29" : {
15087 "continent" : {
15088 "code" : "EU",
15089 "geoname_id" : 6255148,
15090 "names" : {
15091 "de" : "Europa",
15092 "en" : "Europe",
15093 "es" : "Europa",
15094 "fr" : "Europe",
15095 "ja" : "ヨーロッパ",
15096 "pt-BR" : "Europa",
15097 "ru" : "Европа",
15098 "zh-CN" : "欧洲"
15099 }
15100 },
15101 "country" : {
15102 "geoname_id" : 2411586,
15103 "iso_code" : "GI",
15104 "names" : {
15105 "de" : "Gibraltar",
15106 "en" : "Gibraltar",
15107 "es" : "Gibraltar",
15108 "fr" : "Gibraltar",
15109 "ja" : "ジブラルタル",
15110 "pt-BR" : "Gibraltar",
15111 "ru" : "Гибралтар"
15112 }
15113 },
15114 "registered_country" : {
15115 "geoname_id" : 2411586,
15116 "iso_code" : "GI",
15117 "names" : {
15118 "de" : "Gibraltar",
15119 "en" : "Gibraltar",
15120 "es" : "Gibraltar",
15121 "fr" : "Gibraltar",
15122 "ja" : "ジブラルタル",
15123 "pt-BR" : "Gibraltar",
15124 "ru" : "Гибралтар"
15125 }
15126 }
15127 }
15128 },
15129 {
15130 "::2.125.160.216/125" : {
15131 "continent" : {
15132 "code" : "EU",
15133 "geoname_id" : 6255148,
15134 "names" : {
15135 "de" : "Europa",
15136 "en" : "Europe",
15137 "es" : "Europa",
15138 "fr" : "Europe",
15139 "ja" : "ヨーロッパ",
15140 "pt-BR" : "Europa",
15141 "ru" : "Европа",
15142 "zh-CN" : "欧洲"
15143 }
15144 },
15145 "country" : {
15146 "geoname_id" : 2635167,
15147 "is_in_european_union" : true,
15148 "iso_code" : "GB",
15149 "names" : {
15150 "de" : "Vereinigtes Königreich",
15151 "en" : "United Kingdom",
15152 "es" : "Reino Unido",
15153 "fr" : "Royaume-Uni",
15154 "ja" : "イギリス",
15155 "pt-BR" : "Reino Unido",
15156 "ru" : "Великобритания",
15157 "zh-CN" : "英国"
15158 }
15159 },
15160 "registered_country" : {
15161 "geoname_id" : 3017382,
15162 "is_in_european_union" : true,
15163 "iso_code" : "FR",
15164 "names" : {
15165 "de" : "Frankreich",
15166 "en" : "France",
15167 "es" : "Francia",
15168 "fr" : "France",
15169 "ja" : "フランス共和国",
15170 "pt-BR" : "França",
15171 "ru" : "Франция",
15172 "zh-CN" : "法国"
15173 }
15174 }
15175 }
15176 },
15177 {
15178 "::74.209.24.0/116" : {
15179 "continent" : {
15180 "code" : "NA",
15181 "geoname_id" : 6255149,
15182 "names" : {
15183 "de" : "Nordamerika",
15184 "en" : "North America",
15185 "es" : "Norteamérica",
15186 "fr" : "Amérique du Nord",
15187 "ja" : "北アメリカ",
15188 "pt-BR" : "América do Norte",
15189 "ru" : "Северная Америка",
15190 "zh-CN" : "北美洲"
15191 }
15192 },
15193 "country" : {
15194 "geoname_id" : 6252001,
15195 "iso_code" : "US",
15196 "names" : {
15197 "de" : "USA",
15198 "en" : "United States",
15199 "es" : "Estados Unidos",
15200 "fr" : "États-Unis",
15201 "ja" : "アメリカ合衆国",
15202 "pt-BR" : "Estados Unidos",
15203 "ru" : "США",
15204 "zh-CN" : "美国"
15205 }
15206 },
15207 "registered_country" : {
15208 "geoname_id" : 6252001,
15209 "iso_code" : "US",
15210 "names" : {
15211 "de" : "USA",
15212 "en" : "United States",
15213 "es" : "Estados Unidos",
15214 "fr" : "États-Unis",
15215 "ja" : "アメリカ合衆国",
15216 "pt-BR" : "Estados Unidos",
15217 "ru" : "США",
15218 "zh-CN" : "美国"
15219 }
15220 },
15221 "traits" : {
15222 "is_anonymous_proxy" : true,
15223 "is_satellite_provider" : true
15224 }
15225 }
15226 },
15227 {
15228 "::75.209.24.0/128" : {
15229 "continent" : {
15230 "code" : "NA",
15231 "geoname_id" : 6255149,
15232 "names" : {
15233 "de" : "Nordamerika",
15234 "en" : "North America",
15235 "es" : "Norteamérica",
15236 "fr" : "Amérique du Nord",
15237 "ja" : "北アメリカ",
15238 "pt-BR" : "América do Norte",
15239 "ru" : "Северная Америка",
15240 "zh-CN" : "北美洲"
15241 }
15242 },
15243 "country" : {
15244 "geoname_id" : 6252001,
15245 "iso_code" : "US",
15246 "names" : {
15247 "de" : "USA",
15248 "en" : "United States",
15249 "es" : "Estados Unidos",
15250 "fr" : "États-Unis",
15251 "ja" : "アメリカ合衆国",
15252 "pt-BR" : "Estados Unidos",
15253 "ru" : "США",
15254 "zh-CN" : "美国"
15255 }
15256 },
15257 "registered_country" : {
15258 "geoname_id" : 6252001,
15259 "iso_code" : "US",
15260 "names" : {
15261 "de" : "USA",
15262 "en" : "United States",
15263 "es" : "Estados Unidos",
15264 "fr" : "États-Unis",
15265 "ja" : "アメリカ合衆国",
15266 "pt-BR" : "Estados Unidos",
15267 "ru" : "США",
15268 "zh-CN" : "美国"
15269 }
15270 },
15271 "traits" : {
15272 "is_anonymous_proxy" : true,
15273 "is_satellite_provider" : true
15274 }
15275 }
15276 },
15277 {
15278 "::81.2.69.142/127" : {
15279 "continent" : {
15280 "code" : "EU",
15281 "geoname_id" : 6255148,
15282 "names" : {
15283 "de" : "Europa",
15284 "en" : "Europe",
15285 "es" : "Europa",
15286 "fr" : "Europe",
15287 "ja" : "ヨーロッパ",
15288 "pt-BR" : "Europa",
15289 "ru" : "Европа",
15290 "zh-CN" : "欧洲"
15291 }
15292 },
15293 "country" : {
15294 "geoname_id" : 2635167,
15295 "is_in_european_union" : true,
15296 "iso_code" : "GB",
15297 "names" : {
15298 "de" : "Vereinigtes Königreich",
15299 "en" : "United Kingdom",
15300 "es" : "Reino Unido",
15301 "fr" : "Royaume-Uni",
15302 "ja" : "イギリス",
15303 "pt-BR" : "Reino Unido",
15304 "ru" : "Великобритания",
15305 "zh-CN" : "英国"
15306 }
15307 },
15308 "registered_country" : {
15309 "geoname_id" : 6252001,
15310 "iso_code" : "US",
15311 "names" : {
15312 "de" : "USA",
15313 "en" : "United States",
15314 "es" : "Estados Unidos",
15315 "fr" : "États-Unis",
15316 "ja" : "アメリカ合衆国",
15317 "pt-BR" : "Estados Unidos",
15318 "ru" : "США",
15319 "zh-CN" : "美国"
15320 }
15321 }
15322 }
15323 },
15324 {
15325 "::81.2.69.144/124" : {
15326 "continent" : {
15327 "code" : "EU",
15328 "geoname_id" : 6255148,
15329 "names" : {
15330 "de" : "Europa",
15331 "en" : "Europe",
15332 "es" : "Europa",
15333 "fr" : "Europe",
15334 "ja" : "ヨーロッパ",
15335 "pt-BR" : "Europa",
15336 "ru" : "Европа",
15337 "zh-CN" : "欧洲"
15338 }
15339 },
15340 "country" : {
15341 "geoname_id" : 2635167,
15342 "is_in_european_union" : true,
15343 "iso_code" : "GB",
15344 "names" : {
15345 "de" : "Vereinigtes Königreich",
15346 "en" : "United Kingdom",
15347 "es" : "Reino Unido",
15348 "fr" : "Royaume-Uni",
15349 "ja" : "イギリス",
15350 "pt-BR" : "Reino Unido",
15351 "ru" : "Великобритания",
15352 "zh-CN" : "英国"
15353 }
15354 },
15355 "registered_country" : {
15356 "geoname_id" : 6252001,
15357 "iso_code" : "US",
15358 "names" : {
15359 "de" : "USA",
15360 "en" : "United States",
15361 "es" : "Estados Unidos",
15362 "fr" : "États-Unis",
15363 "ja" : "アメリカ合衆国",
15364 "pt-BR" : "Estados Unidos",
15365 "ru" : "США",
15366 "zh-CN" : "美国"
15367 }
15368 }
15369 }
15370 },
15371 {
15372 "::81.2.69.160/123" : {
15373 "continent" : {
15374 "code" : "EU",
15375 "geoname_id" : 6255148,
15376 "names" : {
15377 "de" : "Europa",
15378 "en" : "Europe",
15379 "es" : "Europa",
15380 "fr" : "Europe",
15381 "ja" : "ヨーロッパ",
15382 "pt-BR" : "Europa",
15383 "ru" : "Европа",
15384 "zh-CN" : "欧洲"
15385 }
15386 },
15387 "country" : {
15388 "geoname_id" : 2635167,
15389 "is_in_european_union" : true,
15390 "iso_code" : "GB",
15391 "names" : {
15392 "de" : "Vereinigtes Königreich",
15393 "en" : "United Kingdom",
15394 "es" : "Reino Unido",
15395 "fr" : "Royaume-Uni",
15396 "ja" : "イギリス",
15397 "pt-BR" : "Reino Unido",
15398 "ru" : "Великобритания",
15399 "zh-CN" : "英国"
15400 }
15401 },
15402 "registered_country" : {
15403 "geoname_id" : 6252001,
15404 "iso_code" : "US",
15405 "names" : {
15406 "de" : "USA",
15407 "en" : "United States",
15408 "es" : "Estados Unidos",
15409 "fr" : "États-Unis",
15410 "ja" : "アメリカ合衆国",
15411 "pt-BR" : "Estados Unidos",
15412 "ru" : "США",
15413 "zh-CN" : "美国"
15414 }
15415 }
15416 }
15417 },
15418 {
15419 "::81.2.69.192/124" : {
15420 "continent" : {
15421 "code" : "EU",
15422 "geoname_id" : 6255148,
15423 "names" : {
15424 "de" : "Europa",
15425 "en" : "Europe",
15426 "es" : "Europa",
15427 "fr" : "Europe",
15428 "ja" : "ヨーロッパ",
15429 "pt-BR" : "Europa",
15430 "ru" : "Европа",
15431 "zh-CN" : "欧洲"
15432 }
15433 },
15434 "country" : {
15435 "geoname_id" : 2635167,
15436 "is_in_european_union" : true,
15437 "iso_code" : "GB",
15438 "names" : {
15439 "de" : "Vereinigtes Königreich",
15440 "en" : "United Kingdom",
15441 "es" : "Reino Unido",
15442 "fr" : "Royaume-Uni",
15443 "ja" : "イギリス",
15444 "pt-BR" : "Reino Unido",
15445 "ru" : "Великобритания",
15446 "zh-CN" : "英国"
15447 }
15448 },
15449 "registered_country" : {
15450 "geoname_id" : 6252001,
15451 "iso_code" : "US",
15452 "names" : {
15453 "de" : "USA",
15454 "en" : "United States",
15455 "es" : "Estados Unidos",
15456 "fr" : "États-Unis",
15457 "ja" : "アメリカ合衆国",
15458 "pt-BR" : "Estados Unidos",
15459 "ru" : "США",
15460 "zh-CN" : "美国"
15461 }
15462 }
15463 }
15464 },
15465 {
15466 "::216.160.83.56/125" : {
15467 "continent" : {
15468 "code" : "NA",
15469 "geoname_id" : 6255149,
15470 "names" : {
15471 "de" : "Nordamerika",
15472 "en" : "North America",
15473 "es" : "América del Norte",
15474 "fr" : "Amérique du Nord",
15475 "ja" : "北アメリカ",
15476 "pt-BR" : "América do Norte",
15477 "ru" : "Северная Америка",
15478 "zh-CN" : "北美洲"
15479 }
15480 },
15481 "country" : {
15482 "geoname_id" : 6252001,
15483 "iso_code" : "US",
15484 "names" : {
15485 "de" : "USA",
15486 "en" : "United States",
15487 "es" : "Estados Unidos",
15488 "fr" : "États-Unis",
15489 "ja" : "アメリカ合衆国",
15490 "pt-BR" : "Estados Unidos",
15491 "ru" : "США",
15492 "zh-CN" : "美国"
15493 }
15494 },
15495 "registered_country" : {
15496 "geoname_id" : 2635167,
15497 "is_in_european_union" : true,
15498 "iso_code" : "GB",
15499 "names" : {
15500 "de" : "Vereinigtes Königreich",
15501 "en" : "United Kingdom",
15502 "es" : "Reino Unido",
15503 "fr" : "Royaume-Uni",
15504 "ja" : "イギリス",
15505 "pt-BR" : "Reino Unido",
15506 "ru" : "Великобритания",
15507 "zh-CN" : "英国"
15508 }
15509 }
15510 }
15511 },
15512 {
15513 "::89.160.20.112/124" : {
15514 "continent" : {
15515 "code" : "EU",
15516 "geoname_id" : 6255148,
15517 "names" : {
15518 "de" : "Europa",
15519 "en" : "Europe",
15520 "es" : "Europa",
15521 "fr" : "Europe",
15522 "ja" : "ヨーロッパ",
15523 "pt-BR" : "Europa",
15524 "ru" : "Европа",
15525 "zh-CN" : "欧洲"
15526 }
15527 },
15528 "country" : {
15529 "geoname_id" : 2661886,
15530 "is_in_european_union" : true,
15531 "iso_code" : "SE",
15532 "names" : {
15533 "de" : "Schweden",
15534 "en" : "Sweden",
15535 "es" : "Suecia",
15536 "fr" : "Suède",
15537 "ja" : "スウェーデン王国",
15538 "pt-BR" : "Suécia",
15539 "ru" : "Швеция",
15540 "zh-CN" : "瑞典"
15541 }
15542 },
15543 "registered_country" : {
15544 "geoname_id" : 2921044,
15545 "is_in_european_union" : true,
15546 "iso_code" : "DE",
15547 "names" : {
15548 "de" : "Deutschland",
15549 "en" : "Germany",
15550 "es" : "Alemania",
15551 "fr" : "Allemagne",
15552 "ja" : "ドイツ連邦共和国",
15553 "pt-BR" : "Alemanha",
15554 "ru" : "Германия",
15555 "zh-CN" : "德国"
15556 }
15557 }
15558 }
15559 },
15560 {
15561 "::89.160.20.128/121" : {
15562 "continent" : {
15563 "code" : "EU",
15564 "geoname_id" : 6255148,
15565 "names" : {
15566 "de" : "Europa",
15567 "en" : "Europe",
15568 "es" : "Europa",
15569 "fr" : "Europe",
15570 "ja" : "ヨーロッパ",
15571 "pt-BR" : "Europa",
15572 "ru" : "Европа",
15573 "zh-CN" : "欧洲"
15574 }
15575 },
15576 "country" : {
15577 "geoname_id" : 2661886,
15578 "is_in_european_union" : true,
15579 "iso_code" : "SE",
15580 "names" : {
15581 "de" : "Schweden",
15582 "en" : "Sweden",
15583 "es" : "Suecia",
15584 "fr" : "Suède",
15585 "ja" : "スウェーデン王国",
15586 "pt-BR" : "Suécia",
15587 "ru" : "Швеция",
15588 "zh-CN" : "瑞典"
15589 }
15590 },
15591 "registered_country" : {
15592 "geoname_id" : 2921044,
15593 "is_in_european_union" : true,
15594 "iso_code" : "DE",
15595 "names" : {
15596 "de" : "Deutschland",
15597 "en" : "Germany",
15598 "es" : "Alemania",
15599 "fr" : "Allemagne",
15600 "ja" : "ドイツ連邦共和国",
15601 "pt-BR" : "Alemanha",
15602 "ru" : "Германия",
15603 "zh-CN" : "德国"
15604 }
15605 }
15606 }
15607 },
15608 {
15609 "::67.43.156.0/120" : {
15610 "continent" : {
15611 "code" : "AS",
15612 "geoname_id" : 6255147,
15613 "names" : {
15614 "de" : "Asien",
15615 "en" : "Asia",
15616 "es" : "Asia",
15617 "fr" : "Asie",
15618 "ja" : "アジア",
15619 "pt-BR" : "Ásia",
15620 "ru" : "Азия",
15621 "zh-CN" : "亚洲"
15622 }
15623 },
15624 "country" : {
15625 "geoname_id" : 1252634,
15626 "iso_code" : "BT",
15627 "names" : {
15628 "de" : "Bhutan",
15629 "en" : "Bhutan",
15630 "es" : "Bután",
15631 "fr" : "Bhutan",
15632 "ja" : "ブータン王国",
15633 "pt-BR" : "Butão",
15634 "ru" : "Бутан",
15635 "zh-CN" : "不丹"
15636 }
15637 },
15638 "registered_country" : {
15639 "geoname_id" : 798549,
15640 "is_in_european_union" : true,
15641 "iso_code" : "RO",
15642 "names" : {
15643 "de" : "Rumänien",
15644 "en" : "Romania",
15645 "es" : "Rumanía",
15646 "fr" : "Roumanie",
15647 "ja" : "ルーマニア",
15648 "pt-BR" : "Romênia",
15649 "ru" : "Румыния",
15650 "zh-CN" : "罗马尼亚"
15651 }
15652 },
15653 "traits" : {
15654 "is_anonymous_proxy" : true
15655 }
15656 }
15657 },
15658 {
15659 "::202.196.224.0/116" : {
15660 "continent" : {
15661 "code" : "AS",
15662 "geoname_id" : 6255147,
15663 "names" : {
15664 "de" : "Asien",
15665 "en" : "Asia",
15666 "es" : "Asia",
15667 "fr" : "Asie",
15668 "ja" : "アジア",
15669 "pt-BR" : "Ásia",
15670 "ru" : "Азия",
15671 "zh-CN" : "亚洲"
15672 }
15673 },
15674 "country" : {
15675 "geoname_id" : 1694008,
15676 "iso_code" : "PH",
15677 "names" : {
15678 "de" : "Philippinen",
15679 "en" : "Philippines",
15680 "es" : "Filipinas",
15681 "fr" : "Philippines",
15682 "ja" : "フィリピン共和国",
15683 "pt-BR" : "Filipinas",
15684 "ru" : "Филиппины",
15685 "zh-CN" : "菲律宾"
15686 }
15687 },
15688 "registered_country" : {
15689 "geoname_id" : 1694008,
15690 "iso_code" : "PH",
15691 "names" : {
15692 "de" : "Philippinen",
15693 "en" : "Philippines",
15694 "es" : "Filipinas",
15695 "fr" : "Philippines",
15696 "ja" : "フィリピン共和国",
15697 "pt-BR" : "Filipinas",
15698 "ru" : "Филиппины",
15699 "zh-CN" : "菲律宾"
15700 }
15701 },
15702 "represented_country" : {
15703 "geoname_id" : 6252001,
15704 "iso_code" : "US",
15705 "names" : {
15706 "de" : "USA",
15707 "en" : "United States",
15708 "es" : "Estados Unidos",
15709 "fr" : "États-Unis",
15710 "ja" : "アメリカ合衆国",
15711 "pt-BR" : "Estados Unidos",
15712 "ru" : "США",
15713 "zh-CN" : "美国"
15714 },
15715 "type" : "military"
15716 }
15717 }
15718 },
15719 {
15720 "::111.235.160.0/118" : {
15721 "continent" : {
15722 "code" : "AS",
15723 "geoname_id" : 6255147,
15724 "names" : {
15725 "de" : "Asien",
15726 "en" : "Asia",
15727 "es" : "Asia",
15728 "fr" : "Asie",
15729 "ja" : "アジア",
15730 "pt-BR" : "Ásia",
15731 "ru" : "Азия",
15732 "zh-CN" : "亚洲"
15733 }
15734 },
15735 "country" : {
15736 "geoname_id" : 1814991,
15737 "iso_code" : "CN",
15738 "names" : {
15739 "de" : "China",
15740 "en" : "People's Republic of China",
15741 "es" : "República Popular China",
15742 "fr" : "Chine",
15743 "ja" : "中国",
15744 "pt-BR" : "China",
15745 "ru" : "Китай",
15746 "zh-CN" : "中国"
15747 }
15748 },
15749 "registered_country" : {
15750 "geoname_id" : 1814991,
15751 "iso_code" : "CN",
15752 "names" : {
15753 "de" : "China",
15754 "en" : "People's Republic of China",
15755 "es" : "República Popular China",
15756 "fr" : "Chine",
15757 "ja" : "中国",
15758 "pt-BR" : "China",
15759 "ru" : "Китай",
15760 "zh-CN" : "中国"
15761 }
15762 }
15763 }
15764 },
15765 {
15766 "::175.16.199.0/120" : {
15767 "continent" : {
15768 "code" : "AS",
15769 "geoname_id" : 6255147,
15770 "names" : {
15771 "de" : "Asien",
15772 "en" : "Asia",
15773 "es" : "Asia",
15774 "fr" : "Asie",
15775 "ja" : "アジア",
15776 "pt-BR" : "Ásia",
15777 "ru" : "Азия",
15778 "zh-CN" : "亚洲"
15779 }
15780 },
15781 "country" : {
15782 "geoname_id" : 1814991,
15783 "iso_code" : "CN",
15784 "names" : {
15785 "de" : "China",
15786 "en" : "China",
15787 "es" : "China",
15788 "fr" : "Chine",
15789 "ja" : "中国",
15790 "pt-BR" : "China",
15791 "ru" : "Китай",
15792 "zh-CN" : "中国"
15793 }
15794 },
15795 "registered_country" : {
15796 "geoname_id" : 1814991,
15797 "iso_code" : "CN",
15798 "names" : {
15799 "de" : "China",
15800 "en" : "China",
15801 "es" : "China",
15802 "fr" : "Chine",
15803 "ja" : "中国",
15804 "pt-BR" : "China",
15805 "ru" : "Китай",
15806 "zh-CN" : "中国"
15807 }
15808 }
15809 }
15810 },
15811 {
15812 "::212.47.235.81/128" : {
15813 "traits" : {
15814 "is_anonymous_proxy" : true
15815 }
15816 }
15817 },
15818 {
15819 "::212.47.235.82/128" : {
15820 "traits" : {
15821 "is_satellite_provider" : true
15822 }
15823 }
15824 },
15825 {
15826 "::217.65.48.0/125" : {
15827 "continent" : {
15828 "code" : "EU",
15829 "geoname_id" : 6255148,
15830 "names" : {
15831 "de" : "Europa",
15832 "en" : "Europe",
15833 "es" : "Europa",
15834 "fr" : "Europe",
15835 "ja" : "ヨーロッパ",
15836 "pt-BR" : "Europa",
15837 "ru" : "Европа",
15838 "zh-CN" : "欧洲"
15839 }
15840 },
15841 "country" : {
15842 "geoname_id" : 2411586,
15843 "iso_code" : "GI",
15844 "names" : {
15845 "de" : "Gibraltar",
15846 "en" : "Gibraltar",
15847 "es" : "Gibraltar",
15848 "fr" : "Gibraltar",
15849 "ja" : "ジブラルタル",
15850 "pt-BR" : "Gibraltar",
15851 "ru" : "Гибралтар"
15852 }
15853 },
15854 "registered_country" : {
15855 "geoname_id" : 2411586,
15856 "iso_code" : "GI",
15857 "names" : {
15858 "de" : "Gibraltar",
15859 "en" : "Gibraltar",
15860 "es" : "Gibraltar",
15861 "fr" : "Gibraltar",
15862 "ja" : "ジブラルタル",
15863 "pt-BR" : "Gibraltar",
15864 "ru" : "Гибралтар"
15865 }
15866 }
15867 }
15868 },
15869 {
15870 "::50.114.0.0/118" : {
15871 "continent" : {
15872 "code" : "NA",
15873 "geoname_id" : 6255149,
15874 "names" : {
15875 "de" : "Nordamerika",
15876 "en" : "North America",
15877 "es" : "América del Norte",
15878 "fr" : "Amérique du Nord",
15879 "ja" : "北アメリカ",
15880 "pt-BR" : "América do Norte",
15881 "ru" : "Северная Америка",
15882 "zh-CN" : "北美洲"
15883 }
15884 },
15885 "country" : {
15886 "geoname_id" : 6252001,
15887 "iso_code" : "US",
15888 "names" : {
15889 "de" : "USA",
15890 "en" : "United States",
15891 "es" : "Estados Unidos",
15892 "fr" : "États-Unis",
15893 "ja" : "アメリカ合衆国",
15894 "pt-BR" : "Estados Unidos",
15895 "ru" : "США",
15896 "zh-CN" : "美国"
15897 }
15898 },
15899 "registered_country" : {
15900 "geoname_id" : 6252001,
15901 "iso_code" : "US",
15902 "names" : {
15903 "de" : "USA",
15904 "en" : "United States",
15905 "es" : "Estados Unidos",
15906 "fr" : "États-Unis",
15907 "ja" : "アメリカ合衆国",
15908 "pt-BR" : "Estados Unidos",
15909 "ru" : "США",
15910 "zh-CN" : "美国"
15911 }
15912 }
15913 }
15914 }
15915 ]
+0
-14
test/data/source-data/GeoIP2-DensityIncome-Test.json less more
0 [
1 {
2 "::5.83.124.0/118" : {
3 "average_income" : 32323,
4 "population_density" : 1232
5 }
6 },
7 {
8 "::216.160.83.0/120" : {
9 "average_income" : 24626,
10 "population_density" : 1341
11 }
12 }
13 ]
+0
-452
test/data/source-data/GeoIP2-Domain-Test.json less more
0 [
1 {
2 "::1.2.0.0/112" : {
3 "domain" : "maxmind.com"
4 }
5 },
6 {
7 "::71.160.223.0/120" : {
8 "domain" : "verizon.net"
9 }
10 },
11 {
12 "::186.30.236.0/120" : {
13 "domain" : "replaced.com"
14 }
15 },
16 {
17 "2a02:2770:3::/64" : {
18 "domain" : "sgotti.org"
19 }
20 },
21 {
22 "2a02:8420:48f4:b000::/64" : {
23 "domain" : "sfr.net"
24 }
25 },
26 {
27 "::142.217.194.0/119" : {
28 "domain" : "telebecinternet.net"
29 }
30 },
31 {
32 "::142.217.196.0/118" : {
33 "domain" : "telebecinternet.net"
34 }
35 },
36 {
37 "::142.217.200.0/117" : {
38 "domain" : "telebecinternet.net"
39 }
40 },
41 {
42 "::142.217.208.0/118" : {
43 "domain" : "telebecinternet.net"
44 }
45 },
46 {
47 "::142.217.212.0/119" : {
48 "domain" : "telebecinternet.net"
49 }
50 },
51 {
52 "::142.217.214.0/120" : {
53 "domain" : "telebecinternet.net"
54 }
55 },
56 {
57 "::208.110.201.0/120" : {
58 "domain" : "comcastbusiness.net"
59 }
60 },
61 {
62 "::208.110.202.0/119" : {
63 "domain" : "comcastbusiness.net"
64 }
65 },
66 {
67 "::208.110.204.0/118" : {
68 "domain" : "comcastbusiness.net"
69 }
70 },
71 {
72 "::208.110.208.0/116" : {
73 "domain" : "comcastbusiness.net"
74 }
75 },
76 {
77 "::222.230.136.0/118" : {
78 "domain" : "gol.ne.jp"
79 }
80 },
81 {
82 "::65.115.240.0/116" : {
83 "domain" : "qwest.net"
84 }
85 },
86 {
87 "::65.116.0.0/118" : {
88 "domain" : "qwest.net"
89 }
90 },
91 {
92 "::65.116.4.0/120" : {
93 "domain" : "qwest.net"
94 }
95 },
96 {
97 "::65.23.96.0/115" : {
98 "domain" : "nuvox.net"
99 }
100 },
101 {
102 "::66.92.78.0/119" : {
103 "domain" : "speakeasy.net"
104 }
105 },
106 {
107 "::66.92.80.0/116" : {
108 "domain" : "speakeasy.net"
109 }
110 },
111 {
112 "::66.92.96.0/115" : {
113 "domain" : "speakeasy.net"
114 }
115 },
116 {
117 "::66.92.128.0/113" : {
118 "domain" : "speakeasy.net"
119 }
120 },
121 {
122 "::66.93.0.0/113" : {
123 "domain" : "speakeasy.net"
124 }
125 },
126 {
127 "::66.93.128.0/114" : {
128 "domain" : "speakeasy.net"
129 }
130 },
131 {
132 "::66.93.192.0/115" : {
133 "domain" : "speakeasy.net"
134 }
135 },
136 {
137 "::66.93.224.0/116" : {
138 "domain" : "speakeasy.net"
139 }
140 },
141 {
142 "::66.93.240.0/117" : {
143 "domain" : "speakeasy.net"
144 }
145 },
146 {
147 "::66.93.248.0/119" : {
148 "domain" : "speakeasy.net"
149 }
150 },
151 {
152 "::67.43.156.0/120" : {
153 "domain" : "shoesfin.NET"
154 }
155 },
156 {
157 "::69.218.198.0/119" : {
158 "domain" : "ameritech.net"
159 }
160 },
161 {
162 "::69.218.200.0/117" : {
163 "domain" : "ameritech.net"
164 }
165 },
166 {
167 "::69.218.208.0/116" : {
168 "domain" : "ameritech.net"
169 }
170 },
171 {
172 "::69.218.224.0/115" : {
173 "domain" : "ameritech.net"
174 }
175 },
176 {
177 "::69.219.0.0/114" : {
178 "domain" : "ameritech.net"
179 }
180 },
181 {
182 "::69.219.64.0/116" : {
183 "domain" : "ameritech.net"
184 }
185 },
186 {
187 "::69.219.80.0/118" : {
188 "domain" : "ameritech.net"
189 }
190 },
191 {
192 "::69.219.84.0/120" : {
193 "domain" : "ameritech.net"
194 }
195 },
196 {
197 "::70.46.0.0/113" : {
198 "domain" : "nuvox.net"
199 }
200 },
201 {
202 "::70.46.128.0/118" : {
203 "domain" : "nuvox.net"
204 }
205 },
206 {
207 "::70.46.132.0/120" : {
208 "domain" : "nuvox.net"
209 }
210 },
211 {
212 "::71.136.2.0/119" : {
213 "domain" : "pacbell.net"
214 }
215 },
216 {
217 "::71.136.4.0/118" : {
218 "domain" : "pacbell.net"
219 }
220 },
221 {
222 "::71.136.8.0/117" : {
223 "domain" : "pacbell.net"
224 }
225 },
226 {
227 "::71.136.16.0/116" : {
228 "domain" : "pacbell.net"
229 }
230 },
231 {
232 "::71.136.32.0/115" : {
233 "domain" : "pacbell.net"
234 }
235 },
236 {
237 "::71.136.64.0/114" : {
238 "domain" : "pacbell.net"
239 }
240 },
241 {
242 "::71.136.128.0/113" : {
243 "domain" : "pacbell.net"
244 }
245 },
246 {
247 "::71.137.0.0/112" : {
248 "domain" : "pacbell.net"
249 }
250 },
251 {
252 "::71.138.0.0/113" : {
253 "domain" : "pacbell.net"
254 }
255 },
256 {
257 "::71.138.128.0/114" : {
258 "domain" : "pacbell.net"
259 }
260 },
261 {
262 "::71.138.192.0/116" : {
263 "domain" : "pacbell.net"
264 }
265 },
266 {
267 "::71.138.208.0/119" : {
268 "domain" : "pacbell.net"
269 }
270 },
271 {
272 "::74.0.88.0/117" : {
273 "domain" : "covad.net"
274 }
275 },
276 {
277 "::74.0.96.0/115" : {
278 "domain" : "covad.net"
279 }
280 },
281 {
282 "::74.0.128.0/113" : {
283 "domain" : "covad.net"
284 }
285 },
286 {
287 "::74.1.0.0/112" : {
288 "domain" : "covad.net"
289 }
290 },
291 {
292 "::74.2.0.0/113" : {
293 "domain" : "covad.net"
294 }
295 },
296 {
297 "::74.2.128.0/115" : {
298 "domain" : "covad.net"
299 }
300 },
301 {
302 "::74.2.160.0/117" : {
303 "domain" : "covad.net"
304 }
305 },
306 {
307 "::74.2.168.0/118" : {
308 "domain" : "covad.net"
309 }
310 },
311 {
312 "::74.2.172.0/119" : {
313 "domain" : "covad.net"
314 }
315 },
316 {
317 "::74.2.174.0/120" : {
318 "domain" : "covad.net"
319 }
320 },
321 {
322 "::75.77.84.0/118" : {
323 "domain" : "nuvox.net"
324 }
325 },
326 {
327 "::75.77.88.0/117" : {
328 "domain" : "nuvox.net"
329 }
330 },
331 {
332 "::75.77.96.0/115" : {
333 "domain" : "nuvox.net"
334 }
335 },
336 {
337 "::75.77.128.0/113" : {
338 "domain" : "nuvox.net"
339 }
340 },
341 {
342 "::78.26.67.0/120" : {
343 "domain" : "popwifi.it"
344 }
345 },
346 {
347 "::78.26.68.0/118" : {
348 "domain" : "popwifi.it"
349 }
350 },
351 {
352 "::78.26.72.0/117" : {
353 "domain" : "popwifi.it"
354 }
355 },
356 {
357 "::78.26.80.0/116" : {
358 "domain" : "popwifi.it"
359 }
360 },
361 {
362 "::78.26.96.0/117" : {
363 "domain" : "popwifi.it"
364 }
365 },
366 {
367 "::78.26.104.0/118" : {
368 "domain" : "popwifi.it"
369 }
370 },
371 {
372 "::78.26.108.0/119" : {
373 "domain" : "popwifi.it"
374 }
375 },
376 {
377 "::78.26.110.0/120" : {
378 "domain" : "popwifi.it"
379 }
380 },
381 {
382 "::81.2.64.0/115" : {
383 "domain" : "in-addr.arpa"
384 }
385 },
386 {
387 "::83.206.0.0/112" : {
388 "domain" : "oleane.fr"
389 }
390 },
391 {
392 "::89.160.0.0/116" : {
393 "domain" : "bredband2.com"
394 }
395 },
396 {
397 "::89.160.16.0/117" : {
398 "domain" : "bredband2.com"
399 }
400 },
401 {
402 "::89.160.24.0/118" : {
403 "domain" : "bredband2.com"
404 }
405 },
406 {
407 "::89.160.28.0/119" : {
408 "domain" : "bredband2.com"
409 }
410 },
411 {
412 "::89.160.30.0/120" : {
413 "domain" : "bredband2.com"
414 }
415 },
416 {
417 "::89.92.0.0/111" : {
418 "domain" : "bbox.fr"
419 }
420 },
421 {
422 "::89.94.0.0/112" : {
423 "domain" : "bbox.fr"
424 }
425 },
426 {
427 "::89.95.0.0/113" : {
428 "domain" : "bbox.fr"
429 }
430 },
431 {
432 "::89.95.128.0/114" : {
433 "domain" : "bbox.fr"
434 }
435 },
436 {
437 "::89.95.192.0/115" : {
438 "domain" : "bbox.fr"
439 }
440 },
441 {
442 "::89.95.224.0/116" : {
443 "domain" : "bbox.fr"
444 }
445 },
446 {
447 "::89.95.240.0/119" : {
448 "domain" : "bbox.fr"
449 }
450 }
451 ]
+0
-673
test/data/source-data/GeoIP2-Enterprise-Test.json less more
0 [
1 {
2 "::2.125.160.216/125" : {
3 "city" : {
4 "confidence" : 50,
5 "geoname_id" : 2655045,
6 "names" : {
7 "en" : "Boxford"
8 }
9 },
10 "continent" : {
11 "code" : "EU",
12 "geoname_id" : 6255148,
13 "names" : {
14 "de" : "Europa",
15 "en" : "Europe",
16 "es" : "Europa",
17 "fr" : "Europe",
18 "ja" : "ヨーロッパ",
19 "pt-BR" : "Europa",
20 "ru" : "Европа",
21 "zh-CN" : "欧洲"
22 }
23 },
24 "country" : {
25 "confidence" : 95,
26 "geoname_id" : 2635167,
27 "is_in_european_union" : true,
28 "iso_code" : "GB",
29 "names" : {
30 "de" : "Vereinigtes Königreich",
31 "en" : "United Kingdom",
32 "es" : "Reino Unido",
33 "fr" : "Royaume-Uni",
34 "ja" : "イギリス",
35 "pt-BR" : "Reino Unido",
36 "ru" : "Великобритания",
37 "zh-CN" : "英国"
38 }
39 },
40 "location" : {
41 "accuracy_radius" : 100,
42 "latitude" : 51.75,
43 "longitude" : -1.25,
44 "time_zone" : "Europe/London"
45 },
46 "postal" : {
47 "code" : "OX1",
48 "confidence" : 20
49 },
50 "registered_country" : {
51 "geoname_id" : 3017382,
52 "is_in_european_union" : true,
53 "iso_code" : "FR",
54 "names" : {
55 "de" : "Frankreich",
56 "en" : "France",
57 "es" : "Francia",
58 "fr" : "France",
59 "ja" : "フランス共和国",
60 "pt-BR" : "França",
61 "ru" : "Франция",
62 "zh-CN" : "法国"
63 }
64 },
65 "subdivisions" : [
66 {
67 "confidence" : 70,
68 "geoname_id" : 6269131,
69 "iso_code" : "ENG",
70 "names" : {
71 "en" : "England",
72 "es" : "Inglaterra",
73 "fr" : "Angleterre",
74 "pt-BR" : "Inglaterra"
75 }
76 },
77 {
78 "geoname_id" : 3333217,
79 "iso_code" : "WBK",
80 "names" : {
81 "en" : "West Berkshire",
82 "ru" : "Западный Беркшир",
83 "zh-CN" : "西伯克郡"
84 }
85 }
86 ]
87 }
88 },
89 {
90 "::67.43.156.0/120" : {
91 "continent" : {
92 "code" : "AS",
93 "geoname_id" : 6255147,
94 "names" : {
95 "de" : "Asien",
96 "en" : "Asia",
97 "es" : "Asia",
98 "fr" : "Asie",
99 "ja" : "アジア",
100 "pt-BR" : "Ásia",
101 "ru" : "Азия",
102 "zh-CN" : "亚洲"
103 }
104 },
105 "country" : {
106 "confidence" : 99,
107 "geoname_id" : 1252634,
108 "iso_code" : "BT",
109 "names" : {
110 "de" : "Bhutan",
111 "en" : "Bhutan",
112 "es" : "Bután",
113 "fr" : "Bhutan",
114 "ja" : "ブータン王国",
115 "pt-BR" : "Butão",
116 "ru" : "Бутан",
117 "zh-CN" : "不丹"
118 }
119 },
120 "location" : {
121 "accuracy_radius" : 534,
122 "latitude" : 27.5,
123 "longitude" : 90.5,
124 "time_zone" : "Asia/Thimphu"
125 },
126 "registered_country" : {
127 "geoname_id" : 798549,
128 "is_in_european_union" : true,
129 "iso_code" : "RO",
130 "names" : {
131 "de" : "Rumänien",
132 "en" : "Romania",
133 "es" : "Rumanía",
134 "fr" : "Roumanie",
135 "ja" : "ルーマニア",
136 "pt-BR" : "Romênia",
137 "ru" : "Румыния",
138 "zh-CN" : "罗马尼亚"
139 }
140 },
141 "traits" : {
142 "autonomous_system_number" : 35908,
143 "domain" : "shoesfin.NET",
144 "is_anonymous_proxy" : true,
145 "isp" : "Loud Packet",
146 "organization" : "zudoarichikito_",
147 "user_type" : "search_engine_spider"
148 }
149 }
150 },
151 {
152 "::74.209.24.0/116" : {
153 "city" : {
154 "confidence" : 11,
155 "geoname_id" : 5112335,
156 "names" : {
157 "en" : "Chatham"
158 }
159 },
160 "continent" : {
161 "code" : "NA",
162 "geoname_id" : 6255149,
163 "names" : {
164 "de" : "Nordamerika",
165 "en" : "North America",
166 "es" : "Norteamérica",
167 "fr" : "Amérique du Nord",
168 "ja" : "北アメリカ",
169 "pt-BR" : "América do Norte",
170 "ru" : "Северная Америка",
171 "zh-CN" : "北美洲"
172 }
173 },
174 "country" : {
175 "confidence" : 99,
176 "geoname_id" : 6252001,
177 "iso_code" : "US",
178 "names" : {
179 "de" : "USA",
180 "en" : "United States",
181 "es" : "Estados Unidos",
182 "fr" : "États-Unis",
183 "ja" : "アメリカ合衆国",
184 "pt-BR" : "Estados Unidos",
185 "ru" : "США",
186 "zh-CN" : "美国"
187 }
188 },
189 "location" : {
190 "accuracy_radius" : 27,
191 "latitude" : 42.3478,
192 "longitude" : -73.5549,
193 "metro_code" : 532,
194 "time_zone" : "America/New_York"
195 },
196 "postal" : {
197 "code" : "12037",
198 "confidence" : 11
199 },
200 "registered_country" : {
201 "geoname_id" : 6252001,
202 "iso_code" : "US",
203 "names" : {
204 "de" : "USA",
205 "en" : "United States",
206 "es" : "Estados Unidos",
207 "fr" : "États-Unis",
208 "ja" : "アメリカ合衆国",
209 "pt-BR" : "Estados Unidos",
210 "ru" : "США",
211 "zh-CN" : "美国"
212 }
213 },
214 "subdivisions" : [
215 {
216 "confidence" : 93,
217 "geoname_id" : 5128638,
218 "iso_code" : "NY",
219 "names" : {
220 "de" : "New York",
221 "en" : "New York",
222 "es" : "Nueva York",
223 "fr" : "New York",
224 "ja" : "ニューヨーク州",
225 "pt-BR" : "Nova Iorque",
226 "ru" : "Нью-Йорк",
227 "zh-CN" : "纽约州"
228 }
229 }
230 ],
231 "traits" : {
232 "autonomous_system_number" : 14671,
233 "autonomous_system_organization" : "FairPoint Communications",
234 "connection_type" : "Cable/DSL",
235 "domain" : "frpt.net",
236 "is_anonymous_proxy" : true,
237 "is_legitimate_proxy" : true,
238 "is_satellite_provider" : true,
239 "isp" : "Fairpoint Communications",
240 "organization" : "Fairpoint Communications",
241 "user_type" : "residential"
242 }
243 }
244 },
245 {
246 "::81.2.69.160/123" : {
247 "city" : {
248 "confidence" : 42,
249 "geoname_id" : 2643743,
250 "names" : {
251 "de" : "London",
252 "en" : "London",
253 "es" : "Londres",
254 "fr" : "Londres",
255 "ja" : "ロンドン",
256 "pt-BR" : "Londres",
257 "ru" : "Лондон"
258 }
259 },
260 "continent" : {
261 "code" : "EU",
262 "geoname_id" : 6255148,
263 "names" : {
264 "de" : "Europa",
265 "en" : "Europe",
266 "es" : "Europa",
267 "fr" : "Europe",
268 "ja" : "ヨーロッパ",
269 "pt-BR" : "Europa",
270 "ru" : "Европа",
271 "zh-CN" : "欧洲"
272 }
273 },
274 "country" : {
275 "confidence" : 99,
276 "geoname_id" : 2635167,
277 "is_in_european_union" : true,
278 "iso_code" : "GB",
279 "names" : {
280 "de" : "Vereinigtes Königreich",
281 "en" : "United Kingdom",
282 "es" : "Reino Unido",
283 "fr" : "Royaume-Uni",
284 "ja" : "イギリス",
285 "pt-BR" : "Reino Unido",
286 "ru" : "Великобритания",
287 "zh-CN" : "英国"
288 }
289 },
290 "location" : {
291 "accuracy_radius" : 100,
292 "latitude" : 51.5142,
293 "longitude" : -0.0931,
294 "time_zone" : "Europe/London"
295 },
296 "registered_country" : {
297 "geoname_id" : 6252001,
298 "iso_code" : "US",
299 "names" : {
300 "de" : "USA",
301 "en" : "United States",
302 "es" : "Estados Unidos",
303 "fr" : "États-Unis",
304 "ja" : "アメリカ合衆国",
305 "pt-BR" : "Estados Unidos",
306 "ru" : "США",
307 "zh-CN" : "美国"
308 }
309 },
310 "subdivisions" : [
311 {
312 "confidence" : 42,
313 "geoname_id" : 6269131,
314 "iso_code" : "ENG",
315 "names" : {
316 "en" : "England",
317 "es" : "Inglaterra",
318 "fr" : "Angleterre",
319 "pt-BR" : "Inglaterra"
320 }
321 }
322 ],
323 "traits" : {
324 "connection_type" : "Corporate",
325 "domain" : "in-addr.arpa",
326 "isp" : "Andrews & Arnold Ltd",
327 "organization" : "STONEHOUSE office network",
328 "user_type" : "government"
329 }
330 }
331 },
332 {
333 "::89.160.20.112/124" : {
334 "city" : {
335 "confidence" : 51,
336 "geoname_id" : 2694762,
337 "names" : {
338 "de" : "Linköping",
339 "en" : "Linköping",
340 "fr" : "Linköping",
341 "ja" : "リンシェーピング",
342 "zh-CN" : "林雪平"
343 }
344 },
345 "continent" : {
346 "code" : "EU",
347 "geoname_id" : 6255148,
348 "names" : {
349 "de" : "Europa",
350 "en" : "Europe",
351 "es" : "Europa",
352 "fr" : "Europe",
353 "ja" : "ヨーロッパ",
354 "pt-BR" : "Europa",
355 "ru" : "Европа",
356 "zh-CN" : "欧洲"
357 }
358 },
359 "country" : {
360 "confidence" : 99,
361 "geoname_id" : 2661886,
362 "is_in_european_union" : true,
363 "iso_code" : "SE",
364 "names" : {
365 "de" : "Schweden",
366 "en" : "Sweden",
367 "es" : "Suecia",
368 "fr" : "Suède",
369 "ja" : "スウェーデン王国",
370 "pt-BR" : "Suécia",
371 "ru" : "Швеция",
372 "zh-CN" : "瑞典"
373 }
374 },
375 "location" : {
376 "accuracy_radius" : 76,
377 "latitude" : 58.4167,
378 "longitude" : 15.6167,
379 "time_zone" : "Europe/Stockholm"
380 },
381 "registered_country" : {
382 "geoname_id" : 2921044,
383 "is_in_european_union" : true,
384 "iso_code" : "DE",
385 "names" : {
386 "de" : "Deutschland",
387 "en" : "Germany",
388 "es" : "Alemania",
389 "fr" : "Allemagne",
390 "ja" : "ドイツ連邦共和国",
391 "pt-BR" : "Alemanha",
392 "ru" : "Германия",
393 "zh-CN" : "德国"
394 }
395 },
396 "subdivisions" : [
397 {
398 "confidence" : 51,
399 "geoname_id" : 2685867,
400 "iso_code" : "E",
401 "names" : {
402 "en" : "Östergötland County",
403 "fr" : "Comté d'Östergötland"
404 }
405 }
406 ],
407 "traits" : {
408 "autonomous_system_number" : 29518,
409 "autonomous_system_organization" : "Bredband2 AB",
410 "connection_type" : "Corporate",
411 "domain" : "bredband2.com",
412 "isp" : "Bredband2 AB",
413 "organization" : "Bevtec",
414 "user_type" : "government"
415 }
416 }
417 },
418 {
419 "::175.16.199.0/120" : {
420 "city" : {
421 "confidence" : 50,
422 "geoname_id" : 2038180,
423 "names" : {
424 "de" : "Chángchūn",
425 "en" : "Changchun",
426 "fr" : "Changchun",
427 "ja" : "長春市",
428 "ru" : "Чанчунь",
429 "zh-CN" : "长春"
430 }
431 },
432 "continent" : {
433 "code" : "AS",
434 "geoname_id" : 6255147,
435 "names" : {
436 "de" : "Asien",
437 "en" : "Asia",
438 "es" : "Asia",
439 "fr" : "Asie",
440 "ja" : "アジア",
441 "pt-BR" : "Ásia",
442 "ru" : "Азия",
443 "zh-CN" : "亚洲"
444 }
445 },
446 "country" : {
447 "confidence" : 95,
448 "geoname_id" : 1814991,
449 "iso_code" : "CN",
450 "names" : {
451 "de" : "China",
452 "en" : "China",
453 "es" : "China",
454 "fr" : "Chine",
455 "ja" : "中国",
456 "pt-BR" : "China",
457 "ru" : "Китай",
458 "zh-CN" : "中国"
459 }
460 },
461 "location" : {
462 "accuracy_radius" : 100,
463 "latitude" : 43.88,
464 "longitude" : 125.3228,
465 "time_zone" : "Asia/Harbin"
466 },
467 "registered_country" : {
468 "geoname_id" : 1814991,
469 "iso_code" : "CN",
470 "names" : {
471 "de" : "China",
472 "en" : "China",
473 "es" : "China",
474 "fr" : "Chine",
475 "ja" : "中国",
476 "pt-BR" : "China",
477 "ru" : "Китай",
478 "zh-CN" : "中国"
479 }
480 },
481 "subdivisions" : [
482 {
483 "confidence" : 70,
484 "geoname_id" : 2036500,
485 "iso_code" : "22",
486 "names" : {
487 "en" : "Jilin Sheng",
488 "zh-CN" : "吉林"
489 }
490 }
491 ],
492 "traits" : {
493 "user_type" : "dialup"
494 }
495 }
496 },
497 {
498 "::202.196.224.0/116" : {
499 "continent" : {
500 "code" : "AS",
501 "geoname_id" : 6255147,
502 "names" : {
503 "de" : "Asien",
504 "en" : "Asia",
505 "es" : "Asia",
506 "fr" : "Asie",
507 "ja" : "アジア",
508 "pt-BR" : "Ásia",
509 "ru" : "Азия",
510 "zh-CN" : "亚洲"
511 }
512 },
513 "country" : {
514 "confidence" : 95,
515 "geoname_id" : 1694008,
516 "iso_code" : "PH",
517 "names" : {
518 "de" : "Philippinen",
519 "en" : "Philippines",
520 "es" : "Filipinas",
521 "fr" : "Philippines",
522 "ja" : "フィリピン共和国",
523 "pt-BR" : "Filipinas",
524 "ru" : "Филиппины",
525 "zh-CN" : "菲律宾"
526 }
527 },
528 "location" : {
529 "accuracy_radius" : 121,
530 "latitude" : 13,
531 "longitude" : 122,
532 "time_zone" : "Asia/Manila"
533 },
534 "postal" : {
535 "code" : "34021",
536 "confidence" : 20
537 },
538 "registered_country" : {
539 "geoname_id" : 1694008,
540 "iso_code" : "PH",
541 "names" : {
542 "de" : "Philippinen",
543 "en" : "Philippines",
544 "es" : "Filipinas",
545 "fr" : "Philippines",
546 "ja" : "フィリピン共和国",
547 "pt-BR" : "Filipinas",
548 "ru" : "Филиппины",
549 "zh-CN" : "菲律宾"
550 }
551 },
552 "represented_country" : {
553 "geoname_id" : 6252001,
554 "iso_code" : "US",
555 "names" : {
556 "de" : "USA",
557 "en" : "United States",
558 "es" : "Estados Unidos",
559 "fr" : "États-Unis",
560 "ja" : "アメリカ合衆国",
561 "pt-BR" : "Estados Unidos",
562 "ru" : "США",
563 "zh-CN" : "美国"
564 },
565 "type" : "military"
566 }
567 }
568 },
569 {
570 "::216.160.83.56/125" : {
571 "city" : {
572 "confidence" : 40,
573 "geoname_id" : 5803556,
574 "names" : {
575 "en" : "Milton",
576 "ru" : "Мильтон"
577 }
578 },
579 "continent" : {
580 "code" : "NA",
581 "geoname_id" : 6255149,
582 "names" : {
583 "de" : "Nordamerika",
584 "en" : "North America",
585 "es" : "América del Norte",
586 "fr" : "Amérique du Nord",
587 "ja" : "北アメリカ",
588 "pt-BR" : "América do Norte",
589 "ru" : "Северная Америка",
590 "zh-CN" : "北美洲"
591 }
592 },
593 "country" : {
594 "confidence" : 99,
595 "geoname_id" : 6252001,
596 "iso_code" : "US",
597 "names" : {
598 "de" : "USA",
599 "en" : "United States",
600 "es" : "Estados Unidos",
601 "fr" : "États-Unis",
602 "ja" : "アメリカ合衆国",
603 "pt-BR" : "Estados Unidos",
604 "ru" : "США",
605 "zh-CN" : "美国"
606 }
607 },
608 "location" : {
609 "accuracy_radius" : 22,
610 "latitude" : 47.2513,
611 "longitude" : -122.3149,
612 "metro_code" : 819,
613 "time_zone" : "America/Los_Angeles"
614 },
615 "postal" : {
616 "code" : "98354",
617 "confidence" : 40
618 },
619 "registered_country" : {
620 "geoname_id" : 2635167,
621 "is_in_european_union" : true,
622 "iso_code" : "GB",
623 "names" : {
624 "de" : "Vereinigtes Königreich",
625 "en" : "United Kingdom",
626 "es" : "Reino Unido",
627 "fr" : "Royaume-Uni",
628 "ja" : "イギリス",
629 "pt-BR" : "Reino Unido",
630 "ru" : "Великобритания",
631 "zh-CN" : "英国"
632 }
633 },
634 "subdivisions" : [
635 {
636 "confidence" : 99,
637 "geoname_id" : 5815135,
638 "iso_code" : "WA",
639 "names" : {
640 "en" : "Washington",
641 "es" : "Washington",
642 "fr" : "État de Washington",
643 "ja" : "ワシントン州",
644 "ru" : "Вашингтон",
645 "zh-CN" : "华盛顿州"
646 }
647 }
648 ],
649 "traits" : {
650 "autonomous_system_number" : 209,
651 "connection_type" : "Cable/DSL",
652 "isp" : "Century Link",
653 "organization" : "Lariat Software",
654 "user_type" : "government"
655 }
656 }
657 },
658 {
659 "::212.47.235.81/128" : {
660 "traits" : {
661 "is_anonymous_proxy" : true
662 }
663 }
664 },
665 {
666 "::212.47.235.82/128" : {
667 "traits" : {
668 "is_satellite_provider" : true
669 }
670 }
671 }
672 ]
+0
-12593
test/data/source-data/GeoIP2-ISP-Test.json less more
0 [
1 {
2 "::1.0.128.0/113" : {
3 "isp" : "TOT Public Company Limited",
4 "organization" : "TOT Public Company Limited"
5 }
6 },
7 {
8 "::1.128.0.0/107" : {
9 "autonomous_system_number" : 1221,
10 "autonomous_system_organization" : "Telstra Pty Ltd",
11 "isp" : "Telstra Internet",
12 "organization" : "Telstra Internet"
13 }
14 },
15 {
16 "::4.0.0.0/104" : {
17 "isp" : "Level 3 Communications",
18 "organization" : "Level 3 Communications"
19 }
20 },
21 {
22 "::5.83.124.0/118" : {
23 "isp" : "WifiNetCom"
24 }
25 },
26 {
27 "::5.145.96.0/117" : {
28 "isp" : "Finecom"
29 }
30 },
31 {
32 "::8.0.0.0/107" : {
33 "isp" : "Level 3 Communications",
34 "organization" : "Level 3 Communications"
35 }
36 },
37 {
38 "::8.32.0.0/112" : {
39 "isp" : "Level 3 Communications",
40 "organization" : "Level 3 Communications"
41 }
42 },
43 {
44 "::8.33.0.0/116" : {
45 "isp" : "Level 3 Communications",
46 "organization" : "Level 3 Communications"
47 }
48 },
49 {
50 "::8.33.16.0/119" : {
51 "isp" : "Level 3 Communications",
52 "organization" : "Co-Mo Connect"
53 }
54 },
55 {
56 "::8.33.18.0/119" : {
57 "isp" : "Level 3 Communications",
58 "organization" : "Level 3 Communications"
59 }
60 },
61 {
62 "::8.33.20.0/118" : {
63 "isp" : "Level 3 Communications",
64 "organization" : "Level 3 Communications"
65 }
66 },
67 {
68 "::8.33.24.0/117" : {
69 "isp" : "Level 3 Communications",
70 "organization" : "Level 3 Communications"
71 }
72 },
73 {
74 "::8.33.32.0/115" : {
75 "isp" : "Level 3 Communications",
76 "organization" : "Level 3 Communications"
77 }
78 },
79 {
80 "::8.33.64.0/114" : {
81 "isp" : "Level 3 Communications",
82 "organization" : "Level 3 Communications"
83 }
84 },
85 {
86 "::8.33.128.0/113" : {
87 "isp" : "Level 3 Communications",
88 "organization" : "Level 3 Communications"
89 }
90 },
91 {
92 "::8.34.0.0/111" : {
93 "isp" : "Level 3 Communications",
94 "organization" : "Level 3 Communications"
95 }
96 },
97 {
98 "::8.36.0.0/110" : {
99 "isp" : "Level 3 Communications",
100 "organization" : "Level 3 Communications"
101 }
102 },
103 {
104 "::8.40.0.0/109" : {
105 "isp" : "Level 3 Communications",
106 "organization" : "Level 3 Communications"
107 }
108 },
109 {
110 "::8.48.0.0/108" : {
111 "isp" : "Level 3 Communications",
112 "organization" : "Level 3 Communications"
113 }
114 },
115 {
116 "::8.64.0.0/106" : {
117 "isp" : "Level 3 Communications",
118 "organization" : "Level 3 Communications"
119 }
120 },
121 {
122 "::8.128.0.0/105" : {
123 "isp" : "Level 3 Communications",
124 "organization" : "Level 3 Communications"
125 }
126 },
127 {
128 "::12.0.0.0/106" : {
129 "isp" : "AT&T Services",
130 "organization" : "AT&T Services"
131 }
132 },
133 {
134 "::12.64.0.0/108" : {
135 "isp" : "AT&T Services",
136 "organization" : "AT&T Services"
137 }
138 },
139 {
140 "::12.80.0.0/112" : {
141 "isp" : "AT&T Services",
142 "organization" : "AT&T Services"
143 }
144 },
145 {
146 "::12.81.0.0/114" : {
147 "isp" : "AT&T Services",
148 "organization" : "AT&T Services"
149 }
150 },
151 {
152 "::12.81.64.0/116" : {
153 "isp" : "AT&T Services",
154 "organization" : "AT&T Services"
155 }
156 },
157 {
158 "::12.81.80.0/117" : {
159 "isp" : "AT&T Services",
160 "organization" : "AT&T Services"
161 }
162 },
163 {
164 "::12.81.88.0/118" : {
165 "isp" : "AT&T Services",
166 "organization" : "AT&T Services"
167 }
168 },
169 {
170 "::12.81.92.0/118" : {
171 "autonomous_system_number" : 7018,
172 "isp" : "AT&T Services",
173 "organization" : "AT&T Services"
174 }
175 },
176 {
177 "::12.81.96.0/115" : {
178 "autonomous_system_number" : 7018,
179 "isp" : "AT&T Services",
180 "organization" : "AT&T Services"
181 }
182 },
183 {
184 "::12.81.128.0/113" : {
185 "autonomous_system_number" : 7018,
186 "isp" : "AT&T Services",
187 "organization" : "AT&T Services"
188 }
189 },
190 {
191 "::12.82.0.0/111" : {
192 "autonomous_system_number" : 7018,
193 "isp" : "AT&T Services",
194 "organization" : "AT&T Services"
195 }
196 },
197 {
198 "::12.84.0.0/111" : {
199 "autonomous_system_number" : 7018,
200 "isp" : "AT&T Services",
201 "organization" : "AT&T Services"
202 }
203 },
204 {
205 "::12.86.0.0/112" : {
206 "autonomous_system_number" : 7018,
207 "isp" : "AT&T Services",
208 "organization" : "AT&T Services"
209 }
210 },
211 {
212 "::12.87.0.0/114" : {
213 "autonomous_system_number" : 7018,
214 "isp" : "AT&T Services",
215 "organization" : "AT&T Services"
216 }
217 },
218 {
219 "::12.87.64.0/115" : {
220 "autonomous_system_number" : 7018,
221 "isp" : "AT&T Services",
222 "organization" : "AT&T Services"
223 }
224 },
225 {
226 "::12.87.96.0/116" : {
227 "autonomous_system_number" : 7018,
228 "isp" : "AT&T Services",
229 "organization" : "AT&T Services"
230 }
231 },
232 {
233 "::12.87.112.0/118" : {
234 "autonomous_system_number" : 7018,
235 "isp" : "AT&T Services",
236 "organization" : "AT&T Services"
237 }
238 },
239 {
240 "::12.87.116.0/119" : {
241 "autonomous_system_number" : 7018,
242 "isp" : "AT&T Services",
243 "organization" : "AT&T Services"
244 }
245 },
246 {
247 "::12.87.118.0/119" : {
248 "autonomous_system_number" : 7018,
249 "isp" : "AT&T Services",
250 "organization" : "AT&T Worldnet Services"
251 }
252 },
253 {
254 "::12.87.120.0/117" : {
255 "autonomous_system_number" : 7018,
256 "isp" : "AT&T Services",
257 "organization" : "AT&T Services"
258 }
259 },
260 {
261 "::12.87.128.0/113" : {
262 "autonomous_system_number" : 7018,
263 "isp" : "AT&T Services",
264 "organization" : "AT&T Services"
265 }
266 },
267 {
268 "::12.88.0.0/109" : {
269 "autonomous_system_number" : 7018,
270 "isp" : "AT&T Services",
271 "organization" : "AT&T Services"
272 }
273 },
274 {
275 "::12.96.0.0/116" : {
276 "autonomous_system_number" : 7018,
277 "isp" : "AT&T Services",
278 "organization" : "AT&T Services"
279 }
280 },
281 {
282 "::12.96.16.0/120" : {
283 "autonomous_system_number" : 7018,
284 "isp" : "AT&T Services",
285 "organization" : "AT&T Services"
286 }
287 },
288 {
289 "::12.96.17.0/120" : {
290 "isp" : "AT&T Services",
291 "organization" : "AT&T Services"
292 }
293 },
294 {
295 "::12.96.18.0/119" : {
296 "isp" : "AT&T Services",
297 "organization" : "AT&T Services"
298 }
299 },
300 {
301 "::12.96.20.0/118" : {
302 "isp" : "AT&T Services",
303 "organization" : "AT&T Services"
304 }
305 },
306 {
307 "::12.96.24.0/117" : {
308 "isp" : "AT&T Services",
309 "organization" : "AT&T Services"
310 }
311 },
312 {
313 "::12.96.32.0/115" : {
314 "isp" : "AT&T Services",
315 "organization" : "AT&T Services"
316 }
317 },
318 {
319 "::12.96.64.0/114" : {
320 "isp" : "AT&T Services",
321 "organization" : "AT&T Services"
322 }
323 },
324 {
325 "::12.96.128.0/113" : {
326 "isp" : "AT&T Services",
327 "organization" : "AT&T Services"
328 }
329 },
330 {
331 "::12.97.0.0/112" : {
332 "isp" : "AT&T Services",
333 "organization" : "AT&T Services"
334 }
335 },
336 {
337 "::12.98.0.0/111" : {
338 "isp" : "AT&T Services",
339 "organization" : "AT&T Services"
340 }
341 },
342 {
343 "::12.100.0.0/110" : {
344 "isp" : "AT&T Services",
345 "organization" : "AT&T Services"
346 }
347 },
348 {
349 "::12.104.0.0/109" : {
350 "isp" : "AT&T Services",
351 "organization" : "AT&T Services"
352 }
353 },
354 {
355 "::12.112.0.0/108" : {
356 "isp" : "AT&T Services",
357 "organization" : "AT&T Services"
358 }
359 },
360 {
361 "::12.128.0.0/105" : {
362 "isp" : "AT&T Services",
363 "organization" : "AT&T Services"
364 }
365 },
366 {
367 "::15.0.0.0/104" : {
368 "autonomous_system_number" : 71,
369 "autonomous_system_organization" : "Hewlett-Packard Company",
370 "isp" : "Hewlett-Packard Company",
371 "organization" : "Hewlett-Packard Company"
372 }
373 },
374 {
375 "::16.0.0.0/104" : {
376 "autonomous_system_number" : 71,
377 "autonomous_system_organization" : "Hewlett-Packard Company",
378 "isp" : "Hewlett-Packard Company",
379 "organization" : "Hewlett-Packard Company"
380 }
381 },
382 {
383 "::17.0.0.0/104" : {
384 "isp" : "Apple",
385 "organization" : "Apple"
386 }
387 },
388 {
389 "::18.0.0.0/104" : {
390 "autonomous_system_number" : 3,
391 "autonomous_system_organization" : "Massachusetts Institute of Technology",
392 "isp" : "Massachusetts Institute of Technology",
393 "organization" : "Massachusetts Institute of Technology"
394 }
395 },
396 {
397 "::23.32.0.0/107" : {
398 "autonomous_system_number" : 35994,
399 "autonomous_system_organization" : "Akamai Technologies, Inc.",
400 "isp" : "Akamai Technologies",
401 "organization" : "Akamai Technologies"
402 }
403 },
404 {
405 "::23.32.32.1/128" : {
406 "autonomous_system_number" : 262589,
407 "autonomous_system_organization" : "INTERNEXA Brasil Operadora de Telecomunicações S.A",
408 "isp" : "INTERNEXA Brasil Operadora de Telecomunicações S.A",
409 "organization" : "INTERNEXA Brasil Operadora de Telecomunicações S.A"
410 }
411 },
412 {
413 "::23.192.0.0/107" : {
414 "autonomous_system_number" : 35994,
415 "autonomous_system_organization" : "Akamai Technologies, Inc.",
416 "isp" : "Akamai Technologies",
417 "organization" : "Akamai Technologies"
418 }
419 },
420 {
421 "::24.38.243.141/128" : {
422 "organization" : "LAWN MULLEN & GOOD INTERNATIONAL"
423 }
424 },
425 {
426 "::27.0.16.0/116" : {
427 "isp" : "GLBB"
428 }
429 },
430 {
431 "::27.192.0.0/107" : {
432 "autonomous_system_number" : 4837,
433 "autonomous_system_organization" : "CNCGROUP China169 Backbone",
434 "isp" : "China Unicom Liaoning",
435 "organization" : "China Unicom Liaoning"
436 }
437 },
438 {
439 "::31.64.0.0/106" : {
440 "autonomous_system_number" : 12576,
441 "autonomous_system_organization" : "Orange Personal Communications Services"
442 }
443 },
444 {
445 "::31.224.0.0/107" : {
446 "autonomous_system_number" : 3320,
447 "autonomous_system_organization" : "Deutsche Telekom AG",
448 "isp" : "Deutsche Telekom AG",
449 "organization" : "Deutsche Telekom AG"
450 }
451 },
452 {
453 "::32.0.0.0/106" : {
454 "organization" : "AT&T Wireless"
455 }
456 },
457 {
458 "::32.64.0.0/119" : {
459 "organization" : "AT&T Wireless"
460 }
461 },
462 {
463 "::32.64.2.0/120" : {
464 "organization" : "AT&T Synaptic Cloud Hosting"
465 }
466 },
467 {
468 "::32.64.3.0/120" : {
469 "organization" : "AT&T Wireless"
470 }
471 },
472 {
473 "::32.64.4.0/119" : {
474 "organization" : "AT&T Wireless"
475 }
476 },
477 {
478 "::32.64.6.0/120" : {
479 "organization" : "AT&T Synaptic Cloud Hosting"
480 }
481 },
482 {
483 "::32.64.7.0/120" : {
484 "organization" : "AT&T Wireless"
485 }
486 },
487 {
488 "::32.64.8.0/120" : {
489 "organization" : "AT&T Synaptic Cloud Hosting"
490 }
491 },
492 {
493 "::32.64.9.0/120" : {
494 "organization" : "AT&T Wireless"
495 }
496 },
497 {
498 "::32.64.10.0/120" : {
499 "organization" : "AT&T Wireless"
500 }
501 },
502 {
503 "::32.64.11.0/120" : {
504 "organization" : "AT&T Synaptic Cloud Hosting"
505 }
506 },
507 {
508 "::32.64.12.0/120" : {
509 "organization" : "AT&T Wireless"
510 }
511 },
512 {
513 "::32.64.13.0/120" : {
514 "organization" : "AT&T Synaptic Cloud Hosting"
515 }
516 },
517 {
518 "::32.64.14.0/119" : {
519 "organization" : "AT&T Synaptic Cloud Hosting"
520 }
521 },
522 {
523 "::32.64.16.0/120" : {
524 "organization" : "AT&T Synaptic Cloud Hosting"
525 }
526 },
527 {
528 "::32.64.17.0/120" : {
529 "organization" : "AT&T Wireless"
530 }
531 },
532 {
533 "::32.64.18.0/119" : {
534 "organization" : "AT&T Wireless"
535 }
536 },
537 {
538 "::32.64.20.0/120" : {
539 "organization" : "AT&T Wireless"
540 }
541 },
542 {
543 "::32.64.21.0/120" : {
544 "organization" : "AT&T Synaptic Cloud Hosting"
545 }
546 },
547 {
548 "::32.64.22.0/119" : {
549 "organization" : "AT&T Wireless"
550 }
551 },
552 {
553 "::32.64.24.0/120" : {
554 "organization" : "AT&T Wireless"
555 }
556 },
557 {
558 "::32.64.25.0/120" : {
559 "organization" : "AT&T Synaptic Cloud Hosting"
560 }
561 },
562 {
563 "::32.64.26.0/120" : {
564 "organization" : "AT&T Wireless"
565 }
566 },
567 {
568 "::32.64.27.0/120" : {
569 "organization" : "AT&T Synaptic Cloud Hosting"
570 }
571 },
572 {
573 "::32.64.28.0/120" : {
574 "organization" : "AT&T Wireless"
575 }
576 },
577 {
578 "::32.64.29.0/120" : {
579 "organization" : "AT&T Synaptic Cloud Hosting"
580 }
581 },
582 {
583 "::32.64.30.0/120" : {
584 "organization" : "AT&T Wireless"
585 }
586 },
587 {
588 "::32.64.31.0/120" : {
589 "organization" : "AT&T Synaptic Cloud Hosting"
590 }
591 },
592 {
593 "::32.64.32.0/119" : {
594 "organization" : "AT&T Wireless"
595 }
596 },
597 {
598 "::32.64.34.0/120" : {
599 "organization" : "AT&T Synaptic Cloud Hosting"
600 }
601 },
602 {
603 "::32.64.35.0/120" : {
604 "organization" : "AT&T Wireless"
605 }
606 },
607 {
608 "::32.64.36.0/120" : {
609 "organization" : "AT&T Synaptic Cloud Hosting"
610 }
611 },
612 {
613 "::32.64.37.0/120" : {
614 "organization" : "AT&T Wireless"
615 }
616 },
617 {
618 "::32.64.38.0/119" : {
619 "organization" : "AT&T Wireless"
620 }
621 },
622 {
623 "::32.64.40.0/120" : {
624 "organization" : "AT&T Synaptic Cloud Hosting"
625 }
626 },
627 {
628 "::32.64.41.0/120" : {
629 "organization" : "AT&T Wireless"
630 }
631 },
632 {
633 "::32.64.42.0/119" : {
634 "organization" : "AT&T Wireless"
635 }
636 },
637 {
638 "::32.64.44.0/119" : {
639 "organization" : "AT&T Wireless"
640 }
641 },
642 {
643 "::32.64.46.0/120" : {
644 "organization" : "AT&T Synaptic Cloud Hosting"
645 }
646 },
647 {
648 "::32.64.47.0/120" : {
649 "organization" : "AT&T Wireless"
650 }
651 },
652 {
653 "::32.64.48.0/120" : {
654 "organization" : "AT&T Synaptic Cloud Hosting"
655 }
656 },
657 {
658 "::32.64.49.0/120" : {
659 "organization" : "AT&T Wireless"
660 }
661 },
662 {
663 "::32.64.50.0/119" : {
664 "organization" : "AT&T Wireless"
665 }
666 },
667 {
668 "::32.64.52.0/118" : {
669 "organization" : "AT&T Wireless"
670 }
671 },
672 {
673 "::32.64.56.0/118" : {
674 "organization" : "AT&T Wireless"
675 }
676 },
677 {
678 "::32.64.60.0/120" : {
679 "organization" : "AT&T Synaptic Cloud Hosting"
680 }
681 },
682 {
683 "::32.64.61.0/120" : {
684 "organization" : "AT&T Wireless"
685 }
686 },
687 {
688 "::32.64.62.0/120" : {
689 "organization" : "AT&T Wireless"
690 }
691 },
692 {
693 "::32.64.63.0/120" : {
694 "organization" : "AT&T Synaptic Cloud Hosting"
695 }
696 },
697 {
698 "::32.64.64.0/119" : {
699 "organization" : "AT&T Wireless"
700 }
701 },
702 {
703 "::32.64.66.0/120" : {
704 "organization" : "AT&T Synaptic Cloud Hosting"
705 }
706 },
707 {
708 "::32.64.67.0/120" : {
709 "organization" : "AT&T Wireless"
710 }
711 },
712 {
713 "::32.64.68.0/118" : {
714 "organization" : "AT&T Wireless"
715 }
716 },
717 {
718 "::32.64.72.0/119" : {
719 "organization" : "AT&T Synaptic Cloud Hosting"
720 }
721 },
722 {
723 "::32.64.74.0/120" : {
724 "organization" : "AT&T Wireless"
725 }
726 },
727 {
728 "::32.64.75.0/120" : {
729 "organization" : "AT&T Synaptic Cloud Hosting"
730 }
731 },
732 {
733 "::32.64.76.0/118" : {
734 "organization" : "AT&T Wireless"
735 }
736 },
737 {
738 "::32.64.80.0/119" : {
739 "organization" : "AT&T Synaptic Cloud Hosting"
740 }
741 },
742 {
743 "::32.64.82.0/119" : {
744 "organization" : "AT&T Wireless"
745 }
746 },
747 {
748 "::32.64.84.0/120" : {
749 "organization" : "AT&T Wireless"
750 }
751 },
752 {
753 "::32.64.85.0/120" : {
754 "organization" : "AT&T Synaptic Cloud Hosting"
755 }
756 },
757 {
758 "::32.64.86.0/119" : {
759 "organization" : "AT&T Synaptic Cloud Hosting"
760 }
761 },
762 {
763 "::32.64.88.0/119" : {
764 "organization" : "AT&T Synaptic Cloud Hosting"
765 }
766 },
767 {
768 "::32.64.90.0/119" : {
769 "organization" : "AT&T Wireless"
770 }
771 },
772 {
773 "::32.64.92.0/118" : {
774 "organization" : "AT&T Wireless"
775 }
776 },
777 {
778 "::32.64.96.0/118" : {
779 "organization" : "AT&T Wireless"
780 }
781 },
782 {
783 "::32.64.100.0/120" : {
784 "organization" : "AT&T Synaptic Cloud Hosting"
785 }
786 },
787 {
788 "::32.64.101.0/120" : {
789 "organization" : "AT&T Wireless"
790 }
791 },
792 {
793 "::32.64.102.0/120" : {
794 "organization" : "AT&T Wireless"
795 }
796 },
797 {
798 "::32.64.103.0/120" : {
799 "organization" : "AT&T Synaptic Cloud Hosting"
800 }
801 },
802 {
803 "::32.64.104.0/119" : {
804 "organization" : "AT&T Wireless"
805 }
806 },
807 {
808 "::32.64.106.0/119" : {
809 "organization" : "AT&T Synaptic Cloud Hosting"
810 }
811 },
812 {
813 "::32.64.108.0/120" : {
814 "organization" : "AT&T Wireless"
815 }
816 },
817 {
818 "::32.64.109.0/120" : {
819 "organization" : "AT&T Synaptic Cloud Hosting"
820 }
821 },
822 {
823 "::32.64.110.0/120" : {
824 "organization" : "AT&T Synaptic Cloud Hosting"
825 }
826 },
827 {
828 "::32.64.111.0/120" : {
829 "organization" : "AT&T Wireless"
830 }
831 },
832 {
833 "::32.64.112.0/117" : {
834 "organization" : "AT&T Wireless"
835 }
836 },
837 {
838 "::32.64.120.0/118" : {
839 "organization" : "AT&T Wireless"
840 }
841 },
842 {
843 "::32.64.124.0/120" : {
844 "organization" : "AT&T Wireless"
845 }
846 },
847 {
848 "::32.64.125.0/120" : {
849 "organization" : "AT&T Synaptic Cloud Hosting"
850 }
851 },
852 {
853 "::32.64.126.0/120" : {
854 "organization" : "AT&T Wireless"
855 }
856 },
857 {
858 "::32.64.127.0/120" : {
859 "organization" : "AT&T Synaptic Cloud Hosting"
860 }
861 },
862 {
863 "::32.64.128.0/117" : {
864 "organization" : "AT&T Wireless"
865 }
866 },
867 {
868 "::32.64.136.0/118" : {
869 "organization" : "AT&T Wireless"
870 }
871 },
872 {
873 "::32.64.140.0/120" : {
874 "organization" : "AT&T Wireless"
875 }
876 },
877 {
878 "::32.64.141.0/120" : {
879 "organization" : "AT&T Synaptic Cloud Hosting"
880 }
881 },
882 {
883 "::32.64.142.0/119" : {
884 "organization" : "AT&T Wireless"
885 }
886 },
887 {
888 "::32.64.144.0/120" : {
889 "organization" : "AT&T Wireless"
890 }
891 },
892 {
893 "::32.64.145.0/120" : {
894 "organization" : "AT&T Synaptic Cloud Hosting"
895 }
896 },
897 {
898 "::32.64.146.0/119" : {
899 "organization" : "AT&T Synaptic Cloud Hosting"
900 }
901 },
902 {
903 "::32.64.148.0/120" : {
904 "organization" : "AT&T Wireless"
905 }
906 },
907 {
908 "::32.64.149.0/120" : {
909 "organization" : "AT&T Synaptic Cloud Hosting"
910 }
911 },
912 {
913 "::32.64.150.0/119" : {
914 "organization" : "AT&T Synaptic Cloud Hosting"
915 }
916 },
917 {
918 "::32.64.152.0/119" : {
919 "organization" : "AT&T Wireless"
920 }
921 },
922 {
923 "::32.64.154.0/120" : {
924 "organization" : "AT&T Wireless"
925 }
926 },
927 {
928 "::32.64.155.0/120" : {
929 "organization" : "AT&T Synaptic Cloud Hosting"
930 }
931 },
932 {
933 "::32.64.156.0/120" : {
934 "organization" : "AT&T Wireless"
935 }
936 },
937 {
938 "::32.64.157.0/120" : {
939 "organization" : "AT&T Synaptic Cloud Hosting"
940 }
941 },
942 {
943 "::32.64.158.0/120" : {
944 "organization" : "AT&T Synaptic Cloud Hosting"
945 }
946 },
947 {
948 "::32.64.159.0/120" : {
949 "organization" : "AT&T Wireless"
950 }
951 },
952 {
953 "::32.64.160.0/120" : {
954 "organization" : "AT&T Wireless"
955 }
956 },
957 {
958 "::32.64.161.0/120" : {
959 "organization" : "AT&T Synaptic Cloud Hosting"
960 }
961 },
962 {
963 "::32.64.162.0/119" : {
964 "organization" : "AT&T Wireless"
965 }
966 },
967 {
968 "::32.64.164.0/118" : {
969 "organization" : "AT&T Wireless"
970 }
971 },
972 {
973 "::32.64.168.0/120" : {
974 "organization" : "AT&T Wireless"
975 }
976 },
977 {
978 "::32.64.169.0/120" : {
979 "organization" : "AT&T Synaptic Cloud Hosting"
980 }
981 },
982 {
983 "::32.64.170.0/119" : {
984 "organization" : "AT&T Wireless"
985 }
986 },
987 {
988 "::32.64.172.0/118" : {
989 "organization" : "AT&T Wireless"
990 }
991 },
992 {
993 "::32.64.176.0/118" : {
994 "organization" : "AT&T Wireless"
995 }
996 },
997 {
998 "::32.64.180.0/119" : {
999 "organization" : "AT&T Wireless"
1000 }
1001 },
1002 {
1003 "::32.64.182.0/120" : {
1004 "organization" : "AT&T Wireless"
1005 }
1006 },
1007 {
1008 "::32.64.183.0/120" : {
1009 "organization" : "AT&T Synaptic Cloud Hosting"
1010 }
1011 },
1012 {
1013 "::32.64.184.0/119" : {
1014 "organization" : "AT&T Synaptic Cloud Hosting"
1015 }
1016 },
1017 {
1018 "::32.64.186.0/120" : {
1019 "organization" : "AT&T Synaptic Cloud Hosting"
1020 }
1021 },
1022 {
1023 "::32.64.187.0/120" : {
1024 "organization" : "AT&T Wireless"
1025 }
1026 },
1027 {
1028 "::32.64.188.0/119" : {
1029 "organization" : "AT&T Synaptic Cloud Hosting"
1030 }
1031 },
1032 {
1033 "::32.64.190.0/119" : {
1034 "organization" : "AT&T Wireless"
1035 }
1036 },
1037 {
1038 "::32.64.192.0/118" : {
1039 "organization" : "AT&T Wireless"
1040 }
1041 },
1042 {
1043 "::32.64.196.0/120" : {
1044 "organization" : "AT&T Synaptic Cloud Hosting"
1045 }
1046 },
1047 {
1048 "::32.64.197.0/120" : {
1049 "organization" : "AT&T Wireless"
1050 }
1051 },
1052 {
1053 "::32.64.198.0/119" : {
1054 "organization" : "AT&T Synaptic Cloud Hosting"
1055 }
1056 },
1057 {
1058 "::32.64.200.0/117" : {
1059 "organization" : "AT&T Wireless"
1060 }
1061 },
1062 {
1063 "::32.64.208.0/120" : {
1064 "organization" : "AT&T Synaptic Cloud Hosting"
1065 }
1066 },
1067 {
1068 "::32.64.209.0/120" : {
1069 "organization" : "AT&T Wireless"
1070 }
1071 },
1072 {
1073 "::32.64.210.0/120" : {
1074 "organization" : "AT&T Synaptic Cloud Hosting"
1075 }
1076 },
1077 {
1078 "::32.64.211.0/120" : {
1079 "organization" : "AT&T Wireless"
1080 }
1081 },
1082 {
1083 "::32.64.212.0/120" : {
1084 "organization" : "AT&T Synaptic Cloud Hosting"
1085 }
1086 },
1087 {
1088 "::32.64.213.0/120" : {
1089 "organization" : "AT&T Wireless"
1090 }
1091 },
1092 {
1093 "::32.64.214.0/119" : {
1094 "organization" : "AT&T Wireless"
1095 }
1096 },
1097 {
1098 "::32.64.216.0/120" : {
1099 "organization" : "AT&T Wireless"
1100 }
1101 },
1102 {
1103 "::32.64.217.0/120" : {
1104 "organization" : "AT&T Synaptic Cloud Hosting"
1105 }
1106 },
1107 {
1108 "::32.64.218.0/120" : {
1109 "organization" : "AT&T Wireless"
1110 }
1111 },
1112 {
1113 "::32.64.219.0/120" : {
1114 "organization" : "AT&T Synaptic Cloud Hosting"
1115 }
1116 },
1117 {
1118 "::32.64.220.0/120" : {
1119 "organization" : "AT&T Synaptic Cloud Hosting"
1120 }
1121 },
1122 {
1123 "::32.64.221.0/120" : {
1124 "organization" : "AT&T Wireless"
1125 }
1126 },
1127 {
1128 "::32.64.222.0/119" : {
1129 "organization" : "AT&T Wireless"
1130 }
1131 },
1132 {
1133 "::32.64.224.0/118" : {
1134 "organization" : "AT&T Wireless"
1135 }
1136 },
1137 {
1138 "::32.64.228.0/119" : {
1139 "organization" : "AT&T Synaptic Cloud Hosting"
1140 }
1141 },
1142 {
1143 "::32.64.230.0/119" : {
1144 "organization" : "AT&T Wireless"
1145 }
1146 },
1147 {
1148 "::32.64.232.0/119" : {
1149 "organization" : "AT&T Wireless"
1150 }
1151 },
1152 {
1153 "::32.64.234.0/120" : {
1154 "organization" : "AT&T Wireless"
1155 }
1156 },
1157 {
1158 "::32.64.235.0/120" : {
1159 "organization" : "AT&T Synaptic Cloud Hosting"
1160 }
1161 },
1162 {
1163 "::32.64.236.0/119" : {
1164 "organization" : "AT&T Synaptic Cloud Hosting"
1165 }
1166 },
1167 {
1168 "::32.64.238.0/120" : {
1169 "organization" : "AT&T Wireless"
1170 }
1171 },
1172 {
1173 "::32.64.239.0/120" : {
1174 "organization" : "AT&T Synaptic Cloud Hosting"
1175 }
1176 },
1177 {
1178 "::32.64.240.0/119" : {
1179 "organization" : "AT&T Synaptic Cloud Hosting"
1180 }
1181 },
1182 {
1183 "::32.64.242.0/120" : {
1184 "organization" : "AT&T Wireless"
1185 }
1186 },
1187 {
1188 "::32.64.243.0/120" : {
1189 "organization" : "AT&T Synaptic Cloud Hosting"
1190 }
1191 },
1192 {
1193 "::32.64.244.0/120" : {
1194 "organization" : "AT&T Wireless"
1195 }
1196 },
1197 {
1198 "::32.64.245.0/120" : {
1199 "organization" : "AT&T Synaptic Cloud Hosting"
1200 }
1201 },
1202 {
1203 "::32.64.246.0/120" : {
1204 "organization" : "AT&T Wireless"
1205 }
1206 },
1207 {
1208 "::32.64.247.0/120" : {
1209 "organization" : "AT&T Synaptic Cloud Hosting"
1210 }
1211 },
1212 {
1213 "::32.64.248.0/120" : {
1214 "organization" : "AT&T Wireless"
1215 }
1216 },
1217 {
1218 "::32.64.249.0/120" : {
1219 "organization" : "AT&T Synaptic Cloud Hosting"
1220 }
1221 },
1222 {
1223 "::32.64.250.0/119" : {
1224 "organization" : "AT&T Wireless"
1225 }
1226 },
1227 {
1228 "::32.64.252.0/118" : {
1229 "organization" : "AT&T Synaptic Cloud Hosting"
1230 }
1231 },
1232 {
1233 "::32.65.0.0/112" : {
1234 "organization" : "AT&T Wireless"
1235 }
1236 },
1237 {
1238 "::32.66.0.0/111" : {
1239 "organization" : "AT&T Wireless"
1240 }
1241 },
1242 {
1243 "::32.68.0.0/110" : {
1244 "organization" : "AT&T Wireless"
1245 }
1246 },
1247 {
1248 "::32.72.0.0/109" : {
1249 "organization" : "AT&T Wireless"
1250 }
1251 },
1252 {
1253 "::32.80.0.0/108" : {
1254 "organization" : "AT&T Wireless"
1255 }
1256 },
1257 {
1258 "::32.96.0.0/107" : {
1259 "organization" : "AT&T Wireless"
1260 }
1261 },
1262 {
1263 "::32.128.0.0/105" : {
1264 "organization" : "AT&T Wireless"
1265 }
1266 },
1267 {
1268 "::35.0.0.0/105" : {
1269 "autonomous_system_number" : 237,
1270 "autonomous_system_organization" : "Merit Network Inc.",
1271 "isp" : "Merit Network",
1272 "organization" : "Merit Network"
1273 }
1274 },
1275 {
1276 "::35.128.0.0/107" : {
1277 "autonomous_system_number" : 237,
1278 "autonomous_system_organization" : "Merit Network Inc.",
1279 "isp" : "Merit Network",
1280 "organization" : "Merit Network"
1281 }
1282 },
1283 {
1284 "::36.192.0.0/107" : {
1285 "autonomous_system_number" : 9394,
1286 "autonomous_system_organization" : "China TieTong Telecommunications Corporation",
1287 "isp" : "China TieTong",
1288 "organization" : "China TieTong"
1289 }
1290 },
1291 {
1292 "::37.43.3.0/120" : {
1293 "isp" : "PFA Mihalascu Viorel"
1294 }
1295 },
1296 {
1297 "::37.60.16.0/117" : {
1298 "organization" : "Metroset"
1299 }
1300 },
1301 {
1302 "::37.110.0.0/115" : {
1303 "organization" : "National Cable Networks"
1304 }
1305 },
1306 {
1307 "::37.110.32.0/117" : {
1308 "organization" : "National Cable Networks"
1309 }
1310 },
1311 {
1312 "::37.110.40.0/120" : {
1313 "organization" : "National Cable Networks"
1314 }
1315 },
1316 {
1317 "::37.110.41.0/124" : {
1318 "organization" : "National Cable Networks"
1319 }
1320 },
1321 {
1322 "::37.110.41.16/125" : {
1323 "organization" : "National Cable Networks"
1324 }
1325 },
1326 {
1327 "::37.110.41.24/128" : {
1328 "organization" : "Onlime"
1329 }
1330 },
1331 {
1332 "::37.110.41.25/128" : {
1333 "organization" : "National Cable Networks"
1334 }
1335 },
1336 {
1337 "::37.110.41.26/127" : {
1338 "organization" : "National Cable Networks"
1339 }
1340 },
1341 {
1342 "::37.110.41.28/126" : {
1343 "organization" : "National Cable Networks"
1344 }
1345 },
1346 {
1347 "::37.110.41.32/123" : {
1348 "organization" : "National Cable Networks"
1349 }
1350 },
1351 {
1352 "::37.110.41.64/122" : {
1353 "organization" : "National Cable Networks"
1354 }
1355 },
1356 {
1357 "::37.110.41.128/121" : {
1358 "organization" : "National Cable Networks"
1359 }
1360 },
1361 {
1362 "::37.110.42.0/119" : {
1363 "organization" : "National Cable Networks"
1364 }
1365 },
1366 {
1367 "::37.110.44.0/118" : {
1368 "organization" : "National Cable Networks"
1369 }
1370 },
1371 {
1372 "::37.110.48.0/116" : {
1373 "organization" : "National Cable Networks"
1374 }
1375 },
1376 {
1377 "::37.110.64.0/114" : {
1378 "organization" : "National Cable Networks"
1379 }
1380 },
1381 {
1382 "::38.0.0.0/106" : {
1383 "autonomous_system_number" : 174,
1384 "autonomous_system_organization" : "Cogent Communications",
1385 "isp" : "Cogent Communications",
1386 "organization" : "Cogent Communications"
1387 }
1388 },
1389 {
1390 "::38.64.0.0/109" : {
1391 "autonomous_system_number" : 174,
1392 "autonomous_system_organization" : "Cogent Communications",
1393 "isp" : "Cogent Communications",
1394 "organization" : "Cogent Communications"
1395 }
1396 },
1397 {
1398 "::38.72.0.0/112" : {
1399 "autonomous_system_number" : 174,
1400 "autonomous_system_organization" : "Cogent Communications",
1401 "isp" : "Cogent Communications",
1402 "organization" : "Cogent Communications"
1403 }
1404 },
1405 {
1406 "::38.73.0.0/113" : {
1407 "autonomous_system_number" : 174,
1408 "autonomous_system_organization" : "Cogent Communications",
1409 "isp" : "Cogent Communications",
1410 "organization" : "Cogent Communications"
1411 }
1412 },
1413 {
1414 "::38.73.128.0/119" : {
1415 "autonomous_system_number" : 174,
1416 "autonomous_system_organization" : "Cogent Communications",
1417 "isp" : "Cogent Communications",
1418 "organization" : "Cogent Communications"
1419 }
1420 },
1421 {
1422 "::38.73.130.0/120" : {
1423 "autonomous_system_number" : 174,
1424 "autonomous_system_organization" : "Cogent Communications",
1425 "isp" : "Cogent Communications",
1426 "organization" : "SUMO FIBER"
1427 }
1428 },
1429 {
1430 "::38.73.131.0/120" : {
1431 "autonomous_system_number" : 174,
1432 "autonomous_system_organization" : "Cogent Communications",
1433 "isp" : "Cogent Communications",
1434 "organization" : "Cogent Communications"
1435 }
1436 },
1437 {
1438 "::38.73.132.0/119" : {
1439 "autonomous_system_number" : 174,
1440 "autonomous_system_organization" : "Cogent Communications",
1441 "isp" : "Cogent Communications",
1442 "organization" : "Cogent Communications"
1443 }
1444 },
1445 {
1446 "::38.73.134.0/119" : {
1447 "autonomous_system_number" : 174,
1448 "autonomous_system_organization" : "Cogent Communications",
1449 "isp" : "Cogent Communications",
1450 "organization" : "SUMO FIBER"
1451 }
1452 },
1453 {
1454 "::38.73.136.0/117" : {
1455 "autonomous_system_number" : 174,
1456 "autonomous_system_organization" : "Cogent Communications",
1457 "isp" : "Cogent Communications",
1458 "organization" : "Cogent Communications"
1459 }
1460 },
1461 {
1462 "::38.73.144.0/116" : {
1463 "autonomous_system_number" : 174,
1464 "autonomous_system_organization" : "Cogent Communications",
1465 "isp" : "Cogent Communications",
1466 "organization" : "Cogent Communications"
1467 }
1468 },
1469 {
1470 "::38.73.160.0/115" : {
1471 "autonomous_system_number" : 174,
1472 "autonomous_system_organization" : "Cogent Communications",
1473 "isp" : "Cogent Communications",
1474 "organization" : "Cogent Communications"
1475 }
1476 },
1477 {
1478 "::38.73.192.0/114" : {
1479 "autonomous_system_number" : 174,
1480 "autonomous_system_organization" : "Cogent Communications",
1481 "isp" : "Cogent Communications",
1482 "organization" : "Cogent Communications"
1483 }
1484 },
1485 {
1486 "::38.74.0.0/111" : {
1487 "autonomous_system_number" : 174,
1488 "autonomous_system_organization" : "Cogent Communications",
1489 "isp" : "Cogent Communications",
1490 "organization" : "Cogent Communications"
1491 }
1492 },
1493 {
1494 "::38.76.0.0/110" : {
1495 "autonomous_system_number" : 174,
1496 "autonomous_system_organization" : "Cogent Communications",
1497 "isp" : "Cogent Communications",
1498 "organization" : "Cogent Communications"
1499 }
1500 },
1501 {
1502 "::38.80.0.0/108" : {
1503 "autonomous_system_number" : 174,
1504 "autonomous_system_organization" : "Cogent Communications",
1505 "isp" : "Cogent Communications",
1506 "organization" : "Cogent Communications"
1507 }
1508 },
1509 {
1510 "::38.96.0.0/109" : {
1511 "autonomous_system_number" : 174,
1512 "autonomous_system_organization" : "Cogent Communications",
1513 "isp" : "Cogent Communications",
1514 "organization" : "Cogent Communications"
1515 }
1516 },
1517 {
1518 "::38.104.0.0/112" : {
1519 "autonomous_system_number" : 174,
1520 "autonomous_system_organization" : "Cogent Communications",
1521 "isp" : "Cogent Communications",
1522 "organization" : "Cogent Communications"
1523 }
1524 },
1525 {
1526 "::38.105.0.0/122" : {
1527 "autonomous_system_number" : 174,
1528 "autonomous_system_organization" : "Cogent Communications",
1529 "isp" : "Cogent Communications",
1530 "organization" : "Cogent Communications"
1531 }
1532 },
1533 {
1534 "::38.105.0.64/123" : {
1535 "autonomous_system_number" : 174,
1536 "autonomous_system_organization" : "Cogent Communications",
1537 "isp" : "Cogent Communications",
1538 "organization" : "GHD"
1539 }
1540 },
1541 {
1542 "::38.105.0.96/123" : {
1543 "autonomous_system_number" : 174,
1544 "autonomous_system_organization" : "Cogent Communications",
1545 "isp" : "Cogent Communications",
1546 "organization" : "Cogent Communications"
1547 }
1548 },
1549 {
1550 "::38.105.0.128/121" : {
1551 "autonomous_system_number" : 174,
1552 "autonomous_system_organization" : "Cogent Communications",
1553 "isp" : "Cogent Communications",
1554 "organization" : "Cogent Communications"
1555 }
1556 },
1557 {
1558 "::38.105.1.0/120" : {
1559 "autonomous_system_number" : 174,
1560 "autonomous_system_organization" : "Cogent Communications",
1561 "isp" : "Cogent Communications",
1562 "organization" : "Cogent Communications"
1563 }
1564 },
1565 {
1566 "::38.105.2.0/119" : {
1567 "autonomous_system_number" : 174,
1568 "autonomous_system_organization" : "Cogent Communications",
1569 "isp" : "Cogent Communications",
1570 "organization" : "Cogent Communications"
1571 }
1572 },
1573 {
1574 "::38.105.4.0/118" : {
1575 "autonomous_system_number" : 174,
1576 "autonomous_system_organization" : "Cogent Communications",
1577 "isp" : "Cogent Communications",
1578 "organization" : "Cogent Communications"
1579 }
1580 },
1581 {
1582 "::38.105.8.0/117" : {
1583 "autonomous_system_number" : 174,
1584 "autonomous_system_organization" : "Cogent Communications",
1585 "isp" : "Cogent Communications",
1586 "organization" : "Cogent Communications"
1587 }
1588 },
1589 {
1590 "::38.105.16.0/116" : {
1591 "autonomous_system_number" : 174,
1592 "autonomous_system_organization" : "Cogent Communications",
1593 "isp" : "Cogent Communications",
1594 "organization" : "Cogent Communications"
1595 }
1596 },
1597 {
1598 "::38.105.32.0/115" : {
1599 "autonomous_system_number" : 174,
1600 "autonomous_system_organization" : "Cogent Communications",
1601 "isp" : "Cogent Communications",
1602 "organization" : "Cogent Communications"
1603 }
1604 },
1605 {
1606 "::38.105.64.0/114" : {
1607 "autonomous_system_number" : 174,
1608 "autonomous_system_organization" : "Cogent Communications",
1609 "isp" : "Cogent Communications",
1610 "organization" : "Cogent Communications"
1611 }
1612 },
1613 {
1614 "::38.105.128.0/113" : {
1615 "autonomous_system_number" : 174,
1616 "autonomous_system_organization" : "Cogent Communications",
1617 "isp" : "Cogent Communications",
1618 "organization" : "Cogent Communications"
1619 }
1620 },
1621 {
1622 "::38.106.0.0/111" : {
1623 "autonomous_system_number" : 174,
1624 "autonomous_system_organization" : "Cogent Communications",
1625 "isp" : "Cogent Communications",
1626 "organization" : "Cogent Communications"
1627 }
1628 },
1629 {
1630 "::38.108.0.0/114" : {
1631 "autonomous_system_number" : 174,
1632 "autonomous_system_organization" : "Cogent Communications",
1633 "isp" : "Cogent Communications",
1634 "organization" : "Cogent Communications"
1635 }
1636 },
1637 {
1638 "::38.108.64.0/116" : {
1639 "autonomous_system_number" : 174,
1640 "autonomous_system_organization" : "Cogent Communications",
1641 "isp" : "Cogent Communications",
1642 "organization" : "Cogent Communications"
1643 }
1644 },
1645 {
1646 "::38.108.80.0/124" : {
1647 "autonomous_system_number" : 174,
1648 "autonomous_system_organization" : "Cogent Communications",
1649 "isp" : "Cogent Communications",
1650 "organization" : "Cogent Communications"
1651 }
1652 },
1653 {
1654 "::38.108.80.16/125" : {
1655 "autonomous_system_number" : 174,
1656 "autonomous_system_organization" : "Cogent Communications",
1657 "isp" : "Cogent Communications",
1658 "organization" : "Cogent Communications"
1659 }
1660 },
1661 {
1662 "::38.108.80.24/126" : {
1663 "autonomous_system_number" : 174,
1664 "autonomous_system_organization" : "Cogent Communications",
1665 "isp" : "Cogent Communications",
1666 "organization" : "Cogent Communications"
1667 }
1668 },
1669 {
1670 "::38.108.80.28/127" : {
1671 "autonomous_system_number" : 174,
1672 "autonomous_system_organization" : "Cogent Communications",
1673 "isp" : "Cogent Communications",
1674 "organization" : "Cogent Communications"
1675 }
1676 },
1677 {
1678 "::38.108.80.30/128" : {
1679 "autonomous_system_number" : 174,
1680 "autonomous_system_organization" : "Cogent Communications",
1681 "isp" : "Cogent Communications",
1682 "organization" : "La Presse"
1683 }
1684 },
1685 {
1686 "::38.108.80.31/128" : {
1687 "autonomous_system_number" : 174,
1688 "autonomous_system_organization" : "Cogent Communications",
1689 "isp" : "Cogent Communications",
1690 "organization" : "Cogent Communications"
1691 }
1692 },
1693 {
1694 "::38.108.80.32/123" : {
1695 "autonomous_system_number" : 174,
1696 "autonomous_system_organization" : "Cogent Communications",
1697 "isp" : "Cogent Communications",
1698 "organization" : "Cogent Communications"
1699 }
1700 },
1701 {
1702 "::38.108.80.64/122" : {
1703 "autonomous_system_number" : 174,
1704 "autonomous_system_organization" : "Cogent Communications",
1705 "isp" : "Cogent Communications",
1706 "organization" : "Cogent Communications"
1707 }
1708 },
1709 {
1710 "::38.108.80.128/121" : {
1711 "autonomous_system_number" : 174,
1712 "autonomous_system_organization" : "Cogent Communications",
1713 "isp" : "Cogent Communications",
1714 "organization" : "Cogent Communications"
1715 }
1716 },
1717 {
1718 "::38.108.81.0/120" : {
1719 "autonomous_system_number" : 174,
1720 "autonomous_system_organization" : "Cogent Communications",
1721 "isp" : "Cogent Communications",
1722 "organization" : "Cogent Communications"
1723 }
1724 },
1725 {
1726 "::38.108.82.0/119" : {
1727 "autonomous_system_number" : 174,
1728 "autonomous_system_organization" : "Cogent Communications",
1729 "isp" : "Cogent Communications",
1730 "organization" : "Cogent Communications"
1731 }
1732 },
1733 {
1734 "::38.108.84.0/118" : {
1735 "autonomous_system_number" : 174,
1736 "autonomous_system_organization" : "Cogent Communications",
1737 "isp" : "Cogent Communications",
1738 "organization" : "Cogent Communications"
1739 }
1740 },
1741 {
1742 "::38.108.88.0/117" : {
1743 "autonomous_system_number" : 174,
1744 "autonomous_system_organization" : "Cogent Communications",
1745 "isp" : "Cogent Communications",
1746 "organization" : "Cogent Communications"
1747 }
1748 },
1749 {
1750 "::38.108.96.0/115" : {
1751 "autonomous_system_number" : 174,
1752 "autonomous_system_organization" : "Cogent Communications",
1753 "isp" : "Cogent Communications",
1754 "organization" : "Cogent Communications"
1755 }
1756 },
1757 {
1758 "::38.108.128.0/113" : {
1759 "autonomous_system_number" : 174,
1760 "autonomous_system_organization" : "Cogent Communications",
1761 "isp" : "Cogent Communications",
1762 "organization" : "Cogent Communications"
1763 }
1764 },
1765 {
1766 "::38.109.0.0/112" : {
1767 "autonomous_system_number" : 174,
1768 "autonomous_system_organization" : "Cogent Communications",
1769 "isp" : "Cogent Communications",
1770 "organization" : "Cogent Communications"
1771 }
1772 },
1773 {
1774 "::38.110.0.0/115" : {
1775 "autonomous_system_number" : 174,
1776 "autonomous_system_organization" : "Cogent Communications",
1777 "isp" : "Cogent Communications",
1778 "organization" : "Cogent Communications"
1779 }
1780 },
1781 {
1782 "::38.110.32.0/116" : {
1783 "autonomous_system_number" : 174,
1784 "autonomous_system_organization" : "Cogent Communications",
1785 "isp" : "Cogent Communications",
1786 "organization" : "Cogent Communications"
1787 }
1788 },
1789 {
1790 "::38.110.48.0/118" : {
1791 "autonomous_system_number" : 174,
1792 "autonomous_system_organization" : "Cogent Communications",
1793 "isp" : "Cogent Communications",
1794 "organization" : "Athena Broadband"
1795 }
1796 },
1797 {
1798 "::38.110.52.0/118" : {
1799 "autonomous_system_number" : 174,
1800 "autonomous_system_organization" : "Cogent Communications",
1801 "isp" : "Cogent Communications",
1802 "organization" : "Cogent Communications"
1803 }
1804 },
1805 {
1806 "::38.110.56.0/117" : {
1807 "autonomous_system_number" : 174,
1808 "autonomous_system_organization" : "Cogent Communications",
1809 "isp" : "Cogent Communications",
1810 "organization" : "Cogent Communications"
1811 }
1812 },
1813 {
1814 "::38.110.64.0/114" : {
1815 "autonomous_system_number" : 174,
1816 "autonomous_system_organization" : "Cogent Communications",
1817 "isp" : "Cogent Communications",
1818 "organization" : "Cogent Communications"
1819 }
1820 },
1821 {
1822 "::38.110.128.0/113" : {
1823 "autonomous_system_number" : 174,
1824 "autonomous_system_organization" : "Cogent Communications",
1825 "isp" : "Cogent Communications",
1826 "organization" : "Cogent Communications"
1827 }
1828 },
1829 {
1830 "::38.111.0.0/112" : {
1831 "autonomous_system_number" : 174,
1832 "autonomous_system_organization" : "Cogent Communications",
1833 "isp" : "Cogent Communications",
1834 "organization" : "Cogent Communications"
1835 }
1836 },
1837 {
1838 "::38.112.0.0/108" : {
1839 "autonomous_system_number" : 174,
1840 "autonomous_system_organization" : "Cogent Communications",
1841 "isp" : "Cogent Communications",
1842 "organization" : "Cogent Communications"
1843 }
1844 },
1845 {
1846 "::38.128.0.0/105" : {
1847 "autonomous_system_number" : 174,
1848 "autonomous_system_organization" : "Cogent Communications",
1849 "isp" : "Cogent Communications",
1850 "organization" : "Cogent Communications"
1851 }
1852 },
1853 {
1854 "::39.32.0.0/107" : {
1855 "autonomous_system_number" : 45595,
1856 "autonomous_system_organization" : "Pakistan Telecom Company Limited",
1857 "isp" : "PTCL",
1858 "organization" : "PTCL"
1859 }
1860 },
1861 {
1862 "::39.64.0.0/107" : {
1863 "autonomous_system_number" : 4837,
1864 "autonomous_system_organization" : "CNCGROUP China169 Backbone",
1865 "isp" : "China Unicom Liaoning",
1866 "organization" : "China Unicom Liaoning"
1867 }
1868 },
1869 {
1870 "::39.192.0.0/106" : {
1871 "autonomous_system_number" : 23693,
1872 "autonomous_system_organization" : "PT. Telekomunikasi Selular",
1873 "isp" : "Telkomsel",
1874 "organization" : "Telkomsel"
1875 }
1876 },
1877 {
1878 "::41.74.98.48/124" : {
1879 "organization" : "MapleTel"
1880 }
1881 },
1882 {
1883 "::41.112.0.0/108" : {
1884 "isp" : "MTN SA"
1885 }
1886 },
1887 {
1888 "::44.0.0.0/104" : {
1889 "autonomous_system_number" : 7377,
1890 "autonomous_system_organization" : "University of California at San Diego",
1891 "isp" : "University of California at San Diego",
1892 "organization" : "University of California at San Diego"
1893 }
1894 },
1895 {
1896 "::47.64.0.0/109" : {
1897 "isp" : "Vodafone D2 GmbH"
1898 }
1899 },
1900 {
1901 "::47.72.0.0/128" : {
1902 "isp" : "Vodafone New Zealand"
1903 }
1904 },
1905 {
1906 "::49.64.0.0/107" : {
1907 "autonomous_system_number" : 4134,
1908 "autonomous_system_organization" : "Chinanet",
1909 "isp" : "China Telecom",
1910 "organization" : "China Telecom"
1911 }
1912 },
1913 {
1914 "::50.73.224.133/128" : {
1915 "organization" : "iWiSP llc"
1916 }
1917 },
1918 {
1919 "::50.128.0.0/105" : {
1920 "autonomous_system_number" : 7922,
1921 "autonomous_system_organization" : "Comcast Cable Communications, Inc.",
1922 "isp" : "Comcast Cable",
1923 "organization" : "Comcast Cable"
1924 }
1925 },
1926 {
1927 "::53.0.0.0/104" : {
1928 "autonomous_system_number" : 31399,
1929 "autonomous_system_organization" : "Daimler Autonomous System",
1930 "isp" : "Daimler",
1931 "organization" : "Daimler"
1932 }
1933 },
1934 {
1935 "::55.0.0.0/104" : {
1936 "autonomous_system_number" : 721,
1937 "autonomous_system_organization" : "DoD Network Information Center"
1938 }
1939 },
1940 {
1941 "::57.0.0.0/104" : {
1942 "autonomous_system_number" : 2647,
1943 "autonomous_system_organization" : "SITA",
1944 "isp" : "SITA",
1945 "organization" : "SITA"
1946 }
1947 },
1948 {
1949 "::59.0.0.0/107" : {
1950 "autonomous_system_number" : 4766,
1951 "autonomous_system_organization" : "Korea Telecom",
1952 "isp" : "Korea Telecom",
1953 "organization" : "Korea Telecom"
1954 }
1955 },
1956 {
1957 "::60.64.0.0/106" : {
1958 "autonomous_system_number" : 17676,
1959 "autonomous_system_organization" : "Softbank BB Corp.",
1960 "isp" : "Softbank BB Corp",
1961 "organization" : "Softbank BB Corp"
1962 }
1963 },
1964 {
1965 "::60.128.0.0/107" : {
1966 "autonomous_system_number" : 17676,
1967 "autonomous_system_organization" : "Softbank BB Corp.",
1968 "isp" : "Softbank BB Corp",
1969 "organization" : "Softbank BB Corp"
1970 }
1971 },
1972 {
1973 "::62.7.87.0/120" : {
1974 "organization" : "Fibrestream Limited"
1975 }
1976 },
1977 {
1978 "::62.51.0.0/112" : {
1979 "isp" : "America Online"
1980 }
1981 },
1982 {
1983 "::62.67.0.0/112" : {
1984 "isp" : "Level 3 Communications",
1985 "organization" : "Level 3 Communications"
1986 }
1987 },
1988 {
1989 "::62.75.0.0/115" : {
1990 "isp" : "OTEGLOBE",
1991 "organization" : "OTEGLOBE"
1992 }
1993 },
1994 {
1995 "::62.82.202.128/125" : {
1996 "isp" : "Urania Telecom"
1997 }
1998 },
1999 {
2000 "::62.91.95.0/120" : {
2001 "isp" : "Bisping & Bisping, ISP and Citycarrier",
2002 "organization" : "Bisping & Bisping, ISP and Citycarrier"
2003 }
2004 },
2005 {
2006 "::62.91.96.0/119" : {
2007 "isp" : "Bisping & Bisping, ISP and Citycarrier",
2008 "organization" : "Bisping & Bisping, ISP and Citycarrier"
2009 }
2010 },
2011 {
2012 "::62.91.98.0/120" : {
2013 "isp" : "Bisping & Bisping, ISP and Citycarrier",
2014 "organization" : "Bisping & Bisping, ISP and Citycarrier"
2015 }
2016 },
2017 {
2018 "::62.107.0.0/112" : {
2019 "isp" : "Telia Stofa A/S",
2020 "organization" : "Telia Stofa A/S"
2021 }
2022 },
2023 {
2024 "::62.178.0.0/111" : {
2025 "isp" : "UPC Austria GmbH",
2026 "organization" : "UPC Austria GmbH"
2027 }
2028 },
2029 {
2030 "::62.254.186.96/123" : {
2031 "isp" : "East Renfrewshire Council Barrhead Library",
2032 "organization" : "East Renfrewshire Council Barrhead Library"
2033 }
2034 },
2035 {
2036 "::63.147.126.103/128" : {
2037 "isp" : "SuperDuper Telecommunications Network"
2038 }
2039 },
2040 {
2041 "::64.17.248.0/118" : {
2042 "autonomous_system_number" : 33224
2043 }
2044 },
2045 {
2046 "::64.17.252.0/119" : {
2047 "autonomous_system_number" : 33224
2048 }
2049 },
2050 {
2051 "::64.17.254.0/121" : {
2052 "autonomous_system_number" : 33224
2053 }
2054 },
2055 {
2056 "::64.17.254.128/122" : {
2057 "autonomous_system_number" : 33224
2058 }
2059 },
2060 {
2061 "::64.17.254.192/124" : {
2062 "autonomous_system_number" : 33224
2063 }
2064 },
2065 {
2066 "::64.17.254.208/125" : {
2067 "autonomous_system_number" : 33224
2068 }
2069 },
2070 {
2071 "::64.17.254.216/125" : {
2072 "autonomous_system_number" : 33224,
2073 "isp" : "Towerstream I",
2074 "organization" : "Karlin Peebles LLP"
2075 }
2076 },
2077 {
2078 "::64.17.254.224/123" : {
2079 "autonomous_system_number" : 33224
2080 }
2081 },
2082 {
2083 "::64.17.255.0/120" : {
2084 "autonomous_system_number" : 33224
2085 }
2086 },
2087 {
2088 "::64.124.194.51/128" : {
2089 "organization" : "Kontera"
2090 }
2091 },
2092 {
2093 "::64.143.224.0/120" : {
2094 "isp" : "AT&T Synaptic Cloud Hosting",
2095 "organization" : "AT&T Synaptic Cloud Hosting"
2096 }
2097 },
2098 {
2099 "::64.143.229.0/120" : {
2100 "isp" : "AT&T Synaptic Cloud Hosting",
2101 "organization" : "AT&T Synaptic Cloud Hosting"
2102 }
2103 },
2104 {
2105 "::64.143.246.0/120" : {
2106 "isp" : "AT&T Synaptic Cloud Hosting",
2107 "organization" : "AT&T Synaptic Cloud Hosting"
2108 }
2109 },
2110 {
2111 "::64.213.52.32/123" : {
2112 "organization" : "Beyond Next"
2113 }
2114 },
2115 {
2116 "::65.23.96.0/116" : {
2117 "autonomous_system_number" : 11456
2118 }
2119 },
2120 {
2121 "::65.23.112.0/117" : {
2122 "autonomous_system_number" : 11456
2123 }
2124 },
2125 {
2126 "::65.23.120.0/120" : {
2127 "autonomous_system_number" : 11456
2128 }
2129 },
2130 {
2131 "::65.23.121.0/121" : {
2132 "autonomous_system_number" : 11456
2133 }
2134 },
2135 {
2136 "::65.23.121.128/122" : {
2137 "autonomous_system_number" : 11456
2138 }
2139 },
2140 {
2141 "::65.23.121.192/124" : {
2142 "autonomous_system_number" : 11456
2143 }
2144 },
2145 {
2146 "::65.23.121.208/125" : {
2147 "autonomous_system_number" : 11456
2148 }
2149 },
2150 {
2151 "::65.23.121.216/126" : {
2152 "autonomous_system_number" : 11456
2153 }
2154 },
2155 {
2156 "::65.23.121.220/128" : {
2157 "autonomous_system_number" : 11456
2158 }
2159 },
2160 {
2161 "::65.23.121.221/128" : {
2162 "autonomous_system_number" : 11456,
2163 "isp" : "Nuvox Communications",
2164 "organization" : "Endodontic Associates Of Savannah"
2165 }
2166 },
2167 {
2168 "::65.23.121.222/127" : {
2169 "autonomous_system_number" : 11456
2170 }
2171 },
2172 {
2173 "::65.23.121.224/123" : {
2174 "autonomous_system_number" : 11456
2175 }
2176 },
2177 {
2178 "::65.23.122.0/119" : {
2179 "autonomous_system_number" : 11456
2180 }
2181 },
2182 {
2183 "::65.23.124.0/118" : {
2184 "autonomous_system_number" : 11456
2185 }
2186 },
2187 {
2188 "::65.115.241.0/120" : {
2189 "autonomous_system_number" : 209
2190 }
2191 },
2192 {
2193 "::65.115.242.0/119" : {
2194 "autonomous_system_number" : 209
2195 }
2196 },
2197 {
2198 "::65.115.244.0/118" : {
2199 "autonomous_system_number" : 209
2200 }
2201 },
2202 {
2203 "::65.115.248.0/117" : {
2204 "autonomous_system_number" : 209
2205 }
2206 },
2207 {
2208 "::65.116.0.0/119" : {
2209 "autonomous_system_number" : 209
2210 }
2211 },
2212 {
2213 "::65.116.2.0/120" : {
2214 "autonomous_system_number" : 209
2215 }
2216 },
2217 {
2218 "::65.116.3.0/122" : {
2219 "autonomous_system_number" : 209
2220 }
2221 },
2222 {
2223 "::65.116.3.64/124" : {
2224 "autonomous_system_number" : 209
2225 }
2226 },
2227 {
2228 "::65.116.3.80/127" : {
2229 "autonomous_system_number" : 209,
2230 "isp" : "Century Link",
2231 "organization" : "ATMI"
2232 }
2233 },
2234 {
2235 "::65.116.3.82/128" : {
2236 "autonomous_system_number" : 209,
2237 "isp" : "Century Link",
2238 "organization" : "ATMI"
2239 }
2240 },
2241 {
2242 "::65.116.3.83/128" : {
2243 "autonomous_system_number" : 209
2244 }
2245 },
2246 {
2247 "::65.116.3.84/126" : {
2248 "autonomous_system_number" : 209
2249 }
2250 },
2251 {
2252 "::65.116.3.88/125" : {
2253 "autonomous_system_number" : 209
2254 }
2255 },
2256 {
2257 "::65.116.3.96/123" : {
2258 "autonomous_system_number" : 209
2259 }
2260 },
2261 {
2262 "::65.116.3.128/121" : {
2263 "autonomous_system_number" : 209
2264 }
2265 },
2266 {
2267 "::65.116.4.0/118" : {
2268 "autonomous_system_number" : 209
2269 }
2270 },
2271 {
2272 "::65.116.8.0/118" : {
2273 "autonomous_system_number" : 209
2274 }
2275 },
2276 {
2277 "::65.116.12.0/119" : {
2278 "autonomous_system_number" : 209
2279 }
2280 },
2281 {
2282 "::65.128.0.0/107" : {
2283 "autonomous_system_number" : 209,
2284 "autonomous_system_organization" : "Qwest Communications Company, LLC",
2285 "isp" : "CenturyLink",
2286 "organization" : "CenturyLink"
2287 }
2288 },
2289 {
2290 "::65.192.0.0/107" : {
2291 "autonomous_system_number" : 701,
2292 "autonomous_system_organization" : "MCI Communications Services, Inc. d/b/a Verizon Business",
2293 "isp" : "Verizon Business",
2294 "organization" : "Verizon Business"
2295 }
2296 },
2297 {
2298 "::66.62.204.0/120" : {
2299 "organization" : "Johnson Services, LLC."
2300 }
2301 },
2302 {
2303 "::66.92.0.0/113" : {
2304 "autonomous_system_number" : 23504
2305 }
2306 },
2307 {
2308 "::66.92.128.0/115" : {
2309 "autonomous_system_number" : 23504
2310 }
2311 },
2312 {
2313 "::66.92.160.0/116" : {
2314 "autonomous_system_number" : 23504
2315 }
2316 },
2317 {
2318 "::66.92.176.0/118" : {
2319 "autonomous_system_number" : 23504
2320 }
2321 },
2322 {
2323 "::66.92.180.0/120" : {
2324 "autonomous_system_number" : 23504
2325 }
2326 },
2327 {
2328 "::66.92.181.0/121" : {
2329 "autonomous_system_number" : 23504
2330 }
2331 },
2332 {
2333 "::66.92.181.128/122" : {
2334 "autonomous_system_number" : 23504
2335 }
2336 },
2337 {
2338 "::66.92.181.192/123" : {
2339 "autonomous_system_number" : 23504
2340 }
2341 },
2342 {
2343 "::66.92.181.224/124" : {
2344 "autonomous_system_number" : 23504
2345 }
2346 },
2347 {
2348 "::66.92.181.240/124" : {
2349 "autonomous_system_number" : 23504,
2350 "isp" : "Speakeasy",
2351 "organization" : "Vikco Insurance"
2352 }
2353 },
2354 {
2355 "::66.92.182.0/119" : {
2356 "autonomous_system_number" : 23504
2357 }
2358 },
2359 {
2360 "::66.92.184.0/117" : {
2361 "autonomous_system_number" : 23504
2362 }
2363 },
2364 {
2365 "::66.92.192.0/114" : {
2366 "autonomous_system_number" : 23504
2367 }
2368 },
2369 {
2370 "::66.93.0.0/112" : {
2371 "autonomous_system_number" : 23504
2372 }
2373 },
2374 {
2375 "::66.249.146.128/121" : {
2376 "isp" : "Digicel Antigua"
2377 }
2378 },
2379 {
2380 "::66.249.156.136/125" : {
2381 "isp" : "Digicel Antigua"
2382 }
2383 },
2384 {
2385 "::67.43.149.0/120" : {
2386 "autonomous_system_number" : 35908
2387 }
2388 },
2389 {
2390 "::67.43.150.0/119" : {
2391 "autonomous_system_number" : 35908
2392 }
2393 },
2394 {
2395 "::67.43.152.0/118" : {
2396 "autonomous_system_number" : 35908
2397 }
2398 },
2399 {
2400 "::67.43.156.0/122" : {
2401 "autonomous_system_number" : 35908,
2402 "isp" : "Loud Packet",
2403 "organization" : "zudoarichikito_"
2404 }
2405 },
2406 {
2407 "::67.43.156.64/122" : {
2408 "autonomous_system_number" : 35908,
2409 "isp" : "Loud Packet",
2410 "organization" : "ania_jab?o?ska"
2411 }
2412 },
2413 {
2414 "::67.43.156.128/122" : {
2415 "autonomous_system_number" : 35908,
2416 "isp" : "Loud Packet",
2417 "organization" : "halle_moore"
2418 }
2419 },
2420 {
2421 "::67.43.156.192/122" : {
2422 "autonomous_system_number" : 35908,
2423 "isp" : "Loud Packet",
2424 "organization" : "park_tai"
2425 }
2426 },
2427 {
2428 "::67.43.157.0/120" : {
2429 "autonomous_system_number" : 35908
2430 }
2431 },
2432 {
2433 "::67.43.158.0/119" : {
2434 "autonomous_system_number" : 35908
2435 }
2436 },
2437 {
2438 "::67.160.0.0/107" : {
2439 "autonomous_system_number" : 7922,
2440 "autonomous_system_organization" : "Comcast Cable Communications, Inc.",
2441 "isp" : "Comcast Cable",
2442 "organization" : "Comcast Cable"
2443 }
2444 },
2445 {
2446 "::68.2.0.0/111" : {
2447 "isp" : "Cox Communications",
2448 "organization" : "Cox Communications"
2449 }
2450 },
2451 {
2452 "::68.4.0.0/110" : {
2453 "isp" : "Cox Communications",
2454 "organization" : "Cox Communications"
2455 }
2456 },
2457 {
2458 "::68.9.0.0/112" : {
2459 "isp" : "Cox Communications",
2460 "organization" : "Cox Communications"
2461 }
2462 },
2463 {
2464 "::68.12.0.0/112" : {
2465 "isp" : "Cox Communications",
2466 "organization" : "Cox Communications"
2467 }
2468 },
2469 {
2470 "::68.20.32.0/117" : {
2471 "isp" : "AT&T Internet Services",
2472 "organization" : "AT&T Internet Services"
2473 }
2474 },
2475 {
2476 "::68.23.176.0/118" : {
2477 "isp" : "AT&T Internet Services",
2478 "organization" : "AT&T Internet Services"
2479 }
2480 },
2481 {
2482 "::68.32.0.0/107" : {
2483 "organization" : "Comcast Cable"
2484 }
2485 },
2486 {
2487 "::68.64.64.0/115" : {
2488 "isp" : "WCS",
2489 "organization" : "WCS"
2490 }
2491 },
2492 {
2493 "::68.65.192.0/114" : {
2494 "isp" : "Colostore.com",
2495 "organization" : "Colostore.com"
2496 }
2497 },
2498 {
2499 "::68.67.80.0/116" : {
2500 "isp" : "Wave Broadband",
2501 "organization" : "Wave Broadband"
2502 }
2503 },
2504 {
2505 "::68.72.8.0/118" : {
2506 "isp" : "AT&T Internet Services",
2507 "organization" : "AT&T Internet Services"
2508 }
2509 },
2510 {
2511 "::68.73.96.0/117" : {
2512 "isp" : "AT&T Internet Services",
2513 "organization" : "AT&T Internet Services"
2514 }
2515 },
2516 {
2517 "::68.75.32.0/117" : {
2518 "isp" : "AT&T Internet Services",
2519 "organization" : "AT&T Internet Services"
2520 }
2521 },
2522 {
2523 "::68.78.64.0/116" : {
2524 "isp" : "AT&T Internet Services",
2525 "organization" : "AT&T Internet Services"
2526 }
2527 },
2528 {
2529 "::68.82.0.0/112" : {
2530 "isp" : "Comcast Cable",
2531 "organization" : "Comcast Cable"
2532 }
2533 },
2534 {
2535 "::68.94.48.0/116" : {
2536 "isp" : "AT&T Internet Services",
2537 "organization" : "AT&T Internet Services"
2538 }
2539 },
2540 {
2541 "::68.94.64.0/117" : {
2542 "isp" : "AT&T Internet Services",
2543 "organization" : "AT&T Internet Services"
2544 }
2545 },
2546 {
2547 "::68.97.0.0/112" : {
2548 "isp" : "Cox Communications",
2549 "organization" : "Cox Communications"
2550 }
2551 },
2552 {
2553 "::68.102.0.0/111" : {
2554 "isp" : "Cox Communications",
2555 "organization" : "Cox Communications"
2556 }
2557 },
2558 {
2559 "::68.136.0.0/110" : {
2560 "isp" : "UUNET Technologies",
2561 "organization" : "UUNET Technologies"
2562 }
2563 },
2564 {
2565 "::68.144.0.0/109" : {
2566 "isp" : "Shaw Communications",
2567 "organization" : "Shaw Communications"
2568 }
2569 },
2570 {
2571 "::68.168.80.0/116" : {
2572 "isp" : "Dbs International",
2573 "organization" : "Dbs International"
2574 }
2575 },
2576 {
2577 "::68.168.96.0/116" : {
2578 "isp" : "Codero",
2579 "organization" : "Codero"
2580 }
2581 },
2582 {
2583 "::68.171.80.0/116" : {
2584 "isp" : "Tri-County Telephone",
2585 "organization" : "Tri-County Telephone"
2586 }
2587 },
2588 {
2589 "::68.171.192.0/116" : {
2590 "isp" : "Datacenter101",
2591 "organization" : "Datacenter101"
2592 }
2593 },
2594 {
2595 "::68.176.0.0/112" : {
2596 "isp" : "CenturyLink",
2597 "organization" : "CenturyLink"
2598 }
2599 },
2600 {
2601 "::68.177.0.0/114" : {
2602 "isp" : "CenturyLink",
2603 "organization" : "CenturyLink"
2604 }
2605 },
2606 {
2607 "::68.177.64.0/117" : {
2608 "isp" : "CenturyLink",
2609 "organization" : "Cibola Internet Services"
2610 }
2611 },
2612 {
2613 "::68.177.72.0/117" : {
2614 "isp" : "CenturyLink",
2615 "organization" : "CenturyLink"
2616 }
2617 },
2618 {
2619 "::68.177.80.0/116" : {
2620 "isp" : "CenturyLink",
2621 "organization" : "CenturyLink"
2622 }
2623 },
2624 {
2625 "::68.177.96.0/115" : {
2626 "isp" : "CenturyLink",
2627 "organization" : "CenturyLink"
2628 }
2629 },
2630 {
2631 "::68.177.128.0/113" : {
2632 "isp" : "CenturyLink",
2633 "organization" : "CenturyLink"
2634 }
2635 },
2636 {
2637 "::68.181.0.0/112" : {
2638 "isp" : "University of Southern California",
2639 "organization" : "University of Southern California"
2640 }
2641 },
2642 {
2643 "::68.182.0.0/112" : {
2644 "isp" : "Telus Communications",
2645 "organization" : "Telus Communications"
2646 }
2647 },
2648 {
2649 "::68.183.0.0/112" : {
2650 "isp" : "DSL Extreme",
2651 "organization" : "DSL Extreme"
2652 }
2653 },
2654 {
2655 "::68.232.64.0/115" : {
2656 "isp" : "Yak Communications (Canada) Corp",
2657 "organization" : "Yak Communications (Canada) Corp"
2658 }
2659 },
2660 {
2661 "::68.232.96.0/116" : {
2662 "isp" : "Channel Clarity Holdings, LLC",
2663 "organization" : "Channel Clarity Holdings, LLC"
2664 }
2665 },
2666 {
2667 "::68.240.0.0/109" : {
2668 "isp" : "Sprint PCS",
2669 "organization" : "Sprint PCS"
2670 }
2671 },
2672 {
2673 "::68.253.48.0/118" : {
2674 "isp" : "AT&T Internet Services",
2675 "organization" : "AT&T Internet Services"
2676 }
2677 },
2678 {
2679 "::68.255.96.0/116" : {
2680 "isp" : "AT&T Internet Services",
2681 "organization" : "AT&T Internet Services"
2682 }
2683 },
2684 {
2685 "::69.218.35.0/120" : {
2686 "autonomous_system_number" : 7132
2687 }
2688 },
2689 {
2690 "::69.218.36.0/118" : {
2691 "autonomous_system_number" : 7132
2692 }
2693 },
2694 {
2695 "::69.218.40.0/117" : {
2696 "autonomous_system_number" : 7132
2697 }
2698 },
2699 {
2700 "::69.218.48.0/116" : {
2701 "autonomous_system_number" : 7132
2702 }
2703 },
2704 {
2705 "::69.218.64.0/114" : {
2706 "autonomous_system_number" : 7132
2707 }
2708 },
2709 {
2710 "::69.218.128.0/114" : {
2711 "autonomous_system_number" : 7132
2712 }
2713 },
2714 {
2715 "::69.218.192.0/115" : {
2716 "autonomous_system_number" : 7132
2717 }
2718 },
2719 {
2720 "::69.218.224.0/116" : {
2721 "autonomous_system_number" : 7132
2722 }
2723 },
2724 {
2725 "::69.218.240.0/117" : {
2726 "autonomous_system_number" : 7132
2727 }
2728 },
2729 {
2730 "::69.218.248.0/119" : {
2731 "autonomous_system_number" : 7132
2732 }
2733 },
2734 {
2735 "::69.218.250.0/120" : {
2736 "autonomous_system_number" : 7132
2737 }
2738 },
2739 {
2740 "::69.218.251.0/124" : {
2741 "autonomous_system_number" : 7132
2742 }
2743 },
2744 {
2745 "::69.218.251.16/124" : {
2746 "autonomous_system_number" : 7132,
2747 "isp" : "AT&T Internet Services",
2748 "organization" : "r x optical"
2749 }
2750 },
2751 {
2752 "::69.218.251.32/123" : {
2753 "autonomous_system_number" : 7132
2754 }
2755 },
2756 {
2757 "::69.218.251.64/122" : {
2758 "autonomous_system_number" : 7132
2759 }
2760 },
2761 {
2762 "::69.218.251.128/121" : {
2763 "autonomous_system_number" : 7132
2764 }
2765 },
2766 {
2767 "::69.218.252.0/118" : {
2768 "autonomous_system_number" : 7132
2769 }
2770 },
2771 {
2772 "::69.219.0.0/114" : {
2773 "autonomous_system_number" : 7132
2774 }
2775 },
2776 {
2777 "::69.219.64.0/116" : {
2778 "autonomous_system_number" : 7132
2779 }
2780 },
2781 {
2782 "::69.219.80.0/118" : {
2783 "autonomous_system_number" : 7132
2784 }
2785 },
2786 {
2787 "::69.220.29.0/120" : {
2788 "isp" : "AT&T Synaptic Cloud Hosting",
2789 "organization" : "AT&T Synaptic Cloud Hosting"
2790 }
2791 },
2792 {
2793 "::69.220.30.0/120" : {
2794 "isp" : "AT&T Synaptic Cloud Hosting",
2795 "organization" : "AT&T Synaptic Cloud Hosting"
2796 }
2797 },
2798 {
2799 "::70.46.21.0/120" : {
2800 "autonomous_system_number" : 11456
2801 }
2802 },
2803 {
2804 "::70.46.22.0/119" : {
2805 "autonomous_system_number" : 11456
2806 }
2807 },
2808 {
2809 "::70.46.24.0/117" : {
2810 "autonomous_system_number" : 11456
2811 }
2812 },
2813 {
2814 "::70.46.32.0/115" : {
2815 "autonomous_system_number" : 11456
2816 }
2817 },
2818 {
2819 "::70.46.64.0/115" : {
2820 "autonomous_system_number" : 11456
2821 }
2822 },
2823 {
2824 "::70.46.96.0/116" : {
2825 "autonomous_system_number" : 11456
2826 }
2827 },
2828 {
2829 "::70.46.112.0/117" : {
2830 "autonomous_system_number" : 11456
2831 }
2832 },
2833 {
2834 "::70.46.120.0/119" : {
2835 "autonomous_system_number" : 11456
2836 }
2837 },
2838 {
2839 "::70.46.122.0/120" : {
2840 "autonomous_system_number" : 11456
2841 }
2842 },
2843 {
2844 "::70.46.123.0/121" : {
2845 "autonomous_system_number" : 11456
2846 }
2847 },
2848 {
2849 "::70.46.123.128/124" : {
2850 "autonomous_system_number" : 11456
2851 }
2852 },
2853 {
2854 "::70.46.123.144/128" : {
2855 "autonomous_system_number" : 11456
2856 }
2857 },
2858 {
2859 "::70.46.123.145/128" : {
2860 "autonomous_system_number" : 11456,
2861 "isp" : "FDN Communications",
2862 "organization" : "DSLAM WAN Allocation"
2863 }
2864 },
2865 {
2866 "::70.46.123.146/127" : {
2867 "autonomous_system_number" : 11456
2868 }
2869 },
2870 {
2871 "::70.46.123.148/126" : {
2872 "autonomous_system_number" : 11456
2873 }
2874 },
2875 {
2876 "::70.46.123.152/125" : {
2877 "autonomous_system_number" : 11456
2878 }
2879 },
2880 {
2881 "::70.46.123.160/123" : {
2882 "autonomous_system_number" : 11456
2883 }
2884 },
2885 {
2886 "::70.46.123.192/122" : {
2887 "autonomous_system_number" : 11456
2888 }
2889 },
2890 {
2891 "::70.46.124.0/118" : {
2892 "autonomous_system_number" : 11456
2893 }
2894 },
2895 {
2896 "::70.46.128.0/113" : {
2897 "autonomous_system_number" : 11456
2898 }
2899 },
2900 {
2901 "::70.160.0.0/107" : {
2902 "autonomous_system_number" : 22773,
2903 "autonomous_system_organization" : "Cox Communications Inc.",
2904 "isp" : "Cox Communications",
2905 "organization" : "Cox Communications"
2906 }
2907 },
2908 {
2909 "::70.192.0.0/107" : {
2910 "autonomous_system_number" : 6167,
2911 "autonomous_system_organization" : "Cellco Partnership DBA Verizon Wireless",
2912 "isp" : "Verizon Wireless",
2913 "organization" : "Verizon Wireless"
2914 }
2915 },
2916 {
2917 "::70.224.0.0/107" : {
2918 "autonomous_system_number" : 7018,
2919 "autonomous_system_organization" : "AT&T Services, Inc.",
2920 "isp" : "AT&T Internet Services",
2921 "organization" : "AT&T Internet Services"
2922 }
2923 },
2924 {
2925 "::71.96.0.0/107" : {
2926 "autonomous_system_number" : 701,
2927 "autonomous_system_organization" : "MCI Communications Services, Inc. d/b/a Verizon Business",
2928 "isp" : "Verizon Business",
2929 "organization" : "Verizon Business"
2930 }
2931 },
2932 {
2933 "::71.128.0.0/110" : {
2934 "autonomous_system_number" : 7018,
2935 "autonomous_system_organization" : "AT&T Services, Inc.",
2936 "isp" : "AT&T Internet Services",
2937 "organization" : "AT&T Internet Services"
2938 }
2939 },
2940 {
2941 "::71.132.0.0/111" : {
2942 "autonomous_system_number" : 7018,
2943 "autonomous_system_organization" : "AT&T Services, Inc.",
2944 "isp" : "AT&T Internet Services",
2945 "organization" : "AT&T Internet Services"
2946 }
2947 },
2948 {
2949 "::71.134.0.0/114" : {
2950 "autonomous_system_number" : 7018,
2951 "autonomous_system_organization" : "AT&T Services, Inc.",
2952 "isp" : "AT&T Internet Services",
2953 "organization" : "AT&T Internet Services"
2954 }
2955 },
2956 {
2957 "::71.134.64.0/117" : {
2958 "autonomous_system_number" : 7018,
2959 "autonomous_system_organization" : "AT&T Services, Inc.",
2960 "isp" : "AT&T Internet Services",
2961 "organization" : "AT&T Internet Services"
2962 }
2963 },
2964 {
2965 "::71.134.72.0/118" : {
2966 "autonomous_system_number" : 7018,
2967 "autonomous_system_organization" : "AT&T Services, Inc.",
2968 "isp" : "AT&T Internet Services",
2969 "organization" : "AT&T Internet Services"
2970 }
2971 },
2972 {
2973 "::71.134.76.0/119" : {
2974 "autonomous_system_number" : 7018,
2975 "autonomous_system_organization" : "AT&T Services, Inc.",
2976 "isp" : "AT&T Internet Services",
2977 "organization" : "AT&T Internet Services"
2978 }
2979 },
2980 {
2981 "::71.134.78.0/119" : {
2982 "autonomous_system_number" : 7132,
2983 "autonomous_system_organization" : "AT&T Services, Inc.",
2984 "isp" : "AT&T Internet Services",
2985 "organization" : "AT&T Internet Services"
2986 }
2987 },
2988 {
2989 "::71.134.80.0/116" : {
2990 "autonomous_system_number" : 7132,
2991 "autonomous_system_organization" : "AT&T Services, Inc.",
2992 "isp" : "AT&T Internet Services",
2993 "organization" : "AT&T Internet Services"
2994 }
2995 },
2996 {
2997 "::71.134.96.0/115" : {
2998 "autonomous_system_number" : 7132,
2999 "autonomous_system_organization" : "AT&T Services, Inc.",
3000 "isp" : "AT&T Internet Services",
3001 "organization" : "AT&T Internet Services"
3002 }
3003 },
3004 {
3005 "::71.134.128.0/113" : {
3006 "autonomous_system_number" : 7132,
3007 "autonomous_system_organization" : "AT&T Services, Inc.",
3008 "isp" : "AT&T Internet Services",
3009 "organization" : "AT&T Internet Services"
3010 }
3011 },
3012 {
3013 "::71.135.0.0/112" : {
3014 "autonomous_system_number" : 7132,
3015 "autonomous_system_organization" : "AT&T Services, Inc.",
3016 "isp" : "AT&T Internet Services",
3017 "organization" : "AT&T Internet Services"
3018 }
3019 },
3020 {
3021 "::71.136.0.0/111" : {
3022 "autonomous_system_number" : 7132,
3023 "autonomous_system_organization" : "AT&T Services, Inc.",
3024 "isp" : "AT&T Internet Services",
3025 "organization" : "AT&T Internet Services"
3026 }
3027 },
3028 {
3029 "::71.138.0.0/114" : {
3030 "autonomous_system_number" : 7132,
3031 "autonomous_system_organization" : "AT&T Services, Inc.",
3032 "isp" : "AT&T Internet Services",
3033 "organization" : "AT&T Internet Services"
3034 }
3035 },
3036 {
3037 "::71.138.64.0/115" : {
3038 "autonomous_system_number" : 7132,
3039 "autonomous_system_organization" : "AT&T Services, Inc.",
3040 "isp" : "AT&T Internet Services",
3041 "organization" : "AT&T Internet Services"
3042 }
3043 },
3044 {
3045 "::71.138.96.0/117" : {
3046 "autonomous_system_number" : 7132,
3047 "autonomous_system_organization" : "AT&T Services, Inc.",
3048 "isp" : "AT&T Internet Services",
3049 "organization" : "AT&T Internet Services"
3050 }
3051 },
3052 {
3053 "::71.138.104.0/121" : {
3054 "autonomous_system_number" : 7132,
3055 "autonomous_system_organization" : "AT&T Services, Inc.",
3056 "isp" : "AT&T Internet Services",
3057 "organization" : "AT&T Internet Services"
3058 }
3059 },
3060 {
3061 "::71.138.104.128/122" : {
3062 "autonomous_system_number" : 7132,
3063 "autonomous_system_organization" : "AT&T Services, Inc.",
3064 "isp" : "AT&T Internet Services",
3065 "organization" : "AT&T Internet Services"
3066 }
3067 },
3068 {
3069 "::71.138.104.192/123" : {
3070 "autonomous_system_number" : 7132,
3071 "autonomous_system_organization" : "AT&T Services, Inc.",
3072 "isp" : "AT&T Internet Services",
3073 "organization" : "AT&T Internet Services"
3074 }
3075 },
3076 {
3077 "::71.138.104.224/124" : {
3078 "autonomous_system_number" : 7132,
3079 "autonomous_system_organization" : "AT&T Services, Inc.",
3080 "isp" : "AT&T Internet Services",
3081 "organization" : "AT&T Internet Services"
3082 }
3083 },
3084 {
3085 "::71.138.104.240/125" : {
3086 "autonomous_system_number" : 7132,
3087 "autonomous_system_organization" : "AT&T Services, Inc.",
3088 "isp" : "AT&T Internet Services",
3089 "organization" : "Leung Yin Lam Dba"
3090 }
3091 },
3092 {
3093 "::71.138.104.248/125" : {
3094 "autonomous_system_number" : 7132,
3095 "autonomous_system_organization" : "AT&T Services, Inc.",
3096 "isp" : "AT&T Internet Services",
3097 "organization" : "AT&T Internet Services"
3098 }
3099 },
3100 {
3101 "::71.138.105.0/120" : {
3102 "autonomous_system_number" : 7132,
3103 "autonomous_system_organization" : "AT&T Services, Inc.",
3104 "isp" : "AT&T Internet Services",
3105 "organization" : "AT&T Internet Services"
3106 }
3107 },
3108 {
3109 "::71.138.106.0/119" : {
3110 "autonomous_system_number" : 7132,
3111 "autonomous_system_organization" : "AT&T Services, Inc.",
3112 "isp" : "AT&T Internet Services",
3113 "organization" : "AT&T Internet Services"
3114 }
3115 },
3116 {
3117 "::71.138.108.0/118" : {
3118 "autonomous_system_number" : 7132,
3119 "autonomous_system_organization" : "AT&T Services, Inc.",
3120 "isp" : "AT&T Internet Services",
3121 "organization" : "AT&T Internet Services"
3122 }
3123 },
3124 {
3125 "::71.138.112.0/116" : {
3126 "autonomous_system_number" : 7132,
3127 "autonomous_system_organization" : "AT&T Services, Inc.",
3128 "isp" : "AT&T Internet Services",
3129 "organization" : "AT&T Internet Services"
3130 }
3131 },
3132 {
3133 "::71.138.128.0/113" : {
3134 "autonomous_system_number" : 7132,
3135 "autonomous_system_organization" : "AT&T Services, Inc.",
3136 "isp" : "AT&T Internet Services",
3137 "organization" : "AT&T Internet Services"
3138 }
3139 },
3140 {
3141 "::71.139.0.0/112" : {
3142 "autonomous_system_number" : 7132,
3143 "autonomous_system_organization" : "AT&T Services, Inc.",
3144 "isp" : "AT&T Internet Services",
3145 "organization" : "AT&T Internet Services"
3146 }
3147 },
3148 {
3149 "::71.140.0.0/113" : {
3150 "autonomous_system_number" : 7132,
3151 "autonomous_system_organization" : "AT&T Services, Inc.",
3152 "isp" : "AT&T Internet Services",
3153 "organization" : "AT&T Internet Services"
3154 }
3155 },
3156 {
3157 "::71.140.128.0/114" : {
3158 "autonomous_system_number" : 7132,
3159 "autonomous_system_organization" : "AT&T Services, Inc.",
3160 "isp" : "AT&T Internet Services",
3161 "organization" : "AT&T Internet Services"
3162 }
3163 },
3164 {
3165 "::71.140.192.0/118" : {
3166 "autonomous_system_number" : 7132,
3167 "autonomous_system_organization" : "AT&T Services, Inc.",
3168 "isp" : "AT&T Internet Services",
3169 "organization" : "AT&T Internet Services"
3170 }
3171 },
3172 {
3173 "::71.140.196.0/119" : {
3174 "autonomous_system_number" : 7132,
3175 "autonomous_system_organization" : "AT&T Services, Inc.",
3176 "isp" : "AT&T Internet Services",
3177 "organization" : "AT&T Internet Services"
3178 }
3179 },
3180 {
3181 "::71.140.198.0/119" : {
3182 "autonomous_system_number" : 7018,
3183 "autonomous_system_organization" : "AT&T Services, Inc.",
3184 "isp" : "AT&T Internet Services",
3185 "organization" : "AT&T Internet Services"
3186 }
3187 },
3188 {
3189 "::71.140.200.0/117" : {
3190 "autonomous_system_number" : 7018,
3191 "autonomous_system_organization" : "AT&T Services, Inc.",
3192 "isp" : "AT&T Internet Services",
3193 "organization" : "AT&T Internet Services"
3194 }
3195 },
3196 {
3197 "::71.140.208.0/116" : {
3198 "autonomous_system_number" : 7018,
3199 "autonomous_system_organization" : "AT&T Services, Inc.",
3200 "isp" : "AT&T Internet Services",
3201 "organization" : "AT&T Internet Services"
3202 }
3203 },
3204 {
3205 "::71.140.224.0/115" : {
3206 "autonomous_system_number" : 7018,
3207 "autonomous_system_organization" : "AT&T Services, Inc.",
3208 "isp" : "AT&T Internet Services",
3209 "organization" : "AT&T Internet Services"
3210 }
3211 },
3212 {
3213 "::71.141.0.0/112" : {
3214 "autonomous_system_number" : 7018,
3215 "autonomous_system_organization" : "AT&T Services, Inc.",
3216 "isp" : "AT&T Internet Services",
3217 "organization" : "AT&T Internet Services"
3218 }
3219 },
3220 {
3221 "::71.142.0.0/111" : {
3222 "autonomous_system_number" : 7018,
3223 "autonomous_system_organization" : "AT&T Services, Inc.",
3224 "isp" : "AT&T Internet Services",
3225 "organization" : "AT&T Internet Services"
3226 }
3227 },
3228 {
3229 "::71.144.0.0/108" : {
3230 "autonomous_system_number" : 7018,
3231 "autonomous_system_organization" : "AT&T Services, Inc.",
3232 "isp" : "AT&T Internet Services",
3233 "organization" : "AT&T Internet Services"
3234 }
3235 },
3236 {
3237 "::72.96.0.0/107" : {
3238 "autonomous_system_number" : 6167,
3239 "autonomous_system_organization" : "Cellco Partnership DBA Verizon Wireless",
3240 "isp" : "Verizon Wireless",
3241 "organization" : "Verizon Wireless"
3242 }
3243 },
3244 {
3245 "::72.192.0.0/108" : {
3246 "autonomous_system_number" : 22773,
3247 "autonomous_system_organization" : "Cox Communications Inc.",
3248 "isp" : "Cox Communications",
3249 "organization" : "Cox Communications"
3250 }
3251 },
3252 {
3253 "::72.208.0.0/110" : {
3254 "autonomous_system_number" : 22773,
3255 "autonomous_system_organization" : "Cox Communications Inc.",
3256 "isp" : "Cox Communications",
3257 "organization" : "Cox Communications"
3258 }
3259 },
3260 {
3261 "::72.212.0.0/111" : {
3262 "autonomous_system_number" : 22773,
3263 "autonomous_system_organization" : "Cox Communications Inc.",
3264 "isp" : "Cox Communications",
3265 "organization" : "Cox Communications"
3266 }
3267 },
3268 {
3269 "::72.214.0.0/118" : {
3270 "autonomous_system_number" : 22773,
3271 "autonomous_system_organization" : "Cox Communications Inc.",
3272 "isp" : "Cox Communications",
3273 "organization" : "Cox Communications"
3274 }
3275 },
3276 {
3277 "::72.214.4.0/119" : {
3278 "autonomous_system_number" : 22773,
3279 "autonomous_system_organization" : "Cox Communications Inc.",
3280 "isp" : "Cox Communications",
3281 "organization" : "Cox Communications"
3282 }
3283 },
3284 {
3285 "::72.214.6.0/122" : {
3286 "autonomous_system_number" : 22773,
3287 "autonomous_system_organization" : "Cox Communications Inc.",
3288 "isp" : "Cox Communications",
3289 "organization" : "Cox Communications"
3290 }
3291 },
3292 {
3293 "::72.214.6.64/125" : {
3294 "autonomous_system_number" : 22773,
3295 "autonomous_system_organization" : "Cox Communications Inc.",
3296 "isp" : "Cox Communications",
3297 "organization" : "Cox Communications"
3298 }
3299 },
3300 {
3301 "::72.214.6.72/128" : {
3302 "autonomous_system_number" : 22773,
3303 "autonomous_system_organization" : "Cox Communications Inc.",
3304 "isp" : "Loud Packet",
3305 "organization" : "Cox Communications"
3306 }
3307 },
3308 {
3309 "::72.214.6.73/128" : {
3310 "autonomous_system_number" : 22773,
3311 "autonomous_system_organization" : "Cox Communications Inc.",
3312 "isp" : "Cox Communications",
3313 "organization" : "Cox Communications"
3314 }
3315 },
3316 {
3317 "::72.214.6.74/127" : {
3318 "autonomous_system_number" : 22773,
3319 "autonomous_system_organization" : "Cox Communications Inc.",
3320 "isp" : "Cox Communications",
3321 "organization" : "Cox Communications"
3322 }
3323 },
3324 {
3325 "::72.214.6.76/126" : {
3326 "autonomous_system_number" : 22773,
3327 "autonomous_system_organization" : "Cox Communications Inc.",
3328 "isp" : "Cox Communications",
3329 "organization" : "Cox Communications"
3330 }
3331 },
3332 {
3333 "::72.214.6.80/124" : {
3334 "autonomous_system_number" : 22773,
3335 "autonomous_system_organization" : "Cox Communications Inc.",
3336 "isp" : "Cox Communications",
3337 "organization" : "Cox Communications"
3338 }
3339 },
3340 {
3341 "::72.214.6.96/123" : {
3342 "autonomous_system_number" : 22773,
3343 "autonomous_system_organization" : "Cox Communications Inc.",
3344 "isp" : "Cox Communications",
3345 "organization" : "Cox Communications"
3346 }
3347 },
3348 {
3349 "::72.214.6.128/121" : {
3350 "autonomous_system_number" : 22773,
3351 "autonomous_system_organization" : "Cox Communications Inc.",
3352 "isp" : "Cox Communications",
3353 "organization" : "Cox Communications"
3354 }
3355 },
3356 {
3357 "::72.214.7.0/120" : {
3358 "autonomous_system_number" : 22773,
3359 "autonomous_system_organization" : "Cox Communications Inc.",
3360 "isp" : "Cox Communications",
3361 "organization" : "Cox Communications"
3362 }
3363 },
3364 {
3365 "::72.214.8.0/117" : {
3366 "autonomous_system_number" : 22773,
3367 "autonomous_system_organization" : "Cox Communications Inc.",
3368 "isp" : "Cox Communications",
3369 "organization" : "Cox Communications"
3370 }
3371 },
3372 {
3373 "::72.214.16.0/116" : {
3374 "autonomous_system_number" : 22773,
3375 "autonomous_system_organization" : "Cox Communications Inc.",
3376 "isp" : "Cox Communications",
3377 "organization" : "Cox Communications"
3378 }
3379 },
3380 {
3381 "::72.214.32.0/115" : {
3382 "autonomous_system_number" : 22773,
3383 "autonomous_system_organization" : "Cox Communications Inc.",
3384 "isp" : "Cox Communications",
3385 "organization" : "Cox Communications"
3386 }
3387 },
3388 {
3389 "::72.214.64.0/114" : {
3390 "autonomous_system_number" : 22773,
3391 "autonomous_system_organization" : "Cox Communications Inc.",
3392 "isp" : "Cox Communications",
3393 "organization" : "Cox Communications"
3394 }
3395 },
3396 {
3397 "::72.214.128.0/113" : {
3398 "autonomous_system_number" : 22773,
3399 "autonomous_system_organization" : "Cox Communications Inc.",
3400 "isp" : "Cox Communications",
3401 "organization" : "Cox Communications"
3402 }
3403 },
3404 {
3405 "::72.215.0.0/112" : {
3406 "autonomous_system_number" : 22773,
3407 "autonomous_system_organization" : "Cox Communications Inc.",
3408 "isp" : "Cox Communications",
3409 "organization" : "Cox Communications"
3410 }
3411 },
3412 {
3413 "::72.216.0.0/109" : {
3414 "autonomous_system_number" : 22773,
3415 "autonomous_system_organization" : "Cox Communications Inc.",
3416 "isp" : "Cox Communications",
3417 "organization" : "Cox Communications"
3418 }
3419 },
3420 {
3421 "::73.0.0.0/104" : {
3422 "autonomous_system_number" : 7922,
3423 "autonomous_system_organization" : "Comcast Cable Communications, Inc.",
3424 "isp" : "Comcast Cable",
3425 "organization" : "Comcast Cable"
3426 }
3427 },
3428 {
3429 "::74.0.32.0/115" : {
3430 "autonomous_system_number" : 18566
3431 }
3432 },
3433 {
3434 "::74.0.64.0/114" : {
3435 "autonomous_system_number" : 18566
3436 }
3437 },
3438 {
3439 "::74.0.128.0/117" : {
3440 "autonomous_system_number" : 18566
3441 }
3442 },
3443 {
3444 "::74.0.136.0/120" : {
3445 "autonomous_system_number" : 18566
3446 }
3447 },
3448 {
3449 "::74.0.137.0/121" : {
3450 "autonomous_system_number" : 18566
3451 }
3452 },
3453 {
3454 "::74.0.137.128/122" : {
3455 "autonomous_system_number" : 18566
3456 }
3457 },
3458 {
3459 "::74.0.137.192/127" : {
3460 "autonomous_system_number" : 18566
3461 }
3462 },
3463 {
3464 "::74.0.137.194/128" : {
3465 "autonomous_system_number" : 18566,
3466 "isp" : "Covad Communications",
3467 "organization" : "Covad Communications"
3468 }
3469 },
3470 {
3471 "::74.0.137.195/128" : {
3472 "autonomous_system_number" : 18566
3473 }
3474 },
3475 {
3476 "::74.0.137.196/126" : {
3477 "autonomous_system_number" : 18566
3478 }
3479 },
3480 {
3481 "::74.0.137.200/125" : {
3482 "autonomous_system_number" : 18566
3483 }
3484 },
3485 {
3486 "::74.0.137.208/124" : {
3487 "autonomous_system_number" : 18566
3488 }
3489 },
3490 {
3491 "::74.0.137.224/123" : {
3492 "autonomous_system_number" : 18566
3493 }
3494 },
3495 {
3496 "::74.0.138.0/119" : {
3497 "autonomous_system_number" : 18566
3498 }
3499 },
3500 {
3501 "::74.0.140.0/118" : {
3502 "autonomous_system_number" : 18566
3503 }
3504 },
3505 {
3506 "::74.0.144.0/116" : {
3507 "autonomous_system_number" : 18566
3508 }
3509 },
3510 {
3511 "::74.0.160.0/117" : {
3512 "autonomous_system_number" : 18566
3513 }
3514 },
3515 {
3516 "::74.39.211.192/122" : {
3517 "organization" : "WHEC TV"
3518 }
3519 },
3520 {
3521 "::74.160.0.0/107" : {
3522 "autonomous_system_number" : 6389,
3523 "autonomous_system_organization" : "BellSouth.net Inc.",
3524 "isp" : "BellSouth.net",
3525 "organization" : "BellSouth.net"
3526 }
3527 },
3528 {
3529 "::74.217.148.71/128" : {
3530 "organization" : "INTERNAP"
3531 }
3532 },
3533 {
3534 "::74.224.0.0/107" : {
3535 "autonomous_system_number" : 6389,
3536 "autonomous_system_organization" : "BellSouth.net Inc.",
3537 "isp" : "BellSouth.net",
3538 "organization" : "BellSouth.net"
3539 }
3540 },
3541 {
3542 "::75.0.0.0/107" : {
3543 "autonomous_system_number" : 7018,
3544 "autonomous_system_organization" : "AT&T Services, Inc.",
3545 "isp" : "AT&T Internet Services",
3546 "organization" : "AT&T Internet Services"
3547 }
3548 },
3549 {
3550 "::75.55.67.0/120" : {
3551 "isp" : "AT&T Synaptic Cloud Hosting",
3552 "organization" : "AT&T Synaptic Cloud Hosting"
3553 }
3554 },
3555 {
3556 "::75.55.69.0/120" : {
3557 "isp" : "AT&T Synaptic Cloud Hosting",
3558 "organization" : "AT&T Synaptic Cloud Hosting"
3559 }
3560 },
3561 {
3562 "::75.55.79.0/120" : {
3563 "isp" : "AT&T Synaptic Cloud Hosting",
3564 "organization" : "AT&T Synaptic Cloud Hosting"
3565 }
3566 },
3567 {
3568 "::75.55.97.0/120" : {
3569 "isp" : "AT&T Synaptic Cloud Hosting",
3570 "organization" : "AT&T Synaptic Cloud Hosting"
3571 }
3572 },
3573 {
3574 "::75.55.98.0/120" : {
3575 "isp" : "AT&T Synaptic Cloud Hosting",
3576 "organization" : "AT&T Synaptic Cloud Hosting"
3577 }
3578 },
3579 {
3580 "::75.55.102.0/120" : {
3581 "isp" : "AT&T Synaptic Cloud Hosting",
3582 "organization" : "AT&T Synaptic Cloud Hosting"
3583 }
3584 },
3585 {
3586 "::75.55.110.0/120" : {
3587 "isp" : "AT&T Synaptic Cloud Hosting",
3588 "organization" : "AT&T Synaptic Cloud Hosting"
3589 }
3590 },
3591 {
3592 "::75.62.54.0/120" : {
3593 "isp" : "AT&T Synaptic Cloud Hosting",
3594 "organization" : "AT&T Synaptic Cloud Hosting"
3595 }
3596 },
3597 {
3598 "::75.62.59.0/120" : {
3599 "isp" : "AT&T Synaptic Cloud Hosting",
3600 "organization" : "AT&T Synaptic Cloud Hosting"
3601 }
3602 },
3603 {
3604 "::75.62.61.0/120" : {
3605 "isp" : "AT&T Synaptic Cloud Hosting",
3606 "organization" : "AT&T Synaptic Cloud Hosting"
3607 }
3608 },
3609 {
3610 "::75.62.63.0/120" : {
3611 "isp" : "AT&T Synaptic Cloud Hosting",
3612 "organization" : "AT&T Synaptic Cloud Hosting"
3613 }
3614 },
3615 {
3616 "::75.77.40.0/117" : {
3617 "autonomous_system_number" : 11456
3618 }
3619 },
3620 {
3621 "::75.77.48.0/116" : {
3622 "autonomous_system_number" : 11456
3623 }
3624 },
3625 {
3626 "::75.77.64.0/114" : {
3627 "autonomous_system_number" : 11456
3628 }
3629 },
3630 {
3631 "::75.77.128.0/114" : {
3632 "autonomous_system_number" : 11456
3633 }
3634 },
3635 {
3636 "::75.77.192.0/116" : {
3637 "autonomous_system_number" : 11456
3638 }
3639 },
3640 {
3641 "::75.77.208.0/119" : {
3642 "autonomous_system_number" : 11456
3643 }
3644 },
3645 {
3646 "::75.77.210.0/120" : {
3647 "autonomous_system_number" : 11456
3648 }
3649 },
3650 {
3651 "::75.77.211.0/121" : {
3652 "autonomous_system_number" : 11456
3653 }
3654 },
3655 {
3656 "::75.77.211.128/122" : {
3657 "autonomous_system_number" : 11456
3658 }
3659 },
3660 {
3661 "::75.77.211.192/124" : {
3662 "autonomous_system_number" : 11456
3663 }
3664 },
3665 {
3666 "::75.77.211.208/126" : {
3667 "autonomous_system_number" : 11456,
3668 "isp" : "Nuvox Communications",
3669 "organization" : "Child Care Assoc. Of Brevard County (pinewood)"
3670 }
3671 },
3672 {
3673 "::75.77.211.212/126" : {
3674 "autonomous_system_number" : 11456
3675 }
3676 },
3677 {
3678 "::75.77.211.216/125" : {
3679 "autonomous_system_number" : 11456
3680 }
3681 },
3682 {
3683 "::75.77.211.224/123" : {
3684 "autonomous_system_number" : 11456
3685 }
3686 },
3687 {
3688 "::75.77.212.0/118" : {
3689 "autonomous_system_number" : 11456
3690 }
3691 },
3692 {
3693 "::75.77.216.0/117" : {
3694 "autonomous_system_number" : 11456
3695 }
3696 },
3697 {
3698 "::75.77.224.0/115" : {
3699 "autonomous_system_number" : 11456
3700 }
3701 },
3702 {
3703 "::75.192.0.0/106" : {
3704 "autonomous_system_number" : 6167,
3705 "autonomous_system_organization" : "Cellco Partnership DBA Verizon Wireless",
3706 "isp" : "Verizon Wireless",
3707 "organization" : "Verizon Wireless"
3708 }
3709 },
3710 {
3711 "::76.96.0.0/107" : {
3712 "autonomous_system_number" : 7922,
3713 "autonomous_system_organization" : "Comcast Cable Communications, Inc.",
3714 "isp" : "Comcast Cable",
3715 "organization" : "Comcast Cable"
3716 }
3717 },
3718 {
3719 "::76.128.0.0/107" : {
3720 "autonomous_system_number" : 7922,
3721 "autonomous_system_organization" : "Comcast Cable Communications, Inc.",
3722 "isp" : "Comcast Cable",
3723 "organization" : "Comcast Cable"
3724 }
3725 },
3726 {
3727 "::76.224.0.0/107" : {
3728 "autonomous_system_number" : 7018,
3729 "autonomous_system_organization" : "AT&T Services, Inc.",
3730 "isp" : "AT&T Internet Services",
3731 "organization" : "AT&T Internet Services"
3732 }
3733 },
3734 {
3735 "::77.74.230.0/119" : {
3736 "organization" : "Cutuknet"
3737 }
3738 },
3739 {
3740 "::77.128.0.0/107" : {
3741 "autonomous_system_number" : 15557,
3742 "autonomous_system_organization" : "Societe Francaise du Radiotelephone S.A",
3743 "isp" : "SFR",
3744 "organization" : "SFR"
3745 }
3746 },
3747 {
3748 "::78.26.64.0/118" : {
3749 "autonomous_system_number" : 28929,
3750 "autonomous_system_organization" : "ASDASD srl"
3751 }
3752 },
3753 {
3754 "::78.26.68.0/119" : {
3755 "autonomous_system_number" : 28929,
3756 "autonomous_system_organization" : "ASDASD srl"
3757 }
3758 },
3759 {
3760 "::78.26.70.0/121" : {
3761 "autonomous_system_number" : 28929,
3762 "autonomous_system_organization" : "ASDASD srl"
3763 }
3764 },
3765 {
3766 "::78.26.70.128/122" : {
3767 "autonomous_system_number" : 28929,
3768 "autonomous_system_organization" : "ASDASD srl"
3769 }
3770 },
3771 {
3772 "::78.26.70.192/124" : {
3773 "autonomous_system_number" : 28929,
3774 "autonomous_system_organization" : "ASDASD srl"
3775 }
3776 },
3777 {
3778 "::78.26.70.208/125" : {
3779 "autonomous_system_number" : 28929,
3780 "autonomous_system_organization" : "ASDASD srl",
3781 "isp" : "ASDASD srl a socio unico",
3782 "organization" : "Marino Dalla Gasperina"
3783 }
3784 },
3785 {
3786 "::78.26.70.216/125" : {
3787 "autonomous_system_number" : 28929,
3788 "autonomous_system_organization" : "ASDASD srl"
3789 }
3790 },
3791 {
3792 "::78.26.70.224/123" : {
3793 "autonomous_system_number" : 28929,
3794 "autonomous_system_organization" : "ASDASD srl"
3795 }
3796 },
3797 {
3798 "::78.26.71.0/120" : {
3799 "autonomous_system_number" : 28929,
3800 "autonomous_system_organization" : "ASDASD srl"
3801 }
3802 },
3803 {
3804 "::78.26.72.0/117" : {
3805 "autonomous_system_number" : 28929,
3806 "autonomous_system_organization" : "ASDASD srl"
3807 }
3808 },
3809 {
3810 "::78.26.80.0/116" : {
3811 "autonomous_system_number" : 28929,
3812 "autonomous_system_organization" : "ASDASD srl"
3813 }
3814 },
3815 {
3816 "::78.26.96.0/116" : {
3817 "autonomous_system_number" : 28929,
3818 "autonomous_system_organization" : "ASDASD srl"
3819 }
3820 },
3821 {
3822 "::78.26.112.0/117" : {
3823 "autonomous_system_number" : 28929,
3824 "autonomous_system_organization" : "ASDASD srl"
3825 }
3826 },
3827 {
3828 "::78.26.120.0/118" : {
3829 "autonomous_system_number" : 28929,
3830 "autonomous_system_organization" : "ASDASD srl"
3831 }
3832 },
3833 {
3834 "::78.26.124.0/119" : {
3835 "autonomous_system_number" : 28929,
3836 "autonomous_system_organization" : "ASDASD srl"
3837 }
3838 },
3839 {
3840 "::78.138.56.64/125" : {
3841 "organization" : "Clever Technology and Systems Nigeria"
3842 }
3843 },
3844 {
3845 "::78.192.0.0/106" : {
3846 "isp" : "Free SAS",
3847 "organization" : "Free SAS"
3848 }
3849 },
3850 {
3851 "::79.101.50.0/120" : {
3852 "organization" : "SokoWireless.NET!"
3853 }
3854 },
3855 {
3856 "::79.172.210.0/120" : {
3857 "isp" : "SzerverPlex Ltd."
3858 }
3859 },
3860 {
3861 "::79.192.0.0/106" : {
3862 "autonomous_system_number" : 3320,
3863 "autonomous_system_organization" : "Deutsche Telekom AG",
3864 "isp" : "Deutsche Telekom AG",
3865 "organization" : "Deutsche Telekom AG"
3866 }
3867 },
3868 {
3869 "::80.64.0.0/116" : {
3870 "isp" : "TDC Oy Finland",
3871 "organization" : "TDC Oy Finland"
3872 }
3873 },
3874 {
3875 "::80.64.192.0/116" : {
3876 "isp" : "DataGuard AS",
3877 "organization" : "DataGuard AS"
3878 }
3879 },
3880 {
3881 "::80.65.32.0/116" : {
3882 "isp" : "WRonline GbR",
3883 "organization" : "WRonline GbR"
3884 }
3885 },
3886 {
3887 "::80.66.160.0/116" : {
3888 "isp" : "University of Jyvaskyla, Commercial Internet Servi",
3889 "organization" : "University of Jyvaskyla, Commercial Internet Servi"
3890 }
3891 },
3892 {
3893 "::80.71.224.0/116" : {
3894 "isp" : "Your Voice S.p.A.",
3895 "organization" : "Your Voice S.p.A."
3896 }
3897 },
3898 {
3899 "::80.75.224.0/116" : {
3900 "isp" : "Teleport Consulting & Systemmanagement GmbH",
3901 "organization" : "Teleport Consulting & Systemmanagement GmbH"
3902 }
3903 },
3904 {
3905 "::80.81.192.0/116" : {
3906 "isp" : "DE-CIX Management GmbH",
3907 "organization" : "DE-CIX Management GmbH"
3908 }
3909 },
3910 {
3911 "::80.128.0.0/107" : {
3912 "autonomous_system_number" : 3320,
3913 "autonomous_system_organization" : "Deutsche Telekom AG",
3914 "isp" : "Deutsche Telekom AG",
3915 "organization" : "Deutsche Telekom AG"
3916 }
3917 },
3918 {
3919 "::81.2.69.160/125" : {
3920 "isp" : "Andrews & Arnold Ltd",
3921 "organization" : "STONEHOUSE office network"
3922 }
3923 },
3924 {
3925 "::81.128.0.0/107" : {
3926 "autonomous_system_number" : 2856,
3927 "autonomous_system_organization" : "BTnet UK Regional network",
3928 "isp" : "BT",
3929 "organization" : "BT"
3930 }
3931 },
3932 {
3933 "::81.178.22.65/128" : {
3934 "organization" : "Caravan Guard Ltd"
3935 }
3936 },
3937 {
3938 "::82.0.0.0/107" : {
3939 "isp" : "Virgin Media",
3940 "organization" : "Virgin Media"
3941 }
3942 },
3943 {
3944 "::82.99.0.0/116" : {
3945 "autonomous_system_number" : 12552,
3946 "autonomous_system_organization" : "IP-Only"
3947 }
3948 },
3949 {
3950 "::82.99.16.0/120" : {
3951 "autonomous_system_number" : 12552,
3952 "autonomous_system_organization" : "IP-Only"
3953 }
3954 },
3955 {
3956 "::82.99.17.0/122" : {
3957 "autonomous_system_number" : 12552,
3958 "autonomous_system_organization" : "IP-Only"
3959 }
3960 },
3961 {
3962 "::82.99.17.64/123" : {
3963 "autonomous_system_number" : 12552,
3964 "autonomous_system_organization" : "IP-Only"
3965 }
3966 },
3967 {
3968 "::82.99.17.96/123" : {
3969 "autonomous_system_number" : 12552,
3970 "autonomous_system_organization" : "IP-Only",
3971 "isp" : "IP-Only Telecommunication Networks AB",
3972 "organization" : "Effectiv Solutions"
3973 }
3974 },
3975 {
3976 "::82.99.17.128/121" : {
3977 "autonomous_system_number" : 12552,
3978 "autonomous_system_organization" : "IP-Only"
3979 }
3980 },
3981 {
3982 "::82.99.18.0/119" : {
3983 "autonomous_system_number" : 12552,
3984 "autonomous_system_organization" : "IP-Only"
3985 }
3986 },
3987 {
3988 "::82.99.20.0/118" : {
3989 "autonomous_system_number" : 12552,
3990 "autonomous_system_organization" : "IP-Only"
3991 }
3992 },
3993 {
3994 "::82.99.24.0/117" : {
3995 "autonomous_system_number" : 12552,
3996 "autonomous_system_organization" : "IP-Only"
3997 }
3998 },
3999 {
4000 "::82.99.32.0/115" : {
4001 "autonomous_system_number" : 12552,
4002 "autonomous_system_organization" : "IP-Only"
4003 }
4004 },
4005 {
4006 "::82.137.8.0/117" : {
4007 "isp" : "RCS & RDS Mobile"
4008 }
4009 },
4010 {
4011 "::82.224.0.0/107" : {
4012 "isp" : "Free SAS",
4013 "organization" : "Free SAS"
4014 }
4015 },
4016 {
4017 "::83.0.0.0/107" : {
4018 "isp" : "Orange Polska Spolka Akcyjna",
4019 "organization" : "Orange Polska Spolka Akcyjna"
4020 }
4021 },
4022 {
4023 "::83.100.215.128/121" : {
4024 "organization" : "Fibrestream Limited"
4025 }
4026 },
4027 {
4028 "::83.206.10.0/119" : {
4029 "autonomous_system_number" : 3215,
4030 "autonomous_system_organization" : "France Telecom - Orange"
4031 }
4032 },
4033 {
4034 "::83.206.12.0/118" : {
4035 "autonomous_system_number" : 3215,
4036 "autonomous_system_organization" : "France Telecom - Orange"
4037 }
4038 },
4039 {
4040 "::83.206.16.0/116" : {
4041 "autonomous_system_number" : 3215,
4042 "autonomous_system_organization" : "France Telecom - Orange"
4043 }
4044 },
4045 {
4046 "::83.206.32.0/118" : {
4047 "autonomous_system_number" : 3215,
4048 "autonomous_system_organization" : "France Telecom - Orange"
4049 }
4050 },
4051 {
4052 "::83.206.36.0/121" : {
4053 "autonomous_system_number" : 3215,
4054 "autonomous_system_organization" : "France Telecom - Orange"
4055 }
4056 },
4057 {
4058 "::83.206.36.128/122" : {
4059 "autonomous_system_number" : 3215,
4060 "autonomous_system_organization" : "France Telecom - Orange"
4061 }
4062 },
4063 {
4064 "::83.206.36.192/123" : {
4065 "autonomous_system_number" : 3215,
4066 "autonomous_system_organization" : "France Telecom - Orange"
4067 }
4068 },
4069 {
4070 "::83.206.36.224/125" : {
4071 "autonomous_system_number" : 3215,
4072 "autonomous_system_organization" : "France Telecom - Orange",
4073 "isp" : "France Telecom",
4074 "organization" : "Transports Routiers De Marchandises"
4075 }
4076 },
4077 {
4078 "::83.206.36.232/125" : {
4079 "autonomous_system_number" : 3215,
4080 "autonomous_system_organization" : "France Telecom - Orange"
4081 }
4082 },
4083 {
4084 "::83.206.36.240/124" : {
4085 "autonomous_system_number" : 3215,
4086 "autonomous_system_organization" : "France Telecom - Orange"
4087 }
4088 },
4089 {
4090 "::83.206.37.0/120" : {
4091 "autonomous_system_number" : 3215,
4092 "autonomous_system_organization" : "France Telecom - Orange"
4093 }
4094 },
4095 {
4096 "::83.206.38.0/119" : {
4097 "autonomous_system_number" : 3215,
4098 "autonomous_system_organization" : "France Telecom - Orange"
4099 }
4100 },
4101 {
4102 "::83.206.40.0/117" : {
4103 "autonomous_system_number" : 3215,
4104 "autonomous_system_organization" : "France Telecom - Orange"
4105 }
4106 },
4107 {
4108 "::83.206.48.0/116" : {
4109 "autonomous_system_number" : 3215,
4110 "autonomous_system_organization" : "France Telecom - Orange"
4111 }
4112 },
4113 {
4114 "::83.206.64.0/119" : {
4115 "autonomous_system_number" : 3215,
4116 "autonomous_system_organization" : "France Telecom - Orange"
4117 }
4118 },
4119 {
4120 "::84.128.0.0/106" : {
4121 "autonomous_system_number" : 3320,
4122 "autonomous_system_organization" : "Deutsche Telekom AG",
4123 "isp" : "Deutsche Telekom AG",
4124 "organization" : "Deutsche Telekom AG"
4125 }
4126 },
4127 {
4128 "::84.234.48.0/116" : {
4129 "isp" : "Linkservice, Ltd"
4130 }
4131 },
4132 {
4133 "::85.88.0.0/119" : {
4134 "autonomous_system_number" : 33984,
4135 "autonomous_system_organization" : "Surfplanet GmbH"
4136 }
4137 },
4138 {
4139 "::85.88.2.0/121" : {
4140 "autonomous_system_number" : 33984,
4141 "autonomous_system_organization" : "Surfplanet GmbH"
4142 }
4143 },
4144 {
4145 "::85.88.2.128/122" : {
4146 "autonomous_system_number" : 33984,
4147 "autonomous_system_organization" : "Surfplanet GmbH"
4148 }
4149 },
4150 {
4151 "::85.88.2.192/123" : {
4152 "autonomous_system_number" : 33984,
4153 "autonomous_system_organization" : "Surfplanet GmbH"
4154 }
4155 },
4156 {
4157 "::85.88.2.224/123" : {
4158 "autonomous_system_number" : 33984,
4159 "autonomous_system_organization" : "Surfplanet GmbH",
4160 "isp" : "Surfplanet GmbH",
4161 "organization" : "Surfplanet GmbH"
4162 }
4163 },
4164 {
4165 "::85.88.3.0/120" : {
4166 "autonomous_system_number" : 33984,
4167 "autonomous_system_organization" : "Surfplanet GmbH"
4168 }
4169 },
4170 {
4171 "::85.88.4.0/118" : {
4172 "autonomous_system_number" : 33984,
4173 "autonomous_system_organization" : "Surfplanet GmbH"
4174 }
4175 },
4176 {
4177 "::85.88.8.0/117" : {
4178 "autonomous_system_number" : 33984,
4179 "autonomous_system_organization" : "Surfplanet GmbH"
4180 }
4181 },
4182 {
4183 "::85.88.16.0/116" : {
4184 "autonomous_system_number" : 33984,
4185 "autonomous_system_organization" : "Surfplanet GmbH"
4186 }
4187 },
4188 {
4189 "::86.0.0.0/107" : {
4190 "isp" : "Virgin Media",
4191 "organization" : "Virgin Media"
4192 }
4193 },
4194 {
4195 "::86.105.244.0/118" : {
4196 "organization" : "2K Telecom SRL"
4197 }
4198 },
4199 {
4200 "::86.128.0.0/106" : {
4201 "isp" : "BT",
4202 "organization" : "BT"
4203 }
4204 },
4205 {
4206 "::87.128.0.0/106" : {
4207 "autonomous_system_number" : 3320,
4208 "autonomous_system_organization" : "Deutsche Telekom AG",
4209 "isp" : "Deutsche Telekom AG",
4210 "organization" : "Deutsche Telekom AG"
4211 }
4212 },
4213 {
4214 "::87.229.77.0/120" : {
4215 "isp" : "SzerverPlex Ltd."
4216 }
4217 },
4218 {
4219 "::88.160.0.0/107" : {
4220 "isp" : "Free SAS",
4221 "organization" : "Free SAS"
4222 }
4223 },
4224 {
4225 "::89.45.176.0/116" : {
4226 "organization" : "2K Telecom SRL"
4227 }
4228 },
4229 {
4230 "::89.80.0.0/109" : {
4231 "autonomous_system_number" : 5410,
4232 "autonomous_system_organization" : "Bouygues Telecom ISP"
4233 }
4234 },
4235 {
4236 "::89.88.0.0/110" : {
4237 "autonomous_system_number" : 5410,
4238 "autonomous_system_organization" : "Bouygues Telecom ISP"
4239 }
4240 },
4241 {
4242 "::89.92.0.0/113" : {
4243 "autonomous_system_number" : 5410,
4244 "autonomous_system_organization" : "Bouygues Telecom ISP"
4245 }
4246 },
4247 {
4248 "::89.92.128.0/114" : {
4249 "autonomous_system_number" : 5410,
4250 "autonomous_system_organization" : "Bouygues Telecom ISP"
4251 }
4252 },
4253 {
4254 "::89.92.192.0/116" : {
4255 "autonomous_system_number" : 5410,
4256 "autonomous_system_organization" : "Bouygues Telecom ISP"
4257 }
4258 },
4259 {
4260 "::89.92.208.0/118" : {
4261 "autonomous_system_number" : 5410,
4262 "autonomous_system_organization" : "Bouygues Telecom ISP"
4263 }
4264 },
4265 {
4266 "::89.92.212.0/119" : {
4267 "autonomous_system_number" : 5410,
4268 "autonomous_system_organization" : "Bouygues Telecom ISP",
4269 "isp" : "Bouygues Telecom",
4270 "organization" : "Bouygues Telecom"
4271 }
4272 },
4273 {
4274 "::89.92.214.0/119" : {
4275 "autonomous_system_number" : 5410,
4276 "autonomous_system_organization" : "Bouygues Telecom ISP"
4277 }
4278 },
4279 {
4280 "::89.92.216.0/117" : {
4281 "autonomous_system_number" : 5410,
4282 "autonomous_system_organization" : "Bouygues Telecom ISP"
4283 }
4284 },
4285 {
4286 "::89.92.224.0/115" : {
4287 "autonomous_system_number" : 5410,
4288 "autonomous_system_organization" : "Bouygues Telecom ISP"
4289 }
4290 },
4291 {
4292 "::89.93.0.0/112" : {
4293 "autonomous_system_number" : 5410,
4294 "autonomous_system_organization" : "Bouygues Telecom ISP"
4295 }
4296 },
4297 {
4298 "::89.94.0.0/111" : {
4299 "autonomous_system_number" : 5410,
4300 "autonomous_system_organization" : "Bouygues Telecom ISP"
4301 }
4302 },
4303 {
4304 "::89.140.209.0/120" : {
4305 "organization" : "WICO"
4306 }
4307 },
4308 {
4309 "::89.160.0.0/116" : {
4310 "autonomous_system_number" : 29518,
4311 "autonomous_system_organization" : "Bredband2 AB"
4312 }
4313 },
4314 {
4315 "::89.160.16.0/118" : {
4316 "autonomous_system_number" : 29518,
4317 "autonomous_system_organization" : "Bredband2 AB"
4318 }
4319 },
4320 {
4321 "::89.160.20.0/122" : {
4322 "autonomous_system_number" : 29518,
4323 "autonomous_system_organization" : "Bredband2 AB"
4324 }
4325 },
4326 {
4327 "::89.160.20.64/123" : {
4328 "autonomous_system_number" : 29518,
4329 "autonomous_system_organization" : "Bredband2 AB"
4330 }
4331 },
4332 {
4333 "::89.160.20.96/124" : {
4334 "autonomous_system_number" : 29518,
4335 "autonomous_system_organization" : "Bredband2 AB"
4336 }
4337 },
4338 {
4339 "::89.160.20.112/125" : {
4340 "autonomous_system_number" : 29518,
4341 "autonomous_system_organization" : "Bredband2 AB",
4342 "isp" : "Bredband2 AB",
4343 "organization" : "Bevtec"
4344 }
4345 },
4346 {
4347 "::89.160.20.120/125" : {
4348 "autonomous_system_number" : 29518,
4349 "autonomous_system_organization" : "Bredband2 AB"
4350 }
4351 },
4352 {
4353 "::89.160.20.128/121" : {
4354 "autonomous_system_number" : 29518,
4355 "autonomous_system_organization" : "Bredband2 AB"
4356 }
4357 },
4358 {
4359 "::89.160.21.0/120" : {
4360 "autonomous_system_number" : 29518,
4361 "autonomous_system_organization" : "Bredband2 AB"
4362 }
4363 },
4364 {
4365 "::89.160.22.0/119" : {
4366 "autonomous_system_number" : 29518,
4367 "autonomous_system_organization" : "Bredband2 AB"
4368 }
4369 },
4370 {
4371 "::89.160.24.0/117" : {
4372 "autonomous_system_number" : 29518,
4373 "autonomous_system_organization" : "Bredband2 AB"
4374 }
4375 },
4376 {
4377 "::89.160.32.0/115" : {
4378 "autonomous_system_number" : 29518,
4379 "autonomous_system_organization" : "Bredband2 AB"
4380 }
4381 },
4382 {
4383 "::89.160.64.0/114" : {
4384 "autonomous_system_number" : 29518,
4385 "autonomous_system_organization" : "Bredband2 AB"
4386 }
4387 },
4388 {
4389 "::89.187.32.0/115" : {
4390 "isp" : "Monitoring, PA"
4391 }
4392 },
4393 {
4394 "::91.0.0.0/106" : {
4395 "autonomous_system_number" : 3320,
4396 "autonomous_system_organization" : "Deutsche Telekom AG",
4397 "isp" : "Deutsche Telekom AG",
4398 "organization" : "Deutsche Telekom AG"
4399 }
4400 },
4401 {
4402 "::91.204.152.0/118" : {
4403 "organization" : "X-Com Partners"
4404 }
4405 },
4406 {
4407 "::91.211.200.0/118" : {
4408 "isp" : "Specialist Ltd."
4409 }
4410 },
4411 {
4412 "::91.223.175.0/120" : {
4413 "organization" : "DATA-COM Piotr Data"
4414 }
4415 },
4416 {
4417 "::91.225.116.0/118" : {
4418 "organization" : "RostNet"
4419 }
4420 },
4421 {
4422 "::91.231.240.0/120" : {
4423 "organization" : "TELL-NET"
4424 }
4425 },
4426 {
4427 "::91.236.68.0/118" : {
4428 "isp" : "Air-Net Elektronik"
4429 }
4430 },
4431 {
4432 "::91.238.12.0/118" : {
4433 "isp" : "Linkservice, Ltd"
4434 }
4435 },
4436 {
4437 "::93.170.6.0/120" : {
4438 "isp" : "VHG"
4439 }
4440 },
4441 {
4442 "::93.183.128.0/115" : {
4443 "isp" : "ESCOM Ltd."
4444 }
4445 },
4446 {
4447 "::93.192.0.0/106" : {
4448 "autonomous_system_number" : 3320,
4449 "autonomous_system_organization" : "Deutsche Telekom AG",
4450 "isp" : "Deutsche Telekom AG",
4451 "organization" : "Deutsche Telekom AG"
4452 }
4453 },
4454 {
4455 "::94.103.0.0/116" : {
4456 "isp" : "Monitoring, PA"
4457 }
4458 },
4459 {
4460 "::94.156.200.0/117" : {
4461 "organization" : "Linkplus"
4462 }
4463 },
4464 {
4465 "::94.199.176.0/119" : {
4466 "isp" : "SzerverPlex Ltd."
4467 }
4468 },
4469 {
4470 "::94.243.192.0/116" : {
4471 "organization" : "It Region"
4472 }
4473 },
4474 {
4475 "::95.167.144.0/118" : {
4476 "organization" : "Internet67"
4477 }
4478 },
4479 {
4480 "::96.128.0.0/106" : {
4481 "autonomous_system_number" : 7922,
4482 "autonomous_system_organization" : "Comcast Cable Communications, Inc.",
4483 "isp" : "Comcast Cable",
4484 "organization" : "Comcast Cable"
4485 }
4486 },
4487 {
4488 "::97.0.0.0/106" : {
4489 "autonomous_system_number" : 6167,
4490 "autonomous_system_organization" : "Cellco Partnership DBA Verizon Wireless",
4491 "isp" : "Verizon Wireless",
4492 "organization" : "Verizon Wireless"
4493 }
4494 },
4495 {
4496 "::97.128.0.0/105" : {
4497 "autonomous_system_number" : 6167,
4498 "autonomous_system_organization" : "Cellco Partnership DBA Verizon Wireless",
4499 "isp" : "Verizon Wireless",
4500 "organization" : "Verizon Wireless"
4501 }
4502 },
4503 {
4504 "::98.192.0.0/106" : {
4505 "autonomous_system_number" : 7922,
4506 "autonomous_system_organization" : "Comcast Cable Communications, Inc.",
4507 "isp" : "Comcast Cable",
4508 "organization" : "Comcast Cable"
4509 }
4510 },
4511 {
4512 "::100.43.128.0/120" : {
4513 "isp" : "Firecold_Inc",
4514 "organization" : "Firecold_Inc"
4515 }
4516 },
4517 {
4518 "::100.43.129.0/122" : {
4519 "isp" : "bernice_ulloa",
4520 "organization" : "bernice_ulloa"
4521 }
4522 },
4523 {
4524 "::100.43.129.64/123" : {
4525 "isp" : "cheng_shih",
4526 "organization" : "cheng_shih"
4527 }
4528 },
4529 {
4530 "::100.43.129.96/123" : {
4531 "isp" : "loránd_csapó",
4532 "organization" : "loránd_csapó"
4533 }
4534 },
4535 {
4536 "::100.43.129.128/124" : {
4537 "isp" : "dewei_feng",
4538 "organization" : "dewei_feng"
4539 }
4540 },
4541 {
4542 "::100.43.129.144/124" : {
4543 "isp" : "radoslav_ja?ar",
4544 "organization" : "radoslav_ja?ar"
4545 }
4546 },
4547 {
4548 "::100.43.129.160/124" : {
4549 "isp" : "jakub_henderson",
4550 "organization" : "jakub_henderson"
4551 }
4552 },
4553 {
4554 "::100.43.129.176/124" : {
4555 "isp" : "elisa_blom",
4556 "organization" : "elisa_blom"
4557 }
4558 },
4559 {
4560 "::100.43.129.192/125" : {
4561 "isp" : "gertrude_burnham",
4562 "organization" : "gertrude_burnham"
4563 }
4564 },
4565 {
4566 "::100.43.129.200/125" : {
4567 "isp" : "mariam_lovett",
4568 "organization" : "mariam_lovett"
4569 }
4570 },
4571 {
4572 "::100.43.129.208/125" : {
4573 "isp" : "nicolas_correia",
4574 "organization" : "nicolas_correia"
4575 }
4576 },
4577 {
4578 "::100.43.129.224/125" : {
4579 "isp" : "rostislav_sou?ek",
4580 "organization" : "rostislav_sou?ek"
4581 }
4582 },
4583 {
4584 "::100.43.129.232/125" : {
4585 "isp" : "rinkashijikashikuchi_",
4586 "organization" : "rinkashijikashikuchi_"
4587 }
4588 },
4589 {
4590 "::100.43.129.240/125" : {
4591 "isp" : "huân_??",
4592 "organization" : "huân_??"
4593 }
4594 },
4595 {
4596 "::100.43.129.248/125" : {
4597 "isp" : "hooriya_harb",
4598 "organization" : "hooriya_harb"
4599 }
4600 },
4601 {
4602 "::100.43.130.0/121" : {
4603 "isp" : "koufuu_iwasaki",
4604 "organization" : "koufuu_iwasaki"
4605 }
4606 },
4607 {
4608 "::100.43.130.128/123" : {
4609 "isp" : "ashley_nuckols",
4610 "organization" : "ashley_nuckols"
4611 }
4612 },
4613 {
4614 "::100.43.130.160/123" : {
4615 "isp" : "julian_barbosa",
4616 "organization" : "julian_barbosa"
4617 }
4618 },
4619 {
4620 "::100.43.130.192/123" : {
4621 "isp" : "dora_barker",
4622 "organization" : "dora_barker"
4623 }
4624 },
4625 {
4626 "::100.43.130.224/123" : {
4627 "isp" : "ema_vörös",
4628 "organization" : "ema_vörös"
4629 }
4630 },
4631 {
4632 "::100.43.131.0/121" : {
4633 "isp" : "kang_ts'ai",
4634 "organization" : "kang_ts'ai"
4635 }
4636 },
4637 {
4638 "::100.43.131.128/121" : {
4639 "isp" : "dominik_bognár",
4640 "organization" : "dominik_bognár"
4641 }
4642 },
4643 {
4644 "::100.43.132.0/121" : {
4645 "isp" : "lahbib_coenen",
4646 "organization" : "lahbib_coenen"
4647 }
4648 },
4649 {
4650 "::100.43.132.128/124" : {
4651 "isp" : "markus_jones",
4652 "organization" : "markus_jones"
4653 }
4654 },
4655 {
4656 "::100.43.132.144/124" : {
4657 "isp" : "tình_hàn",
4658 "organization" : "tình_hàn"
4659 }
4660 },
4661 {
4662 "::100.43.132.160/124" : {
4663 "isp" : "luana_beneventi",
4664 "organization" : "luana_beneventi"
4665 }
4666 },
4667 {
4668 "::100.43.132.176/124" : {
4669 "isp" : "alec_bigley",
4670 "organization" : "alec_bigley"
4671 }
4672 },
4673 {
4674 "::100.43.132.192/124" : {
4675 "isp" : "walif_boutros",
4676 "organization" : "walif_boutros"
4677 }
4678 },
4679 {
4680 "::100.43.132.208/124" : {
4681 "isp" : "freddy_hedlund",
4682 "organization" : "freddy_hedlund"
4683 }
4684 },
4685 {
4686 "::100.43.132.224/124" : {
4687 "isp" : "bernice_ulloa",
4688 "organization" : "bernice_ulloa"
4689 }
4690 },
4691 {
4692 "::100.43.132.240/124" : {
4693 "isp" : "frigg_torland",
4694 "organization" : "frigg_torland"
4695 }
4696 },
4697 {
4698 "::100.43.133.0/122" : {
4699 "isp" : "gergely_csorba",
4700 "organization" : "gergely_csorba"
4701 }
4702 },
4703 {
4704 "::100.43.133.64/123" : {
4705 "isp" : "aglae_aguilar",
4706 "organization" : "aglae_aguilar"
4707 }
4708 },
4709 {
4710 "::100.43.133.96/124" : {
4711 "isp" : "jeannine_lambert",
4712 "organization" : "jeannine_lambert"
4713 }
4714 },
4715 {
4716 "::100.43.133.112/124" : {
4717 "isp" : "sandra_sundström",
4718 "organization" : "sandra_sundström"
4719 }
4720 },
4721 {
4722 "::100.43.133.128/124" : {
4723 "isp" : "teegan_johnston",
4724 "organization" : "teegan_johnston"
4725 }
4726 },
4727 {
4728 "::100.43.133.144/124" : {
4729 "isp" : "pinabel_tremblay",
4730 "organization" : "pinabel_tremblay"
4731 }
4732 },
4733 {
4734 "::100.43.133.160/124" : {
4735 "isp" : "ptolomeo_alcalá",
4736 "organization" : "ptolomeo_alcalá"
4737 }
4738 },
4739 {
4740 "::100.43.133.176/124" : {
4741 "isp" : "guang_ch'ien",
4742 "organization" : "guang_ch'ien"
4743 }
4744 },
4745 {
4746 "::100.43.133.192/124" : {
4747 "isp" : "grace_hardess",
4748 "organization" : "grace_hardess"
4749 }
4750 },
4751 {
4752 "::100.43.133.208/125" : {
4753 "isp" : "walerian_król",
4754 "organization" : "walerian_król"
4755 }
4756 },
4757 {
4758 "::100.43.133.216/125" : {
4759 "isp" : "walerian_król",
4760 "organization" : "emma_paulsen"
4761 }
4762 },
4763 {
4764 "::100.43.133.224/125" : {
4765 "isp" : "julia_wulf",
4766 "organization" : "julia_wulf"
4767 }
4768 },
4769 {
4770 "::100.43.133.232/125" : {
4771 "isp" : "joacim_lindgren",
4772 "organization" : "joacim_lindgren"
4773 }
4774 },
4775 {
4776 "::100.43.133.248/125" : {
4777 "isp" : "qing_yuan_ho",
4778 "organization" : "qing_yuan_ho"
4779 }
4780 },
4781 {
4782 "::100.43.134.0/121" : {
4783 "isp" : "ferrau_chicoine",
4784 "organization" : "ferrau_chicoine"
4785 }
4786 },
4787 {
4788 "::100.43.134.128/124" : {
4789 "isp" : "kenneth_hix",
4790 "organization" : "kenneth_hix"
4791 }
4792 },
4793 {
4794 "::100.43.134.144/124" : {
4795 "isp" : "lok_lu",
4796 "organization" : "lok_lu"
4797 }
4798 },
4799 {
4800 "::100.43.134.160/124" : {
4801 "isp" : "martino_marcelo",
4802 "organization" : "martino_marcelo"
4803 }
4804 },
4805 {
4806 "::100.43.134.176/124" : {
4807 "isp" : "kevin_lucio",
4808 "organization" : "kevin_lucio"
4809 }
4810 },
4811 {
4812 "::100.43.134.192/124" : {
4813 "isp" : "enza_folliero",
4814 "organization" : "enza_folliero"
4815 }
4816 },
4817 {
4818 "::100.43.134.208/124" : {
4819 "isp" : "miloslav_severa",
4820 "organization" : "miloslav_severa"
4821 }
4822 },
4823 {
4824 "::100.43.134.224/124" : {
4825 "isp" : "santana_de_munnik",
4826 "organization" : "santana_de_munnik"
4827 }
4828 },
4829 {
4830 "::100.43.134.240/124" : {
4831 "isp" : "yasunori_kotani",
4832 "organization" : "yasunori_kotani"
4833 }
4834 },
4835 {
4836 "::100.43.135.0/122" : {
4837 "isp" : "henry_matthews",
4838 "organization" : "henry_matthews"
4839 }
4840 },
4841 {
4842 "::100.43.135.64/123" : {
4843 "isp" : "mirikashitakuari_",
4844 "organization" : "mirikashitakuari_"
4845 }
4846 },
4847 {
4848 "::100.43.135.96/124" : {
4849 "isp" : "billy_watkins",
4850 "organization" : "billy_watkins"
4851 }
4852 },
4853 {
4854 "::100.43.135.112/124" : {
4855 "isp" : "júlia_azevedo",
4856 "organization" : "júlia_azevedo"
4857 }
4858 },
4859 {
4860 "::100.43.135.128/124" : {
4861 "isp" : "jun_liao",
4862 "organization" : "jun_liao"
4863 }
4864 },
4865 {
4866 "::100.43.135.144/124" : {
4867 "isp" : "yi_jie_p'eng",
4868 "organization" : "yi_jie_p'eng"
4869 }
4870 },
4871 {
4872 "::100.43.135.160/124" : {
4873 "isp" : "gerlac_tijerina",
4874 "organization" : "gerlac_tijerina"
4875 }
4876 },
4877 {
4878 "::100.43.135.176/124" : {
4879 "isp" : "yuriy_kvarda",
4880 "organization" : "yuriy_kvarda"
4881 }
4882 },
4883 {
4884 "::100.43.135.192/124" : {
4885 "isp" : "châu_l?u",
4886 "organization" : "châu_l?u"
4887 }
4888 },
4889 {
4890 "::100.43.135.208/125" : {
4891 "isp" : "christina_downing",
4892 "organization" : "christina_downing"
4893 }
4894 },
4895 {
4896 "::100.43.135.216/125" : {
4897 "isp" : "christina_downing",
4898 "organization" : "christian_hallen"
4899 }
4900 },
4901 {
4902 "::100.43.135.224/125" : {
4903 "isp" : "konrad_karlsson",
4904 "organization" : "konrad_karlsson"
4905 }
4906 },
4907 {
4908 "::100.43.135.232/125" : {
4909 "isp" : "malcolm_isaksson",
4910 "organization" : "malcolm_isaksson"
4911 }
4912 },
4913 {
4914 "::100.43.135.248/125" : {
4915 "isp" : "fábio_castro",
4916 "organization" : "fábio_castro"
4917 }
4918 },
4919 {
4920 "::100.43.136.0/124" : {
4921 "isp" : "pío_meléndez",
4922 "organization" : "pío_meléndez"
4923 }
4924 },
4925 {
4926 "::100.43.136.16/124" : {
4927 "isp" : "max_austerlitz",
4928 "organization" : "max_austerlitz"
4929 }
4930 },
4931 {
4932 "::100.43.136.32/124" : {
4933 "isp" : "george_sanchez",
4934 "organization" : "george_sanchez"
4935 }
4936 },
4937 {
4938 "::100.43.136.48/124" : {
4939 "isp" : "ricard_bekken",
4940 "organization" : "ricard_bekken"
4941 }
4942 },
4943 {
4944 "::100.43.136.64/124" : {
4945 "isp" : "dieter_fisher",
4946 "organization" : "dieter_fisher"
4947 }
4948 },
4949 {
4950 "::100.43.136.80/124" : {
4951 "isp" : "fiddah_kassis",
4952 "organization" : "fiddah_kassis"
4953 }
4954 },
4955 {
4956 "::100.43.136.96/124" : {
4957 "isp" : "lahbib_coenen",
4958 "organization" : "lahbib_coenen"
4959 }
4960 },
4961 {
4962 "::100.43.136.112/125" : {
4963 "isp" : "isa_touma",
4964 "organization" : "isa_touma"
4965 }
4966 },
4967 {
4968 "::100.43.136.120/125" : {
4969 "isp" : "adam_crouch",
4970 "organization" : "adam_crouch"
4971 }
4972 },
4973 {
4974 "::100.43.136.128/125" : {
4975 "isp" : "evelyn_dahl",
4976 "organization" : "evelyn_dahl"
4977 }
4978 },
4979 {
4980 "::100.43.136.144/125" : {
4981 "isp" : "fuse_nordlie",
4982 "organization" : "fuse_nordlie"
4983 }
4984 },
4985 {
4986 "::100.43.136.152/125" : {
4987 "isp" : "monika_jakobsson",
4988 "organization" : "monika_jakobsson"
4989 }
4990 },
4991 {
4992 "::100.43.136.160/125" : {
4993 "isp" : "korneliusz_kowalczyk",
4994 "organization" : "korneliusz_kowalczyk"
4995 }
4996 },
4997 {
4998 "::100.43.136.168/125" : {
4999 "isp" : "li_na_kê",
5000 "organization" : "li_na_kê"
5001 }
5002 },
5003 {
5004 "::100.43.136.176/125" : {
5005 "isp" : "gustava_monaldo",
5006 "organization" : "gustava_monaldo"
5007 }
5008 },
5009 {
5010 "::100.43.136.184/125" : {
5011 "isp" : "richard_best",
5012 "organization" : "richard_best"
5013 }
5014 },
5015 {
5016 "::100.43.136.192/125" : {
5017 "isp" : "dirk_daecher",
5018 "organization" : "dirk_daecher"
5019 }
5020 },
5021 {
5022 "::100.43.136.200/125" : {
5023 "isp" : "george_davis",
5024 "organization" : "george_davis"
5025 }
5026 },
5027 {
5028 "::100.43.136.208/125" : {
5029 "isp" : "takitatakikato_",
5030 "organization" : "takitatakikato_"
5031 }
5032 },
5033 {
5034 "::100.43.136.216/125" : {
5035 "isp" : "vsevolod_artemiev",
5036 "organization" : "vsevolod_artemiev"
5037 }
5038 },
5039 {
5040 "::100.43.136.224/125" : {
5041 "isp" : "rimomeikashite_",
5042 "organization" : "rimomeikashite_"
5043 }
5044 },
5045 {
5046 "::100.43.136.240/125" : {
5047 "isp" : "regõ_kultsár",
5048 "organization" : "regõ_kultsár"
5049 }
5050 },
5051 {
5052 "::100.43.136.248/125" : {
5053 "isp" : "turner_ménard",
5054 "organization" : "turner_ménard"
5055 }
5056 },
5057 {
5058 "::100.43.137.0/123" : {
5059 "isp" : "henio_zawadzki",
5060 "organization" : "henio_zawadzki"
5061 }
5062 },
5063 {
5064 "::100.43.137.112/125" : {
5065 "isp" : "zhu_tang",
5066 "organization" : "zhu_tang"
5067 }
5068 },
5069 {
5070 "::100.43.137.120/125" : {
5071 "isp" : "hakem_asfour",
5072 "organization" : "hakem_asfour"
5073 }
5074 },
5075 {
5076 "::100.43.137.128/125" : {
5077 "isp" : "michael_herring",
5078 "organization" : "michael_herring"
5079 }
5080 },
5081 {
5082 "::100.43.137.136/125" : {
5083 "isp" : "valeriya_lazareva",
5084 "organization" : "valeriya_lazareva"
5085 }
5086 },
5087 {
5088 "::100.43.137.144/125" : {
5089 "isp" : "leila_silva",
5090 "organization" : "leila_silva"
5091 }
5092 },
5093 {
5094 "::100.43.137.160/125" : {
5095 "isp" : "ignacy_sobczak",
5096 "organization" : "ignacy_sobczak"
5097 }
5098 },
5099 {
5100 "::100.43.137.168/125" : {
5101 "isp" : "sophie_lacharité",
5102 "organization" : "sophie_lacharité"
5103 }
5104 },
5105 {
5106 "::100.43.137.176/125" : {
5107 "isp" : "isaac_holmes",
5108 "organization" : "isaac_holmes"
5109 }
5110 },
5111 {
5112 "::101.0.0.0/118" : {
5113 "isp" : "China Telecom FUJIAN",
5114 "organization" : "China Telecom FUJIAN"
5115 }
5116 },
5117 {
5118 "::101.0.4.0/118" : {
5119 "isp" : "PT Universal Broadband",
5120 "organization" : "PT Universal Broadband"
5121 }
5122 },
5123 {
5124 "::101.0.32.0/115" : {
5125 "isp" : "Broadband Pacenet Pvt. Ltd",
5126 "organization" : "Broadband Pacenet Pvt. Ltd"
5127 }
5128 },
5129 {
5130 "::101.0.64.0/114" : {
5131 "isp" : "Digital Pacific Information Technology",
5132 "organization" : "Digital Pacific Information Technology"
5133 }
5134 },
5135 {
5136 "::101.0.128.0/113" : {
5137 "isp" : "Savecom International Inc.",
5138 "organization" : "Savecom International Inc."
5139 }
5140 },
5141 {
5142 "::101.1.4.0/118" : {
5143 "isp" : "Hong Kong Science Park",
5144 "organization" : "Hong Kong Science Park"
5145 }
5146 },
5147 {
5148 "::101.1.8.0/117" : {
5149 "isp" : "jeonju university",
5150 "organization" : "jeonju university"
5151 }
5152 },
5153 {
5154 "::101.1.64.0/114" : {
5155 "isp" : "Ehime Catv Co.,ltd.",
5156 "organization" : "Ehime Catv Co.,ltd."
5157 }
5158 },
5159 {
5160 "::101.1.128.0/113" : {
5161 "isp" : "STNet, Incorporated",
5162 "organization" : "STNet, Incorporated"
5163 }
5164 },
5165 {
5166 "::101.2.0.0/113" : {
5167 "isp" : "Unitech Wireless",
5168 "organization" : "Unitech Wireless"
5169 }
5170 },
5171 {
5172 "::101.2.128.0/115" : {
5173 "isp" : "Ehime Catv Co.,ltd.",
5174 "organization" : "Ehime Catv Co.,ltd."
5175 }
5176 },
5177 {
5178 "::101.2.160.0/117" : {
5179 "isp" : "Chittagong Online Limited.",
5180 "organization" : "Chittagong Online Limited."
5181 }
5182 },
5183 {
5184 "::101.2.172.0/118" : {
5185 "isp" : "China Telecom FUJIAN",
5186 "organization" : "China Telecom FUJIAN"
5187 }
5188 },
5189 {
5190 "::101.2.176.0/116" : {
5191 "isp" : "Bharti Airtel Lanka Pvt. Limited",
5192 "organization" : "Bharti Airtel Lanka Pvt. Limited"
5193 }
5194 },
5195 {
5196 "::101.2.192.0/114" : {
5197 "isp" : "Webcentral.com",
5198 "organization" : "Webcentral.com"
5199 }
5200 },
5201 {
5202 "::101.3.0.0/116" : {
5203 "isp" : "Global Mobile Corp.",
5204 "organization" : "Globalmobile"
5205 }
5206 },
5207 {
5208 "::101.3.16.0/116" : {
5209 "isp" : "Global Mobile Corp.",
5210 "organization" : "Global Mobile Corp."
5211 }
5212 },
5213 {
5214 "::101.3.32.0/115" : {
5215 "isp" : "Global Mobile Corp.",
5216 "organization" : "Global Mobile Corp."
5217 }
5218 },
5219 {
5220 "::101.3.64.0/114" : {
5221 "isp" : "Global Mobile Corp.",
5222 "organization" : "Global Mobile Corp."
5223 }
5224 },
5225 {
5226 "::101.3.128.0/113" : {
5227 "isp" : "Global Mobile Corp.",
5228 "organization" : "Global Mobile Corp."
5229 }
5230 },
5231 {
5232 "::101.4.0.0/112" : {
5233 "isp" : "China Education and Research Network",
5234 "organization" : "China Education and Research Network"
5235 }
5236 },
5237 {
5238 "::101.5.0.0/112" : {
5239 "isp" : "China Education and Research Network",
5240 "organization" : "Tsinghua University"
5241 }
5242 },
5243 {
5244 "::101.6.0.0/112" : {
5245 "isp" : "China Education and Research Network",
5246 "organization" : "China Education and Research Network"
5247 }
5248 },
5249 {
5250 "::101.7.0.0/113" : {
5251 "isp" : "China Education and Research Network",
5252 "organization" : "China Education and Research Network"
5253 }
5254 },
5255 {
5256 "::101.7.128.0/114" : {
5257 "isp" : "China Education and Research Network",
5258 "organization" : "China Education and Research Network"
5259 }
5260 },
5261 {
5262 "::101.7.192.0/115" : {
5263 "isp" : "China Education and Research Network",
5264 "organization" : "China Education and Research Network"
5265 }
5266 },
5267 {
5268 "::101.7.224.0/116" : {
5269 "isp" : "China Education and Research Network",
5270 "organization" : "China Education and Research Network"
5271 }
5272 },
5273 {
5274 "::101.7.240.0/116" : {
5275 "isp" : "China Education and Research Network",
5276 "organization" : "Shijiazhuang Netdingthing Technology Co.,Ltd"
5277 }
5278 },
5279 {
5280 "::101.8.0.0/109" : {
5281 "isp" : "Taiwan Mobile Co., Ltd.",
5282 "organization" : "Taiwan Mobile Co., Ltd."
5283 }
5284 },
5285 {
5286 "::101.16.0.0/108" : {
5287 "isp" : "China Unicom Hebei",
5288 "organization" : "China Unicom Hebei"
5289 }
5290 },
5291 {
5292 "::101.38.0.0/111" : {
5293 "isp" : "Changping District,Beijing",
5294 "organization" : "Changping District,Beijing"
5295 }
5296 },
5297 {
5298 "::101.40.0.0/111" : {
5299 "isp" : "Changping District,Beijing",
5300 "organization" : "Changping District,Beijing"
5301 }
5302 },
5303 {
5304 "::101.44.0.0/110" : {
5305 "isp" : "ChengDu Dr.Peng Telecom & Media Group Industry Co.",
5306 "organization" : "ChengDu Dr.Peng Telecom & Media Group Industry Co."
5307 }
5308 },
5309 {
5310 "::101.50.0.0/118" : {
5311 "isp" : "PT. Beon Intermedia",
5312 "organization" : "PT. Beon Intermedia"
5313 }
5314 },
5315 {
5316 "::101.50.16.0/116" : {
5317 "isp" : "PT. Mnet Indonesia",
5318 "organization" : "PT. Mnet Indonesia"
5319 }
5320 },
5321 {
5322 "::101.51.0.0/112" : {
5323 "isp" : "TOT Public Company Limited",
5324 "organization" : "TOT Public Company Limited"
5325 }
5326 },
5327 {
5328 "::101.53.64.0/115" : {
5329 "isp" : "INDICLUB",
5330 "organization" : "INDICLUB"
5331 }
5332 },
5333 {
5334 "::101.55.0.0/113" : {
5335 "isp" : "Korea Data Telecommunication Co., Ltd.",
5336 "organization" : "Korea Data Telecommunication Co., Ltd."
5337 }
5338 },
5339 {
5340 "::101.56.0.0/109" : {
5341 "isp" : "Reliance Communications",
5342 "organization" : "Reliance Communications"
5343 }
5344 },
5345 {
5346 "::101.64.0.0/109" : {
5347 "isp" : "UNICOM ZheJiang",
5348 "organization" : "UNICOM ZheJiang"
5349 }
5350 },
5351 {
5352 "::101.77.0.0/112" : {
5353 "isp" : "Jiangsu Electrical Technology Education Center",
5354 "organization" : "Jiangsu Electrical Technology Education Center"
5355 }
5356 },
5357 {
5358 "::101.78.8.0/117" : {
5359 "isp" : "Enterprise of Telecommunications Lao",
5360 "organization" : "Enterprise of Telecommunications Lao"
5361 }
5362 },
5363 {
5364 "::101.78.128.0/113" : {
5365 "isp" : "Wharf T&T Limited",
5366 "organization" : "Wharf T&T Limited"
5367 }
5368 },
5369 {
5370 "::101.79.0.0/112" : {
5371 "isp" : "HCLC",
5372 "organization" : "HCLC"
5373 }
5374 },
5375 {
5376 "::101.80.0.0/108" : {
5377 "isp" : "China Telecom SHANGHAI",
5378 "organization" : "China Telecom SHANGHAI"
5379 }
5380 },
5381 {
5382 "::101.98.0.0/112" : {
5383 "isp" : "CallPlus Services Limited",
5384 "organization" : "CallPlus Services Limited"
5385 }
5386 },
5387 {
5388 "::101.99.0.0/114" : {
5389 "isp" : "CMC Telecom Infrastructure Company",
5390 "organization" : "CMC Telecom Infrastructure Company"
5391 }
5392 },
5393 {
5394 "::101.99.128.0/113" : {
5395 "isp" : "Kuentos Communications, Inc.",
5396 "organization" : "Kuentos Communications, Inc."
5397 }
5398 },
5399 {
5400 "::101.100.0.0/112" : {
5401 "isp" : "Vector Communications Ltd",
5402 "organization" : "Vector Communications Ltd"
5403 }
5404 },
5405 {
5406 "::101.101.0.0/114" : {
5407 "isp" : "Office des Postes et des Telecomm. de Nouvelle Cal",
5408 "organization" : "Office des Postes et des Telecomm. de Nouvelle Cal"
5409 }
5410 },
5411 {
5412 "::101.101.112.0/116" : {
5413 "isp" : "China Telecom Guangdong",
5414 "organization" : "China Telecom Guangdong"
5415 }
5416 },
5417 {
5418 "::101.101.128.0/115" : {
5419 "isp" : "JNDINFO",
5420 "organization" : "JNDINFO"
5421 }
5422 },
5423 {
5424 "::101.101.160.0/116" : {
5425 "isp" : "JNDINFO",
5426 "organization" : "JND Communication"
5427 }
5428 },
5429 {
5430 "::101.101.176.0/116" : {
5431 "isp" : "JNDINFO",
5432 "organization" : "JNDINFO"
5433 }
5434 },
5435 {
5436 "::101.101.192.0/116" : {
5437 "isp" : "JNDINFO",
5438 "organization" : "JND Communication"
5439 }
5440 },
5441 {
5442 "::101.101.208.0/116" : {
5443 "isp" : "JNDINFO",
5444 "organization" : "JNDINFO"
5445 }
5446 },
5447 {
5448 "::101.101.224.0/115" : {
5449 "isp" : "JNDINFO",
5450 "organization" : "JNDINFO"
5451 }
5452 },
5453 {
5454 "::101.102.0.0/114" : {
5455 "isp" : "SANYO Information Technology Solutions Co., Ltd.",
5456 "organization" : "SANYO Information Technology Solutions Co., Ltd."
5457 }
5458 },
5459 {
5460 "::101.102.64.0/115" : {
5461 "isp" : "China Telecom Guangdong",
5462 "organization" : "China Telecom Guangdong"
5463 }
5464 },
5465 {
5466 "::101.102.112.0/116" : {
5467 "isp" : "China Telecom Guangdong",
5468 "organization" : "China Telecom Guangdong"
5469 }
5470 },
5471 {
5472 "::101.102.128.0/113" : {
5473 "isp" : "SOFTBANK TELECOM Corp.",
5474 "organization" : "SOFTBANK TELECOM Corp."
5475 }
5476 },
5477 {
5478 "::101.103.0.0/112" : {
5479 "isp" : "Telstra Internet",
5480 "organization" : "Telstra Internet"
5481 }
5482 },
5483 {
5484 "::101.104.0.0/110" : {
5485 "isp" : "Beijing Teletron Telecom Engineering Co., Ltd.",
5486 "organization" : "Beijing Teletron Telecom Engineering Co., Ltd."
5487 }
5488 },
5489 {
5490 "::101.108.0.0/111" : {
5491 "isp" : "TOT Public Company Limited",
5492 "organization" : "TOT Public Company Limited"
5493 }
5494 },
5495 {
5496 "::101.110.0.0/114" : {
5497 "isp" : "SOFTBANK TELECOM Corp.",
5498 "organization" : "SOFTBANK TELECOM Corp."
5499 }
5500 },
5501 {
5502 "::101.110.64.0/115" : {
5503 "isp" : "China Telecom Guangdong",
5504 "organization" : "China Telecom Guangdong"
5505 }
5506 },
5507 {
5508 "::101.110.128.0/113" : {
5509 "isp" : "NTT",
5510 "organization" : "NTT"
5511 }
5512 },
5513 {
5514 "::101.111.0.0/112" : {
5515 "isp" : "its communications Inc.",
5516 "organization" : "its communications Inc."
5517 }
5518 },
5519 {
5520 "::101.112.0.0/109" : {
5521 "isp" : "Vodafone Australia",
5522 "organization" : "Vodafone Australia"
5523 }
5524 },
5525 {
5526 "::101.120.0.0/110" : {
5527 "isp" : "Beijing Bosheng Technology Co., Ltd.",
5528 "organization" : "Beijing Bosheng Technology Co., Ltd."
5529 }
5530 },
5531 {
5532 "::101.124.0.0/111" : {
5533 "isp" : "KNET Techonlogy (BeiJing) Co.,Ltd.",
5534 "organization" : "KNET Techonlogy (BeiJing) Co.,Ltd."
5535 }
5536 },
5537 {
5538 "::101.126.0.0/112" : {
5539 "isp" : "Beijing Bitone United Networks Technology Service",
5540 "organization" : "Beijing Bitone United Networks Technology Service"
5541 }
5542 },
5543 {
5544 "::101.127.0.0/112" : {
5545 "isp" : "Renjiao International Technology Corporation Ltd",
5546 "organization" : "Renjiao International Technology Corporation Ltd"
5547 }
5548 },
5549 {
5550 "::101.128.32.0/115" : {
5551 "isp" : "China Telecom Guangdong",
5552 "organization" : "China Telecom Guangdong"
5553 }
5554 },
5555 {
5556 "::101.128.64.0/114" : {
5557 "isp" : "PT. Cyberindo Aditama",
5558 "organization" : "PT. Cyberindo Aditama"
5559 }
5560 },
5561 {
5562 "::101.128.128.0/113" : {
5563 "isp" : "Internet Initiative Japan Inc.",
5564 "organization" : "Internet Initiative Japan Inc."
5565 }
5566 },
5567 {
5568 "::101.129.0.0/112" : {
5569 "isp" : "China Central Television",
5570 "organization" : "China Central Television"
5571 }
5572 },
5573 {
5574 "::101.130.0.0/111" : {
5575 "isp" : "Shanghai Yixuan network technology CO.,LTD",
5576 "organization" : "Shanghai Yixuan network technology CO.,LTD"
5577 }
5578 },
5579 {
5580 "::101.132.0.0/110" : {
5581 "isp" : "BeiJing Kuandaitong Telecom Technology Co.,Ltd",
5582 "organization" : "BeiJing Kuandaitong Telecom Technology Co.,Ltd"
5583 }
5584 },
5585 {
5586 "::101.136.0.0/111" : {
5587 "isp" : "Asia Pacific On-Line Service Inc.",
5588 "organization" : "Asia Pacific On-Line Service Inc."
5589 }
5590 },
5591 {
5592 "::101.138.0.0/112" : {
5593 "isp" : "Asia Pacific On-Line Service Inc.",
5594 "organization" : "Asia Pacific Onlie Service Inc."
5595 }
5596 },
5597 {
5598 "::101.139.0.0/112" : {
5599 "isp" : "Asia Pacific On-Line Service Inc.",
5600 "organization" : "Asia Pacific On-Line Service Inc."
5601 }
5602 },
5603 {
5604 "::101.140.0.0/110" : {
5605 "isp" : "K-Opticom Corporation",
5606 "organization" : "K-Opticom Corporation"
5607 }
5608 },
5609 {
5610 "::101.144.0.0/108" : {
5611 "isp" : "China TieTong",
5612 "organization" : "China TieTong"
5613 }
5614 },
5615 {
5616 "::101.160.0.0/107" : {
5617 "isp" : "Telstra Internet",
5618 "organization" : "Telstra Internet"
5619 }
5620 },
5621 {
5622 "::101.192.0.0/110" : {
5623 "isp" : "BeiJing NBLLNET Co.,Ltd",
5624 "organization" : "BeiJing NBLLNET Co.,Ltd"
5625 }
5626 },
5627 {
5628 "::101.196.0.0/112" : {
5629 "isp" : "Beijing Yuexintong Information Technology Company",
5630 "organization" : "Shanghai Xindong Network Co,.Ltd."
5631 }
5632 },
5633 {
5634 "::101.197.0.0/112" : {
5635 "isp" : "Beijing Yuexintong Information Technology Company",
5636 "organization" : "Beijing Yuexintong Information Technology Company"
5637 }
5638 },
5639 {
5640 "::101.198.0.0/111" : {
5641 "isp" : "Beijing Yuexintong Information Technology Company",
5642 "organization" : "Beijing Yuexintong Information Technology Company"
5643 }
5644 },
5645 {
5646 "::101.200.0.0/111" : {
5647 "isp" : "KNET Techonlogy (BeiJing) Co.,Ltd.",
5648 "organization" : "KNET Techonlogy (BeiJing) Co.,Ltd."
5649 }
5650 },
5651 {
5652 "::101.202.0.0/112" : {
5653 "isp" : "Dreamline Co.",
5654 "organization" : "Dreamline Co."
5655 }
5656 },
5657 {
5658 "::101.203.0.0/113" : {
5659 "isp" : "eAccess Ltd.",
5660 "organization" : "eAccess Ltd."
5661 }
5662 },
5663 {
5664 "::101.203.128.0/115" : {
5665 "isp" : "China Telecom Guangdong",
5666 "organization" : "China Telecom Guangdong"
5667 }
5668 },
5669 {
5670 "::101.203.168.0/118" : {
5671 "isp" : "Universitas Negeri Yogyakarta",
5672 "organization" : "Universitas Negeri Yogyakarta"
5673 }
5674 },
5675 {
5676 "::101.203.192.0/114" : {
5677 "isp" : "Bit-isle",
5678 "organization" : "Bit-isle"
5679 }
5680 },
5681 {
5682 "::101.204.0.0/110" : {
5683 "isp" : "UNICOM Sichuan",
5684 "organization" : "UNICOM Sichuan"
5685 }
5686 },
5687 {
5688 "::101.208.0.0/111" : {
5689 "isp" : "Aircel Ltd.",
5690 "organization" : "Aircel gprs customer Delhi"
5691 }
5692 },
5693 {
5694 "::101.210.0.0/111" : {
5695 "isp" : "Aircel Ltd.",
5696 "organization" : "Aircel gprs customer Kolkata"
5697 }
5698 },
5699 {
5700 "::101.212.0.0/111" : {
5701 "isp" : "Aircel Ltd.",
5702 "organization" : "Aircel gprs customer Chennai"
5703 }
5704 },
5705 {
5706 "::101.214.0.0/111" : {
5707 "isp" : "Aircel Ltd.",
5708 "organization" : "Aircel gprs customer Hyderabad"
5709 }
5710 },
5711 {
5712 "::101.216.0.0/111" : {
5713 "isp" : "Aircel Ltd.",
5714 "organization" : "Aircel gprs customer Delhi"
5715 }
5716 },
5717 {
5718 "::101.218.0.0/111" : {
5719 "isp" : "Aircel Ltd.",
5720 "organization" : "Aircel GPRS Customer East"
5721 }
5722 },
5723 {
5724 "::101.220.0.0/111" : {
5725 "isp" : "Aircel Ltd.",
5726 "organization" : "Aircel GPRS Customer West"
5727 }
5728 },
5729 {
5730 "::101.222.0.0/111" : {
5731 "isp" : "Aircel Ltd.",
5732 "organization" : "Aircel GPRS Customer South"
5733 }
5734 },
5735 {
5736 "::101.224.0.0/109" : {
5737 "isp" : "China Telecom SHANGHAI",
5738 "organization" : "China Telecom SHANGHAI"
5739 }
5740 },
5741 {
5742 "::101.234.72.0/118" : {
5743 "isp" : "Sliced Tech Holdings Unit Trust",
5744 "organization" : "Sliced Tech Holdings Unit Trust"
5745 }
5746 },
5747 {
5748 "::101.235.0.0/115" : {
5749 "isp" : "C&M Communication Co.,Ltd.",
5750 "organization" : "C&M Communication Co.,Ltd."
5751 }
5752 },
5753 {
5754 "::101.235.48.0/116" : {
5755 "isp" : "C&M Communication Co.,Ltd.",
5756 "organization" : "C&M Communication Co.,Ltd."
5757 }
5758 },
5759 {
5760 "::101.235.64.0/115" : {
5761 "isp" : "C&M Communication Co.,Ltd.",
5762 "organization" : "C&M Communication Co.,Ltd."
5763 }
5764 },
5765 {
5766 "::101.235.96.0/116" : {
5767 "isp" : "C&M Communication Co.,Ltd.",
5768 "organization" : "C&M Communication Co.,Ltd."
5769 }
5770 },
5771 {
5772 "::101.235.176.0/116" : {
5773 "isp" : "C&M Communication Co.,Ltd.",
5774 "organization" : "C&M Communication Co.,Ltd."
5775 }
5776 },
5777 {
5778 "::101.240.0.0/110" : {
5779 "isp" : "Beijing Gehua Catv Network Co., Ltd.",
5780 "organization" : "Beijing Gehua Catv Network Co., Ltd."
5781 }
5782 },
5783 {
5784 "::101.255.0.0/112" : {
5785 "isp" : "PT Remala Abadi",
5786 "organization" : "PT Remala Abadi"
5787 }
5788 },
5789 {
5790 "::103.1.108.0/118" : {
5791 "isp" : "Simtronic Technologies Pty Ltd",
5792 "organization" : "Simtronic Technologies Pty Ltd"
5793 }
5794 },
5795 {
5796 "::103.1.124.0/118" : {
5797 "isp" : "Tata Indicom",
5798 "organization" : "Tata Indicom"
5799 }
5800 },
5801 {
5802 "::103.1.128.0/118" : {
5803 "isp" : "Fiserv India",
5804 "organization" : "Fiserv India"
5805 }
5806 },
5807 {
5808 "::103.1.136.0/118" : {
5809 "isp" : "MobileOne",
5810 "organization" : "MobileOne"
5811 }
5812 },
5813 {
5814 "::103.1.144.0/120" : {
5815 "isp" : "U Mobile Sdn Bhd",
5816 "organization" : "U Mobile Sdn Bhd"
5817 }
5818 },
5819 {
5820 "::103.1.146.0/120" : {
5821 "isp" : "U Mobile Sdn Bhd",
5822 "organization" : "U Mobile Sdn Bhd"
5823 }
5824 },
5825 {
5826 "::103.1.152.0/118" : {
5827 "isp" : "Hostemo Technology Sdn Bhd",
5828 "organization" : "Hostemo Technology Sdn Bhd"
5829 }
5830 },
5831 {
5832 "::103.1.164.0/118" : {
5833 "isp" : "Total Access Communication PLC",
5834 "organization" : "Total Access Communication PLC"
5835 }
5836 },
5837 {
5838 "::103.1.172.0/118" : {
5839 "isp" : "Godaddy.com",
5840 "organization" : "Godaddy.com"
5841 }
5842 },
5843 {
5844 "::103.1.180.0/118" : {
5845 "isp" : "Digicel Pacific Ltd",
5846 "organization" : "Digicel Pacific Ltd"
5847 }
5848 },
5849 {
5850 "::103.1.184.0/118" : {
5851 "isp" : "Mammoth Media Pty Ltd",
5852 "organization" : "Mammoth Media Pty Ltd"
5853 }
5854 },
5855 {
5856 "::103.1.188.0/118" : {
5857 "isp" : "Beagle Internet Pty Ltd",
5858 "organization" : "Beagle Internet Pty Ltd"
5859 }
5860 },
5861 {
5862 "::103.6.100.0/118" : {
5863 "isp" : "KINX",
5864 "organization" : "KINX"
5865 }
5866 },
5867 {
5868 "::103.9.32.0/118" : {
5869 "isp" : "AMWAYKOREA",
5870 "organization" : "AMWAYKOREA"
5871 }
5872 },
5873 {
5874 "::103.10.4.0/118" : {
5875 "isp" : "ASUSTek COMPUTER INC.",
5876 "organization" : "ASUSTek COMPUTER INC."
5877 }
5878 },
5879 {
5880 "::103.10.32.0/118" : {
5881 "isp" : "The Cavalry",
5882 "organization" : "The Cavalry"
5883 }
5884 },
5885 {
5886 "::103.10.44.0/118" : {
5887 "isp" : "Elementary IT & Communications Ltd",
5888 "organization" : "Elementary IT & Communications Ltd"
5889 }
5890 },
5891 {
5892 "::103.10.52.0/118" : {
5893 "isp" : "Drik ICT Ltd",
5894 "organization" : "Drik ICT Ltd"
5895 }
5896 },
5897 {
5898 "::103.10.64.0/118" : {
5899 "isp" : "Three Indonesia",
5900 "organization" : "Three Indonesia"
5901 }
5902 },
5903 {
5904 "::103.10.76.0/118" : {
5905 "isp" : "Augere Wireless Broadband Bangladesh Limited",
5906 "organization" : "Augere Wireless Broadband Bangladesh Limited"
5907 }
5908 },
5909 {
5910 "::103.10.84.0/118" : {
5911 "isp" : "Elink-space (Beijing) Technology Co,. Ltd '",
5912 "organization" : "Elink-space (Beijing) Technology Co,. Ltd '"
5913 }
5914 },
5915 {
5916 "::103.10.96.0/118" : {
5917 "isp" : "Neuviz (PT. Piranti Prestasi Informasi)",
5918 "organization" : "Neuviz (PT. Piranti Prestasi Informasi)"
5919 }
5920 },
5921 {
5922 "::103.10.104.0/118" : {
5923 "isp" : "Bogor Agricultural University",
5924 "organization" : "Bogor Agricultural University"
5925 }
5926 },
5927 {
5928 "::103.10.120.0/118" : {
5929 "isp" : "PT Sumber Data Indonesia",
5930 "organization" : "PT Sumber Data Indonesia"
5931 }
5932 },
5933 {
5934 "::103.10.132.0/118" : {
5935 "isp" : "Vainavi Industries Ltd.",
5936 "organization" : "Vainavi Industries Ltd."
5937 }
5938 },
5939 {
5940 "::103.10.144.0/120" : {
5941 "isp" : "Universitas Muhammadiyah Malang",
5942 "organization" : "Universitas Muhammadiyah Malang"
5943 }
5944 },
5945 {
5946 "::103.10.152.0/118" : {
5947 "isp" : "Meralco Avenue",
5948 "organization" : "Meralco Avenue"
5949 }
5950 },
5951 {
5952 "::103.10.169.0/120" : {
5953 "isp" : "Universitas Riau",
5954 "organization" : "Universitas Riau"
5955 }
5956 },
5957 {
5958 "::103.10.172.0/118" : {
5959 "isp" : "Wavecom Wireless Ltd",
5960 "organization" : "Wavecom Wireless Ltd"
5961 }
5962 },
5963 {
5964 "::103.10.176.0/118" : {
5965 "isp" : "Liberty Broadcasting Network Inc.",
5966 "organization" : "Liberty Broadcasting Network Inc."
5967 }
5968 },
5969 {
5970 "::103.10.196.0/120" : {
5971 "isp" : "Hostemo Technology Sdn Bhd",
5972 "organization" : "Hostemo Technology Sdn Bhd"
5973 }
5974 },
5975 {
5976 "::103.10.198.0/120" : {
5977 "isp" : "Hostemo Technology Sdn Bhd",
5978 "organization" : "Hostemo Technology Sdn Bhd"
5979 }
5980 },
5981 {
5982 "::103.10.208.0/118" : {
5983 "isp" : "Meghbela Cable & Broadband Services (P) Ltd",
5984 "organization" : "Meghbela Cable & Broadband Services (P) Ltd"
5985 }
5986 },
5987 {
5988 "::103.10.224.0/118" : {
5989 "isp" : "Indusind Media and Communications Ltd.",
5990 "organization" : "Indusind Media and Communications Ltd."
5991 }
5992 },
5993 {
5994 "::103.10.236.0/118" : {
5995 "isp" : "Goldfield Industrial Building",
5996 "organization" : "Goldfield Industrial Building"
5997 }
5998 },
5999 {
6000 "::103.10.248.0/118" : {
6001 "isp" : "Andheri East",
6002 "organization" : "Andheri East"
6003 }
6004 },
6005 {
6006 "::103.11.28.0/118" : {
6007 "isp" : "PT Sumber Data Indonesia",
6008 "organization" : "PT Sumber Data Indonesia"
6009 }
6010 },
6011 {
6012 "::103.11.52.0/118" : {
6013 "isp" : "RackCentral Pty Ltd",
6014 "organization" : "RackCentral Pty Ltd"
6015 }
6016 },
6017 {
6018 "::103.11.124.0/118" : {
6019 "isp" : "Unleash Computers Ltd",
6020 "organization" : "Unleash Computers Ltd"
6021 }
6022 },
6023 {
6024 "::103.11.152.0/118" : {
6025 "isp" : "Web Werks India Pvt.",
6026 "organization" : "Web Werks India Pvt."
6027 }
6028 },
6029 {
6030 "::103.11.172.0/118" : {
6031 "isp" : "Joint stock Commercial Bank for Foreign Trade of V",
6032 "organization" : "Joint stock Commercial Bank for Foreign Trade of V"
6033 }
6034 },
6035 {
6036 "::103.11.192.0/118" : {
6037 "isp" : "MCS Com Co Ltd",
6038 "organization" : "MCS Com Co Ltd"
6039 }
6040 },
6041 {
6042 "::103.11.204.0/118" : {
6043 "isp" : "VentraIP Group (Australia) Pty Ltd",
6044 "organization" : "VentraIP Group (Australia) Pty Ltd"
6045 }
6046 },
6047 {
6048 "::103.11.228.1/128" : {
6049 "isp" : "i-System Technology Limited",
6050 "organization" : "i-System Technology Limited"
6051 }
6052 },
6053 {
6054 "::103.11.228.2/127" : {
6055 "isp" : "i-System Technology Limited",
6056 "organization" : "i-System Technology Limited"
6057 }
6058 },
6059 {
6060 "::103.11.228.4/126" : {
6061 "isp" : "i-System Technology Limited",
6062 "organization" : "i-System Technology Limited"
6063 }
6064 },
6065 {
6066 "::103.11.228.8/125" : {
6067 "isp" : "i-System Technology Limited",
6068 "organization" : "i-System Technology Limited"
6069 }
6070 },
6071 {
6072 "::103.11.228.16/124" : {
6073 "isp" : "i-System Technology Limited",
6074 "organization" : "i-System Technology Limited"
6075 }
6076 },
6077 {
6078 "::103.11.228.32/123" : {
6079 "isp" : "i-System Technology Limited",
6080 "organization" : "i-System Technology Limited"
6081 }
6082 },
6083 {
6084 "::103.11.228.64/122" : {
6085 "isp" : "i-System Technology Limited",
6086 "organization" : "i-System Technology Limited"
6087 }
6088 },
6089 {
6090 "::103.11.228.128/121" : {
6091 "isp" : "i-System Technology Limited",
6092 "organization" : "i-System Technology Limited"
6093 }
6094 },
6095 {
6096 "::103.11.229.0/120" : {
6097 "isp" : "i-System Technology Limited",
6098 "organization" : "i-System Technology Limited"
6099 }
6100 },
6101 {
6102 "::103.11.230.0/119" : {
6103 "isp" : "i-System Technology Limited",
6104 "organization" : "i-System Technology Limited"
6105 }
6106 },
6107 {
6108 "::103.11.244.0/118" : {
6109 "isp" : "Langham Place Office Tower",
6110 "organization" : "Langham Place Office Tower"
6111 }
6112 },
6113 {
6114 "::103.23.84.0/118" : {
6115 "isp" : "C&M Communication Co.,Ltd.",
6116 "organization" : "C&M Communication Co.,Ltd."
6117 }
6118 },
6119 {
6120 "::103.23.132.0/118" : {
6121 "organization" : "Digi"
6122 }
6123 },
6124 {
6125 "::103.28.60.0/118" : {
6126 "isp" : "Cmb Taegu Dongbu Broadcast",
6127 "organization" : "Cmb Taegu Dongbu Broadcast"
6128 }
6129 },
6130 {
6131 "::103.246.248.0/120" : {
6132 "organization" : "QuickWeb Hosting Solutions"
6133 }
6134 },
6135 {
6136 "::104.64.0.0/106" : {
6137 "autonomous_system_number" : 35994,
6138 "autonomous_system_organization" : "Akamai Technologies, Inc.",
6139 "isp" : "Akamai Technologies",
6140 "organization" : "Akamai Technologies"
6141 }
6142 },
6143 {
6144 "::105.110.0.0/115" : {
6145 "isp" : "Fawri wilaya Batna",
6146 "organization" : "Fawri wilaya Batna"
6147 }
6148 },
6149 {
6150 "::105.111.0.0/113" : {
6151 "isp" : "Anis wilaya oran",
6152 "organization" : "Anis wilaya oran"
6153 }
6154 },
6155 {
6156 "::105.111.192.0/114" : {
6157 "isp" : "Anis wilaya Bechar",
6158 "organization" : "Anis wilaya Bechar"
6159 }
6160 },
6161 {
6162 "::105.112.0.0/108" : {
6163 "isp" : "Airtel Networks Limited",
6164 "organization" : "Airtel Networks Limited"
6165 }
6166 },
6167 {
6168 "::105.128.0.0/108" : {
6169 "isp" : "Maroc Telecom",
6170 "organization" : "Maroc Telecom 3G"
6171 }
6172 },
6173 {
6174 "::105.144.0.0/109" : {
6175 "isp" : "Maroc Telecom",
6176 "organization" : "Maroc Telecom 3G"
6177 }
6178 },
6179 {
6180 "::105.152.0.0/111" : {
6181 "isp" : "Maroc Telecom",
6182 "organization" : "Maroc Telecom 3G"
6183 }
6184 },
6185 {
6186 "::105.154.0.0/112" : {
6187 "isp" : "Maroc Telecom",
6188 "organization" : "Maroc Telecom 3G"
6189 }
6190 },
6191 {
6192 "::105.155.0.0/112" : {
6193 "isp" : "Maroc Telecom",
6194 "organization" : "Maroc Telecom"
6195 }
6196 },
6197 {
6198 "::105.156.0.0/111" : {
6199 "isp" : "Maroc Telecom",
6200 "organization" : "Maroc Telecom"
6201 }
6202 },
6203 {
6204 "::105.158.0.0/112" : {
6205 "isp" : "Maroc Telecom",
6206 "organization" : "Maroc Telecom"
6207 }
6208 },
6209 {
6210 "::105.159.0.0/112" : {
6211 "isp" : "Maroc Telecom",
6212 "organization" : "IAM"
6213 }
6214 },
6215 {
6216 "::105.160.0.0/109" : {
6217 "isp" : "Safaricom Limited",
6218 "organization" : "Safaricom Limited"
6219 }
6220 },
6221 {
6222 "::105.168.0.0/109" : {
6223 "isp" : "Unitel SA",
6224 "organization" : "Unitel SA"
6225 }
6226 },
6227 {
6228 "::105.176.0.0/111" : {
6229 "isp" : "MTN Business Solutions (Pty) Ltd",
6230 "organization" : "MTN Business Solutions (Pty) Ltd"
6231 }
6232 },
6233 {
6234 "::105.180.0.0/110" : {
6235 "isp" : "Mobinil 3G",
6236 "organization" : "Mobinil 3G"
6237 }
6238 },
6239 {
6240 "::105.184.0.0/110" : {
6241 "isp" : "Telkom Internet",
6242 "organization" : "Telkom Internet"
6243 }
6244 },
6245 {
6246 "::105.192.0.0/110" : {
6247 "isp" : "Mobinil 3G",
6248 "organization" : "Mobinil 3G"
6249 }
6250 },
6251 {
6252 "::105.196.0.0/110" : {
6253 "isp" : "Airtel Networks Nigeria Ltd",
6254 "organization" : "Airtel Networks Nigeria Ltd"
6255 }
6256 },
6257 {
6258 "::105.200.0.0/110" : {
6259 "isp" : "Etisalat Misr",
6260 "organization" : "Etisalat"
6261 }
6262 },
6263 {
6264 "::105.204.0.0/111" : {
6265 "isp" : "Etisalat Misr",
6266 "organization" : "Etisalat"
6267 }
6268 },
6269 {
6270 "::105.206.0.0/112" : {
6271 "isp" : "Etisalat Misr",
6272 "organization" : "Etisalat"
6273 }
6274 },
6275 {
6276 "::105.207.0.0/113" : {
6277 "isp" : "Etisalat Misr",
6278 "organization" : "Etisalat"
6279 }
6280 },
6281 {
6282 "::105.207.128.0/113" : {
6283 "isp" : "Etisalat Misr",
6284 "organization" : "Etisalat Misr"
6285 }
6286 },
6287 {
6288 "::105.208.0.0/108" : {
6289 "isp" : "MTN SA",
6290 "organization" : "MTN SA"
6291 }
6292 },
6293 {
6294 "::105.224.0.0/110" : {
6295 "isp" : "Telkom Internet",
6296 "organization" : "Telkom Internet"
6297 }
6298 },
6299 {
6300 "::105.228.0.0/111" : {
6301 "isp" : "Telkom Internet",
6302 "organization" : "Telkom Internet"
6303 }
6304 },
6305 {
6306 "::105.230.0.0/112" : {
6307 "isp" : "Airtel Broadband",
6308 "organization" : "Airtel Broadband"
6309 }
6310 },
6311 {
6312 "::105.231.0.0/113" : {
6313 "isp" : "Second segment of Broadband IPs",
6314 "organization" : "Second segment of Broadband IPs"
6315 }
6316 },
6317 {
6318 "::105.231.128.0/114" : {
6319 "isp" : "Third segment of Airtel Broadband IPs",
6320 "organization" : "Third segment of Airtel Broadband IPs"
6321 }
6322 },
6323 {
6324 "::105.231.192.0/114" : {
6325 "isp" : "Reserved for Internet APN Allocation",
6326 "organization" : "Reserved for Internet APN Allocation"
6327 }
6328 },
6329 {
6330 "::105.232.0.0/113" : {
6331 "isp" : "MTC - Mobile Telecommunications, Ltd.",
6332 "organization" : "MTC Netman"
6333 }
6334 },
6335 {
6336 "::105.232.128.0/113" : {
6337 "isp" : "MTC - Mobile Telecommunications, Ltd.",
6338 "organization" : "MTC - Mobile Telecommunications, Ltd."
6339 }
6340 },
6341 {
6342 "::105.233.0.0/114" : {
6343 "isp" : "Cybersmart",
6344 "organization" : "Cybersmart-ADSL-DBN ADSL IP numbers assigned to Db"
6345 }
6346 },
6347 {
6348 "::105.233.64.0/114" : {
6349 "isp" : "Cybersmart",
6350 "organization" : "Cybersmart-ADSL-JHB ADSL IP for Northern regios"
6351 }
6352 },
6353 {
6354 "::105.233.128.0/113" : {
6355 "isp" : "Cybersmart",
6356 "organization" : "Cybersmart"
6357 }
6358 },
6359 {
6360 "::105.234.0.0/113" : {
6361 "isp" : "Airtel Malawi GPRS subscribers",
6362 "organization" : "Airtel Malawi GPRS subscribers"
6363 }
6364 },
6365 {
6366 "::105.234.128.0/113" : {
6367 "isp" : "Airtel Malawi network",
6368 "organization" : "Airtel Malawi network"
6369 }
6370 },
6371 {
6372 "::105.235.0.0/113" : {
6373 "isp" : "MTN Cote d'Ivoire S.A",
6374 "organization" : "MTN Cote d'Ivoire S.A"
6375 }
6376 },
6377 {
6378 "::105.235.128.0/116" : {
6379 "isp" : "Wataniya Telecom Algerie",
6380 "organization" : "Wataniya Telecom Algerie"
6381 }
6382 },
6383 {
6384 "::105.235.144.0/116" : {
6385 "isp" : "Emtel Ltd",
6386 "organization" : "Emtel Ltd"
6387 }
6388 },
6389 {
6390 "::105.235.160.0/116" : {
6391 "isp" : "Bytes Connect, a Division of Bytes Technology Grou",
6392 "organization" : "Bytes Connect, a Division of Bytes Technology Grou"
6393 }
6394 },
6395 {
6396 "::105.235.176.0/116" : {
6397 "isp" : "Telecel Faso",
6398 "organization" : "Telecel Faso"
6399 }
6400 },
6401 {
6402 "::105.235.192.0/116" : {
6403 "isp" : "Icsl Network",
6404 "organization" : "Icsl Network"
6405 }
6406 },
6407 {
6408 "::105.235.216.0/117" : {
6409 "isp" : "Abari Communications Mozambique Lda",
6410 "organization" : "Abari Communications Mozambique Lda"
6411 }
6412 },
6413 {
6414 "::105.235.224.0/116" : {
6415 "isp" : "Guineanet",
6416 "organization" : "Guineanet"
6417 }
6418 },
6419 {
6420 "::105.235.240.0/116" : {
6421 "isp" : "Orange Botswana",
6422 "organization" : "Orange Botswana"
6423 }
6424 },
6425 {
6426 "::105.236.0.0/111" : {
6427 "isp" : "MTN Business Solutions (Pty) Ltd",
6428 "organization" : "MTN Business Solutions (Pty) Ltd"
6429 }
6430 },
6431 {
6432 "::105.238.0.0/111" : {
6433 "isp" : "Zain Sudan",
6434 "organization" : "Zain Sudan"
6435 }
6436 },
6437 {
6438 "::105.240.0.0/108" : {
6439 "isp" : "Vodacom",
6440 "organization" : "Vodacom"
6441 }
6442 },
6443 {
6444 "::106.186.80.0/117" : {
6445 "isp" : "GLBB"
6446 }
6447 },
6448 {
6449 "::108.66.24.0/118" : {
6450 "isp" : "AT&T Internet Services",
6451 "organization" : "AT&T Internet Services"
6452 }
6453 },
6454 {
6455 "::108.68.60.0/118" : {
6456 "isp" : "AT&T Internet Services",
6457 "organization" : "AT&T Internet Services"
6458 }
6459 },
6460 {
6461 "::108.68.92.0/118" : {
6462 "isp" : "AT&T Internet Services",
6463 "organization" : "AT&T Internet Services"
6464 }
6465 },
6466 {
6467 "::108.69.8.0/118" : {
6468 "isp" : "AT&T Internet Services",
6469 "organization" : "AT&T Internet Services"
6470 }
6471 },
6472 {
6473 "::108.69.180.0/118" : {
6474 "isp" : "AT&T Internet Services",
6475 "organization" : "AT&T Internet Services"
6476 }
6477 },
6478 {
6479 "::108.70.56.0/117" : {
6480 "isp" : "AT&T Internet Services",
6481 "organization" : "AT&T Internet Services"
6482 }
6483 },
6484 {
6485 "::108.74.80.0/116" : {
6486 "isp" : "AT&T Internet Services",
6487 "organization" : "AT&T Internet Services"
6488 }
6489 },
6490 {
6491 "::108.75.232.0/117" : {
6492 "isp" : "AT&T Internet Services",
6493 "organization" : "AT&T Internet Services"
6494 }
6495 },
6496 {
6497 "::108.80.92.0/118" : {
6498 "isp" : "AT&T Internet Services",
6499 "organization" : "AT&T Internet Services"
6500 }
6501 },
6502 {
6503 "::108.83.64.0/118" : {
6504 "isp" : "AT&T Internet Services",
6505 "organization" : "AT&T Internet Services"
6506 }
6507 },
6508 {
6509 "::108.85.4.0/118" : {
6510 "isp" : "AT&T Internet Services",
6511 "organization" : "AT&T Internet Services"
6512 }
6513 },
6514 {
6515 "::108.90.88.0/117" : {
6516 "isp" : "AT&T Internet Services",
6517 "organization" : "AT&T Internet Services"
6518 }
6519 },
6520 {
6521 "::108.95.60.0/118" : {
6522 "isp" : "AT&T Internet Services",
6523 "organization" : "AT&T Internet Services"
6524 }
6525 },
6526 {
6527 "::108.96.0.0/107" : {
6528 "isp" : "Sprint PCS",
6529 "organization" : "Sprint PCS"
6530 }
6531 },
6532 {
6533 "::108.144.0.0/108" : {
6534 "isp" : "AT&T Wireless",
6535 "organization" : "AT&T Wireless"
6536 }
6537 },
6538 {
6539 "::108.160.48.0/116" : {
6540 "isp" : "Telebeep",
6541 "organization" : "Telebeep"
6542 }
6543 },
6544 {
6545 "::108.160.64.0/116" : {
6546 "isp" : "Sebastian",
6547 "organization" : "Sebastian"
6548 }
6549 },
6550 {
6551 "::108.160.80.0/116" : {
6552 "isp" : "Quadro Communications Co-Operative",
6553 "organization" : "Quadro Communications Co-Operative"
6554 }
6555 },
6556 {
6557 "::108.163.64.0/114" : {
6558 "isp" : "Region 14 Education Service Center",
6559 "organization" : "Region 14 Education Service Center"
6560 }
6561 },
6562 {
6563 "::108.163.192.0/114" : {
6564 "isp" : "SingleHop",
6565 "organization" : "SingleHop"
6566 }
6567 },
6568 {
6569 "::108.164.0.0/112" : {
6570 "isp" : "The Cosmopolitan of Las Vegas",
6571 "organization" : "The Cosmopolitan of Las Vegas"
6572 }
6573 },
6574 {
6575 "::108.165.0.0/112" : {
6576 "isp" : "Ace Data Centers",
6577 "organization" : "Ace Data Centers"
6578 }
6579 },
6580 {
6581 "::108.170.192.0/114" : {
6582 "isp" : "Google",
6583 "organization" : "Google"
6584 }
6585 },
6586 {
6587 "::108.171.32.0/115" : {
6588 "isp" : "Smart Solutions IT",
6589 "organization" : "Smart Solutions IT"
6590 }
6591 },
6592 {
6593 "::108.171.72.0/117" : {
6594 "isp" : "Cogeco Cable",
6595 "organization" : "Cogeco Cable"
6596 }
6597 },
6598 {
6599 "::108.172.0.0/111" : {
6600 "isp" : "Telus Communications",
6601 "organization" : "Telus Communications"
6602 }
6603 },
6604 {
6605 "::108.174.80.0/116" : {
6606 "isp" : "Volusion",
6607 "organization" : "Volusion"
6608 }
6609 },
6610 {
6611 "::108.180.0.0/111" : {
6612 "isp" : "Telus Communications",
6613 "organization" : "Telus Communications"
6614 }
6615 },
6616 {
6617 "::108.182.0.0/111" : {
6618 "isp" : "Time Warner Cable",
6619 "organization" : "Time Warner Cable"
6620 }
6621 },
6622 {
6623 "::108.184.0.0/111" : {
6624 "isp" : "Time Warner Cable",
6625 "organization" : "Time Warner Cable"
6626 }
6627 },
6628 {
6629 "::108.187.0.0/112" : {
6630 "isp" : "SpeedVM Network Group LLC",
6631 "organization" : "SpeedVM Network Group LLC"
6632 }
6633 },
6634 {
6635 "::108.190.0.0/111" : {
6636 "isp" : "Bright House Networks",
6637 "organization" : "Bright House Networks"
6638 }
6639 },
6640 {
6641 "::108.192.0.0/107" : {
6642 "isp" : "AT&T Internet Services",
6643 "organization" : "AT&T Internet Services"
6644 }
6645 },
6646 {
6647 "::108.224.0.0/110" : {
6648 "isp" : "AT&T Internet Services",
6649 "organization" : "AT&T Internet Services"
6650 }
6651 },
6652 {
6653 "::108.228.0.0/112" : {
6654 "isp" : "AT&T Internet Services",
6655 "organization" : "AT&T Internet Services"
6656 }
6657 },
6658 {
6659 "::108.229.0.0/113" : {
6660 "isp" : "AT&T Internet Services",
6661 "organization" : "AT&T"
6662 }
6663 },
6664 {
6665 "::108.229.128.0/113" : {
6666 "isp" : "AT&T Internet Services",
6667 "organization" : "AT&T Internet Services"
6668 }
6669 },
6670 {
6671 "::108.230.0.0/111" : {
6672 "isp" : "AT&T Internet Services",
6673 "organization" : "AT&T Internet Services"
6674 }
6675 },
6676 {
6677 "::108.232.0.0/109" : {
6678 "isp" : "AT&T Internet Services",
6679 "organization" : "AT&T Internet Services"
6680 }
6681 },
6682 {
6683 "::108.240.0.0/110" : {
6684 "isp" : "AT&T Internet Services",
6685 "organization" : "AT&T Internet Services"
6686 }
6687 },
6688 {
6689 "::108.244.0.0/113" : {
6690 "isp" : "AT&T Internet Services",
6691 "organization" : "AT&T Internet Services"
6692 }
6693 },
6694 {
6695 "::108.244.128.0/115" : {
6696 "isp" : "AT&T Internet Services",
6697 "organization" : "AT&T Internet Services"
6698 }
6699 },
6700 {
6701 "::108.244.160.0/116" : {
6702 "isp" : "AT&T Internet Services",
6703 "organization" : "Lisle IDC - Silver Lining"
6704 }
6705 },
6706 {
6707 "::108.244.176.0/116" : {
6708 "isp" : "AT&T Internet Services",
6709 "organization" : "Atlanta - Silver Lining"
6710 }
6711 },
6712 {
6713 "::108.244.192.0/114" : {
6714 "isp" : "AT&T Internet Services",
6715 "organization" : "AT&T Internet Services"
6716 }
6717 },
6718 {
6719 "::108.245.0.0/112" : {
6720 "isp" : "AT&T Internet Services",
6721 "organization" : "AT&T Internet Services"
6722 }
6723 },
6724 {
6725 "::108.246.0.0/111" : {
6726 "isp" : "AT&T Internet Services",
6727 "organization" : "AT&T Internet Services"
6728 }
6729 },
6730 {
6731 "::108.248.0.0/109" : {
6732 "isp" : "AT&T Internet Services",
6733 "organization" : "AT&T Internet Services"
6734 }
6735 },
6736 {
6737 "::109.104.250.0/121" : {
6738 "organization" : "Navigadsl srl"
6739 }
6740 },
6741 {
6742 "::109.105.192.0/115" : {
6743 "organization" : "Cutuknet"
6744 }
6745 },
6746 {
6747 "::109.235.55.192/123" : {
6748 "organization" : "Encryption Limited"
6749 }
6750 },
6751 {
6752 "::110.8.112.0/116" : {
6753 "isp" : "SK Broadband Co Ltd",
6754 "organization" : "SK Broadband Co Ltd"
6755 }
6756 },
6757 {
6758 "::110.9.0.0/116" : {
6759 "isp" : "SK Broadband Co Ltd",
6760 "organization" : "SK Broadband Co Ltd"
6761 }
6762 },
6763 {
6764 "::110.9.96.0/116" : {
6765 "isp" : "SK Broadband Co Ltd",
6766 "organization" : "SK Broadband Co Ltd"
6767 }
6768 },
6769 {
6770 "::110.10.16.0/116" : {
6771 "isp" : "SK Broadband Co Ltd",
6772 "organization" : "SK Broadband Co Ltd"
6773 }
6774 },
6775 {
6776 "::110.11.64.0/116" : {
6777 "isp" : "SK Broadband Co Ltd",
6778 "organization" : "SK Broadband Co Ltd"
6779 }
6780 },
6781 {
6782 "::110.11.176.0/116" : {
6783 "isp" : "SK Broadband Co Ltd",
6784 "organization" : "SK Broadband Co Ltd"
6785 }
6786 },
6787 {
6788 "::110.11.240.0/116" : {
6789 "isp" : "SK Broadband Co Ltd",
6790 "organization" : "SK Broadband Co Ltd"
6791 }
6792 },
6793 {
6794 "::110.12.80.0/116" : {
6795 "isp" : "SK Broadband Co Ltd",
6796 "organization" : "SK Broadband Co Ltd"
6797 }
6798 },
6799 {
6800 "::110.12.128.0/116" : {
6801 "isp" : "SK Broadband Co Ltd",
6802 "organization" : "SK Broadband Co Ltd"
6803 }
6804 },
6805 {
6806 "::110.13.112.0/116" : {
6807 "isp" : "SK Broadband Co Ltd",
6808 "organization" : "SK Broadband Co Ltd"
6809 }
6810 },
6811 {
6812 "::110.13.128.0/116" : {
6813 "isp" : "SK Broadband Co Ltd",
6814 "organization" : "SK Broadband Co Ltd"
6815 }
6816 },
6817 {
6818 "::110.14.48.0/116" : {
6819 "isp" : "SK Broadband Co Ltd",
6820 "organization" : "SK Broadband Co Ltd"
6821 }
6822 },
6823 {
6824 "::110.14.160.0/116" : {
6825 "isp" : "SK Broadband Co Ltd",
6826 "organization" : "SK Broadband Co Ltd"
6827 }
6828 },
6829 {
6830 "::110.14.192.0/116" : {
6831 "isp" : "SK Broadband Co Ltd",
6832 "organization" : "SK Broadband Co Ltd"
6833 }
6834 },
6835 {
6836 "::110.15.192.0/116" : {
6837 "isp" : "SK Broadband Co Ltd",
6838 "organization" : "SK Broadband Co Ltd"
6839 }
6840 },
6841 {
6842 "::110.15.224.0/116" : {
6843 "isp" : "SK Broadband Co Ltd",
6844 "organization" : "SK Broadband Co Ltd"
6845 }
6846 },
6847 {
6848 "::110.35.0.0/116" : {
6849 "isp" : "CMB Daejeon Broadcasting Co,.Ltd",
6850 "organization" : "CMB Daejeon Broadcasting Co,.Ltd"
6851 }
6852 },
6853 {
6854 "::110.35.53.0/120" : {
6855 "isp" : "CMB Daejeon Broadcasting Co,.Ltd",
6856 "organization" : "CMB Daejeon Broadcasting Co,.Ltd"
6857 }
6858 },
6859 {
6860 "::110.35.54.0/119" : {
6861 "isp" : "CMB Daejeon Broadcasting Co,.Ltd",
6862 "organization" : "CMB Daejeon Broadcasting Co,.Ltd"
6863 }
6864 },
6865 {
6866 "::110.35.56.0/120" : {
6867 "isp" : "CMB Daejeon Broadcasting Co,.Ltd",
6868 "organization" : "CMB Daejeon Broadcasting Co,.Ltd"
6869 }
6870 },
6871 {
6872 "::111.0.0.0/106" : {
6873 "autonomous_system_number" : 9808,
6874 "autonomous_system_organization" : "Guangdong Mobile Communication Co.Ltd.",
6875 "isp" : "Guangdong Mobile",
6876 "organization" : "Guangdong Mobile"
6877 }
6878 },
6879 {
6880 "::111.91.128.0/116" : {
6881 "isp" : "NHN",
6882 "organization" : "NHN"
6883 }
6884 },
6885 {
6886 "::111.91.144.0/118" : {
6887 "isp" : "Korea Cable TV Kwangju Broadcast",
6888 "organization" : "Korea Cable TV Kwangju Broadcast"
6889 }
6890 },
6891 {
6892 "::111.91.160.0/116" : {
6893 "isp" : "Korea Cable TV Kwangju Broadcast",
6894 "organization" : "Korea Cable TV Kwangju Broadcast"
6895 }
6896 },
6897 {
6898 "::112.0.0.0/106" : {
6899 "autonomous_system_number" : 9808,
6900 "autonomous_system_organization" : "Guangdong Mobile Communication Co.Ltd.",
6901 "isp" : "Guangdong Mobile",
6902 "organization" : "Guangdong Mobile"
6903 }
6904 },
6905 {
6906 "::112.72.160.0/116" : {
6907 "isp" : "Hyundai Communications & Network",
6908 "organization" : "Hyundai Communications & Network"
6909 }
6910 },
6911 {
6912 "::112.72.192.0/116" : {
6913 "isp" : "Hyundai Communications & Network",
6914 "organization" : "Hyundai Communications & Network"
6915 }
6916 },
6917 {
6918 "::112.72.224.0/115" : {
6919 "isp" : "Hyundai Communications & Network",
6920 "organization" : "Hyundai Communications & Network"
6921 }
6922 },
6923 {
6924 "::112.76.0.0/111" : {
6925 "isp" : "Dacom-pubnetplus",
6926 "organization" : "Dacom-pubnetplus"
6927 }
6928 },
6929 {
6930 "::112.121.0.0/115" : {
6931 "isp" : "Tbroad Abc Broadcasting Co.,ltd.",
6932 "organization" : "Tbroad Abc Broadcasting Co.,ltd."
6933 }
6934 },
6935 {
6936 "::113.30.0.0/116" : {
6937 "isp" : "TBROAD Dongdaemun cable networks,Inc.",
6938 "organization" : "TBROAD Dongdaemun cable networks,Inc."
6939 }
6940 },
6941 {
6942 "::113.30.32.0/116" : {
6943 "isp" : "TBROAD Dongdaemun cable networks,Inc.",
6944 "organization" : "TBROAD Dongdaemun cable networks,Inc."
6945 }
6946 },
6947 {
6948 "::113.30.64.0/116" : {
6949 "isp" : "HCLC",
6950 "organization" : "HCLC"
6951 }
6952 },
6953 {
6954 "::113.30.96.0/116" : {
6955 "isp" : "HCLC",
6956 "organization" : "HCLC"
6957 }
6958 },
6959 {
6960 "::113.30.121.0/120" : {
6961 "isp" : "HCLC",
6962 "organization" : "HCLC"
6963 }
6964 },
6965 {
6966 "::113.30.122.0/119" : {
6967 "isp" : "HCLC",
6968 "organization" : "HCLC"
6969 }
6970 },
6971 {
6972 "::113.30.124.0/120" : {
6973 "isp" : "HCLC",
6974 "organization" : "HCLC"
6975 }
6976 },
6977 {
6978 "::113.61.16.0/116" : {
6979 "isp" : "Korea Cable TV Jeonboog Broadcast",
6980 "organization" : "Korea Cable TV Jeonboog Broadcast"
6981 }
6982 },
6983 {
6984 "::113.130.66.0/119" : {
6985 "isp" : "ONSE Telecom",
6986 "organization" : "ONSE Telecom"
6987 }
6988 },
6989 {
6990 "::113.130.68.0/119" : {
6991 "isp" : "ONSE Telecom",
6992 "organization" : "ONSE Telecom"
6993 }
6994 },
6995 {
6996 "::113.130.128.0/116" : {
6997 "isp" : "Cj-hellovision",
6998 "organization" : "Cj-hellovision"
6999 }
7000 },
7001 {
7002 "::113.130.208.0/116" : {
7003 "isp" : "Cj-hellovision",
7004 "organization" : "Cj-hellovision"
7005 }
7006 },
7007 {
7008 "::113.131.16.0/116" : {
7009 "isp" : "Cj-hellovision",
7010 "organization" : "Cj-hellovision"
7011 }
7012 },
7013 {
7014 "::113.131.192.0/116" : {
7015 "isp" : "Cj-hellovision",
7016 "organization" : "Cj-hellovision"
7017 }
7018 },
7019 {
7020 "::114.23.240.0/120" : {
7021 "isp" : "Swiift Internet Limited"
7022 }
7023 },
7024 {
7025 "::114.30.48.0/116" : {
7026 "isp" : "korea cable pohang broadcasting",
7027 "organization" : "korea cable pohang broadcasting"
7028 }
7029 },
7030 {
7031 "::114.30.128.0/113" : {
7032 "isp" : "HO Nam Cable TV co.,LTD",
7033 "organization" : "HO Nam Cable TV co.,LTD"
7034 }
7035 },
7036 {
7037 "::114.31.48.0/116" : {
7038 "isp" : "HyosungITX",
7039 "organization" : "HyosungITX"
7040 }
7041 },
7042 {
7043 "::114.108.144.0/117" : {
7044 "isp" : "Lg Dacom Kidc",
7045 "organization" : "Lg Dacom Kidc"
7046 }
7047 },
7048 {
7049 "::114.108.160.0/116" : {
7050 "isp" : "Lg Dacom Kidc",
7051 "organization" : "Lg Dacom Kidc"
7052 }
7053 },
7054 {
7055 "::114.108.176.0/118" : {
7056 "isp" : "Lg Dacom Kidc",
7057 "organization" : "Lg Dacom Kidc"
7058 }
7059 },
7060 {
7061 "::114.141.224.0/116" : {
7062 "isp" : "Piranha Systems",
7063 "organization" : "Piranha Systems"
7064 }
7065 },
7066 {
7067 "::114.179.160.0/115" : {
7068 "isp" : "GLBB"
7069 }
7070 },
7071 {
7072 "::115.68.16.0/116" : {
7073 "isp" : "Smileserv",
7074 "organization" : "Smileserv"
7075 }
7076 },
7077 {
7078 "::115.71.0.0/116" : {
7079 "isp" : "G&j, Ltd.",
7080 "organization" : "G&j, Ltd."
7081 }
7082 },
7083 {
7084 "::115.144.16.0/116" : {
7085 "isp" : "HAIonNet",
7086 "organization" : "HAIonNet"
7087 }
7088 },
7089 {
7090 "::115.144.224.0/116" : {
7091 "isp" : "HAIonNet",
7092 "organization" : "HAIonNet"
7093 }
7094 },
7095 {
7096 "::116.67.0.0/113" : {
7097 "isp" : "National Computing & Information Agency",
7098 "organization" : "National Computing & Information Agency"
7099 }
7100 },
7101 {
7102 "::116.68.32.0/115" : {
7103 "isp" : "Korea Nazarene University",
7104 "organization" : "Korea Nazarene University"
7105 }
7106 },
7107 {
7108 "::116.90.216.0/117" : {
7109 "isp" : "Catholic University of DAEGU",
7110 "organization" : "Catholic University of DAEGU"
7111 }
7112 },
7113 {
7114 "::116.200.16.0/116" : {
7115 "isp" : "Korea Telecom Freetel Corp.",
7116 "organization" : "Korea Telecom Freetel Corp."
7117 }
7118 },
7119 {
7120 "::116.201.0.0/116" : {
7121 "isp" : "Korea Telecom Freetel Corp.",
7122 "organization" : "Korea Telecom Freetel Corp."
7123 }
7124 },
7125 {
7126 "::116.201.240.0/116" : {
7127 "isp" : "Korea Telecom Freetel Corp.",
7128 "organization" : "Korea Telecom Freetel Corp."
7129 }
7130 },
7131 {
7132 "::117.58.132.0/118" : {
7133 "isp" : "TCN Daegu Broadcasting Co., Ltd",
7134 "organization" : "TCN Daegu Broadcasting Co., Ltd"
7135 }
7136 },
7137 {
7138 "::117.58.136.0/117" : {
7139 "isp" : "TCN Daegu Broadcasting Co., Ltd",
7140 "organization" : "TCN Daegu Broadcasting Co., Ltd"
7141 }
7142 },
7143 {
7144 "::117.128.0.0/106" : {
7145 "autonomous_system_number" : 9808,
7146 "autonomous_system_organization" : "Guangdong Mobile Communication Co.Ltd.",
7147 "isp" : "Guangdong Mobile",
7148 "organization" : "Guangdong Mobile"
7149 }
7150 },
7151 {
7152 "::118.67.128.0/115" : {
7153 "isp" : "NURILINK",
7154 "organization" : "NURILINK"
7155 }
7156 },
7157 {
7158 "::118.67.160.0/116" : {
7159 "isp" : "NURILINK",
7160 "organization" : "NURILINK"
7161 }
7162 },
7163 {
7164 "::118.67.176.0/116" : {
7165 "isp" : "NURILINK",
7166 "organization" : "SRUN"
7167 }
7168 },
7169 {
7170 "::118.91.96.0/115" : {
7171 "isp" : "Tbroad Gangseo",
7172 "organization" : "Tbroad Gangseo"
7173 }
7174 },
7175 {
7176 "::118.234.112.0/116" : {
7177 "isp" : "Korea Telecom Freetel Corp.",
7178 "organization" : "Korea Telecom Freetel Corp."
7179 }
7180 },
7181 {
7182 "::119.30.136.0/118" : {
7183 "isp" : "IP4 Networks, Inc.",
7184 "organization" : "IP4 Networks, Inc."
7185 }
7186 },
7187 {
7188 "::119.63.224.0/116" : {
7189 "isp" : "Cj-hellovision",
7190 "organization" : "Cj-hellovision"
7191 }
7192 },
7193 {
7194 "::119.77.108.0/118" : {
7195 "isp" : "Korea Cable TV Kwangju Broadcast",
7196 "organization" : "Korea Cable TV Kwangju Broadcast"
7197 }
7198 },
7199 {
7200 "::119.235.240.0/117" : {
7201 "isp" : "Cmb Taegu Dongbu Broadcast",
7202 "organization" : "Cmb Taegu Dongbu Broadcast"
7203 }
7204 },
7205 {
7206 "::120.73.0.0/112" : {
7207 "isp" : "KUMHO",
7208 "organization" : "KUMHO"
7209 }
7210 },
7211 {
7212 "::120.136.6.0/120" : {
7213 "organization" : "Maxum Data Ltd"
7214 }
7215 },
7216 {
7217 "::120.192.0.0/106" : {
7218 "autonomous_system_number" : 9808,
7219 "autonomous_system_organization" : "Guangdong Mobile Communication Co.Ltd.",
7220 "isp" : "Guangdong Mobile",
7221 "organization" : "Guangdong Mobile"
7222 }
7223 },
7224 {
7225 "::121.0.128.0/118" : {
7226 "isp" : "Duruan",
7227 "organization" : "Duruan"
7228 }
7229 },
7230 {
7231 "::121.0.144.0/118" : {
7232 "isp" : "Duruan",
7233 "organization" : "Duruan"
7234 }
7235 },
7236 {
7237 "::121.254.224.0/116" : {
7238 "isp" : "Lg Dacom Kidc",
7239 "organization" : "Lg Dacom Kidc"
7240 }
7241 },
7242 {
7243 "::122.128.64.0/117" : {
7244 "isp" : "CMB Kwnagju Broadcasting",
7245 "organization" : "CMB Kwnagju Broadcasting"
7246 }
7247 },
7248 {
7249 "::122.128.72.0/118" : {
7250 "isp" : "CMB Kwnagju Broadcasting",
7251 "organization" : "CMB Kwnagju Broadcasting"
7252 }
7253 },
7254 {
7255 "::122.252.192.0/115" : {
7256 "isp" : "CMB",
7257 "organization" : "CMB"
7258 }
7259 },
7260 {
7261 "::123.98.192.0/115" : {
7262 "isp" : "Cj-hellovision",
7263 "organization" : "Cj-hellovision"
7264 }
7265 },
7266 {
7267 "::123.254.64.0/115" : {
7268 "isp" : "Cj-hellovision",
7269 "organization" : "Cj-hellovision"
7270 }
7271 },
7272 {
7273 "::124.0.34.0/120" : {
7274 "isp" : "SK Telecom",
7275 "organization" : "SK Telecom"
7276 }
7277 },
7278 {
7279 "::124.0.203.0/120" : {
7280 "isp" : "SK Telecom",
7281 "organization" : "SK Telecom"
7282 }
7283 },
7284 {
7285 "::124.198.0.0/116" : {
7286 "isp" : "HAIonNet",
7287 "organization" : "HAIonNet"
7288 }
7289 },
7290 {
7291 "::124.198.112.0/116" : {
7292 "isp" : "HAIonNet",
7293 "organization" : "HAIonNet"
7294 }
7295 },
7296 {
7297 "::126.0.0.0/104" : {
7298 "autonomous_system_number" : 17676,
7299 "autonomous_system_organization" : "Softbank BB Corp.",
7300 "isp" : "Softbank BB Corp",
7301 "organization" : "Softbank BB Corp"
7302 }
7303 },
7304 {
7305 "::129.90.0.0/112" : {
7306 "isp" : "Intevep S.A.",
7307 "organization" : "Intevep S.A."
7308 }
7309 },
7310 {
7311 "::131.178.0.0/112" : {
7312 "isp" : "Instituto Tecnológico y de Estudios Superiores de",
7313 "organization" : "Instituto Tecnológico y de Estudios Superiores de"
7314 }
7315 },
7316 {
7317 "::132.0.0.0/106" : {
7318 "autonomous_system_number" : 721,
7319 "autonomous_system_organization" : "DoD Network Information Center"
7320 }
7321 },
7322 {
7323 "::132.247.0.0/112" : {
7324 "isp" : "Universidad Nacional Autonoma de Mexico",
7325 "organization" : "Universidad Nacional Autonoma de Mexico"
7326 }
7327 },
7328 {
7329 "::132.248.0.0/112" : {
7330 "isp" : "Universidad Nacional Autonoma de Mexico",
7331 "organization" : "Universidad Nacional Autonoma de Mexico"
7332 }
7333 },
7334 {
7335 "::132.254.0.0/112" : {
7336 "isp" : "Instituto Tecnológico y de Estudios Superiores de",
7337 "organization" : "Instituto Tecnológico y de Estudios Superiores de"
7338 }
7339 },
7340 {
7341 "::134.90.248.0/117" : {
7342 "organization" : "Geny SRL"
7343 }
7344 },
7345 {
7346 "::139.82.0.0/112" : {
7347 "isp" : "Pontificia Universidade Catolica do Rio de Janeiro",
7348 "organization" : "Pontificia Universidade Catolica do Rio de Janeiro"
7349 }
7350 },
7351 {
7352 "::140.148.0.0/112" : {
7353 "isp" : "Universidad de Las Americas-Puebla",
7354 "organization" : "Universidad de Las Americas-Puebla"
7355 }
7356 },
7357 {
7358 "::140.191.0.0/112" : {
7359 "isp" : "United Nations Development Programme",
7360 "organization" : "United Nations Development Programme"
7361 }
7362 },
7363 {
7364 "::141.208.0.0/112" : {
7365 "isp" : "TeliaSonera Finland Oyj",
7366 "organization" : "TeliaSonera Finland Oyj"
7367 }
7368 },
7369 {
7370 "::142.217.208.0/118" : {
7371 "autonomous_system_number" : 35911
7372 }
7373 },
7374 {
7375 "::142.217.212.0/119" : {
7376 "autonomous_system_number" : 35911
7377 }
7378 },
7379 {
7380 "::142.217.214.0/120" : {
7381 "autonomous_system_number" : 35911,
7382 "isp" : "Telebec",
7383 "organization" : "LINO Solutions Internet de Télébec"
7384 }
7385 },
7386 {
7387 "::142.217.215.0/120" : {
7388 "autonomous_system_number" : 35911
7389 }
7390 },
7391 {
7392 "::142.217.216.0/117" : {
7393 "autonomous_system_number" : 35911
7394 }
7395 },
7396 {
7397 "::142.217.224.0/117" : {
7398 "autonomous_system_number" : 35911
7399 }
7400 },
7401 {
7402 "::142.217.232.0/118" : {
7403 "autonomous_system_number" : 35911
7404 }
7405 },
7406 {
7407 "::142.217.236.0/119" : {
7408 "autonomous_system_number" : 35911
7409 }
7410 },
7411 {
7412 "::142.217.238.0/120" : {
7413 "autonomous_system_number" : 35911
7414 }
7415 },
7416 {
7417 "::143.54.0.0/112" : {
7418 "isp" : "Universidade Federal do Rio Grande do Sul",
7419 "organization" : "Universidade Federal do Rio Grande do Sul"
7420 }
7421 },
7422 {
7423 "::143.106.0.0/112" : {
7424 "isp" : "Universidade Estadual de Campinas - UNICAMP",
7425 "organization" : "Universidade Estadual de Campinas - UNICAMP"
7426 }
7427 },
7428 {
7429 "::143.107.0.0/112" : {
7430 "isp" : "Universidade de Sao Paulo",
7431 "organization" : "Universidade de Sao Paulo"
7432 }
7433 },
7434 {
7435 "::143.108.0.0/112" : {
7436 "isp" : "Fundacao de Amparo a Pesquisa do Estado de Sao Pau",
7437 "organization" : "Fundacao de Amparo a Pesquisa do Estado de Sao Pau"
7438 }
7439 },
7440 {
7441 "::144.22.0.0/111" : {
7442 "isp" : "Oracle Corporation",
7443 "organization" : "Oracle Corporation"
7444 }
7445 },
7446 {
7447 "::145.15.0.0/112" : {
7448 "isp" : "Nederlandse Spoorwegen PI block",
7449 "organization" : "Nederlandse Spoorwegen PI block"
7450 }
7451 },
7452 {
7453 "::145.128.0.0/106" : {
7454 "autonomous_system_number" : 1103,
7455 "autonomous_system_organization" : "SURFnet, The Netherlands",
7456 "isp" : "SURFnet, The Netherlands",
7457 "organization" : "SURFnet, The Netherlands"
7458 }
7459 },
7460 {
7461 "::146.83.0.0/112" : {
7462 "isp" : "Red Universitaria Nacional",
7463 "organization" : "Red Universitaria Nacional"
7464 }
7465 },
7466 {
7467 "::146.134.0.0/112" : {
7468 "isp" : "Laboratorio Nacional de Computacao Cientifica",
7469 "organization" : "Laboratorio Nacional de Computacao Cientifica"
7470 }
7471 },
7472 {
7473 "::146.155.0.0/112" : {
7474 "isp" : "SECICO",
7475 "organization" : "SECICO"
7476 }
7477 },
7478 {
7479 "::146.164.0.0/112" : {
7480 "isp" : "Federal University of Rio de Janeiro",
7481 "organization" : "Federal University of Rio de Janeiro"
7482 }
7483 },
7484 {
7485 "::146.255.0.0/121" : {
7486 "organization" : "Surebroadband Ltd"
7487 }
7488 },
7489 {
7490 "::147.65.0.0/112" : {
7491 "isp" : "Instituto de Matematica Pura e Aplicada",
7492 "organization" : "Instituto de Matematica Pura e Aplicada"
7493 }
7494 },
7495 {
7496 "::147.194.0.0/112" : {
7497 "isp" : "Comwave"
7498 }
7499 },
7500 {
7501 "::148.0.0.0/112" : {
7502 "isp" : "Claro Dominican Republic",
7503 "organization" : "Claro Dominican Republic"
7504 }
7505 },
7506 {
7507 "::148.101.0.0/112" : {
7508 "isp" : "Claro Dominican Republic",
7509 "organization" : "Claro Dominican Republic"
7510 }
7511 },
7512 {
7513 "::148.201.0.0/112" : {
7514 "isp" : "Iteso, A.c.",
7515 "organization" : "Iteso, A.c."
7516 }
7517 },
7518 {
7519 "::148.202.0.0/112" : {
7520 "isp" : "Universidad de Guadalajara",
7521 "organization" : "Universidad de Guadalajara"
7522 }
7523 },
7524 {
7525 "::148.203.0.0/112" : {
7526 "isp" : "Volkswagen de Mexico, S.A. de C.V.",
7527 "organization" : "Volkswagen de Mexico, S.A. de C.V."
7528 }
7529 },
7530 {
7531 "::148.204.0.0/112" : {
7532 "isp" : "Instituto Politecnico Nacional",
7533 "organization" : "Instituto Politecnico Nacional"
7534 }
7535 },
7536 {
7537 "::148.205.0.0/112" : {
7538 "isp" : "Instituto Tecnologico Autonomo de Mexico(ITAM)",
7539 "organization" : "Instituto Tecnologico Autonomo de Mexico(ITAM)"
7540 }
7541 },
7542 {
7543 "::148.206.0.0/112" : {
7544 "isp" : "Universidad Autonoma Metropolitana",
7545 "organization" : "Universidad Autonoma Metropolitana"
7546 }
7547 },
7548 {
7549 "::148.207.0.0/120" : {
7550 "isp" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)",
7551 "organization" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)"
7552 }
7553 },
7554 {
7555 "::148.207.1.0/120" : {
7556 "isp" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)",
7557 "organization" : "CONACYT"
7558 }
7559 },
7560 {
7561 "::148.207.2.0/119" : {
7562 "isp" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)",
7563 "organization" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)"
7564 }
7565 },
7566 {
7567 "::148.207.4.0/118" : {
7568 "isp" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)",
7569 "organization" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)"
7570 }
7571 },
7572 {
7573 "::148.207.8.0/117" : {
7574 "isp" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)",
7575 "organization" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)"
7576 }
7577 },
7578 {
7579 "::148.207.16.0/116" : {
7580 "isp" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)",
7581 "organization" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)"
7582 }
7583 },
7584 {
7585 "::148.207.32.0/115" : {
7586 "isp" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)",
7587 "organization" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)"
7588 }
7589 },
7590 {
7591 "::148.207.64.0/114" : {
7592 "isp" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)",
7593 "organization" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)"
7594 }
7595 },
7596 {
7597 "::148.207.128.0/113" : {
7598 "isp" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)",
7599 "organization" : "Consejo Nacional de Ciencia y Tenologia (CONACYT)"
7600 }
7601 },
7602 {
7603 "::148.208.0.0/112" : {
7604 "isp" : "Secretaria de Educacion e Investigacion Tecnologic",
7605 "organization" : "Secretaria de Educacion e Investigacion Tecnologic"
7606 }
7607 },
7608 {
7609 "::148.209.0.0/112" : {
7610 "isp" : "Universidad Autonoma de Yucatan",
7611 "organization" : "Universidad Autonoma de Yucatan"
7612 }
7613 },
7614 {
7615 "::148.210.0.0/112" : {
7616 "isp" : "Universidad Autonoma De Ciudad Juarez",
7617 "organization" : "Universidad Autonoma De Ciudad Juarez"
7618 }
7619 },
7620 {
7621 "::148.211.0.0/112" : {
7622 "isp" : "Universidad Autonoma De Aguascalientes",
7623 "organization" : "Universidad Autonoma De Aguascalientes"
7624 }
7625 },
7626 {
7627 "::148.212.0.0/112" : {
7628 "isp" : "Universidad Autonoma de Coahuila",
7629 "organization" : "Universidad Autonoma de Coahuila"
7630 }
7631 },
7632 {
7633 "::148.213.0.0/112" : {
7634 "isp" : "Universidad de Colima",
7635 "organization" : "Universidad de Colima"
7636 }
7637 },
7638 {
7639 "::148.214.0.0/112" : {
7640 "isp" : "Universidad de Guanajuato",
7641 "organization" : "Universidad de Guanajuato"
7642 }
7643 },
7644 {
7645 "::148.215.0.0/112" : {
7646 "isp" : "Universidad Autonoma del Estado de Mexico",
7647 "organization" : "Universidad Autonoma del Estado de Mexico"
7648 }
7649 },
7650 {
7651 "::148.216.0.0/112" : {
7652 "isp" : "Universidad Michoacana de San Nicolas de Hidalgo",
7653 "organization" : "Universidad Michoacana de San Nicolas de Hidalgo"
7654 }
7655 },
7656 {
7657 "::148.217.0.0/112" : {
7658 "isp" : "Universidad Autonoma De Zacatecas",
7659 "organization" : "Universidad Autonoma De Zacatecas"
7660 }
7661 },
7662 {
7663 "::148.218.0.0/112" : {
7664 "isp" : "Universidad Autonoma Del Estado De Morelos",
7665 "organization" : "Universidad Autonoma Del Estado De Morelos"
7666 }
7667 },
7668 {
7669 "::148.219.0.0/112" : {
7670 "isp" : "Universidad Autonoma de Tlaxcala",
7671 "organization" : "Universidad Autonoma de Tlaxcala"
7672 }
7673 },
7674 {
7675 "::148.220.0.0/112" : {
7676 "isp" : "Universidad Autonoma de Queretaro",
7677 "organization" : "Universidad Autonoma de Queretaro"
7678 }
7679 },
7680 {
7681 "::148.221.0.0/112" : {
7682 "isp" : "Uninet S.A. de C.V.",
7683 "organization" : "Uninet S.A. de C.V."
7684 }
7685 },
7686 {
7687 "::148.222.0.0/112" : {
7688 "isp" : "Universidad Autonóma de Chiapas",
7689 "organization" : "Universidad Autonóma de Chiapas"
7690 }
7691 },
7692 {
7693 "::148.223.0.0/124" : {
7694 "isp" : "Uninet S.A. de C.V.",
7695 "organization" : "Grupo Domos"
7696 }
7697 },
7698 {
7699 "::148.223.0.16/124" : {
7700 "isp" : "Uninet S.A. de C.V.",
7701 "organization" : "Uninet S.A. de C.V."
7702 }
7703 },
7704 {
7705 "::148.223.0.32/123" : {
7706 "isp" : "Uninet S.A. de C.V.",
7707 "organization" : "Uninet S.A. de C.V."
7708 }
7709 },
7710 {
7711 "::148.223.0.64/122" : {
7712 "isp" : "Uninet S.A. de C.V.",
7713 "organization" : "Uninet S.A. de C.V."
7714 }
7715 },
7716 {
7717 "::148.223.0.128/122" : {
7718 "isp" : "Uninet S.A. de C.V.",
7719 "organization" : "Informacion Medica de Desarrollo - INFOMED"
7720 }
7721 },
7722 {
7723 "::148.223.0.192/122" : {
7724 "isp" : "Uninet S.A. de C.V.",
7725 "organization" : "Uninet S.A. de C.V."
7726 }
7727 },
7728 {
7729 "::148.223.1.0/120" : {
7730 "isp" : "Uninet S.A. de C.V.",
7731 "organization" : "Banorte (Clase C)"
7732 }
7733 },
7734 {
7735 "::148.223.2.0/119" : {
7736 "isp" : "Uninet S.A. de C.V.",
7737 "organization" : "Uninet S.A. de C.V."
7738 }
7739 },
7740 {
7741 "::148.223.4.0/118" : {
7742 "isp" : "Uninet S.A. de C.V.",
7743 "organization" : "Uninet S.A. de C.V."
7744 }
7745 },
7746 {
7747 "::148.223.8.0/119" : {
7748 "isp" : "Uninet S.A. de C.V.",
7749 "organization" : "Uninet S.A. de C.V."
7750 }
7751 },
7752 {
7753 "::148.223.10.0/120" : {
7754 "isp" : "Uninet S.A. de C.V.",
7755 "organization" : "Uninet S.A. de C.V."
7756 }
7757 },
7758 {
7759 "::148.223.11.0/124" : {
7760 "isp" : "Uninet S.A. de C.V.",
7761 "organization" : "Uninet S.A. de C.V."
7762 }
7763 },
7764 {
7765 "::148.223.11.16/124" : {
7766 "isp" : "Uninet S.A. de C.V.",
7767 "organization" : "Editora de Mar"
7768 }
7769 },
7770 {
7771 "::148.223.11.32/123" : {
7772 "isp" : "Uninet S.A. de C.V.",
7773 "organization" : "Uninet S.A. de C.V."
7774 }
7775 },
7776 {
7777 "::148.223.11.64/122" : {
7778 "isp" : "Uninet S.A. de C.V.",
7779 "organization" : "Uninet S.A. de C.V."
7780 }
7781 },
7782 {
7783 "::148.223.11.128/121" : {
7784 "isp" : "Uninet S.A. de C.V.",
7785 "organization" : "Uninet S.A. de C.V."
7786 }
7787 },
7788 {
7789 "::148.223.12.0/120" : {
7790 "isp" : "Uninet S.A. de C.V.",
7791 "organization" : "Uninet S.A. de C.V."
7792 }
7793 },
7794 {
7795 "::148.223.13.0/120" : {
7796 "isp" : "Uninet S.A. de C.V.",
7797 "organization" : "Gestión de direccionamiento UniNet"
7798 }
7799 },
7800 {
7801 "::148.223.14.0/119" : {
7802 "isp" : "Uninet S.A. de C.V.",
7803 "organization" : "Uninet S.A. de C.V."
7804 }
7805 },
7806 {
7807 "::148.223.16.0/124" : {
7808 "isp" : "Uninet S.A. de C.V.",
7809 "organization" : "UNL"
7810 }
7811 },
7812 {
7813 "::148.223.16.16/124" : {
7814 "isp" : "Uninet S.A. de C.V.",
7815 "organization" : "Uninet S.A. de C.V."
7816 }
7817 },
7818 {
7819 "::148.223.16.32/123" : {
7820 "isp" : "Uninet S.A. de C.V.",
7821 "organization" : "Uninet S.A. de C.V."
7822 }
7823 },
7824 {
7825 "::148.223.16.64/122" : {
7826 "isp" : "Uninet S.A. de C.V.",
7827 "organization" : "Uninet S.A. de C.V."
7828 }
7829 },
7830 {
7831 "::148.223.16.128/121" : {
7832 "isp" : "Uninet S.A. de C.V.",
7833 "organization" : "Multimedios Estrella de Oro"
7834 }
7835 },
7836 {
7837 "::148.223.17.0/120" : {
7838 "isp" : "Uninet S.A. de C.V.",
7839 "organization" : "Uninet S.A. de C.V."
7840 }
7841 },
7842 {
7843 "::148.223.18.0/119" : {
7844 "isp" : "Uninet S.A. de C.V.",
7845 "organization" : "Uninet S.A. de C.V."
7846 }
7847 },
7848 {
7849 "::148.223.20.0/118" : {
7850 "isp" : "Uninet S.A. de C.V.",
7851 "organization" : "Uninet S.A. de C.V."
7852 }
7853 },
7854 {
7855 "::148.223.24.0/117" : {
7856 "isp" : "Uninet S.A. de C.V.",
7857 "organization" : "Uninet S.A. de C.V."
7858 }
7859 },
7860 {
7861 "::148.223.32.0/115" : {
7862 "isp" : "Uninet S.A. de C.V.",
7863 "organization" : "Uninet S.A. de C.V."
7864 }
7865 },
7866 {
7867 "::148.223.64.0/115" : {
7868 "isp" : "Uninet S.A. de C.V.",
7869 "organization" : "Uninet S.A. de C.V."
7870 }
7871 },
7872 {
7873 "::148.223.96.0/117" : {
7874 "isp" : "Uninet S.A. de C.V.",
7875 "organization" : "Uninet S.A. de C.V."
7876 }
7877 },
7878 {
7879 "::148.223.104.0/119" : {
7880 "isp" : "Uninet S.A. de C.V.",
7881 "organization" : "Uninet S.A. de C.V."
7882 }
7883 },
7884 {
7885 "::148.223.106.0/123" : {
7886 "isp" : "Uninet S.A. de C.V.",
7887 "organization" : "Uninet S.A. de C.V."
7888 }
7889 },
7890 {
7891 "::148.223.106.32/124" : {
7892 "isp" : "Uninet S.A. de C.V.",
7893 "organization" : "Uninet S.A. de C.V."
7894 }
7895 },
7896 {
7897 "::148.223.106.48/125" : {
7898 "isp" : "Uninet S.A. de C.V.",
7899 "organization" : "Uninet S.A. de C.V."
7900 }
7901 },
7902 {
7903 "::148.223.106.56/126" : {
7904 "isp" : "Uninet S.A. de C.V.",
7905 "organization" : "Uninet S.A. de C.V."
7906 }
7907 },
7908 {
7909 "::148.223.106.60/127" : {
7910 "isp" : "Uninet S.A. de C.V.",
7911 "organization" : "Uninet S.A. de C.V."
7912 }
7913 },
7914 {
7915 "::148.223.106.62/128" : {
7916 "isp" : "Uninet S.A. de C.V.",
7917 "organization" : "Inea Parroquia De Nuestro Senor De La Misericordia"
7918 }
7919 },
7920 {
7921 "::148.223.106.63/128" : {
7922 "isp" : "Uninet S.A. de C.V.",
7923 "organization" : "Uninet S.A. de C.V."
7924 }
7925 },
7926 {
7927 "::148.223.106.64/122" : {
7928 "isp" : "Uninet S.A. de C.V.",
7929 "organization" : "Uninet S.A. de C.V."
7930 }
7931 },
7932 {
7933 "::148.223.106.128/122" : {
7934 "isp" : "Uninet S.A. de C.V.",
7935 "organization" : "Uninet S.A. de C.V."
7936 }
7937 },
7938 {
7939 "::148.223.106.192/124" : {
7940 "isp" : "Uninet S.A. de C.V.",
7941 "organization" : "Kappa Imagenes Digitales"
7942 }
7943 },
7944 {
7945 "::148.223.106.208/124" : {
7946 "isp" : "Uninet S.A. de C.V.",
7947 "organization" : "Uninet S.A. de C.V."
7948 }
7949 },
7950 {
7951 "::148.223.106.224/123" : {
7952 "isp" : "Uninet S.A. de C.V.",
7953 "organization" : "Uninet S.A. de C.V."
7954 }
7955 },
7956 {
7957 "::148.223.107.0/120" : {
7958 "isp" : "Uninet S.A. de C.V.",
7959 "organization" : "Uninet S.A. de C.V."
7960 }
7961 },
7962 {
7963 "::148.223.108.0/118" : {
7964 "isp" : "Uninet S.A. de C.V.",
7965 "organization" : "Uninet S.A. de C.V."
7966 }
7967 },
7968 {
7969 "::148.223.112.0/116" : {
7970 "isp" : "Uninet S.A. de C.V.",
7971 "organization" : "Uninet S.A. de C.V."
7972 }
7973 },
7974 {
7975 "::148.223.128.0/122" : {
7976 "isp" : "Uninet S.A. de C.V.",
7977 "organization" : "Uninet S.A. de C.V."
7978 }
7979 },
7980 {
7981 "::148.223.128.64/124" : {
7982 "isp" : "Uninet S.A. de C.V.",
7983 "organization" : "Clara Alfaro"
7984 }
7985 },
7986 {
7987 "::148.223.128.80/124" : {
7988 "isp" : "Uninet S.A. de C.V.",
7989 "organization" : "INAOE"
7990 }
7991 },
7992 {
7993 "::148.223.128.96/123" : {
7994 "isp" : "Uninet S.A. de C.V.",
7995 "organization" : "Uninet S.A. de C.V."
7996 }
7997 },
7998 {
7999 "::148.223.128.128/123" : {
8000 "isp" : "Uninet S.A. de C.V.",
8001 "organization" : "Uninet S.A. de C.V."
8002 }
8003 },
8004 {
8005 "::148.223.128.160/123" : {
8006 "isp" : "Uninet S.A. de C.V.",
8007 "organization" : "Conexiones Worldspan Tuxtla"
8008 }
8009 },
8010 {
8011 "::148.223.128.192/122" : {
8012 "isp" : "Uninet S.A. de C.V.",
8013 "organization" : "Uninet S.A. de C.V."
8014 }
8015 },
8016 {
8017 "::148.223.129.0/120" : {
8018 "isp" : "Uninet S.A. de C.V.",
8019 "organization" : "TapNet"
8020 }
8021 },
8022 {
8023 "::148.223.130.0/119" : {
8024 "isp" : "Uninet S.A. de C.V.",
8025 "organization" : "Uninet S.A. de C.V."
8026 }
8027 },
8028 {
8029 "::148.223.132.0/124" : {
8030 "isp" : "Uninet S.A. de C.V.",
8031 "organization" : "Uninet S.A. de C.V."
8032 }
8033 },
8034 {
8035 "::148.223.132.16/126" : {
8036 "isp" : "Uninet S.A. de C.V.",
8037 "organization" : "Uninet S.A. de C.V."
8038 }
8039 },
8040 {
8041 "::148.223.132.20/126" : {
8042 "isp" : "Uninet S.A. de C.V.",
8043 "organization" : "Cia Periodistica Del Sol De Puebla"
8044 }
8045 },
8046 {
8047 "::148.223.132.24/125" : {
8048 "isp" : "Uninet S.A. de C.V.",
8049 "organization" : "Uninet S.A. de C.V."
8050 }
8051 },
8052 {
8053 "::148.223.132.32/123" : {
8054 "isp" : "Uninet S.A. de C.V.",
8055 "organization" : "Uninet S.A. de C.V."
8056 }
8057 },
8058 {
8059 "::148.223.132.64/122" : {
8060 "isp" : "Uninet S.A. de C.V.",
8061 "organization" : "Uninet S.A. de C.V."
8062 }
8063 },
8064 {
8065 "::148.223.132.128/121" : {
8066 "isp" : "Uninet S.A. de C.V.",
8067 "organization" : "Uninet S.A. de C.V."
8068 }
8069 },
8070 {
8071 "::148.223.133.0/120" : {
8072 "isp" : "Uninet S.A. de C.V.",
8073 "organization" : "Uninet S.A. de C.V."
8074 }
8075 },
8076 {
8077 "::148.223.134.0/120" : {
8078 "isp" : "Uninet S.A. de C.V.",
8079 "organization" : "Uninet S.A. de C.V."
8080 }
8081 },
8082 {
8083 "::148.223.135.0/123" : {
8084 "isp" : "Uninet S.A. de C.V.",
8085 "organization" : "Uninet S.A. de C.V."
8086 }
8087 },
8088 {
8089 "::148.223.135.32/124" : {
8090 "isp" : "Uninet S.A. de C.V.",
8091 "organization" : "Sergio Perez Bocanegra"
8092 }
8093 },
8094 {
8095 "::148.223.135.48/124" : {
8096 "isp" : "Uninet S.A. de C.V.",
8097 "organization" : "Uninet S.A. de C.V."
8098 }
8099 },
8100 {
8101 "::148.223.135.64/123" : {
8102 "isp" : "Uninet S.A. de C.V.",
8103 "organization" : "Uninet S.A. de C.V."
8104 }
8105 },
8106 {
8107 "::148.223.135.96/124" : {
8108 "isp" : "Uninet S.A. de C.V.",
8109 "organization" : "CCYTT"
8110 }
8111 },
8112 {
8113 "::148.223.135.112/124" : {
8114 "isp" : "Uninet S.A. de C.V.",
8115 "organization" : "Uninet S.A. de C.V."
8116 }
8117 },
8118 {
8119 "::148.223.135.128/121" : {
8120 "isp" : "Uninet S.A. de C.V.",
8121 "organization" : "Uninet S.A. de C.V."
8122 }
8123 },
8124 {
8125 "::148.223.136.0/120" : {
8126 "isp" : "Uninet S.A. de C.V.",
8127 "organization" : "Cliente Tnet (Clase C)"
8128 }
8129 },
8130 {
8131 "::148.223.137.0/123" : {
8132 "isp" : "Uninet S.A. de C.V.",
8133 "organization" : "Conexiones Worldspan"
8134 }
8135 },
8136 {
8137 "::148.223.137.32/123" : {
8138 "isp" : "Uninet S.A. de C.V.",
8139 "organization" : "Uninet S.A. de C.V."
8140 }
8141 },
8142 {
8143 "::148.223.137.64/122" : {
8144 "isp" : "Uninet S.A. de C.V.",
8145 "organization" : "Uninet S.A. de C.V."
8146 }
8147 },
8148 {
8149 "::148.223.137.128/121" : {
8150 "isp" : "Uninet S.A. de C.V.",
8151 "organization" : "Uninet S.A. de C.V."
8152 }
8153 },
8154 {
8155 "::148.223.138.0/120" : {
8156 "isp" : "Uninet S.A. de C.V.",
8157 "organization" : "Uninet S.A. de C.V."
8158 }
8159 },
8160 {
8161 "::148.223.139.0/123" : {
8162 "isp" : "Uninet S.A. de C.V.",
8163 "organization" : "Enrique Estrada"
8164 }
8165 },
8166 {
8167 "::148.223.139.32/124" : {
8168 "isp" : "Uninet S.A. de C.V.",
8169 "organization" : "Ciber Café La Academia"
8170 }
8171 },
8172 {
8173 "::148.223.139.48/124" : {
8174 "isp" : "Uninet S.A. de C.V.",
8175 "organization" : "Uninet S.A. de C.V."
8176 }
8177 },
8178 {
8179 "::148.223.139.64/122" : {
8180 "isp" : "Uninet S.A. de C.V.",
8181 "organization" : "Uninet S.A. de C.V."
8182 }
8183 },
8184 {
8185 "::148.223.139.128/121" : {
8186 "isp" : "Uninet S.A. de C.V.",
8187 "organization" : "Uninet S.A. de C.V."
8188 }
8189 },
8190 {
8191 "::148.223.140.0/120" : {
8192 "isp" : "Uninet S.A. de C.V.",
8193 "organization" : "Uninet S.A. de C.V."
8194 }
8195 },
8196 {
8197 "::148.223.141.0/121" : {
8198 "isp" : "Uninet S.A. de C.V.",
8199 "organization" : "Uninet S.A. de C.V."
8200 }
8201 },
8202 {
8203 "::148.223.141.128/122" : {
8204 "isp" : "Uninet S.A. de C.V.",
8205 "organization" : "Uninet S.A. de C.V."
8206 }
8207 },
8208 {
8209 "::148.223.141.192/123" : {
8210 "isp" : "Uninet S.A. de C.V.",
8211 "organization" : "Uninet S.A. de C.V."
8212 }
8213 },
8214 {
8215 "::148.223.141.224/125" : {
8216 "isp" : "Uninet S.A. de C.V.",
8217 "organization" : "Uninet S.A. de C.V."
8218 }
8219 },
8220 {
8221 "::148.223.141.232/126" : {
8222 "isp" : "Uninet S.A. de C.V.",
8223 "organization" : "Centro De Capacitacion En Computacion De San Andre"
8224 }
8225 },
8226 {
8227 "::148.223.141.236/126" : {
8228 "isp" : "Uninet S.A. de C.V.",
8229 "organization" : "Uninet S.A. de C.V."
8230 }
8231 },
8232 {
8233 "::148.223.141.240/124" : {
8234 "isp" : "Uninet S.A. de C.V.",
8235 "organization" : "Uninet S.A. de C.V."
8236 }
8237 },
8238 {
8239 "::148.223.142.0/124" : {
8240 "isp" : "Uninet S.A. de C.V.",
8241 "organization" : "Uninet S.A. de C.V."
8242 }
8243 },
8244 {
8245 "::148.223.142.16/124" : {
8246 "isp" : "Uninet S.A. de C.V.",
8247 "organization" : "Karlinka"
8248 }
8249 },
8250 {
8251 "::148.223.142.32/123" : {
8252 "isp" : "Uninet S.A. de C.V.",
8253 "organization" : "Uninet S.A. de C.V."
8254 }
8255 },
8256 {
8257 "::148.223.142.64/123" : {
8258 "isp" : "Uninet S.A. de C.V.",
8259 "organization" : "Uninet S.A. de C.V."
8260 }
8261 },
8262 {
8263 "::148.223.142.96/124" : {
8264 "isp" : "Uninet S.A. de C.V.",
8265 "organization" : "Centro Profesional de Computación del Golfo"
8266 }
8267 },
8268 {
8269 "::148.223.142.112/124" : {
8270 "isp" : "Uninet S.A. de C.V.",
8271 "organization" : "Uninet S.A. de C.V."
8272 }
8273 },
8274 {
8275 "::148.223.142.128/124" : {
8276 "isp" : "Uninet S.A. de C.V.",
8277 "organization" : "Uninet S.A. de C.V."
8278 }
8279 },
8280 {
8281 "::148.223.142.144/124" : {
8282 "isp" : "Uninet S.A. de C.V.",
8283 "organization" : "Eduardo Guerrero"
8284 }
8285 },
8286 {
8287 "::148.223.142.160/123" : {
8288 "isp" : "Uninet S.A. de C.V.",
8289 "organization" : "Uninet S.A. de C.V."
8290 }
8291 },
8292 {
8293 "::148.223.142.192/122" : {
8294 "isp" : "Uninet S.A. de C.V.",
8295 "organization" : "Uninet S.A. de C.V."
8296 }
8297 },
8298 {
8299 "::148.223.143.0/122" : {
8300 "isp" : "Uninet S.A. de C.V.",
8301 "organization" : "Uninet S.A. de C.V."
8302 }
8303 },
8304 {
8305 "::148.223.143.64/124" : {
8306 "isp" : "Uninet S.A. de C.V.",
8307 "organization" : "Univ. Tec.Tabasco"
8308 }
8309 },
8310 {
8311 "::148.223.143.80/124" : {
8312 "isp" : "Uninet S.A. de C.V.",
8313 "organization" : "Uninet S.A. de C.V."
8314 }
8315 },
8316 {
8317 "::148.223.143.96/123" : {
8318 "isp" : "Uninet S.A. de C.V.",
8319 "organization" : "Uninet S.A. de C.V."
8320 }
8321 },
8322 {
8323 "::148.223.143.128/121" : {
8324 "isp" : "Uninet S.A. de C.V.",
8325 "organization" : "Uninet S.A. de C.V."
8326 }
8327 },
8328 {
8329 "::148.223.144.0/120" : {
8330 "isp" : "Uninet S.A. de C.V.",
8331 "organization" : "Uninet S.A. de C.V."
8332 }
8333 },
8334 {
8335 "::148.223.145.0/124" : {
8336 "isp" : "Uninet S.A. de C.V.",
8337 "organization" : "Integri"
8338 }
8339 },
8340 {
8341 "::148.223.145.16/124" : {
8342 "isp" : "Uninet S.A. de C.V.",
8343 "organization" : "Uninet S.A. de C.V."
8344 }
8345 },
8346 {
8347 "::148.223.145.32/124" : {
8348 "isp" : "Uninet S.A. de C.V.",
8349 "organization" : "Uninet S.A. de C.V."
8350 }
8351 },
8352 {
8353 "::148.223.145.48/124" : {
8354 "isp" : "Uninet S.A. de C.V.",
8355 "organization" : "Coremi"
8356 }
8357 },
8358 {
8359 "::148.223.145.64/122" : {
8360 "isp" : "Uninet S.A. de C.V.",
8361 "organization" : "Uninet S.A. de C.V."
8362 }
8363 },
8364 {
8365 "::148.223.145.128/124" : {
8366 "isp" : "Uninet S.A. de C.V.",
8367 "organization" : "Felipe Batista"
8368 }
8369 },
8370 {
8371 "::148.223.145.144/124" : {
8372 "isp" : "Uninet S.A. de C.V.",
8373 "organization" : "Hector Ruben Fdez"
8374 }
8375 },
8376 {
8377 "::148.223.145.160/123" : {
8378 "isp" : "Uninet S.A. de C.V.",
8379 "organization" : "Uninet S.A. de C.V."
8380 }
8381 },
8382 {
8383 "::148.223.145.192/122" : {
8384 "isp" : "Uninet S.A. de C.V.",
8385 "organization" : "Uninet S.A. de C.V."
8386 }
8387 },
8388 {
8389 "::148.223.146.0/122" : {
8390 "isp" : "Uninet S.A. de C.V.",
8391 "organization" : "Uninet S.A. de C.V."
8392 }
8393 },
8394 {
8395 "::148.223.146.64/124" : {
8396 "isp" : "Uninet S.A. de C.V.",
8397 "organization" : "Marco Antonio Guevara"
8398 }
8399 },
8400 {
8401 "::148.223.146.80/124" : {
8402 "isp" : "Uninet S.A. de C.V.",
8403 "organization" : "Uninet S.A. de C.V."
8404 }
8405 },
8406 {
8407 "::148.223.146.96/123" : {
8408 "isp" : "Uninet S.A. de C.V.",
8409 "organization" : "Uninet S.A. de C.V."
8410 }
8411 },
8412 {
8413 "::148.223.146.128/122" : {
8414 "isp" : "Uninet S.A. de C.V.",
8415 "organization" : "Uninet S.A. de C.V."
8416 }
8417 },
8418 {
8419 "::148.223.146.192/124" : {
8420 "isp" : "Uninet S.A. de C.V.",
8421 "organization" : "Browse Puebla"
8422 }
8423 },
8424 {
8425 "::148.223.146.208/124" : {
8426 "isp" : "Uninet S.A. de C.V.",
8427 "organization" : "Uninet S.A. de C.V."
8428 }
8429 },
8430 {
8431 "::148.223.146.224/123" : {
8432 "isp" : "Uninet S.A. de C.V.",
8433 "organization" : "Uninet S.A. de C.V."
8434 }
8435 },
8436 {
8437 "::148.223.147.0/120" : {
8438 "isp" : "Uninet S.A. de C.V.",
8439 "organization" : "Uninet S.A. de C.V."
8440 }
8441 },
8442 {
8443 "::148.223.148.0/119" : {
8444 "isp" : "Uninet S.A. de C.V.",
8445 "organization" : "Uninet S.A. de C.V."
8446 }
8447 },
8448 {
8449 "::148.223.150.0/123" : {
8450 "isp" : "Uninet S.A. de C.V.",
8451 "organization" : "Conexiones Worldspan"
8452 }
8453 },
8454 {
8455 "::148.223.150.32/123" : {
8456 "isp" : "Uninet S.A. de C.V.",
8457 "organization" : "Uninet S.A. de C.V."
8458 }
8459 },
8460 {
8461 "::148.223.150.64/122" : {
8462 "isp" : "Uninet S.A. de C.V.",
8463 "organization" : "Uninet S.A. de C.V."
8464 }
8465 },
8466 {
8467 "::148.223.150.128/121" : {
8468 "isp" : "Uninet S.A. de C.V.",
8469 "organization" : "Uninet S.A. de C.V."
8470 }
8471 },
8472 {
8473 "::148.223.151.0/120" : {
8474 "isp" : "Uninet S.A. de C.V.",
8475 "organization" : "Uninet S.A. de C.V."
8476 }
8477 },
8478 {
8479 "::148.223.152.0/120" : {
8480 "isp" : "Uninet S.A. de C.V.",
8481 "organization" : "Uninet S.A. de C.V."
8482 }
8483 },
8484 {
8485 "::148.223.153.0/124" : {
8486 "isp" : "Uninet S.A. de C.V.",
8487 "organization" : "Uninet S.A. de C.V."
8488 }
8489 },
8490 {
8491 "::148.223.153.16/126" : {
8492 "isp" : "Uninet S.A. de C.V.",
8493 "organization" : "Uninet S.A. de C.V."
8494 }
8495 },
8496 {
8497 "::148.223.153.20/126" : {
8498 "isp" : "Uninet S.A. de C.V.",
8499 "organization" : "Bursametrica Management"
8500 }
8501 },
8502 {
8503 "::148.223.153.24/125" : {
8504 "isp" : "Uninet S.A. de C.V.",
8505 "organization" : "Uninet S.A. de C.V."
8506 }
8507 },
8508 {
8509 "::148.223.153.32/123" : {
8510 "isp" : "Uninet S.A. de C.V.",
8511 "organization" : "Uninet S.A. de C.V."
8512 }
8513 },
8514 {
8515 "::148.223.153.64/122" : {
8516 "isp" : "Uninet S.A. de C.V.",
8517 "organization" : "Uninet S.A. de C.V."
8518 }
8519 },
8520 {
8521 "::148.223.153.128/121" : {
8522 "isp" : "Uninet S.A. de C.V.",
8523 "organization" : "Uninet S.A. de C.V."
8524 }
8525 },
8526 {
8527 "::148.223.154.0/120" : {
8528 "isp" : "Uninet S.A. de C.V.",
8529 "organization" : "Uninet S.A. de C.V."
8530 }
8531 },
8532 {
8533 "::148.223.155.0/123" : {
8534 "isp" : "Uninet S.A. de C.V.",
8535 "organization" : "Uninet S.A. de C.V."
8536 }
8537 },
8538 {
8539 "::148.223.155.32/124" : {
8540 "isp" : "Uninet S.A. de C.V.",
8541 "organization" : "Mexicana de Importaciones y Exportaciones"
8542 }
8543 },
8544 {
8545 "::148.223.155.48/124" : {
8546 "isp" : "Uninet S.A. de C.V.",
8547 "organization" : "Uninet S.A. de C.V."
8548 }
8549 },
8550 {
8551 "::148.223.155.64/124" : {
8552 "isp" : "Uninet S.A. de C.V.",
8553 "organization" : "Uninet S.A. de C.V."
8554 }
8555 },
8556 {
8557 "::148.223.155.80/124" : {
8558 "isp" : "Uninet S.A. de C.V.",
8559 "organization" : "Electronica Steren"
8560 }
8561 },
8562 {
8563 "::148.223.155.96/123" : {
8564 "isp" : "Uninet S.A. de C.V.",
8565 "organization" : "Uninet S.A. de C.V."
8566 }
8567 },
8568 {
8569 "::148.223.155.128/123" : {
8570 "isp" : "Uninet S.A. de C.V.",
8571 "organization" : "Uninet S.A. de C.V."
8572 }
8573 },
8574 {
8575 "::148.223.155.160/124" : {
8576 "isp" : "Uninet S.A. de C.V.",
8577 "organization" : "Uninet S.A. de C.V."
8578 }
8579 },
8580 {
8581 "::148.223.155.176/124" : {
8582 "isp" : "Uninet S.A. de C.V.",
8583 "organization" : "Agencia Aduanera de America"
8584 }
8585 },
8586 {
8587 "::148.223.155.192/122" : {
8588 "isp" : "Uninet S.A. de C.V.",
8589 "organization" : "Uninet S.A. de C.V."
8590 }
8591 },
8592 {
8593 "::148.223.156.0/118" : {
8594 "isp" : "Uninet S.A. de C.V.",
8595 "organization" : "CONECEL"
8596 }
8597 },
8598 {
8599 "::148.223.160.0/120" : {
8600 "isp" : "Uninet S.A. de C.V.",
8601 "organization" : "Centro de Computo Juce"
8602 }
8603 },
8604 {
8605 "::148.223.161.0/122" : {
8606 "isp" : "Uninet S.A. de C.V.",
8607 "organization" : "Uninet S.A. de C.V."
8608 }
8609 },
8610 {
8611 "::148.223.161.64/124" : {
8612 "isp" : "Uninet S.A. de C.V.",
8613 "organization" : "Uninet S.A. de C.V."
8614 }
8615 },
8616 {
8617 "::148.223.161.80/124" : {
8618 "isp" : "Uninet S.A. de C.V.",
8619 "organization" : "Canacar"
8620 }
8621 },
8622 {
8623 "::148.223.161.96/123" : {
8624 "isp" : "Uninet S.A. de C.V.",
8625 "organization" : "Uninet S.A. de C.V."
8626 }
8627 },
8628 {
8629 "::148.223.161.128/122" : {
8630 "isp" : "Uninet S.A. de C.V.",
8631 "organization" : "Uninet S.A. de C.V."
8632 }
8633 },
8634 {
8635 "::148.223.161.192/124" : {
8636 "isp" : "Uninet S.A. de C.V.",
8637 "organization" : "Trainingware"
8638 }
8639 },
8640 {
8641 "::148.223.161.208/124" : {
8642 "isp" : "Uninet S.A. de C.V.",
8643 "organization" : "Uninet S.A. de C.V."
8644 }
8645 },
8646 {
8647 "::148.223.161.224/123" : {
8648 "isp" : "Uninet S.A. de C.V.",
8649 "organization" : "Multiservicios Promocionales"
8650 }
8651 },
8652 {
8653 "::148.223.162.0/124" : {
8654 "isp" : "Uninet S.A. de C.V.",
8655 "organization" : "Hipotecaria Nacional"
8656 }
8657 },
8658 {
8659 "::148.223.162.16/124" : {
8660 "isp" : "Uninet S.A. de C.V.",
8661 "organization" : "Empaques de Carton Uninet"
8662 }
8663 },
8664 {
8665 "::148.223.162.32/123" : {
8666 "isp" : "Uninet S.A. de C.V.",
8667 "organization" : "Conexiones Worldspan"
8668 }
8669 },
8670 {
8671 "::148.223.162.64/124" : {
8672 "isp" : "Uninet S.A. de C.V.",
8673 "organization" : "SNTE"
8674 }
8675 },
8676 {
8677 "::148.223.162.80/124" : {
8678 "isp" : "Uninet S.A. de C.V.",
8679 "organization" : "Uninet S.A. de C.V."
8680 }
8681 },
8682 {
8683 "::148.223.162.96/123" : {
8684 "isp" : "Uninet S.A. de C.V.",
8685 "organization" : "Uninet S.A. de C.V."
8686 }
8687 },
8688 {
8689 "::148.223.162.128/124" : {
8690 "isp" : "Uninet S.A. de C.V.",
8691 "organization" : "Agencia de Comunicaion Interactiva"
8692 }
8693 },
8694 {
8695 "::148.223.162.144/124" : {
8696 "isp" : "Uninet S.A. de C.V.",
8697 "organization" : "Uninet S.A. de C.V."
8698 }
8699 },
8700 {
8701 "::148.223.162.160/124" : {
8702 "isp" : "Uninet S.A. de C.V.",
8703 "organization" : "IFE Tlalpan"
8704 }
8705 },
8706 {
8707 "::148.223.162.176/124" : {
8708 "isp" : "Uninet S.A. de C.V.",
8709 "organization" : "Uninet S.A. de C.V."
8710 }
8711 },
8712 {
8713 "::148.223.162.192/122" : {
8714 "isp" : "Uninet S.A. de C.V.",
8715 "organization" : "Uninet S.A. de C.V."
8716 }
8717 },
8718 {
8719 "::148.223.163.0/120" : {
8720 "isp" : "Uninet S.A. de C.V.",
8721 "organization" : "Uninet S.A. de C.V."
8722 }
8723 },
8724 {
8725 "::148.223.164.0/118" : {
8726 "isp" : "Uninet S.A. de C.V.",
8727 "organization" : "Uninet S.A. de C.V."
8728 }
8729 },
8730 {
8731 "::148.223.168.0/117" : {
8732 "isp" : "Uninet S.A. de C.V.",
8733 "organization" : "Uninet S.A. de C.V."
8734 }
8735 },
8736 {
8737 "::148.223.176.0/116" : {
8738 "isp" : "Uninet S.A. de C.V.",
8739 "organization" : "Uninet S.A. de C.V."
8740 }
8741 },
8742 {
8743 "::148.223.192.0/114" : {
8744 "isp" : "Uninet S.A. de C.V.",
8745 "organization" : "Uninet S.A. de C.V."
8746 }
8747 },
8748 {
8749 "::148.240.0.0/119" : {
8750 "isp" : "Axtel Infraestructura-core",
8751 "organization" : "Axtel Infraestructura-core"
8752 }
8753 },
8754 {
8755 "::148.243.0.0/112" : {
8756 "isp" : "Axtel, S.A.B. de C.V.",
8757 "organization" : "Axtel, S.A.B. de C.V."
8758 }
8759 },
8760 {
8761 "::148.245.0.0/120" : {
8762 "isp" : "Informacion Al Dia Y Comput SA",
8763 "organization" : "Informacion Al Dia Y Comput SA"
8764 }
8765 },
8766 {
8767 "::149.5.110.0/119" : {
8768 "organization" : "Fibrestream Limited"
8769 }
8770 },
8771 {
8772 "::154.50.194.0/119" : {
8773 "organization" : "Wireless Connect Ltd."
8774 }
8775 },
8776 {
8777 "::168.70.0.0/112" : {
8778 "organization" : "HKTNET"
8779 }
8780 },
8781 {
8782 "::169.158.0.0/112" : {
8783 "isp" : "Centro Nacional de Intercambio Automatizado",
8784 "organization" : "Centro Nacional de Intercambio Automatizado"
8785 }
8786 },
8787 {
8788 "::171.25.212.0/118" : {
8789 "organization" : "F-KOM"
8790 }
8791 },
8792 {
8793 "::172.128.0.0/106" : {
8794 "autonomous_system_number" : 1668,
8795 "autonomous_system_organization" : "AOL Transit Data Network",
8796 "isp" : "America Online",
8797 "organization" : "America Online"
8798 }
8799 },
8800 {
8801 "::173.227.197.0/120" : {
8802 "organization" : "Circle 1 Network"
8803 }
8804 },
8805 {
8806 "::174.36.207.24/128" : {
8807 "organization" : "Goversoft"
8808 }
8809 },
8810 {
8811 "::174.127.224.0/115" : {
8812 "isp" : "Condointernet.net"
8813 }
8814 },
8815 {
8816 "::174.192.0.0/106" : {
8817 "autonomous_system_number" : 6167,
8818 "autonomous_system_organization" : "Cellco Partnership DBA Verizon Wireless",
8819 "isp" : "Verizon Wireless",
8820 "organization" : "Verizon Wireless"
8821 }
8822 },
8823 {
8824 "::176.128.0.0/106" : {
8825 "autonomous_system_number" : 12844,
8826 "autonomous_system_organization" : "Bouygues Telecom",
8827 "isp" : "Bouygues Telecom",
8828 "organization" : "Bouygues Telecom"
8829 }
8830 },
8831 {
8832 "::177.0.0.0/110" : {
8833 "isp" : "Oi Internet",
8834 "organization" : "Oi Internet"
8835 }
8836 },
8837 {
8838 "::177.10.0.0/116" : {
8839 "isp" : "Regency Comunicações Ltda",
8840 "organization" : "Regency Comunicações Ltda"
8841 }
8842 },
8843 {
8844 "::177.10.24.0/117" : {
8845 "isp" : "M.A. Informática Ltda.",
8846 "organization" : "M.A. Informática Ltda."
8847 }
8848 },
8849 {
8850 "::177.10.48.0/117" : {
8851 "isp" : "Banner Serviços de Telecom e Internet Ltda.",
8852 "organization" : "Banner Serviços de Telecom e Internet Ltda."
8853 }
8854 },
8855 {
8856 "::177.10.56.0/117" : {
8857 "isp" : "Hoinaski & Sklasky Ltda",
8858 "organization" : "Hoinaski & Sklasky Ltda"
8859 }
8860 },
8861 {
8862 "::177.10.64.0/117" : {
8863 "isp" : "Silveira & Ziquinatti Ltda",
8864 "organization" : "Silveira & Ziquinatti Ltda"
8865 }
8866 },
8867 {
8868 "::177.10.96.0/117" : {
8869 "isp" : "Naja Telecomunicações Ltda.",
8870 "organization" : "Naja Telecomunicações Ltda."
8871 }
8872 },
8873 {
8874 "::177.10.112.0/118" : {
8875 "isp" : "Eletrosul Centrais Elétricas S.A.",
8876 "organization" : "Eletrosul Centrais Elétricas S.A."
8877 }
8878 },
8879 {
8880 "::177.10.116.0/118" : {
8881 "isp" : "Space Net Serv. De TelecomunicaÇÃo Em Inf. Ltda-me",
8882 "organization" : "Space Net Serv. De TelecomunicaÇÃo Em Inf. Ltda-me"
8883 }
8884 },
8885 {
8886 "::177.10.120.0/118" : {
8887 "isp" : "JF Soluções Informática Ltda.",
8888 "organization" : "JF Soluções Informática Ltda."
8889 }
8890 },
8891 {
8892 "::177.10.124.0/118" : {
8893 "isp" : "Info House Informática e Papeis Ltda",
8894 "organization" : "Info House Informática e Papeis Ltda"
8895 }
8896 },
8897 {
8898 "::177.10.132.0/118" : {
8899 "isp" : "P3 Host Internet Brasil",
8900 "organization" : "P3 Host Internet Brasil"
8901 }
8902 },
8903 {
8904 "::177.10.136.0/118" : {
8905 "isp" : "Bluephone Solucoes Tecnologicas Ltda",
8906 "organization" : "Bluephone Solucoes Tecnologicas Ltda"
8907 }
8908 },
8909 {
8910 "::177.10.144.0/117" : {
8911 "isp" : "NETWS Telecomunicações Ltda.",
8912 "organization" : "NETWS Telecomunicações Ltda."
8913 }
8914 },
8915 {
8916 "::177.10.160.0/117" : {
8917 "isp" : "Chapeco Tecnologia em Telecomunicações Ltda.",
8918 "organization" : "Chapeco Tecnologia em Telecomunicações Ltda."
8919 }
8920 },
8921 {
8922 "::177.10.192.0/117" : {
8923 "isp" : "Afinet Solucoes Em Tecnologia Da Informacao Ltda",
8924 "organization" : "Afinet Solucoes Em Tecnologia Da Informacao Ltda"
8925 }
8926 },
8927 {
8928 "::177.10.208.0/117" : {
8929 "isp" : "Mil Negocios Ltda.",
8930 "organization" : "Mil Negocios Ltda."
8931 }
8932 },
8933 {
8934 "::177.10.216.0/118" : {
8935 "isp" : "Fox Conect Provedor de Internet LTDA",
8936 "organization" : "Fox Conect Provedor de Internet LTDA"
8937 }
8938 },
8939 {
8940 "::177.10.224.0/117" : {
8941 "isp" : "G30 Telecom ServiÇos Em TelecomunicaÇÕes Ltda",
8942 "organization" : "G30 Telecom ServiÇos Em TelecomunicaÇÕes Ltda"
8943 }
8944 },
8945 {
8946 "::177.10.240.0/117" : {
8947 "isp" : "Midasnet Telecomunicacoes Ltda",
8948 "organization" : "Midasnet Telecomunicacoes Ltda"
8949 }
8950 },
8951 {
8952 "::177.10.248.0/117" : {
8953 "isp" : "Viveiros & Araujo Serviços de Provedores da Intern",
8954 "organization" : "Viveiros & Araujo Serviços de Provedores da Intern"
8955 }
8956 },
8957 {
8958 "::177.11.16.0/118" : {
8959 "isp" : "Rodolfo Romao De Oliveira Neto & Cia Ltda",
8960 "organization" : "Rodolfo Romao De Oliveira Neto & Cia Ltda"
8961 }
8962 },
8963 {
8964 "::177.11.24.0/118" : {
8965 "isp" : "Ajaxtel Telecomunicações Ltda.",
8966 "organization" : "Ajaxtel Telecomunicações Ltda."
8967 }
8968 },
8969 {
8970 "::177.11.32.0/117" : {
8971 "isp" : "Mcnet Serviços de Comunicações Ltda",
8972 "organization" : "Mcnet Serviços de Comunicações Ltda"
8973 }
8974 },
8975 {
8976 "::177.11.56.0/118" : {
8977 "isp" : "R.D.S. Bortoluzzi & Cia Ltda - ME",
8978 "organization" : "R.D.S. Bortoluzzi & Cia Ltda - ME"
8979 }
8980 },
8981 {
8982 "::177.11.60.0/118" : {
8983 "isp" : "Tolrs Informática Ltda",
8984 "organization" : "Tolrs Informática Ltda"
8985 }
8986 },
8987 {
8988 "::177.11.64.0/120" : {
8989 "isp" : "Digicontrol ServiÇos De Provedores Ltda",
8990 "organization" : "Pablo William Silva Tavares de Lira"
8991 }
8992 },
8993 {
8994 "::177.11.65.0/120" : {
8995 "isp" : "Digicontrol ServiÇos De Provedores Ltda",
8996 "organization" : "Digicontrol ServiÇos De Provedores Ltda"
8997 }
8998 },
8999 {
9000 "::177.11.66.0/119" : {
9001 "isp" : "Digicontrol ServiÇos De Provedores Ltda",
9002 "organization" : "Digicontrol ServiÇos De Provedores Ltda"
9003 }
9004 },
9005 {
9006 "::177.11.68.0/118" : {
9007 "isp" : "Digicontrol ServiÇos De Provedores Ltda",
9008 "organization" : "Digicontrol ServiÇos De Provedores Ltda"
9009 }
9010 },
9011 {
9012 "::177.11.80.0/118" : {
9013 "isp" : "PRIMEHOST do BRASIL Ltda",
9014 "organization" : "PRIMEHOST do BRASIL Ltda"
9015 }
9016 },
9017 {
9018 "::177.11.84.0/118" : {
9019 "isp" : "Minas Turbo Provedor de Internet",
9020 "organization" : "Minas Turbo Provedor de Internet"
9021 }
9022 },
9023 {
9024 "::177.11.88.0/118" : {
9025 "isp" : "Br2 Internet Ltda",
9026 "organization" : "Br2 Internet Ltda"
9027 }
9028 },
9029 {
9030 "::177.11.100.0/118" : {
9031 "isp" : "Conexis Internet Provider Ltda - Me",
9032 "organization" : "Conexis Internet Provider Ltda - Me"
9033 }
9034 },
9035 {
9036 "::177.11.104.0/118" : {
9037 "isp" : "Nolasco & Nonnenmacher Comercio e Rep. Ltda.",
9038 "organization" : "Nolasco & Nonnenmacher Comercio e Rep. Ltda."
9039 }
9040 },
9041 {
9042 "::177.11.112.0/117" : {
9043 "isp" : "Interneith Via Radio Ltda.",
9044 "organization" : "Interneith Via Radio Ltda."
9045 }
9046 },
9047 {
9048 "::177.11.144.0/117" : {
9049 "isp" : "Apn - Processamento de Dados e Soluçoes em Interne",
9050 "organization" : "Apn - Processamento de Dados e Soluçoes em Interne"
9051 }
9052 },
9053 {
9054 "::177.11.152.0/117" : {
9055 "isp" : "Minas Net Ldta Me",
9056 "organization" : "Minas Net Ldta Me"
9057 }
9058 },
9059 {
9060 "::177.11.160.0/117" : {
9061 "isp" : "Netway Provedor De Internet Ltda",
9062 "organization" : "Netway Provedor De Internet Ltda"
9063 }
9064 },
9065 {
9066 "::177.11.176.0/117" : {
9067 "isp" : "Catanduva sistemas a cabo ltda.",
9068 "organization" : "Catanduva sistemas a cabo ltda."
9069 }
9070 },
9071 {
9072 "::177.11.184.0/117" : {
9073 "isp" : "Telecomunicacões Minas Mais Ltda",
9074 "organization" : "Telecomunicacões Minas Mais Ltda"
9075 }
9076 },
9077 {
9078 "::177.11.192.0/117" : {
9079 "isp" : "Bom Tempo Informática Ltda",
9080 "organization" : "Bom Tempo Informática Ltda"
9081 }
9082 },
9083 {
9084 "::177.11.208.0/118" : {
9085 "isp" : "Arikinet Internet Ltda - EPP",
9086 "organization" : "Arikinet Internet Ltda - EPP"
9087 }
9088 },
9089 {
9090 "::177.11.212.0/118" : {
9091 "isp" : "E&L Producoes de Software Ltda",
9092 "organization" : "E&L Producoes de Software Ltda"
9093 }
9094 },
9095 {
9096 "::177.11.232.0/117" : {
9097 "isp" : "Microfox Informatica Ltda",
9098 "organization" : "Microfox Informatica Ltda"
9099 }
9100 },
9101 {
9102 "::177.11.240.0/118" : {
9103 "isp" : "Mapfre Vera Cruz Seguradora S/a",
9104 "organization" : "Mapfre Vera Cruz Seguradora S/a"
9105 }
9106 },
9107 {
9108 "::177.11.248.0/118" : {
9109 "isp" : "Norte Line Telecomunicações Ltda.",
9110 "organization" : "Norte Line Telecomunicações Ltda."
9111 }
9112 },
9113 {
9114 "::177.12.0.0/114" : {
9115 "isp" : "Predialnet Provedor De Internet Ltda",
9116 "organization" : "Predialnet Provedor De Internet Ltda"
9117 }
9118 },
9119 {
9120 "::177.12.128.0/115" : {
9121 "isp" : "Pronto Net Ltda.",
9122 "organization" : "Pronto Net Ltda."
9123 }
9124 },
9125 {
9126 "::177.12.160.0/117" : {
9127 "organization" : "IPV6 Internet Ltda"
9128 }
9129 },
9130 {
9131 "::177.12.176.0/116" : {
9132 "isp" : "W r de bel entreterimentos s/s ltda",
9133 "organization" : "W r de bel entreterimentos s/s ltda"
9134 }
9135 },
9136 {
9137 "::177.12.192.0/116" : {
9138 "isp" : "Alonso Oliveira Neto Me",
9139 "organization" : "Alonso Oliveira Neto Me"
9140 }
9141 },
9142 {
9143 "::177.12.208.0/116" : {
9144 "isp" : "IP2 Telecomunicação Ltda.",
9145 "organization" : "IP2 Telecomunicação Ltda."
9146 }
9147 },
9148 {
9149 "::177.12.240.0/116" : {
9150 "isp" : "TURBO 10 Telecomunicações Ltda.",
9151 "organization" : "TURBO 10 Telecomunicações Ltda."
9152 }
9153 },
9154 {
9155 "::177.100.0.0/112" : {
9156 "isp" : "Vcb Provedor De Acesso Ltda",
9157 "organization" : "Vcb Provedor De Acesso Ltda"
9158 }
9159 },
9160 {
9161 "::177.101.0.0/116" : {
9162 "isp" : "Click.com telecomunicações ltda-me",
9163 "organization" : "Click.com telecomunicações ltda-me"
9164 }
9165 },
9166 {
9167 "::177.101.16.0/116" : {
9168 "isp" : "Universidade Estadual De Ponta Grossa",
9169 "organization" : "Universidade Estadual De Ponta Grossa"
9170 }
9171 },
9172 {
9173 "::177.101.32.0/117" : {
9174 "isp" : "Unica Tecnology Ltda",
9175 "organization" : "Unica Tecnology Ltda"
9176 }
9177 },
9178 {
9179 "::177.101.40.0/118" : {
9180 "isp" : "Unica Tecnology Ltda",
9181 "organization" : "Unica Tecnology Ltda"
9182 }
9183 },
9184 {
9185 "::177.101.44.0/118" : {
9186 "isp" : "Unica Tecnology Ltda",
9187 "organization" : "Microtell Informatica - Comercio & Prestacao De S"
9188 }
9189 },
9190 {
9191 "::177.101.80.0/116" : {
9192 "isp" : "Intercol - Internet Colatina Ltda-ME",
9193 "organization" : "Intercol - Internet Colatina Ltda-ME"
9194 }
9195 },
9196 {
9197 "::177.101.96.0/115" : {
9198 "isp" : "T.p.a. InformÁtica Ltda",
9199 "organization" : "T.p.a. InformÁtica Ltda"
9200 }
9201 },
9202 {
9203 "::177.101.128.0/116" : {
9204 "isp" : "Ampernet Telecomunicações Ltda",
9205 "organization" : "Ampernet Telecomunicações Ltda"
9206 }
9207 },
9208 {
9209 "::177.101.176.0/116" : {
9210 "isp" : "Mar Provedor de Internet Ltda",
9211 "organization" : "Mar Provedor de Internet Ltda"
9212 }
9213 },
9214 {
9215 "::177.101.192.0/114" : {
9216 "isp" : "Sul Americana Tecnologia e Informática Ltda.",
9217 "organization" : "Sul Americana Tecnologia e Informática Ltda."
9218 }
9219 },
9220 {
9221 "::177.102.0.0/111" : {
9222 "isp" : "Vivo",
9223 "organization" : "Vivo"
9224 }
9225 },
9226 {
9227 "::177.104.0.0/116" : {
9228 "isp" : "Jgm Brasil TelecomunicaÇÕes Ltda",
9229 "organization" : "Jgm Brasil TelecomunicaÇÕes Ltda"
9230 }
9231 },
9232 {
9233 "::177.104.16.0/116" : {
9234 "isp" : "Inetsafe Comercio De Equipamentos Eletronicos Ltda",
9235 "organization" : "Inetsafe Comercio De Equipamentos Eletronicos Ltda"
9236 }
9237 },
9238 {
9239 "::177.104.64.0/115" : {
9240 "isp" : "Infoline - Comunicações e Informações Eletrônicas",
9241 "organization" : "Infoline - Comunicações e Informações Eletrônicas"
9242 }
9243 },
9244 {
9245 "::177.104.192.0/116" : {
9246 "isp" : "J W Mateus Informatica - Me",
9247 "organization" : "J W Mateus Informatica - Me"
9248 }
9249 },
9250 {
9251 "::177.104.208.0/116" : {
9252 "isp" : "Brasconect Informatica LTDA",
9253 "organization" : "Brasconect Informatica LTDA"
9254 }
9255 },
9256 {
9257 "::177.104.224.0/116" : {
9258 "isp" : "Tech Cable do Brasil Sist. de Telec. Ltda",
9259 "organization" : "Tech Cable do Brasil Sist. de Telec. Ltda"
9260 }
9261 },
9262 {
9263 "::177.105.0.0/114" : {
9264 "isp" : "Ufla - Universidade Federal De Lavras",
9265 "organization" : "Ufla - Universidade Federal De Lavras"
9266 }
9267 },
9268 {
9269 "::177.105.64.0/116" : {
9270 "isp" : "Netprimus Tecnologia Ltda",
9271 "organization" : "Netprimus Tecnologia Ltda"
9272 }
9273 },
9274 {
9275 "::177.105.112.0/116" : {
9276 "isp" : "Evanildo Barbeta Boituva ME",
9277 "organization" : "Evanildo Barbeta Boituva ME"
9278 }
9279 },
9280 {
9281 "::177.105.160.0/116" : {
9282 "isp" : "LB Redes Telecomunicações LTDA",
9283 "organization" : "LB Redes Telecomunicações LTDA"
9284 }
9285 },
9286 {
9287 "::177.105.176.0/116" : {
9288 "isp" : "Sidys Comunicações Ltda.",
9289 "organization" : "Sidys Comunicações Ltda."
9290 }
9291 },
9292 {
9293 "::177.105.208.0/116" : {
9294 "isp" : "Portalmail Informatica Ltda",
9295 "organization" : "Portalmail Informatica Ltda"
9296 }
9297 },
9298 {
9299 "::177.105.224.0/116" : {
9300 "isp" : "Internet Pinheirense Ltda - ME",
9301 "organization" : "Internet Pinheirense Ltda - ME"
9302 }
9303 },
9304 {
9305 "::177.106.0.0/112" : {
9306 "isp" : "CTBC",
9307 "organization" : "CTBC"
9308 }
9309 },
9310 {
9311 "::177.107.0.0/116" : {
9312 "isp" : "Byteweb Comunicação Multimídia Ltda.",
9313 "organization" : "Byteweb Comunicação Multimídia Ltda."
9314 }
9315 },
9316 {
9317 "::177.107.64.0/116" : {
9318 "isp" : "Redenilf Serviços de Telecomunicações Ltda",
9319 "organization" : "Redenilf Serviços de Telecomunicações Ltda"
9320 }
9321 },
9322 {
9323 "::177.107.96.0/116" : {
9324 "isp" : "Star Conect Telecom Ltda",
9325 "organization" : "Star Conect Telecom Ltda"
9326 }
9327 },
9328 {
9329 "::177.107.112.0/116" : {
9330 "isp" : "OpçãoNet Informática Ltda ME",
9331 "organization" : "OpçãoNet Informática Ltda ME"
9332 }
9333 },
9334 {
9335 "::177.107.128.0/115" : {
9336 "isp" : "Link Sol LTDA - ME",
9337 "organization" : "Link Sol LTDA - ME"
9338 }
9339 },
9340 {
9341 "::177.107.178.0/122" : {
9342 "isp" : "New Master Provedor De Acesso A Internet",
9343 "organization" : "New Master Provedor De Acesso A Internet"
9344 }
9345 },
9346 {
9347 "::177.107.190.0/121" : {
9348 "isp" : "New Master Provedor De Acesso A Internet",
9349 "organization" : "New Master Provedor De Acesso A Internet"
9350 }
9351 },
9352 {
9353 "::177.107.224.0/115" : {
9354 "isp" : "Gigalink de Nova Friburgo Soluções em Rede Multimi",
9355 "organization" : "Gigalink de Nova Friburgo Soluções em Rede Multimi"
9356 }
9357 },
9358 {
9359 "::177.108.0.0/110" : {
9360 "isp" : "Tim Celular S.A.",
9361 "organization" : "Tim Celular S.A."
9362 }
9363 },
9364 {
9365 "::177.112.0.0/109" : {
9366 "isp" : "Vivo",
9367 "organization" : "Vivo"
9368 }
9369 },
9370 {
9371 "::177.120.0.0/111" : {
9372 "isp" : "Tim Celular S.A.",
9373 "organization" : "Tim Celular S.A."
9374 }
9375 },
9376 {
9377 "::180.0.0.0/106" : {
9378 "autonomous_system_number" : 4713,
9379 "autonomous_system_organization" : "NTT Communications Corporation",
9380 "isp" : "NTT",
9381 "organization" : "NTT"
9382 }
9383 },
9384 {
9385 "::180.131.208.0/116" : {
9386 "isp" : "GLBB"
9387 }
9388 },
9389 {
9390 "::180.131.224.0/115" : {
9391 "isp" : "GLBB"
9392 }
9393 },
9394 {
9395 "::182.54.235.0/120" : {
9396 "organization" : "GPLHost"
9397 }
9398 },
9399 {
9400 "::183.0.0.0/106" : {
9401 "autonomous_system_number" : 4134,
9402 "autonomous_system_organization" : "Chinanet",
9403 "isp" : "China Telecom",
9404 "organization" : "China Telecom"
9405 }
9406 },
9407 {
9408 "::183.192.0.0/106" : {
9409 "autonomous_system_number" : 9808,
9410 "autonomous_system_organization" : "Guangdong Mobile Communication Co.Ltd.",
9411 "isp" : "Guangdong Mobile",
9412 "organization" : "Guangdong Mobile"
9413 }
9414 },
9415 {
9416 "::184.71.70.142/128" : {
9417 "organization" : "Trans Canada Internet"
9418 }
9419 },
9420 {
9421 "::184.170.240.0/119" : {
9422 "organization" : "QuickWeb Hosting Solutions"
9423 }
9424 },
9425 {
9426 "::185.5.42.0/119" : {
9427 "isp" : "SmartLabs LLC"
9428 }
9429 },
9430 {
9431 "::186.249.64.0/116" : {
9432 "organization" : "WE Radio Comunicação LTDA EPP"
9433 }
9434 },
9435 {
9436 "::187.95.224.0/115" : {
9437 "organization" : "Voax Provedor de Internet"
9438 }
9439 },
9440 {
9441 "::187.109.192.0/120" : {
9442 "organization" : "RedeTeleSul"
9443 }
9444 },
9445 {
9446 "::188.35.4.0/118" : {
9447 "isp" : "CityLink ISP",
9448 "organization" : "CityLink Ltd"
9449 }
9450 },
9451 {
9452 "::188.35.144.0/119" : {
9453 "organization" : "CityLink Ltd"
9454 }
9455 },
9456 {
9457 "::188.35.149.0/120" : {
9458 "organization" : "indtelecom"
9459 }
9460 },
9461 {
9462 "::188.138.21.170/128" : {
9463 "organization" : "MitiHost Solutions"
9464 }
9465 },
9466 {
9467 "::190.110.5.0/120" : {
9468 "organization" : "FiberXpress Dominicana"
9469 }
9470 },
9471 {
9472 "::190.113.240.0/118" : {
9473 "isp" : "FIX WIRELESS"
9474 }
9475 },
9476 {
9477 "::192.102.6.0/119" : {
9478 "organization" : "HostVDS-NET"
9479 }
9480 },
9481 {
9482 "::192.114.160.0/115" : {
9483 "isp" : "Golden Lines Cable",
9484 "organization" : "Golden Lines Cable"
9485 }
9486 },
9487 {
9488 "::192.175.40.0/118" : {
9489 "organization" : "Fibrestream Limited"
9490 }
9491 },
9492 {
9493 "::193.41.172.0/118" : {
9494 "organization" : "P.P.H.U Multicom"
9495 }
9496 },
9497 {
9498 "::193.43.210.0/119" : {
9499 "organization" : "FOP Molochko Nina Vasilevna"
9500 }
9501 },
9502 {
9503 "::193.43.246.250/128" : {
9504 "organization" : "Amdocs"
9505 }
9506 },
9507 {
9508 "::193.67.0.0/112" : {
9509 "isp" : "Verizon Nederland B.V.",
9510 "organization" : "Verizon Nederland B.V."
9511 }
9512 },
9513 {
9514 "::193.95.0.0/113" : {
9515 "isp" : "Agence Tunisienne Internet - ATI",
9516 "organization" : "Agence Tunisienne Internet - ATI"
9517 }
9518 },
9519 {
9520 "::193.106.152.0/118" : {
9521 "organization" : "X-Com Partners"
9522 }
9523 },
9524 {
9525 "::193.108.56.0/118" : {
9526 "isp" : "SLW Internet Service Ltd.",
9527 "organization" : "SLW Internet Service Ltd."
9528 }
9529 },
9530 {
9531 "::193.130.58.96/124" : {
9532 "isp" : "Buckhaven High school",
9533 "organization" : "Buckhaven High school"
9534 }
9535 },
9536 {
9537 "::193.170.79.0/120" : {
9538 "isp" : "University of Technology, Vienna",
9539 "organization" : "University of Technology, Vienna"
9540 }
9541 },
9542 {
9543 "::193.183.144.0/120" : {
9544 "organization" : "H & M Hennes & Mauritz AB"
9545 }
9546 },
9547 {
9548 "::193.227.0.0/114" : {
9549 "isp" : "Egyptian Universities Network",
9550 "organization" : "Egyptian Universities Network"
9551 }
9552 },
9553 {
9554 "::193.235.18.0/119" : {
9555 "isp" : "AB Svenska Spel",
9556 "organization" : "AB Svenska Spel"
9557 }
9558 },
9559 {
9560 "::193.235.20.0/119" : {
9561 "isp" : "AB Svenska Spel",
9562 "organization" : "AB Svenska Spel"
9563 }
9564 },
9565 {
9566 "::194.8.240.0/119" : {
9567 "organization" : "CDcorp"
9568 }
9569 },
9570 {
9571 "::194.28.112.0/118" : {
9572 "isp" : "Specialist Ltd."
9573 }
9574 },
9575 {
9576 "::194.30.180.0/120" : {
9577 "organization" : "w3 GmbH"
9578 }
9579 },
9580 {
9581 "::194.50.128.0/118" : {
9582 "isp" : "CityLink ISP"
9583 }
9584 },
9585 {
9586 "::194.82.232.0/118" : {
9587 "isp" : "Forestry Commision",
9588 "organization" : "Forestry Commision"
9589 }
9590 },
9591 {
9592 "::194.84.23.0/121" : {
9593 "isp" : "WEB Hotel, Moscow",
9594 "organization" : "WEB Hotel, Moscow"
9595 }
9596 },
9597 {
9598 "::194.105.206.0/120" : {
9599 "isp" : "Hotel Astoria network",
9600 "organization" : "Hotel Astoria network"
9601 }
9602 },
9603 {
9604 "::194.117.119.228/126" : {
9605 "isp" : "Seaside Hotels, S.A.",
9606 "organization" : "Seaside Hotels, S.A."
9607 }
9608 },
9609 {
9610 "::194.126.180.112/124" : {
9611 "organization" : "Small Private Enterprise Kvant-II"
9612 }
9613 },
9614 {
9615 "::194.140.181.0/120" : {
9616 "organization" : "WICO"
9617 }
9618 },
9619 {
9620 "::194.140.228.0/120" : {
9621 "organization" : "Sevonline"
9622 }
9623 },
9624 {
9625 "::194.149.160.0/115" : {
9626 "isp" : "Free SAS",
9627 "organization" : "Free SAS"
9628 }
9629 },
9630 {
9631 "::194.165.152.248/125" : {
9632 "isp" : "Rawdat Al-Ma'aref Schools & College",
9633 "organization" : "Rawdat Al-Ma'aref Schools & College"
9634 }
9635 },
9636 {
9637 "::194.178.0.0/112" : {
9638 "isp" : "Verizon Nederland B.V.",
9639 "organization" : "Verizon Nederland B.V."
9640 }
9641 },
9642 {
9643 "::194.242.234.0/119" : {
9644 "isp" : "CASPUR",
9645 "organization" : "CASPUR"
9646 }
9647 },
9648 {
9649 "::194.242.236.0/118" : {
9650 "isp" : "CASPUR",
9651 "organization" : "CASPUR"
9652 }
9653 },
9654 {
9655 "::194.242.240.0/119" : {
9656 "isp" : "CASPUR",
9657 "organization" : "CASPUR"
9658 }
9659 },
9660 {
9661 "::195.22.192.0/115" : {
9662 "isp" : "TELECOM ITALIA SPARKLE S.p.A.",
9663 "organization" : "TELECOM ITALIA SPARKLE S.p.A."
9664 }
9665 },
9666 {
9667 "::195.32.0.0/113" : {
9668 "isp" : "Officine Informatiche Srl",
9669 "organization" : "Officine Informatiche Srl"
9670 }
9671 },
9672 {
9673 "::195.43.0.0/115" : {
9674 "isp" : "Egyptian National Scientific & Technical Informati",
9675 "organization" : "Egyptian National Scientific & Technical Informati"
9676 }
9677 },
9678 {
9679 "::195.130.224.0/115" : {
9680 "isp" : "Tiscali SpA",
9681 "organization" : "Tiscali SpA"
9682 }
9683 },
9684 {
9685 "::195.134.192.0/115" : {
9686 "isp" : "Interoute Communications Limited",
9687 "organization" : "Interoute Communications Limited"
9688 }
9689 },
9690 {
9691 "::195.137.0.0/113" : {
9692 "isp" : "Tiscali UK Limited",
9693 "organization" : "Tiscali UK Limited"
9694 }
9695 },
9696 {
9697 "::195.194.74.224/123" : {
9698 "isp" : "Blackpool Sixth Form College",
9699 "organization" : "Blackpool Sixth Form College"
9700 }
9701 },
9702 {
9703 "::195.194.136.0/118" : {
9704 "isp" : "Aberdeen College",
9705 "organization" : "Aberdeen College"
9706 }
9707 },
9708 {
9709 "::195.206.64.0/115" : {
9710 "isp" : "BT",
9711 "organization" : "BT"
9712 }
9713 },
9714 {
9715 "::195.242.32.0/115" : {
9716 "isp" : "Verizon Sweden AB",
9717 "organization" : "Verizon Sweden AB"
9718 }
9719 },
9720 {
9721 "::195.246.32.0/115" : {
9722 "isp" : "Egyptian Universities Network (EUN)",
9723 "organization" : "Egyptian Universities Network (EUN)"
9724 }
9725 },
9726 {
9727 "::196.1.56.0/117" : {
9728 "isp" : "Frogfoot Networks",
9729 "organization" : "Frogfoot Networks"
9730 }
9731 },
9732 {
9733 "::196.1.144.0/116" : {
9734 "isp" : "CMC Networks",
9735 "organization" : "CMC Networks"
9736 }
9737 },
9738 {
9739 "::196.3.164.0/118" : {
9740 "isp" : "Global Internet Access",
9741 "organization" : "Global Internet Access"
9742 }
9743 },
9744 {
9745 "::196.3.168.0/117" : {
9746 "isp" : "Global Internet Access",
9747 "organization" : "Global Internet Access"
9748 }
9749 },
9750 {
9751 "::196.3.176.0/118" : {
9752 "isp" : "Global Internet Access",
9753 "organization" : "Global Internet Access"
9754 }
9755 },
9756 {
9757 "::196.4.173.0/120" : {
9758 "isp" : "Gkn Chep SA",
9759 "organization" : "Gkn Chep SA"
9760 }
9761 },
9762 {
9763 "::196.4.174.0/119" : {
9764 "isp" : "Gkn Chep SA",
9765 "organization" : "Gkn Chep SA"
9766 }
9767 },
9768 {
9769 "::196.4.176.0/117" : {
9770 "isp" : "Gkn Chep SA",
9771 "organization" : "Gkn Chep SA"
9772 }
9773 },
9774 {
9775 "::196.4.184.0/118" : {
9776 "isp" : "Gkn Chep SA",
9777 "organization" : "Gkn Chep SA"
9778 }
9779 },
9780 {
9781 "::196.4.188.0/120" : {
9782 "isp" : "Gkn Chep SA",
9783 "organization" : "Gkn Chep SA"
9784 }
9785 },
9786 {
9787 "::196.12.128.0/116" : {
9788 "isp" : "Rwandatel, SA",
9789 "organization" : "Rwandatel, SA"
9790 }
9791 },
9792 {
9793 "::196.12.144.0/118" : {
9794 "isp" : "Rwandatel, SA",
9795 "organization" : "Wireless Broadband Customer"
9796 }
9797 },
9798 {
9799 "::196.12.148.0/118" : {
9800 "isp" : "Rwandatel, SA",
9801 "organization" : "Rwandatel, SA"
9802 }
9803 },
9804 {
9805 "::196.12.152.0/117" : {
9806 "isp" : "Rwandatel, SA",
9807 "organization" : "Rwandatel, SA"
9808 }
9809 },
9810 {
9811 "::196.12.192.0/114" : {
9812 "isp" : "Wana Corporate",
9813 "organization" : "Wana Corporate"
9814 }
9815 },
9816 {
9817 "::196.22.160.0/115" : {
9818 "isp" : "MWEB",
9819 "organization" : "MWEB"
9820 }
9821 },
9822 {
9823 "::196.22.192.0/116" : {
9824 "isp" : "Data Pro Business Online",
9825 "organization" : "Data Pro Business Online"
9826 }
9827 },
9828 {
9829 "::196.22.208.0/118" : {
9830 "isp" : "Data Pro Business Online",
9831 "organization" : "JHB Waverley MetroEthernet, Hosting and Lease Line"
9832 }
9833 },
9834 {
9835 "::196.22.212.0/118" : {
9836 "isp" : "Data Pro Business Online",
9837 "organization" : "Data Pro Business Online"
9838 }
9839 },
9840 {
9841 "::196.22.216.0/117" : {
9842 "isp" : "Data Pro Business Online",
9843 "organization" : "Data Pro Business Online"
9844 }
9845 },
9846 {
9847 "::196.22.236.0/118" : {
9848 "isp" : "Durban Lease Line and Hosting Zone Range",
9849 "organization" : "Durban Lease Line and Hosting Zone Range"
9850 }
9851 },
9852 {
9853 "::196.27.96.0/115" : {
9854 "isp" : "Zimbabwe Online",
9855 "organization" : "Zimbabwe Online"
9856 }
9857 },
9858 {
9859 "::196.28.249.0/120" : {
9860 "isp" : "ONATEL",
9861 "organization" : "ONATEL"
9862 }
9863 },
9864 {
9865 "::196.28.250.0/119" : {
9866 "isp" : "ONATEL",
9867 "organization" : "ONATEL"
9868 }
9869 },
9870 {
9871 "::196.28.252.0/120" : {
9872 "isp" : "ONATEL",
9873 "organization" : "ONATEL"
9874 }
9875 },
9876 {
9877 "::196.29.187.0/124" : {
9878 "isp" : "Al Salam Rotana Hotel- sudan",
9879 "organization" : "Al Salam Rotana Hotel- sudan"
9880 }
9881 },
9882 {
9883 "::196.32.112.0/116" : {
9884 "isp" : "Universite de Bamako",
9885 "organization" : "Universite de Bamako"
9886 }
9887 },
9888 {
9889 "::196.32.232.0/117" : {
9890 "isp" : "Amobia Communications",
9891 "organization" : "Amobia Communications"
9892 }
9893 },
9894 {
9895 "::196.41.224.0/115" : {
9896 "isp" : "Sarl ICOSNET",
9897 "organization" : "Sarl ICOSNET"
9898 }
9899 },
9900 {
9901 "::196.43.64.0/116" : {
9902 "isp" : "Allocated to Broad band internet in the following",
9903 "organization" : "Allocated to Broad band internet in the following"
9904 }
9905 },
9906 {
9907 "::196.43.80.0/117" : {
9908 "isp" : "Allocated to Broad band internet in the following",
9909 "organization" : "Allocated to Broad band internet in the following"
9910 }
9911 },
9912 {
9913 "::196.43.128.0/114" : {
9914 "isp" : "Research and Education Network of Uganda - RENU",
9915 "organization" : "Research and Education Network of Uganda - RENU"
9916 }
9917 },
9918 {
9919 "::196.43.194.0/120" : {
9920 "isp" : "Association of African Universities",
9921 "organization" : "Association of African Universities"
9922 }
9923 },
9924 {
9925 "::196.43.199.0/120" : {
9926 "isp" : "Zimbabwe Open University",
9927 "organization" : "Zimbabwe Open University"
9928 }
9929 },
9930 {
9931 "::196.43.224.0/120" : {
9932 "isp" : "Nigeria Air Force",
9933 "organization" : "Nigeria Air Force"
9934 }
9935 },
9936 {
9937 "::196.43.235.0/120" : {
9938 "isp" : "Bowen University",
9939 "organization" : "Bowen University"
9940 }
9941 },
9942 {
9943 "::196.44.160.0/116" : {
9944 "isp" : "University of Dar es Salaam",
9945 "organization" : "University of Dar es Salaam"
9946 }
9947 },
9948 {
9949 "::196.44.176.0/116" : {
9950 "isp" : "Yo! Africa",
9951 "organization" : "Yo! Africa"
9952 }
9953 },
9954 {
9955 "::196.44.240.0/116" : {
9956 "isp" : "MTN RwandaCell",
9957 "organization" : "MTN RwandaCell"
9958 }
9959 },
9960 {
9961 "::196.200.19.206/128" : {
9962 "isp" : "The Institute for Social Accou",
9963 "organization" : "The Institute for Social Accou"
9964 }
9965 },
9966 {
9967 "::196.200.20.40/125" : {
9968 "isp" : "Tribe Hotel",
9969 "organization" : "Tribe Hotel"
9970 }
9971 },
9972 {
9973 "::196.200.28.0/118" : {
9974 "isp" : "Accesskenya Group Ltd",
9975 "organization" : "Accesskenya Group Ltd"
9976 }
9977 },
9978 {
9979 "::196.200.32.0/116" : {
9980 "isp" : "Wananchi Online",
9981 "organization" : "Wananchi Online"
9982 }
9983 },
9984 {
9985 "::196.200.63.0/120" : {
9986 "isp" : "Afribone - Universite",
9987 "organization" : "Afribone - Universite"
9988 }
9989 },
9990 {
9991 "::196.200.80.0/116" : {
9992 "isp" : "Ikatel SA",
9993 "organization" : "Ikatel SA"
9994 }
9995 },
9996 {
9997 "::196.202.208.0/118" : {
9998 "isp" : "Orange Broadband Kenya",
9999 "organization" : "Orange Broadband Kenya"
10000 }
10001 },
10002 {
10003 "::196.202.240.0/118" : {
10004 "isp" : "Telecom Lesotho (PTY) LTD",
10005 "organization" : "Telecom Lesotho (PTY) LTD"
10006 }
10007 },
10008 {
10009 "::196.202.244.0/120" : {
10010 "isp" : "Telecom Lesotho (PTY) LTD",
10011 "organization" : "Telecom Lesotho (PTY) LTD"
10012 }
10013 },
10014 {
10015 "::196.202.245.0/125" : {
10016 "isp" : "Telecom Lesotho (PTY) LTD",
10017 "organization" : "Sub allocation to Lerotholi Polytechnic Institute"
10018 }
10019 },
10020 {
10021 "::196.202.245.8/125" : {
10022 "isp" : "Telecom Lesotho (PTY) LTD",
10023 "organization" : "Telecom Lesotho (PTY) LTD"
10024 }
10025 },
10026 {
10027 "::196.202.245.16/124" : {
10028 "isp" : "Telecom Lesotho (PTY) LTD",
10029 "organization" : "Telecom Lesotho (PTY) LTD"
10030 }
10031 },
10032 {
10033 "::196.202.245.32/123" : {
10034 "isp" : "Telecom Lesotho (PTY) LTD",
10035 "organization" : "Telecom Lesotho (PTY) LTD"
10036 }
10037 },
10038 {
10039 "::196.202.245.64/122" : {
10040 "isp" : "Telecom Lesotho (PTY) LTD",
10041 "organization" : "Telecom Lesotho (PTY) LTD"
10042 }
10043 },
10044 {
10045 "::196.202.245.128/121" : {
10046 "isp" : "Telecom Lesotho (PTY) LTD",
10047 "organization" : "Telecom Lesotho (PTY) LTD"
10048 }
10049 },
10050 {
10051 "::196.202.246.0/119" : {
10052 "isp" : "Telecom Lesotho (PTY) LTD",
10053 "organization" : "Telecom Lesotho (PTY) LTD"
10054 }
10055 },
10056 {
10057 "::196.206.0.0/113" : {
10058 "isp" : "Maroc Telecom",
10059 "organization" : "Maroc Telecom"
10060 }
10061 },
10062 {
10063 "::196.206.128.0/114" : {
10064 "isp" : "Maroc Telecom",
10065 "organization" : "Maroc Telecom"
10066 }
10067 },
10068 {
10069 "::196.206.192.0/115" : {
10070 "isp" : "Maroc Telecom",
10071 "organization" : "Maroc Telecom"
10072 }
10073 },
10074 {
10075 "::196.206.224.0/117" : {
10076 "isp" : "Maroc Telecom",
10077 "organization" : "Maroc Telecom"
10078 }
10079 },
10080 {
10081 "::196.206.232.0/117" : {
10082 "isp" : "Maroc Telecom",
10083 "organization" : "MarocTelecom"
10084 }
10085 },
10086 {
10087 "::196.206.240.0/116" : {
10088 "isp" : "Maroc Telecom",
10089 "organization" : "Maroc Telecom"
10090 }
10091 },
10092 {
10093 "::196.207.16.0/116" : {
10094 "isp" : "Communication Solutions Ltd.",
10095 "organization" : "Communication Solutions Ltd."
10096 }
10097 },
10098 {
10099 "::196.208.16.0/116" : {
10100 "isp" : "Internet Solutions",
10101 "organization" : "Internet Solutions"
10102 }
10103 },
10104 {
10105 "::196.208.224.0/116" : {
10106 "isp" : "Internet Solutions",
10107 "organization" : "Internet Solutions"
10108 }
10109 },
10110 {
10111 "::196.216.48.0/118" : {
10112 "isp" : "Network assigned to Silver Customers in Luanda, An",
10113 "organization" : "Network assigned to Silver Customers in Luanda, An"
10114 }
10115 },
10116 {
10117 "::196.216.64.0/119" : {
10118 "isp" : "Swift Global Kenya Limited",
10119 "organization" : "Swift Global Kenya Limited"
10120 }
10121 },
10122 {
10123 "::196.216.66.0/120" : {
10124 "isp" : "Swift Global Kenya Limited",
10125 "organization" : "Swift Global Kenya Limited"
10126 }
10127 },
10128 {
10129 "::196.216.67.0/121" : {
10130 "isp" : "Swift Global Kenya Limited",
10131 "organization" : "Swift Global Kenya Limited"
10132 }
10133 },
10134 {
10135 "::196.216.67.128/122" : {
10136 "isp" : "Swift Global Kenya Limited",
10137 "organization" : "Swift Global Kenya Limited"
10138 }
10139 },
10140 {
10141 "::196.216.67.192/126" : {
10142 "isp" : "Swift Global Kenya Limited",
10143 "organization" : "Swift Global Kenya Limited"
10144 }
10145 },
10146 {
10147 "::196.216.67.196/126" : {
10148 "isp" : "Swift Global Kenya Limited",
10149 "organization" : "PushMobileMediaSGK"
10150 }
10151 },
10152 {
10153 "::196.216.67.200/125" : {
10154 "isp" : "Swift Global Kenya Limited",
10155 "organization" : "Swift Global Kenya Limited"
10156 }
10157 },
10158 {
10159 "::196.216.67.208/124" : {
10160 "isp" : "Swift Global Kenya Limited",
10161 "organization" : "Swift Global Kenya Limited"
10162 }
10163 },
10164 {
10165 "::196.216.67.224/123" : {
10166 "isp" : "Swift Global Kenya Limited",
10167 "organization" : "Swift Global Kenya Limited"
10168 }
10169 },
10170 {
10171 "::196.216.68.0/118" : {
10172 "isp" : "Swift Global Kenya Limited",
10173 "organization" : "Swift Global Kenya Limited"
10174 }
10175 },
10176 {
10177 "::196.216.72.0/117" : {
10178 "isp" : "Swift Global Kenya Limited",
10179 "organization" : "Swift Global Kenya Limited"
10180 }
10181 },
10182 {
10183 "::196.216.80.0/116" : {
10184 "isp" : "Swift Global Kenya Limited",
10185 "organization" : "Swift Global Kenya Limited"
10186 }
10187 },
10188 {
10189 "::196.216.172.0/118" : {
10190 "isp" : "Grindrod Management Services (Pty) Ltd",
10191 "organization" : "Grindrod Management Services (Pty) Ltd"
10192 }
10193 },
10194 {
10195 "::196.216.180.0/118" : {
10196 "isp" : "Zenith Bank Ghana Ltd",
10197 "organization" : "Zenith Bank Ghana Ltd"
10198 }
10199 },
10200 {
10201 "::196.216.184.0/118" : {
10202 "isp" : "Finbank PLC",
10203 "organization" : "Finbank PLC"
10204 }
10205 },
10206 {
10207 "::196.216.200.0/118" : {
10208 "isp" : "Central Bank of Nigeria",
10209 "organization" : "Central Bank of Nigeria"
10210 }
10211 },
10212 {
10213 "::196.216.204.0/118" : {
10214 "isp" : "Seacom Ltd",
10215 "organization" : "Seacom Ltd"
10216 }
10217 },
10218 {
10219 "::196.216.240.0/119" : {
10220 "isp" : "Cairo American College",
10221 "organization" : "Cairo American College"
10222 }
10223 },
10224 {
10225 "::196.217.0.0/113" : {
10226 "isp" : "Maroc Telecom",
10227 "organization" : "Maroc Telecom"
10228 }
10229 },
10230 {
10231 "::196.217.192.0/115" : {
10232 "isp" : "Maroc Telecom",
10233 "organization" : "Maroc Telecom"
10234 }
10235 },
10236 {
10237 "::196.217.224.0/116" : {
10238 "isp" : "Maroc Telecom",
10239 "organization" : "Maroc Telecom"
10240 }
10241 },
10242 {
10243 "::196.220.96.0/115" : {
10244 "isp" : "National University of Science and Technology",
10245 "organization" : "National University of Science and Technology"
10246 }
10247 },
10248 {
10249 "::196.220.208.0/116" : {
10250 "isp" : "Beehive Social Enterprise",
10251 "organization" : "Beehive Social Enterprise"
10252 }
10253 },
10254 {
10255 "::196.220.224.0/116" : {
10256 "isp" : "University of Jos Nigeria",
10257 "organization" : "University of Jos Nigeria"
10258 }
10259 },
10260 {
10261 "::196.220.240.0/116" : {
10262 "isp" : "University of Lagos",
10263 "organization" : "University of Lagos"
10264 }
10265 },
10266 {
10267 "::196.221.20.0/118" : {
10268 "isp" : "RT-ADSL-project",
10269 "organization" : "RT-ADSL-project"
10270 }
10271 },
10272 {
10273 "::196.221.24.0/117" : {
10274 "isp" : "RT-ADSL-project",
10275 "organization" : "RT-ADSL-project"
10276 }
10277 },
10278 {
10279 "::196.244.0.0/112" : {
10280 "isp" : "Fiber Grid Inc",
10281 "organization" : "Fiber Grid Inc"
10282 }
10283 },
10284 {
10285 "::196.252.0.0/111" : {
10286 "isp" : "North West University",
10287 "organization" : "North West University"
10288 }
10289 },
10290 {
10291 "::196.254.0.0/111" : {
10292 "isp" : "University of the Free State",
10293 "organization" : "University of the Free State"
10294 }
10295 },
10296 {
10297 "::198.41.28.0/118" : {
10298 "isp" : "Granite Networks"
10299 }
10300 },
10301 {
10302 "::198.161.136.0/117" : {
10303 "isp" : "SilverIP Communications"
10304 }
10305 },
10306 {
10307 "::198.178.28.0/118" : {
10308 "isp" : "Allo Communications LLC"
10309 }
10310 },
10311 {
10312 "::199.120.69.0/120" : {
10313 "organization" : "Premier Communications"
10314 }
10315 },
10316 {
10317 "::199.192.166.0/119" : {
10318 "organization" : "SUMO FIBER"
10319 }
10320 },
10321 {
10322 "::199.193.222.128/121" : {
10323 "organization" : "Alamo Broadband"
10324 }
10325 },
10326 {
10327 "::200.110.139.0/120" : {
10328 "organization" : "Argentina Virtual Networks S.R.L."
10329 }
10330 },
10331 {
10332 "::200.110.145.0/123" : {
10333 "organization" : "Argentina Virtual Networks S.R.L."
10334 }
10335 },
10336 {
10337 "::202.3.80.0/116" : {
10338 "organization" : "DIGINET-NZ"
10339 }
10340 },
10341 {
10342 "::202.93.153.0/120" : {
10343 "organization" : "LATELZ Co., Ltd."
10344 }
10345 },
10346 {
10347 "::203.118.242.0/120" : {
10348 "organization" : "LATELZ Co., Ltd."
10349 }
10350 },
10351 {
10352 "::203.148.64.0/116" : {
10353 "organization" : "LGCNS China"
10354 }
10355 },
10356 {
10357 "::204.128.241.208/128" : {
10358 "isp" : "YourHomeISP"
10359 }
10360 },
10361 {
10362 "::206.16.137.0/120" : {
10363 "isp" : "AT&T Synaptic Cloud Hosting",
10364 "organization" : "AT&T Synaptic Cloud Hosting"
10365 }
10366 },
10367 {
10368 "::206.16.139.0/120" : {
10369 "isp" : "AT&T Synaptic Cloud Hosting",
10370 "organization" : "AT&T Synaptic Cloud Hosting"
10371 }
10372 },
10373 {
10374 "::207.34.130.0/120" : {
10375 "organization" : "Lytton Area Wireless Society"
10376 }
10377 },
10378 {
10379 "::207.241.128.0/116" : {
10380 "isp" : "CMS Internet LLC"
10381 }
10382 },
10383 {
10384 "::208.20.196.16/125" : {
10385 "organization" : "Hilite International"
10386 }
10387 },
10388 {
10389 "::208.35.54.80/124" : {
10390 "organization" : "Hilite International"
10391 }
10392 },
10393 {
10394 "::208.110.194.0/119" : {
10395 "autonomous_system_number" : 11025
10396 }
10397 },
10398 {
10399 "::208.110.196.0/118" : {
10400 "autonomous_system_number" : 11025
10401 }
10402 },
10403 {
10404 "::208.110.200.0/117" : {
10405 "autonomous_system_number" : 11025
10406 }
10407 },
10408 {
10409 "::208.110.208.0/117" : {
10410 "autonomous_system_number" : 11025
10411 }
10412 },
10413 {
10414 "::208.110.216.0/120" : {
10415 "autonomous_system_number" : 11025
10416 }
10417 },
10418 {
10419 "::208.110.217.0/122" : {
10420 "autonomous_system_number" : 11025
10421 }
10422 },
10423 {
10424 "::208.110.217.64/123" : {
10425 "autonomous_system_number" : 11025
10426 }
10427 },
10428 {
10429 "::208.110.217.96/125" : {
10430 "autonomous_system_number" : 11025
10431 }
10432 },
10433 {
10434 "::208.110.217.104/127" : {
10435 "autonomous_system_number" : 11025
10436 }
10437 },
10438 {
10439 "::208.110.217.106/128" : {
10440 "autonomous_system_number" : 11025
10441 }
10442 },
10443 {
10444 "::208.110.217.107/128" : {
10445 "autonomous_system_number" : 11025,
10446 "isp" : "Comcast - Houston",
10447 "organization" : "Comcast - Houston"
10448 }
10449 },
10450 {
10451 "::208.110.217.108/126" : {
10452 "autonomous_system_number" : 11025,
10453 "isp" : "Comcast - Houston",
10454 "organization" : "Comcast - Houston"
10455 }
10456 },
10457 {
10458 "::208.110.217.112/127" : {
10459 "autonomous_system_number" : 11025,
10460 "isp" : "Comcast - Houston",
10461 "organization" : "Comcast - Houston"
10462 }
10463 },
10464 {
10465 "::208.110.217.114/127" : {
10466 "autonomous_system_number" : 11025
10467 }
10468 },
10469 {
10470 "::208.110.217.116/126" : {
10471 "autonomous_system_number" : 11025
10472 }
10473 },
10474 {
10475 "::208.110.217.120/125" : {
10476 "autonomous_system_number" : 11025
10477 }
10478 },
10479 {
10480 "::208.110.217.128/121" : {
10481 "autonomous_system_number" : 11025
10482 }
10483 },
10484 {
10485 "::208.110.218.0/119" : {
10486 "autonomous_system_number" : 11025
10487 }
10488 },
10489 {
10490 "::208.110.220.0/118" : {
10491 "autonomous_system_number" : 11025
10492 }
10493 },
10494 {
10495 "::208.178.194.148/126" : {
10496 "organization" : "Beyond Next"
10497 }
10498 },
10499 {
10500 "::208.192.0.0/106" : {
10501 "autonomous_system_number" : 701,
10502 "autonomous_system_organization" : "MCI Communications Services, Inc. d/b/a Verizon Business",
10503 "isp" : "Verizon Business",
10504 "organization" : "Verizon Business"
10505 }
10506 },
10507 {
10508 "::209.66.114.182/128" : {
10509 "organization" : "International Business Times"
10510 }
10511 },
10512 {
10513 "::209.222.88.24/125" : {
10514 "organization" : "MitiHost Solutions"
10515 }
10516 },
10517 {
10518 "::212.1.224.0/115" : {
10519 "isp" : "Net By Net Holding LLC",
10520 "organization" : "Net By Net Holding LLC"
10521 }
10522 },
10523 {
10524 "::212.5.224.0/115" : {
10525 "isp" : "Nonprofit Partnership for the Development of Finan",
10526 "organization" : "Nonprofit Partnership for the Development of Finan"
10527 }
10528 },
10529 {
10530 "::212.10.176.0/116" : {
10531 "isp" : "Telia Stofa A/S",
10532 "organization" : "Telia Stofa A/S"
10533 }
10534 },
10535 {
10536 "::212.11.128.0/115" : {
10537 "isp" : "Moscow Mayor's Office",
10538 "organization" : "Moscow Mayor's Office"
10539 }
10540 },
10541 {
10542 "::212.11.160.0/115" : {
10543 "isp" : "SPSNET",
10544 "organization" : "SPSNET"
10545 }
10546 },
10547 {
10548 "::212.23.224.0/115" : {
10549 "isp" : "COLT Technology Services Group Limited",
10550 "organization" : "COLT Technology Services Group Limited"
10551 }
10552 },
10553 {
10554 "::212.50.183.0/120" : {
10555 "organization" : "Fibrestream Limited"
10556 }
10557 },
10558 {
10559 "::212.55.234.0/119" : {
10560 "isp" : "Slovanet a.s.",
10561 "organization" : "Slovanet a.s."
10562 }
10563 },
10564 {
10565 "::212.55.236.0/120" : {
10566 "isp" : "Slovanet a.s.",
10567 "organization" : "Slovanet a.s."
10568 }
10569 },
10570 {
10571 "::212.73.150.0/120" : {
10572 "organization" : "Linkplus"
10573 }
10574 },
10575 {
10576 "::212.75.32.0/115" : {
10577 "isp" : "Scan Plus GmbH",
10578 "organization" : "Scan Plus GmbH"
10579 }
10580 },
10581 {
10582 "::212.102.192.0/115" : {
10583 "isp" : "ICM NetServ Ltd",
10584 "organization" : "ICM NetServ Ltd"
10585 }
10586 },
10587 {
10588 "::212.121.224.0/115" : {
10589 "isp" : "Altecom"
10590 }
10591 },
10592 {
10593 "::212.132.153.192/124" : {
10594 "isp" : "St Andrew's Primary School",
10595 "organization" : "St Andrew's Primary School"
10596 }
10597 },
10598 {
10599 "::212.137.30.248/125" : {
10600 "isp" : "Ufi Army Torch Hub Nuneaton",
10601 "organization" : "Ufi Army Torch Hub Nuneaton"
10602 }
10603 },
10604 {
10605 "::212.173.48.112/124" : {
10606 "isp" : "Glenfall County Primary School",
10607 "organization" : "Glenfall County Primary School"
10608 }
10609 },
10610 {
10611 "::212.173.250.56/125" : {
10612 "isp" : "Ashleworth CE Primary School",
10613 "organization" : "Ashleworth CE Primary School"
10614 }
10615 },
10616 {
10617 "::212.200.145.192/124" : {
10618 "organization" : "SokoWireless.NET!"
10619 }
10620 },
10621 {
10622 "::212.201.51.0/120" : {
10623 "isp" : "Saechsische Landesbibliothek -",
10624 "organization" : "Saechsische Landesbibliothek -"
10625 }
10626 },
10627 {
10628 "::212.201.52.0/118" : {
10629 "isp" : "Saechsische Landesbibliothek -",
10630 "organization" : "Saechsische Landesbibliothek -"
10631 }
10632 },
10633 {
10634 "::212.201.56.0/117" : {
10635 "isp" : "Saechsische Landesbibliothek -",
10636 "organization" : "Saechsische Landesbibliothek -"
10637 }
10638 },
10639 {
10640 "::213.18.209.72/125" : {
10641 "isp" : "Dinglewell Infant School",
10642 "organization" : "Dinglewell Infant School"
10643 }
10644 },
10645 {
10646 "::213.21.192.0/114" : {
10647 "isp" : "VERSIA Ltd",
10648 "organization" : "VERSIA Ltd"
10649 }
10650 },
10651 {
10652 "::213.54.0.0/112" : {
10653 "isp" : "nacamar GmbH",
10654 "organization" : "nacamar GmbH"
10655 }
10656 },
10657 {
10658 "::213.148.199.0/120" : {
10659 "isp" : "Altecom"
10660 }
10661 },
10662 {
10663 "::213.148.200.0/117" : {
10664 "isp" : "Altecom"
10665 }
10666 },
10667 {
10668 "::213.148.208.0/117" : {
10669 "isp" : "Altecom"
10670 }
10671 },
10672 {
10673 "::213.148.216.0/118" : {
10674 "isp" : "Altecom"
10675 }
10676 },
10677 {
10678 "::213.148.220.0/120" : {
10679 "isp" : "Altecom"
10680 }
10681 },
10682 {
10683 "::213.157.184.0/120" : {
10684 "isp" : "RCS & RDS Mobile"
10685 }
10686 },
10687 {
10688 "::213.159.160.0/115" : {
10689 "isp" : "Telefonaktiebolaget L M Ericsson",
10690 "organization" : "Telefonaktiebolaget L M Ericsson"
10691 }
10692 },
10693 {
10694 "::213.171.52.172/126" : {
10695 "isp" : "Network for OAO Megdunarodnyi airport Domodedovo",
10696 "organization" : "Network for OAO Megdunarodnyi airport Domodedovo"
10697 }
10698 },
10699 {
10700 "::213.203.120.0/118" : {
10701 "isp" : "Jet Multimedia",
10702 "organization" : "Jet Multimedia"
10703 }
10704 },
10705 {
10706 "::213.233.96.0/119" : {
10707 "isp" : "MobiFon S.A.",
10708 "organization" : "MobiFon S.A."
10709 }
10710 },
10711 {
10712 "::213.249.135.0/123" : {
10713 "isp" : "York County Council LAN",
10714 "organization" : "York County Council LAN"
10715 }
10716 },
10717 {
10718 "::213.254.64.0/114" : {
10719 "isp" : "ONO",
10720 "organization" : "ONO"
10721 }
10722 },
10723 {
10724 "::214.0.0.0/104" : {
10725 "autonomous_system_number" : 721,
10726 "autonomous_system_organization" : "DoD Network Information Center"
10727 }
10728 },
10729 {
10730 "::215.0.0.0/105" : {
10731 "autonomous_system_number" : 721,
10732 "autonomous_system_organization" : "DoD Network Information Center"
10733 }
10734 },
10735 {
10736 "::216.83.161.0/120" : {
10737 "autonomous_system_number" : 7381,
10738 "autonomous_system_organization" : "SunGard Availability Services USA"
10739 }
10740 },
10741 {
10742 "::216.83.162.0/119" : {
10743 "autonomous_system_number" : 7381,
10744 "autonomous_system_organization" : "SunGard Availability Services USA"
10745 }
10746 },
10747 {
10748 "::216.83.164.0/118" : {
10749 "autonomous_system_number" : 7381,
10750 "autonomous_system_organization" : "SunGard Availability Services USA"
10751 }
10752 },
10753 {
10754 "::216.83.168.0/119" : {
10755 "autonomous_system_number" : 7381,
10756 "autonomous_system_organization" : "SunGard Availability Services USA"
10757 }
10758 },
10759 {
10760 "::216.83.170.0/120" : {
10761 "autonomous_system_number" : 7381,
10762 "autonomous_system_organization" : "SunGard Availability Services USA"
10763 }
10764 },
10765 {
10766 "::216.83.171.0/121" : {
10767 "autonomous_system_number" : 7381,
10768 "autonomous_system_organization" : "SunGard Availability Services USA"
10769 }
10770 },
10771 {
10772 "::216.83.171.128/122" : {
10773 "autonomous_system_number" : 7381,
10774 "autonomous_system_organization" : "SunGard Availability Services USA"
10775 }
10776 },
10777 {
10778 "::216.83.171.192/123" : {
10779 "autonomous_system_number" : 7381,
10780 "autonomous_system_organization" : "SunGard Availability Services USA",
10781 "isp" : "Sungard Network Solutions",
10782 "organization" : "Sungard Network Solutions"
10783 }
10784 },
10785 {
10786 "::216.83.171.224/123" : {
10787 "autonomous_system_number" : 7381,
10788 "autonomous_system_organization" : "SunGard Availability Services USA"
10789 }
10790 },
10791 {
10792 "::216.83.172.0/118" : {
10793 "autonomous_system_number" : 7381,
10794 "autonomous_system_organization" : "SunGard Availability Services USA"
10795 }
10796 },
10797 {
10798 "::216.83.176.0/116" : {
10799 "autonomous_system_number" : 7381,
10800 "autonomous_system_organization" : "SunGard Availability Services USA"
10801 }
10802 },
10803 {
10804 "::216.154.16.197/128" : {
10805 "organization" : "Silonet.ca - Your Rural Internet Service Provider"
10806 }
10807 },
10808 {
10809 "::216.160.26.0/119" : {
10810 "autonomous_system_number" : 209
10811 }
10812 },
10813 {
10814 "::216.160.28.0/118" : {
10815 "autonomous_system_number" : 209
10816 }
10817 },
10818 {
10819 "::216.160.32.0/115" : {
10820 "autonomous_system_number" : 209
10821 }
10822 },
10823 {
10824 "::216.160.64.0/116" : {
10825 "autonomous_system_number" : 209
10826 }
10827 },
10828 {
10829 "::216.160.80.0/119" : {
10830 "autonomous_system_number" : 209
10831 }
10832 },
10833 {
10834 "::216.160.82.0/120" : {
10835 "autonomous_system_number" : 209
10836 }
10837 },
10838 {
10839 "::216.160.83.0/123" : {
10840 "autonomous_system_number" : 209
10841 }
10842 },
10843 {
10844 "::216.160.83.32/124" : {
10845 "autonomous_system_number" : 209
10846 }
10847 },
10848 {
10849 "::216.160.83.48/125" : {
10850 "autonomous_system_number" : 209
10851 }
10852 },
10853 {
10854 "::216.160.83.56/125" : {
10855 "autonomous_system_number" : 209,
10856 "isp" : "Century Link",
10857 "organization" : "Lariat Software"
10858 }
10859 },
10860 {
10861 "::216.160.83.64/122" : {
10862 "autonomous_system_number" : 209
10863 }
10864 },
10865 {
10866 "::216.160.83.128/121" : {
10867 "autonomous_system_number" : 209
10868 }
10869 },
10870 {
10871 "::216.160.84.0/118" : {
10872 "autonomous_system_number" : 209
10873 }
10874 },
10875 {
10876 "::216.160.88.0/117" : {
10877 "autonomous_system_number" : 209
10878 }
10879 },
10880 {
10881 "::216.160.96.0/115" : {
10882 "autonomous_system_number" : 209
10883 }
10884 },
10885 {
10886 "::216.160.128.0/114" : {
10887 "autonomous_system_number" : 209
10888 }
10889 },
10890 {
10891 "::216.160.192.0/117" : {
10892 "autonomous_system_number" : 209
10893 }
10894 },
10895 {
10896 "::216.160.200.0/118" : {
10897 "autonomous_system_number" : 209
10898 }
10899 },
10900 {
10901 "::216.160.204.0/119" : {
10902 "autonomous_system_number" : 209
10903 }
10904 },
10905 {
10906 "::216.160.206.0/120" : {
10907 "autonomous_system_number" : 209
10908 }
10909 },
10910 {
10911 "::217.12.96.0/116" : {
10912 "isp" : "Alfa-Bank Moscow Russia",
10913 "organization" : "Alfa-Bank Moscow Russia"
10914 }
10915 },
10916 {
10917 "::217.17.192.0/116" : {
10918 "isp" : "IKS Service GmbH"
10919 }
10920 },
10921 {
10922 "::217.28.128.0/116" : {
10923 "isp" : "Cobweb Solutions Ltd",
10924 "organization" : "Cobweb Solutions Ltd"
10925 }
10926 },
10927 {
10928 "::217.35.170.0/119" : {
10929 "isp" : "Start Services",
10930 "organization" : "Start Services"
10931 }
10932 },
10933 {
10934 "::217.35.172.0/118" : {
10935 "isp" : "Start Services",
10936 "organization" : "Start Services"
10937 }
10938 },
10939 {
10940 "::217.63.203.160/123" : {
10941 "isp" : "Basisschool De Zaaier",
10942 "organization" : "Basisschool De Zaaier"
10943 }
10944 },
10945 {
10946 "::217.76.36.0/120" : {
10947 "isp" : "AO VNIITEMR(Machinery&Robotics Institute), Moscow",
10948 "organization" : "AO VNIITEMR(Machinery&Robotics Institute), Moscow"
10949 }
10950 },
10951 {
10952 "::217.112.224.0/116" : {
10953 "isp" : "SFR",
10954 "organization" : "SFR"
10955 }
10956 },
10957 {
10958 "::217.117.217.224/125" : {
10959 "organization" : "GIGANET.cz"
10960 }
10961 },
10962 {
10963 "::217.117.217.240/125" : {
10964 "organization" : "GIGANET.cz"
10965 }
10966 },
10967 {
10968 "::217.125.152.0/118" : {
10969 "isp" : "Telefonica de Espana",
10970 "organization" : "Telefonica de Espana"
10971 }
10972 },
10973 {
10974 "::217.125.160.0/115" : {
10975 "isp" : "Telefonica de Espana",
10976 "organization" : "Telefonica de Espana"
10977 }
10978 },
10979 {
10980 "::217.125.192.0/114" : {
10981 "isp" : "Telefonica de Espana",
10982 "organization" : "Telefonica de Espana"
10983 }
10984 },
10985 {
10986 "::217.141.185.128/124" : {
10987 "isp" : "Hotel Benessere",
10988 "organization" : "Hotel Benessere"
10989 }
10990 },
10991 {
10992 "::217.141.234.72/126" : {
10993 "isp" : "Comunedisalerno",
10994 "organization" : "Comunedisalerno"
10995 }
10996 },
10997 {
10998 "::217.147.234.0/120" : {
10999 "isp" : "Tbilisi Pedagogical University",
11000 "organization" : "Tbilisi Pedagogical University"
11001 }
11002 },
11003 {
11004 "::217.164.0.0/111" : {
11005 "isp" : "Emirates Telecommunications Corporation",
11006 "organization" : "Emirates Telecommunications Corporation"
11007 }
11008 },
11009 {
11010 "::217.172.0.0/116" : {
11011 "isp" : "T-Systems Italia Spa",
11012 "organization" : "T-Systems Italia Spa"
11013 }
11014 },
11015 {
11016 "::217.176.17.0/123" : {
11017 "isp" : "Brettenham Infant School",
11018 "organization" : "Brettenham Infant School"
11019 }
11020 },
11021 {
11022 "::217.176.21.0/123" : {
11023 "isp" : "Shildon County Primary School",
11024 "organization" : "Shildon County Primary School"
11025 }
11026 },
11027 {
11028 "::217.176.23.0/123" : {
11029 "isp" : "The Campion School",
11030 "organization" : "The Campion School"
11031 }
11032 },
11033 {
11034 "::217.176.49.128/122" : {
11035 "isp" : "Josca's Preparatory School",
11036 "organization" : "Josca's Preparatory School"
11037 }
11038 },
11039 {
11040 "::217.176.85.128/121" : {
11041 "isp" : "Dundonald High School",
11042 "organization" : "Dundonald High School"
11043 }
11044 },
11045 {
11046 "::217.176.154.232/125" : {
11047 "isp" : "Folly Hill County First School",
11048 "organization" : "Folly Hill County First School"
11049 }
11050 },
11051 {
11052 "::217.176.154.240/125" : {
11053 "isp" : "Beauclerc County Infant School",
11054 "organization" : "Beauclerc County Infant School"
11055 }
11056 },
11057 {
11058 "::217.176.156.168/125" : {
11059 "isp" : "Holly Lodge County Primary School",
11060 "organization" : "Holly Lodge County Primary School"
11061 }
11062 },
11063 {
11064 "::217.176.156.200/125" : {
11065 "isp" : "Laleham CE Primary School",
11066 "organization" : "Laleham CE Primary School"
11067 }
11068 },
11069 {
11070 "::217.176.159.204/126" : {
11071 "isp" : "Surrey County Council",
11072 "organization" : "Surrey County Council"
11073 }
11074 },
11075 {
11076 "::217.176.255.0/122" : {
11077 "isp" : "Tanfield Lea Junior School",
11078 "organization" : "Tanfield Lea Junior School"
11079 }
11080 },
11081 {
11082 "::217.183.12.128/123" : {
11083 "isp" : "Tuddenham CE (VC) Primary School",
11084 "organization" : "Tuddenham CE (VC) Primary School"
11085 }
11086 },
11087 {
11088 "::217.183.15.64/123" : {
11089 "isp" : "West Drayton Primary School",
11090 "organization" : "West Drayton Primary School"
11091 }
11092 },
11093 {
11094 "::217.183.18.192/123" : {
11095 "isp" : "Wellington Primary School",
11096 "organization" : "Wellington Primary School"
11097 }
11098 },
11099 {
11100 "::217.183.55.128/122" : {
11101 "isp" : "Brede Primary School",
11102 "organization" : "Brede Primary School"
11103 }
11104 },
11105 {
11106 "::217.183.59.0/122" : {
11107 "isp" : "Grove CE Primary School",
11108 "organization" : "Grove CE Primary School"
11109 }
11110 },
11111 {
11112 "::217.183.130.64/123" : {
11113 "isp" : "Longney CE Primary School",
11114 "organization" : "Longney CE Primary School"
11115 }
11116 },
11117 {
11118 "::217.183.140.96/123" : {
11119 "isp" : "Ketton CE Primary School",
11120 "organization" : "Ketton CE Primary School"
11121 }
11122 },
11123 {
11124 "::217.195.192.0/116" : {
11125 "isp" : "FiberSunucu internet Hizmetleri Ugur Pala",
11126 "organization" : "FiberSunucu internet Hizmetleri Ugur Pala"
11127 }
11128 },
11129 {
11130 "::217.204.110.64/122" : {
11131 "isp" : "Radisson Edwardian Hotels - radisson-gw",
11132 "organization" : "Radisson Edwardian Hotels - radisson-gw"
11133 }
11134 },
11135 {
11136 "::219.0.0.0/106" : {
11137 "autonomous_system_number" : 17676,
11138 "autonomous_system_organization" : "Softbank BB Corp.",
11139 "isp" : "Softbank BB Corp",
11140 "organization" : "Softbank BB Corp"
11141 }
11142 },
11143 {
11144 "::220.0.0.0/106" : {
11145 "autonomous_system_number" : 17676,
11146 "autonomous_system_organization" : "Softbank BB Corp.",
11147 "isp" : "Softbank BB Corp",
11148 "organization" : "Softbank BB Corp"
11149 }
11150 },
11151 {
11152 "::222.229.88.0/117" : {
11153 "organization" : "Connected Intelligence"
11154 }
11155 },
11156 {
11157 "::222.229.128.0/113" : {
11158 "autonomous_system_number" : 2519,
11159 "autonomous_system_organization" : "JPNIC"
11160 }
11161 },
11162 {
11163 "::222.230.0.0/113" : {
11164 "autonomous_system_number" : 2519,
11165 "autonomous_system_organization" : "JPNIC"
11166 }
11167 },
11168 {
11169 "::222.230.128.0/117" : {
11170 "autonomous_system_number" : 2519,
11171 "autonomous_system_organization" : "JPNIC"
11172 }
11173 },
11174 {
11175 "::222.230.136.0/119" : {
11176 "autonomous_system_number" : 2519,
11177 "autonomous_system_organization" : "JPNIC",
11178 "isp" : "VECTANT Ltd.",
11179 "organization" : "VECTANT Ltd."
11180 }
11181 },
11182 {
11183 "::222.230.138.0/119" : {
11184 "autonomous_system_number" : 2519,
11185 "autonomous_system_organization" : "JPNIC"
11186 }
11187 },
11188 {
11189 "::222.230.140.0/118" : {
11190 "autonomous_system_number" : 2519,
11191 "autonomous_system_organization" : "JPNIC"
11192 }
11193 },
11194 {
11195 "::222.230.144.0/116" : {
11196 "autonomous_system_number" : 2519,
11197 "autonomous_system_organization" : "JPNIC"
11198 }
11199 },
11200 {
11201 "::222.230.160.0/115" : {
11202 "autonomous_system_number" : 2519,
11203 "autonomous_system_organization" : "JPNIC"
11204 }
11205 },
11206 {
11207 "::222.230.192.0/114" : {
11208 "autonomous_system_number" : 2519,
11209 "autonomous_system_organization" : "JPNIC"
11210 }
11211 },
11212 {
11213 "2001:1700::/27" : {
11214 "autonomous_system_number" : 6730,
11215 "autonomous_system_organization" : "Sunrise Communications AG"
11216 }
11217 },
11218 {
11219 "2001:1c00::/23" : {
11220 "autonomous_system_number" : 9143,
11221 "autonomous_system_organization" : "Ziggo B.V."
11222 }
11223 },
11224 {
11225 "2001:2000::/20" : {
11226 "autonomous_system_number" : 1299,
11227 "autonomous_system_organization" : "TeliaSonera International Carrier"
11228 }
11229 },
11230 {
11231 "2001:4540::/27" : {
11232 "autonomous_system_number" : 9924,
11233 "autonomous_system_organization" : "Taiwan Fixed Network, Telco and Network Service Provider."
11234 }
11235 },
11236 {
11237 "2001:4580::/26" : {
11238 "autonomous_system_number" : 4780,
11239 "autonomous_system_organization" : "Digital United Inc."
11240 }
11241 },
11242 {
11243 "2001:4600::/24" : {
11244 "autonomous_system_number" : 2119,
11245 "autonomous_system_organization" : "Telenor Norge AS"
11246 }
11247 },
11248 {
11249 "2001:5000::/24" : {
11250 "autonomous_system_number" : 1273,
11251 "autonomous_system_organization" : "Cable and Wireless Worldwide plc"
11252 }
11253 },
11254 {
11255 "2001:5100::/24" : {
11256 "autonomous_system_number" : 2529,
11257 "autonomous_system_organization" : "Now maintained by Cable & Wireless Worldwide"
11258 }
11259 },
11260 {
11261 "2001:5200::/23" : {
11262 "autonomous_system_number" : 1273,
11263 "autonomous_system_organization" : "Cable and Wireless Worldwide plc"
11264 }
11265 },
11266 {
11267 "2001:5400::/22" : {
11268 "autonomous_system_number" : 1273,
11269 "autonomous_system_organization" : "Cable and Wireless Worldwide plc"
11270 }
11271 },
11272 {
11273 "2001:8000::/20" : {
11274 "autonomous_system_number" : 1221,
11275 "autonomous_system_organization" : "Telstra Pty Ltd"
11276 }
11277 },
11278 {
11279 "2001:b000::/21" : {
11280 "autonomous_system_number" : 17419,
11281 "autonomous_system_organization" : "HiNet IPv6 Service Network.,"
11282 }
11283 },
11284 {
11285 "2003::/19" : {
11286 "autonomous_system_number" : 3320,
11287 "autonomous_system_organization" : "Deutsche Telekom AG"
11288 }
11289 },
11290 {
11291 "2400::/20" : {
11292 "autonomous_system_number" : 4766,
11293 "autonomous_system_organization" : "Korea Telecom"
11294 }
11295 },
11296 {
11297 "2400:1000::/20" : {
11298 "autonomous_system_number" : 237,
11299 "autonomous_system_organization" : "Merit Network Inc."
11300 }
11301 },
11302 {
11303 "2400:2000::/20" : {
11304 "autonomous_system_number" : 17676,
11305 "autonomous_system_organization" : "Softbank BB Corp."
11306 }
11307 },
11308 {
11309 "2400:3000::/20" : {
11310 "autonomous_system_number" : 237,
11311 "autonomous_system_organization" : "Merit Network Inc."
11312 }
11313 },
11314 {
11315 "2400:4000::/22" : {
11316 "autonomous_system_number" : 4713,
11317 "autonomous_system_organization" : "NTT Communications Corporation"
11318 }
11319 },
11320 {
11321 "2400:4400::/22" : {
11322 "autonomous_system_number" : 237,
11323 "autonomous_system_organization" : "Merit Network Inc."
11324 }
11325 },
11326 {
11327 "2400:4800::/21" : {
11328 "autonomous_system_number" : 237,
11329 "autonomous_system_organization" : "Merit Network Inc."
11330 }
11331 },
11332 {
11333 "2400:5000::/20" : {
11334 "autonomous_system_number" : 237,
11335 "autonomous_system_organization" : "Merit Network Inc."
11336 }
11337 },
11338 {
11339 "2400:6000::/19" : {
11340 "autonomous_system_number" : 237,
11341 "autonomous_system_organization" : "Merit Network Inc."
11342 }
11343 },
11344 {
11345 "2400:8000::/17" : {
11346 "autonomous_system_number" : 237,
11347 "autonomous_system_organization" : "Merit Network Inc."
11348 }
11349 },
11350 {
11351 "2401::/17" : {
11352 "autonomous_system_number" : 237,
11353 "autonomous_system_organization" : "Merit Network Inc."
11354 }
11355 },
11356 {
11357 "2401:8000::/26" : {
11358 "autonomous_system_number" : 9919,
11359 "autonomous_system_organization" : "New Century InfoComm Tech Co., Ltd."
11360 }
11361 },
11362 {
11363 "2401:8040::/26" : {
11364 "autonomous_system_number" : 237,
11365 "autonomous_system_organization" : "Merit Network Inc."
11366 }
11367 },
11368 {
11369 "2401:8080::/25" : {
11370 "autonomous_system_number" : 237,
11371 "autonomous_system_organization" : "Merit Network Inc."
11372 }
11373 },
11374 {
11375 "2401:8100::/24" : {
11376 "autonomous_system_number" : 237,
11377 "autonomous_system_organization" : "Merit Network Inc."
11378 }
11379 },
11380 {
11381 "2401:8200::/23" : {
11382 "autonomous_system_number" : 237,
11383 "autonomous_system_organization" : "Merit Network Inc."
11384 }
11385 },
11386 {
11387 "2401:8400::/22" : {
11388 "autonomous_system_number" : 237,
11389 "autonomous_system_organization" : "Merit Network Inc."
11390 }
11391 },
11392 {
11393 "2401:8800::/21" : {
11394 "autonomous_system_number" : 237,
11395 "autonomous_system_organization" : "Merit Network Inc."
11396 }
11397 },
11398 {
11399 "2401:9000::/20" : {
11400 "autonomous_system_number" : 237,
11401 "autonomous_system_organization" : "Merit Network Inc."
11402 }
11403 },
11404 {
11405 "2401:a000::/19" : {
11406 "autonomous_system_number" : 237,
11407 "autonomous_system_organization" : "Merit Network Inc."
11408 }
11409 },
11410 {
11411 "2401:c000::/18" : {
11412 "autonomous_system_number" : 237,
11413 "autonomous_system_organization" : "Merit Network Inc."
11414 }
11415 },
11416 {
11417 "2402::/16" : {
11418 "autonomous_system_number" : 237,
11419 "autonomous_system_organization" : "Merit Network Inc."
11420 }
11421 },
11422 {
11423 "2403::/17" : {
11424 "autonomous_system_number" : 237,
11425 "autonomous_system_organization" : "Merit Network Inc."
11426 }
11427 },
11428 {
11429 "2403:8000::/20" : {
11430 "autonomous_system_number" : 237,
11431 "autonomous_system_organization" : "Merit Network Inc."
11432 }
11433 },
11434 {
11435 "2403:9000::/21" : {
11436 "autonomous_system_number" : 237,
11437 "autonomous_system_organization" : "Merit Network Inc."
11438 }
11439 },
11440 {
11441 "2403:9800::/24" : {
11442 "autonomous_system_number" : 237,
11443 "autonomous_system_organization" : "Merit Network Inc."
11444 }
11445 },
11446 {
11447 "2403:9900::/24" : {
11448 "autonomous_system_number" : 17676,
11449 "autonomous_system_organization" : "Softbank BB Corp."
11450 }
11451 },
11452 {
11453 "2403:9a00::/23" : {
11454 "autonomous_system_number" : 237,
11455 "autonomous_system_organization" : "Merit Network Inc."
11456 }
11457 },
11458 {
11459 "2403:9c00::/22" : {
11460 "autonomous_system_number" : 237,
11461 "autonomous_system_organization" : "Merit Network Inc."
11462 }
11463 },
11464 {
11465 "2403:a000::/19" : {
11466 "autonomous_system_number" : 237,
11467 "autonomous_system_organization" : "Merit Network Inc."
11468 }
11469 },
11470 {
11471 "2403:c000::/18" : {
11472 "autonomous_system_number" : 237,
11473 "autonomous_system_organization" : "Merit Network Inc."
11474 }
11475 },
11476 {
11477 "2404::/26" : {
11478 "autonomous_system_number" : 17709,
11479 "autonomous_system_organization" : "Eastern Broadband Telecom Co.,Ltd"
11480 }
11481 },
11482 {
11483 "2404:40::/26" : {
11484 "autonomous_system_number" : 237,
11485 "autonomous_system_organization" : "Merit Network Inc."
11486 }
11487 },
11488 {
11489 "2404:80::/25" : {
11490 "autonomous_system_number" : 237,
11491 "autonomous_system_organization" : "Merit Network Inc."
11492 }
11493 },
11494 {
11495 "2404:100::/24" : {
11496 "autonomous_system_number" : 237,
11497 "autonomous_system_organization" : "Merit Network Inc."
11498 }
11499 },
11500 {
11501 "2404:200::/23" : {
11502 "autonomous_system_number" : 237,
11503 "autonomous_system_organization" : "Merit Network Inc."
11504 }
11505 },
11506 {
11507 "2404:400::/22" : {
11508 "autonomous_system_number" : 237,
11509 "autonomous_system_organization" : "Merit Network Inc."
11510 }
11511 },
11512 {
11513 "2404:800::/21" : {
11514 "autonomous_system_number" : 237,
11515 "autonomous_system_organization" : "Merit Network Inc."
11516 }
11517 },
11518 {
11519 "2404:1000::/20" : {
11520 "autonomous_system_number" : 237,
11521 "autonomous_system_organization" : "Merit Network Inc."
11522 }
11523 },
11524 {
11525 "2404:2000::/19" : {
11526 "autonomous_system_number" : 237,
11527 "autonomous_system_organization" : "Merit Network Inc."
11528 }
11529 },
11530 {
11531 "2404:4000::/18" : {
11532 "autonomous_system_number" : 237,
11533 "autonomous_system_organization" : "Merit Network Inc."
11534 }
11535 },
11536 {
11537 "2404:8000::/17" : {
11538 "autonomous_system_number" : 237,
11539 "autonomous_system_organization" : "Merit Network Inc."
11540 }
11541 },
11542 {
11543 "2405::/16" : {
11544 "autonomous_system_number" : 237,
11545 "autonomous_system_organization" : "Merit Network Inc."
11546 }
11547 },
11548 {
11549 "2406::/15" : {
11550 "autonomous_system_number" : 237,
11551 "autonomous_system_organization" : "Merit Network Inc."
11552 }
11553 },
11554 {
11555 "2408::/22" : {
11556 "autonomous_system_number" : 55817,
11557 "autonomous_system_organization" : "Nippon Telegraph and Telephone Corporation PF Labs"
11558 }
11559 },
11560 {
11561 "2408:400::/22" : {
11562 "autonomous_system_number" : 237,
11563 "autonomous_system_organization" : "Merit Network Inc."
11564 }
11565 },
11566 {
11567 "2408:800::/21" : {
11568 "autonomous_system_number" : 237,
11569 "autonomous_system_organization" : "Merit Network Inc."
11570 }
11571 },
11572 {
11573 "2408:1000::/20" : {
11574 "autonomous_system_number" : 237,
11575 "autonomous_system_organization" : "Merit Network Inc."
11576 }
11577 },
11578 {
11579 "2408:2000::/19" : {
11580 "autonomous_system_number" : 237,
11581 "autonomous_system_organization" : "Merit Network Inc."
11582 }
11583 },
11584 {
11585 "2408:4000::/18" : {
11586 "autonomous_system_number" : 237,
11587 "autonomous_system_organization" : "Merit Network Inc."
11588 }
11589 },
11590 {
11591 "2408:8000::/17" : {
11592 "autonomous_system_number" : 237,
11593 "autonomous_system_organization" : "Merit Network Inc."
11594 }
11595 },
11596 {
11597 "2409::/23" : {
11598 "autonomous_system_number" : 55391,
11599 "autonomous_system_organization" : "INTERNET MULTIFEED CO."
11600 }
11601 },
11602 {
11603 "2409:200::/23" : {
11604 "autonomous_system_number" : 55392,
11605 "autonomous_system_organization" : "INTERNET MULTIFEED CO."
11606 }
11607 },
11608 {
11609 "2409:400::/22" : {
11610 "autonomous_system_number" : 237,
11611 "autonomous_system_organization" : "Merit Network Inc."
11612 }
11613 },
11614 {
11615 "2409:800::/21" : {
11616 "autonomous_system_number" : 237,
11617 "autonomous_system_organization" : "Merit Network Inc."
11618 }
11619 },
11620 {
11621 "2409:1000::/20" : {
11622 "autonomous_system_number" : 237,
11623 "autonomous_system_organization" : "Merit Network Inc."
11624 }
11625 },
11626 {
11627 "2409:2000::/19" : {
11628 "autonomous_system_number" : 237,
11629 "autonomous_system_organization" : "Merit Network Inc."
11630 }
11631 },
11632 {
11633 "2409:4000::/18" : {
11634 "autonomous_system_number" : 237,
11635 "autonomous_system_organization" : "Merit Network Inc."
11636 }
11637 },
11638 {
11639 "2409:8000::/17" : {
11640 "autonomous_system_number" : 237,
11641 "autonomous_system_organization" : "Merit Network Inc."
11642 }
11643 },
11644 {
11645 "240a::/16" : {
11646 "autonomous_system_number" : 237,
11647 "autonomous_system_organization" : "Merit Network Inc."
11648 }
11649 },
11650 {
11651 "240b::/22" : {
11652 "autonomous_system_number" : 2516,
11653 "autonomous_system_organization" : "KDDI KDDI CORPORATION"
11654 }
11655 },
11656 {
11657 "240b:400::/22" : {
11658 "autonomous_system_number" : 237,
11659 "autonomous_system_organization" : "Merit Network Inc."
11660 }
11661 },
11662 {
11663 "240b:800::/21" : {
11664 "autonomous_system_number" : 237,
11665 "autonomous_system_organization" : "Merit Network Inc."
11666 }
11667 },
11668 {
11669 "240b:1000::/20" : {
11670 "autonomous_system_number" : 237,
11671 "autonomous_system_organization" : "Merit Network Inc."
11672 }
11673 },
11674 {
11675 "240b:2000::/19" : {
11676 "autonomous_system_number" : 237,
11677 "autonomous_system_organization" : "Merit Network Inc."
11678 }
11679 },
11680 {
11681 "240b:4000::/18" : {
11682 "autonomous_system_number" : 237,
11683 "autonomous_system_organization" : "Merit Network Inc."
11684 }
11685 },
11686 {
11687 "240b:8000::/17" : {
11688 "autonomous_system_number" : 237,
11689 "autonomous_system_organization" : "Merit Network Inc."
11690 }
11691 },
11692 {
11693 "240c::/16" : {
11694 "autonomous_system_number" : 237,
11695 "autonomous_system_organization" : "Merit Network Inc."
11696 }
11697 },
11698 {
11699 "240d::/27" : {
11700 "autonomous_system_number" : 2527,
11701 "autonomous_system_organization" : "So-net Entertainment Corporation"
11702 }
11703 },
11704 {
11705 "240d:20::/27" : {
11706 "autonomous_system_number" : 237,
11707 "autonomous_system_organization" : "Merit Network Inc."
11708 }
11709 },
11710 {
11711 "240d:40::/26" : {
11712 "autonomous_system_number" : 237,
11713 "autonomous_system_organization" : "Merit Network Inc."
11714 }
11715 },
11716 {
11717 "240d:80::/25" : {
11718 "autonomous_system_number" : 237,
11719 "autonomous_system_organization" : "Merit Network Inc."
11720 }
11721 },
11722 {
11723 "240d:100::/24" : {
11724 "autonomous_system_number" : 237,
11725 "autonomous_system_organization" : "Merit Network Inc."
11726 }
11727 },
11728 {
11729 "240d:200::/23" : {
11730 "autonomous_system_number" : 237,
11731 "autonomous_system_organization" : "Merit Network Inc."
11732 }
11733 },
11734 {
11735 "240d:400::/22" : {
11736 "autonomous_system_number" : 237,
11737 "autonomous_system_organization" : "Merit Network Inc."
11738 }
11739 },
11740 {
11741 "240d:800::/21" : {
11742 "autonomous_system_number" : 237,
11743 "autonomous_system_organization" : "Merit Network Inc."
11744 }
11745 },
11746 {
11747 "240d:1000::/20" : {
11748 "autonomous_system_number" : 237,
11749 "autonomous_system_organization" : "Merit Network Inc."
11750 }
11751 },
11752 {
11753 "240d:2000::/19" : {
11754 "autonomous_system_number" : 237,
11755 "autonomous_system_organization" : "Merit Network Inc."
11756 }
11757 },
11758 {
11759 "240d:4000::/18" : {
11760 "autonomous_system_number" : 237,
11761 "autonomous_system_organization" : "Merit Network Inc."
11762 }
11763 },
11764 {
11765 "240d:8000::/17" : {
11766 "autonomous_system_number" : 237,
11767 "autonomous_system_organization" : "Merit Network Inc."
11768 }
11769 },
11770 {
11771 "240e::/24" : {
11772 "autonomous_system_number" : 4134,
11773 "autonomous_system_organization" : "Chinanet"
11774 }
11775 },
11776 {
11777 "240e:100::/24" : {
11778 "autonomous_system_number" : 237,
11779 "autonomous_system_organization" : "Merit Network Inc."
11780 }
11781 },
11782 {
11783 "240e:200::/23" : {
11784 "autonomous_system_number" : 237,
11785 "autonomous_system_organization" : "Merit Network Inc."
11786 }
11787 },
11788 {
11789 "240e:400::/22" : {
11790 "autonomous_system_number" : 237,
11791 "autonomous_system_organization" : "Merit Network Inc."
11792 }
11793 },
11794 {
11795 "240e:800::/21" : {
11796 "autonomous_system_number" : 237,
11797 "autonomous_system_organization" : "Merit Network Inc."
11798 }
11799 },
11800 {
11801 "240e:1000::/20" : {
11802 "autonomous_system_number" : 237,
11803 "autonomous_system_organization" : "Merit Network Inc."
11804 }
11805 },
11806 {
11807 "240e:2000::/19" : {
11808 "autonomous_system_number" : 237,
11809 "autonomous_system_organization" : "Merit Network Inc."
11810 }
11811 },
11812 {
11813 "240e:4000::/18" : {
11814 "autonomous_system_number" : 237,
11815 "autonomous_system_organization" : "Merit Network Inc."
11816 }
11817 },
11818 {
11819 "240e:8000::/17" : {
11820 "autonomous_system_number" : 237,
11821 "autonomous_system_organization" : "Merit Network Inc."
11822 }
11823 },
11824 {
11825 "240f::/24" : {
11826 "autonomous_system_number" : 2516,
11827 "autonomous_system_organization" : "KDDI KDDI CORPORATION"
11828 }
11829 },
11830 {
11831 "240f:100::/24" : {
11832 "autonomous_system_number" : 237,
11833 "autonomous_system_organization" : "Merit Network Inc."
11834 }
11835 },
11836 {
11837 "240f:200::/23" : {
11838 "autonomous_system_number" : 237,
11839 "autonomous_system_organization" : "Merit Network Inc."
11840 }
11841 },
11842 {
11843 "240f:400::/22" : {
11844 "autonomous_system_number" : 237,
11845 "autonomous_system_organization" : "Merit Network Inc."
11846 }
11847 },
11848 {
11849 "240f:800::/21" : {
11850 "autonomous_system_number" : 237,
11851 "autonomous_system_organization" : "Merit Network Inc."
11852 }
11853 },
11854 {
11855 "240f:1000::/20" : {
11856 "autonomous_system_number" : 237,
11857 "autonomous_system_organization" : "Merit Network Inc."
11858 }
11859 },
11860 {
11861 "240f:2000::/19" : {
11862 "autonomous_system_number" : 237,
11863 "autonomous_system_organization" : "Merit Network Inc."
11864 }
11865 },
11866 {
11867 "240f:4000::/18" : {
11868 "autonomous_system_number" : 237,
11869 "autonomous_system_organization" : "Merit Network Inc."
11870 }
11871 },
11872 {
11873 "240f:8000::/17" : {
11874 "autonomous_system_number" : 237,
11875 "autonomous_system_organization" : "Merit Network Inc."
11876 }
11877 },
11878 {
11879 "2600::/21" : {
11880 "autonomous_system_number" : 237,
11881 "autonomous_system_organization" : "Merit Network Inc."
11882 }
11883 },
11884 {
11885 "2600:800::/27" : {
11886 "autonomous_system_number" : 701,
11887 "autonomous_system_organization" : "MCI Communications Services, Inc. d/b/a Verizon Business"
11888 }
11889 },
11890 {
11891 "2600:820::/27" : {
11892 "autonomous_system_number" : 237,
11893 "autonomous_system_organization" : "Merit Network Inc."
11894 }
11895 },
11896 {
11897 "2600:840::/26" : {
11898 "autonomous_system_number" : 237,
11899 "autonomous_system_organization" : "Merit Network Inc."
11900 }
11901 },
11902 {
11903 "2600:880::/25" : {
11904 "autonomous_system_number" : 237,
11905 "autonomous_system_organization" : "Merit Network Inc."
11906 }
11907 },
11908 {
11909 "2600:900::/24" : {
11910 "autonomous_system_number" : 237,
11911 "autonomous_system_organization" : "Merit Network Inc."
11912 }
11913 },
11914 {
11915 "2600:a00::/23" : {
11916 "autonomous_system_number" : 237,
11917 "autonomous_system_organization" : "Merit Network Inc."
11918 }
11919 },
11920 {
11921 "2600:c00::/22" : {
11922 "autonomous_system_number" : 237,
11923 "autonomous_system_organization" : "Merit Network Inc."
11924 }
11925 },
11926 {
11927 "2600:1000::/22" : {
11928 "autonomous_system_number" : 237,
11929 "autonomous_system_organization" : "Merit Network Inc."
11930 }
11931 },
11932 {
11933 "2600:1400::/27" : {
11934 "autonomous_system_number" : 31377,
11935 "autonomous_system_organization" : "Akamai International B.V."
11936 }
11937 },
11938 {
11939 "2600:1420::/27" : {
11940 "autonomous_system_number" : 237,
11941 "autonomous_system_organization" : "Merit Network Inc."
11942 }
11943 },
11944 {
11945 "2600:1440::/26" : {
11946 "autonomous_system_number" : 237,
11947 "autonomous_system_organization" : "Merit Network Inc."
11948 }
11949 },
11950 {
11951 "2600:1480::/25" : {
11952 "autonomous_system_number" : 237,
11953 "autonomous_system_organization" : "Merit Network Inc."
11954 }
11955 },
11956 {
11957 "2600:1500::/24" : {
11958 "autonomous_system_number" : 237,
11959 "autonomous_system_organization" : "Merit Network Inc."
11960 }
11961 },
11962 {
11963 "2600:1600::/23" : {
11964 "autonomous_system_number" : 237,
11965 "autonomous_system_organization" : "Merit Network Inc."
11966 }
11967 },
11968 {
11969 "2600:1800::/21" : {
11970 "autonomous_system_number" : 237,
11971 "autonomous_system_organization" : "Merit Network Inc."
11972 }
11973 },
11974 {
11975 "2600:2000::/19" : {
11976 "autonomous_system_number" : 237,
11977 "autonomous_system_organization" : "Merit Network Inc."
11978 }
11979 },
11980 {
11981 "2600:4000::/20" : {
11982 "autonomous_system_number" : 237,
11983 "autonomous_system_organization" : "Merit Network Inc."
11984 }
11985 },
11986 {
11987 "2600:5000::/22" : {
11988 "autonomous_system_number" : 237,
11989 "autonomous_system_organization" : "Merit Network Inc."
11990 }
11991 },
11992 {
11993 "2600:5400::/27" : {
11994 "autonomous_system_number" : 19108,
11995 "autonomous_system_organization" : "Suddenlink Communications"
11996 }
11997 },
11998 {
11999 "2600:5420::/27" : {
12000 "autonomous_system_number" : 237,
12001 "autonomous_system_organization" : "Merit Network Inc."
12002 }
12003 },
12004 {
12005 "2600:5440::/26" : {
12006 "autonomous_system_number" : 237,
12007 "autonomous_system_organization" : "Merit Network Inc."
12008 }
12009 },
12010 {
12011 "2600:5480::/25" : {
12012 "autonomous_system_number" : 237,
12013 "autonomous_system_organization" : "Merit Network Inc."
12014 }
12015 },
12016 {
12017 "2600:5500::/24" : {
12018 "autonomous_system_number" : 237,
12019 "autonomous_system_organization" : "Merit Network Inc."
12020 }
12021 },
12022 {
12023 "2600:5600::/23" : {
12024 "autonomous_system_number" : 237,
12025 "autonomous_system_organization" : "Merit Network Inc."
12026 }
12027 },
12028 {
12029 "2600:5800::/21" : {
12030 "autonomous_system_number" : 237,
12031 "autonomous_system_organization" : "Merit Network Inc."
12032 }
12033 },
12034 {
12035 "2600:6000::/20" : {
12036 "autonomous_system_number" : 237,
12037 "autonomous_system_organization" : "Merit Network Inc."
12038 }
12039 },
12040 {
12041 "2600:7000::/24" : {
12042 "autonomous_system_number" : 6939,
12043 "autonomous_system_organization" : "Hurricane Electric, Inc."
12044 }
12045 },
12046 {
12047 "2600:7100::/24" : {
12048 "autonomous_system_number" : 237,
12049 "autonomous_system_organization" : "Merit Network Inc."
12050 }
12051 },
12052 {
12053 "2600:7200::/23" : {
12054 "autonomous_system_number" : 237,
12055 "autonomous_system_organization" : "Merit Network Inc."
12056 }
12057 },
12058 {
12059 "2600:7400::/22" : {
12060 "autonomous_system_number" : 237,
12061 "autonomous_system_organization" : "Merit Network Inc."
12062 }
12063 },
12064 {
12065 "2600:7800::/21" : {
12066 "autonomous_system_number" : 237,
12067 "autonomous_system_organization" : "Merit Network Inc."
12068 }
12069 },
12070 {
12071 "2600:8000::/17" : {
12072 "autonomous_system_number" : 237,
12073 "autonomous_system_organization" : "Merit Network Inc."
12074 }
12075 },
12076 {
12077 "2601::/16" : {
12078 "autonomous_system_number" : 237,
12079 "autonomous_system_organization" : "Merit Network Inc."
12080 }
12081 },
12082 {
12083 "2602::/24" : {
12084 "autonomous_system_number" : 209,
12085 "autonomous_system_organization" : "NOVARTIS-DMZ-US"
12086 }
12087 },
12088 {
12089 "2602:100::/24" : {
12090 "autonomous_system_number" : 237,
12091 "autonomous_system_organization" : "Merit Network Inc."
12092 }
12093 },
12094 {
12095 "2602:200::/24" : {
12096 "autonomous_system_number" : 237,
12097 "autonomous_system_organization" : "Merit Network Inc."
12098 }
12099 },
12100 {
12101 "2602:300::/24" : {
12102 "autonomous_system_number" : 7018,
12103 "autonomous_system_organization" : "AT&T Services, Inc."
12104 }
12105 },
12106 {
12107 "2602:400::/22" : {
12108 "autonomous_system_number" : 237,
12109 "autonomous_system_organization" : "Merit Network Inc."
12110 }
12111 },
12112 {
12113 "2602:800::/21" : {
12114 "autonomous_system_number" : 237,
12115 "autonomous_system_organization" : "Merit Network Inc."
12116 }
12117 },
12118 {
12119 "2602:1000::/20" : {
12120 "autonomous_system_number" : 237,
12121 "autonomous_system_organization" : "Merit Network Inc."
12122 }
12123 },
12124 {
12125 "2602:2000::/19" : {
12126 "autonomous_system_number" : 237,
12127 "autonomous_system_organization" : "Merit Network Inc."
12128 }
12129 },
12130 {
12131 "2602:4000::/18" : {
12132 "autonomous_system_number" : 237,
12133 "autonomous_system_organization" : "Merit Network Inc."
12134 }
12135 },
12136 {
12137 "2602:8000::/17" : {
12138 "autonomous_system_number" : 237,
12139 "autonomous_system_organization" : "Merit Network Inc."
12140 }
12141 },
12142 {
12143 "2603::/16" : {
12144 "autonomous_system_number" : 237,
12145 "autonomous_system_organization" : "Merit Network Inc."
12146 }
12147 },
12148 {
12149 "2604::/14" : {
12150 "autonomous_system_number" : 237,
12151 "autonomous_system_organization" : "Merit Network Inc."
12152 }
12153 },
12154 {
12155 "2608::/13" : {
12156 "autonomous_system_number" : 237,
12157 "autonomous_system_organization" : "Merit Network Inc."
12158 }
12159 },
12160 {
12161 "2800::/19" : {
12162 "autonomous_system_number" : 237,
12163 "autonomous_system_organization" : "Merit Network Inc."
12164 }
12165 },
12166 {
12167 "2800:2000::/20" : {
12168 "autonomous_system_number" : 10318,
12169 "autonomous_system_organization" : "S.A."
12170 }
12171 },
12172 {
12173 "2800:3000::/20" : {
12174 "autonomous_system_number" : 237,
12175 "autonomous_system_organization" : "Merit Network Inc."
12176 }
12177 },
12178 {
12179 "2800:4000::/18" : {
12180 "autonomous_system_number" : 237,
12181 "autonomous_system_organization" : "Merit Network Inc."
12182 }
12183 },
12184 {
12185 "2800:8000::/17" : {
12186 "autonomous_system_number" : 237,
12187 "autonomous_system_organization" : "Merit Network Inc."
12188 }
12189 },
12190 {
12191 "2801::/16" : {
12192 "autonomous_system_number" : 237,
12193 "autonomous_system_organization" : "Merit Network Inc."
12194 }
12195 },
12196 {
12197 "2802::/15" : {
12198 "autonomous_system_number" : 237,
12199 "autonomous_system_organization" : "Merit Network Inc."
12200 }
12201 },
12202 {
12203 "2804::/15" : {
12204 "autonomous_system_number" : 237,
12205 "autonomous_system_organization" : "Merit Network Inc."
12206 }
12207 },
12208 {
12209 "2806::/20" : {
12210 "autonomous_system_number" : 237,
12211 "autonomous_system_organization" : "Merit Network Inc."
12212 }
12213 },
12214 {
12215 "2806:1000::/24" : {
12216 "autonomous_system_number" : 8151,
12217 "autonomous_system_organization" : "Uninet S.A. de C.V."
12218 }
12219 },
12220 {
12221 "2806:1100::/24" : {
12222 "autonomous_system_number" : 237,
12223 "autonomous_system_organization" : "Merit Network Inc."
12224 }
12225 },
12226 {
12227 "2806:1200::/23" : {
12228 "autonomous_system_number" : 237,
12229 "autonomous_system_organization" : "Merit Network Inc."
12230 }
12231 },
12232 {
12233 "2806:1400::/22" : {
12234 "autonomous_system_number" : 237,
12235 "autonomous_system_organization" : "Merit Network Inc."
12236 }
12237 },
12238 {
12239 "2806:1800::/21" : {
12240 "autonomous_system_number" : 237,
12241 "autonomous_system_organization" : "Merit Network Inc."
12242 }
12243 },
12244 {
12245 "2806:2000::/19" : {
12246 "autonomous_system_number" : 237,
12247 "autonomous_system_organization" : "Merit Network Inc."
12248 }
12249 },
12250 {
12251 "2806:4000::/18" : {
12252 "autonomous_system_number" : 237,
12253 "autonomous_system_organization" : "Merit Network Inc."
12254 }
12255 },
12256 {
12257 "2806:8000::/17" : {
12258 "autonomous_system_number" : 237,
12259 "autonomous_system_organization" : "Merit Network Inc."
12260 }
12261 },
12262 {
12263 "2807::/16" : {
12264 "autonomous_system_number" : 237,
12265 "autonomous_system_organization" : "Merit Network Inc."
12266 }
12267 },
12268 {
12269 "2808::/13" : {
12270 "autonomous_system_number" : 237,
12271 "autonomous_system_organization" : "Merit Network Inc."
12272 }
12273 },
12274 {
12275 "2a00::/22" : {
12276 "autonomous_system_number" : 3209,
12277 "autonomous_system_organization" : "Vodafone GmbH"
12278 }
12279 },
12280 {
12281 "2a00:800::/25" : {
12282 "autonomous_system_number" : 1257,
12283 "autonomous_system_organization" : "TELE2"
12284 }
12285 },
12286 {
12287 "2a00:2000::/23" : {
12288 "autonomous_system_number" : 5400,
12289 "autonomous_system_organization" : "British Telecommunications plc"
12290 }
12291 },
12292 {
12293 "2a00:2200::/24" : {
12294 "autonomous_system_number" : 5400,
12295 "autonomous_system_organization" : "British Telecommunications plc"
12296 }
12297 },
12298 {
12299 "2a00:2300::/25" : {
12300 "autonomous_system_number" : 5400,
12301 "autonomous_system_organization" : "British Telecommunications plc"
12302 }
12303 },
12304 {
12305 "2a00:2380::/25" : {
12306 "autonomous_system_number" : 2856,
12307 "autonomous_system_organization" : "BTnet UK Regional network"
12308 }
12309 },
12310 {
12311 "2a01:2e0::/28" : {
12312 "autonomous_system_number" : 8374,
12313 "autonomous_system_organization" : "Polkomtel Sp. z o.o."
12314 }
12315 },
12316 {
12317 "2a01:800::/24" : {
12318 "autonomous_system_number" : 3209,
12319 "autonomous_system_organization" : "Vodafone GmbH"
12320 }
12321 },
12322 {
12323 "2a01:c00::/26" : {
12324 "autonomous_system_number" : 13184,
12325 "autonomous_system_organization" : "Telefonica Germany GmbH & Co.OHG"
12326 }
12327 },
12328 {
12329 "2a01:e00::/26" : {
12330 "autonomous_system_number" : 12322,
12331 "autonomous_system_organization" : "Free SAS"
12332 }
12333 },
12334 {
12335 "2a01:1000::/21" : {
12336 "autonomous_system_number" : 5617,
12337 "autonomous_system_organization" : "Telekomunikacja Polska S.A."
12338 }
12339 },
12340 {
12341 "2a01:2000::/20" : {
12342 "autonomous_system_number" : 3269,
12343 "autonomous_system_organization" : "Telecom Italia S.p.a."
12344 }
12345 },
12346 {
12347 "2a01:c000::/19" : {
12348 "autonomous_system_number" : 5511,
12349 "autonomous_system_organization" : "Orange S.A."
12350 }
12351 },
12352 {
12353 "2a02:1200::/27" : {
12354 "autonomous_system_number" : 3303,
12355 "autonomous_system_organization" : "Swisscom (Switzerland) Ltd"
12356 }
12357 },
12358 {
12359 "2a02:1400::/26" : {
12360 "autonomous_system_number" : 2119,
12361 "autonomous_system_organization" : "Telenor Norge AS"
12362 }
12363 },
12364 {
12365 "2a02:1800::/24" : {
12366 "autonomous_system_number" : 6848,
12367 "autonomous_system_organization" : "Telenet N.V."
12368 }
12369 },
12370 {
12371 "2a02:2e00::/27" : {
12372 "autonomous_system_number" : 12715,
12373 "autonomous_system_organization" : "Jazz Telecom S.A."
12374 }
12375 },
12376 {
12377 "2a02:3000::/23" : {
12378 "autonomous_system_number" : 6805,
12379 "autonomous_system_organization" : "Telefonica Germany GmbH & Co.OHG"
12380 }
12381 },
12382 {
12383 "2a02:8100::/27" : {
12384 "autonomous_system_number" : 31334,
12385 "autonomous_system_organization" : "Kabel Deutschland Vertrieb und Service GmbH"
12386 }
12387 },
12388 {
12389 "2a02:8200::/27" : {
12390 "autonomous_system_number" : 9145,
12391 "autonomous_system_organization" : "EWE TEL GmbH"
12392 }
12393 },
12394 {
12395 "2a02:8400::/25" : {
12396 "autonomous_system_number" : 15557,
12397 "autonomous_system_organization" : "Societe Francaise du Radiotelephone S.A"
12398 }
12399 },
12400 {
12401 "2a02:9000::/23" : {
12402 "autonomous_system_number" : 3352,
12403 "autonomous_system_organization" : "TELEFONICA DE ESPANA"
12404 }
12405 },
12406 {
12407 "2a02:a000::/26" : {
12408 "autonomous_system_number" : 5432,
12409 "autonomous_system_organization" : "Belgacom regional ASN"
12410 }
12411 },
12412 {
12413 "2a02:a200::/27" : {
12414 "autonomous_system_number" : 6830,
12415 "autonomous_system_organization" : "Liberty Global Operations B.V."
12416 }
12417 },
12418 {
12419 "2a02:a300::/27" : {
12420 "autonomous_system_number" : 6830,
12421 "autonomous_system_organization" : "Liberty Global Operations B.V."
12422 }
12423 },
12424 {
12425 "2a02:a400::/26" : {
12426 "autonomous_system_number" : 1136,
12427 "autonomous_system_organization" : "KPN Internet Solutions"
12428 }
12429 },
12430 {
12431 "2a02:a440::/26" : {
12432 "autonomous_system_number" : 8737,
12433 "autonomous_system_organization" : "Koninklijke KPN N.V."
12434 }
12435 },
12436 {
12437 "2a02:a800::/26" : {
12438 "autonomous_system_number" : 6739,
12439 "autonomous_system_organization" : "Cableuropa - ONO"
12440 }
12441 },
12442 {
12443 "2a02:aa00::/27" : {
12444 "autonomous_system_number" : 6830,
12445 "autonomous_system_organization" : "Liberty Global Operations B.V."
12446 }
12447 },
12448 {
12449 "2a04:2400::/27" : {
12450 "autonomous_system_number" : 6830,
12451 "autonomous_system_organization" : "Liberty Global Operations B.V."
12452 }
12453 },
12454 {
12455 "2c00::/13" : {
12456 "autonomous_system_number" : 237,
12457 "autonomous_system_organization" : "Merit Network Inc."
12458 }
12459 },
12460 {
12461 "2c08::/14" : {
12462 "autonomous_system_number" : 237,
12463 "autonomous_system_organization" : "Merit Network Inc."
12464 }
12465 },
12466 {
12467 "2c0c::/15" : {
12468 "autonomous_system_number" : 237,
12469 "autonomous_system_organization" : "Merit Network Inc."
12470 }
12471 },
12472 {
12473 "2c0e::/20" : {
12474 "autonomous_system_number" : 24863,
12475 "autonomous_system_organization" : "LINKdotNET"
12476 }
12477 },
12478 {
12479 "2c0e:1000::/20" : {
12480 "autonomous_system_number" : 237,
12481 "autonomous_system_organization" : "Merit Network Inc."
12482 }
12483 },
12484 {
12485 "2c0e:2000::/19" : {
12486 "autonomous_system_number" : 237,
12487 "autonomous_system_organization" : "Merit Network Inc."
12488 }
12489 },
12490 {
12491 "2c0e:4000::/18" : {
12492 "autonomous_system_number" : 237,
12493 "autonomous_system_organization" : "Merit Network Inc."
12494 }
12495 },
12496 {
12497 "2c0e:8000::/17" : {
12498 "autonomous_system_number" : 237,
12499 "autonomous_system_organization" : "Merit Network Inc."
12500 }
12501 },
12502 {
12503 "2c0f::/17" : {
12504 "autonomous_system_number" : 237,
12505 "autonomous_system_organization" : "Merit Network Inc."
12506 }
12507 },
12508 {
12509 "2c0f:8000::/18" : {
12510 "autonomous_system_number" : 237,
12511 "autonomous_system_organization" : "Merit Network Inc."
12512 }
12513 },
12514 {
12515 "2c0f:c000::/19" : {
12516 "autonomous_system_number" : 237,
12517 "autonomous_system_organization" : "Merit Network Inc."
12518 }
12519 },
12520 {
12521 "2c0f:e000::/20" : {
12522 "autonomous_system_number" : 237,
12523 "autonomous_system_organization" : "Merit Network Inc."
12524 }
12525 },
12526 {
12527 "2c0f:f000::/21" : {
12528 "autonomous_system_number" : 237,
12529 "autonomous_system_organization" : "Merit Network Inc."
12530 }
12531 },
12532 {
12533 "2c0f:f800::/22" : {
12534 "autonomous_system_number" : 237,
12535 "autonomous_system_organization" : "Merit Network Inc."
12536 }
12537 },
12538 {
12539 "2c0f:fc00::/27" : {
12540 "autonomous_system_number" : 3741,
12541 "autonomous_system_organization" : "IS"
12542 }
12543 },
12544 {
12545 "2c0f:fc20::/27" : {
12546 "autonomous_system_number" : 237,
12547 "autonomous_system_organization" : "Merit Network Inc."
12548 }
12549 },
12550 {
12551 "2c0f:fc40::/26" : {
12552 "autonomous_system_number" : 237,
12553 "autonomous_system_organization" : "Merit Network Inc."
12554 }
12555 },
12556 {
12557 "2c0f:fc80::/25" : {
12558 "autonomous_system_number" : 237,
12559 "autonomous_system_organization" : "Merit Network Inc."
12560 }
12561 },
12562 {
12563 "2c0f:fd00::/24" : {
12564 "autonomous_system_number" : 237,
12565 "autonomous_system_organization" : "Merit Network Inc."
12566 }
12567 },
12568 {
12569 "2c0f:fe00::/24" : {
12570 "autonomous_system_number" : 237,
12571 "autonomous_system_organization" : "Merit Network Inc."
12572 }
12573 },
12574 {
12575 "2c0f:ff00::/26" : {
12576 "autonomous_system_number" : 237,
12577 "autonomous_system_organization" : "Merit Network Inc."
12578 }
12579 },
12580 {
12581 "2c0f:ff40::/26" : {
12582 "autonomous_system_number" : 10474,
12583 "autonomous_system_organization" : "MWEB-10474"
12584 }
12585 },
12586 {
12587 "2c0f:ff80::/25" : {
12588 "autonomous_system_number" : 237,
12589 "autonomous_system_organization" : "Merit Network Inc."
12590 }
12591 }
12592 ]
+0
-2018
test/data/source-data/GeoIP2-Precision-Enterprise-Test.json less more
0 [
1 {
2 "::1.124.213.0/120" : {
3 "continent" : {
4 "code" : "AS",
5 "geoname_id" : 6255147,
6 "names" : {
7 "de" : "Asien",
8 "en" : "Asia",
9 "es" : "Asia",
10 "fr" : "Asie",
11 "ja" : "アジア",
12 "pt-BR" : "Ásia",
13 "ru" : "Азия",
14 "zh-CN" : "亚洲"
15 }
16 },
17 "country" : {
18 "confidence" : 99,
19 "geoname_id" : 130758,
20 "iso_code" : "IR",
21 "names" : {
22 "de" : "Iran (Islamische Republik)",
23 "en" : "Iran",
24 "es" : "Irán",
25 "fr" : "Iran",
26 "ja" : "イラン・イスラム共和国",
27 "pt-BR" : "Irã",
28 "ru" : "Иран",
29 "zh-CN" : "伊朗伊斯兰共和国"
30 }
31 },
32 "location" : {
33 "accuracy_radius" : 50,
34 "latitude" : 35.6961,
35 "longitude" : 51.4231,
36 "time_zone" : "Asia/Tehran"
37 },
38 "registered_country" : {
39 "geoname_id" : 130758,
40 "iso_code" : "IR",
41 "names" : {
42 "de" : "Iran (Islamische Republik)",
43 "en" : "Iran",
44 "es" : "Irán",
45 "fr" : "Iran",
46 "ja" : "イラン・イスラム共和国",
47 "pt-BR" : "Irã",
48 "ru" : "Иран",
49 "zh-CN" : "伊朗伊斯兰共和国"
50 }
51 },
52 "traits" : {
53 "autonomous_system_number" : 44244,
54 "autonomous_system_organization" : "Iran Cell Service and Communication Company",
55 "connection_type" : "Cellular",
56 "isp" : "Iran Cell Service and Communication Company",
57 "organization" : "Iran Cell Service and Communication Company",
58 "user_type" : "cellular"
59 }
60 }
61 },
62 {
63 "::1.231.232.0/120" : {
64 "city" : {
65 "confidence" : 60,
66 "geoname_id" : 709334,
67 "names" : {
68 "de" : "Dschankoj",
69 "en" : "Dzhankoy",
70 "ru" : "Джанкой"
71 }
72 },
73 "continent" : {
74 "code" : "EU",
75 "geoname_id" : 6255148,
76 "names" : {
77 "de" : "Europa",
78 "en" : "Europe",
79 "es" : "Europa",
80 "fr" : "Europe",
81 "ja" : "ヨーロッパ",
82 "pt-BR" : "Europa",
83 "ru" : "Европа",
84 "zh-CN" : "欧洲"
85 }
86 },
87 "country" : {
88 "confidence" : 80,
89 "geoname_id" : 690791,
90 "iso_code" : "UA",
91 "names" : {
92 "de" : "Ukraine",
93 "en" : "Ukraine",
94 "es" : "Ucrania",
95 "fr" : "Ukraine",
96 "ja" : "ウクライナ共和国",
97 "pt-BR" : "Ucrânia",
98 "ru" : "Украина",
99 "zh-CN" : "乌克兰"
100 }
101 },
102 "location" : {
103 "accuracy_radius" : 200,
104 "latitude" : 45.7117,
105 "longitude" : 34.3927,
106 "time_zone" : "Europe/Simferopol"
107 },
108 "registered_country" : {
109 "geoname_id" : 690791,
110 "iso_code" : "UA",
111 "names" : {
112 "de" : "Ukraine",
113 "en" : "Ukraine",
114 "es" : "Ucrania",
115 "fr" : "Ukraine",
116 "ja" : "ウクライナ共和国",
117 "pt-BR" : "Ucrânia",
118 "ru" : "Украина",
119 "zh-CN" : "乌克兰"
120 }
121 },
122 "subdivisions" : [
123 {
124 "confidence" : 70,
125 "geoname_id" : 703883,
126 "iso_code" : "43",
127 "names" : {
128 "de" : "Krim",
129 "en" : "Autonomous Republic of Crimea",
130 "fr" : "République autonome de Crimée",
131 "ru" : "Республика Крым"
132 }
133 }
134 ],
135 "traits" : {
136 "autonomous_system_number" : 28761,
137 "autonomous_system_organization" : "CrimeaCom South LLC",
138 "connection_type" : "Cable/DSL",
139 "isp" : "CrimeaCom South LLC",
140 "organization" : "CrimeaCom South LLC",
141 "user_type" : "residential"
142 }
143 }
144 },
145 {
146 "::2.125.160.216/125" : {
147 "city" : {
148 "confidence" : 50,
149 "geoname_id" : 2655045,
150 "names" : {
151 "en" : "Boxford"
152 }
153 },
154 "continent" : {
155 "code" : "EU",
156 "geoname_id" : 6255148,
157 "names" : {
158 "de" : "Europa",
159 "en" : "Europe",
160 "es" : "Europa",
161 "fr" : "Europe",
162 "ja" : "ヨーロッパ",
163 "pt-BR" : "Europa",
164 "ru" : "Европа",
165 "zh-CN" : "欧洲"
166 }
167 },
168 "country" : {
169 "confidence" : 95,
170 "geoname_id" : 2635167,
171 "is_in_european_union" : true,
172 "iso_code" : "GB",
173 "names" : {
174 "de" : "Vereinigtes Königreich",
175 "en" : "United Kingdom",
176 "es" : "Reino Unido",
177 "fr" : "Royaume-Uni",
178 "ja" : "イギリス",
179 "pt-BR" : "Reino Unido",
180 "ru" : "Великобритания",
181 "zh-CN" : "英国"
182 }
183 },
184 "location" : {
185 "accuracy_radius" : 100,
186 "latitude" : 51.75,
187 "longitude" : -1.25,
188 "time_zone" : "Europe/London"
189 },
190 "postal" : {
191 "code" : "OX1",
192 "confidence" : 20
193 },
194 "registered_country" : {
195 "geoname_id" : 3017382,
196 "is_in_european_union" : true,
197 "iso_code" : "FR",
198 "names" : {
199 "de" : "Frankreich",
200 "en" : "France",
201 "es" : "Francia",
202 "fr" : "France",
203 "ja" : "フランス共和国",
204 "pt-BR" : "França",
205 "ru" : "Франция",
206 "zh-CN" : "法国"
207 }
208 },
209 "subdivisions" : [
210 {
211 "confidence" : 70,
212 "geoname_id" : 6269131,
213 "iso_code" : "ENG",
214 "names" : {
215 "en" : "England",
216 "es" : "Inglaterra",
217 "fr" : "Angleterre",
218 "pt-BR" : "Inglaterra"
219 }
220 },
221 {
222 "geoname_id" : 3333217,
223 "iso_code" : "WBK",
224 "names" : {
225 "en" : "West Berkshire",
226 "ru" : "Западный Беркшир",
227 "zh-CN" : "西伯克郡"
228 }
229 }
230 ]
231 }
232 },
233 {
234 "::5.83.124.0/118" : {
235 "registered_country" : {
236 "geoname_id" : 798549,
237 "is_in_european_union" : true,
238 "iso_code" : "RO",
239 "names" : {
240 "de" : "Rumänien",
241 "en" : "Romania",
242 "es" : "Rumanía",
243 "fr" : "Roumanie",
244 "ja" : "ルーマニア",
245 "pt-BR" : "Romênia",
246 "ru" : "Румыния",
247 "zh-CN" : "罗马尼亚"
248 }
249 },
250 "traits" : {
251 "is_anonymous_proxy" : true,
252 "isp" : "WifiNetCom"
253 }
254 }
255 },
256 {
257 "::12.87.118.0/119" : {
258 "traits" : {
259 "autonomous_system_number" : 7018,
260 "isp" : "AT&T Services",
261 "organization" : "AT&T Worldnet Services"
262 }
263 }
264 },
265 {
266 "::41.189.160.0/124" : {
267 "city" : {
268 "geoname_id" : 2293801,
269 "names" : {
270 "en" : "Yendi"
271 }
272 },
273 "continent" : {
274 "code" : "AF",
275 "geoname_id" : 6255146,
276 "names" : {
277 "de" : "Afrika",
278 "en" : "Africa",
279 "es" : "África",
280 "fr" : "Afrique",
281 "ja" : "アフリカ",
282 "pt-BR" : "África",
283 "ru" : "Африка",
284 "zh-CN" : "非洲"
285 }
286 },
287 "country" : {
288 "geoname_id" : 2300660,
289 "iso_code" : "GH",
290 "names" : {
291 "de" : "Ghana",
292 "en" : "Ghana",
293 "es" : "Ghana",
294 "fr" : "Ghana",
295 "ja" : "ガーナ共和国",
296 "pt-BR" : "Gana",
297 "ru" : "Гана",
298 "zh-CN" : "加纳"
299 }
300 },
301 "location" : {
302 "accuracy_radius" : 20,
303 "latitude" : 9.4333,
304 "longitude" : -0.0167,
305 "time_zone" : "Africa/Accra"
306 },
307 "registered_country" : {
308 "geoname_id" : 2300660,
309 "iso_code" : "GH",
310 "names" : {
311 "de" : "Ghana",
312 "en" : "Ghana",
313 "es" : "Ghana",
314 "fr" : "Ghana",
315 "ja" : "ガーナ共和国",
316 "pt-BR" : "Gana",
317 "ru" : "Гана",
318 "zh-CN" : "加纳"
319 }
320 },
321 "subdivisions" : [
322 {
323 "geoname_id" : 2297169,
324 "iso_code" : "NP",
325 "names" : {
326 "en" : "Northern Region"
327 }
328 }
329 ]
330 }
331 },
332 {
333 "::64.17.254.216/125" : {
334 "city" : {
335 "confidence" : 40,
336 "geoname_id" : 5368361,
337 "names" : {
338 "de" : "Los Angeles",
339 "en" : "Los Angeles",
340 "es" : "Los Ángeles",
341 "fr" : "Los Angeles",
342 "ja" : "ロサンゼルス",
343 "pt-BR" : "Los Angeles",
344 "ru" : "Лос-Анджелес",
345 "zh-CN" : "洛杉矶"
346 }
347 },
348 "continent" : {
349 "code" : "NA",
350 "geoname_id" : 6255149,
351 "names" : {
352 "de" : "Nordamerika",
353 "en" : "North America",
354 "es" : "Norteamérica",
355 "fr" : "Amérique du Nord",
356 "ja" : "北アメリカ",
357 "pt-BR" : "América do Norte",
358 "ru" : "Северная Америка",
359 "zh-CN" : "北美洲"
360 }
361 },
362 "country" : {
363 "confidence" : 99,
364 "geoname_id" : 6252001,
365 "iso_code" : "US",
366 "names" : {
367 "de" : "USA",
368 "en" : "United States",
369 "es" : "Estados Unidos",
370 "fr" : "États-Unis",
371 "ja" : "アメリカ合衆国",
372 "pt-BR" : "Estados Unidos",
373 "ru" : "США",
374 "zh-CN" : "美国"
375 }
376 },
377 "location" : {
378 "accuracy_radius" : 20,
379 "latitude" : 34.0544,
380 "longitude" : -118.244,
381 "metro_code" : 803,
382 "time_zone" : "America/Los_Angeles"
383 },
384 "postal" : {
385 "code" : "90009",
386 "confidence" : 1
387 },
388 "registered_country" : {
389 "geoname_id" : 6252001,
390 "iso_code" : "US",
391 "names" : {
392 "de" : "USA",
393 "en" : "United States",
394 "es" : "Estados Unidos",
395 "fr" : "États-Unis",
396 "ja" : "アメリカ合衆国",
397 "pt-BR" : "Estados Unidos",
398 "ru" : "США",
399 "zh-CN" : "美国"
400 }
401 },
402 "subdivisions" : [
403 {
404 "confidence" : 90,
405 "geoname_id" : 5332921,
406 "iso_code" : "CA",
407 "names" : {
408 "de" : "Kalifornien",
409 "en" : "California",
410 "es" : "California",
411 "fr" : "Californie",
412 "ja" : "カリフォルニア州",
413 "pt-BR" : "Califórnia",
414 "ru" : "Калифорния",
415 "zh-CN" : "加利福尼亚州"
416 }
417 }
418 ],
419 "traits" : {
420 "autonomous_system_number" : 33224,
421 "autonomous_system_organization" : "Towerstream I, Inc.",
422 "connection_type" : "Corporate",
423 "isp" : "Towerstream I",
424 "organization" : "Towerstream I",
425 "user_type" : "business"
426 }
427 }
428 },
429 {
430 "::65.116.3.80/126" : {
431 "city" : {
432 "confidence" : 40,
433 "geoname_id" : 4699066,
434 "names" : {
435 "en" : "Houston",
436 "fr" : "Houston",
437 "ja" : "ヒューストン",
438 "pt-BR" : "Houston",
439 "ru" : "Хьюстон",
440 "zh-CN" : "休斯敦"
441 }
442 },
443 "continent" : {
444 "code" : "NA",
445 "geoname_id" : 6255149,
446 "names" : {
447 "de" : "Nordamerika",
448 "en" : "North America",
449 "es" : "Norteamérica",
450 "fr" : "Amérique du Nord",
451 "ja" : "北アメリカ",
452 "pt-BR" : "América do Norte",
453 "ru" : "Северная Америка",
454 "zh-CN" : "北美洲"
455 }
456 },
457 "country" : {
458 "confidence" : 99,
459 "geoname_id" : 6252001,
460 "iso_code" : "US",
461 "names" : {
462 "de" : "USA",
463 "en" : "United States",
464 "es" : "Estados Unidos",
465 "fr" : "États-Unis",
466 "ja" : "アメリカ合衆国",
467 "pt-BR" : "Estados Unidos",
468 "ru" : "США",
469 "zh-CN" : "美国"
470 }
471 },
472 "location" : {
473 "accuracy_radius" : 500,
474 "latitude" : 29.7702,
475 "longitude" : -95.3628,
476 "metro_code" : 618,
477 "time_zone" : "America/Chicago"
478 },
479 "postal" : {
480 "code" : "77002",
481 "confidence" : 1
482 },
483 "registered_country" : {
484 "geoname_id" : 6252001,
485 "iso_code" : "US",
486 "names" : {
487 "de" : "USA",
488 "en" : "United States",
489 "es" : "Estados Unidos",
490 "fr" : "États-Unis",
491 "ja" : "アメリカ合衆国",
492 "pt-BR" : "Estados Unidos",
493 "ru" : "США",
494 "zh-CN" : "美国"
495 }
496 },
497 "subdivisions" : [
498 {
499 "confidence" : 90,
500 "geoname_id" : 4736286,
501 "iso_code" : "TX",
502 "names" : {
503 "en" : "Texas",
504 "es" : "Texas",
505 "fr" : "Texas",
506 "ja" : "テキサス州",
507 "ru" : "Техас",
508 "zh-CN" : "德克萨斯州"
509 }
510 }
511 ],
512 "traits" : {
513 "autonomous_system_number" : 209,
514 "autonomous_system_organization" : "Qwest Communications Company, LLC",
515 "connection_type" : "Cable/DSL",
516 "domain" : "qwest.net",
517 "isp" : "CenturyLink",
518 "organization" : "CenturyLink",
519 "user_type" : "residential"
520 }
521 }
522 },
523 {
524 "::66.92.181.240/124" : {
525 "city" : {
526 "confidence" : 20,
527 "geoname_id" : 5392171,
528 "names" : {
529 "de" : "San José",
530 "en" : "San Jose",
531 "es" : "San José",
532 "fr" : "San José",
533 "ja" : "サンノゼ",
534 "pt-BR" : "San José",
535 "ru" : "Сан-Хосе"
536 }
537 },
538 "continent" : {
539 "code" : "NA",
540 "geoname_id" : 6255149,
541 "names" : {
542 "de" : "Nordamerika",
543 "en" : "North America",
544 "es" : "Norteamérica",
545 "fr" : "Amérique du Nord",
546 "ja" : "北アメリカ",
547 "pt-BR" : "América do Norte",
548 "ru" : "Северная Америка",
549 "zh-CN" : "北美洲"
550 }
551 },
552 "country" : {
553 "confidence" : 99,
554 "geoname_id" : 6252001,
555 "iso_code" : "US",
556 "names" : {
557 "de" : "USA",
558 "en" : "United States",
559 "es" : "Estados Unidos",
560 "fr" : "États-Unis",
561 "ja" : "アメリカ合衆国",
562 "pt-BR" : "Estados Unidos",
563 "ru" : "США",
564 "zh-CN" : "美国"
565 }
566 },
567 "location" : {
568 "accuracy_radius" : 1000,
569 "latitude" : 37.3874,
570 "longitude" : -121.9024,
571 "metro_code" : 807,
572 "time_zone" : "America/Los_Angeles"
573 },
574 "postal" : {
575 "code" : "95131",
576 "confidence" : 10
577 },
578 "registered_country" : {
579 "geoname_id" : 6252001,
580 "iso_code" : "US",
581 "names" : {
582 "de" : "USA",
583 "en" : "United States",
584 "es" : "Estados Unidos",
585 "fr" : "États-Unis",
586 "ja" : "アメリカ合衆国",
587 "pt-BR" : "Estados Unidos",
588 "ru" : "США",
589 "zh-CN" : "美国"
590 }
591 },
592 "subdivisions" : [
593 {
594 "confidence" : 60,
595 "geoname_id" : 5332921,
596 "iso_code" : "CA",
597 "names" : {
598 "de" : "Kalifornien",
599 "en" : "California",
600 "es" : "California",
601 "fr" : "Californie",
602 "ja" : "カリフォルニア州",
603 "pt-BR" : "Califórnia",
604 "ru" : "Калифорния",
605 "zh-CN" : "加利福尼亚州"
606 }
607 }
608 ],
609 "traits" : {
610 "autonomous_system_number" : 18566,
611 "autonomous_system_organization" : "MegaPath Corporation",
612 "connection_type" : "Cable/DSL",
613 "domain" : "speakeasy.net",
614 "isp" : "Speakeasy",
615 "organization" : "Vikco Insurance",
616 "user_type" : "government"
617 }
618 }
619 },
620 {
621 "::67.43.156.0/120" : {
622 "continent" : {
623 "code" : "AS",
624 "geoname_id" : 6255147,
625 "names" : {
626 "de" : "Asien",
627 "en" : "Asia",
628 "es" : "Asia",
629 "fr" : "Asie",
630 "ja" : "アジア",
631 "pt-BR" : "Ásia",
632 "ru" : "Азия",
633 "zh-CN" : "亚洲"
634 }
635 },
636 "country" : {
637 "confidence" : 99,
638 "geoname_id" : 1252634,
639 "iso_code" : "BT",
640 "names" : {
641 "de" : "Bhutan",
642 "en" : "Bhutan",
643 "es" : "Bután",
644 "fr" : "Bhutan",
645 "ja" : "ブータン王国",
646 "pt-BR" : "Butão",
647 "ru" : "Бутан",
648 "zh-CN" : "不丹"
649 }
650 },
651 "location" : {
652 "accuracy_radius" : 534,
653 "latitude" : 27.5,
654 "longitude" : 90.5,
655 "time_zone" : "Asia/Thimphu"
656 },
657 "registered_country" : {
658 "geoname_id" : 798549,
659 "is_in_european_union" : true,
660 "iso_code" : "RO",
661 "names" : {
662 "de" : "Rumänien",
663 "en" : "Romania",
664 "es" : "Rumanía",
665 "fr" : "Roumanie",
666 "ja" : "ルーマニア",
667 "pt-BR" : "Romênia",
668 "ru" : "Румыния",
669 "zh-CN" : "罗马尼亚"
670 }
671 },
672 "traits" : {
673 "autonomous_system_number" : 35908,
674 "domain" : "shoesfin.NET",
675 "is_anonymous_proxy" : true,
676 "isp" : "Loud Packet",
677 "organization" : "zudoarichikito_",
678 "user_type" : "search_engine_spider"
679 }
680 }
681 },
682 {
683 "::74.209.24.0/116" : {
684 "city" : {
685 "confidence" : 11,
686 "geoname_id" : 5112335,
687 "names" : {
688 "en" : "Chatham"
689 }
690 },
691 "continent" : {
692 "code" : "NA",
693 "geoname_id" : 6255149,
694 "names" : {
695 "de" : "Nordamerika",
696 "en" : "North America",
697 "es" : "Norteamérica",
698 "fr" : "Amérique du Nord",
699 "ja" : "北アメリカ",
700 "pt-BR" : "América do Norte",
701 "ru" : "Северная Америка",
702 "zh-CN" : "北美洲"
703 }
704 },
705 "country" : {
706 "confidence" : 99,
707 "geoname_id" : 6252001,
708 "iso_code" : "US",
709 "names" : {
710 "de" : "USA",
711 "en" : "United States",
712 "es" : "Estados Unidos",
713 "fr" : "États-Unis",
714 "ja" : "アメリカ合衆国",
715 "pt-BR" : "Estados Unidos",
716 "ru" : "США",
717 "zh-CN" : "美国"
718 }
719 },
720 "location" : {
721 "accuracy_radius" : 27,
722 "latitude" : 42.3478,
723 "longitude" : -73.5549,
724 "metro_code" : 532,
725 "time_zone" : "America/New_York"
726 },
727 "postal" : {
728 "code" : "12037",
729 "confidence" : 11
730 },
731 "registered_country" : {
732 "geoname_id" : 6252001,
733 "iso_code" : "US",
734 "names" : {
735 "de" : "USA",
736 "en" : "United States",
737 "es" : "Estados Unidos",
738 "fr" : "États-Unis",
739 "ja" : "アメリカ合衆国",
740 "pt-BR" : "Estados Unidos",
741 "ru" : "США",
742 "zh-CN" : "美国"
743 }
744 },
745 "subdivisions" : [
746 {
747 "confidence" : 93,
748 "geoname_id" : 5128638,
749 "iso_code" : "NY",
750 "names" : {
751 "de" : "New York",
752 "en" : "New York",
753 "es" : "Nueva York",
754 "fr" : "New York",
755 "ja" : "ニューヨーク州",
756 "pt-BR" : "Nova Iorque",
757 "ru" : "Нью-Йорк",
758 "zh-CN" : "纽约州"
759 }
760 }
761 ],
762 "traits" : {
763 "autonomous_system_number" : 14671,
764 "autonomous_system_organization" : "FairPoint Communications",
765 "connection_type" : "Cable/DSL",
766 "domain" : "frpt.net",
767 "is_anonymous_proxy" : true,
768 "is_legitimate_proxy" : true,
769 "is_satellite_provider" : true,
770 "isp" : "Fairpoint Communications",
771 "organization" : "Fairpoint Communications",
772 "user_type" : "residential"
773 }
774 }
775 },
776 {
777 "::75.209.24.0/128" : {
778 "city" : {
779 "confidence" : 11,
780 "geoname_id" : 5112335,
781 "names" : {
782 "en" : "Chatham"
783 }
784 },
785 "continent" : {
786 "code" : "NA",
787 "geoname_id" : 6255149,
788 "names" : {
789 "de" : "Nordamerika",
790 "en" : "North America",
791 "es" : "Norteamérica",
792 "fr" : "Amérique du Nord",
793 "ja" : "北アメリカ",
794 "pt-BR" : "América do Norte",
795 "ru" : "Северная Америка",
796 "zh-CN" : "北美洲"
797 }
798 },
799 "country" : {
800 "confidence" : 99,
801 "geoname_id" : 6252001,
802 "iso_code" : "US",
803 "names" : {
804 "de" : "USA",
805 "en" : "United States",
806 "es" : "Estados Unidos",
807 "fr" : "États-Unis",
808 "ja" : "アメリカ合衆国",
809 "pt-BR" : "Estados Unidos",
810 "ru" : "США",
811 "zh-CN" : "美国"
812 }
813 },
814 "location" : {
815 "accuracy_radius" : 27,
816 "latitude" : 42.3478,
817 "longitude" : -73.5549,
818 "metro_code" : 532,
819 "time_zone" : "America/New_York"
820 },
821 "postal" : {
822 "code" : "12037",
823 "confidence" : 11
824 },
825 "registered_country" : {
826 "geoname_id" : 6252001,
827 "iso_code" : "US",
828 "names" : {
829 "de" : "USA",
830 "en" : "United States",
831 "es" : "Estados Unidos",
832 "fr" : "États-Unis",
833 "ja" : "アメリカ合衆国",
834 "pt-BR" : "Estados Unidos",
835 "ru" : "США",
836 "zh-CN" : "美国"
837 }
838 },
839 "subdivisions" : [
840 {
841 "confidence" : 93,
842 "geoname_id" : 5128638,
843 "iso_code" : "NY",
844 "names" : {
845 "de" : "New York",
846 "en" : "New York",
847 "es" : "Nueva York",
848 "fr" : "New York",
849 "ja" : "ニューヨーク州",
850 "pt-BR" : "Nova Iorque",
851 "ru" : "Нью-Йорк",
852 "zh-CN" : "纽约州"
853 }
854 }
855 ],
856 "traits" : {
857 "autonomous_system_number" : 14671,
858 "autonomous_system_organization" : "FairPoint Communications",
859 "connection_type" : "Cable/DSL",
860 "domain" : "frpt.net",
861 "is_anonymous_proxy" : true,
862 "is_legitimate_proxy" : true,
863 "is_satellite_provider" : true,
864 "isp" : "Fairpoint Communications",
865 "organization" : "Fairpoint Communications",
866 "user_type" : "residential"
867 }
868 }
869 },
870 {
871 "::81.2.69.142/127" : {
872 "city" : {
873 "confidence" : 50,
874 "geoname_id" : 2643743,
875 "names" : {
876 "de" : "London",
877 "en" : "London",
878 "es" : "Londres",
879 "fr" : "Londres",
880 "ja" : "ロンドン",
881 "pt-BR" : "Londres",
882 "ru" : "Лондон"
883 }
884 },
885 "continent" : {
886 "code" : "EU",
887 "geoname_id" : 6255148,
888 "names" : {
889 "de" : "Europa",
890 "en" : "Europe",
891 "es" : "Europa",
892 "fr" : "Europe",
893 "ja" : "ヨーロッパ",
894 "pt-BR" : "Europa",
895 "ru" : "Европа",
896 "zh-CN" : "欧洲"
897 }
898 },
899 "country" : {
900 "confidence" : 95,
901 "geoname_id" : 2635167,
902 "is_in_european_union" : true,
903 "iso_code" : "GB",
904 "names" : {
905 "de" : "Vereinigtes Königreich",
906 "en" : "United Kingdom",
907 "es" : "Reino Unido",
908 "fr" : "Royaume-Uni",
909 "ja" : "イギリス",
910 "pt-BR" : "Reino Unido",
911 "ru" : "Великобритания",
912 "zh-CN" : "英国"
913 }
914 },
915 "location" : {
916 "accuracy_radius" : 10,
917 "latitude" : 51.5142,
918 "longitude" : -0.0931,
919 "time_zone" : "Europe/London"
920 },
921 "registered_country" : {
922 "geoname_id" : 6252001,
923 "iso_code" : "US",
924 "names" : {
925 "de" : "USA",
926 "en" : "United States",
927 "es" : "Estados Unidos",
928 "fr" : "États-Unis",
929 "ja" : "アメリカ合衆国",
930 "pt-BR" : "Estados Unidos",
931 "ru" : "США",
932 "zh-CN" : "美国"
933 }
934 },
935 "subdivisions" : [
936 {
937 "confidence" : 70,
938 "geoname_id" : 6269131,
939 "iso_code" : "ENG",
940 "names" : {
941 "en" : "England",
942 "es" : "Inglaterra",
943 "fr" : "Angleterre",
944 "pt-BR" : "Inglaterra"
945 }
946 }
947 ],
948 "traits" : {
949 "domain" : "in-addr.arpa"
950 }
951 }
952 },
953 {
954 "::81.2.69.160/123" : {
955 "city" : {
956 "confidence" : 42,
957 "geoname_id" : 2643743,
958 "names" : {
959 "de" : "London",
960 "en" : "London",
961 "es" : "Londres",
962 "fr" : "Londres",
963 "ja" : "ロンドン",
964 "pt-BR" : "Londres",
965 "ru" : "Лондон"
966 }
967 },
968 "continent" : {
969 "code" : "EU",
970 "geoname_id" : 6255148,
971 "names" : {
972 "de" : "Europa",
973 "en" : "Europe",
974 "es" : "Europa",
975 "fr" : "Europe",
976 "ja" : "ヨーロッパ",
977 "pt-BR" : "Europa",
978 "ru" : "Европа",
979 "zh-CN" : "欧洲"
980 }
981 },
982 "country" : {
983 "confidence" : 99,
984 "geoname_id" : 2635167,
985 "is_in_european_union" : true,
986 "iso_code" : "GB",
987 "names" : {
988 "de" : "Vereinigtes Königreich",
989 "en" : "United Kingdom",
990 "es" : "Reino Unido",
991 "fr" : "Royaume-Uni",
992 "ja" : "イギリス",
993 "pt-BR" : "Reino Unido",
994 "ru" : "Великобритания",
995 "zh-CN" : "英国"
996 }
997 },
998 "location" : {
999 "accuracy_radius" : 100,
1000 "latitude" : 51.5142,
1001 "longitude" : -0.0931,
1002 "time_zone" : "Europe/London"
1003 },
1004 "registered_country" : {
1005 "geoname_id" : 6252001,
1006 "iso_code" : "US",
1007 "names" : {
1008 "de" : "USA",
1009 "en" : "United States",
1010 "es" : "Estados Unidos",
1011 "fr" : "États-Unis",
1012 "ja" : "アメリカ合衆国",
1013 "pt-BR" : "Estados Unidos",
1014 "ru" : "США",
1015 "zh-CN" : "美国"
1016 }
1017 },
1018 "subdivisions" : [
1019 {
1020 "confidence" : 42,
1021 "geoname_id" : 6269131,
1022 "iso_code" : "ENG",
1023 "names" : {
1024 "en" : "England",
1025 "es" : "Inglaterra",
1026 "fr" : "Angleterre",
1027 "pt-BR" : "Inglaterra"
1028 }
1029 }
1030 ],
1031 "traits" : {
1032 "domain" : "in-addr.arpa",
1033 "isp" : "Andrews & Arnold Ltd",
1034 "organization" : "STONEHOUSE office network",
1035 "user_type" : "government"
1036 }
1037 }
1038 },
1039 {
1040 "::89.160.20.112/124" : {
1041 "city" : {
1042 "confidence" : 51,
1043 "geoname_id" : 2694762,
1044 "names" : {
1045 "de" : "Linköping",
1046 "en" : "Linköping",
1047 "fr" : "Linköping",
1048 "ja" : "リンシェーピング",
1049 "zh-CN" : "林雪平"
1050 }
1051 },
1052 "continent" : {
1053 "code" : "EU",
1054 "geoname_id" : 6255148,
1055 "names" : {
1056 "de" : "Europa",
1057 "en" : "Europe",
1058 "es" : "Europa",
1059 "fr" : "Europe",
1060 "ja" : "ヨーロッパ",
1061 "pt-BR" : "Europa",
1062 "ru" : "Европа",
1063 "zh-CN" : "欧洲"
1064 }
1065 },
1066 "country" : {
1067 "confidence" : 99,
1068 "geoname_id" : 2661886,
1069 "is_in_european_union" : true,
1070 "iso_code" : "SE",
1071 "names" : {
1072 "de" : "Schweden",
1073 "en" : "Sweden",
1074 "es" : "Suecia",
1075 "fr" : "Suède",
1076 "ja" : "スウェーデン王国",
1077 "pt-BR" : "Suécia",
1078 "ru" : "Швеция",
1079 "zh-CN" : "瑞典"
1080 }
1081 },
1082 "location" : {
1083 "accuracy_radius" : 76,
1084 "latitude" : 58.4167,
1085 "longitude" : 15.6167,
1086 "time_zone" : "Europe/Stockholm"
1087 },
1088 "registered_country" : {
1089 "geoname_id" : 2921044,
1090 "is_in_european_union" : true,
1091 "iso_code" : "DE",
1092 "names" : {
1093 "de" : "Deutschland",
1094 "en" : "Germany",
1095 "es" : "Alemania",
1096 "fr" : "Allemagne",
1097 "ja" : "ドイツ連邦共和国",
1098 "pt-BR" : "Alemanha",
1099 "ru" : "Германия",
1100 "zh-CN" : "德国"
1101 }
1102 },
1103 "subdivisions" : [
1104 {
1105 "confidence" : 51,
1106 "geoname_id" : 2685867,
1107 "iso_code" : "E",
1108 "names" : {
1109 "en" : "Östergötland County",
1110 "fr" : "Comté d'Östergötland"
1111 }
1112 }
1113 ],
1114 "traits" : {
1115 "autonomous_system_number" : 29518,
1116 "autonomous_system_organization" : "Bredband2 AB",
1117 "connection_type" : "Corporate",
1118 "domain" : "bredband2.com",
1119 "isp" : "Bredband2 AB",
1120 "organization" : "Bevtec",
1121 "user_type" : "government"
1122 }
1123 }
1124 },
1125 {
1126 "::128.101.101.101/128" : {
1127 "city" : {
1128 "confidence" : 50,
1129 "geoname_id" : 5037649,
1130 "names" : {
1131 "de" : "Minneapolis",
1132 "en" : "Minneapolis",
1133 "es" : "Mineápolis",
1134 "fr" : "Minneapolis",
1135 "ja" : "ミネアポリス",
1136 "pt-BR" : "Minneapolis",
1137 "ru" : "Миннеаполис",
1138 "zh-CN" : "明尼阿波利斯"
1139 }
1140 },
1141 "continent" : {
1142 "code" : "NA",
1143 "geoname_id" : 6255149,
1144 "names" : {
1145 "de" : "Nordamerika",
1146 "en" : "North America",
1147 "es" : "Norteamérica",
1148 "fr" : "Amérique du Nord",
1149 "ja" : "北アメリカ",
1150 "pt-BR" : "América do Norte",
1151 "ru" : "Северная Америка",
1152 "zh-CN" : "北美洲"
1153 }
1154 },
1155 "country" : {
1156 "confidence" : 95,
1157 "geoname_id" : 6252001,
1158 "iso_code" : "US",
1159 "names" : {
1160 "de" : "USA",
1161 "en" : "United States",
1162 "es" : "Estados Unidos",
1163 "fr" : "États-Unis",
1164 "ja" : "アメリカ合衆国",
1165 "pt-BR" : "Estados Unidos",
1166 "ru" : "Сша",
1167 "zh-CN" : "美国"
1168 }
1169 },
1170 "location" : {
1171 "accuracy_radius" : 3,
1172 "latitude" : 44.9759,
1173 "longitude" : -93.2166,
1174 "metro_code" : 613,
1175 "time_zone" : "America/Chicago"
1176 },
1177 "postal" : {
1178 "code" : "55414",
1179 "confidence" : 20
1180 },
1181 "registered_country" : {
1182 "geoname_id" : 6252001,
1183 "iso_code" : "US",
1184 "names" : {
1185 "de" : "USA",
1186 "en" : "United States",
1187 "es" : "Estados Unidos",
1188 "fr" : "États-Unis",
1189 "ja" : "アメリカ合衆国",
1190 "pt-BR" : "Estados Unidos",
1191 "ru" : "Сша",
1192 "zh-CN" : "美国"
1193 }
1194 },
1195 "subdivisions" : [
1196 {
1197 "confidence" : 70,
1198 "geoname_id" : 5037779,
1199 "iso_code" : "MN",
1200 "names" : {
1201 "en" : "Minnesota",
1202 "es" : "Minnesota",
1203 "ja" : "ミネソタ州",
1204 "ru" : "Миннесота"
1205 }
1206 }
1207 ],
1208 "traits" : {
1209 "autonomous_system_number" : 2313,
1210 "autonomous_system_organization" : "Precision AS Org",
1211 "isp" : "Precision ISP",
1212 "organization" : "Precision Org"
1213 }
1214 }
1215 },
1216 {
1217 "::143.217.214.0/120" : {
1218 "city" : {
1219 "confidence" : 50,
1220 "geoname_id" : 1566083,
1221 "names" : {
1222 "de" : "Ho-Chi-Minh-Stadt",
1223 "en" : "Ho Chi Minh City",
1224 "es" : "Ciudad Ho Chi Minh",
1225 "fr" : "HCMV",
1226 "ja" : "ホーチミン市",
1227 "pt-BR" : "Cidade de Ho Chi Minh",
1228 "ru" : "Хошимин",
1229 "zh-CN" : "胡志明市"
1230 }
1231 },
1232 "continent" : {
1233 "code" : "AS",
1234 "geoname_id" : 6255147,
1235 "names" : {
1236 "de" : "Asien",
1237 "en" : "Asia",
1238 "es" : "Asia",
1239 "fr" : "Asie",
1240 "ja" : "アジア",
1241 "pt-BR" : "Ásia",
1242 "ru" : "Азия",
1243 "zh-CN" : "亚洲"
1244 }
1245 },
1246 "country" : {
1247 "confidence" : 99,
1248 "geoname_id" : 1562822,
1249 "iso_code" : "VN",
1250 "names" : {
1251 "de" : "Vietnam",
1252 "en" : "Vietnam",
1253 "es" : "Vietnam",
1254 "fr" : "Vietnam",
1255 "ja" : "ベトナム",
1256 "pt-BR" : "Vietnã",
1257 "ru" : "Вьетнам",
1258 "zh-CN" : "越南"
1259 }
1260 },
1261 "location" : {
1262 "accuracy_radius" : 500,
1263 "latitude" : 10.8142,
1264 "longitude" : 106.6438,
1265 "time_zone" : "Asia/Ho_Chi_Minh"
1266 },
1267 "registered_country" : {
1268 "geoname_id" : 1562822,
1269 "iso_code" : "VN",
1270 "names" : {
1271 "de" : "Vietnam",
1272 "en" : "Vietnam",
1273 "es" : "Vietnam",
1274 "fr" : "Vietnam",
1275 "ja" : "ベトナム",
1276 "pt-BR" : "Vietnã",
1277 "ru" : "Вьетнам",
1278 "zh-CN" : "越南"
1279 }
1280 },
1281 "subdivisions" : [
1282 {
1283 "confidence" : 60,
1284 "geoname_id" : 1580578,
1285 "iso_code" : "SG",
1286 "names" : {
1287 "de" : "Ho-Chi-Minh-Stadt",
1288 "en" : "Ho Chi Minh City",
1289 "es" : "Ciudad Ho Chi Minh",
1290 "fr" : "Saigon",
1291 "ja" : "ホーチミン市",
1292 "pt-BR" : "Cidade de Ho Chi Minh",
1293 "ru" : "Хо Ши Мин",
1294 "zh-CN" : "胡志明市"
1295 }
1296 }
1297 ],
1298 "traits" : {
1299 "autonomous_system_number" : 18403,
1300 "autonomous_system_organization" : "The Corporation for Financing & Promoting Technology",
1301 "connection_type" : "Cable/DSL",
1302 "isp" : "The Corporation for Financing and Promoting Techno",
1303 "organization" : "FPT Telecom Company",
1304 "user_type" : "business"
1305 }
1306 }
1307 },
1308 {
1309 "::175.16.199.0/120" : {
1310 "city" : {
1311 "confidence" : 50,
1312 "geoname_id" : 2038180,
1313 "names" : {
1314 "de" : "Chángchūn",
1315 "en" : "Changchun",
1316 "fr" : "Changchun",
1317 "ja" : "長春市",
1318 "ru" : "Чанчунь",
1319 "zh-CN" : "长春"
1320 }
1321 },
1322 "continent" : {
1323 "code" : "AS",
1324 "geoname_id" : 6255147,
1325 "names" : {
1326 "de" : "Asien",
1327 "en" : "Asia",
1328 "es" : "Asia",
1329 "fr" : "Asie",
1330 "ja" : "アジア",
1331 "pt-BR" : "Ásia",
1332 "ru" : "Азия",
1333 "zh-CN" : "亚洲"
1334 }
1335 },
1336 "country" : {
1337 "confidence" : 95,
1338 "geoname_id" : 1814991,
1339 "iso_code" : "CN",
1340 "names" : {
1341 "de" : "China",
1342 "en" : "China",
1343 "es" : "China",
1344 "fr" : "Chine",
1345 "ja" : "中国",
1346 "pt-BR" : "China",
1347 "ru" : "Китай",
1348 "zh-CN" : "中国"
1349 }
1350 },
1351 "location" : {
1352 "accuracy_radius" : 100,
1353 "latitude" : 43.88,
1354 "longitude" : 125.3228,
1355 "time_zone" : "Asia/Harbin"
1356 },
1357 "registered_country" : {
1358 "geoname_id" : 1814991,
1359 "iso_code" : "CN",
1360 "names" : {
1361 "de" : "China",
1362 "en" : "China",
1363 "es" : "China",
1364 "fr" : "Chine",
1365 "ja" : "中国",
1366 "pt-BR" : "China",
1367 "ru" : "Китай",
1368 "zh-CN" : "中国"
1369 }
1370 },
1371 "subdivisions" : [
1372 {
1373 "confidence" : 70,
1374 "geoname_id" : 2036500,
1375 "iso_code" : "22",
1376 "names" : {
1377 "en" : "Jilin Sheng",
1378 "zh-CN" : "吉林"
1379 }
1380 }
1381 ],
1382 "traits" : {
1383 "user_type" : "dialup"
1384 }
1385 }
1386 },
1387 {
1388 "::188.35.144.0/119" : {
1389 "traits" : {
1390 "organization" : "CityLink Ltd"
1391 }
1392 }
1393 },
1394 {
1395 "::202.196.224.0/116" : {
1396 "continent" : {
1397 "code" : "AS",
1398 "geoname_id" : 6255147,
1399 "names" : {
1400 "de" : "Asien",
1401 "en" : "Asia",
1402 "es" : "Asia",
1403 "fr" : "Asie",
1404 "ja" : "アジア",
1405 "pt-BR" : "Ásia",
1406 "ru" : "Азия",
1407 "zh-CN" : "亚洲"
1408 }
1409 },
1410 "country" : {
1411 "confidence" : 95,
1412 "geoname_id" : 1694008,
1413 "iso_code" : "PH",
1414 "names" : {
1415 "de" : "Philippinen",
1416 "en" : "Philippines",
1417 "es" : "Filipinas",
1418 "fr" : "Philippines",
1419 "ja" : "フィリピン共和国",
1420 "pt-BR" : "Filipinas",
1421 "ru" : "Филиппины",
1422 "zh-CN" : "菲律宾"
1423 }
1424 },
1425 "location" : {
1426 "accuracy_radius" : 121,
1427 "latitude" : 13,
1428 "longitude" : 122,
1429 "time_zone" : "Asia/Manila"
1430 },
1431 "postal" : {
1432 "code" : "34021",
1433 "confidence" : 20
1434 },
1435 "registered_country" : {
1436 "geoname_id" : 1694008,
1437 "iso_code" : "PH",
1438 "names" : {
1439 "de" : "Philippinen",
1440 "en" : "Philippines",
1441 "es" : "Filipinas",
1442 "fr" : "Philippines",
1443 "ja" : "フィリピン共和国",
1444 "pt-BR" : "Filipinas",
1445 "ru" : "Филиппины",
1446 "zh-CN" : "菲律宾"
1447 }
1448 },
1449 "represented_country" : {
1450 "geoname_id" : 6252001,
1451 "iso_code" : "US",
1452 "names" : {
1453 "de" : "USA",
1454 "en" : "United States",
1455 "es" : "Estados Unidos",
1456 "fr" : "États-Unis",
1457 "ja" : "アメリカ合衆国",
1458 "pt-BR" : "Estados Unidos",
1459 "ru" : "США",
1460 "zh-CN" : "美国"
1461 },
1462 "type" : "military"
1463 }
1464 }
1465 },
1466 {
1467 "::208.110.217.113/128" : {
1468 "city" : {
1469 "confidence" : 20,
1470 "geoname_id" : 4734825,
1471 "names" : {
1472 "en" : "Sugar Land",
1473 "ja" : "シュガーランド",
1474 "pt-BR" : "Sugar Land",
1475 "ru" : "Шугар-Ленд"
1476 }
1477 },
1478 "continent" : {
1479 "code" : "NA",
1480 "geoname_id" : 6255149,
1481 "names" : {
1482 "de" : "Nordamerika",
1483 "en" : "North America",
1484 "es" : "Norteamérica",
1485 "fr" : "Amérique du Nord",
1486 "ja" : "北アメリカ",
1487 "pt-BR" : "América do Norte",
1488 "ru" : "Северная Америка",
1489 "zh-CN" : "北美洲"
1490 }
1491 },
1492 "country" : {
1493 "confidence" : 99,
1494 "geoname_id" : 6252001,
1495 "iso_code" : "US",
1496 "names" : {
1497 "de" : "USA",
1498 "en" : "United States",
1499 "es" : "Estados Unidos",
1500 "fr" : "États-Unis",
1501 "ja" : "アメリカ合衆国",
1502 "pt-BR" : "Estados Unidos",
1503 "ru" : "США",
1504 "zh-CN" : "美国"
1505 }
1506 },
1507 "location" : {
1508 "accuracy_radius" : 1000,
1509 "latitude" : 29.6197,
1510 "longitude" : -95.635,
1511 "metro_code" : 618,
1512 "time_zone" : "America/Chicago"
1513 },
1514 "postal" : {
1515 "code" : "77487",
1516 "confidence" : 1
1517 },
1518 "registered_country" : {
1519 "geoname_id" : 6252001,
1520 "iso_code" : "US",
1521 "names" : {
1522 "de" : "USA",
1523 "en" : "United States",
1524 "es" : "Estados Unidos",
1525 "fr" : "États-Unis",
1526 "ja" : "アメリカ合衆国",
1527 "pt-BR" : "Estados Unidos",
1528 "ru" : "США",
1529 "zh-CN" : "美国"
1530 }
1531 },
1532 "subdivisions" : [
1533 {
1534 "confidence" : 60,
1535 "geoname_id" : 4736286,
1536 "iso_code" : "TX",
1537 "names" : {
1538 "en" : "Texas",
1539 "es" : "Texas",
1540 "fr" : "Texas",
1541 "ja" : "テキサス州",
1542 "ru" : "Техас",
1543 "zh-CN" : "德克萨斯州"
1544 }
1545 }
1546 ],
1547 "traits" : {
1548 "autonomous_system_number" : 11025,
1549 "autonomous_system_organization" : "Comcast Cable Communications, LLC",
1550 "connection_type" : "Cable/DSL",
1551 "domain" : "comcastbusiness.net",
1552 "isp" : "Comcast Business",
1553 "organization" : "Comcast Business",
1554 "user_type" : "business"
1555 }
1556 }
1557 },
1558 {
1559 "::216.160.83.56/125" : {
1560 "city" : {
1561 "confidence" : 40,
1562 "geoname_id" : 5803556,
1563 "names" : {
1564 "en" : "Milton",
1565 "ru" : "Мильтон"
1566 }
1567 },
1568 "continent" : {
1569 "code" : "NA",
1570 "geoname_id" : 6255149,
1571 "names" : {
1572 "de" : "Nordamerika",
1573 "en" : "North America",
1574 "es" : "América del Norte",
1575 "fr" : "Amérique du Nord",
1576 "ja" : "北アメリカ",
1577 "pt-BR" : "América do Norte",
1578 "ru" : "Северная Америка",
1579 "zh-CN" : "北美洲"
1580 }
1581 },
1582 "country" : {
1583 "confidence" : 99,
1584 "geoname_id" : 6252001,
1585 "iso_code" : "US",
1586 "names" : {
1587 "de" : "USA",
1588 "en" : "United States",
1589 "es" : "Estados Unidos",
1590 "fr" : "États-Unis",
1591 "ja" : "アメリカ合衆国",
1592 "pt-BR" : "Estados Unidos",
1593 "ru" : "США",
1594 "zh-CN" : "美国"
1595 }
1596 },
1597 "location" : {
1598 "accuracy_radius" : 22,
1599 "latitude" : 47.2513,
1600 "longitude" : -122.3149,
1601 "metro_code" : 819,
1602 "time_zone" : "America/Los_Angeles"
1603 },
1604 "postal" : {
1605 "code" : "98354",
1606 "confidence" : 40
1607 },
1608 "registered_country" : {
1609 "geoname_id" : 2635167,
1610 "is_in_european_union" : true,
1611 "iso_code" : "GB",
1612 "names" : {
1613 "de" : "Vereinigtes Königreich",
1614 "en" : "United Kingdom",
1615 "es" : "Reino Unido",
1616 "fr" : "Royaume-Uni",
1617 "ja" : "イギリス",
1618 "pt-BR" : "Reino Unido",
1619 "ru" : "Великобритания",
1620 "zh-CN" : "英国"
1621 }
1622 },
1623 "subdivisions" : [
1624 {
1625 "confidence" : 99,
1626 "geoname_id" : 5815135,
1627 "iso_code" : "WA",
1628 "names" : {
1629 "en" : "Washington",
1630 "es" : "Washington",
1631 "fr" : "État de Washington",
1632 "ja" : "ワシントン州",
1633 "ru" : "Вашингтон",
1634 "zh-CN" : "华盛顿州"
1635 }
1636 }
1637 ],
1638 "traits" : {
1639 "autonomous_system_number" : 209,
1640 "connection_type" : "Cable/DSL",
1641 "isp" : "Century Link",
1642 "organization" : "Lariat Software",
1643 "user_type" : "government"
1644 }
1645 }
1646 },
1647 {
1648 "2001:218::/32" : {
1649 "continent" : {
1650 "code" : "AS",
1651 "geoname_id" : 6255147,
1652 "names" : {
1653 "de" : "Asien",
1654 "en" : "Asia",
1655 "es" : "Asia",
1656 "fr" : "Asie",
1657 "ja" : "アジア",
1658 "pt-BR" : "Ásia",
1659 "ru" : "Азия",
1660 "zh-CN" : "亚洲"
1661 }
1662 },
1663 "country" : {
1664 "confidence" : 95,
1665 "geoname_id" : 1861060,
1666 "iso_code" : "JP",
1667 "names" : {
1668 "de" : "Japan",
1669 "en" : "Japan",
1670 "es" : "Japón",
1671 "fr" : "Japon",
1672 "ja" : "日本",
1673 "pt-BR" : "Japão",
1674 "ru" : "Япония",
1675 "zh-CN" : "日本"
1676 }
1677 },
1678 "location" : {
1679 "accuracy_radius" : 100,
1680 "latitude" : 35.68536,
1681 "longitude" : 139.75309,
1682 "time_zone" : "Asia/Tokyo"
1683 },
1684 "registered_country" : {
1685 "geoname_id" : 1861060,
1686 "iso_code" : "JP",
1687 "names" : {
1688 "de" : "Japan",
1689 "en" : "Japan",
1690 "es" : "Japón",
1691 "fr" : "Japon",
1692 "ja" : "日本",
1693 "pt-BR" : "Japão",
1694 "ru" : "Япония",
1695 "zh-CN" : "日本"
1696 }
1697 }
1698 }
1699 },
1700 {
1701 "2001:250::/31" : {
1702 "continent" : {
1703 "code" : "AS",
1704 "geoname_id" : 6255147,
1705 "names" : {
1706 "de" : "Asien",
1707 "en" : "Asia",
1708 "es" : "Asia",
1709 "fr" : "Asie",
1710 "ja" : "アジア",
1711 "pt-BR" : "Ásia",
1712 "ru" : "Азия",
1713 "zh-CN" : "亚洲"
1714 }
1715 },
1716 "country" : {
1717 "confidence" : 95,
1718 "geoname_id" : 1814991,
1719 "iso_code" : "CN",
1720 "names" : {
1721 "de" : "China",
1722 "en" : "People's Republic of China",
1723 "es" : "República Popular China",
1724 "fr" : "Chine",
1725 "ja" : "中国",
1726 "pt-BR" : "China",
1727 "ru" : "Китай",
1728 "zh-CN" : "中国"
1729 }
1730 },
1731 "location" : {
1732 "accuracy_radius" : 100,
1733 "latitude" : 35,
1734 "longitude" : 105
1735 },
1736 "registered_country" : {
1737 "geoname_id" : 1814991,
1738 "iso_code" : "CN",
1739 "names" : {
1740 "de" : "China",
1741 "en" : "People's Republic of China",
1742 "es" : "República Popular China",
1743 "fr" : "Chine",
1744 "ja" : "中国",
1745 "pt-BR" : "China",
1746 "ru" : "Китай",
1747 "zh-CN" : "中国"
1748 }
1749 }
1750 }
1751 },
1752 {
1753 "2a02:d280::/29" : {
1754 "continent" : {
1755 "code" : "EU",
1756 "geoname_id" : 6255148,
1757 "names" : {
1758 "de" : "Europa",
1759 "en" : "Europe",
1760 "es" : "Europa",
1761 "fr" : "Europe",
1762 "ja" : "ヨーロッパ",
1763 "pt-BR" : "Europa",
1764 "ru" : "Европа",
1765 "zh-CN" : "欧洲"
1766 }
1767 },
1768 "country" : {
1769 "confidence" : 95,
1770 "geoname_id" : 3077311,
1771 "is_in_european_union" : true,
1772 "iso_code" : "CZ",
1773 "names" : {
1774 "de" : "Tschechische Republik",
1775 "en" : "Czech Republic",
1776 "es" : "República Checa",
1777 "fr" : "Tchéquie",
1778 "ja" : "チェコ共和国",
1779 "pt-BR" : "República Checa",
1780 "ru" : "Чешская Республика",
1781 "zh-CN" : "捷克共和国"
1782 }
1783 },
1784 "location" : {
1785 "accuracy_radius" : 100,
1786 "latitude" : 49.75,
1787 "longitude" : 15,
1788 "time_zone" : "Europe/Prague"
1789 },
1790 "registered_country" : {
1791 "geoname_id" : 3077311,
1792 "is_in_european_union" : true,
1793 "iso_code" : "CZ",
1794 "names" : {
1795 "de" : "Tschechische Republik",
1796 "en" : "Czech Republic",
1797 "es" : "República Checa",
1798 "fr" : "Tchéquie",
1799 "ja" : "チェコ共和国",
1800 "pt-BR" : "República Checa",
1801 "ru" : "Чешская Республика",
1802 "zh-CN" : "捷克共和国"
1803 }
1804 }
1805 }
1806 },
1807 {
1808 "::212.47.235.81/128" : {
1809 "traits" : {
1810 "is_anonymous_proxy" : true
1811 }
1812 }
1813 },
1814 {
1815 "::212.47.235.82/128" : {
1816 "traits" : {
1817 "is_satellite_provider" : true
1818 }
1819 }
1820 },
1821 {
1822 "::1.9.127.107/128" : {
1823 "traits" : {
1824 "user_type" : "business"
1825 }
1826 }
1827 },
1828 {
1829 "::102.35.19.0/128" : {
1830 "traits" : {
1831 "user_type" : "cellular"
1832 }
1833 }
1834 },
1835 {
1836 "2001:219::/32" : {
1837 "city" : {
1838 "confidence" : 51,
1839 "geoname_id" : 2694762,
1840 "names" : {
1841 "de" : "Linköping",
1842 "en" : "Linköping",
1843 "fr" : "Linköping",
1844 "ja" : "リンシェーピング",
1845 "zh-CN" : "林雪平"
1846 }
1847 },
1848 "continent" : {
1849 "code" : "EU",
1850 "geoname_id" : 6255148,
1851 "names" : {
1852 "de" : "Europa",
1853 "en" : "Europe",
1854 "es" : "Europa",
1855 "fr" : "Europe",
1856 "ja" : "ヨーロッパ",
1857 "pt-BR" : "Europa",
1858 "ru" : "Европа",
1859 "zh-CN" : "欧洲"
1860 }
1861 },
1862 "country" : {
1863 "confidence" : 99,
1864 "geoname_id" : 2661886,
1865 "is_in_european_union" : true,
1866 "iso_code" : "SE",
1867 "names" : {
1868 "de" : "Schweden",
1869 "en" : "Sweden",
1870 "es" : "Suecia",
1871 "fr" : "Suède",
1872 "ja" : "スウェーデン王国",
1873 "pt-BR" : "Suécia",
1874 "ru" : "Швеция",
1875 "zh-CN" : "瑞典"
1876 }
1877 },
1878 "location" : {
1879 "accuracy_radius" : 76,
1880 "latitude" : 58.4167,
1881 "longitude" : 15.6167,
1882 "metro_code" : 4,
1883 "time_zone" : "Europe/Stockholm"
1884 },
1885 "postal" : {
1886 "code" : "138 20",
1887 "confidence" : 20
1888 },
1889 "registered_country" : {
1890 "geoname_id" : 2921044,
1891 "is_in_european_union" : true,
1892 "iso_code" : "DE",
1893 "names" : {
1894 "de" : "Deutschland",
1895 "en" : "Germany",
1896 "es" : "Alemania",
1897 "fr" : "Allemagne",
1898 "ja" : "ドイツ連邦共和国",
1899 "pt-BR" : "Alemanha",
1900 "ru" : "Германия",
1901 "zh-CN" : "德国"
1902 }
1903 },
1904 "subdivisions" : [
1905 {
1906 "confidence" : 51,
1907 "geoname_id" : 2685867,
1908 "iso_code" : "E",
1909 "names" : {
1910 "en" : "Östergötland County",
1911 "fr" : "Comté d'Östergötland"
1912 }
1913 }
1914 ],
1915 "traits" : {
1916 "autonomous_system_number" : 29518,
1917 "autonomous_system_organization" : "Bredband2 AB",
1918 "connection_type" : "Corporate",
1919 "domain" : "bredband2.com",
1920 "isp" : "Bredband2 AB",
1921 "organization" : "Bevtec",
1922 "user_type" : "government"
1923 }
1924 }
1925 },
1926 {
1927 "2001:220::/128" : {
1928 "city" : {
1929 "confidence" : 51,
1930 "geoname_id" : 2694762,
1931 "names" : {
1932 "de" : "Linköping",
1933 "en" : "Linköping",
1934 "fr" : "Linköping",
1935 "ja" : "リンシェーピング",
1936 "zh-CN" : "林雪平"
1937 }
1938 },
1939 "continent" : {
1940 "code" : "EU",
1941 "geoname_id" : 6255148,
1942 "names" : {
1943 "de" : "Europa",
1944 "en" : "Europe",
1945 "es" : "Europa",
1946 "fr" : "Europe",
1947 "ja" : "ヨーロッパ",
1948 "pt-BR" : "Europa",
1949 "ru" : "Европа",
1950 "zh-CN" : "欧洲"
1951 }
1952 },
1953 "country" : {
1954 "confidence" : 99,
1955 "geoname_id" : 2661886,
1956 "is_in_european_union" : true,
1957 "iso_code" : "SE",
1958 "names" : {
1959 "de" : "Schweden",
1960 "en" : "Sweden",
1961 "es" : "Suecia",
1962 "fr" : "Suède",
1963 "ja" : "スウェーデン王国",
1964 "pt-BR" : "Suécia",
1965 "ru" : "Швеция",
1966 "zh-CN" : "瑞典"
1967 }
1968 },
1969 "location" : {
1970 "accuracy_radius" : 76,
1971 "latitude" : 58.4167,
1972 "longitude" : 15.6167,
1973 "metro_code" : 4,
1974 "time_zone" : "Europe/Stockholm"
1975 },
1976 "postal" : {
1977 "code" : "138 20",
1978 "confidence" : 20
1979 },
1980 "registered_country" : {
1981 "geoname_id" : 2921044,
1982 "is_in_european_union" : true,
1983 "iso_code" : "DE",
1984 "names" : {
1985 "de" : "Deutschland",
1986 "en" : "Germany",
1987 "es" : "Alemania",
1988 "fr" : "Allemagne",
1989 "ja" : "ドイツ連邦共和国",
1990 "pt-BR" : "Alemanha",
1991 "ru" : "Германия",
1992 "zh-CN" : "德国"
1993 }
1994 },
1995 "subdivisions" : [
1996 {
1997 "confidence" : 51,
1998 "geoname_id" : 2685867,
1999 "iso_code" : "E",
2000 "names" : {
2001 "en" : "Östergötland County",
2002 "fr" : "Comté d'Östergötland"
2003 }
2004 }
2005 ],
2006 "traits" : {
2007 "autonomous_system_number" : 29518,
2008 "autonomous_system_organization" : "Bredband2 AB",
2009 "connection_type" : "Corporate",
2010 "domain" : "bredband2.com",
2011 "isp" : "Bredband2 AB",
2012 "organization" : "Bevtec",
2013 "user_type" : "government"
2014 }
2015 }
2016 }
2017 ]
+0
-2132
test/data/source-data/GeoIP2-Static-IP-Score-Test.json less more
0 [
1 {
2 "::1.0.0.0/111" : {
3 "score" : 0.01
4 }
5 },
6 {
7 "::1.2.0.0/119" : {
8 "score" : 0.02
9 }
10 },
11 {
12 "::1.2.2.0/120" : {
13 "score" : 0.03
14 }
15 },
16 {
17 "::1.2.3.0/126" : {
18 "score" : 0.04
19 }
20 },
21 {
22 "::1.2.3.4/128" : {
23 "score" : 0.05
24 }
25 },
26 {
27 "::1.2.3.5/128" : {
28 "score" : 0.06
29 }
30 },
31 {
32 "::1.2.3.6/128" : {
33 "score" : 0.07
34 }
35 },
36 {
37 "::1.2.3.7/128" : {
38 "score" : 0.08
39 }
40 },
41 {
42 "::1.2.3.8/125" : {
43 "score" : 0.09
44 }
45 },
46 {
47 "::1.2.3.16/124" : {
48 "score" : 0.1
49 }
50 },
51 {
52 "::1.2.3.32/123" : {
53 "score" : 0.11
54 }
55 },
56 {
57 "::1.2.3.64/122" : {
58 "score" : 0.12
59 }
60 },
61 {
62 "::1.2.3.128/121" : {
63 "score" : 0.13
64 }
65 },
66 {
67 "::1.2.4.0/118" : {
68 "score" : 0.14
69 }
70 },
71 {
72 "::1.2.8.0/117" : {
73 "score" : 0.15
74 }
75 },
76 {
77 "::1.2.16.0/116" : {
78 "score" : 0.16
79 }
80 },
81 {
82 "::1.2.32.0/115" : {
83 "score" : 0.17
84 }
85 },
86 {
87 "::1.2.64.0/114" : {
88 "score" : 0.18
89 }
90 },
91 {
92 "::1.2.128.0/113" : {
93 "score" : 0.19
94 }
95 },
96 {
97 "::1.3.0.0/112" : {
98 "score" : 0.2
99 }
100 },
101 {
102 "::1.4.0.0/110" : {
103 "score" : 0.21
104 }
105 },
106 {
107 "::1.8.0.0/109" : {
108 "score" : 0.22
109 }
110 },
111 {
112 "::1.16.0.0/108" : {
113 "score" : 0.23
114 }
115 },
116 {
117 "::1.32.0.0/107" : {
118 "score" : 0.24
119 }
120 },
121 {
122 "::1.64.0.0/106" : {
123 "score" : 0.25
124 }
125 },
126 {
127 "::1.128.0.0/105" : {
128 "score" : 0.26
129 }
130 },
131 {
132 "::2.0.0.0/103" : {
133 "score" : 0.27
134 }
135 },
136 {
137 "::4.0.0.0/102" : {
138 "score" : 0.28
139 }
140 },
141 {
142 "::8.0.0.0/103" : {
143 "score" : 0.29
144 }
145 },
146 {
147 "::11.0.0.0/104" : {
148 "score" : 0.3
149 }
150 },
151 {
152 "::12.0.0.0/102" : {
153 "score" : 0.31
154 }
155 },
156 {
157 "::16.0.0.0/100" : {
158 "score" : 0.32
159 }
160 },
161 {
162 "::32.0.0.0/99" : {
163 "score" : 0.33
164 }
165 },
166 {
167 "::64.0.0.0/99" : {
168 "score" : 0.34
169 }
170 },
171 {
172 "::75.209.24.0/128" : {
173 "score" : 0.35
174 }
175 },
176 {
177 "::96.0.0.0/102" : {
178 "score" : 0.36
179 }
180 },
181 {
182 "::100.0.0.0/106" : {
183 "score" : 0.37
184 }
185 },
186 {
187 "::100.128.0.0/105" : {
188 "score" : 0.38
189 }
190 },
191 {
192 "::101.0.0.0/104" : {
193 "score" : 0.39
194 }
195 },
196 {
197 "::102.0.0.0/103" : {
198 "score" : 0.4
199 }
200 },
201 {
202 "::104.0.0.0/101" : {
203 "score" : 0.41
204 }
205 },
206 {
207 "::112.0.0.0/101" : {
208 "score" : 0.42
209 }
210 },
211 {
212 "::120.0.0.0/102" : {
213 "score" : 0.43
214 }
215 },
216 {
217 "::124.0.0.0/103" : {
218 "score" : 0.44
219 }
220 },
221 {
222 "::126.0.0.0/104" : {
223 "score" : 0.45
224 }
225 },
226 {
227 "::128.0.0.0/99" : {
228 "score" : 0.46
229 }
230 },
231 {
232 "::160.0.0.0/101" : {
233 "score" : 0.47
234 }
235 },
236 {
237 "::168.0.0.0/104" : {
238 "score" : 0.48
239 }
240 },
241 {
242 "::169.0.0.0/105" : {
243 "score" : 0.49
244 }
245 },
246 {
247 "::169.128.0.0/106" : {
248 "score" : 0.5
249 }
250 },
251 {
252 "::169.192.0.0/107" : {
253 "score" : 0.51
254 }
255 },
256 {
257 "::169.224.0.0/108" : {
258 "score" : 0.52
259 }
260 },
261 {
262 "::169.240.0.0/109" : {
263 "score" : 0.53
264 }
265 },
266 {
267 "::169.248.0.0/110" : {
268 "score" : 0.54
269 }
270 },
271 {
272 "::169.252.0.0/111" : {
273 "score" : 0.55
274 }
275 },
276 {
277 "::169.255.0.0/112" : {
278 "score" : 0.56
279 }
280 },
281 {
282 "::170.0.0.0/103" : {
283 "score" : 0.57
284 }
285 },
286 {
287 "::172.0.0.0/108" : {
288 "score" : 0.58
289 }
290 },
291 {
292 "::172.32.0.0/107" : {
293 "score" : 0.59
294 }
295 },
296 {
297 "::172.64.0.0/106" : {
298 "score" : 0.6
299 }
300 },
301 {
302 "::172.128.0.0/105" : {
303 "score" : 0.61
304 }
305 },
306 {
307 "::173.0.0.0/104" : {
308 "score" : 0.62
309 }
310 },
311 {
312 "::174.0.0.0/103" : {
313 "score" : 0.63
314 }
315 },
316 {
317 "::176.0.0.0/100" : {
318 "score" : 0.64
319 }
320 },
321 {
322 "::192.0.0.8/125" : {
323 "score" : 0.65
324 }
325 },
326 {
327 "::192.0.0.16/124" : {
328 "score" : 0.66
329 }
330 },
331 {
332 "::192.0.0.32/123" : {
333 "score" : 0.67
334 }
335 },
336 {
337 "::192.0.0.64/122" : {
338 "score" : 0.68
339 }
340 },
341 {
342 "::192.0.0.128/121" : {
343 "score" : 0.69
344 }
345 },
346 {
347 "::192.0.1.0/120" : {
348 "score" : 0.7
349 }
350 },
351 {
352 "::192.0.3.0/120" : {
353 "score" : 0.71
354 }
355 },
356 {
357 "::192.0.4.0/118" : {
358 "score" : 0.72
359 }
360 },
361 {
362 "::192.0.8.0/117" : {
363 "score" : 0.73
364 }
365 },
366 {
367 "::192.0.16.0/116" : {
368 "score" : 0.74
369 }
370 },
371 {
372 "::192.0.32.0/115" : {
373 "score" : 0.75
374 }
375 },
376 {
377 "::192.0.64.0/114" : {
378 "score" : 0.76
379 }
380 },
381 {
382 "::192.0.128.0/113" : {
383 "score" : 0.77
384 }
385 },
386 {
387 "::192.1.0.0/112" : {
388 "score" : 0.78
389 }
390 },
391 {
392 "::192.2.0.0/111" : {
393 "score" : 0.79
394 }
395 },
396 {
397 "::192.4.0.0/110" : {
398 "score" : 0.8
399 }
400 },
401 {
402 "::192.8.0.0/109" : {
403 "score" : 0.81
404 }
405 },
406 {
407 "::192.16.0.0/108" : {
408 "score" : 0.82
409 }
410 },
411 {
412 "::192.32.0.0/107" : {
413 "score" : 0.83
414 }
415 },
416 {
417 "::192.64.0.0/108" : {
418 "score" : 0.84
419 }
420 },
421 {
422 "::192.80.0.0/109" : {
423 "score" : 0.85
424 }
425 },
426 {
427 "::192.88.0.0/114" : {
428 "score" : 0.86
429 }
430 },
431 {
432 "::192.88.64.0/115" : {
433 "score" : 0.87
434 }
435 },
436 {
437 "::192.88.96.0/119" : {
438 "score" : 0.88
439 }
440 },
441 {
442 "::192.88.98.0/120" : {
443 "score" : 0.89
444 }
445 },
446 {
447 "::192.88.100.0/118" : {
448 "score" : 0.9
449 }
450 },
451 {
452 "::192.88.104.0/117" : {
453 "score" : 0.91
454 }
455 },
456 {
457 "::192.88.112.0/116" : {
458 "score" : 0.92
459 }
460 },
461 {
462 "::192.88.128.0/113" : {
463 "score" : 0.93
464 }
465 },
466 {
467 "::192.89.0.0/112" : {
468 "score" : 0.94
469 }
470 },
471 {
472 "::192.90.0.0/111" : {
473 "score" : 0.95
474 }
475 },
476 {
477 "::192.92.0.0/110" : {
478 "score" : 0.96
479 }
480 },
481 {
482 "::192.96.0.0/107" : {
483 "score" : 0.97
484 }
485 },
486 {
487 "::192.128.0.0/107" : {
488 "score" : 0.98
489 }
490 },
491 {
492 "::192.160.0.0/109" : {
493 "score" : 0.99
494 }
495 },
496 {
497 "::192.169.0.0/112" : {
498 "score" : 1.0
499 }
500 },
501 {
502 "::192.170.0.0/111" : {
503 "score" : 1.01
504 }
505 },
506 {
507 "::192.172.0.0/110" : {
508 "score" : 1.02
509 }
510 },
511 {
512 "::192.176.0.0/108" : {
513 "score" : 1.03
514 }
515 },
516 {
517 "::192.192.0.0/106" : {
518 "score" : 1.04
519 }
520 },
521 {
522 "::193.0.0.0/104" : {
523 "score" : 1.05
524 }
525 },
526 {
527 "::194.0.0.0/103" : {
528 "score" : 1.06
529 }
530 },
531 {
532 "::196.0.0.0/103" : {
533 "score" : 1.07
534 }
535 },
536 {
537 "::198.0.0.0/108" : {
538 "score" : 1.08
539 }
540 },
541 {
542 "::198.16.0.0/111" : {
543 "score" : 1.09
544 }
545 },
546 {
547 "::198.20.0.0/110" : {
548 "score" : 1.1
549 }
550 },
551 {
552 "::198.24.0.0/109" : {
553 "score" : 1.11
554 }
555 },
556 {
557 "::198.32.0.0/108" : {
558 "score" : 1.12
559 }
560 },
561 {
562 "::198.48.0.0/111" : {
563 "score" : 1.13
564 }
565 },
566 {
567 "::198.50.0.0/112" : {
568 "score" : 1.14
569 }
570 },
571 {
572 "::198.51.0.0/114" : {
573 "score" : 1.15
574 }
575 },
576 {
577 "::198.51.64.0/115" : {
578 "score" : 1.16
579 }
580 },
581 {
582 "::198.51.96.0/118" : {
583 "score" : 1.17
584 }
585 },
586 {
587 "::198.51.101.0/120" : {
588 "score" : 1.18
589 }
590 },
591 {
592 "::198.51.102.0/119" : {
593 "score" : 1.19
594 }
595 },
596 {
597 "::198.51.104.0/117" : {
598 "score" : 1.2
599 }
600 },
601 {
602 "::198.51.112.0/116" : {
603 "score" : 1.21
604 }
605 },
606 {
607 "::198.51.128.0/113" : {
608 "score" : 1.22
609 }
610 },
611 {
612 "::198.52.0.0/110" : {
613 "score" : 1.23
614 }
615 },
616 {
617 "::198.56.0.0/109" : {
618 "score" : 1.24
619 }
620 },
621 {
622 "::198.64.0.0/106" : {
623 "score" : 1.25
624 }
625 },
626 {
627 "::198.128.0.0/105" : {
628 "score" : 1.26
629 }
630 },
631 {
632 "::199.0.0.0/104" : {
633 "score" : 1.27
634 }
635 },
636 {
637 "::200.0.0.0/103" : {
638 "score" : 1.28
639 }
640 },
641 {
642 "::202.0.0.0/104" : {
643 "score" : 1.29
644 }
645 },
646 {
647 "::203.0.0.0/114" : {
648 "score" : 1.3
649 }
650 },
651 {
652 "::203.0.64.0/115" : {
653 "score" : 1.31
654 }
655 },
656 {
657 "::203.0.96.0/116" : {
658 "score" : 1.32
659 }
660 },
661 {
662 "::203.0.112.0/120" : {
663 "score" : 1.33
664 }
665 },
666 {
667 "::203.0.114.0/119" : {
668 "score" : 1.34
669 }
670 },
671 {
672 "::203.0.116.0/118" : {
673 "score" : 1.35
674 }
675 },
676 {
677 "::203.0.120.0/117" : {
678 "score" : 1.36
679 }
680 },
681 {
682 "::203.0.128.0/113" : {
683 "score" : 1.37
684 }
685 },
686 {
687 "::203.1.0.0/112" : {
688 "score" : 1.38
689 }
690 },
691 {
692 "::203.2.0.0/111" : {
693 "score" : 1.39
694 }
695 },
696 {
697 "::203.4.0.0/110" : {
698 "score" : 1.4
699 }
700 },
701 {
702 "::203.8.0.0/109" : {
703 "score" : 1.41
704 }
705 },
706 {
707 "::203.16.0.0/108" : {
708 "score" : 1.42
709 }
710 },
711 {
712 "::203.32.0.0/107" : {
713 "score" : 1.43
714 }
715 },
716 {
717 "::203.64.0.0/106" : {
718 "score" : 1.44
719 }
720 },
721 {
722 "::203.128.0.0/105" : {
723 "score" : 1.45
724 }
725 },
726 {
727 "::204.0.0.0/102" : {
728 "score" : 1.46
729 }
730 },
731 {
732 "::208.0.0.0/100" : {
733 "score" : 1.47
734 }
735 },
736 {
737 "::1:0:0:0/80" : {
738 "score" : 1.48
739 }
740 },
741 {
742 "::2:0:0:0/79" : {
743 "score" : 1.49
744 }
745 },
746 {
747 "::4:0:0:0/78" : {
748 "score" : 1.5
749 }
750 },
751 {
752 "::8:0:0:0/77" : {
753 "score" : 1.51
754 }
755 },
756 {
757 "::10:0:0:0/76" : {
758 "score" : 1.52
759 }
760 },
761 {
762 "::20:0:0:0/75" : {
763 "score" : 1.53
764 }
765 },
766 {
767 "::40:0:0:0/74" : {
768 "score" : 1.54
769 }
770 },
771 {
772 "::80:0:0:0/73" : {
773 "score" : 1.55
774 }
775 },
776 {
777 "::100:0:0:0/72" : {
778 "score" : 1.56
779 }
780 },
781 {
782 "::200:0:0:0/71" : {
783 "score" : 1.57
784 }
785 },
786 {
787 "::400:0:0:0/70" : {
788 "score" : 1.58
789 }
790 },
791 {
792 "::800:0:0:0/69" : {
793 "score" : 1.59
794 }
795 },
796 {
797 "::1000:0:0:0/68" : {
798 "score" : 1.6
799 }
800 },
801 {
802 "::2000:0:0:0/67" : {
803 "score" : 1.61
804 }
805 },
806 {
807 "::4000:0:0:0/66" : {
808 "score" : 1.62
809 }
810 },
811 {
812 "::8000:0:0:0/65" : {
813 "score" : 1.63
814 }
815 },
816 {
817 "0:0:0:1::/64" : {
818 "score" : 1.64
819 }
820 },
821 {
822 "0:0:0:2::/63" : {
823 "score" : 1.65
824 }
825 },
826 {
827 "0:0:0:4::/62" : {
828 "score" : 1.66
829 }
830 },
831 {
832 "0:0:0:8::/61" : {
833 "score" : 1.67
834 }
835 },
836 {
837 "0:0:0:10::/60" : {
838 "score" : 1.68
839 }
840 },
841 {
842 "0:0:0:20::/59" : {
843 "score" : 1.69
844 }
845 },
846 {
847 "0:0:0:40::/58" : {
848 "score" : 1.7
849 }
850 },
851 {
852 "0:0:0:80::/57" : {
853 "score" : 1.71
854 }
855 },
856 {
857 "0:0:0:100::/56" : {
858 "score" : 1.72
859 }
860 },
861 {
862 "0:0:0:200::/55" : {
863 "score" : 1.73
864 }
865 },
866 {
867 "0:0:0:400::/54" : {
868 "score" : 1.74
869 }
870 },
871 {
872 "0:0:0:800::/53" : {
873 "score" : 1.75
874 }
875 },
876 {
877 "0:0:0:1000::/52" : {
878 "score" : 1.76
879 }
880 },
881 {
882 "0:0:0:2000::/51" : {
883 "score" : 1.77
884 }
885 },
886 {
887 "0:0:0:4000::/50" : {
888 "score" : 1.78
889 }
890 },
891 {
892 "0:0:0:8000::/49" : {
893 "score" : 1.79
894 }
895 },
896 {
897 "0:0:1::/48" : {
898 "score" : 1.8
899 }
900 },
901 {
902 "0:0:2::/47" : {
903 "score" : 1.81
904 }
905 },
906 {
907 "0:0:4::/46" : {
908 "score" : 1.82
909 }
910 },
911 {
912 "0:0:8::/45" : {
913 "score" : 1.83
914 }
915 },
916 {
917 "0:0:10::/44" : {
918 "score" : 1.84
919 }
920 },
921 {
922 "0:0:20::/43" : {
923 "score" : 1.85
924 }
925 },
926 {
927 "0:0:40::/42" : {
928 "score" : 1.86
929 }
930 },
931 {
932 "0:0:80::/41" : {
933 "score" : 1.87
934 }
935 },
936 {
937 "0:0:100::/40" : {
938 "score" : 1.88
939 }
940 },
941 {
942 "0:0:200::/39" : {
943 "score" : 1.89
944 }
945 },
946 {
947 "0:0:400::/38" : {
948 "score" : 1.9
949 }
950 },
951 {
952 "0:0:800::/37" : {
953 "score" : 1.91
954 }
955 },
956 {
957 "0:0:1000::/36" : {
958 "score" : 1.92
959 }
960 },
961 {
962 "0:0:2000::/35" : {
963 "score" : 1.93
964 }
965 },
966 {
967 "0:0:4000::/34" : {
968 "score" : 1.94
969 }
970 },
971 {
972 "0:0:8000::/33" : {
973 "score" : 1.95
974 }
975 },
976 {
977 "0:1::/32" : {
978 "score" : 1.96
979 }
980 },
981 {
982 "0:2::/31" : {
983 "score" : 1.97
984 }
985 },
986 {
987 "0:4::/30" : {
988 "score" : 1.98
989 }
990 },
991 {
992 "0:8::/29" : {
993 "score" : 1.99
994 }
995 },
996 {
997 "0:10::/28" : {
998 "score" : 2.0
999 }
1000 },
1001 {
1002 "0:20::/27" : {
1003 "score" : 2.01
1004 }
1005 },
1006 {
1007 "0:40::/26" : {
1008 "score" : 2.02
1009 }
1010 },
1011 {
1012 "0:80::/25" : {
1013 "score" : 2.03
1014 }
1015 },
1016 {
1017 "0:100::/24" : {
1018 "score" : 2.04
1019 }
1020 },
1021 {
1022 "0:200::/23" : {
1023 "score" : 2.05
1024 }
1025 },
1026 {
1027 "0:400::/22" : {
1028 "score" : 2.06
1029 }
1030 },
1031 {
1032 "0:800::/21" : {
1033 "score" : 2.07
1034 }
1035 },
1036 {
1037 "0:1000::/20" : {
1038 "score" : 2.08
1039 }
1040 },
1041 {
1042 "0:2000::/19" : {
1043 "score" : 2.09
1044 }
1045 },
1046 {
1047 "0:4000::/18" : {
1048 "score" : 2.1
1049 }
1050 },
1051 {
1052 "0:8000::/17" : {
1053 "score" : 2.11
1054 }
1055 },
1056 {
1057 "1::/16" : {
1058 "score" : 2.12
1059 }
1060 },
1061 {
1062 "2::/15" : {
1063 "score" : 2.13
1064 }
1065 },
1066 {
1067 "4::/14" : {
1068 "score" : 2.14
1069 }
1070 },
1071 {
1072 "8::/13" : {
1073 "score" : 2.15
1074 }
1075 },
1076 {
1077 "10::/12" : {
1078 "score" : 2.16
1079 }
1080 },
1081 {
1082 "20::/11" : {
1083 "score" : 2.17
1084 }
1085 },
1086 {
1087 "40::/10" : {
1088 "score" : 2.18
1089 }
1090 },
1091 {
1092 "80::/9" : {
1093 "score" : 2.19
1094 }
1095 },
1096 {
1097 "100:0:0:1::/64" : {
1098 "score" : 2.2
1099 }
1100 },
1101 {
1102 "100:0:0:2::/63" : {
1103 "score" : 2.21
1104 }
1105 },
1106 {
1107 "100:0:0:4::/62" : {
1108 "score" : 2.22
1109 }
1110 },
1111 {
1112 "100:0:0:8::/61" : {
1113 "score" : 2.23
1114 }
1115 },
1116 {
1117 "100:0:0:10::/60" : {
1118 "score" : 2.24
1119 }
1120 },
1121 {
1122 "100:0:0:20::/59" : {
1123 "score" : 2.25
1124 }
1125 },
1126 {
1127 "100:0:0:40::/58" : {
1128 "score" : 2.26
1129 }
1130 },
1131 {
1132 "100:0:0:80::/57" : {
1133 "score" : 2.27
1134 }
1135 },
1136 {
1137 "100:0:0:100::/56" : {
1138 "score" : 2.28
1139 }
1140 },
1141 {
1142 "100:0:0:200::/55" : {
1143 "score" : 2.29
1144 }
1145 },
1146 {
1147 "100:0:0:400::/54" : {
1148 "score" : 2.3
1149 }
1150 },
1151 {
1152 "100:0:0:800::/53" : {
1153 "score" : 2.31
1154 }
1155 },
1156 {
1157 "100:0:0:1000::/52" : {
1158 "score" : 2.32
1159 }
1160 },
1161 {
1162 "100:0:0:2000::/51" : {
1163 "score" : 2.33
1164 }
1165 },
1166 {
1167 "100:0:0:4000::/50" : {
1168 "score" : 2.34
1169 }
1170 },
1171 {
1172 "100:0:0:8000::/49" : {
1173 "score" : 2.35
1174 }
1175 },
1176 {
1177 "100:0:1::/48" : {
1178 "score" : 2.36
1179 }
1180 },
1181 {
1182 "100:0:2::/47" : {
1183 "score" : 2.37
1184 }
1185 },
1186 {
1187 "100:0:4::/46" : {
1188 "score" : 2.38
1189 }
1190 },
1191 {
1192 "100:0:8::/45" : {
1193 "score" : 2.39
1194 }
1195 },
1196 {
1197 "100:0:10::/44" : {
1198 "score" : 2.4
1199 }
1200 },
1201 {
1202 "100:0:20::/43" : {
1203 "score" : 2.41
1204 }
1205 },
1206 {
1207 "100:0:40::/42" : {
1208 "score" : 2.42
1209 }
1210 },
1211 {
1212 "100:0:80::/41" : {
1213 "score" : 2.43
1214 }
1215 },
1216 {
1217 "100:0:100::/40" : {
1218 "score" : 2.44
1219 }
1220 },
1221 {
1222 "100:0:200::/39" : {
1223 "score" : 2.45
1224 }
1225 },
1226 {
1227 "100:0:400::/38" : {
1228 "score" : 2.46
1229 }
1230 },
1231 {
1232 "100:0:800::/37" : {
1233 "score" : 2.47
1234 }
1235 },
1236 {
1237 "100:0:1000::/36" : {
1238 "score" : 2.48
1239 }
1240 },
1241 {
1242 "100:0:2000::/35" : {
1243 "score" : 2.49
1244 }
1245 },
1246 {
1247 "100:0:4000::/34" : {
1248 "score" : 2.5
1249 }
1250 },
1251 {
1252 "100:0:8000::/33" : {
1253 "score" : 2.51
1254 }
1255 },
1256 {
1257 "100:1::/32" : {
1258 "score" : 2.52
1259 }
1260 },
1261 {
1262 "100:2::/31" : {
1263 "score" : 2.53
1264 }
1265 },
1266 {
1267 "100:4::/30" : {
1268 "score" : 2.54
1269 }
1270 },
1271 {
1272 "100:8::/29" : {
1273 "score" : 2.55
1274 }
1275 },
1276 {
1277 "100:10::/28" : {
1278 "score" : 2.56
1279 }
1280 },
1281 {
1282 "100:20::/27" : {
1283 "score" : 2.57
1284 }
1285 },
1286 {
1287 "100:40::/26" : {
1288 "score" : 2.58
1289 }
1290 },
1291 {
1292 "100:80::/25" : {
1293 "score" : 2.59
1294 }
1295 },
1296 {
1297 "100:100::/24" : {
1298 "score" : 2.6
1299 }
1300 },
1301 {
1302 "100:200::/23" : {
1303 "score" : 2.61
1304 }
1305 },
1306 {
1307 "100:400::/22" : {
1308 "score" : 2.62
1309 }
1310 },
1311 {
1312 "100:800::/21" : {
1313 "score" : 2.63
1314 }
1315 },
1316 {
1317 "100:1000::/20" : {
1318 "score" : 2.64
1319 }
1320 },
1321 {
1322 "100:2000::/19" : {
1323 "score" : 2.65
1324 }
1325 },
1326 {
1327 "100:4000::/18" : {
1328 "score" : 2.66
1329 }
1330 },
1331 {
1332 "100:8000::/17" : {
1333 "score" : 2.67
1334 }
1335 },
1336 {
1337 "101::/16" : {
1338 "score" : 2.68
1339 }
1340 },
1341 {
1342 "102::/15" : {
1343 "score" : 2.69
1344 }
1345 },
1346 {
1347 "104::/14" : {
1348 "score" : 2.7
1349 }
1350 },
1351 {
1352 "108::/13" : {
1353 "score" : 2.71
1354 }
1355 },
1356 {
1357 "110::/12" : {
1358 "score" : 2.72
1359 }
1360 },
1361 {
1362 "120::/11" : {
1363 "score" : 2.73
1364 }
1365 },
1366 {
1367 "140::/10" : {
1368 "score" : 2.74
1369 }
1370 },
1371 {
1372 "180::/9" : {
1373 "score" : 2.75
1374 }
1375 },
1376 {
1377 "200::/7" : {
1378 "score" : 2.76
1379 }
1380 },
1381 {
1382 "400::/6" : {
1383 "score" : 2.77
1384 }
1385 },
1386 {
1387 "800::/5" : {
1388 "score" : 2.78
1389 }
1390 },
1391 {
1392 "1000::/4" : {
1393 "score" : 2.79
1394 }
1395 },
1396 {
1397 "2000::/16" : {
1398 "score" : 2.8
1399 }
1400 },
1401 {
1402 "2001:200::/23" : {
1403 "score" : 2.81
1404 }
1405 },
1406 {
1407 "2001:220::/128" : {
1408 "score" : 2.82
1409 }
1410 },
1411 {
1412 "2001:400::/22" : {
1413 "score" : 2.83
1414 }
1415 },
1416 {
1417 "2001:800::/22" : {
1418 "score" : 2.84
1419 }
1420 },
1421 {
1422 "2001:c00::/24" : {
1423 "score" : 2.85
1424 }
1425 },
1426 {
1427 "2001:d00::/25" : {
1428 "score" : 2.86
1429 }
1430 },
1431 {
1432 "2001:d80::/27" : {
1433 "score" : 2.87
1434 }
1435 },
1436 {
1437 "2001:da0::/28" : {
1438 "score" : 2.88
1439 }
1440 },
1441 {
1442 "2001:db0::/29" : {
1443 "score" : 2.89
1444 }
1445 },
1446 {
1447 "2001:db9::/32" : {
1448 "score" : 2.9
1449 }
1450 },
1451 {
1452 "2001:dba::/31" : {
1453 "score" : 2.91
1454 }
1455 },
1456 {
1457 "2001:dbc::/30" : {
1458 "score" : 2.92
1459 }
1460 },
1461 {
1462 "2001:dc0::/26" : {
1463 "score" : 2.93
1464 }
1465 },
1466 {
1467 "2001:e00::/23" : {
1468 "score" : 2.94
1469 }
1470 },
1471 {
1472 "2001:1000::/20" : {
1473 "score" : 2.95
1474 }
1475 },
1476 {
1477 "2001:2000::/19" : {
1478 "score" : 2.96
1479 }
1480 },
1481 {
1482 "2001:4000::/18" : {
1483 "score" : 2.97
1484 }
1485 },
1486 {
1487 "2001:8000::/18" : {
1488 "score" : 2.98
1489 }
1490 },
1491 {
1492 "2001:c000::/19" : {
1493 "score" : 2.99
1494 }
1495 },
1496 {
1497 "2001:e000::/21" : {
1498 "score" : 3.0
1499 }
1500 },
1501 {
1502 "2001:e800::/22" : {
1503 "score" : 3.01
1504 }
1505 },
1506 {
1507 "2001:ec00::/24" : {
1508 "score" : 3.02
1509 }
1510 },
1511 {
1512 "2001:ed00::/25" : {
1513 "score" : 3.03
1514 }
1515 },
1516 {
1517 "2001:ed80::/27" : {
1518 "score" : 3.04
1519 }
1520 },
1521 {
1522 "2001:eda0::/28" : {
1523 "score" : 3.05
1524 }
1525 },
1526 {
1527 "2001:edb0::/29" : {
1528 "score" : 3.06
1529 }
1530 },
1531 {
1532 "2001:edb8::/48" : {
1533 "score" : 3.07
1534 }
1535 },
1536 {
1537 "2001:edb8:1::/64" : {
1538 "score" : 3.08
1539 }
1540 },
1541 {
1542 "2001:edb8:1:1::/64" : {
1543 "score" : 3.09
1544 }
1545 },
1546 {
1547 "2001:edb8:1:2::/63" : {
1548 "score" : 3.1
1549 }
1550 },
1551 {
1552 "2001:edb8:1:4::/62" : {
1553 "score" : 3.11
1554 }
1555 },
1556 {
1557 "2001:edb8:1:8::/61" : {
1558 "score" : 3.12
1559 }
1560 },
1561 {
1562 "2001:edb8:1:10::/60" : {
1563 "score" : 3.13
1564 }
1565 },
1566 {
1567 "2001:edb8:1:20::/59" : {
1568 "score" : 3.14
1569 }
1570 },
1571 {
1572 "2001:edb8:1:40::/58" : {
1573 "score" : 3.15
1574 }
1575 },
1576 {
1577 "2001:edb8:1:80::/57" : {
1578 "score" : 3.16
1579 }
1580 },
1581 {
1582 "2001:edb8:1:100::/56" : {
1583 "score" : 3.17
1584 }
1585 },
1586 {
1587 "2001:edb8:1:200::/55" : {
1588 "score" : 3.18
1589 }
1590 },
1591 {
1592 "2001:edb8:1:400::/54" : {
1593 "score" : 3.19
1594 }
1595 },
1596 {
1597 "2001:edb8:1:800::/53" : {
1598 "score" : 3.2
1599 }
1600 },
1601 {
1602 "2001:edb8:1:1000::/52" : {
1603 "score" : 3.21
1604 }
1605 },
1606 {
1607 "2001:edb8:1:2000::/51" : {
1608 "score" : 3.22
1609 }
1610 },
1611 {
1612 "2001:edb8:1:4000::/50" : {
1613 "score" : 3.23
1614 }
1615 },
1616 {
1617 "2001:edb8:1:8000::/49" : {
1618 "score" : 3.24
1619 }
1620 },
1621 {
1622 "2001:edb8:2::/47" : {
1623 "score" : 3.25
1624 }
1625 },
1626 {
1627 "2001:edb8:4::/46" : {
1628 "score" : 3.26
1629 }
1630 },
1631 {
1632 "2001:edb8:8::/45" : {
1633 "score" : 3.27
1634 }
1635 },
1636 {
1637 "2001:edb8:10::/44" : {
1638 "score" : 3.28
1639 }
1640 },
1641 {
1642 "2001:edb8:20::/43" : {
1643 "score" : 3.29
1644 }
1645 },
1646 {
1647 "2001:edb8:40::/42" : {
1648 "score" : 3.3
1649 }
1650 },
1651 {
1652 "2001:edb8:80::/41" : {
1653 "score" : 3.31
1654 }
1655 },
1656 {
1657 "2001:edb8:100::/40" : {
1658 "score" : 3.32
1659 }
1660 },
1661 {
1662 "2001:edb8:200::/39" : {
1663 "score" : 3.33
1664 }
1665 },
1666 {
1667 "2001:edb8:400::/38" : {
1668 "score" : 3.34
1669 }
1670 },
1671 {
1672 "2001:edb8:800::/37" : {
1673 "score" : 3.35
1674 }
1675 },
1676 {
1677 "2001:edb8:1000::/36" : {
1678 "score" : 3.36
1679 }
1680 },
1681 {
1682 "2001:edb8:2000::/35" : {
1683 "score" : 3.37
1684 }
1685 },
1686 {
1687 "2001:edb8:4000::/34" : {
1688 "score" : 3.38
1689 }
1690 },
1691 {
1692 "2001:edb8:8000::/38" : {
1693 "score" : 3.39
1694 }
1695 },
1696 {
1697 "2001:edb8:8400::/40" : {
1698 "score" : 3.4
1699 }
1700 },
1701 {
1702 "2001:edb8:8500::/41" : {
1703 "score" : 3.41
1704 }
1705 },
1706 {
1707 "2001:edb8:8580::/43" : {
1708 "score" : 3.42
1709 }
1710 },
1711 {
1712 "2001:edb8:85a0::/47" : {
1713 "score" : 3.43
1714 }
1715 },
1716 {
1717 "2001:edb8:85a2::/48" : {
1718 "score" : 3.44
1719 }
1720 },
1721 {
1722 "2001:edb8:85a3::/64" : {
1723 "score" : 3.45
1724 }
1725 },
1726 {
1727 "2001:edb8:85a3:1::/64" : {
1728 "score" : 3.46
1729 }
1730 },
1731 {
1732 "2001:edb8:85a3:2::/63" : {
1733 "score" : 3.47
1734 }
1735 },
1736 {
1737 "2001:edb8:85a3:4::/62" : {
1738 "score" : 3.48
1739 }
1740 },
1741 {
1742 "2001:edb8:85a3:8::/61" : {
1743 "score" : 3.49
1744 }
1745 },
1746 {
1747 "2001:edb8:85a3:10::/60" : {
1748 "score" : 3.5
1749 }
1750 },
1751 {
1752 "2001:edb8:85a3:20::/59" : {
1753 "score" : 3.51
1754 }
1755 },
1756 {
1757 "2001:edb8:85a3:40::/58" : {
1758 "score" : 3.52
1759 }
1760 },
1761 {
1762 "2001:edb8:85a3:80::/57" : {
1763 "score" : 3.53
1764 }
1765 },
1766 {
1767 "2001:edb8:85a3:100::/56" : {
1768 "score" : 3.54
1769 }
1770 },
1771 {
1772 "2001:edb8:85a3:200::/55" : {
1773 "score" : 3.55
1774 }
1775 },
1776 {
1777 "2001:edb8:85a3:400::/54" : {
1778 "score" : 3.56
1779 }
1780 },
1781 {
1782 "2001:edb8:85a3:800::/53" : {
1783 "score" : 3.57
1784 }
1785 },
1786 {
1787 "2001:edb8:85a3:1000::/52" : {
1788 "score" : 3.58
1789 }
1790 },
1791 {
1792 "2001:edb8:85a3:2000::/51" : {
1793 "score" : 3.59
1794 }
1795 },
1796 {
1797 "2001:edb8:85a3:4000::/50" : {
1798 "score" : 3.6
1799 }
1800 },
1801 {
1802 "2001:edb8:85a3:8000::/49" : {
1803 "score" : 3.61
1804 }
1805 },
1806 {
1807 "2001:edb8:85a4::/46" : {
1808 "score" : 3.62
1809 }
1810 },
1811 {
1812 "2001:edb8:85a8::/45" : {
1813 "score" : 3.63
1814 }
1815 },
1816 {
1817 "2001:edb8:85b0::/44" : {
1818 "score" : 3.64
1819 }
1820 },
1821 {
1822 "2001:edb8:85c0::/42" : {
1823 "score" : 3.65
1824 }
1825 },
1826 {
1827 "2001:edb8:8600::/39" : {
1828 "score" : 3.66
1829 }
1830 },
1831 {
1832 "2001:edb8:8800::/37" : {
1833 "score" : 3.67
1834 }
1835 },
1836 {
1837 "2001:edb8:9000::/36" : {
1838 "score" : 3.68
1839 }
1840 },
1841 {
1842 "2001:edb8:a000::/35" : {
1843 "score" : 3.69
1844 }
1845 },
1846 {
1847 "2001:edb8:c000::/36" : {
1848 "score" : 3.7
1849 }
1850 },
1851 {
1852 "2001:edb8:d000::/37" : {
1853 "score" : 3.71
1854 }
1855 },
1856 {
1857 "2001:edb8:d800::/38" : {
1858 "score" : 3.72
1859 }
1860 },
1861 {
1862 "2001:edb8:dc00::/39" : {
1863 "score" : 3.73
1864 }
1865 },
1866 {
1867 "2001:edb8:de00::/41" : {
1868 "score" : 3.74
1869 }
1870 },
1871 {
1872 "2001:edb8:de80::/43" : {
1873 "score" : 3.75
1874 }
1875 },
1876 {
1877 "2001:edb8:dea0::/45" : {
1878 "score" : 3.76
1879 }
1880 },
1881 {
1882 "2001:edb8:dea8::/46" : {
1883 "score" : 3.77
1884 }
1885 },
1886 {
1887 "2001:edb8:deac::/48" : {
1888 "score" : 3.78
1889 }
1890 },
1891 {
1892 "2001:edb8:dead::/49" : {
1893 "score" : 3.79
1894 }
1895 },
1896 {
1897 "2001:edb8:dead:8000::/50" : {
1898 "score" : 3.8
1899 }
1900 },
1901 {
1902 "2001:edb8:dead:c000::/52" : {
1903 "score" : 3.81
1904 }
1905 },
1906 {
1907 "2001:edb8:dead:d000::/53" : {
1908 "score" : 3.82
1909 }
1910 },
1911 {
1912 "2001:edb8:dead:d800::/54" : {
1913 "score" : 3.83
1914 }
1915 },
1916 {
1917 "2001:edb8:dead:dc00::/55" : {
1918 "score" : 3.84
1919 }
1920 },
1921 {
1922 "2001:edb8:dead:de00::/57" : {
1923 "score" : 3.85
1924 }
1925 },
1926 {
1927 "2001:edb8:dead:de80::/59" : {
1928 "score" : 3.86
1929 }
1930 },
1931 {
1932 "2001:edb8:dead:dea0::/61" : {
1933 "score" : 3.87
1934 }
1935 },
1936 {
1937 "2001:edb8:dead:dea8::/62" : {
1938 "score" : 3.88
1939 }
1940 },
1941 {
1942 "2001:edb8:dead:deac::/64" : {
1943 "score" : 3.89
1944 }
1945 },
1946 {
1947 "2001:edb8:dead:dead::/64" : {
1948 "score" : 3.9
1949 }
1950 },
1951 {
1952 "2001:edb8:dead:deae::/63" : {
1953 "score" : 3.91
1954 }
1955 },
1956 {
1957 "2001:edb8:dead:deb0::/60" : {
1958 "score" : 3.92
1959 }
1960 },
1961 {
1962 "2001:edb8:dead:dec0::/58" : {
1963 "score" : 3.93
1964 }
1965 },
1966 {
1967 "2001:edb8:dead:df00::/56" : {
1968 "score" : 3.94
1969 }
1970 },
1971 {
1972 "2001:edb8:dead:e000::/51" : {
1973 "score" : 3.95
1974 }
1975 },
1976 {
1977 "2001:edb8:deae::/47" : {
1978 "score" : 3.96
1979 }
1980 },
1981 {
1982 "2001:edb8:deb0::/44" : {
1983 "score" : 3.97
1984 }
1985 },
1986 {
1987 "2001:edb8:dec0::/42" : {
1988 "score" : 3.98
1989 }
1990 },
1991 {
1992 "2001:edb8:df00::/40" : {
1993 "score" : 3.99
1994 }
1995 },
1996 {
1997 "2001:edb8:e000::/35" : {
1998 "score" : 4.0
1999 }
2000 },
2001 {
2002 "2001:edb9::/32" : {
2003 "score" : 4.01
2004 }
2005 },
2006 {
2007 "2001:edba::/31" : {
2008 "score" : 4.02
2009 }
2010 },
2011 {
2012 "2001:edbc::/30" : {
2013 "score" : 4.03
2014 }
2015 },
2016 {
2017 "2001:edc0::/26" : {
2018 "score" : 4.04
2019 }
2020 },
2021 {
2022 "2001:ee00::/23" : {
2023 "score" : 4.05
2024 }
2025 },
2026 {
2027 "2001:f000::/20" : {
2028 "score" : 4.06
2029 }
2030 },
2031 {
2032 "2003::/16" : {
2033 "score" : 4.07
2034 }
2035 },
2036 {
2037 "2004::/14" : {
2038 "score" : 4.08
2039 }
2040 },
2041 {
2042 "2008::/13" : {
2043 "score" : 4.09
2044 }
2045 },
2046 {
2047 "2010::/12" : {
2048 "score" : 4.1
2049 }
2050 },
2051 {
2052 "2020::/11" : {
2053 "score" : 4.11
2054 }
2055 },
2056 {
2057 "2040::/10" : {
2058 "score" : 4.12
2059 }
2060 },
2061 {
2062 "2080::/9" : {
2063 "score" : 4.13
2064 }
2065 },
2066 {
2067 "2100::/8" : {
2068 "score" : 4.14
2069 }
2070 },
2071 {
2072 "2200::/7" : {
2073 "score" : 4.15
2074 }
2075 },
2076 {
2077 "2400::/6" : {
2078 "score" : 4.16
2079 }
2080 },
2081 {
2082 "2800::/5" : {
2083 "score" : 4.17
2084 }
2085 },
2086 {
2087 "3000::/4" : {
2088 "score" : 4.18
2089 }
2090 },
2091 {
2092 "4000::/2" : {
2093 "score" : 4.19
2094 }
2095 },
2096 {
2097 "8000::/2" : {
2098 "score" : 4.2
2099 }
2100 },
2101 {
2102 "c000::/3" : {
2103 "score" : 4.21
2104 }
2105 },
2106 {
2107 "e000::/4" : {
2108 "score" : 4.22
2109 }
2110 },
2111 {
2112 "f000::/5" : {
2113 "score" : 4.23
2114 }
2115 },
2116 {
2117 "f800::/6" : {
2118 "score" : 4.24
2119 }
2120 },
2121 {
2122 "fe00::/9" : {
2123 "score" : 4.25
2124 }
2125 },
2126 {
2127 "fec0::/10" : {
2128 "score" : 4.26
2129 }
2130 }
2131 ]
+0
-2837
test/data/source-data/GeoIP2-User-Count-Test.json less more
0 [
1 {
2 "::1.0.0.0/111" : {
3 "ipv4_24" : 0,
4 "ipv4_32" : 0
5 }
6 },
7 {
8 "::1.2.0.0/119" : {
9 "ipv4_24" : 0,
10 "ipv4_32" : 0
11 }
12 },
13 {
14 "::1.2.2.0/120" : {
15 "ipv4_24" : 0,
16 "ipv4_32" : 0
17 }
18 },
19 {
20 "::1.2.3.0/126" : {
21 "ipv4_24" : 4,
22 "ipv4_32" : 0
23 }
24 },
25 {
26 "::1.2.3.4/128" : {
27 "ipv4_24" : 4,
28 "ipv4_32" : 3
29 }
30 },
31 {
32 "::1.2.3.5/128" : {
33 "ipv4_24" : 4,
34 "ipv4_32" : 1
35 }
36 },
37 {
38 "::1.2.3.6/128" : {
39 "ipv4_24" : 4,
40 "ipv4_32" : 1
41 }
42 },
43 {
44 "::1.2.3.7/128" : {
45 "ipv4_24" : 4,
46 "ipv4_32" : 0
47 }
48 },
49 {
50 "::1.2.3.8/125" : {
51 "ipv4_24" : 4,
52 "ipv4_32" : 0
53 }
54 },
55 {
56 "::1.2.3.16/124" : {
57 "ipv4_24" : 4,
58 "ipv4_32" : 0
59 }
60 },
61 {
62 "::1.2.3.32/123" : {
63 "ipv4_24" : 4,
64 "ipv4_32" : 0
65 }
66 },
67 {
68 "::1.2.3.64/122" : {
69 "ipv4_24" : 4,
70 "ipv4_32" : 0
71 }
72 },
73 {
74 "::1.2.3.128/121" : {
75 "ipv4_24" : 4,
76 "ipv4_32" : 0
77 }
78 },
79 {
80 "::1.2.4.0/118" : {
81 "ipv4_24" : 0,
82 "ipv4_32" : 0
83 }
84 },
85 {
86 "::1.2.8.0/117" : {
87 "ipv4_24" : 0,
88 "ipv4_32" : 0
89 }
90 },
91 {
92 "::1.2.16.0/116" : {
93 "ipv4_24" : 0,
94 "ipv4_32" : 0
95 }
96 },
97 {
98 "::1.2.32.0/115" : {
99 "ipv4_24" : 0,
100 "ipv4_32" : 0
101 }
102 },
103 {
104 "::1.2.64.0/114" : {
105 "ipv4_24" : 0,
106 "ipv4_32" : 0
107 }
108 },
109 {
110 "::1.2.128.0/113" : {
111 "ipv4_24" : 0,
112 "ipv4_32" : 0
113 }
114 },
115 {
116 "::1.3.0.0/112" : {
117 "ipv4_24" : 0,
118 "ipv4_32" : 0
119 }
120 },
121 {
122 "::1.4.0.0/110" : {
123 "ipv4_24" : 0,
124 "ipv4_32" : 0
125 }
126 },
127 {
128 "::1.8.0.0/109" : {
129 "ipv4_24" : 0,
130 "ipv4_32" : 0
131 }
132 },
133 {
134 "::1.16.0.0/108" : {
135 "ipv4_24" : 0,
136 "ipv4_32" : 0
137 }
138 },
139 {
140 "::1.32.0.0/107" : {
141 "ipv4_24" : 0,
142 "ipv4_32" : 0
143 }
144 },
145 {
146 "::1.64.0.0/106" : {
147 "ipv4_24" : 0,
148 "ipv4_32" : 0
149 }
150 },
151 {
152 "::1.128.0.0/105" : {
153 "ipv4_24" : 0,
154 "ipv4_32" : 0
155 }
156 },
157 {
158 "::2.0.0.0/103" : {
159 "ipv4_24" : 0,
160 "ipv4_32" : 0
161 }
162 },
163 {
164 "::4.0.0.0/102" : {
165 "ipv4_24" : 0,
166 "ipv4_32" : 0
167 }
168 },
169 {
170 "::8.0.0.0/103" : {
171 "ipv4_24" : 0,
172 "ipv4_32" : 0
173 }
174 },
175 {
176 "::11.0.0.0/104" : {
177 "ipv4_24" : 0,
178 "ipv4_32" : 0
179 }
180 },
181 {
182 "::12.0.0.0/102" : {
183 "ipv4_24" : 0,
184 "ipv4_32" : 0
185 }
186 },
187 {
188 "::16.0.0.0/100" : {
189 "ipv4_24" : 0,
190 "ipv4_32" : 0
191 }
192 },
193 {
194 "::32.0.0.0/99" : {
195 "ipv4_24" : 0,
196 "ipv4_32" : 0
197 }
198 },
199 {
200 "::64.0.0.0/99" : {
201 "ipv4_24" : 0,
202 "ipv4_32" : 0
203 }
204 },
205 {
206 "::75.209.24.0/128" : {
207 "ipv4_24" : 1,
208 "ipv4_32" : 1
209 }
210 },
211 {
212 "::96.0.0.0/102" : {
213 "ipv4_24" : 0,
214 "ipv4_32" : 0
215 }
216 },
217 {
218 "::100.0.0.0/106" : {
219 "ipv4_24" : 0,
220 "ipv4_32" : 0
221 }
222 },
223 {
224 "::100.128.0.0/105" : {
225 "ipv4_24" : 0,
226 "ipv4_32" : 0
227 }
228 },
229 {
230 "::101.0.0.0/104" : {
231 "ipv4_24" : 0,
232 "ipv4_32" : 0
233 }
234 },
235 {
236 "::102.0.0.0/103" : {
237 "ipv4_24" : 0,
238 "ipv4_32" : 0
239 }
240 },
241 {
242 "::104.0.0.0/101" : {
243 "ipv4_24" : 0,
244 "ipv4_32" : 0
245 }
246 },
247 {
248 "::112.0.0.0/101" : {
249 "ipv4_24" : 0,
250 "ipv4_32" : 0
251 }
252 },
253 {
254 "::120.0.0.0/102" : {
255 "ipv4_24" : 0,
256 "ipv4_32" : 0
257 }
258 },
259 {
260 "::124.0.0.0/103" : {
261 "ipv4_24" : 0,
262 "ipv4_32" : 0
263 }
264 },
265 {
266 "::126.0.0.0/104" : {
267 "ipv4_24" : 0,
268 "ipv4_32" : 0
269 }
270 },
271 {
272 "::128.0.0.0/99" : {
273 "ipv4_24" : 0,
274 "ipv4_32" : 0
275 }
276 },
277 {
278 "::160.0.0.0/101" : {
279 "ipv4_24" : 0,
280 "ipv4_32" : 0
281 }
282 },
283 {
284 "::168.0.0.0/104" : {
285 "ipv4_24" : 0,
286 "ipv4_32" : 0
287 }
288 },
289 {
290 "::169.0.0.0/105" : {
291 "ipv4_24" : 0,
292 "ipv4_32" : 0
293 }
294 },
295 {
296 "::169.128.0.0/106" : {
297 "ipv4_24" : 0,
298 "ipv4_32" : 0
299 }
300 },
301 {
302 "::169.192.0.0/107" : {
303 "ipv4_24" : 0,
304 "ipv4_32" : 0
305 }
306 },
307 {
308 "::169.224.0.0/108" : {
309 "ipv4_24" : 0,
310 "ipv4_32" : 0
311 }
312 },
313 {
314 "::169.240.0.0/109" : {
315 "ipv4_24" : 0,
316 "ipv4_32" : 0
317 }
318 },
319 {
320 "::169.248.0.0/110" : {
321 "ipv4_24" : 0,
322 "ipv4_32" : 0
323 }
324 },
325 {
326 "::169.252.0.0/111" : {
327 "ipv4_24" : 0,
328 "ipv4_32" : 0
329 }
330 },
331 {
332 "::169.255.0.0/112" : {
333 "ipv4_24" : 0,
334 "ipv4_32" : 0
335 }
336 },
337 {
338 "::170.0.0.0/103" : {
339 "ipv4_24" : 0,
340 "ipv4_32" : 0
341 }
342 },
343 {
344 "::172.0.0.0/108" : {
345 "ipv4_24" : 0,
346 "ipv4_32" : 0
347 }
348 },
349 {
350 "::172.32.0.0/107" : {
351 "ipv4_24" : 0,
352 "ipv4_32" : 0
353 }
354 },
355 {
356 "::172.64.0.0/106" : {
357 "ipv4_24" : 0,
358 "ipv4_32" : 0
359 }
360 },
361 {
362 "::172.128.0.0/105" : {
363 "ipv4_24" : 0,
364 "ipv4_32" : 0
365 }
366 },
367 {
368 "::173.0.0.0/104" : {
369 "ipv4_24" : 0,
370 "ipv4_32" : 0
371 }
372 },
373 {
374 "::174.0.0.0/103" : {
375 "ipv4_24" : 0,
376 "ipv4_32" : 0
377 }
378 },
379 {
380 "::176.0.0.0/100" : {
381 "ipv4_24" : 0,
382 "ipv4_32" : 0
383 }
384 },
385 {
386 "::192.0.0.8/125" : {
387 "ipv4_24" : 0,
388 "ipv4_32" : 0
389 }
390 },
391 {
392 "::192.0.0.16/124" : {
393 "ipv4_24" : 0,
394 "ipv4_32" : 0
395 }
396 },
397 {
398 "::192.0.0.32/123" : {
399 "ipv4_24" : 0,
400 "ipv4_32" : 0
401 }
402 },
403 {
404 "::192.0.0.64/122" : {
405 "ipv4_24" : 0,
406 "ipv4_32" : 0
407 }
408 },
409 {
410 "::192.0.0.128/121" : {
411 "ipv4_24" : 0,
412 "ipv4_32" : 0
413 }
414 },
415 {
416 "::192.0.1.0/120" : {
417 "ipv4_24" : 0,
418 "ipv4_32" : 0
419 }
420 },
421 {
422 "::192.0.3.0/120" : {
423 "ipv4_24" : 0,
424 "ipv4_32" : 0
425 }
426 },
427 {
428 "::192.0.4.0/118" : {
429 "ipv4_24" : 0,
430 "ipv4_32" : 0
431 }
432 },
433 {
434 "::192.0.8.0/117" : {
435 "ipv4_24" : 0,
436 "ipv4_32" : 0
437 }
438 },
439 {
440 "::192.0.16.0/116" : {
441 "ipv4_24" : 0,
442 "ipv4_32" : 0
443 }
444 },
445 {
446 "::192.0.32.0/115" : {
447 "ipv4_24" : 0,
448 "ipv4_32" : 0
449 }
450 },
451 {
452 "::192.0.64.0/114" : {
453 "ipv4_24" : 0,
454 "ipv4_32" : 0
455 }
456 },
457 {
458 "::192.0.128.0/113" : {
459 "ipv4_24" : 0,
460 "ipv4_32" : 0
461 }
462 },
463 {
464 "::192.1.0.0/112" : {
465 "ipv4_24" : 0,
466 "ipv4_32" : 0
467 }
468 },
469 {
470 "::192.2.0.0/111" : {
471 "ipv4_24" : 0,
472 "ipv4_32" : 0
473 }
474 },
475 {
476 "::192.4.0.0/110" : {
477 "ipv4_24" : 0,
478 "ipv4_32" : 0
479 }
480 },
481 {
482 "::192.8.0.0/109" : {
483 "ipv4_24" : 0,
484 "ipv4_32" : 0
485 }
486 },
487 {
488 "::192.16.0.0/108" : {
489 "ipv4_24" : 0,
490 "ipv4_32" : 0
491 }
492 },
493 {
494 "::192.32.0.0/107" : {
495 "ipv4_24" : 0,
496 "ipv4_32" : 0
497 }
498 },
499 {
500 "::192.64.0.0/108" : {
501 "ipv4_24" : 0,
502 "ipv4_32" : 0
503 }
504 },
505 {
506 "::192.80.0.0/109" : {
507 "ipv4_24" : 0,
508 "ipv4_32" : 0
509 }
510 },
511 {
512 "::192.88.0.0/114" : {
513 "ipv4_24" : 0,
514 "ipv4_32" : 0
515 }
516 },
517 {
518 "::192.88.64.0/115" : {
519 "ipv4_24" : 0,
520 "ipv4_32" : 0
521 }
522 },
523 {
524 "::192.88.96.0/119" : {
525 "ipv4_24" : 0,
526 "ipv4_32" : 0
527 }
528 },
529 {
530 "::192.88.98.0/120" : {
531 "ipv4_24" : 0,
532 "ipv4_32" : 0
533 }
534 },
535 {
536 "::192.88.100.0/118" : {
537 "ipv4_24" : 0,
538 "ipv4_32" : 0
539 }
540 },
541 {
542 "::192.88.104.0/117" : {
543 "ipv4_24" : 0,
544 "ipv4_32" : 0
545 }
546 },
547 {
548 "::192.88.112.0/116" : {
549 "ipv4_24" : 0,
550 "ipv4_32" : 0
551 }
552 },
553 {
554 "::192.88.128.0/113" : {
555 "ipv4_24" : 0,
556 "ipv4_32" : 0
557 }
558 },
559 {
560 "::192.89.0.0/112" : {
561 "ipv4_24" : 0,
562 "ipv4_32" : 0
563 }
564 },
565 {
566 "::192.90.0.0/111" : {
567 "ipv4_24" : 0,
568 "ipv4_32" : 0
569 }
570 },
571 {
572 "::192.92.0.0/110" : {
573 "ipv4_24" : 0,
574 "ipv4_32" : 0
575 }
576 },
577 {
578 "::192.96.0.0/107" : {
579 "ipv4_24" : 0,
580 "ipv4_32" : 0
581 }
582 },
583 {
584 "::192.128.0.0/107" : {
585 "ipv4_24" : 0,
586 "ipv4_32" : 0
587 }
588 },
589 {
590 "::192.160.0.0/109" : {
591 "ipv4_24" : 0,
592 "ipv4_32" : 0
593 }
594 },
595 {
596 "::192.169.0.0/112" : {
597 "ipv4_24" : 0,
598 "ipv4_32" : 0
599 }
600 },
601 {
602 "::192.170.0.0/111" : {
603 "ipv4_24" : 0,
604 "ipv4_32" : 0
605 }
606 },
607 {
608 "::192.172.0.0/110" : {
609 "ipv4_24" : 0,
610 "ipv4_32" : 0
611 }
612 },
613 {
614 "::192.176.0.0/108" : {
615 "ipv4_24" : 0,
616 "ipv4_32" : 0
617 }
618 },
619 {
620 "::192.192.0.0/106" : {
621 "ipv4_24" : 0,
622 "ipv4_32" : 0
623 }
624 },
625 {
626 "::193.0.0.0/104" : {
627 "ipv4_24" : 0,
628 "ipv4_32" : 0
629 }
630 },
631 {
632 "::194.0.0.0/103" : {
633 "ipv4_24" : 0,
634 "ipv4_32" : 0
635 }
636 },
637 {
638 "::196.0.0.0/103" : {
639 "ipv4_24" : 0,
640 "ipv4_32" : 0
641 }
642 },
643 {
644 "::198.0.0.0/108" : {
645 "ipv4_24" : 0,
646 "ipv4_32" : 0
647 }
648 },
649 {
650 "::198.16.0.0/111" : {
651 "ipv4_24" : 0,
652 "ipv4_32" : 0
653 }
654 },
655 {
656 "::198.20.0.0/110" : {
657 "ipv4_24" : 0,
658 "ipv4_32" : 0
659 }
660 },
661 {
662 "::198.24.0.0/109" : {
663 "ipv4_24" : 0,
664 "ipv4_32" : 0
665 }
666 },
667 {
668 "::198.32.0.0/108" : {
669 "ipv4_24" : 0,
670 "ipv4_32" : 0
671 }
672 },
673 {
674 "::198.48.0.0/111" : {
675 "ipv4_24" : 0,
676 "ipv4_32" : 0
677 }
678 },
679 {
680 "::198.50.0.0/112" : {
681 "ipv4_24" : 0,
682 "ipv4_32" : 0
683 }
684 },
685 {
686 "::198.51.0.0/114" : {
687 "ipv4_24" : 0,
688 "ipv4_32" : 0
689 }
690 },
691 {
692 "::198.51.64.0/115" : {
693 "ipv4_24" : 0,
694 "ipv4_32" : 0
695 }
696 },
697 {
698 "::198.51.96.0/118" : {
699 "ipv4_24" : 0,
700 "ipv4_32" : 0
701 }
702 },
703 {
704 "::198.51.101.0/120" : {
705 "ipv4_24" : 0,
706 "ipv4_32" : 0
707 }
708 },
709 {
710 "::198.51.102.0/119" : {
711 "ipv4_24" : 0,
712 "ipv4_32" : 0
713 }
714 },
715 {
716 "::198.51.104.0/117" : {
717 "ipv4_24" : 0,
718 "ipv4_32" : 0
719 }
720 },
721 {
722 "::198.51.112.0/116" : {
723 "ipv4_24" : 0,
724 "ipv4_32" : 0
725 }
726 },
727 {
728 "::198.51.128.0/113" : {
729 "ipv4_24" : 0,
730 "ipv4_32" : 0
731 }
732 },
733 {
734 "::198.52.0.0/110" : {
735 "ipv4_24" : 0,
736 "ipv4_32" : 0
737 }
738 },
739 {
740 "::198.56.0.0/109" : {
741 "ipv4_24" : 0,
742 "ipv4_32" : 0
743 }
744 },
745 {
746 "::198.64.0.0/106" : {
747 "ipv4_24" : 0,
748 "ipv4_32" : 0
749 }
750 },
751 {
752 "::198.128.0.0/105" : {
753 "ipv4_24" : 0,
754 "ipv4_32" : 0
755 }
756 },
757 {
758 "::199.0.0.0/104" : {
759 "ipv4_24" : 0,
760 "ipv4_32" : 0
761 }
762 },
763 {
764 "::200.0.0.0/103" : {
765 "ipv4_24" : 0,
766 "ipv4_32" : 0
767 }
768 },
769 {
770 "::202.0.0.0/104" : {
771 "ipv4_24" : 0,
772 "ipv4_32" : 0
773 }
774 },
775 {
776 "::203.0.0.0/114" : {
777 "ipv4_24" : 0,
778 "ipv4_32" : 0
779 }
780 },
781 {
782 "::203.0.64.0/115" : {
783 "ipv4_24" : 0,
784 "ipv4_32" : 0
785 }
786 },
787 {
788 "::203.0.96.0/116" : {
789 "ipv4_24" : 0,
790 "ipv4_32" : 0
791 }
792 },
793 {
794 "::203.0.112.0/120" : {
795 "ipv4_24" : 0,
796 "ipv4_32" : 0
797 }
798 },
799 {
800 "::203.0.114.0/119" : {
801 "ipv4_24" : 0,
802 "ipv4_32" : 0
803 }
804 },
805 {
806 "::203.0.116.0/118" : {
807 "ipv4_24" : 0,
808 "ipv4_32" : 0
809 }
810 },
811 {
812 "::203.0.120.0/117" : {
813 "ipv4_24" : 0,
814 "ipv4_32" : 0
815 }
816 },
817 {
818 "::203.0.128.0/113" : {
819 "ipv4_24" : 0,
820 "ipv4_32" : 0
821 }
822 },
823 {
824 "::203.1.0.0/112" : {
825 "ipv4_24" : 0,
826 "ipv4_32" : 0
827 }
828 },
829 {
830 "::203.2.0.0/111" : {
831 "ipv4_24" : 0,
832 "ipv4_32" : 0
833 }
834 },
835 {
836 "::203.4.0.0/110" : {
837 "ipv4_24" : 0,
838 "ipv4_32" : 0
839 }
840 },
841 {
842 "::203.8.0.0/109" : {
843 "ipv4_24" : 0,
844 "ipv4_32" : 0
845 }
846 },
847 {
848 "::203.16.0.0/108" : {
849 "ipv4_24" : 0,
850 "ipv4_32" : 0
851 }
852 },
853 {
854 "::203.32.0.0/107" : {
855 "ipv4_24" : 0,
856 "ipv4_32" : 0
857 }
858 },
859 {
860 "::203.64.0.0/106" : {
861 "ipv4_24" : 0,
862 "ipv4_32" : 0
863 }
864 },
865 {
866 "::203.128.0.0/105" : {
867 "ipv4_24" : 0,
868 "ipv4_32" : 0
869 }
870 },
871 {
872 "::204.0.0.0/102" : {
873 "ipv4_24" : 0,
874 "ipv4_32" : 0
875 }
876 },
877 {
878 "::208.0.0.0/100" : {
879 "ipv4_24" : 0,
880 "ipv4_32" : 0
881 }
882 },
883 {
884 "::1:0:0:0/80" : {
885 "ipv6_32" : 0,
886 "ipv6_48" : 0,
887 "ipv6_64" : 0
888 }
889 },
890 {
891 "::2:0:0:0/79" : {
892 "ipv6_32" : 0,
893 "ipv6_48" : 0,
894 "ipv6_64" : 0
895 }
896 },
897 {
898 "::4:0:0:0/78" : {
899 "ipv6_32" : 0,
900 "ipv6_48" : 0,
901 "ipv6_64" : 0
902 }
903 },
904 {
905 "::8:0:0:0/77" : {
906 "ipv6_32" : 0,
907 "ipv6_48" : 0,
908 "ipv6_64" : 0
909 }
910 },
911 {
912 "::10:0:0:0/76" : {
913 "ipv6_32" : 0,
914 "ipv6_48" : 0,
915 "ipv6_64" : 0
916 }
917 },
918 {
919 "::20:0:0:0/75" : {
920 "ipv6_32" : 0,
921 "ipv6_48" : 0,
922 "ipv6_64" : 0
923 }
924 },
925 {
926 "::40:0:0:0/74" : {
927 "ipv6_32" : 0,
928 "ipv6_48" : 0,
929 "ipv6_64" : 0
930 }
931 },
932 {
933 "::80:0:0:0/73" : {
934 "ipv6_32" : 0,
935 "ipv6_48" : 0,
936 "ipv6_64" : 0
937 }
938 },
939 {
940 "::100:0:0:0/72" : {
941 "ipv6_32" : 0,
942 "ipv6_48" : 0,
943 "ipv6_64" : 0
944 }
945 },
946 {
947 "::200:0:0:0/71" : {
948 "ipv6_32" : 0,
949 "ipv6_48" : 0,
950 "ipv6_64" : 0
951 }
952 },
953 {
954 "::400:0:0:0/70" : {
955 "ipv6_32" : 0,
956 "ipv6_48" : 0,
957 "ipv6_64" : 0
958 }
959 },
960 {
961 "::800:0:0:0/69" : {
962 "ipv6_32" : 0,
963 "ipv6_48" : 0,
964 "ipv6_64" : 0
965 }
966 },
967 {
968 "::1000:0:0:0/68" : {
969 "ipv6_32" : 0,
970 "ipv6_48" : 0,
971 "ipv6_64" : 0
972 }
973 },
974 {
975 "::2000:0:0:0/67" : {
976 "ipv6_32" : 0,
977 "ipv6_48" : 0,
978 "ipv6_64" : 0
979 }
980 },
981 {
982 "::4000:0:0:0/66" : {
983 "ipv6_32" : 0,
984 "ipv6_48" : 0,
985 "ipv6_64" : 0
986 }
987 },
988 {
989 "::8000:0:0:0/65" : {
990 "ipv6_32" : 0,
991 "ipv6_48" : 0,
992 "ipv6_64" : 0
993 }
994 },
995 {
996 "0:0:0:1::/64" : {
997 "ipv6_32" : 0,
998 "ipv6_48" : 0,
999 "ipv6_64" : 0
1000 }
1001 },
1002 {
1003 "0:0:0:2::/63" : {
1004 "ipv6_32" : 0,
1005 "ipv6_48" : 0,
1006 "ipv6_64" : 0
1007 }
1008 },
1009 {
1010 "0:0:0:4::/62" : {
1011 "ipv6_32" : 0,
1012 "ipv6_48" : 0,
1013 "ipv6_64" : 0
1014 }
1015 },
1016 {
1017 "0:0:0:8::/61" : {
1018 "ipv6_32" : 0,
1019 "ipv6_48" : 0,
1020 "ipv6_64" : 0
1021 }
1022 },
1023 {
1024 "0:0:0:10::/60" : {
1025 "ipv6_32" : 0,
1026 "ipv6_48" : 0,
1027 "ipv6_64" : 0
1028 }
1029 },
1030 {
1031 "0:0:0:20::/59" : {
1032 "ipv6_32" : 0,
1033 "ipv6_48" : 0,
1034 "ipv6_64" : 0
1035 }
1036 },
1037 {
1038 "0:0:0:40::/58" : {
1039 "ipv6_32" : 0,
1040 "ipv6_48" : 0,
1041 "ipv6_64" : 0
1042 }
1043 },
1044 {
1045 "0:0:0:80::/57" : {
1046 "ipv6_32" : 0,
1047 "ipv6_48" : 0,
1048 "ipv6_64" : 0
1049 }
1050 },
1051 {
1052 "0:0:0:100::/56" : {
1053 "ipv6_32" : 0,
1054 "ipv6_48" : 0,
1055 "ipv6_64" : 0
1056 }
1057 },
1058 {
1059 "0:0:0:200::/55" : {
1060 "ipv6_32" : 0,
1061 "ipv6_48" : 0,
1062 "ipv6_64" : 0
1063 }
1064 },
1065 {
1066 "0:0:0:400::/54" : {
1067 "ipv6_32" : 0,
1068 "ipv6_48" : 0,
1069 "ipv6_64" : 0
1070 }
1071 },
1072 {
1073 "0:0:0:800::/53" : {
1074 "ipv6_32" : 0,
1075 "ipv6_48" : 0,
1076 "ipv6_64" : 0
1077 }
1078 },
1079 {
1080 "0:0:0:1000::/52" : {
1081 "ipv6_32" : 0,
1082 "ipv6_48" : 0,
1083 "ipv6_64" : 0
1084 }
1085 },
1086 {
1087 "0:0:0:2000::/51" : {
1088 "ipv6_32" : 0,
1089 "ipv6_48" : 0,
1090 "ipv6_64" : 0
1091 }
1092 },
1093 {
1094 "0:0:0:4000::/50" : {
1095 "ipv6_32" : 0,
1096 "ipv6_48" : 0,
1097 "ipv6_64" : 0
1098 }
1099 },
1100 {
1101 "0:0:0:8000::/49" : {
1102 "ipv6_32" : 0,
1103 "ipv6_48" : 0,
1104 "ipv6_64" : 0
1105 }
1106 },
1107 {
1108 "0:0:1::/48" : {
1109 "ipv6_32" : 0,
1110 "ipv6_48" : 0,
1111 "ipv6_64" : 0
1112 }
1113 },
1114 {
1115 "0:0:2::/47" : {
1116 "ipv6_32" : 0,
1117 "ipv6_48" : 0,
1118 "ipv6_64" : 0
1119 }
1120 },
1121 {
1122 "0:0:4::/46" : {
1123 "ipv6_32" : 0,
1124 "ipv6_48" : 0,
1125 "ipv6_64" : 0
1126 }
1127 },
1128 {
1129 "0:0:8::/45" : {
1130 "ipv6_32" : 0,
1131 "ipv6_48" : 0,
1132 "ipv6_64" : 0
1133 }
1134 },
1135 {
1136 "0:0:10::/44" : {
1137 "ipv6_32" : 0,
1138 "ipv6_48" : 0,
1139 "ipv6_64" : 0
1140 }
1141 },
1142 {
1143 "0:0:20::/43" : {
1144 "ipv6_32" : 0,
1145 "ipv6_48" : 0,
1146 "ipv6_64" : 0
1147 }
1148 },
1149 {
1150 "0:0:40::/42" : {
1151 "ipv6_32" : 0,
1152 "ipv6_48" : 0,
1153 "ipv6_64" : 0
1154 }
1155 },
1156 {
1157 "0:0:80::/41" : {
1158 "ipv6_32" : 0,
1159 "ipv6_48" : 0,
1160 "ipv6_64" : 0
1161 }
1162 },
1163 {
1164 "0:0:100::/40" : {
1165 "ipv6_32" : 0,
1166 "ipv6_48" : 0,
1167 "ipv6_64" : 0
1168 }
1169 },
1170 {
1171 "0:0:200::/39" : {
1172 "ipv6_32" : 0,
1173 "ipv6_48" : 0,
1174 "ipv6_64" : 0
1175 }
1176 },
1177 {
1178 "0:0:400::/38" : {
1179 "ipv6_32" : 0,
1180 "ipv6_48" : 0,
1181 "ipv6_64" : 0
1182 }
1183 },
1184 {
1185 "0:0:800::/37" : {
1186 "ipv6_32" : 0,
1187 "ipv6_48" : 0,
1188 "ipv6_64" : 0
1189 }
1190 },
1191 {
1192 "0:0:1000::/36" : {
1193 "ipv6_32" : 0,
1194 "ipv6_48" : 0,
1195 "ipv6_64" : 0
1196 }
1197 },
1198 {
1199 "0:0:2000::/35" : {
1200 "ipv6_32" : 0,
1201 "ipv6_48" : 0,
1202 "ipv6_64" : 0
1203 }
1204 },
1205 {
1206 "0:0:4000::/34" : {
1207 "ipv6_32" : 0,
1208 "ipv6_48" : 0,
1209 "ipv6_64" : 0
1210 }
1211 },
1212 {
1213 "0:0:8000::/33" : {
1214 "ipv6_32" : 0,
1215 "ipv6_48" : 0,
1216 "ipv6_64" : 0
1217 }
1218 },
1219 {
1220 "0:1::/32" : {
1221 "ipv6_32" : 0,
1222 "ipv6_48" : 0,
1223 "ipv6_64" : 0
1224 }
1225 },
1226 {
1227 "0:2::/31" : {
1228 "ipv6_32" : 0,
1229 "ipv6_48" : 0,
1230 "ipv6_64" : 0
1231 }
1232 },
1233 {
1234 "0:4::/30" : {
1235 "ipv6_32" : 0,
1236 "ipv6_48" : 0,
1237 "ipv6_64" : 0
1238 }
1239 },
1240 {
1241 "0:8::/29" : {
1242 "ipv6_32" : 0,
1243 "ipv6_48" : 0,
1244 "ipv6_64" : 0
1245 }
1246 },
1247 {
1248 "0:10::/28" : {
1249 "ipv6_32" : 0,
1250 "ipv6_48" : 0,
1251 "ipv6_64" : 0
1252 }
1253 },
1254 {
1255 "0:20::/27" : {
1256 "ipv6_32" : 0,
1257 "ipv6_48" : 0,
1258 "ipv6_64" : 0
1259 }
1260 },
1261 {
1262 "0:40::/26" : {
1263 "ipv6_32" : 0,
1264 "ipv6_48" : 0,
1265 "ipv6_64" : 0
1266 }
1267 },
1268 {
1269 "0:80::/25" : {
1270 "ipv6_32" : 0,
1271 "ipv6_48" : 0,
1272 "ipv6_64" : 0
1273 }
1274 },
1275 {
1276 "0:100::/24" : {
1277 "ipv6_32" : 0,
1278 "ipv6_48" : 0,
1279 "ipv6_64" : 0
1280 }
1281 },
1282 {
1283 "0:200::/23" : {
1284 "ipv6_32" : 0,
1285 "ipv6_48" : 0,
1286 "ipv6_64" : 0
1287 }
1288 },
1289 {
1290 "0:400::/22" : {
1291 "ipv6_32" : 0,
1292 "ipv6_48" : 0,
1293 "ipv6_64" : 0
1294 }
1295 },
1296 {
1297 "0:800::/21" : {
1298 "ipv6_32" : 0,
1299 "ipv6_48" : 0,
1300 "ipv6_64" : 0
1301 }
1302 },
1303 {
1304 "0:1000::/20" : {
1305 "ipv6_32" : 0,
1306 "ipv6_48" : 0,
1307 "ipv6_64" : 0
1308 }
1309 },
1310 {
1311 "0:2000::/19" : {
1312 "ipv6_32" : 0,
1313 "ipv6_48" : 0,
1314 "ipv6_64" : 0
1315 }
1316 },
1317 {
1318 "0:4000::/18" : {
1319 "ipv6_32" : 0,
1320 "ipv6_48" : 0,
1321 "ipv6_64" : 0
1322 }
1323 },
1324 {
1325 "0:8000::/17" : {
1326 "ipv6_32" : 0,
1327 "ipv6_48" : 0,
1328 "ipv6_64" : 0
1329 }
1330 },
1331 {
1332 "1::/16" : {
1333 "ipv6_32" : 0,
1334 "ipv6_48" : 0,
1335 "ipv6_64" : 0
1336 }
1337 },
1338 {
1339 "2::/15" : {
1340 "ipv6_32" : 0,
1341 "ipv6_48" : 0,
1342 "ipv6_64" : 0
1343 }
1344 },
1345 {
1346 "4::/14" : {
1347 "ipv6_32" : 0,
1348 "ipv6_48" : 0,
1349 "ipv6_64" : 0
1350 }
1351 },
1352 {
1353 "8::/13" : {
1354 "ipv6_32" : 0,
1355 "ipv6_48" : 0,
1356 "ipv6_64" : 0
1357 }
1358 },
1359 {
1360 "10::/12" : {
1361 "ipv6_32" : 0,
1362 "ipv6_48" : 0,
1363 "ipv6_64" : 0
1364 }
1365 },
1366 {
1367 "20::/11" : {
1368 "ipv6_32" : 0,
1369 "ipv6_48" : 0,
1370 "ipv6_64" : 0
1371 }
1372 },
1373 {
1374 "40::/10" : {
1375 "ipv6_32" : 0,
1376 "ipv6_48" : 0,
1377 "ipv6_64" : 0
1378 }
1379 },
1380 {
1381 "80::/9" : {
1382 "ipv6_32" : 0,
1383 "ipv6_48" : 0,
1384 "ipv6_64" : 0
1385 }
1386 },
1387 {
1388 "100:0:0:1::/64" : {
1389 "ipv6_32" : 0,
1390 "ipv6_48" : 0,
1391 "ipv6_64" : 0
1392 }
1393 },
1394 {
1395 "100:0:0:2::/63" : {
1396 "ipv6_32" : 0,
1397 "ipv6_48" : 0,
1398 "ipv6_64" : 0
1399 }
1400 },
1401 {
1402 "100:0:0:4::/62" : {
1403 "ipv6_32" : 0,
1404 "ipv6_48" : 0,
1405 "ipv6_64" : 0
1406 }
1407 },
1408 {
1409 "100:0:0:8::/61" : {
1410 "ipv6_32" : 0,
1411 "ipv6_48" : 0,
1412 "ipv6_64" : 0
1413 }
1414 },
1415 {
1416 "100:0:0:10::/60" : {
1417 "ipv6_32" : 0,
1418 "ipv6_48" : 0,
1419 "ipv6_64" : 0
1420 }
1421 },
1422 {
1423 "100:0:0:20::/59" : {
1424 "ipv6_32" : 0,
1425 "ipv6_48" : 0,
1426 "ipv6_64" : 0
1427 }
1428 },
1429 {
1430 "100:0:0:40::/58" : {
1431 "ipv6_32" : 0,
1432 "ipv6_48" : 0,
1433 "ipv6_64" : 0
1434 }
1435 },
1436 {
1437 "100:0:0:80::/57" : {
1438 "ipv6_32" : 0,
1439 "ipv6_48" : 0,
1440 "ipv6_64" : 0
1441 }
1442 },
1443 {
1444 "100:0:0:100::/56" : {
1445 "ipv6_32" : 0,
1446 "ipv6_48" : 0,
1447 "ipv6_64" : 0
1448 }
1449 },
1450 {
1451 "100:0:0:200::/55" : {
1452 "ipv6_32" : 0,
1453 "ipv6_48" : 0,
1454 "ipv6_64" : 0
1455 }
1456 },
1457 {
1458 "100:0:0:400::/54" : {
1459 "ipv6_32" : 0,
1460 "ipv6_48" : 0,
1461 "ipv6_64" : 0
1462 }
1463 },
1464 {
1465 "100:0:0:800::/53" : {
1466 "ipv6_32" : 0,
1467 "ipv6_48" : 0,
1468 "ipv6_64" : 0
1469 }
1470 },
1471 {
1472 "100:0:0:1000::/52" : {
1473 "ipv6_32" : 0,
1474 "ipv6_48" : 0,
1475 "ipv6_64" : 0
1476 }
1477 },
1478 {
1479 "100:0:0:2000::/51" : {
1480 "ipv6_32" : 0,
1481 "ipv6_48" : 0,
1482 "ipv6_64" : 0
1483 }
1484 },
1485 {
1486 "100:0:0:4000::/50" : {
1487 "ipv6_32" : 0,
1488 "ipv6_48" : 0,
1489 "ipv6_64" : 0
1490 }
1491 },
1492 {
1493 "100:0:0:8000::/49" : {
1494 "ipv6_32" : 0,
1495 "ipv6_48" : 0,
1496 "ipv6_64" : 0
1497 }
1498 },
1499 {
1500 "100:0:1::/48" : {
1501 "ipv6_32" : 0,
1502 "ipv6_48" : 0,
1503 "ipv6_64" : 0
1504 }
1505 },
1506 {
1507 "100:0:2::/47" : {
1508 "ipv6_32" : 0,
1509 "ipv6_48" : 0,
1510 "ipv6_64" : 0
1511 }
1512 },
1513 {
1514 "100:0:4::/46" : {
1515 "ipv6_32" : 0,
1516 "ipv6_48" : 0,
1517 "ipv6_64" : 0
1518 }
1519 },
1520 {
1521 "100:0:8::/45" : {
1522 "ipv6_32" : 0,
1523 "ipv6_48" : 0,
1524 "ipv6_64" : 0
1525 }
1526 },
1527 {
1528 "100:0:10::/44" : {
1529 "ipv6_32" : 0,
1530 "ipv6_48" : 0,
1531 "ipv6_64" : 0
1532 }
1533 },
1534 {
1535 "100:0:20::/43" : {
1536 "ipv6_32" : 0,
1537 "ipv6_48" : 0,
1538 "ipv6_64" : 0
1539 }
1540 },
1541 {
1542 "100:0:40::/42" : {
1543 "ipv6_32" : 0,
1544 "ipv6_48" : 0,
1545 "ipv6_64" : 0
1546 }
1547 },
1548 {
1549 "100:0:80::/41" : {
1550 "ipv6_32" : 0,
1551 "ipv6_48" : 0,
1552 "ipv6_64" : 0
1553 }
1554 },
1555 {
1556 "100:0:100::/40" : {
1557 "ipv6_32" : 0,
1558 "ipv6_48" : 0,
1559 "ipv6_64" : 0
1560 }
1561 },
1562 {
1563 "100:0:200::/39" : {
1564 "ipv6_32" : 0,
1565 "ipv6_48" : 0,
1566 "ipv6_64" : 0
1567 }
1568 },
1569 {
1570 "100:0:400::/38" : {
1571 "ipv6_32" : 0,
1572 "ipv6_48" : 0,
1573 "ipv6_64" : 0
1574 }
1575 },
1576 {
1577 "100:0:800::/37" : {
1578 "ipv6_32" : 0,
1579 "ipv6_48" : 0,
1580 "ipv6_64" : 0
1581 }
1582 },
1583 {
1584 "100:0:1000::/36" : {
1585 "ipv6_32" : 0,
1586 "ipv6_48" : 0,
1587 "ipv6_64" : 0
1588 }
1589 },
1590 {
1591 "100:0:2000::/35" : {
1592 "ipv6_32" : 0,
1593 "ipv6_48" : 0,
1594 "ipv6_64" : 0
1595 }
1596 },
1597 {
1598 "100:0:4000::/34" : {
1599 "ipv6_32" : 0,
1600 "ipv6_48" : 0,
1601 "ipv6_64" : 0
1602 }
1603 },
1604 {
1605 "100:0:8000::/33" : {
1606 "ipv6_32" : 0,
1607 "ipv6_48" : 0,
1608 "ipv6_64" : 0
1609 }
1610 },
1611 {
1612 "100:1::/32" : {
1613 "ipv6_32" : 0,
1614 "ipv6_48" : 0,
1615 "ipv6_64" : 0
1616 }
1617 },
1618 {
1619 "100:2::/31" : {
1620 "ipv6_32" : 0,
1621 "ipv6_48" : 0,
1622 "ipv6_64" : 0
1623 }
1624 },
1625 {
1626 "100:4::/30" : {
1627 "ipv6_32" : 0,
1628 "ipv6_48" : 0,
1629 "ipv6_64" : 0
1630 }
1631 },
1632 {
1633 "100:8::/29" : {
1634 "ipv6_32" : 0,
1635 "ipv6_48" : 0,
1636 "ipv6_64" : 0
1637 }
1638 },
1639 {
1640 "100:10::/28" : {
1641 "ipv6_32" : 0,
1642 "ipv6_48" : 0,
1643 "ipv6_64" : 0
1644 }
1645 },
1646 {
1647 "100:20::/27" : {
1648 "ipv6_32" : 0,
1649 "ipv6_48" : 0,
1650 "ipv6_64" : 0
1651 }
1652 },
1653 {
1654 "100:40::/26" : {
1655 "ipv6_32" : 0,
1656 "ipv6_48" : 0,
1657 "ipv6_64" : 0
1658 }
1659 },
1660 {
1661 "100:80::/25" : {
1662 "ipv6_32" : 0,
1663 "ipv6_48" : 0,
1664 "ipv6_64" : 0
1665 }
1666 },
1667 {
1668 "100:100::/24" : {
1669 "ipv6_32" : 0,
1670 "ipv6_48" : 0,
1671 "ipv6_64" : 0
1672 }
1673 },
1674 {
1675 "100:200::/23" : {
1676 "ipv6_32" : 0,
1677 "ipv6_48" : 0,
1678 "ipv6_64" : 0
1679 }
1680 },
1681 {
1682 "100:400::/22" : {
1683 "ipv6_32" : 0,
1684 "ipv6_48" : 0,
1685 "ipv6_64" : 0
1686 }
1687 },
1688 {
1689 "100:800::/21" : {
1690 "ipv6_32" : 0,
1691 "ipv6_48" : 0,
1692 "ipv6_64" : 0
1693 }
1694 },
1695 {
1696 "100:1000::/20" : {
1697 "ipv6_32" : 0,
1698 "ipv6_48" : 0,
1699 "ipv6_64" : 0
1700 }
1701 },
1702 {
1703 "100:2000::/19" : {
1704 "ipv6_32" : 0,
1705 "ipv6_48" : 0,
1706 "ipv6_64" : 0
1707 }
1708 },
1709 {
1710 "100:4000::/18" : {
1711 "ipv6_32" : 0,
1712 "ipv6_48" : 0,
1713 "ipv6_64" : 0
1714 }
1715 },
1716 {
1717 "100:8000::/17" : {
1718 "ipv6_32" : 0,
1719 "ipv6_48" : 0,
1720 "ipv6_64" : 0
1721 }
1722 },
1723 {
1724 "101::/16" : {
1725 "ipv6_32" : 0,
1726 "ipv6_48" : 0,
1727 "ipv6_64" : 0
1728 }
1729 },
1730 {
1731 "102::/15" : {
1732 "ipv6_32" : 0,
1733 "ipv6_48" : 0,
1734 "ipv6_64" : 0
1735 }
1736 },
1737 {
1738 "104::/14" : {
1739 "ipv6_32" : 0,
1740 "ipv6_48" : 0,
1741 "ipv6_64" : 0
1742 }
1743 },
1744 {
1745 "108::/13" : {
1746 "ipv6_32" : 0,
1747 "ipv6_48" : 0,
1748 "ipv6_64" : 0
1749 }
1750 },
1751 {
1752 "110::/12" : {
1753 "ipv6_32" : 0,
1754 "ipv6_48" : 0,
1755 "ipv6_64" : 0
1756 }
1757 },
1758 {
1759 "120::/11" : {
1760 "ipv6_32" : 0,
1761 "ipv6_48" : 0,
1762 "ipv6_64" : 0
1763 }
1764 },
1765 {
1766 "140::/10" : {
1767 "ipv6_32" : 0,
1768 "ipv6_48" : 0,
1769 "ipv6_64" : 0
1770 }
1771 },
1772 {
1773 "180::/9" : {
1774 "ipv6_32" : 0,
1775 "ipv6_48" : 0,
1776 "ipv6_64" : 0
1777 }
1778 },
1779 {
1780 "200::/7" : {
1781 "ipv6_32" : 0,
1782 "ipv6_48" : 0,
1783 "ipv6_64" : 0
1784 }
1785 },
1786 {
1787 "400::/6" : {
1788 "ipv6_32" : 0,
1789 "ipv6_48" : 0,
1790 "ipv6_64" : 0
1791 }
1792 },
1793 {
1794 "800::/5" : {
1795 "ipv6_32" : 0,
1796 "ipv6_48" : 0,
1797 "ipv6_64" : 0
1798 }
1799 },
1800 {
1801 "1000::/4" : {
1802 "ipv6_32" : 0,
1803 "ipv6_48" : 0,
1804 "ipv6_64" : 0
1805 }
1806 },
1807 {
1808 "2000::/16" : {
1809 "ipv6_32" : 0,
1810 "ipv6_48" : 0,
1811 "ipv6_64" : 0
1812 }
1813 },
1814 {
1815 "2001:200::/23" : {
1816 "ipv6_32" : 0,
1817 "ipv6_48" : 0,
1818 "ipv6_64" : 0
1819 }
1820 },
1821 {
1822 "2001:220::/128" : {
1823 "ipv6_32" : 1,
1824 "ipv6_48" : 1,
1825 "ipv6_64" : 1
1826 }
1827 },
1828 {
1829 "2001:400::/22" : {
1830 "ipv6_32" : 0,
1831 "ipv6_48" : 0,
1832 "ipv6_64" : 0
1833 }
1834 },
1835 {
1836 "2001:800::/22" : {
1837 "ipv6_32" : 0,
1838 "ipv6_48" : 0,
1839 "ipv6_64" : 0
1840 }
1841 },
1842 {
1843 "2001:c00::/24" : {
1844 "ipv6_32" : 0,
1845 "ipv6_48" : 0,
1846 "ipv6_64" : 0
1847 }
1848 },
1849 {
1850 "2001:d00::/25" : {
1851 "ipv6_32" : 0,
1852 "ipv6_48" : 0,
1853 "ipv6_64" : 0
1854 }
1855 },
1856 {
1857 "2001:d80::/27" : {
1858 "ipv6_32" : 0,
1859 "ipv6_48" : 0,
1860 "ipv6_64" : 0
1861 }
1862 },
1863 {
1864 "2001:da0::/28" : {
1865 "ipv6_32" : 0,
1866 "ipv6_48" : 0,
1867 "ipv6_64" : 0
1868 }
1869 },
1870 {
1871 "2001:db0::/29" : {
1872 "ipv6_32" : 0,
1873 "ipv6_48" : 0,
1874 "ipv6_64" : 0
1875 }
1876 },
1877 {
1878 "2001:db9::/32" : {
1879 "ipv6_32" : 0,
1880 "ipv6_48" : 0,
1881 "ipv6_64" : 0
1882 }
1883 },
1884 {
1885 "2001:dba::/31" : {
1886 "ipv6_32" : 0,
1887 "ipv6_48" : 0,
1888 "ipv6_64" : 0
1889 }
1890 },
1891 {
1892 "2001:dbc::/30" : {
1893 "ipv6_32" : 0,
1894 "ipv6_48" : 0,
1895 "ipv6_64" : 0
1896 }
1897 },
1898 {
1899 "2001:dc0::/26" : {
1900 "ipv6_32" : 0,
1901 "ipv6_48" : 0,
1902 "ipv6_64" : 0
1903 }
1904 },
1905 {
1906 "2001:e00::/23" : {
1907 "ipv6_32" : 0,
1908 "ipv6_48" : 0,
1909 "ipv6_64" : 0
1910 }
1911 },
1912 {
1913 "2001:1000::/20" : {
1914 "ipv6_32" : 0,
1915 "ipv6_48" : 0,
1916 "ipv6_64" : 0
1917 }
1918 },
1919 {
1920 "2001:2000::/19" : {
1921 "ipv6_32" : 0,
1922 "ipv6_48" : 0,
1923 "ipv6_64" : 0
1924 }
1925 },
1926 {
1927 "2001:4000::/18" : {
1928 "ipv6_32" : 0,
1929 "ipv6_48" : 0,
1930 "ipv6_64" : 0
1931 }
1932 },
1933 {
1934 "2001:8000::/18" : {
1935 "ipv6_32" : 0,
1936 "ipv6_48" : 0,
1937 "ipv6_64" : 0
1938 }
1939 },
1940 {
1941 "2001:c000::/19" : {
1942 "ipv6_32" : 0,
1943 "ipv6_48" : 0,
1944 "ipv6_64" : 0
1945 }
1946 },
1947 {
1948 "2001:e000::/21" : {
1949 "ipv6_32" : 0,
1950 "ipv6_48" : 0,
1951 "ipv6_64" : 0
1952 }
1953 },
1954 {
1955 "2001:e800::/22" : {
1956 "ipv6_32" : 0,
1957 "ipv6_48" : 0,
1958 "ipv6_64" : 0
1959 }
1960 },
1961 {
1962 "2001:ec00::/24" : {
1963 "ipv6_32" : 0,
1964 "ipv6_48" : 0,
1965 "ipv6_64" : 0
1966 }
1967 },
1968 {
1969 "2001:ed00::/25" : {
1970 "ipv6_32" : 0,
1971 "ipv6_48" : 0,
1972 "ipv6_64" : 0
1973 }
1974 },
1975 {
1976 "2001:ed80::/27" : {
1977 "ipv6_32" : 0,
1978 "ipv6_48" : 0,
1979 "ipv6_64" : 0
1980 }
1981 },
1982 {
1983 "2001:eda0::/28" : {
1984 "ipv6_32" : 0,
1985 "ipv6_48" : 0,
1986 "ipv6_64" : 0
1987 }
1988 },
1989 {
1990 "2001:edb0::/29" : {
1991 "ipv6_32" : 0,
1992 "ipv6_48" : 0,
1993 "ipv6_64" : 0
1994 }
1995 },
1996 {
1997 "2001:edb8::/48" : {
1998 "ipv6_32" : 5,
1999 "ipv6_48" : 0,
2000 "ipv6_64" : 0
2001 }
2002 },
2003 {
2004 "2001:edb8:1::/64" : {
2005 "ipv6_32" : 5,
2006 "ipv6_48" : 1,
2007 "ipv6_64" : 1
2008 }
2009 },
2010 {
2011 "2001:edb8:1:1::/64" : {
2012 "ipv6_32" : 5,
2013 "ipv6_48" : 1,
2014 "ipv6_64" : 0
2015 }
2016 },
2017 {
2018 "2001:edb8:1:2::/63" : {
2019 "ipv6_32" : 5,
2020 "ipv6_48" : 1,
2021 "ipv6_64" : 0
2022 }
2023 },
2024 {
2025 "2001:edb8:1:4::/62" : {
2026 "ipv6_32" : 5,
2027 "ipv6_48" : 1,
2028 "ipv6_64" : 0
2029 }
2030 },
2031 {
2032 "2001:edb8:1:8::/61" : {
2033 "ipv6_32" : 5,
2034 "ipv6_48" : 1,
2035 "ipv6_64" : 0
2036 }
2037 },
2038 {
2039 "2001:edb8:1:10::/60" : {
2040 "ipv6_32" : 5,
2041 "ipv6_48" : 1,
2042 "ipv6_64" : 0
2043 }
2044 },
2045 {
2046 "2001:edb8:1:20::/59" : {
2047 "ipv6_32" : 5,
2048 "ipv6_48" : 1,
2049 "ipv6_64" : 0
2050 }
2051 },
2052 {
2053 "2001:edb8:1:40::/58" : {
2054 "ipv6_32" : 5,
2055 "ipv6_48" : 1,
2056 "ipv6_64" : 0
2057 }
2058 },
2059 {
2060 "2001:edb8:1:80::/57" : {
2061 "ipv6_32" : 5,
2062 "ipv6_48" : 1,
2063 "ipv6_64" : 0
2064 }
2065 },
2066 {
2067 "2001:edb8:1:100::/56" : {
2068 "ipv6_32" : 5,
2069 "ipv6_48" : 1,
2070 "ipv6_64" : 0
2071 }
2072 },
2073 {
2074 "2001:edb8:1:200::/55" : {
2075 "ipv6_32" : 5,
2076 "ipv6_48" : 1,
2077 "ipv6_64" : 0
2078 }
2079 },
2080 {
2081 "2001:edb8:1:400::/54" : {
2082 "ipv6_32" : 5,
2083 "ipv6_48" : 1,
2084 "ipv6_64" : 0
2085 }
2086 },
2087 {
2088 "2001:edb8:1:800::/53" : {
2089 "ipv6_32" : 5,
2090 "ipv6_48" : 1,
2091 "ipv6_64" : 0
2092 }
2093 },
2094 {
2095 "2001:edb8:1:1000::/52" : {
2096 "ipv6_32" : 5,
2097 "ipv6_48" : 1,
2098 "ipv6_64" : 0
2099 }
2100 },
2101 {
2102 "2001:edb8:1:2000::/51" : {
2103 "ipv6_32" : 5,
2104 "ipv6_48" : 1,
2105 "ipv6_64" : 0
2106 }
2107 },
2108 {
2109 "2001:edb8:1:4000::/50" : {
2110 "ipv6_32" : 5,
2111 "ipv6_48" : 1,
2112 "ipv6_64" : 0
2113 }
2114 },
2115 {
2116 "2001:edb8:1:8000::/49" : {
2117 "ipv6_32" : 5,
2118 "ipv6_48" : 1,
2119 "ipv6_64" : 0
2120 }
2121 },
2122 {
2123 "2001:edb8:2::/47" : {
2124 "ipv6_32" : 5,
2125 "ipv6_48" : 0,
2126 "ipv6_64" : 0
2127 }
2128 },
2129 {
2130 "2001:edb8:4::/46" : {
2131 "ipv6_32" : 5,
2132 "ipv6_48" : 0,
2133 "ipv6_64" : 0
2134 }
2135 },
2136 {
2137 "2001:edb8:8::/45" : {
2138 "ipv6_32" : 5,
2139 "ipv6_48" : 0,
2140 "ipv6_64" : 0
2141 }
2142 },
2143 {
2144 "2001:edb8:10::/44" : {
2145 "ipv6_32" : 5,
2146 "ipv6_48" : 0,
2147 "ipv6_64" : 0
2148 }
2149 },
2150 {
2151 "2001:edb8:20::/43" : {
2152 "ipv6_32" : 5,
2153 "ipv6_48" : 0,
2154 "ipv6_64" : 0
2155 }
2156 },
2157 {
2158 "2001:edb8:40::/42" : {
2159 "ipv6_32" : 5,
2160 "ipv6_48" : 0,
2161 "ipv6_64" : 0
2162 }
2163 },
2164 {
2165 "2001:edb8:80::/41" : {
2166 "ipv6_32" : 5,
2167 "ipv6_48" : 0,
2168 "ipv6_64" : 0
2169 }
2170 },
2171 {
2172 "2001:edb8:100::/40" : {
2173 "ipv6_32" : 5,
2174 "ipv6_48" : 0,
2175 "ipv6_64" : 0
2176 }
2177 },
2178 {
2179 "2001:edb8:200::/39" : {
2180 "ipv6_32" : 5,
2181 "ipv6_48" : 0,
2182 "ipv6_64" : 0
2183 }
2184 },
2185 {
2186 "2001:edb8:400::/38" : {
2187 "ipv6_32" : 5,
2188 "ipv6_48" : 0,
2189 "ipv6_64" : 0
2190 }
2191 },
2192 {
2193 "2001:edb8:800::/37" : {
2194 "ipv6_32" : 5,
2195 "ipv6_48" : 0,
2196 "ipv6_64" : 0
2197 }
2198 },
2199 {
2200 "2001:edb8:1000::/36" : {
2201 "ipv6_32" : 5,
2202 "ipv6_48" : 0,
2203 "ipv6_64" : 0
2204 }
2205 },
2206 {
2207 "2001:edb8:2000::/35" : {
2208 "ipv6_32" : 5,
2209 "ipv6_48" : 0,
2210 "ipv6_64" : 0
2211 }
2212 },
2213 {
2214 "2001:edb8:4000::/34" : {
2215 "ipv6_32" : 5,
2216 "ipv6_48" : 0,
2217 "ipv6_64" : 0
2218 }
2219 },
2220 {
2221 "2001:edb8:8000::/38" : {
2222 "ipv6_32" : 5,
2223 "ipv6_48" : 0,
2224 "ipv6_64" : 0
2225 }
2226 },
2227 {
2228 "2001:edb8:8400::/40" : {
2229 "ipv6_32" : 5,
2230 "ipv6_48" : 0,
2231 "ipv6_64" : 0
2232 }
2233 },
2234 {
2235 "2001:edb8:8500::/41" : {
2236 "ipv6_32" : 5,
2237 "ipv6_48" : 0,
2238 "ipv6_64" : 0
2239 }
2240 },
2241 {
2242 "2001:edb8:8580::/43" : {
2243 "ipv6_32" : 5,
2244 "ipv6_48" : 0,
2245 "ipv6_64" : 0
2246 }
2247 },
2248 {
2249 "2001:edb8:85a0::/47" : {
2250 "ipv6_32" : 5,
2251 "ipv6_48" : 0,
2252 "ipv6_64" : 0
2253 }
2254 },
2255 {
2256 "2001:edb8:85a2::/48" : {
2257 "ipv6_32" : 5,
2258 "ipv6_48" : 0,
2259 "ipv6_64" : 0
2260 }
2261 },
2262 {
2263 "2001:edb8:85a3::/64" : {
2264 "ipv6_32" : 5,
2265 "ipv6_48" : 4,
2266 "ipv6_64" : 3
2267 }
2268 },
2269 {
2270 "2001:edb8:85a3:1::/64" : {
2271 "ipv6_32" : 5,
2272 "ipv6_48" : 4,
2273 "ipv6_64" : 2
2274 }
2275 },
2276 {
2277 "2001:edb8:85a3:2::/63" : {
2278 "ipv6_32" : 5,
2279 "ipv6_48" : 4,
2280 "ipv6_64" : 0
2281 }
2282 },
2283 {
2284 "2001:edb8:85a3:4::/62" : {
2285 "ipv6_32" : 5,
2286 "ipv6_48" : 4,
2287 "ipv6_64" : 0
2288 }
2289 },
2290 {
2291 "2001:edb8:85a3:8::/61" : {
2292 "ipv6_32" : 5,
2293 "ipv6_48" : 4,
2294 "ipv6_64" : 0
2295 }
2296 },
2297 {
2298 "2001:edb8:85a3:10::/60" : {
2299 "ipv6_32" : 5,
2300 "ipv6_48" : 4,
2301 "ipv6_64" : 0
2302 }
2303 },
2304 {
2305 "2001:edb8:85a3:20::/59" : {
2306 "ipv6_32" : 5,
2307 "ipv6_48" : 4,
2308 "ipv6_64" : 0
2309 }
2310 },
2311 {
2312 "2001:edb8:85a3:40::/58" : {
2313 "ipv6_32" : 5,
2314 "ipv6_48" : 4,
2315 "ipv6_64" : 0
2316 }
2317 },
2318 {
2319 "2001:edb8:85a3:80::/57" : {
2320 "ipv6_32" : 5,
2321 "ipv6_48" : 4,
2322 "ipv6_64" : 0
2323 }
2324 },
2325 {
2326 "2001:edb8:85a3:100::/56" : {
2327 "ipv6_32" : 5,
2328 "ipv6_48" : 4,
2329 "ipv6_64" : 0
2330 }
2331 },
2332 {
2333 "2001:edb8:85a3:200::/55" : {
2334 "ipv6_32" : 5,
2335 "ipv6_48" : 4,
2336 "ipv6_64" : 0
2337 }
2338 },
2339 {
2340 "2001:edb8:85a3:400::/54" : {
2341 "ipv6_32" : 5,
2342 "ipv6_48" : 4,
2343 "ipv6_64" : 0
2344 }
2345 },
2346 {
2347 "2001:edb8:85a3:800::/53" : {
2348 "ipv6_32" : 5,
2349 "ipv6_48" : 4,
2350 "ipv6_64" : 0
2351 }
2352 },
2353 {
2354 "2001:edb8:85a3:1000::/52" : {
2355 "ipv6_32" : 5,
2356 "ipv6_48" : 4,
2357 "ipv6_64" : 0
2358 }
2359 },
2360 {
2361 "2001:edb8:85a3:2000::/51" : {
2362 "ipv6_32" : 5,
2363 "ipv6_48" : 4,
2364 "ipv6_64" : 0
2365 }
2366 },
2367 {
2368 "2001:edb8:85a3:4000::/50" : {
2369 "ipv6_32" : 5,
2370 "ipv6_48" : 4,
2371 "ipv6_64" : 0
2372 }
2373 },
2374 {
2375 "2001:edb8:85a3:8000::/49" : {
2376 "ipv6_32" : 5,
2377 "ipv6_48" : 4,
2378 "ipv6_64" : 0
2379 }
2380 },
2381 {
2382 "2001:edb8:85a4::/46" : {
2383 "ipv6_32" : 5,
2384 "ipv6_48" : 0,
2385 "ipv6_64" : 0
2386 }
2387 },
2388 {
2389 "2001:edb8:85a8::/45" : {
2390 "ipv6_32" : 5,
2391 "ipv6_48" : 0,
2392 "ipv6_64" : 0
2393 }
2394 },
2395 {
2396 "2001:edb8:85b0::/44" : {
2397 "ipv6_32" : 5,
2398 "ipv6_48" : 0,
2399 "ipv6_64" : 0
2400 }
2401 },
2402 {
2403 "2001:edb8:85c0::/42" : {
2404 "ipv6_32" : 5,
2405 "ipv6_48" : 0,
2406 "ipv6_64" : 0
2407 }
2408 },
2409 {
2410 "2001:edb8:8600::/39" : {
2411 "ipv6_32" : 5,
2412 "ipv6_48" : 0,
2413 "ipv6_64" : 0
2414 }
2415 },
2416 {
2417 "2001:edb8:8800::/37" : {
2418 "ipv6_32" : 5,
2419 "ipv6_48" : 0,
2420 "ipv6_64" : 0
2421 }
2422 },
2423 {
2424 "2001:edb8:9000::/36" : {
2425 "ipv6_32" : 5,
2426 "ipv6_48" : 0,
2427 "ipv6_64" : 0
2428 }
2429 },
2430 {
2431 "2001:edb8:a000::/35" : {
2432 "ipv6_32" : 5,
2433 "ipv6_48" : 0,
2434 "ipv6_64" : 0
2435 }
2436 },
2437 {
2438 "2001:edb8:c000::/36" : {
2439 "ipv6_32" : 5,
2440 "ipv6_48" : 0,
2441 "ipv6_64" : 0
2442 }
2443 },
2444 {
2445 "2001:edb8:d000::/37" : {
2446 "ipv6_32" : 5,
2447 "ipv6_48" : 0,
2448 "ipv6_64" : 0
2449 }
2450 },
2451 {
2452 "2001:edb8:d800::/38" : {
2453 "ipv6_32" : 5,
2454 "ipv6_48" : 0,
2455 "ipv6_64" : 0
2456 }
2457 },
2458 {
2459 "2001:edb8:dc00::/39" : {
2460 "ipv6_32" : 5,
2461 "ipv6_48" : 0,
2462 "ipv6_64" : 0
2463 }
2464 },
2465 {
2466 "2001:edb8:de00::/41" : {
2467 "ipv6_32" : 5,
2468 "ipv6_48" : 0,
2469 "ipv6_64" : 0
2470 }
2471 },
2472 {
2473 "2001:edb8:de80::/43" : {
2474 "ipv6_32" : 5,
2475 "ipv6_48" : 0,
2476 "ipv6_64" : 0
2477 }
2478 },
2479 {
2480 "2001:edb8:dea0::/45" : {
2481 "ipv6_32" : 5,
2482 "ipv6_48" : 0,
2483 "ipv6_64" : 0
2484 }
2485 },
2486 {
2487 "2001:edb8:dea8::/46" : {
2488 "ipv6_32" : 5,
2489 "ipv6_48" : 0,
2490 "ipv6_64" : 0
2491 }
2492 },
2493 {
2494 "2001:edb8:deac::/48" : {
2495 "ipv6_32" : 5,
2496 "ipv6_48" : 0,
2497 "ipv6_64" : 0
2498 }
2499 },
2500 {
2501 "2001:edb8:dead::/49" : {
2502 "ipv6_32" : 5,
2503 "ipv6_48" : 2,
2504 "ipv6_64" : 0
2505 }
2506 },
2507 {
2508 "2001:edb8:dead:8000::/50" : {
2509 "ipv6_32" : 5,
2510 "ipv6_48" : 2,
2511 "ipv6_64" : 0
2512 }
2513 },
2514 {
2515 "2001:edb8:dead:c000::/52" : {
2516 "ipv6_32" : 5,
2517 "ipv6_48" : 2,
2518 "ipv6_64" : 0
2519 }
2520 },
2521 {
2522 "2001:edb8:dead:d000::/53" : {
2523 "ipv6_32" : 5,
2524 "ipv6_48" : 2,
2525 "ipv6_64" : 0
2526 }
2527 },
2528 {
2529 "2001:edb8:dead:d800::/54" : {
2530 "ipv6_32" : 5,
2531 "ipv6_48" : 2,
2532 "ipv6_64" : 0
2533 }
2534 },
2535 {
2536 "2001:edb8:dead:dc00::/55" : {
2537 "ipv6_32" : 5,
2538 "ipv6_48" : 2,
2539 "ipv6_64" : 0
2540 }
2541 },
2542 {
2543 "2001:edb8:dead:de00::/57" : {
2544 "ipv6_32" : 5,
2545 "ipv6_48" : 2,
2546 "ipv6_64" : 0
2547 }
2548 },
2549 {
2550 "2001:edb8:dead:de80::/59" : {
2551 "ipv6_32" : 5,
2552 "ipv6_48" : 2,
2553 "ipv6_64" : 0
2554 }
2555 },
2556 {
2557 "2001:edb8:dead:dea0::/61" : {
2558 "ipv6_32" : 5,
2559 "ipv6_48" : 2,
2560 "ipv6_64" : 0
2561 }
2562 },
2563 {
2564 "2001:edb8:dead:dea8::/62" : {
2565 "ipv6_32" : 5,
2566 "ipv6_48" : 2,
2567 "ipv6_64" : 0
2568 }
2569 },
2570 {
2571 "2001:edb8:dead:deac::/64" : {
2572 "ipv6_32" : 5,
2573 "ipv6_48" : 2,
2574 "ipv6_64" : 0
2575 }
2576 },
2577 {
2578 "2001:edb8:dead:dead::/64" : {
2579 "ipv6_32" : 5,
2580 "ipv6_48" : 2,
2581 "ipv6_64" : 2
2582 }
2583 },
2584 {
2585 "2001:edb8:dead:deae::/63" : {
2586 "ipv6_32" : 5,
2587 "ipv6_48" : 2,
2588 "ipv6_64" : 0
2589 }
2590 },
2591 {
2592 "2001:edb8:dead:deb0::/60" : {
2593 "ipv6_32" : 5,
2594 "ipv6_48" : 2,
2595 "ipv6_64" : 0
2596 }
2597 },
2598 {
2599 "2001:edb8:dead:dec0::/58" : {
2600 "ipv6_32" : 5,
2601 "ipv6_48" : 2,
2602 "ipv6_64" : 0
2603 }
2604 },
2605 {
2606 "2001:edb8:dead:df00::/56" : {
2607 "ipv6_32" : 5,
2608 "ipv6_48" : 2,
2609 "ipv6_64" : 0
2610 }
2611 },
2612 {
2613 "2001:edb8:dead:e000::/51" : {
2614 "ipv6_32" : 5,
2615 "ipv6_48" : 2,
2616 "ipv6_64" : 0
2617 }
2618 },
2619 {
2620 "2001:edb8:deae::/47" : {
2621 "ipv6_32" : 5,
2622 "ipv6_48" : 0,
2623 "ipv6_64" : 0
2624 }
2625 },
2626 {
2627 "2001:edb8:deb0::/44" : {
2628 "ipv6_32" : 5,
2629 "ipv6_48" : 0,
2630 "ipv6_64" : 0
2631 }
2632 },
2633 {
2634 "2001:edb8:dec0::/42" : {
2635 "ipv6_32" : 5,
2636 "ipv6_48" : 0,
2637 "ipv6_64" : 0
2638 }
2639 },
2640 {
2641 "2001:edb8:df00::/40" : {
2642 "ipv6_32" : 5,
2643 "ipv6_48" : 0,
2644 "ipv6_64" : 0
2645 }
2646 },
2647 {
2648 "2001:edb8:e000::/35" : {
2649 "ipv6_32" : 5,
2650 "ipv6_48" : 0,
2651 "ipv6_64" : 0
2652 }
2653 },
2654 {
2655 "2001:edb9::/32" : {
2656 "ipv6_32" : 0,
2657 "ipv6_48" : 0,
2658 "ipv6_64" : 0
2659 }
2660 },
2661 {
2662 "2001:edba::/31" : {
2663 "ipv6_32" : 0,
2664 "ipv6_48" : 0,
2665 "ipv6_64" : 0
2666 }
2667 },
2668 {
2669 "2001:edbc::/30" : {
2670 "ipv6_32" : 0,
2671 "ipv6_48" : 0,
2672 "ipv6_64" : 0
2673 }
2674 },
2675 {
2676 "2001:edc0::/26" : {
2677 "ipv6_32" : 0,
2678 "ipv6_48" : 0,
2679 "ipv6_64" : 0
2680 }
2681 },
2682 {
2683 "2001:ee00::/23" : {
2684 "ipv6_32" : 0,
2685 "ipv6_48" : 0,
2686 "ipv6_64" : 0
2687 }
2688 },
2689 {
2690 "2001:f000::/20" : {
2691 "ipv6_32" : 0,
2692 "ipv6_48" : 0,
2693 "ipv6_64" : 0
2694 }
2695 },
2696 {
2697 "2003::/16" : {
2698 "ipv6_32" : 0,
2699 "ipv6_48" : 0,
2700 "ipv6_64" : 0
2701 }
2702 },
2703 {
2704 "2004::/14" : {
2705 "ipv6_32" : 0,
2706 "ipv6_48" : 0,
2707 "ipv6_64" : 0
2708 }
2709 },
2710 {
2711 "2008::/13" : {
2712 "ipv6_32" : 0,
2713 "ipv6_48" : 0,
2714 "ipv6_64" : 0
2715 }
2716 },
2717 {
2718 "2010::/12" : {
2719 "ipv6_32" : 0,
2720 "ipv6_48" : 0,
2721 "ipv6_64" : 0
2722 }
2723 },
2724 {
2725 "2020::/11" : {
2726 "ipv6_32" : 0,
2727 "ipv6_48" : 0,
2728 "ipv6_64" : 0
2729 }
2730 },
2731 {
2732 "2040::/10" : {
2733 "ipv6_32" : 0,
2734 "ipv6_48" : 0,
2735 "ipv6_64" : 0
2736 }
2737 },
2738 {
2739 "2080::/9" : {
2740 "ipv6_32" : 0,
2741 "ipv6_48" : 0,
2742 "ipv6_64" : 0
2743 }
2744 },
2745 {
2746 "2100::/8" : {
2747 "ipv6_32" : 0,
2748 "ipv6_48" : 0,
2749 "ipv6_64" : 0
2750 }
2751 },
2752 {
2753 "2200::/7" : {
2754 "ipv6_32" : 0,
2755 "ipv6_48" : 0,
2756 "ipv6_64" : 0
2757 }
2758 },
2759 {
2760 "2400::/6" : {
2761 "ipv6_32" : 0,
2762 "ipv6_48" : 0,
2763 "ipv6_64" : 0
2764 }
2765 },
2766 {
2767 "2800::/5" : {
2768 "ipv6_32" : 0,
2769 "ipv6_48" : 0,
2770 "ipv6_64" : 0
2771 }
2772 },
2773 {
2774 "3000::/4" : {
2775 "ipv6_32" : 0,
2776 "ipv6_48" : 0,
2777 "ipv6_64" : 0
2778 }
2779 },
2780 {
2781 "4000::/2" : {
2782 "ipv6_32" : 0,
2783 "ipv6_48" : 0,
2784 "ipv6_64" : 0
2785 }
2786 },
2787 {
2788 "8000::/2" : {
2789 "ipv6_32" : 0,
2790 "ipv6_48" : 0,
2791 "ipv6_64" : 0
2792 }
2793 },
2794 {
2795 "c000::/3" : {
2796 "ipv6_32" : 0,
2797 "ipv6_48" : 0,
2798 "ipv6_64" : 0
2799 }
2800 },
2801 {
2802 "e000::/4" : {
2803 "ipv6_32" : 0,
2804 "ipv6_48" : 0,
2805 "ipv6_64" : 0
2806 }
2807 },
2808 {
2809 "f000::/5" : {
2810 "ipv6_32" : 0,
2811 "ipv6_48" : 0,
2812 "ipv6_64" : 0
2813 }
2814 },
2815 {
2816 "f800::/6" : {
2817 "ipv6_32" : 0,
2818 "ipv6_48" : 0,
2819 "ipv6_64" : 0
2820 }
2821 },
2822 {
2823 "fe00::/9" : {
2824 "ipv6_32" : 0,
2825 "ipv6_48" : 0,
2826 "ipv6_64" : 0
2827 }
2828 },
2829 {
2830 "fec0::/10" : {
2831 "ipv6_32" : 0,
2832 "ipv6_48" : 0,
2833 "ipv6_64" : 0
2834 }
2835 }
2836 ]
+0
-37
test/data/source-data/GeoLite2-ASN-Test.json less more
0 [
1 {
2 "::1.128.0.0/107" : {
3 "autonomous_system_number" : 1221,
4 "autonomous_system_organization" : "Telstra Pty Ltd"
5 }
6 },
7 {
8 "::12.81.92.0/118" : {
9 "autonomous_system_number" : 7018,
10 "autonomous_system_organization" : "AT&T Services"
11 }
12 },
13 {
14 "::12.81.96.0/115" : {
15 "autonomous_system_number" : 7018
16 }
17 },
18 {
19 "2600:6000::/20" : {
20 "autonomous_system_number" : 237,
21 "autonomous_system_organization" : "Merit Network Inc."
22 }
23 },
24 {
25 "2600:7000::/24" : {
26 "autonomous_system_number" : 6939,
27 "autonomous_system_organization" : "Hurricane Electric, Inc."
28 }
29 },
30 {
31 "2600:7100::/24" : {
32 "autonomous_system_number" : 237,
33 "autonomous_system_organization" : "Merit Network Inc."
34 }
35 }
36 ]
+0
-15
test/data/source-data/README less more
0 All of these but the City and Enterprise files are JSON dumps of the databases
1 created by the GeoIP2 build integration tests
2 (TestFor::MM::Integration::GeoIP2::Build).
3
4 Additional data was added to match our legacy test databases.
5
6 The City file is of unknown origin.
7
8 The Enterprise file was a single example IP address, modified slightly to
9 include all fields. It now has more than that.
10
11 The Precision file was the normal Enterprise file with an additional marker
12 (128.101.101.101) to differentiate the two. It now contains additional
13 additions and changes as it is the database used in many MaxMind
14 integration tests.
test/data/test-data/GeoIP2-Anonymous-IP-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-City-Test-Broken-Double-Format.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-City-Test-Invalid-Node-Count.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-City-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-Connection-Type-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-Country-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-DensityIncome-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-Domain-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-Enterprise-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-ISP-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-Precision-Enterprise-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-Static-IP-Score-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoIP2-User-Count-Test.mmdb less more
Binary diff not shown
test/data/test-data/GeoLite2-ASN-Test.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-no-ipv4-search-tree.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-string-value-entries.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-broken-pointers-24.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-broken-search-tree-24.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-decoder.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-ipv4-24.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-ipv4-28.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-ipv4-32.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-ipv6-24.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-ipv6-28.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-ipv6-32.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-metadata-pointers.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-mixed-24.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-mixed-28.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-mixed-32.mmdb less more
Binary diff not shown
test/data/test-data/MaxMind-DB-test-nested.mmdb less more
Binary diff not shown
+0
-26
test/data/test-data/README.md less more
0 The write-test-dbs script will create a small set of test databases with a
1 variety of data and record sizes (24, 28, & 32 bit).
2
3 These test databases are useful for testing code that reads MaxMind DB files.
4
5 There is also a `maps-with-pointers.raw` file. This contains the raw output of
6 the MaxMind::DB::Writer::Serializer module, when given a series of maps which
7 share some keys and values. It is used to test that decoder code can handle
8 pointers to map keys and values, as well as to the whole map.
9
10 There are several ways to figure out what IP addresses are actually in the
11 test databases. You can take a look at the
12 [source-data directory](https://github.com/maxmind/MaxMind-DB/tree/master/source-data)
13 in this repository. This directory contains JSON files which are used to
14 generate many (but not all) of the database files.
15
16 You can also use the
17 [mmdb-dump-database script](https://github.com/maxmind/MaxMind-DB-Reader-perl/blob/master/eg/mmdb-dump-database)
18 in the
19 [MaxMind-DB-Reader-perl repository](https://github.com/maxmind/MaxMind-DB-Reader-perl).
20
21 Some databases are intentionally broken and cannot be dumped. You can look at
22 the
23 [script which generates these databases](https://github.com/maxmind/MaxMind-DB/blob/master/test-data/write-test-data.pl)
24 to see what IP addresses they include, which will be necessary for those
25 databases which cannot be dumped because they contain intentional errors.
test/data/test-data/maps-with-pointers.raw less more
Binary diff not shown
+0
-640
test/data/test-data/write-test-data.pl less more
0 #!/usr/bin/env perl
1
2 use strict;
3 use warnings;
4 use autodie;
5 use utf8;
6
7 use Cwd qw( abs_path );
8 use File::Basename qw( dirname );
9 use File::Slurper qw( read_binary write_binary );
10 use Cpanel::JSON::XS 4.16 qw( decode_json );
11 use Math::Int128 qw( MAX_UINT128 string_to_uint128 uint128 );
12 use MaxMind::DB::Writer::Serializer 0.100004;
13 use MaxMind::DB::Writer::Tree 0.100004;
14 use MaxMind::DB::Writer::Util qw( key_for_data );
15 use Net::Works::Network ();
16 use Test::MaxMind::DB::Common::Util qw( standard_test_metadata );
17
18 my $Dir = dirname( abs_path($0) );
19
20 sub main {
21 my @sizes = ( 24, 28, 32 );
22 my @ipv4_range = ( '1.1.1.1', '1.1.1.32' );
23
24 my @ipv4_subnets = Net::Works::Network->range_as_subnets(@ipv4_range);
25 for my $record_size (@sizes) {
26 write_test_db(
27 $record_size,
28 \@ipv4_subnets,
29 { ip_version => 4 },
30 'ipv4',
31 );
32 }
33
34 write_broken_pointers_test_db(
35 24,
36 \@ipv4_subnets,
37 { ip_version => 4 },
38 'broken-pointers',
39 );
40
41 write_broken_search_tree_db(
42 24,
43 \@ipv4_subnets,
44 { ip_version => 4 },
45 'broken-search-tree',
46 );
47
48 my @ipv6_subnets = Net::Works::Network->range_as_subnets(
49 '::1:ffff:ffff',
50 '::2:0000:0059'
51 );
52
53 for my $record_size (@sizes) {
54 write_test_db(
55 $record_size,
56 \@ipv6_subnets,
57 { ip_version => 6 },
58 'ipv6',
59 );
60
61 write_test_db(
62 $record_size,
63 [
64 @ipv6_subnets,
65 Net::Works::Network->range_as_subnets( @ipv4_range, 6 ),
66 ],
67 { ip_version => 6 },
68 'mixed',
69 );
70 }
71
72 write_decoder_test_db();
73 write_deeply_nested_structures_db();
74
75 write_geoip2_dbs();
76 write_broken_geoip2_city_db();
77 write_invalid_node_count();
78
79 write_no_ipv4_tree_db();
80
81 write_no_map_db( \@ipv4_subnets );
82
83 write_test_serialization_data();
84
85 write_db_with_metadata_pointers();
86 }
87
88 sub write_broken_pointers_test_db {
89 no warnings 'redefine';
90
91 my $orig_store_data = MaxMind::DB::Writer::Serializer->can('store_data');
92
93 # This breaks the value of the record for the 1.1.1.32 network, causing it
94 # to point outside the database.
95 local *MaxMind::DB::Writer::Serializer::store_data = sub {
96 my $data_pointer = shift->$orig_store_data(@_);
97 my $value = $_[1];
98 if ( ref($value) eq 'HASH'
99 && exists $value->{ip}
100 && $value->{ip} eq '1.1.1.32' ) {
101
102 $data_pointer += 100_000;
103 }
104 return $data_pointer;
105 };
106
107 # The next hack will poison the data section for the 1.1.16/28 subnet
108 # value. It's value will be a pointer that resolves to an offset outside
109 # the database.
110
111 my $key_to_poison = key_for_data( { ip => '1.1.1.16' } );
112
113 my $orig_position_for_data
114 = MaxMind::DB::Writer::Serializer->can('_position_for_data');
115 local *MaxMind::DB::Writer::Serializer::_position_for_data = sub {
116 my $key = $_[1];
117
118 if ( $key eq $key_to_poison ) {
119 return 1_000_000;
120 }
121 else {
122 return shift->$orig_position_for_data(@_);
123 }
124 };
125
126 write_test_db(@_);
127
128 return;
129 }
130
131 sub write_broken_search_tree_db {
132 my $filename = ( write_test_db(@_) )[1];
133
134 my $content = read_binary($filename);
135
136 # This causes the right record of the first node to be 0, meaning it
137 # points back to the top of the tree. This should never happen in a
138 # database that follows the spec.
139 substr( $content, 5, 1 ) = "\0";
140 write_binary( $filename, $content );
141
142 return;
143 }
144
145 sub write_test_db {
146 my $record_size = shift;
147 my $subnets = shift;
148 my $metadata = shift;
149 my $ip_version_name = shift;
150
151 my $writer = MaxMind::DB::Writer::Tree->new(
152 ip_version => $subnets->[0]->version(),
153 record_size => $record_size,
154 alias_ipv6_to_ipv4 => ( $subnets->[0]->version() == 6 ? 1 : 0 ),
155 map_key_type_callback => sub { 'utf8_string' },
156 standard_test_metadata(),
157 %{$metadata},
158 );
159
160 for my $subnet ( @{$subnets} ) {
161 $writer->insert_network(
162 $subnet,
163 { ip => $subnet->first()->as_string() }
164 );
165 }
166
167 my $filename = sprintf(
168 "$Dir/MaxMind-DB-test-%s-%i.mmdb",
169 $ip_version_name,
170 $record_size,
171 );
172 open my $fh, '>', $filename;
173
174 $writer->write_tree($fh);
175
176 close $fh;
177
178 return ( $writer, $filename );
179 }
180
181 {
182 # We will store this once for each subnet so we will also be testing
183 # pointers, since the serializer will generate a pointer to this
184 # structure.
185 my %all_types = (
186 utf8_string => 'unicode! ☯ - ♫',
187 double => 42.123456,
188 bytes => pack( 'N', 42 ),
189 uint16 => 100,
190 uint32 => 2**28,
191 int32 => -1 * ( 2**28 ),
192 uint64 => uint128(1) << 60,
193 uint128 => uint128(1) << 120,
194 array => [ 1, 2, 3, ],
195 map => {
196 mapX => {
197 utf8_stringX => 'hello',
198 arrayX => [ 7, 8, 9 ],
199 },
200 },
201 boolean => 1,
202 float => 1.1,
203 );
204
205 my %all_types_0 = (
206 utf8_string => q{},
207 double => 0,
208 bytes => q{},
209 uint16 => 0,
210 uint32 => 0,
211 int32 => 0,
212 uint64 => uint128(0),
213 uint128 => uint128(0),
214 array => [],
215 map => {},
216 boolean => 0,
217 float => 0,
218 );
219
220 # We limit this to numeric types as the other types would generate
221 # very large databases
222 my %numeric_types_max = (
223 double => 'Inf',
224 float => 'Inf',
225 int32 => 0x7fffffff,
226 uint16 => 0xffff,
227 uint32 => string_to_uint128('0xffff_ffff'),
228 uint64 => string_to_uint128('0xffff_ffff_ffff_ffff'),
229 uint128 => MAX_UINT128,
230 );
231
232 sub write_decoder_test_db {
233 my $writer = MaxMind::DB::Writer::Tree->new(
234 ip_version => 6,
235 record_size => 24,
236 database_type => 'MaxMind DB Decoder Test',
237 languages => ['en'],
238 description => {
239 en =>
240 'MaxMind DB Decoder Test database - contains every MaxMind DB data type',
241 },
242 alias_ipv6_to_ipv4 => 1,
243 remove_reserved_networks => 0,
244 map_key_type_callback => sub {
245 my $key = $_[0];
246 $key =~ s/X$//;
247 return $key eq 'array' ? [ 'array', 'uint32' ] : $key;
248 },
249 );
250
251 my @subnets
252 = map { Net::Works::Network->new_from_string( string => $_ ) }
253 qw(
254 ::1.1.1.0/120
255 ::2.2.0.0/112
256 ::3.0.0.0/104
257 ::4.5.6.7/128
258 abcd::/64
259 1000::1234:0000/112
260 );
261
262 for my $subnet (@subnets) {
263 $writer->insert_network(
264 $subnet,
265 \%all_types,
266 );
267 }
268
269 $writer->insert_network(
270 Net::Works::Network->new_from_string( string => '::0.0.0.0/128' ),
271 \%all_types_0,
272 );
273
274 $writer->insert_network(
275 Net::Works::Network->new_from_string(
276 string => '::255.255.255.255/128'
277 ),
278 \%numeric_types_max,
279 );
280
281 open my $fh, '>', "$Dir/MaxMind-DB-test-decoder.mmdb";
282 $writer->write_tree($fh);
283 close $fh;
284
285 return;
286 }
287 }
288
289 {
290 my %nested = (
291 map1 => {
292 map2 => {
293 array => [
294 {
295 map3 => { a => 1, b => 2, c => 3 },
296 },
297 ],
298 },
299 },
300 );
301
302 sub write_deeply_nested_structures_db {
303 my $writer = MaxMind::DB::Writer::Tree->new(
304 ip_version => 6,
305 record_size => 24,
306 ip_version => 6,
307 database_type => 'MaxMind DB Nested Data Structures',
308 languages => ['en'],
309 description => {
310 en =>
311 'MaxMind DB Nested Data Structures Test database - contains deeply nested map/array structures',
312 },
313 alias_ipv6_to_ipv4 => 1,
314 map_key_type_callback => sub {
315 my $key = shift;
316 return
317 $key =~ /^map/ ? 'map'
318 : $key eq 'array' ? [ 'array', 'map' ]
319 : 'uint32';
320 }
321 );
322
323 my @subnets
324 = map { Net::Works::Network->new_from_string( string => $_ ) }
325 qw(
326 ::1.1.1.0/120
327 ::2.2.0.0/112
328 ::3.0.0.0/104
329 ::4.5.6.7/128
330 abcd::/64
331 1000::1234:0000/112
332 );
333
334 for my $subnet (@subnets) {
335 $writer->insert_network(
336 $subnet,
337 \%nested,
338 );
339 }
340
341 open my $fh, '>', "$Dir/MaxMind-DB-test-nested.mmdb";
342 $writer->write_tree($fh);
343 close $fh;
344
345 return;
346 }
347 }
348
349 sub write_geoip2_dbs {
350 _write_geoip2_db( @{$_}[ 0, 1 ], 'Test' )
351 for (
352 [ 'GeoIP2-Anonymous-IP', {} ],
353 ['GeoIP2-City'],
354 ['GeoIP2-Connection-Type'],
355 ['GeoIP2-Country'],
356 ['GeoIP2-DensityIncome'],
357 ['GeoIP2-Domain'],
358 ['GeoIP2-Enterprise'],
359 ['GeoIP2-ISP'],
360 ['GeoIP2-Precision-Enterprise'],
361 ['GeoIP2-Static-IP-Score'],
362 ['GeoIP2-User-Count'],
363 ['GeoLite2-ASN'],
364 );
365 }
366
367 sub write_broken_geoip2_city_db {
368 no warnings 'redefine';
369
370 # This is how we _used_ to encode doubles. Storing them this way with the
371 # current reader tools can lead to weird errors. This broken database is a
372 # good way to test the robustness of reader code in the face of broken
373 # databases.
374 local *MaxMind::DB::Writer::Serializer::_encode_double = sub {
375 my $self = shift;
376 my $value = shift;
377
378 $self->_simple_encode( double => $value );
379 };
380
381 _write_geoip2_db( 'GeoIP2-City', 0, 'Test Broken Double Format' );
382 }
383
384 sub write_invalid_node_count {
385 no warnings 'redefine';
386 local *MaxMind::DB::Writer::Tree::node_count = sub { 100000 };
387
388 _write_geoip2_db( 'GeoIP2-City', 0, 'Test Invalid Node Count' );
389 }
390
391 sub _universal_map_key_type_callback {
392 my $map = {
393
394 # languages
395 de => 'utf8_string',
396 en => 'utf8_string',
397 es => 'utf8_string',
398 fr => 'utf8_string',
399 ja => 'utf8_string',
400 'pt-BR' => 'utf8_string',
401 ru => 'utf8_string',
402 'zh-CN' => 'utf8_string',
403
404 # production
405 accuracy_radius => 'uint16',
406 autonomous_system_number => 'uint32',
407 autonomous_system_organization => 'utf8_string',
408 average_income => 'uint32',
409 city => 'map',
410 code => 'utf8_string',
411 confidence => 'uint16',
412 connection_type => 'utf8_string',
413 continent => 'map',
414 country => 'map',
415 domain => 'utf8_string',
416 geoname_id => 'uint32',
417 ipv4_24 => 'uint32',
418 ipv4_32 => 'uint32',
419 ipv6_32 => 'uint32',
420 ipv6_48 => 'uint32',
421 ipv6_64 => 'uint32',
422 is_anonymous => 'boolean',
423 is_anonymous_proxy => 'boolean',
424 is_anonymous_vpn => 'boolean',
425 is_hosting_provider => 'boolean',
426 is_in_european_union => 'boolean',
427 is_legitimate_proxy => 'boolean',
428 is_public_proxy => 'boolean',
429 is_satellite_provider => 'boolean',
430 is_tor_exit_node => 'boolean',
431 iso_code => 'utf8_string',
432 isp => 'utf8_string',
433 latitude => 'double',
434 location => 'map',
435 longitude => 'double',
436 metro_code => 'uint16',
437 names => 'map',
438 organization => 'utf8_string',
439 population_density => 'uint32',
440 postal => 'map',
441 registered_country => 'map',
442 represented_country => 'map',
443 score => 'double',
444 subdivisions => [ 'array', 'map' ],
445 time_zone => 'utf8_string',
446 traits => 'map',
447 traits => 'map',
448 type => 'utf8_string',
449 user_type => 'utf8_string',
450
451 # for testing only
452 foo => 'utf8_string',
453 bar => 'utf8_string',
454 buzz => 'utf8_string',
455 our_value => 'utf8_string',
456 };
457
458 my $callback = sub {
459 my $key = shift;
460
461 return $map->{$key} || die <<"ERROR";
462 Unknown tree key '$key'.
463
464 The universal_map_key_type_callback doesn't know what type to use for the passed
465 key. If you are adding a new key that will be used in a frozen tree / mmdb then
466 you should update the mapping in both our internal code and here.
467 ERROR
468 };
469
470 return $callback;
471 }
472
473 sub _write_geoip2_db {
474 my $type = shift;
475 my $populate_all_networks_with_data = shift;
476 my $description = shift;
477
478 my $writer = MaxMind::DB::Writer::Tree->new(
479 ip_version => 6,
480 record_size => 28,
481 ip_version => 6,
482 database_type => $type,
483 languages => [ 'en', $type eq 'GeoIP2-City' ? ('zh') : () ],
484 description => {
485 en => ( $type =~ s/-/ /gr )
486 . " $description Database (fake GeoIP2 data, for example purposes only)",
487 $type eq 'GeoIP2-City' ? ( zh => '小型数据库' ) : (),
488 },
489 alias_ipv6_to_ipv4 => 1,
490 map_key_type_callback => _universal_map_key_type_callback(),
491 );
492
493 _populate_all_networks( $writer, $populate_all_networks_with_data )
494 if $populate_all_networks_with_data;
495
496 my $value = shift;
497 my $nodes
498 = decode_json( read_binary("$Dir/../source-data/$type-Test.json") );
499
500 for my $node (@$nodes) {
501 for my $network ( keys %$node ) {
502 $writer->insert_network(
503 Net::Works::Network->new_from_string( string => $network ),
504 $node->{$network}
505 );
506 }
507 }
508
509 my $suffix = $description =~ s/ /-/gr;
510 open my $output_fh, '>', "$Dir/$type-$suffix.mmdb";
511 $writer->write_tree($output_fh);
512 close $output_fh;
513
514 return;
515 }
516
517 sub _populate_all_networks {
518 my $writer = shift;
519 my $data = shift;
520
521 my $max_uint128 = uint128(0) - 1;
522 my @networks = Net::Works::Network->range_as_subnets(
523 Net::Works::Address->new_from_integer(
524 integer => 0,
525 version => 6,
526 ),
527 Net::Works::Address->new_from_integer(
528 integer => $max_uint128,
529 version => 6,
530 ),
531 );
532
533 for my $network (@networks) {
534 $writer->insert_network( $network => $data );
535 }
536 }
537
538 sub write_no_ipv4_tree_db {
539 my $subnets = shift;
540
541 my $writer = MaxMind::DB::Writer::Tree->new(
542 ip_version => 6,
543 record_size => 24,
544 ip_version => 6,
545 database_type => 'MaxMind DB No IPv4 Search Tree',
546 languages => ['en'],
547 description => {
548 en => 'MaxMind DB No IPv4 Search Tree',
549 },
550 remove_reserved_networks => 0,
551 root_data_type => 'utf8_string',
552 map_key_type_callback => sub { {} },
553 );
554
555 my $subnet = Net::Works::Network->new_from_string( string => '::/64' );
556 $writer->insert_network( $subnet, $subnet->as_string() );
557
558 open my $output_fh, '>', "$Dir/MaxMind-DB-no-ipv4-search-tree.mmdb";
559 $writer->write_tree($output_fh);
560 close $output_fh;
561
562 return;
563 }
564
565 # The point of this database is to provide something where we can test looking
566 # up a single value. In other words, each IP address points to a non-compound
567 # value, a string rather than a map or array.
568 sub write_no_map_db {
569 my $subnets = shift;
570
571 my $writer = MaxMind::DB::Writer::Tree->new(
572 ip_version => 4,
573 record_size => 24,
574 database_type => 'MaxMind DB String Value Entries',
575 languages => ['en'],
576 description => {
577 en =>
578 'MaxMind DB String Value Entries (no maps or arrays as values)',
579 },
580 root_data_type => 'utf8_string',
581 map_key_type_callback => sub { {} },
582 );
583
584 for my $subnet ( @{$subnets} ) {
585 $writer->insert_network( $subnet, $subnet->as_string() );
586 }
587
588 open my $output_fh, '>', "$Dir/MaxMind-DB-string-value-entries.mmdb";
589 $writer->write_tree($output_fh);
590 close $output_fh;
591
592 return;
593 }
594
595 sub write_test_serialization_data {
596 my $serializer = MaxMind::DB::Writer::Serializer->new(
597 map_key_type_callback => sub { 'utf8_string' } );
598
599 $serializer->store_data( map => { long_key => 'long_value1' } );
600 $serializer->store_data( map => { long_key => 'long_value2' } );
601 $serializer->store_data( map => { long_key2 => 'long_value1' } );
602 $serializer->store_data( map => { long_key2 => 'long_value2' } );
603 $serializer->store_data( map => { long_key => 'long_value1' } );
604 $serializer->store_data( map => { long_key2 => 'long_value2' } );
605
606 open my $fh, '>', 'maps-with-pointers.raw';
607 print {$fh} ${ $serializer->buffer() }
608 or die "Cannot write to maps-with-pointers.raw: $!";
609 close $fh;
610
611 return;
612 }
613
614 sub write_db_with_metadata_pointers {
615 my $repeated_string = 'Lots of pointers in metadata';
616 my $writer = MaxMind::DB::Writer::Tree->new(
617 ip_version => 6,
618 record_size => 24,
619 map_key_type_callback => sub { 'utf8_string' },
620 database_type => $repeated_string,
621 languages => [ 'en', 'es', 'zh' ],
622 description => {
623 en => $repeated_string,
624 es => $repeated_string,
625 zh => $repeated_string,
626 },
627
628 );
629
630 _populate_all_networks( $writer, {} );
631
632 open my $fh, '>', 'MaxMind-DB-test-metadata-pointers.mmdb';
633
634 $writer->write_tree($fh);
635
636 close $fh;
637 }
638
639 main();
+0
-5
test/data/tidyall.ini less more
0 [PerlTidy]
1 select = **/*.{pl,pm,t}
2
3 [JSON]
4 select = **/*.json
1111 ]
1212
1313 modes.each do |mode|
14 [24, 28, 32].each do |record_size|
15 [4, 6].each do |ip_version|
16 filename = 'test/data/test-data/MaxMind-DB-test-ipv' +
17 ip_version.to_s + '-' + record_size.to_s + '.mmdb'
14 record_sizes = [24, 28, 32]
15 record_sizes.each do |record_size|
16 ip_versions = [4, 6]
17 ip_versions.each do |ip_version|
18 filename = "test/data/test-data/MaxMind-DB-test-ipv#{ip_version}-#{record_size}.mmdb"
1819 reader = MaxMind::DB.new(filename, mode: mode)
1920 check_metadata(reader, ip_version, record_size)
2021 if ip_version == 4
133134 }]
134135
135136 tests.each do |test|
136 reader = MaxMind::DB.new('test/data/test-data/' + test['file_name'])
137 reader = MaxMind::DB.new("test/data/test-data/#{test['file_name']}")
137138 record, prefix_length = reader.get_with_prefix_length(test['ip'])
138139
139140 assert_equal(test['expected_prefix_length'], prefix_length,
234235 e = assert_raises ArgumentError do
235236 reader.get('not_ip')
236237 end
237 assert(e.message.match(/invalid address/))
238 assert(e.message.include?('invalid address'))
238239 reader.close
239240 end
240241
242243 e = assert_raises SystemCallError do
243244 MaxMind::DB.new('file-does-not-exist.mmdb')
244245 end
245 assert(e.message.match(/No such file or directory/))
246 assert(e.message.include?('No such file or directory'))
246247 end
247248
248249 def test_nondatabase
259260 e = assert_raises ArgumentError do
260261 MaxMind::DB.new('README.md', {}, 'blah')
261262 end
262 assert(e.message.match(/wrong number of arguments/))
263 assert(e.message.include?('wrong number of arguments'))
263264 end
264265
265266 def test_no_constructor_args
266267 e = assert_raises ArgumentError do
267268 MaxMind::DB.new
268269 end
269 assert(e.message.match(/wrong number of arguments/))
270 assert(e.message.include?('wrong number of arguments'))
270271 end
271272
272273 def test_too_many_get_args
276277 e = assert_raises ArgumentError do
277278 reader.get('1.1.1.1', 'blah')
278279 end
279 assert(e.message.match(/wrong number of arguments/))
280 assert(e.message.include?('wrong number of arguments'))
280281 reader.close
281282 end
282283
287288 e = assert_raises ArgumentError do
288289 reader.get
289290 end
290 assert(e.message.match(/wrong number of arguments/))
291 assert(e.message.include?('wrong number of arguments'))
291292 reader.close
292293 end
293294
298299 e = assert_raises ArgumentError do
299300 reader.metadata('hi')
300301 end
301 assert(e.message.match(/wrong number of arguments/))
302 assert(e.message.include?('wrong number of arguments'))
302303 reader.close
303304 end
304305
309310 e = assert_raises NoMethodError do
310311 reader.metadata.what
311312 end
312 assert(e.message.match(/undefined method `what'/))
313 assert(e.message.include?('undefined method `what\''))
313314 reader.close
314315 end
315316