tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
May 2018
- 17 participants
- 1514 discussions
commit c0eaaf403bfa7ae9462ac6b6f8ea53c151bc9a7d
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue May 15 12:34:12 2018 -0400
run format-changelog
---
ChangeLog | 594 +++++++++++++++++++++++++++++++-------------------------------
1 file changed, 294 insertions(+), 300 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 91efcea98..e971b28a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,126 +1,135 @@
Changes in version 0.3.4.1-alpha - 2018-05-1?
XXX BLURB
+ o New system requirements:
+ - Tor no longer tries to support systems without mmap() or some
+ local equivalent. Apparently, compilation on such systems has been
+ broken for some time, without anybody noticing or complaining.
+ Closes ticket 25398.
o Major feature (directory authority, modularization):
- - The directory authority subsystem has been modularized. The code is now
- located in src/or/dirauth/ which is compiled in by default. To disable the
- module, the configure option --disable-module-dirauth has been added.
- Closes ticket 25610;
+ - The directory authority subsystem has been modularized. The code
+ is now located in src/or/dirauth/ which is compiled in by default.
+ To disable the module, the configure option
+ --disable-module-dirauth has been added. Closes ticket 25610;
o Major feature (main loop, CPU usage):
- - Previously, tor would enable at startup all possible main loop event
- regardless if it needed them. For instance, directory authorities
- callbacks were fired up even for client only. We have now refactored this
- whole interface to only enable the appropriate callbacks depending on what
- are tor roles (client only, relay, hidden service, etc.). Furthermore,
- these events now depend on DisableNetwork or the hibernation state in
- order to enable them. This is a big step towards reducing client CPU usage
- by reducing the amount of wake ups the daemon does. Closes ticket 25376
+ - Previously, tor would enable at startup all possible main loop
+ event regardless if it needed them. For instance, directory
+ authorities callbacks were fired up even for client only. We have
+ now refactored this whole interface to only enable the appropriate
+ callbacks depending on what are tor roles (client only, relay,
+ hidden service, etc.). Furthermore, these events now depend on
+ DisableNetwork or the hibernation state in order to enable them.
+ This is a big step towards reducing client CPU usage by reducing
+ the amount of wake ups the daemon does. Closes ticket 25376
and 25762.
o Major features (CPU usage, mobile):
- When Tor is disabled (via DisableNetwork or via hibernation), it
- no longer needs to run any per-second events. This change should
+ no longer needs to run any per-second events. This change should
make it easier for mobile applications to disable Tor while the
- device is sleeping, or Tor is not running. Closes ticket 26063.
+ device is sleeping, or Tor is not running. Closes ticket 26063.
o Major features (main loop, CPU wakeup):
- The bandwidth-limitation logic has been refactored so that
- bandwidth calculations are performed on-demand, rather than
- every TokenBucketRefillInterval milliseconds.
- This change should improve the granularity of our bandwidth
- calculations, and limit the number of times that the Tor process needs
- to wake up when it is idle. Closes ticket 25373.
+ bandwidth calculations are performed on-demand, rather than every
+ TokenBucketRefillInterval milliseconds. This change should improve
+ the granularity of our bandwidth calculations, and limit the
+ number of times that the Tor process needs to wake up when it is
+ idle. Closes ticket 25373.
o Major bugfixes (directory authorities, security):
- - When directory authorities read a zero-byte bandwidth file, they log
- a warning with the contents of an uninitialised buffer. Log a warning
- about the empty file instead.
- Fixes bug 26007; bugfix on 0.2.2.1-alpha.
+ - When directory authorities read a zero-byte bandwidth file, they
+ log a warning with the contents of an uninitialised buffer. Log a
+ warning about the empty file instead. Fixes bug 26007; bugfix
+ on 0.2.2.1-alpha.
o Major bugfixes (directory authority):
- - Avoid a crash when testing router reachability on a router that could
- have an ed25519 ID, but which does not. Fixes bug 25415; bugfix on
- 0.3.3.2-alpha.
+ - Avoid a crash when testing router reachability on a router that
+ could have an ed25519 ID, but which does not. Fixes bug 25415;
+ bugfix on 0.3.3.2-alpha.
o Major bugfixes (onion service):
- - Correctly detect when onion services get disabled after HUP.
- Fixes bug 25761; bugfix on 0.3.2.1.
+ - Correctly detect when onion services get disabled after HUP. Fixes
+ bug 25761; bugfix on 0.3.2.1.
o Major bugfixes (protover, voting):
- - Revise Rust implementation of protover to use a more memory-efficient
- voting algorithm and corresponding data structures, thus avoiding a
- potential (but small impact) DoS attack where specially crafted protocol
- strings would expand to several potential megabytes in memory. In the
- process, several portions of code were revised to be methods on new,
- custom types, rather than functions taking interchangeable types, thus
- increasing type safety of the module. Custom error types and handling
- were added as well, in order to facilitate better error dismissal/handling
- in outside crates and avoid mistakenly passing an internal error string to
- C over the FFI boundary. Many tests were added, and some previous
+ - Revise Rust implementation of protover to use a more memory-
+ efficient voting algorithm and corresponding data structures, thus
+ avoiding a potential (but small impact) DoS attack where specially
+ crafted protocol strings would expand to several potential
+ megabytes in memory. In the process, several portions of code were
+ revised to be methods on new, custom types, rather than functions
+ taking interchangeable types, thus increasing type safety of the
+ module. Custom error types and handling were added as well, in
+ order to facilitate better error dismissal/handling in outside
+ crates and avoid mistakenly passing an internal error string to C
+ over the FFI boundary. Many tests were added, and some previous
differences between the C and Rust implementations have been
remedied. Fixes bug 24031; bugfix on 0.3.3.1-alpha.
o Major bugfixes (relay, denial of service):
- - Impose a limit on circuit cell queue size. The limit can be controlled by
- a consensus parameter. Fixes bug 25226; bugfix on 0.2.4.14-alpha.
+ - Impose a limit on circuit cell queue size. The limit can be
+ controlled by a consensus parameter. Fixes bug 25226; bugfix
+ on 0.2.4.14-alpha.
o Minor feature (entry guards):
- - Introduce torrc option NumPrimaryGuards for controlling the number of
- primary guards. Closes ticket 25843.
+ - Introduce torrc option NumPrimaryGuards for controlling the number
+ of primary guards. Closes ticket 25843.
o Minor features (accounting):
- - When we become dormant, use a scheduled event to wake up at the right
- time. Previously, we would use the per-second timer to check whether
- to wake up, but we no longer have any per-second timers enabled when
- the network is disabled. Closes ticket 26064.
+ - When we become dormant, use a scheduled event to wake up at the
+ right time. Previously, we would use the per-second timer to check
+ whether to wake up, but we no longer have any per-second timers
+ enabled when the network is disabled. Closes ticket 26064.
o Minor features (code quality):
- - Add optional spell-checking for the Tor codebase, using the "misspell"
- program. To use this feature, run "make check-typos".
+ - Add optional spell-checking for the Tor codebase, using the
+ "misspell" program. To use this feature, run "make check-typos".
Closes ticket 25024.
o Minor features (compatibility):
- - Tor now detects versions of OpenSSL 1.1.0 and later compiled with the
- no-deprecated option, and builds correctly with them. Closes
+ - Tor now detects versions of OpenSSL 1.1.0 and later compiled with
+ the no-deprecated option, and builds correctly with them. Closes
tickets 19429, 19981, and 25353.
o Minor features (compilation, portability):
- - Avoid some compilation warnings with recent versions
- of LibreSSL. Closes ticket 26006.
+ - Avoid some compilation warnings with recent versions of LibreSSL.
+ Closes ticket 26006.
o Minor features (compression, zstd):
- - When running with zstd, Tor now considers using advanced functions that
- the zstd maintainers have labeled as potentially unstable. To
- prevent breakage, Tor will only use this functionality when
- the runtime version of the zstd library matches the version
- with which it were compiled. Closes ticket 25162.
+ - When running with zstd, Tor now considers using advanced functions
+ that the zstd maintainers have labeled as potentially unstable. To
+ prevent breakage, Tor will only use this functionality when the
+ runtime version of the zstd library matches the version with which
+ it were compiled. Closes ticket 25162.
o Minor features (configuration):
- The "DownloadSchedule" options have been renamed to end with
- "DownloadInitialDelay". The old names are still allowed, but will
+ "DownloadInitialDelay". The old names are still allowed, but will
produce a warning. Comma-separated lists are still permitted for
- these options, but all values after the first are ignored (as they have
- been since 0.2.9). Closes ticket 23354.
+ these options, but all values after the first are ignored (as they
+ have been since 0.2.9). Closes ticket 23354.
o Minor features (continuous integration):
- - Our .travis.yml configuration now includes support for testing
- the results of "make distcheck". (It's not uncommon for "make check" to
- pass but "make distcheck" to fail.) Closes ticket 25814.
- - Our Travis CI configuration now integrates with the Coveralls coverage
- analysis tool. Closes ticket 25818.
+ - Our .travis.yml configuration now includes support for testing the
+ results of "make distcheck". (It's not uncommon for "make check"
+ to pass but "make distcheck" to fail.) Closes ticket 25814.
+ - Our Travis CI configuration now integrates with the Coveralls
+ coverage analysis tool. Closes ticket 25818.
o Minor features (control port):
- Introduce GETINFO "current-time/{local,utc}" to return the local
and UTC times respectively in ISO format. This helps a controller
like Tor Browser detect a time-related error. Closes ticket 25511.
Patch by Neel Chauhan.
- - Introduce new fields to the CIRC_BW event. There are two new fields in
- each of the read and written directions. The DELIVERED fields report the
- total valid data on the circuit, as measured by the payload sizes of
- verified and error-checked relay command cells. The OVERHEAD fields
- report the total unused bytes in each of these cells. Closes ticket 25903.
+ - Introduce new fields to the CIRC_BW event. There are two new
+ fields in each of the read and written directions. The DELIVERED
+ fields report the total valid data on the circuit, as measured by
+ the payload sizes of verified and error-checked relay command
+ cells. The OVERHEAD fields report the total unused bytes in each
+ of these cells. Closes ticket 25903.
o Minor features (directory authority):
- Directory authorities now open their key-pinning files as O_SYNC,
@@ -128,79 +137,63 @@ Changes in version 0.3.4.1-alpha - 2018-05-1?
Closes ticket 23909.
o Minor features (directory authority, forward compatibility):
- - Make the lines of the measured bandwidth file able to contain their
- entries in any order. Previously, the node_id entry needed to come
- first. Closes ticket 26004.
+ - Make the lines of the measured bandwidth file able to contain
+ their entries in any order. Previously, the node_id entry needed
+ to come first. Closes ticket 26004.
o Minor features (geoip):
- - Update geoip and geoip6 to the May 1 2018 Maxmind GeoLite2
- Country database. Closes ticket 26104.
+ - Update geoip and geoip6 to the May 1 2018 Maxmind GeoLite2 Country
+ database. Closes ticket 26104.
o Minor features (mainloop):
- - Move responsibility for
- closing connections, circuits, and channels
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25932.
- - Move responsibility for
- consensus voting
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25937.
- - Move responsibility for
- flushing log callbacks
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25951.
- - Move responsibility for
- honoring delayed SIGNEWNYM requests
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
+ - Move responsibility for closing connections, circuits, and
+ channels from a once-per-second callback to a callback that is
+ only scheduled as needed. Once enough items are removed from our
+ once-per-second callback, we can eliminate it entirely to conserve
+ CPU when idle. Closes ticket 25932.
+ - Move responsibility for consensus voting from a once-per-second
+ callback to a callback that is only scheduled as needed. Once
+ enough items are removed from our once-per-second callback, we can
+ eliminate it entirely to conserve CPU when idle. Closes
+ ticket 25937.
+ - Move responsibility for flushing log callbacks from a once-per-
+ second callback to a callback that is only scheduled as needed.
+ Once enough items are removed from our once-per-second callback,
+ we can eliminate it entirely to conserve CPU when idle. Closes
+ ticket 25951.
+ - Move responsibility for honoring delayed SIGNEWNYM requests from a
+ once-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25949.
- - Move responsibility for
- rescanning the consensus cache
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
+ Closes ticket 25949.
+ - Move responsibility for rescanning the consensus cache from a
+ once-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket:
- 25931.
- - Move responsibility for
- saving the state file to disk
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
+ Closes ticket: 25931.
+ - Move responsibility for saving the state file to disk from a once-
+ per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25948.
- - Move responsibility for
- warning relay operators about unreachable ports
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25952.
- - Move responsibility for
- keeping track of Tor's uptime
- from a nce-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 26009.
+ Closes ticket 25948.
+ - Move responsibility for warning relay operators about unreachable
+ ports from a once-per-second callback to a callback that is only
+ scheduled as needed. Once enough items are removed from our once-
+ per-second callback, we can eliminate it entirely to conserve CPU
+ when idle. Closes ticket 25952. - Move responsibility for keeping
+ track of Tor's uptime from a nce-per-second callback to a callback
+ that is only scheduled as needed. Once enough items are removed
+ from our once-per-second callback, we can eliminate it entirely to
+ conserve CPU when idle. Closes ticket 26009.
o Minor features (performance):
- Avoid a needless call to malloc() when processing an incoming
- relay cell. Closes ticket 24914.
+ relay cell. Closes ticket 24914.
o Minor features (performance, 32-bit):
- - Make our timing-wheel code run a tiny bit faster on 32-bit platforms,
- by preferring 32-bit math to 64-bit. Closes ticket 24688.
+ - Make our timing-wheel code run a tiny bit faster on 32-bit
+ platforms, by preferring 32-bit math to 64-bit. Closes
+ ticket 24688.
o Minor features (performance, allocation):
- Avoid a needless malloc()/free() pair every time we handle an ntor
@@ -208,26 +201,26 @@ Changes in version 0.3.4.1-alpha - 2018-05-1?
o Minor features (Testing):
- Add a unit test for voting_schedule_get_start_of_next_interval().
- Closes ticket 26014, and helps make unit test coverage more
- deterministic.
- - A new unittests module specifically for testing the functions in the
- (new-ish) bridges.c module has been created with new unittests, raising
- the code coverage percentages. Closes 25425.
+ Closes ticket 26014, and helps make unit test coverage
+ more deterministic.
+ - A new unittests module specifically for testing the functions in
+ the (new-ish) bridges.c module has been created with new
+ unittests, raising the code coverage percentages. Closes 25425.
- We now have improved testing for addressmap_get_virtual_address()
- function. This should improve our test coverage, and make our test
+ function. This should improve our test coverage, and make our test
coverage more deterministic. Closes ticket 25993.
o Minor features (timekeeping, circuit scheduling):
- When keeping track of how busy each circuit have been recently on
- a given connection, use coarse-grained monotonic timers rather than
- gettimeofday(). This change should marginally increase accuracy
- and performance. Implements part of ticket 25927.
+ a given connection, use coarse-grained monotonic timers rather
+ than gettimeofday(). This change should marginally increase
+ accuracy and performance. Implements part of ticket 25927.
o Minor bugfix (controler):
- - Make CIRC_BW event reflect the total of all data sent on a circuit,
- including padding and dropped cells. Also fix a mis-counting bug
- when STREAM_BW events were enabled. Fixes bug 25400; bugfix on
- 0.2.5.2-alpha.
+ - Make CIRC_BW event reflect the total of all data sent on a
+ circuit, including padding and dropped cells. Also fix a mis-
+ counting bug when STREAM_BW events were enabled. Fixes bug 25400;
+ bugfix on 0.2.5.2-alpha.
o Minor bugfix (Multiple includes):
- Fixed multiple includes of trasports.h in src/or/connection.c
@@ -235,107 +228,108 @@ Changes in version 0.3.4.1-alpha - 2018-05-1?
o Minor bugfixes (Assert crash):
- Avoid an assert in the circuit build timeout code if we fail to
- allow any circuits to actually complete. Fixes bug 25733;
- bugfix on 0.2.2.2-alpha.
+ allow any circuits to actually complete. Fixes bug 25733; bugfix
+ on 0.2.2.2-alpha.
o Minor bugfixes (bandwidth management):
- - Consider ourselves "low on write bandwidth" if we have exhausted our
- write bandwidth some time in the last second. This was the
+ - Consider ourselves "low on write bandwidth" if we have exhausted
+ our write bandwidth some time in the last second. This was the
documented behavior before, but the actual behavior was to change
- this value every TokenBucketRefillInterval. Fixes bug 25828; bugfix on
- 0.2.3.5-alpha.
+ this value every TokenBucketRefillInterval. Fixes bug 25828;
+ bugfix on 0.2.3.5-alpha.
o Minor bugfixes (C correctness):
- - Add a missing lock acquisition in the shutdown code of the
- control subsystem. Fixes bug 25675; bugfix on 0.2.7.3-rc. Found
- by Coverity; this is CID 1433643.
+ - Add a missing lock acquisition in the shutdown code of the control
+ subsystem. Fixes bug 25675; bugfix on 0.2.7.3-rc. Found by
+ Coverity; this is CID 1433643.
o Minor bugfixes (channel_get_for_extend()):
- - Remove the unused variable n_possible from the function
- Fixes bug 25645; bugfix on 0.2.4.4-alpha
+ - Remove the unused variable n_possible from the function Fixes bug
+ 25645; bugfix on 0.2.4.4-alpha
o Minor bugfixes (circuit path selection):
- - Don't count path selection failures as circuit build failures. This
- should eliminate cases where Tor blames its guard or the network
- for situations like insufficient microdescriptors and/or overly
- restrictive torrc settings. Fixes bug 25705; bugfix on 0.3.3.1-alpha.
+ - Don't count path selection failures as circuit build failures.
+ This should eliminate cases where Tor blames its guard or the
+ network for situations like insufficient microdescriptors and/or
+ overly restrictive torrc settings. Fixes bug 25705; bugfix
+ on 0.3.3.1-alpha.
o Minor bugfixes (client):
- - Don't consider Tor running as a client if the ControlPort is open. Fixes
- bug 26062; bugfix on 0.2.9.4-alpha.
+ - Don't consider Tor running as a client if the ControlPort is open.
+ Fixes bug 26062; bugfix on 0.2.9.4-alpha.
o Minor bugfixes (control interface):
- - Respond with more human readable error messages to GETINFO
- exit-policy/* requests. Also, let controller know if error
- is transient (response code 551) or not (response code 552).
- Fixes bug 25852; bugfix on 0.2.8.1-alpha.
+ - Respond with more human readable error messages to GETINFO exit-
+ policy/* requests. Also, let controller know if error is transient
+ (response code 551) or not (response code 552). Fixes bug 25852;
+ bugfix on 0.2.8.1-alpha.
o Minor bugfixes (directory client):
- - When unverified-consensus is verified, rename it to cached-consenus.
- Fixes bug 4187; bugfix on 0.2.0.3-alpha.
+ - When unverified-consensus is verified, rename it to cached-
+ consenus. Fixes bug 4187; bugfix on 0.2.0.3-alpha.
o Minor bugfixes (directory server cert fetch):
- Fixed launching a certificate fetch always during the scheduled
periodic consensus fetch by fetching only in those cases when
- consensus are waiting for certs.
- Fixes bug 24740; bugfix on 0.2.9.1-alpha.
+ consensus are waiting for certs. Fixes bug 24740; bugfix
+ on 0.2.9.1-alpha.
o Minor bugfixes (documentation):
- - Stop saying in the manual that clients cache ipv4 dns answers
- from exit relays. We haven't used them since 0.2.6.3-alpha, and
- in ticket 24050 we stopped even caching them as of 0.3.2.6-alpha,
- but we forgot to say so in the man page. Fixes bug 26052; bugfix
+ - Stop saying in the manual that clients cache ipv4 dns answers from
+ exit relays. We haven't used them since 0.2.6.3-alpha, and in
+ ticket 24050 we stopped even caching them as of 0.3.2.6-alpha, but
+ we forgot to say so in the man page. Fixes bug 26052; bugfix
on 0.3.2.6-alpha.
o Minor bugfixes (Duplicate code):
- Remove duplicate code in parse_{c,s}method_line and bootstrap
- their functionalities into a single function. Fixes
- bug 6236; bugfix on 0.2.3.6-alpha.
+ their functionalities into a single function. Fixes bug 6236;
+ bugfix on 0.2.3.6-alpha.
o Minor bugfixes (error reporting):
- Improve tolerance for directory authorities with skewed clocks.
Previously, an authority with a clock more than 60 seconds ahead
could cause a client with a correct clock to warn that the
- client's clock was behind. Now the clocks of a majority of
+ client's clock was behind. Now the clocks of a majority of
directory authorities have to be ahead of the client before this
- warning will occur. Fixes bug 25756; bugfix on 0.2.2.25-alpha.
+ warning will occur. Fixes bug 25756; bugfix on 0.2.2.25-alpha.
o Minor bugfixes (freebsd):
- In have_enough_mem_for_dircache(), the variable DIRCACHE_MIN_MEM_MB
- does not stringify on FreeBSD, so we switch to tor_asprintf(). Fixes
- bug 20887; bugfix on 0.2.8.1-alpha. Patch by Neel Chauhan.
+ does not stringify on FreeBSD, so we switch to tor_asprintf().
+ Fixes bug 20887; bugfix on 0.2.8.1-alpha. Patch by Neel Chauhan.
o Minor bugfixes (hidden service v3):
- - Fix a memory leak when an hidden service v3 is configured and gets a
- SIGHUP signal. Fixes bug 25901; bugfix on 0.3.2.1-alpha.
- - When parsing the descriptor signature, look for the token plus an extra
- white-space at the end. This is more correct but also will allow us to
- support new fields that might start with "signature". Fixes bug 26069;
- bugfix on 0.3.0.1-alpha.
+ - Fix a memory leak when an hidden service v3 is configured and gets
+ a SIGHUP signal. Fixes bug 25901; bugfix on 0.3.2.1-alpha.
+ - When parsing the descriptor signature, look for the token plus an
+ extra white-space at the end. This is more correct but also will
+ allow us to support new fields that might start with "signature".
+ Fixes bug 26069; bugfix on 0.3.0.1-alpha.
o Minor bugfixes (Linux seccomp2 sandbox):
- Allow the nanosleep() system call, which glibc uses to implement
sleep() and usleep(). Fixes bug 24969; bugfix on 0.2.5.1-alpha.
o Minor bugfixes (path selection):
- - Only select relays when they have the descriptors we prefer to
- use for them. This change fixes a bug where we could select
- a relay because it had _some_ descriptor, but reject it later with
- a nonfatal assertion error because it didn't have the exact one we
+ - Only select relays when they have the descriptors we prefer to use
+ for them. This change fixes a bug where we could select a relay
+ because it had _some_ descriptor, but reject it later with a
+ nonfatal assertion error because it didn't have the exact one we
wanted. Fixes bugs 25691 and 25692; bugfix on 0.3.3.4-alpha.
o Minor bugfixes (portability):
- Do not align mmap length, as it is not required by POSIX, and the
- getpagesize function is deprecated. Fixes bug 25399; bugfix on
- 0.1.1.23.
+ getpagesize function is deprecated. Fixes bug 25399; bugfix
+ on 0.1.1.23.
o Minor bugfixes (relay statistics):
- When a relay is collecting internal statistics about how many
- create cell requests it has seen of each type, accurately count the
- requests from relays that temporarily fall out of the consensus. (To
- be extra conservative, we were already ignoring requests from
- clients in our counts, and we continue ignoring them here.) Fixes
- bug 24910; bugfix on 0.2.4.17-rc.
+ create cell requests it has seen of each type, accurately count
+ the requests from relays that temporarily fall out of the
+ consensus. (To be extra conservative, we were already ignoring
+ requests from clients in our counts, and we continue ignoring them
+ here.) Fixes bug 24910; bugfix on 0.2.4.17-rc.
o Minor bugfixes (relay, crash):
- Avoid a crash when running with DirPort set but ORPort tuned off.
@@ -343,154 +337,154 @@ Changes in version 0.3.4.1-alpha - 2018-05-1?
o Minor bugfixes (restart-in-process):
- When shutting down, Tor now clears all the flags in the control.c
- module. This should prevent a bug where authentication cookies
- are not generated on restart. Fixes bug 25512; bugfix on 0.3.3.1-alpha.
+ module. This should prevent a bug where authentication cookies are
+ not generated on restart. Fixes bug 25512; bugfix on 0.3.3.1-alpha.
o Minor bugfixes (test):
- - When testing workqueue event-cancellation, make sure that we actually
- cancel an event, and that cancel each event with equal probability.
- (It was previously possible, though extremely unlikely, for our
- event-canceling test not to cancel any events.) Fixes bug 26008;
- bugfix on 0.2.6.3-alpha.
+ - When testing workqueue event-cancellation, make sure that we
+ actually cancel an event, and that cancel each event with equal
+ probability. (It was previously possible, though extremely
+ unlikely, for our event-canceling test not to cancel any events.)
+ Fixes bug 26008; bugfix on 0.2.6.3-alpha.
o Minor bugfixes (testing):
- - Repeat part of the test in test_client_pick_intro() a number of times,
- to give it consistent coverage. Fixes bug 25996; bugfix on
- 0.3.2.1-alpha.
+ - Repeat part of the test in test_client_pick_intro() a number of
+ times, to give it consistent coverage. Fixes bug 25996; bugfix
+ on 0.3.2.1-alpha.
o Minor bugfixes (testing, coverage):
- - Remove randomness from the hs_common/responsible_hsdirs test,
- so that it always takes the same path through the function it tests.
+ - Remove randomness from the hs_common/responsible_hsdirs test, so
+ that it always takes the same path through the function it tests.
Fixes bug 25997; bugfix on 0.3.2.1-alpha.
o Minor bugfixes (tests):
- - Change the behavior of the "channel/outbound" test so that it never
- causes a 10-second rollover for the EWMA circuitmux code. Previously,
- this behavior would happen randomly, and result in fluctuating test
- coverage. Fixes bug 25994; bugfix on 0.3.3.1-alpha.
+ - Change the behavior of the "channel/outbound" test so that it
+ never causes a 10-second rollover for the EWMA circuitmux code.
+ Previously, this behavior would happen randomly, and result in
+ fluctuating test coverage. Fixes bug 25994; bugfix
+ on 0.3.3.1-alpha.
- Use X509_new() to allocate certificates that will be freed later
with X509_free(). Previously, some parts of the unit tests had
- used tor_malloc_zero(), which is incorrect, and which caused
- test failures on Windows when they were built with extra hardening.
- Fixes bugs 25943 and 25944; bugfix on 0.2.8.1-alpha.
- Patch by Marcin Cieślak.
- - While running the circuit_timeout test, fix the PRNG to a deterministic
- AES stream, so that the test coverage from this test will itself be
- deterministic. Fixes bug 25995; bugfix on 0.2.2.2-alpha.
+ used tor_malloc_zero(), which is incorrect, and which caused test
+ failures on Windows when they were built with extra hardening.
+ Fixes bugs 25943 and 25944; bugfix on 0.2.8.1-alpha. Patch by
+ Marcin Cieślak.
+ - While running the circuit_timeout test, fix the PRNG to a
+ deterministic AES stream, so that the test coverage from this test
+ will itself be deterministic. Fixes bug 25995; bugfix
+ on 0.2.2.2-alpha.
o Minor bugfixes (vanguards):
- - Allow the last hop in a vanguard circuit to be the same as our first,
- to prevent the adversary from influencing guard node choice by choice
- of last hop. Also prevent the creation of A - B - A paths, or A - A
- paths, which are forbidden by relays. Fixes bug 25870; bugfix on
- 0.3.3.1-alpha.
+ - Allow the last hop in a vanguard circuit to be the same as our
+ first, to prevent the adversary from influencing guard node choice
+ by choice of last hop. Also prevent the creation of A - B - A
+ paths, or A - A paths, which are forbidden by relays. Fixes bug
+ 25870; bugfix on 0.3.3.1-alpha.
o Code simplification and refactoring:
- We remove the PortForwsrding and PortForwardingHelper options, related
- functions, and the port_forwarding tests. These options were used by
- the now-deprecated Vidalia to help ordinary users become Tor relays or
- bridges. Closes ticket 25409. Patch by Neel Chauhan.
+ - We remove the PortForwsrding and PortForwardingHelper options,
+ related functions, and the port_forwarding tests. These options
+ were used by the now-deprecated Vidalia to help ordinary users
+ become Tor relays or bridges. Closes ticket 25409. Patch by
+ Neel Chauhan.
- In order to make the OR and dir checking function in router.c less
- confusing we renamed some functions and consider_testing_reachability()
- has been splitted into router_should_check_reachability() and
- router_do_reachability_checks(). Also we improved the documentation in
- some functions. Closes ticket 18918.
- - Initial work to isolate Libevent usage to a handful of modules in our
- codebase, to simplify our call structure, and so that we can more
- easily change event loops in the future if needed. Closes ticket
- 23750.
- - Introduce a function to call getsockname() and return
- tor_addr_t, to save a little complexity throughout the codebase.
- Closes ticket 18105.
+ confusing we renamed some functions and
+ consider_testing_reachability() has been splitted into
+ router_should_check_reachability() and
+ router_do_reachability_checks(). Also we improved the documentation
+ in some functions. Closes ticket 18918.
+ - Initial work to isolate Libevent usage to a handful of modules in
+ our codebase, to simplify our call structure, and so that we can
+ more easily change event loops in the future if needed. Closes
+ ticket 23750.
+ - Introduce a function to call getsockname() and return tor_addr_t,
+ to save a little complexity throughout the codebase. Closes
+ ticket 18105.
- Make hsdir_index in node_t a hsdir_index_t rather than a pointer
as hsdir_index is always present. Also, we move hsdir_index_t into
or.h. Closes ticket 23094. Patch by Neel Chauhan.
- - Merge functions used for describing nodes and suppress the functions
- that do not allocate memory for the output buffer string.
- NODE_DESC_BUF_LEN constant and format_node_description() function
- cannot be used externally from router.c module anymore.
+ - Merge functions used for describing nodes and suppress the
+ functions that do not allocate memory for the output buffer
+ string. NODE_DESC_BUF_LEN constant and format_node_description()
+ function cannot be used externally from router.c module anymore.
Closes ticket 25432. Patch by valentecaio.
- Our main loop has been simplified so that all important operations
happen inside events. Previously, some operations had to happen
outside the event loop, to prevent infinite sequences of event
activations. Closes ticket 25374.
- - Put a SHA1 public key digest in hs_service_intro_point_t, and use it in
- register_intro_circ() and service_intro_point_new(). This prevents the
- digest from being re-calculated each time. Closes ticket 23107. Patch by
- Neel Chauhan.
+ - Put a SHA1 public key digest in hs_service_intro_point_t, and use
+ it in register_intro_circ() and service_intro_point_new(). This
+ prevents the digest from being re-calculated each time. Closes
+ ticket 23107. Patch by Neel Chauhan.
- Refactor token-bucket implementations to use a common backend.
Closes ticket 25766.
- - Remove extern declaration of stats_n_seconds_working variable from main,
- protecting its accesses with get_uptime() and reset_uptime() functions.
- Closes ticket 25081, patch by “valentecaio”.
- - Remove our previous logic for "cached gettimeofday()" -- our coarse
- monotonic timers are fast enough for this purpose, and far less
- error-prone. Implements part of ticket 25927.
+ - Remove extern declaration of stats_n_seconds_working variable from
+ main, protecting its accesses with get_uptime() and reset_uptime()
+ functions. Closes ticket 25081, patch by “valentecaio”.
+ - Remove our previous logic for "cached gettimeofday()" -- our
+ coarse monotonic timers are fast enough for this purpose, and far
+ less error-prone. Implements part of ticket 25927.
- Remove the return value for fascist_firewall_choose_address_base(),
and sister functions such as fascist_firewall_choose_address_node()
and fascist_firewall_choose_address_rs(). Also, while we're here,
initialize the ap argument as leaving it uninitialized can pose a
security hazard. Closes ticket 24734. Patch by Neel Chauhan.
- - Rename two fields of connection_t struct.
- timestamp_lastwritten is renamed to timestamp_last_write_allowed and
- timestamp_lastread is renamed to timestamp_last_read_allowed.
- Closes ticket 24714, patch by "valentecaio".
+ - Rename two fields of connection_t struct. timestamp_lastwritten is
+ renamed to timestamp_last_write_allowed and timestamp_lastread is
+ renamed to timestamp_last_read_allowed. Closes ticket 24714, patch
+ by "valentecaio".
- Since Tor requires C99, remove our old workaround code for libc
implementations where free(NULL) doesn't work. Closes ticket 24484.
- - Use our standard rate-limiting code to deal with excessive libevent
- failures, rather than the hand-rolled logic we had before.
- Closes ticket 26016.
+ - Use our standard rate-limiting code to deal with excessive
+ libevent failures, rather than the hand-rolled logic we had
+ before. Closes ticket 26016.
- We remove the return value of node_get_prim_orport() and
- node_get_prim_dirport(), and introduce node_get_prim_orport()
- in node_ipv6_or_preferred() and node_ipv6_dir_preferred() in
- order to check for a null address. Closes ticket 23873. Patch
- by Neel Chauhan.
- - We switch to should_record_bridge_info() in geoip_note_client_seen() and
- options_need_geoip_info() instead of accessing the configuration values
- directly. Fixes bug 25290; bugfix on 0.2.1.6-alpha. Patch by Neel
- Chauhan.
+ node_get_prim_dirport(), and introduce node_get_prim_orport() in
+ node_ipv6_or_preferred() and node_ipv6_dir_preferred() in order to
+ check for a null address. Closes ticket 23873. Patch by
+ Neel Chauhan.
+ - We switch to should_record_bridge_info() in
+ geoip_note_client_seen() and options_need_geoip_info() instead of
+ accessing the configuration values directly. Fixes bug 25290;
+ bugfix on 0.2.1.6-alpha. Patch by Neel Chauhan.
o Deprecated features:
- - As we are not recommending 0.2.5 anymore we require relays that once had
- an ed25519 key associated with their RSA key to always have that key
- instead of allowing them to drop back to a version that didn't support
- ed25519. This means they need to use a new RSA key if the want to
- downgrade to an older version of tor without ed25519. Closes ticket 20522.
+ - As we are not recommending 0.2.5 anymore we require relays that
+ once had an ed25519 key associated with their RSA key to always
+ have that key instead of allowing them to drop back to a version
+ that didn't support ed25519. This means they need to use a new RSA
+ key if the want to downgrade to an older version of tor without
+ ed25519. Closes ticket 20522.
o Documentation:
- - Correct an IPv6 error in the documentation for ExitPolicy.
- Closes ticket 25857. Patch from "CTassisF".
-
- o New system requirements:
- - Tor no longer tries to support systems without mmap() or some local
- equivalent. Apparently, compilation on such systems has been broken for
- some time, without anybody noticing or complaining. Closes ticket
- 25398.
+ - Correct an IPv6 error in the documentation for ExitPolicy. Closes
+ ticket 25857. Patch from "CTassisF".
o Removed features:
- - Directory authorities will no longer support voting according to any
- consensus method before consensus method 25. This keeps authorities
- compatible with all authorities running 0.2.9.8 and later, and does
- not break any clients or relays. Implements ticket 24378 and
- proposal 290.
+ - Directory authorities will no longer support voting according to
+ any consensus method before consensus method 25. This keeps
+ authorities compatible with all authorities running 0.2.9.8 and
+ later, and does not break any clients or relays. Implements ticket
+ 24378 and proposal 290.
- The PortForwarding and PortForwardingHelper features have been
- removed. The reasoning is, given that implementations of NAT traversal
- protocols within common consumer grade routers are frequently buggy, and
- that the target audience for a NAT punching feature is a perhaps
- less-technically-inclined relay operator, when the helper fails to setup
- traversal the problems are usually deep, ugly, and very router specific,
- making them horrendously impossible for technical support to reliable
- assist with, and thus resulting in frustration all around. Unfortunately,
- relay operators who would like to run relays behind NATs will need to
- become more familiar with the port forwarding configurations on their
- local router. Closes 25409.
- - The TestingEnableTbEmptyEvent option has been removed. It was used
- in testing simulations to measure how often connection buckets were
- emptied, in order to improve our scheduling, but it has not
+ removed. The reasoning is, given that implementations of NAT
+ traversal protocols within common consumer grade routers are
+ frequently buggy, and that the target audience for a NAT punching
+ feature is a perhaps less-technically-inclined relay operator,
+ when the helper fails to setup traversal the problems are usually
+ deep, ugly, and very router specific, making them horrendously
+ impossible for technical support to reliable assist with, and thus
+ resulting in frustration all around. Unfortunately, relay
+ operators who would like to run relays behind NATs will need to
+ become more familiar with the port forwarding configurations on
+ their local router. Closes 25409.
+ - The TestingEnableTbEmptyEvent option has been removed. It was used
+ in testing simulations to measure how often connection buckets
+ were emptied, in order to improve our scheduling, but it has not
been actively used in years. Closes ticket 25760.
- The old "round-robin" circuit multiplexer (circuitmux)
implementation has been removed, along with a fairly large set of
- code that existed to support it. It has not been the default
+ code that existed to support it. It has not been the default
circuitmux since we introduced the "EWMA" circuitmux in 0.2.4.x,
but it still required an unreasonable amount of memory and CPU.
Closes ticket 25268.
1
0

15 May '18
commit e811bac8377445dff00972599178608410cbb6e2
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue May 15 12:31:16 2018 -0400
use sortChanges to begin an 0.3.4.1-alpha changelog
---
ChangeLog | 498 ++++++++++++++++++++++++++++++++++++++++++++++
changes/18105 | 4 -
changes/24378 | 8 -
changes/25857 | 3 -
changes/bug18918 | 6 -
changes/bug20887 | 4 -
changes/bug23094 | 4 -
changes/bug23107 | 6 -
changes/bug23693.1 | 4 -
changes/bug23909 | 4 -
changes/bug24031 | 13 --
changes/bug24484 | 4 -
changes/bug24688 | 3 -
changes/bug24910 | 7 -
changes/bug24914 | 3 -
changes/bug24969 | 3 -
changes/bug25226 | 4 -
changes/bug25373 | 7 -
changes/bug25398 | 5 -
changes/bug25399 | 5 -
changes/bug25400 | 5 -
changes/bug25409 | 12 --
changes/bug25415 | 4 -
changes/bug25425 | 4 -
changes/bug25512 | 5 -
changes/bug25675 | 4 -
changes/bug25691_again | 6 -
changes/bug25705 | 5 -
changes/bug25733 | 4 -
changes/bug25756 | 7 -
changes/bug25761 | 3 -
changes/bug25828 | 7 -
changes/bug25843 | 3 -
changes/bug25852 | 5 -
changes/bug25870 | 6 -
changes/bug25901 | 3 -
changes/bug25943 | 7 -
changes/bug26007 | 5 -
changes/bug26052 | 6 -
changes/bug26069 | 5 -
changes/coveralls | 3 -
changes/feature19429 | 5 -
changes/feature25150 | 4 -
changes/geoip-2018-05-01 | 4 -
changes/isolate_libevent | 5 -
changes/ticket20522 | 6 -
changes/ticket23354 | 6 -
changes/ticket23873 | 6 -
changes/ticket24714 | 6 -
changes/ticket24734 | 6 -
changes/ticket24740 | 5 -
changes/ticket25024 | 4 -
changes/ticket25081 | 5 -
changes/ticket25162 | 6 -
changes/ticket25261 | 3 -
changes/ticket25268 | 7 -
changes/ticket25290 | 5 -
changes/ticket25374 | 6 -
changes/ticket25376_25762 | 10 -
changes/ticket25409 | 6 -
changes/ticket25432 | 6 -
changes/ticket25511 | 5 -
changes/ticket25610 | 5 -
changes/ticket25645 | 4 -
changes/ticket25760 | 5 -
changes/ticket25766 | 3 -
changes/ticket25903 | 6 -
changes/ticket25927.1 | 6 -
changes/ticket25927.2 | 5 -
changes/ticket25931 | 9 -
changes/ticket25932 | 9 -
changes/ticket25937 | 9 -
changes/ticket25948 | 9 -
changes/ticket25949 | 9 -
changes/ticket25951 | 9 -
changes/ticket25952 | 9 -
changes/ticket25993 | 4 -
changes/ticket25994 | 5 -
changes/ticket25995 | 5 -
changes/ticket25996 | 5 -
changes/ticket25997 | 5 -
changes/ticket26004 | 5 -
changes/ticket26006 | 4 -
changes/ticket26008 | 7 -
changes/ticket26009 | 9 -
changes/ticket26014 | 4 -
changes/ticket26016 | 4 -
changes/ticket26062 | 4 -
changes/ticket26063 | 5 -
changes/ticket26064 | 5 -
changes/ticket4187 | 3 -
changes/ticket6236 | 4 -
changes/travis_distcheck | 4 -
93 files changed, 498 insertions(+), 501 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8789b215d..91efcea98 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,501 @@
+Changes in version 0.3.4.1-alpha - 2018-05-1?
+ XXX BLURB
+
+
+ o Major feature (directory authority, modularization):
+ - The directory authority subsystem has been modularized. The code is now
+ located in src/or/dirauth/ which is compiled in by default. To disable the
+ module, the configure option --disable-module-dirauth has been added.
+ Closes ticket 25610;
+
+ o Major feature (main loop, CPU usage):
+ - Previously, tor would enable at startup all possible main loop event
+ regardless if it needed them. For instance, directory authorities
+ callbacks were fired up even for client only. We have now refactored this
+ whole interface to only enable the appropriate callbacks depending on what
+ are tor roles (client only, relay, hidden service, etc.). Furthermore,
+ these events now depend on DisableNetwork or the hibernation state in
+ order to enable them. This is a big step towards reducing client CPU usage
+ by reducing the amount of wake ups the daemon does. Closes ticket 25376
+ and 25762.
+
+ o Major features (CPU usage, mobile):
+ - When Tor is disabled (via DisableNetwork or via hibernation), it
+ no longer needs to run any per-second events. This change should
+ make it easier for mobile applications to disable Tor while the
+ device is sleeping, or Tor is not running. Closes ticket 26063.
+
+ o Major features (main loop, CPU wakeup):
+ - The bandwidth-limitation logic has been refactored so that
+ bandwidth calculations are performed on-demand, rather than
+ every TokenBucketRefillInterval milliseconds.
+ This change should improve the granularity of our bandwidth
+ calculations, and limit the number of times that the Tor process needs
+ to wake up when it is idle. Closes ticket 25373.
+
+ o Major bugfixes (directory authorities, security):
+ - When directory authorities read a zero-byte bandwidth file, they log
+ a warning with the contents of an uninitialised buffer. Log a warning
+ about the empty file instead.
+ Fixes bug 26007; bugfix on 0.2.2.1-alpha.
+
+ o Major bugfixes (directory authority):
+ - Avoid a crash when testing router reachability on a router that could
+ have an ed25519 ID, but which does not. Fixes bug 25415; bugfix on
+ 0.3.3.2-alpha.
+
+ o Major bugfixes (onion service):
+ - Correctly detect when onion services get disabled after HUP.
+ Fixes bug 25761; bugfix on 0.3.2.1.
+
+ o Major bugfixes (protover, voting):
+ - Revise Rust implementation of protover to use a more memory-efficient
+ voting algorithm and corresponding data structures, thus avoiding a
+ potential (but small impact) DoS attack where specially crafted protocol
+ strings would expand to several potential megabytes in memory. In the
+ process, several portions of code were revised to be methods on new,
+ custom types, rather than functions taking interchangeable types, thus
+ increasing type safety of the module. Custom error types and handling
+ were added as well, in order to facilitate better error dismissal/handling
+ in outside crates and avoid mistakenly passing an internal error string to
+ C over the FFI boundary. Many tests were added, and some previous
+ differences between the C and Rust implementations have been
+ remedied. Fixes bug 24031; bugfix on 0.3.3.1-alpha.
+
+ o Major bugfixes (relay, denial of service):
+ - Impose a limit on circuit cell queue size. The limit can be controlled by
+ a consensus parameter. Fixes bug 25226; bugfix on 0.2.4.14-alpha.
+
+ o Minor feature (entry guards):
+ - Introduce torrc option NumPrimaryGuards for controlling the number of
+ primary guards. Closes ticket 25843.
+
+ o Minor features (accounting):
+ - When we become dormant, use a scheduled event to wake up at the right
+ time. Previously, we would use the per-second timer to check whether
+ to wake up, but we no longer have any per-second timers enabled when
+ the network is disabled. Closes ticket 26064.
+
+ o Minor features (code quality):
+ - Add optional spell-checking for the Tor codebase, using the "misspell"
+ program. To use this feature, run "make check-typos".
+ Closes ticket 25024.
+
+ o Minor features (compatibility):
+ - Tor now detects versions of OpenSSL 1.1.0 and later compiled with the
+ no-deprecated option, and builds correctly with them. Closes
+ tickets 19429, 19981, and 25353.
+
+ o Minor features (compilation, portability):
+ - Avoid some compilation warnings with recent versions
+ of LibreSSL. Closes ticket 26006.
+
+ o Minor features (compression, zstd):
+ - When running with zstd, Tor now considers using advanced functions that
+ the zstd maintainers have labeled as potentially unstable. To
+ prevent breakage, Tor will only use this functionality when
+ the runtime version of the zstd library matches the version
+ with which it were compiled. Closes ticket 25162.
+
+ o Minor features (configuration):
+ - The "DownloadSchedule" options have been renamed to end with
+ "DownloadInitialDelay". The old names are still allowed, but will
+ produce a warning. Comma-separated lists are still permitted for
+ these options, but all values after the first are ignored (as they have
+ been since 0.2.9). Closes ticket 23354.
+
+ o Minor features (continuous integration):
+ - Our .travis.yml configuration now includes support for testing
+ the results of "make distcheck". (It's not uncommon for "make check" to
+ pass but "make distcheck" to fail.) Closes ticket 25814.
+ - Our Travis CI configuration now integrates with the Coveralls coverage
+ analysis tool. Closes ticket 25818.
+
+ o Minor features (control port):
+ - Introduce GETINFO "current-time/{local,utc}" to return the local
+ and UTC times respectively in ISO format. This helps a controller
+ like Tor Browser detect a time-related error. Closes ticket 25511.
+ Patch by Neel Chauhan.
+ - Introduce new fields to the CIRC_BW event. There are two new fields in
+ each of the read and written directions. The DELIVERED fields report the
+ total valid data on the circuit, as measured by the payload sizes of
+ verified and error-checked relay command cells. The OVERHEAD fields
+ report the total unused bytes in each of these cells. Closes ticket 25903.
+
+ o Minor features (directory authority):
+ - Directory authorities now open their key-pinning files as O_SYNC,
+ to prevent themselves from accidentally writing partial lines.
+ Closes ticket 23909.
+
+ o Minor features (directory authority, forward compatibility):
+ - Make the lines of the measured bandwidth file able to contain their
+ entries in any order. Previously, the node_id entry needed to come
+ first. Closes ticket 26004.
+
+ o Minor features (geoip):
+ - Update geoip and geoip6 to the May 1 2018 Maxmind GeoLite2
+ Country database. Closes ticket 26104.
+
+ o Minor features (mainloop):
+ - Move responsibility for
+ closing connections, circuits, and channels
+ from a once-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
+ callback, we can eliminate it entirely to conserve CPU when idle.
+ Closes ticket
+ 25932.
+ - Move responsibility for
+ consensus voting
+ from a once-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
+ callback, we can eliminate it entirely to conserve CPU when idle.
+ Closes ticket
+ 25937.
+ - Move responsibility for
+ flushing log callbacks
+ from a once-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
+ callback, we can eliminate it entirely to conserve CPU when idle.
+ Closes ticket
+ 25951.
+ - Move responsibility for
+ honoring delayed SIGNEWNYM requests
+ from a once-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
+ callback, we can eliminate it entirely to conserve CPU when idle.
+ Closes ticket
+ 25949.
+ - Move responsibility for
+ rescanning the consensus cache
+ from a once-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
+ callback, we can eliminate it entirely to conserve CPU when idle.
+ Closes ticket:
+ 25931.
+ - Move responsibility for
+ saving the state file to disk
+ from a once-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
+ callback, we can eliminate it entirely to conserve CPU when idle.
+ Closes ticket
+ 25948.
+ - Move responsibility for
+ warning relay operators about unreachable ports
+ from a once-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
+ callback, we can eliminate it entirely to conserve CPU when idle.
+ Closes ticket
+ 25952.
+ - Move responsibility for
+ keeping track of Tor's uptime
+ from a nce-per-second callback to a callback that is only scheduled as
+ needed. Once enough items are removed from our once-per-second
+ callback, we can eliminate it entirely to conserve CPU when idle.
+ Closes ticket
+ 26009.
+
+ o Minor features (performance):
+ - Avoid a needless call to malloc() when processing an incoming
+ relay cell. Closes ticket 24914.
+
+ o Minor features (performance, 32-bit):
+ - Make our timing-wheel code run a tiny bit faster on 32-bit platforms,
+ by preferring 32-bit math to 64-bit. Closes ticket 24688.
+
+ o Minor features (performance, allocation):
+ - Avoid a needless malloc()/free() pair every time we handle an ntor
+ handshake. Closes ticket 25150.
+
+ o Minor features (Testing):
+ - Add a unit test for voting_schedule_get_start_of_next_interval().
+ Closes ticket 26014, and helps make unit test coverage more
+ deterministic.
+ - A new unittests module specifically for testing the functions in the
+ (new-ish) bridges.c module has been created with new unittests, raising
+ the code coverage percentages. Closes 25425.
+ - We now have improved testing for addressmap_get_virtual_address()
+ function. This should improve our test coverage, and make our test
+ coverage more deterministic. Closes ticket 25993.
+
+ o Minor features (timekeeping, circuit scheduling):
+ - When keeping track of how busy each circuit have been recently on
+ a given connection, use coarse-grained monotonic timers rather than
+ gettimeofday(). This change should marginally increase accuracy
+ and performance. Implements part of ticket 25927.
+
+ o Minor bugfix (controler):
+ - Make CIRC_BW event reflect the total of all data sent on a circuit,
+ including padding and dropped cells. Also fix a mis-counting bug
+ when STREAM_BW events were enabled. Fixes bug 25400; bugfix on
+ 0.2.5.2-alpha.
+
+ o Minor bugfix (Multiple includes):
+ - Fixed multiple includes of trasports.h in src/or/connection.c
+ Fixes bug 25261; bugfix on 0.2.5.1-alpha.
+
+ o Minor bugfixes (Assert crash):
+ - Avoid an assert in the circuit build timeout code if we fail to
+ allow any circuits to actually complete. Fixes bug 25733;
+ bugfix on 0.2.2.2-alpha.
+
+ o Minor bugfixes (bandwidth management):
+ - Consider ourselves "low on write bandwidth" if we have exhausted our
+ write bandwidth some time in the last second. This was the
+ documented behavior before, but the actual behavior was to change
+ this value every TokenBucketRefillInterval. Fixes bug 25828; bugfix on
+ 0.2.3.5-alpha.
+
+ o Minor bugfixes (C correctness):
+ - Add a missing lock acquisition in the shutdown code of the
+ control subsystem. Fixes bug 25675; bugfix on 0.2.7.3-rc. Found
+ by Coverity; this is CID 1433643.
+
+ o Minor bugfixes (channel_get_for_extend()):
+ - Remove the unused variable n_possible from the function
+ Fixes bug 25645; bugfix on 0.2.4.4-alpha
+
+ o Minor bugfixes (circuit path selection):
+ - Don't count path selection failures as circuit build failures. This
+ should eliminate cases where Tor blames its guard or the network
+ for situations like insufficient microdescriptors and/or overly
+ restrictive torrc settings. Fixes bug 25705; bugfix on 0.3.3.1-alpha.
+
+ o Minor bugfixes (client):
+ - Don't consider Tor running as a client if the ControlPort is open. Fixes
+ bug 26062; bugfix on 0.2.9.4-alpha.
+
+ o Minor bugfixes (control interface):
+ - Respond with more human readable error messages to GETINFO
+ exit-policy/* requests. Also, let controller know if error
+ is transient (response code 551) or not (response code 552).
+ Fixes bug 25852; bugfix on 0.2.8.1-alpha.
+
+ o Minor bugfixes (directory client):
+ - When unverified-consensus is verified, rename it to cached-consenus.
+ Fixes bug 4187; bugfix on 0.2.0.3-alpha.
+
+ o Minor bugfixes (directory server cert fetch):
+ - Fixed launching a certificate fetch always during the scheduled
+ periodic consensus fetch by fetching only in those cases when
+ consensus are waiting for certs.
+ Fixes bug 24740; bugfix on 0.2.9.1-alpha.
+
+ o Minor bugfixes (documentation):
+ - Stop saying in the manual that clients cache ipv4 dns answers
+ from exit relays. We haven't used them since 0.2.6.3-alpha, and
+ in ticket 24050 we stopped even caching them as of 0.3.2.6-alpha,
+ but we forgot to say so in the man page. Fixes bug 26052; bugfix
+ on 0.3.2.6-alpha.
+
+ o Minor bugfixes (Duplicate code):
+ - Remove duplicate code in parse_{c,s}method_line and bootstrap
+ their functionalities into a single function. Fixes
+ bug 6236; bugfix on 0.2.3.6-alpha.
+
+ o Minor bugfixes (error reporting):
+ - Improve tolerance for directory authorities with skewed clocks.
+ Previously, an authority with a clock more than 60 seconds ahead
+ could cause a client with a correct clock to warn that the
+ client's clock was behind. Now the clocks of a majority of
+ directory authorities have to be ahead of the client before this
+ warning will occur. Fixes bug 25756; bugfix on 0.2.2.25-alpha.
+
+ o Minor bugfixes (freebsd):
+ - In have_enough_mem_for_dircache(), the variable DIRCACHE_MIN_MEM_MB
+ does not stringify on FreeBSD, so we switch to tor_asprintf(). Fixes
+ bug 20887; bugfix on 0.2.8.1-alpha. Patch by Neel Chauhan.
+
+ o Minor bugfixes (hidden service v3):
+ - Fix a memory leak when an hidden service v3 is configured and gets a
+ SIGHUP signal. Fixes bug 25901; bugfix on 0.3.2.1-alpha.
+ - When parsing the descriptor signature, look for the token plus an extra
+ white-space at the end. This is more correct but also will allow us to
+ support new fields that might start with "signature". Fixes bug 26069;
+ bugfix on 0.3.0.1-alpha.
+
+ o Minor bugfixes (Linux seccomp2 sandbox):
+ - Allow the nanosleep() system call, which glibc uses to implement
+ sleep() and usleep(). Fixes bug 24969; bugfix on 0.2.5.1-alpha.
+
+ o Minor bugfixes (path selection):
+ - Only select relays when they have the descriptors we prefer to
+ use for them. This change fixes a bug where we could select
+ a relay because it had _some_ descriptor, but reject it later with
+ a nonfatal assertion error because it didn't have the exact one we
+ wanted. Fixes bugs 25691 and 25692; bugfix on 0.3.3.4-alpha.
+
+ o Minor bugfixes (portability):
+ - Do not align mmap length, as it is not required by POSIX, and the
+ getpagesize function is deprecated. Fixes bug 25399; bugfix on
+ 0.1.1.23.
+
+ o Minor bugfixes (relay statistics):
+ - When a relay is collecting internal statistics about how many
+ create cell requests it has seen of each type, accurately count the
+ requests from relays that temporarily fall out of the consensus. (To
+ be extra conservative, we were already ignoring requests from
+ clients in our counts, and we continue ignoring them here.) Fixes
+ bug 24910; bugfix on 0.2.4.17-rc.
+
+ o Minor bugfixes (relay, crash):
+ - Avoid a crash when running with DirPort set but ORPort tuned off.
+ Fixes a case of bug 23693; bugfix on 0.3.1.1-alpha.
+
+ o Minor bugfixes (restart-in-process):
+ - When shutting down, Tor now clears all the flags in the control.c
+ module. This should prevent a bug where authentication cookies
+ are not generated on restart. Fixes bug 25512; bugfix on 0.3.3.1-alpha.
+
+ o Minor bugfixes (test):
+ - When testing workqueue event-cancellation, make sure that we actually
+ cancel an event, and that cancel each event with equal probability.
+ (It was previously possible, though extremely unlikely, for our
+ event-canceling test not to cancel any events.) Fixes bug 26008;
+ bugfix on 0.2.6.3-alpha.
+
+ o Minor bugfixes (testing):
+ - Repeat part of the test in test_client_pick_intro() a number of times,
+ to give it consistent coverage. Fixes bug 25996; bugfix on
+ 0.3.2.1-alpha.
+
+ o Minor bugfixes (testing, coverage):
+ - Remove randomness from the hs_common/responsible_hsdirs test,
+ so that it always takes the same path through the function it tests.
+ Fixes bug 25997; bugfix on 0.3.2.1-alpha.
+
+ o Minor bugfixes (tests):
+ - Change the behavior of the "channel/outbound" test so that it never
+ causes a 10-second rollover for the EWMA circuitmux code. Previously,
+ this behavior would happen randomly, and result in fluctuating test
+ coverage. Fixes bug 25994; bugfix on 0.3.3.1-alpha.
+ - Use X509_new() to allocate certificates that will be freed later
+ with X509_free(). Previously, some parts of the unit tests had
+ used tor_malloc_zero(), which is incorrect, and which caused
+ test failures on Windows when they were built with extra hardening.
+ Fixes bugs 25943 and 25944; bugfix on 0.2.8.1-alpha.
+ Patch by Marcin Cieślak.
+ - While running the circuit_timeout test, fix the PRNG to a deterministic
+ AES stream, so that the test coverage from this test will itself be
+ deterministic. Fixes bug 25995; bugfix on 0.2.2.2-alpha.
+
+ o Minor bugfixes (vanguards):
+ - Allow the last hop in a vanguard circuit to be the same as our first,
+ to prevent the adversary from influencing guard node choice by choice
+ of last hop. Also prevent the creation of A - B - A paths, or A - A
+ paths, which are forbidden by relays. Fixes bug 25870; bugfix on
+ 0.3.3.1-alpha.
+
+ o Code simplification and refactoring:
+ We remove the PortForwsrding and PortForwardingHelper options, related
+ functions, and the port_forwarding tests. These options were used by
+ the now-deprecated Vidalia to help ordinary users become Tor relays or
+ bridges. Closes ticket 25409. Patch by Neel Chauhan.
+ - In order to make the OR and dir checking function in router.c less
+ confusing we renamed some functions and consider_testing_reachability()
+ has been splitted into router_should_check_reachability() and
+ router_do_reachability_checks(). Also we improved the documentation in
+ some functions. Closes ticket 18918.
+ - Initial work to isolate Libevent usage to a handful of modules in our
+ codebase, to simplify our call structure, and so that we can more
+ easily change event loops in the future if needed. Closes ticket
+ 23750.
+ - Introduce a function to call getsockname() and return
+ tor_addr_t, to save a little complexity throughout the codebase.
+ Closes ticket 18105.
+ - Make hsdir_index in node_t a hsdir_index_t rather than a pointer
+ as hsdir_index is always present. Also, we move hsdir_index_t into
+ or.h. Closes ticket 23094. Patch by Neel Chauhan.
+ - Merge functions used for describing nodes and suppress the functions
+ that do not allocate memory for the output buffer string.
+ NODE_DESC_BUF_LEN constant and format_node_description() function
+ cannot be used externally from router.c module anymore.
+ Closes ticket 25432. Patch by valentecaio.
+ - Our main loop has been simplified so that all important operations
+ happen inside events. Previously, some operations had to happen
+ outside the event loop, to prevent infinite sequences of event
+ activations. Closes ticket 25374.
+ - Put a SHA1 public key digest in hs_service_intro_point_t, and use it in
+ register_intro_circ() and service_intro_point_new(). This prevents the
+ digest from being re-calculated each time. Closes ticket 23107. Patch by
+ Neel Chauhan.
+ - Refactor token-bucket implementations to use a common backend.
+ Closes ticket 25766.
+ - Remove extern declaration of stats_n_seconds_working variable from main,
+ protecting its accesses with get_uptime() and reset_uptime() functions.
+ Closes ticket 25081, patch by “valentecaio”.
+ - Remove our previous logic for "cached gettimeofday()" -- our coarse
+ monotonic timers are fast enough for this purpose, and far less
+ error-prone. Implements part of ticket 25927.
+ - Remove the return value for fascist_firewall_choose_address_base(),
+ and sister functions such as fascist_firewall_choose_address_node()
+ and fascist_firewall_choose_address_rs(). Also, while we're here,
+ initialize the ap argument as leaving it uninitialized can pose a
+ security hazard. Closes ticket 24734. Patch by Neel Chauhan.
+ - Rename two fields of connection_t struct.
+ timestamp_lastwritten is renamed to timestamp_last_write_allowed and
+ timestamp_lastread is renamed to timestamp_last_read_allowed.
+ Closes ticket 24714, patch by "valentecaio".
+ - Since Tor requires C99, remove our old workaround code for libc
+ implementations where free(NULL) doesn't work. Closes ticket 24484.
+ - Use our standard rate-limiting code to deal with excessive libevent
+ failures, rather than the hand-rolled logic we had before.
+ Closes ticket 26016.
+ - We remove the return value of node_get_prim_orport() and
+ node_get_prim_dirport(), and introduce node_get_prim_orport()
+ in node_ipv6_or_preferred() and node_ipv6_dir_preferred() in
+ order to check for a null address. Closes ticket 23873. Patch
+ by Neel Chauhan.
+ - We switch to should_record_bridge_info() in geoip_note_client_seen() and
+ options_need_geoip_info() instead of accessing the configuration values
+ directly. Fixes bug 25290; bugfix on 0.2.1.6-alpha. Patch by Neel
+ Chauhan.
+
+ o Deprecated features:
+ - As we are not recommending 0.2.5 anymore we require relays that once had
+ an ed25519 key associated with their RSA key to always have that key
+ instead of allowing them to drop back to a version that didn't support
+ ed25519. This means they need to use a new RSA key if the want to
+ downgrade to an older version of tor without ed25519. Closes ticket 20522.
+
+ o Documentation:
+ - Correct an IPv6 error in the documentation for ExitPolicy.
+ Closes ticket 25857. Patch from "CTassisF".
+
+ o New system requirements:
+ - Tor no longer tries to support systems without mmap() or some local
+ equivalent. Apparently, compilation on such systems has been broken for
+ some time, without anybody noticing or complaining. Closes ticket
+ 25398.
+
+ o Removed features:
+ - Directory authorities will no longer support voting according to any
+ consensus method before consensus method 25. This keeps authorities
+ compatible with all authorities running 0.2.9.8 and later, and does
+ not break any clients or relays. Implements ticket 24378 and
+ proposal 290.
+ - The PortForwarding and PortForwardingHelper features have been
+ removed. The reasoning is, given that implementations of NAT traversal
+ protocols within common consumer grade routers are frequently buggy, and
+ that the target audience for a NAT punching feature is a perhaps
+ less-technically-inclined relay operator, when the helper fails to setup
+ traversal the problems are usually deep, ugly, and very router specific,
+ making them horrendously impossible for technical support to reliable
+ assist with, and thus resulting in frustration all around. Unfortunately,
+ relay operators who would like to run relays behind NATs will need to
+ become more familiar with the port forwarding configurations on their
+ local router. Closes 25409.
+ - The TestingEnableTbEmptyEvent option has been removed. It was used
+ in testing simulations to measure how often connection buckets were
+ emptied, in order to improve our scheduling, but it has not
+ been actively used in years. Closes ticket 25760.
+ - The old "round-robin" circuit multiplexer (circuitmux)
+ implementation has been removed, along with a fairly large set of
+ code that existed to support it. It has not been the default
+ circuitmux since we introduced the "EWMA" circuitmux in 0.2.4.x,
+ but it still required an unreasonable amount of memory and CPU.
+ Closes ticket 25268.
+
+
Changes in version 0.3.3.5-rc - 2018-04-15
Tor 0.3.3.5-rc fixes various bugs in earlier versions of Tor,
including some that could affect reliability or correctness.
diff --git a/changes/18105 b/changes/18105
deleted file mode 100644
index 87e6e61d2..000000000
--- a/changes/18105
+++ /dev/null
@@ -1,4 +0,0 @@
- o Code simplification and refactoring:
- - Introduce a function to call getsockname() and return
- tor_addr_t, to save a little complexity throughout the codebase.
- Closes ticket 18105.
diff --git a/changes/24378 b/changes/24378
deleted file mode 100644
index 663d27e96..000000000
--- a/changes/24378
+++ /dev/null
@@ -1,8 +0,0 @@
- o Removed features:
-
- - Directory authorities will no longer support voting according to any
- consensus method before consensus method 25. This keeps authorities
- compatible with all authorities running 0.2.9.8 and later, and does
- not break any clients or relays. Implements ticket 24378 and
- proposal 290.
-
diff --git a/changes/25857 b/changes/25857
deleted file mode 100644
index e457af2f8..000000000
--- a/changes/25857
+++ /dev/null
@@ -1,3 +0,0 @@
- o Documentation:
- - Correct an IPv6 error in the documentation for ExitPolicy.
- Closes ticket 25857. Patch from "CTassisF".
diff --git a/changes/bug18918 b/changes/bug18918
deleted file mode 100644
index c939168f4..000000000
--- a/changes/bug18918
+++ /dev/null
@@ -1,6 +0,0 @@
- o Code simplification and refactoring:
- - In order to make the OR and dir checking function in router.c less
- confusing we renamed some functions and consider_testing_reachability()
- has been splitted into router_should_check_reachability() and
- router_do_reachability_checks(). Also we improved the documentation in
- some functions. Closes ticket 18918.
diff --git a/changes/bug20887 b/changes/bug20887
deleted file mode 100644
index 5d4e4ed23..000000000
--- a/changes/bug20887
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (freebsd):
- - In have_enough_mem_for_dircache(), the variable DIRCACHE_MIN_MEM_MB
- does not stringify on FreeBSD, so we switch to tor_asprintf(). Fixes
- bug 20887; bugfix on 0.2.8.1-alpha. Patch by Neel Chauhan.
diff --git a/changes/bug23094 b/changes/bug23094
deleted file mode 100644
index 5040ab4e7..000000000
--- a/changes/bug23094
+++ /dev/null
@@ -1,4 +0,0 @@
- o Code simplification and refactoring:
- - Make hsdir_index in node_t a hsdir_index_t rather than a pointer
- as hsdir_index is always present. Also, we move hsdir_index_t into
- or.h. Closes ticket 23094. Patch by Neel Chauhan.
diff --git a/changes/bug23107 b/changes/bug23107
deleted file mode 100644
index 55885e10f..000000000
--- a/changes/bug23107
+++ /dev/null
@@ -1,6 +0,0 @@
- o Code simplification and refactoring:
- - Put a SHA1 public key digest in hs_service_intro_point_t, and use it in
- register_intro_circ() and service_intro_point_new(). This prevents the
- digest from being re-calculated each time. Closes ticket 23107. Patch by
- Neel Chauhan.
-
diff --git a/changes/bug23693.1 b/changes/bug23693.1
deleted file mode 100644
index 4b1678881..000000000
--- a/changes/bug23693.1
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (relay, crash):
- - Avoid a crash when running with DirPort set but ORPort tuned off.
- Fixes a case of bug 23693; bugfix on 0.3.1.1-alpha.
-
diff --git a/changes/bug23909 b/changes/bug23909
deleted file mode 100644
index 6b84e711e..000000000
--- a/changes/bug23909
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features (directory authority):
- - Directory authorities now open their key-pinning files as O_SYNC,
- to prevent themselves from accidentally writing partial lines.
- Closes ticket 23909.
diff --git a/changes/bug24031 b/changes/bug24031
deleted file mode 100644
index 2bb0e8309..000000000
--- a/changes/bug24031
+++ /dev/null
@@ -1,13 +0,0 @@
- o Major bugfixes (protover, voting):
- - Revise Rust implementation of protover to use a more memory-efficient
- voting algorithm and corresponding data structures, thus avoiding a
- potential (but small impact) DoS attack where specially crafted protocol
- strings would expand to several potential megabytes in memory. In the
- process, several portions of code were revised to be methods on new,
- custom types, rather than functions taking interchangeable types, thus
- increasing type safety of the module. Custom error types and handling
- were added as well, in order to facilitate better error dismissal/handling
- in outside crates and avoid mistakenly passing an internal error string to
- C over the FFI boundary. Many tests were added, and some previous
- differences between the C and Rust implementations have been
- remedied. Fixes bug 24031; bugfix on 0.3.3.1-alpha.
diff --git a/changes/bug24484 b/changes/bug24484
deleted file mode 100644
index 35a204492..000000000
--- a/changes/bug24484
+++ /dev/null
@@ -1,4 +0,0 @@
- o Code simplification and refactoring:
- - Since Tor requires C99, remove our old workaround code for libc
- implementations where free(NULL) doesn't work. Closes ticket 24484.
-
diff --git a/changes/bug24688 b/changes/bug24688
deleted file mode 100644
index c376fe6a0..000000000
--- a/changes/bug24688
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor features (performance, 32-bit):
- - Make our timing-wheel code run a tiny bit faster on 32-bit platforms,
- by preferring 32-bit math to 64-bit. Closes ticket 24688.
diff --git a/changes/bug24910 b/changes/bug24910
deleted file mode 100644
index 58574c006..000000000
--- a/changes/bug24910
+++ /dev/null
@@ -1,7 +0,0 @@
- o Minor bugfixes (relay statistics):
- - When a relay is collecting internal statistics about how many
- create cell requests it has seen of each type, accurately count the
- requests from relays that temporarily fall out of the consensus. (To
- be extra conservative, we were already ignoring requests from
- clients in our counts, and we continue ignoring them here.) Fixes
- bug 24910; bugfix on 0.2.4.17-rc.
diff --git a/changes/bug24914 b/changes/bug24914
deleted file mode 100644
index ea441fd38..000000000
--- a/changes/bug24914
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor features (performance):
- - Avoid a needless call to malloc() when processing an incoming
- relay cell. Closes ticket 24914.
diff --git a/changes/bug24969 b/changes/bug24969
deleted file mode 100644
index 46b2bae6f..000000000
--- a/changes/bug24969
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor bugfixes (Linux seccomp2 sandbox):
- - Allow the nanosleep() system call, which glibc uses to implement
- sleep() and usleep(). Fixes bug 24969; bugfix on 0.2.5.1-alpha.
diff --git a/changes/bug25226 b/changes/bug25226
deleted file mode 100644
index b594a7a42..000000000
--- a/changes/bug25226
+++ /dev/null
@@ -1,4 +0,0 @@
- o Major bugfixes (relay, denial of service):
- - Impose a limit on circuit cell queue size. The limit can be controlled by
- a consensus parameter. Fixes bug 25226; bugfix on 0.2.4.14-alpha.
-
diff --git a/changes/bug25373 b/changes/bug25373
deleted file mode 100644
index 03e870e69..000000000
--- a/changes/bug25373
+++ /dev/null
@@ -1,7 +0,0 @@
- o Major features (main loop, CPU wakeup):
- - The bandwidth-limitation logic has been refactored so that
- bandwidth calculations are performed on-demand, rather than
- every TokenBucketRefillInterval milliseconds.
- This change should improve the granularity of our bandwidth
- calculations, and limit the number of times that the Tor process needs
- to wake up when it is idle. Closes ticket 25373.
diff --git a/changes/bug25398 b/changes/bug25398
deleted file mode 100644
index 227a95d21..000000000
--- a/changes/bug25398
+++ /dev/null
@@ -1,5 +0,0 @@
- o New system requirements:
- - Tor no longer tries to support systems without mmap() or some local
- equivalent. Apparently, compilation on such systems has been broken for
- some time, without anybody noticing or complaining. Closes ticket
- 25398.
diff --git a/changes/bug25399 b/changes/bug25399
deleted file mode 100644
index 455457493..000000000
--- a/changes/bug25399
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (portability):
- - Do not align mmap length, as it is not required by POSIX, and the
- getpagesize function is deprecated. Fixes bug 25399; bugfix on
- 0.1.1.23.
-
diff --git a/changes/bug25400 b/changes/bug25400
deleted file mode 100644
index cee7ea83b..000000000
--- a/changes/bug25400
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfix (controler):
- - Make CIRC_BW event reflect the total of all data sent on a circuit,
- including padding and dropped cells. Also fix a mis-counting bug
- when STREAM_BW events were enabled. Fixes bug 25400; bugfix on
- 0.2.5.2-alpha.
diff --git a/changes/bug25409 b/changes/bug25409
deleted file mode 100644
index 093d8f58b..000000000
--- a/changes/bug25409
+++ /dev/null
@@ -1,12 +0,0 @@
- o Removed features:
- - The PortForwarding and PortForwardingHelper features have been
- removed. The reasoning is, given that implementations of NAT traversal
- protocols within common consumer grade routers are frequently buggy, and
- that the target audience for a NAT punching feature is a perhaps
- less-technically-inclined relay operator, when the helper fails to setup
- traversal the problems are usually deep, ugly, and very router specific,
- making them horrendously impossible for technical support to reliable
- assist with, and thus resulting in frustration all around. Unfortunately,
- relay operators who would like to run relays behind NATs will need to
- become more familiar with the port forwarding configurations on their
- local router. Closes 25409.
diff --git a/changes/bug25415 b/changes/bug25415
deleted file mode 100644
index ec851aee8..000000000
--- a/changes/bug25415
+++ /dev/null
@@ -1,4 +0,0 @@
- o Major bugfixes (directory authority):
- - Avoid a crash when testing router reachability on a router that could
- have an ed25519 ID, but which does not. Fixes bug 25415; bugfix on
- 0.3.3.2-alpha.
diff --git a/changes/bug25425 b/changes/bug25425
deleted file mode 100644
index 41f1a47b1..000000000
--- a/changes/bug25425
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features (testing):
- - A new unittests module specifically for testing the functions in the
- (new-ish) bridges.c module has been created with new unittests, raising
- the code coverage percentages. Closes 25425.
diff --git a/changes/bug25512 b/changes/bug25512
deleted file mode 100644
index 4b6491867..000000000
--- a/changes/bug25512
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (restart-in-process):
- - When shutting down, Tor now clears all the flags in the control.c
- module. This should prevent a bug where authentication cookies
- are not generated on restart. Fixes bug 25512; bugfix on 0.3.3.1-alpha.
-
diff --git a/changes/bug25675 b/changes/bug25675
deleted file mode 100644
index d0f0287b5..000000000
--- a/changes/bug25675
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (C correctness):
- - Add a missing lock acquisition in the shutdown code of the
- control subsystem. Fixes bug 25675; bugfix on 0.2.7.3-rc. Found
- by Coverity; this is CID 1433643.
diff --git a/changes/bug25691_again b/changes/bug25691_again
deleted file mode 100644
index 3d0d91bfd..000000000
--- a/changes/bug25691_again
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor bugfixes (path selection):
- - Only select relays when they have the descriptors we prefer to
- use for them. This change fixes a bug where we could select
- a relay because it had _some_ descriptor, but reject it later with
- a nonfatal assertion error because it didn't have the exact one we
- wanted. Fixes bugs 25691 and 25692; bugfix on 0.3.3.4-alpha.
diff --git a/changes/bug25705 b/changes/bug25705
deleted file mode 100644
index 360d96d4c..000000000
--- a/changes/bug25705
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (circuit path selection):
- - Don't count path selection failures as circuit build failures. This
- should eliminate cases where Tor blames its guard or the network
- for situations like insufficient microdescriptors and/or overly
- restrictive torrc settings. Fixes bug 25705; bugfix on 0.3.3.1-alpha.
diff --git a/changes/bug25733 b/changes/bug25733
deleted file mode 100644
index 775c1ae00..000000000
--- a/changes/bug25733
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (Assert crash):
- - Avoid an assert in the circuit build timeout code if we fail to
- allow any circuits to actually complete. Fixes bug 25733;
- bugfix on 0.2.2.2-alpha.
diff --git a/changes/bug25756 b/changes/bug25756
deleted file mode 100644
index ff5ac0391..000000000
--- a/changes/bug25756
+++ /dev/null
@@ -1,7 +0,0 @@
- o Minor bugfixes (error reporting):
- - Improve tolerance for directory authorities with skewed clocks.
- Previously, an authority with a clock more than 60 seconds ahead
- could cause a client with a correct clock to warn that the
- client's clock was behind. Now the clocks of a majority of
- directory authorities have to be ahead of the client before this
- warning will occur. Fixes bug 25756; bugfix on 0.2.2.25-alpha.
diff --git a/changes/bug25761 b/changes/bug25761
deleted file mode 100644
index 096fadcf0..000000000
--- a/changes/bug25761
+++ /dev/null
@@ -1,3 +0,0 @@
- o Major bugfixes (onion service):
- - Correctly detect when onion services get disabled after HUP.
- Fixes bug 25761; bugfix on 0.3.2.1.
diff --git a/changes/bug25828 b/changes/bug25828
deleted file mode 100644
index 45cd1f4ae..000000000
--- a/changes/bug25828
+++ /dev/null
@@ -1,7 +0,0 @@
- o Minor bugfixes (bandwidth management):
- - Consider ourselves "low on write bandwidth" if we have exhausted our
- write bandwidth some time in the last second. This was the
- documented behavior before, but the actual behavior was to change
- this value every TokenBucketRefillInterval. Fixes bug 25828; bugfix on
- 0.2.3.5-alpha.
-
diff --git a/changes/bug25843 b/changes/bug25843
deleted file mode 100644
index ddbbbef78..000000000
--- a/changes/bug25843
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor feature (entry guards):
- - Introduce torrc option NumPrimaryGuards for controlling the number of
- primary guards. Closes ticket 25843.
\ No newline at end of file
diff --git a/changes/bug25852 b/changes/bug25852
deleted file mode 100644
index 8b1563841..000000000
--- a/changes/bug25852
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (control interface):
- - Respond with more human readable error messages to GETINFO
- exit-policy/* requests. Also, let controller know if error
- is transient (response code 551) or not (response code 552).
- Fixes bug 25852; bugfix on 0.2.8.1-alpha.
diff --git a/changes/bug25870 b/changes/bug25870
deleted file mode 100644
index aea5a1e30..000000000
--- a/changes/bug25870
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor bugfixes (vanguards):
- - Allow the last hop in a vanguard circuit to be the same as our first,
- to prevent the adversary from influencing guard node choice by choice
- of last hop. Also prevent the creation of A - B - A paths, or A - A
- paths, which are forbidden by relays. Fixes bug 25870; bugfix on
- 0.3.3.1-alpha.
diff --git a/changes/bug25901 b/changes/bug25901
deleted file mode 100644
index 3ad30c767..000000000
--- a/changes/bug25901
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor bugfixes (hidden service v3):
- - Fix a memory leak when an hidden service v3 is configured and gets a
- SIGHUP signal. Fixes bug 25901; bugfix on 0.3.2.1-alpha.
diff --git a/changes/bug25943 b/changes/bug25943
deleted file mode 100644
index 187f9a287..000000000
--- a/changes/bug25943
+++ /dev/null
@@ -1,7 +0,0 @@
- o Minor bugfixes (tests):
- - Use X509_new() to allocate certificates that will be freed later
- with X509_free(). Previously, some parts of the unit tests had
- used tor_malloc_zero(), which is incorrect, and which caused
- test failures on Windows when they were built with extra hardening.
- Fixes bugs 25943 and 25944; bugfix on 0.2.8.1-alpha.
- Patch by Marcin Cieślak.
diff --git a/changes/bug26007 b/changes/bug26007
deleted file mode 100644
index efcd15084..000000000
--- a/changes/bug26007
+++ /dev/null
@@ -1,5 +0,0 @@
- o Major bugfixes (directory authorities, security):
- - When directory authorities read a zero-byte bandwidth file, they log
- a warning with the contents of an uninitialised buffer. Log a warning
- about the empty file instead.
- Fixes bug 26007; bugfix on 0.2.2.1-alpha.
diff --git a/changes/bug26052 b/changes/bug26052
deleted file mode 100644
index 4721933fa..000000000
--- a/changes/bug26052
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor bugfixes (documentation):
- - Stop saying in the manual that clients cache ipv4 dns answers
- from exit relays. We haven't used them since 0.2.6.3-alpha, and
- in ticket 24050 we stopped even caching them as of 0.3.2.6-alpha,
- but we forgot to say so in the man page. Fixes bug 26052; bugfix
- on 0.3.2.6-alpha.
diff --git a/changes/bug26069 b/changes/bug26069
deleted file mode 100644
index 192e97d78..000000000
--- a/changes/bug26069
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (hidden service v3):
- - When parsing the descriptor signature, look for the token plus an extra
- white-space at the end. This is more correct but also will allow us to
- support new fields that might start with "signature". Fixes bug 26069;
- bugfix on 0.3.0.1-alpha.
diff --git a/changes/coveralls b/changes/coveralls
deleted file mode 100644
index 7fa69bb2b..000000000
--- a/changes/coveralls
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor features (continuous integration):
- - Our Travis CI configuration now integrates with the Coveralls coverage
- analysis tool. Closes ticket 25818.
diff --git a/changes/feature19429 b/changes/feature19429
deleted file mode 100644
index 0faa6e84e..000000000
--- a/changes/feature19429
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor features (compatibility):
- - Tor now detects versions of OpenSSL 1.1.0 and later compiled with the
- no-deprecated option, and builds correctly with them. Closes
- tickets 19429, 19981, and 25353.
-
diff --git a/changes/feature25150 b/changes/feature25150
deleted file mode 100644
index eb65327a8..000000000
--- a/changes/feature25150
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features (performance, allocation):
- - Avoid a needless malloc()/free() pair every time we handle an ntor
- handshake. Closes ticket 25150.
-
diff --git a/changes/geoip-2018-05-01 b/changes/geoip-2018-05-01
deleted file mode 100644
index 1528bb0c3..000000000
--- a/changes/geoip-2018-05-01
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features (geoip):
- - Update geoip and geoip6 to the May 1 2018 Maxmind GeoLite2
- Country database. Closes ticket 26104.
-
diff --git a/changes/isolate_libevent b/changes/isolate_libevent
deleted file mode 100644
index 852e533fd..000000000
--- a/changes/isolate_libevent
+++ /dev/null
@@ -1,5 +0,0 @@
- o Code simplification and refactoring:
- - Initial work to isolate Libevent usage to a handful of modules in our
- codebase, to simplify our call structure, and so that we can more
- easily change event loops in the future if needed. Closes ticket
- 23750.
diff --git a/changes/ticket20522 b/changes/ticket20522
deleted file mode 100644
index a5e6718e1..000000000
--- a/changes/ticket20522
+++ /dev/null
@@ -1,6 +0,0 @@
- o Deprecated features:
- - As we are not recommending 0.2.5 anymore we require relays that once had
- an ed25519 key associated with their RSA key to always have that key
- instead of allowing them to drop back to a version that didn't support
- ed25519. This means they need to use a new RSA key if the want to
- downgrade to an older version of tor without ed25519. Closes ticket 20522.
diff --git a/changes/ticket23354 b/changes/ticket23354
deleted file mode 100644
index f79dfd96a..000000000
--- a/changes/ticket23354
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor features (configuration):
- - The "DownloadSchedule" options have been renamed to end with
- "DownloadInitialDelay". The old names are still allowed, but will
- produce a warning. Comma-separated lists are still permitted for
- these options, but all values after the first are ignored (as they have
- been since 0.2.9). Closes ticket 23354.
diff --git a/changes/ticket23873 b/changes/ticket23873
deleted file mode 100644
index ffe65e5ed..000000000
--- a/changes/ticket23873
+++ /dev/null
@@ -1,6 +0,0 @@
- o Code simplification and refactoring:
- - We remove the return value of node_get_prim_orport() and
- node_get_prim_dirport(), and introduce node_get_prim_orport()
- in node_ipv6_or_preferred() and node_ipv6_dir_preferred() in
- order to check for a null address. Closes ticket 23873. Patch
- by Neel Chauhan.
diff --git a/changes/ticket24714 b/changes/ticket24714
deleted file mode 100644
index 60353abec..000000000
--- a/changes/ticket24714
+++ /dev/null
@@ -1,6 +0,0 @@
- o Code simplification and refactoring:
- - Rename two fields of connection_t struct.
- timestamp_lastwritten is renamed to timestamp_last_write_allowed and
- timestamp_lastread is renamed to timestamp_last_read_allowed.
- Closes ticket 24714, patch by "valentecaio".
-
diff --git a/changes/ticket24734 b/changes/ticket24734
deleted file mode 100644
index 00029ce57..000000000
--- a/changes/ticket24734
+++ /dev/null
@@ -1,6 +0,0 @@
- o Code simplification and refactoring:
- - Remove the return value for fascist_firewall_choose_address_base(),
- and sister functions such as fascist_firewall_choose_address_node()
- and fascist_firewall_choose_address_rs(). Also, while we're here,
- initialize the ap argument as leaving it uninitialized can pose a
- security hazard. Closes ticket 24734. Patch by Neel Chauhan.
diff --git a/changes/ticket24740 b/changes/ticket24740
deleted file mode 100644
index 253cdb65e..000000000
--- a/changes/ticket24740
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (directory server cert fetch):
- - Fixed launching a certificate fetch always during the scheduled
- periodic consensus fetch by fetching only in those cases when
- consensus are waiting for certs.
- Fixes bug 24740; bugfix on 0.2.9.1-alpha.
diff --git a/changes/ticket25024 b/changes/ticket25024
deleted file mode 100644
index 0e5069cf8..000000000
--- a/changes/ticket25024
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features (code quality):
- - Add optional spell-checking for the Tor codebase, using the "misspell"
- program. To use this feature, run "make check-typos".
- Closes ticket 25024.
diff --git a/changes/ticket25081 b/changes/ticket25081
deleted file mode 100644
index b6e6c2a5a..000000000
--- a/changes/ticket25081
+++ /dev/null
@@ -1,5 +0,0 @@
- o Code simplification and refactoring:
- - Remove extern declaration of stats_n_seconds_working variable from main,
- protecting its accesses with get_uptime() and reset_uptime() functions.
- Closes ticket 25081, patch by “valentecaio”.
-
diff --git a/changes/ticket25162 b/changes/ticket25162
deleted file mode 100644
index 37019a7f8..000000000
--- a/changes/ticket25162
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor features (compression, zstd):
- - When running with zstd, Tor now considers using advanced functions that
- the zstd maintainers have labeled as potentially unstable. To
- prevent breakage, Tor will only use this functionality when
- the runtime version of the zstd library matches the version
- with which it were compiled. Closes ticket 25162.
diff --git a/changes/ticket25261 b/changes/ticket25261
deleted file mode 100644
index 604a09d97..000000000
--- a/changes/ticket25261
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor bugfix (Multiple includes):
- - Fixed multiple includes of trasports.h in src/or/connection.c
- Fixes bug 25261; bugfix on 0.2.5.1-alpha.
diff --git a/changes/ticket25268 b/changes/ticket25268
deleted file mode 100644
index e444984dc..000000000
--- a/changes/ticket25268
+++ /dev/null
@@ -1,7 +0,0 @@
- o Removed features:
- - The old "round-robin" circuit multiplexer (circuitmux)
- implementation has been removed, along with a fairly large set of
- code that existed to support it. It has not been the default
- circuitmux since we introduced the "EWMA" circuitmux in 0.2.4.x,
- but it still required an unreasonable amount of memory and CPU.
- Closes ticket 25268.
diff --git a/changes/ticket25290 b/changes/ticket25290
deleted file mode 100644
index 5e44f5e05..000000000
--- a/changes/ticket25290
+++ /dev/null
@@ -1,5 +0,0 @@
- o Code simplification and refactoring:
- - We switch to should_record_bridge_info() in geoip_note_client_seen() and
- options_need_geoip_info() instead of accessing the configuration values
- directly. Fixes bug 25290; bugfix on 0.2.1.6-alpha. Patch by Neel
- Chauhan.
diff --git a/changes/ticket25374 b/changes/ticket25374
deleted file mode 100644
index 5fc59d158..000000000
--- a/changes/ticket25374
+++ /dev/null
@@ -1,6 +0,0 @@
- o Code simplification and refactoring:
- - Our main loop has been simplified so that all important operations
- happen inside events. Previously, some operations had to happen
- outside the event loop, to prevent infinite sequences of event
- activations. Closes ticket 25374.
-
diff --git a/changes/ticket25376_25762 b/changes/ticket25376_25762
deleted file mode 100644
index b3ebf56d3..000000000
--- a/changes/ticket25376_25762
+++ /dev/null
@@ -1,10 +0,0 @@
- o Major feature (main loop, CPU usage):
- - Previously, tor would enable at startup all possible main loop event
- regardless if it needed them. For instance, directory authorities
- callbacks were fired up even for client only. We have now refactored this
- whole interface to only enable the appropriate callbacks depending on what
- are tor roles (client only, relay, hidden service, etc.). Furthermore,
- these events now depend on DisableNetwork or the hibernation state in
- order to enable them. This is a big step towards reducing client CPU usage
- by reducing the amount of wake ups the daemon does. Closes ticket 25376
- and 25762.
diff --git a/changes/ticket25409 b/changes/ticket25409
deleted file mode 100644
index f0006fbc5..000000000
--- a/changes/ticket25409
+++ /dev/null
@@ -1,6 +0,0 @@
- o Code simplification and refactoring:
- We remove the PortForwsrding and PortForwardingHelper options, related
- functions, and the port_forwarding tests. These options were used by
- the now-deprecated Vidalia to help ordinary users become Tor relays or
- bridges. Closes ticket 25409. Patch by Neel Chauhan.
-
diff --git a/changes/ticket25432 b/changes/ticket25432
deleted file mode 100644
index 21ca20134..000000000
--- a/changes/ticket25432
+++ /dev/null
@@ -1,6 +0,0 @@
- o Code simplification and refactoring:
- - Merge functions used for describing nodes and suppress the functions
- that do not allocate memory for the output buffer string.
- NODE_DESC_BUF_LEN constant and format_node_description() function
- cannot be used externally from router.c module anymore.
- Closes ticket 25432. Patch by valentecaio.
diff --git a/changes/ticket25511 b/changes/ticket25511
deleted file mode 100644
index 0a24e265c..000000000
--- a/changes/ticket25511
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor features (control port):
- - Introduce GETINFO "current-time/{local,utc}" to return the local
- and UTC times respectively in ISO format. This helps a controller
- like Tor Browser detect a time-related error. Closes ticket 25511.
- Patch by Neel Chauhan.
diff --git a/changes/ticket25610 b/changes/ticket25610
deleted file mode 100644
index 887770e6a..000000000
--- a/changes/ticket25610
+++ /dev/null
@@ -1,5 +0,0 @@
- o Major feature (directory authority, modularization):
- - The directory authority subsystem has been modularized. The code is now
- located in src/or/dirauth/ which is compiled in by default. To disable the
- module, the configure option --disable-module-dirauth has been added.
- Closes ticket 25610;
diff --git a/changes/ticket25645 b/changes/ticket25645
deleted file mode 100644
index ab20a5ca4..000000000
--- a/changes/ticket25645
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (channel_get_for_extend()):
- - Remove the unused variable n_possible from the function
- Fixes bug 25645; bugfix on 0.2.4.4-alpha
-
diff --git a/changes/ticket25760 b/changes/ticket25760
deleted file mode 100644
index 504fd60de..000000000
--- a/changes/ticket25760
+++ /dev/null
@@ -1,5 +0,0 @@
- o Removed features:
- - The TestingEnableTbEmptyEvent option has been removed. It was used
- in testing simulations to measure how often connection buckets were
- emptied, in order to improve our scheduling, but it has not
- been actively used in years. Closes ticket 25760.
diff --git a/changes/ticket25766 b/changes/ticket25766
deleted file mode 100644
index 6382b6215..000000000
--- a/changes/ticket25766
+++ /dev/null
@@ -1,3 +0,0 @@
- o Code simplification and refactoring:
- - Refactor token-bucket implementations to use a common backend.
- Closes ticket 25766.
diff --git a/changes/ticket25903 b/changes/ticket25903
deleted file mode 100644
index 8d358c8a8..000000000
--- a/changes/ticket25903
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor features (control port):
- - Introduce new fields to the CIRC_BW event. There are two new fields in
- each of the read and written directions. The DELIVERED fields report the
- total valid data on the circuit, as measured by the payload sizes of
- verified and error-checked relay command cells. The OVERHEAD fields
- report the total unused bytes in each of these cells. Closes ticket 25903.
diff --git a/changes/ticket25927.1 b/changes/ticket25927.1
deleted file mode 100644
index 84ac86e18..000000000
--- a/changes/ticket25927.1
+++ /dev/null
@@ -1,6 +0,0 @@
- o Minor features (timekeeping, circuit scheduling):
- - When keeping track of how busy each circuit have been recently on
- a given connection, use coarse-grained monotonic timers rather than
- gettimeofday(). This change should marginally increase accuracy
- and performance. Implements part of ticket 25927.
-
diff --git a/changes/ticket25927.2 b/changes/ticket25927.2
deleted file mode 100644
index 9acb4aaf6..000000000
--- a/changes/ticket25927.2
+++ /dev/null
@@ -1,5 +0,0 @@
- o Code simplification and refactoring:
- - Remove our previous logic for "cached gettimeofday()" -- our coarse
- monotonic timers are fast enough for this purpose, and far less
- error-prone. Implements part of ticket 25927.
-
diff --git a/changes/ticket25931 b/changes/ticket25931
deleted file mode 100644
index 20ce76188..000000000
--- a/changes/ticket25931
+++ /dev/null
@@ -1,9 +0,0 @@
- o Minor features (mainloop):
- - Move responsibility for
- rescanning the consensus cache
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket:
- 25931.
-
diff --git a/changes/ticket25932 b/changes/ticket25932
deleted file mode 100644
index 67f56f7cc..000000000
--- a/changes/ticket25932
+++ /dev/null
@@ -1,9 +0,0 @@
- o Minor features (mainloop):
- - Move responsibility for
- closing connections, circuits, and channels
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25932.
-
diff --git a/changes/ticket25937 b/changes/ticket25937
deleted file mode 100644
index 7c49fac70..000000000
--- a/changes/ticket25937
+++ /dev/null
@@ -1,9 +0,0 @@
- o Minor features (mainloop):
- - Move responsibility for
- consensus voting
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25937.
-
diff --git a/changes/ticket25948 b/changes/ticket25948
deleted file mode 100644
index 7851d0b65..000000000
--- a/changes/ticket25948
+++ /dev/null
@@ -1,9 +0,0 @@
- o Minor features (mainloop):
- - Move responsibility for
- saving the state file to disk
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25948.
-
diff --git a/changes/ticket25949 b/changes/ticket25949
deleted file mode 100644
index fd8737341..000000000
--- a/changes/ticket25949
+++ /dev/null
@@ -1,9 +0,0 @@
- o Minor features (mainloop):
- - Move responsibility for
- honoring delayed SIGNEWNYM requests
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25949.
-
diff --git a/changes/ticket25951 b/changes/ticket25951
deleted file mode 100644
index b6cfc2091..000000000
--- a/changes/ticket25951
+++ /dev/null
@@ -1,9 +0,0 @@
- o Minor features (mainloop):
- - Move responsibility for
- flushing log callbacks
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25951.
-
diff --git a/changes/ticket25952 b/changes/ticket25952
deleted file mode 100644
index e4dd56df0..000000000
--- a/changes/ticket25952
+++ /dev/null
@@ -1,9 +0,0 @@
- o Minor features (mainloop):
- - Move responsibility for
- warning relay operators about unreachable ports
- from a once-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 25952.
-
diff --git a/changes/ticket25993 b/changes/ticket25993
deleted file mode 100644
index 8eafcd181..000000000
--- a/changes/ticket25993
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features (testing):
- - We now have improved testing for addressmap_get_virtual_address()
- function. This should improve our test coverage, and make our test
- coverage more deterministic. Closes ticket 25993.
diff --git a/changes/ticket25994 b/changes/ticket25994
deleted file mode 100644
index 135417401..000000000
--- a/changes/ticket25994
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (tests):
- - Change the behavior of the "channel/outbound" test so that it never
- causes a 10-second rollover for the EWMA circuitmux code. Previously,
- this behavior would happen randomly, and result in fluctuating test
- coverage. Fixes bug 25994; bugfix on 0.3.3.1-alpha.
diff --git a/changes/ticket25995 b/changes/ticket25995
deleted file mode 100644
index 855020bd3..000000000
--- a/changes/ticket25995
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (tests):
- - While running the circuit_timeout test, fix the PRNG to a deterministic
- AES stream, so that the test coverage from this test will itself be
- deterministic. Fixes bug 25995; bugfix on 0.2.2.2-alpha.
-
diff --git a/changes/ticket25996 b/changes/ticket25996
deleted file mode 100644
index f523bc630..000000000
--- a/changes/ticket25996
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (testing):
- - Repeat part of the test in test_client_pick_intro() a number of times,
- to give it consistent coverage. Fixes bug 25996; bugfix on
- 0.3.2.1-alpha.
-
diff --git a/changes/ticket25997 b/changes/ticket25997
deleted file mode 100644
index 2c802c856..000000000
--- a/changes/ticket25997
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor bugfixes (testing, coverage):
- - Remove randomness from the hs_common/responsible_hsdirs test,
- so that it always takes the same path through the function it tests.
- Fixes bug 25997; bugfix on 0.3.2.1-alpha.
-
diff --git a/changes/ticket26004 b/changes/ticket26004
deleted file mode 100644
index 6b082f145..000000000
--- a/changes/ticket26004
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor features (directory authority, forward compatibility):
- - Make the lines of the measured bandwidth file able to contain their
- entries in any order. Previously, the node_id entry needed to come
- first. Closes ticket 26004.
-
diff --git a/changes/ticket26006 b/changes/ticket26006
deleted file mode 100644
index e33e3f1cd..000000000
--- a/changes/ticket26006
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features (compilation, portability):
- - Avoid some compilation warnings with recent versions
- of LibreSSL. Closes ticket 26006.
-
diff --git a/changes/ticket26008 b/changes/ticket26008
deleted file mode 100644
index 7550c959e..000000000
--- a/changes/ticket26008
+++ /dev/null
@@ -1,7 +0,0 @@
- o Minor bugfixes (test):
- - When testing workqueue event-cancellation, make sure that we actually
- cancel an event, and that cancel each event with equal probability.
- (It was previously possible, though extremely unlikely, for our
- event-canceling test not to cancel any events.) Fixes bug 26008;
- bugfix on 0.2.6.3-alpha.
-
diff --git a/changes/ticket26009 b/changes/ticket26009
deleted file mode 100644
index 51ada1572..000000000
--- a/changes/ticket26009
+++ /dev/null
@@ -1,9 +0,0 @@
- o Minor features (mainloop):
- - Move responsibility for
- keeping track of Tor's uptime
- from a nce-per-second callback to a callback that is only scheduled as
- needed. Once enough items are removed from our once-per-second
- callback, we can eliminate it entirely to conserve CPU when idle.
- Closes ticket
- 26009.
-
diff --git a/changes/ticket26014 b/changes/ticket26014
deleted file mode 100644
index 9d62ddbba..000000000
--- a/changes/ticket26014
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features (Testing):
- - Add a unit test for voting_schedule_get_start_of_next_interval().
- Closes ticket 26014, and helps make unit test coverage more
- deterministic.
diff --git a/changes/ticket26016 b/changes/ticket26016
deleted file mode 100644
index f0eb56d32..000000000
--- a/changes/ticket26016
+++ /dev/null
@@ -1,4 +0,0 @@
- o Code simplification and refactoring:
- - Use our standard rate-limiting code to deal with excessive libevent
- failures, rather than the hand-rolled logic we had before.
- Closes ticket 26016.
diff --git a/changes/ticket26062 b/changes/ticket26062
deleted file mode 100644
index cd1fe3df4..000000000
--- a/changes/ticket26062
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (client):
- - Don't consider Tor running as a client if the ControlPort is open. Fixes
- bug 26062; bugfix on 0.2.9.4-alpha.
-
diff --git a/changes/ticket26063 b/changes/ticket26063
deleted file mode 100644
index c11eb2d15..000000000
--- a/changes/ticket26063
+++ /dev/null
@@ -1,5 +0,0 @@
- o Major features (CPU usage, mobile):
- - When Tor is disabled (via DisableNetwork or via hibernation), it
- no longer needs to run any per-second events. This change should
- make it easier for mobile applications to disable Tor while the
- device is sleeping, or Tor is not running. Closes ticket 26063.
diff --git a/changes/ticket26064 b/changes/ticket26064
deleted file mode 100644
index 6efb8a483..000000000
--- a/changes/ticket26064
+++ /dev/null
@@ -1,5 +0,0 @@
- o Minor features (accounting):
- - When we become dormant, use a scheduled event to wake up at the right
- time. Previously, we would use the per-second timer to check whether
- to wake up, but we no longer have any per-second timers enabled when
- the network is disabled. Closes ticket 26064.
diff --git a/changes/ticket4187 b/changes/ticket4187
deleted file mode 100644
index c5f795b1a..000000000
--- a/changes/ticket4187
+++ /dev/null
@@ -1,3 +0,0 @@
- o Minor bugfixes (directory client):
- - When unverified-consensus is verified, rename it to cached-consenus.
- Fixes bug 4187; bugfix on 0.2.0.3-alpha.
diff --git a/changes/ticket6236 b/changes/ticket6236
deleted file mode 100644
index 9dea07e69..000000000
--- a/changes/ticket6236
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor bugfixes (Duplicate code):
- - Remove duplicate code in parse_{c,s}method_line and bootstrap
- their functionalities into a single function. Fixes
- bug 6236; bugfix on 0.2.3.6-alpha.
diff --git a/changes/travis_distcheck b/changes/travis_distcheck
deleted file mode 100644
index 0f278fe7e..000000000
--- a/changes/travis_distcheck
+++ /dev/null
@@ -1,4 +0,0 @@
- o Minor features (continuous integration):
- - Our .travis.yml configuration now includes support for testing
- the results of "make distcheck". (It's not uncommon for "make check" to
- pass but "make distcheck" to fail.) Closes ticket 25814.
1
0

15 May '18
commit 887512f3a111981e1604e9cd6c46b2d32300db14
Author: Iain R. Learmonth <irl(a)fsfe.org>
Date: Tue May 15 14:41:20 2018 +0100
Removes style.css as it is now unused (See: #25745)
---
css/style.css | 866 ----------------------------------------------------------
1 file changed, 866 deletions(-)
diff --git a/css/style.css b/css/style.css
deleted file mode 100644
index 17f4867..0000000
--- a/css/style.css
+++ /dev/null
@@ -1,866 +0,0 @@
-
-/* Please keep this file [✓] UTF-8 encoded */
-
-
-/* undo FOUC-fixing inline-stylesheets */
-body {
- background-image:none !important;
-}
-body #wrapper {
- display:block !important;
-}
-
-
-
-/* Page header - override bootstrap defaults */
-.page-header {
- padding: 0em 2.0em 2.0em 2.0em;
- margin: 0;
- border-bottom: 0;
- color:#fff;
- position:relative;
-
- /* gradient background */
- background: #8d56A8; /* Old browsers */
- background: -moz-linear-gradient(top, #8d56A8 0%, #6d3688 100%); /* FF3.6-15 */
- background: -webkit-linear-gradient(top, #8d56A8 0%, #6d3688 100%); /* Chrome10-25,Safari5.1-6 */
- background: linear-gradient(to bottom, #8d56A8 0%, #6d3688 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8d56a8', endColorstr='#6d3688',GradientType=0 ); /* IE6-9 */
-
-}
-.page-header img {
- vertical-align:text-bottom;
- max-width:40%;
- height:auto;
-}
-.page-header img#metrics-logo {
- height:75px;
- width:auto !important;
-}
-.page-header div {
- text-align:right;
- position:absolute;
- right:2.5em;
- bottom: 0.9em;
- max-width: 400px;
-}
-.page-header div p {
- font-size: 14px;
- line-height: 16px;
-}
-@media (max-width: 767.99999px) {
- .page-header {
- display:none;
- }
- .navbar-header .navbar-brand.visible-xs {
- display:block !important;
- }
- .navbar.hidden-xs {
- display:none;
- }
-}
-@media (max-width: 1199.99999px) {
- .page-header div {
- max-width:330px;
- }
- .page-header div p {
- font-size:12px;
- line-height:14px;
- }
-}
-
-
-
-
-/* general font and color */
-body {
- background-color: #fff;
- color: black;
- font-family: 'Source Sans Pro', sans-serif;
- font-size: 16px;
- line-height: 24px;
-}
-@media (max-width: 991.99999px) {
- body {
- font-size: 14px;
- line-height: 21px;
- }
-}
-
-
-/* primary button color */
-.btn-primary {
- color: #fff !important;
- background-color: #8d56A8;
- border-color: #7d4698;
-}
-.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
- background-color: #7d4698;
- border-color: #6d3688;
-}
-
-
-/* format secondary navigation */
-@media (min-width: 768px) {
- .navbar-secondary {
- margin-bottom: 0;
- border: 0;
- background-color: #8d56A8;
- border-radius:0;
- }
- .navbar-secondary .navbar-nav {
- margin-right:0;
- }
- .navbar-secondary .navbar-nav>li>a {
- font-size:14px;
- color:white;
- padding: 5px 10px;
- margin: 10px 5px;
- }
- .navbar-secondary .navbar-nav>li.active>a,
- .navbar-secondary .navbar-nav>li.active>a:hover,
- .navbar-secondary .navbar-nav>li>a:hover {
- background-color: rgba(0,0,0,0.2) !important;
- color:white;
- }
-}
-
-.navbar-secondary .section-header {
- padding:3px 14px;
- text-transform:uppercase;
- font-size:12px;
- background-color: #aaa;
- color:white;
- margin-top:20px;
-}
-.navbar-secondary .section-header:first-of-type {
- margin-top:0px;
-}
-.navbar-secondary .navbar-nav>li>a {
- margin-bottom: 0px !important;
-}
-
-
-/* images */
-img {
- max-width:100%;
- height:auto;
-}
-
-
-/* breadcrumb navigation */
-.breadcrumb {
- padding: 0;
- margin-bottom: 10px;
- margin-top:0;
- background-color: transparent;
- border-radius: 0;
- font-size:14px;
-}
-.breadcrumb > li + li:before {
- content: '\00BB';
- color:#888;
-}
-
-
-/* headlines */
-h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
- color: #7d4698;
- font-weight:bold;
-}
-h1, .h1 { font-size: 36px; }
-h2, .h2 { font-size: 26px; }
-h3, .h3 { font-size: 18px; }
-h4, .h4 { font-size: 12px; }
-h5, .h5 { font-size: 8px; }
-h6, .h6 { font-size: 6px; }
-
-
-
-/* link color */
-a, a:hover, a:active, a:focus, a:visited {
- color:#68b030;
-}
-
-
-/* main menu hover color */
-.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
- background-color: #e8e8e8;
-}
-
-
-/* format blockquotes */
-blockquote {
- background: #fafafa;
- color: #333;
- margin: 1.8em 12px .8em 0;
- padding: 0.5em 12px 1em 12px;
- border-left: 12px solid #cdcdcd;
- font-style:italic;
-}
-blockquote:before {
- content: '\201C';
- color: #cdcdcd;
- font-size: 5em;
- line-height: 0.2em;
- display:block;
- position:relative;
- top:6px;
-}
-
-
-
-/* logo size */
-.navbar-brand img {
- height:20px;
- width:auto;
-}
-
-
-/* back to top button */
-body .topButton {
- background-color: #68b030;
- position:fixed;
- z-index:1;
- bottom:1em;
- right:1em;
-}
-.topButton a, .topButton a:hover {
- display:block;
- padding:.7em 1em 1em 1em;
- color:white;
- font-weight:bold;
- text-decoration:none;
-}
-
-
-/* add a no-padding-for-columns class */
-.no-gutter > [class*='col-'] {
- padding-right:0;
- padding-left:0;
-}
-
-
-
-/* page footer */
-#footer {
- margin-top:2em;
- padding-top:2em;
- padding-bottom:2em;
- background-color: #f5f5f5;
- color:#999;
- border-top:1px solid #ccc;
-
-}
-#footer .pull-right a {
- margin-left:2em;
-}
-#footer .pull-right a:first-of-type {
- margin-left:0;
-}
-#footer .no-gutter {
- margin-bottom:1em;
-}
-
-
-
-/* mobile navbar colors */
-.navbar-default .navbar-toggle .icon-bar {
- background-color:#fff;
-}
-.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
- background-color: #9d66b8;
-}
-@media (max-width: 767.99999px) {
- .navbar-header {
- background-color: #7d4698;
- }
-}
-
-
-/* align mobile submenu */
-@media (max-width: 767.99999px) {
- .navbar-nav .dropdown-menu {
- margin-left:1em;
- }
-}
-
-
-/* format callouts */
-.bs-callout {
- padding: 20px 20px 15px 20px;
- margin: 20px 0;
- border: 1px solid #eee;
- border-left-width: 5px;
- border-radius: 3px;
- border-left-color: #7d4698;
-}
-.bs-callout h1, .bs-callout h2, .bs-callout h3, .bs-callout h4, .bs-callout h5, .bs-callout h6,
-.bs-callout .h1, .bs-callout .h2, .bs-callout .h3, .bs-callout .h4, .bs-callout .h5, .bs-callout .h6 {
- margin-top:0;
-}
-.bs-callout-default {
- border-left-color: #777;
-}
-.bs-callout-default h2, .bs-callout-default h3, .bs-callout-default h4 {
- color: #777;
-}
-.bs-callout-primary {
- border-left-color: #428bca;
-}
-.bs-callout-primary h2, .bs-callout-primary h3, .bs-callout-primary h4 {
- color: #428bca;
-}
-.bs-callout-success {
- border-left-color: #5cb85c;
-}
-.bs-callout-success h2, .bs-callout-success h3, .bs-callout-success h4 {
- color: #5cb85c;
-}
-.bs-callout-danger {
- border-left-color: #d9534f;
-}
-.bs-callout-danger h2, .bs-callout-danger h3, .bs-callout-danger h4 {
- color: #d9534f;
-}
-.bs-callout-warning {
- border-left-color: #f0ad4e;
-}
-.bs-callout-warning h2, .bs-callout-warning h3, .bs-callout-warning h4 {
- color: #f0ad4e;
-}
-.bs-callout-info {
- border-left-color: #5bc0de;
-}
-.bs-callout-info h2, .bs-callout-info h3, .bs-callout-info h4 {
- color: #5bc0de;
-}
-
-
-/* home dashboard page */
-.dashboard {
- padding:3em 5em 0 5em;
-}
-.dashboard .col-sm-4 {
- margin-bottom:2em;
- text-align:center;
-}
-.dashboard a, .dashboard a:hover, .dashboard a:focus, .dashboard a:active {
- text-decoration:none;
- display:block;
- border:1px solid #ccc;
- border-radius:5px;
- padding:2em 2em 1em 2em;
- color:#999;
-}
-.dashboard h2, .dashboard p {
- color:#999;
-}
-.dashboard a[href], .dashboard a[href]:hover, .dashboard a[href]:focus, .dashboard a[href]:active, .dashboard a[href] h2 {
- color:#68b030;
-}
-.dashboard a[href]:hover {
- background-color: #F8f8f8;
-}
-/* fixed box height by screen size: */
-@media (min-width: 1200px) { .dashboard a, .dashboard a:hover, .dashboard a:focus, .dashboard a:active { min-height:260px; } }
-@media (min-width: 992px) and (max-width: 1199.99999px) { .dashboard a, .dashboard a:hover, .dashboard a:focus, .dashboard a:active { min-height:290px; } }
-@media (min-width: 768px) and (max-width: 991.99999px) { .dashboard a, .dashboard a:hover, .dashboard a:focus, .dashboard a:active { min-height:280px; } }
-.dashboard a[href] p {
- color:black;
-}
-@media (max-width: 767.99999px) {
- .dashboard {
- padding:1em;
- }
- .dashboard .row {
- margin-right:-13px; /* 15px minus border */
- }
- .dashboard .col-sm-4 {
- margin-bottom:1em;
- }
- .dashboard a, .dashboard a:hover, .dashboard a:focus, .dashboard a:active {
- text-align:left;
- padding:1em 1em 0 1em;
- }
- .dashboard p {
- padding-left:2.1em;
- }
- .dashboard .fa-4x, .dashboard h2 {
- font-size:20px;
- margin:0;
- display:inline-block;
- }
-}
-
-
-
-/* table of contents side box */
-div.list-group {
- margin-top:3em;
-}
-div.list-group a.list-group-item {
- color:#68b030 !important;
-}
-
-
-
-/* external links */
-a[target="_blank"]:before {
- content: " \f08e";
- font-family: 'FontAwesome';
- font-size:14px;
- position:relative;
- top:1px;
- margin-right:3px;
-}
-
-a.btn[target="_blank"]:before {
- content: "";
-}
-
-
-
-/* news page */
-.news .links {
- position:relative;
- top:-10px;
-}
-.news .links a {
- margin-right:1em;
-}
-.news h3 .label {
- font-size: 12px;
- position: relative;
- top: -2px;
- margin-left: 5px;
-}
-
-
-/* faq */
-.faq h2 {
- font-size:24px;
-}
-.faq p {
- margin-bottom:2em;
-}
-
-
-
-/* related events table */
-.events a.link { padding-right:1em; }
-.events th.dates { width:20%; }
-.events th.tags { width:20%; }
-.events th.description { width:60%; }
-.events td span.dates {
- color: #7d4698;
- font-weight: bold;
-}
-
-
-
-/* horizontal line divider */
-hr {
- margin-top:50px;
- border-top: 1px solid #cdcdcd;
-}
-
-
-/* community and featured badge */
-.community, .featured {
- position:relative;
- overflow:hidden;
-}
-.community:before, .featured:before {
- content: "Community";
- width:150px;
- display:block;
- position:absolute;
- right:-2.7em;
- top:1.8em;
- background-color: #5cb85c;
- font-size: 90%;
- padding: .2em 2.6em .3em;
- font-weight: 700;
- line-height: 1;
- color: #fff;
- text-align: center;
- vertical-align: baseline;
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
-}
-.featured:before {
- content: "Featured";
- background-color: #7d4698;
-}
-@media (max-width: 991.99999px) {
- .community:before, .featured:before {
- width:130px;
- }
-}
-
-
-@media only screen and (max-width: 767.99999px) {
-
- /* Force table to not be like tables anymore */
- .responsive-table table,
- .responsive-table thead,
- .responsive-table tbody,
- .responsive-table th,
- .responsive-table td,
- .responsive-table tr {
- display: block;
- }
-
- /* Hide table headers (but not display: none;, for accessibility) */
- .responsive-table thead tr {
- position: absolute;
- top: -9999px;
- left: -9999px;
- }
-
- .responsive-table tr {
- border: 1px solid #ccc;
- margin-bottom:1em;
- }
-
- .responsive-table td {
- /* Behave like a "row" */
- border: none;
- border-bottom: 1px solid #eee;
- position: relative;
- padding-left: 50% !important;
- white-space: normal;
- text-align:left;
- }
-
- .responsive-table td:before {
- /* Now like a table header */
- position: absolute;
- /* Top/left values mimic padding */
- top: 6px;
- left: 6px;
- width: 45%;
- padding-right: 10px;
- white-space: nowrap;
- text-align:left;
- font-weight: bold;
- }
-
- /*
- Label the data
- */
- .responsive-table td:before { content: attr(data-title); }
-}
-
-
-
-/* tools and sources */
-.tools {
- margin-top:2em;
-}
-.tools a:hover, .tools a:active, .tools a:focus {
- text-decoration:none;
-}
-.tools a:before {
- content:'';
- display:none;
-}
-.tools p {
- color:black;
- line-height:21px;
-}
-.tools [class*='col-'] {
- text-align:center;
- margin-bottom:2em;
-}
-.tools .logo {
- width:150px;
- height:150px;
- margin:0 auto;
- background-size:contain;
- background-position:center center;
- background-repeat:no-repeat;
-}
-.tools-xs .logo {
- width:100px;
- height:100px;
-}
-.tools-xs p {
- font-size:14px;
- line-height:18px;
-}
-
-@media (max-width: 399.99999px) {
- .tools [class*='col-'] {
- width:100%;
- float:none;
- }
-}
-
-
-
-/* tooltips */
-.tor-tooltip {
- position:relative;
- color:#68b030;
- border-bottom: 1px dotted #68b030;
-}
-.tor-tooltip-content {
- position:absolute;
- z-index:1;
- color:white;
- background-color: rgba(0,0,0,0.8);
- padding:10px 14px;
- width:300px;
- left:-9999px;
- top:30px;
- opacity:0;
- transition: opacity .5s ease-in-out;
- -moz-transition: opacity .5s ease-in-out;
- -webkit-transition: opacity .5s ease-in-out;
- border-radius:3px;
- line-height:20px;
-}
-.tor-tooltip-content:after {
- bottom: 100%;
- left: 50%;
- border: solid transparent;
- content: " ";
- height: 0;
- width: 0;
- position: absolute;
- pointer-events: none;
- border-bottom-color: rgba(0,0,0,0.8);
- border-width: 6px;
- margin-left: -6px;
-}
-.tor-tooltip:hover .tor-tooltip-content, .tor-tooltip:focus .tor-tooltip-content {
- opacity:1;
- left:-130px;
-}
-/* reposition on mobile devices: */
-@media (max-width: 767.99999px) {
- .tor-tooltip {
- position:static;
- }
- .tor-tooltip-content {
- margin:0 auto;
- width:90%;
- max-width:500px;
- }
-
- .tor-tooltip:hover .tor-tooltip-content, .tor-tooltip:focus .tor-tooltip-content {
- left:1em;
- right:1em;
- top:inherit;
- margin-top:30px;
- }
- .tor-tooltip-content:after {
- display:none;
- }
-}
-
-
-/* data page */
-
-/* tabs */
-ul.nav-tabs {
- margin-top:2em;
- margin-bottom:1em;
-}
-ul.nav-tabs>li {
- margin-top:10px;
-}
-.nav-tabs>li:not(.active)>a {
- border-color: #eee #eee #ddd;
-}
-
-/* graphs */
-img.graph {
- width:100%;
-}
-/* forms and fields */
-form {
- margin-top:4em;
-}
-form label {
- width:100%;
- max-width:100px;
-}
-form input, form select {
- width:100%;
- max-width:200px;
-}
-form input[type=checkbox], form input[type=radio] {
- width:20px;
-}
-label.checkbox-label, label.radio-label {
- max-width: initial;
- width: auto;
- font-weight: normal;
- margin-right: 20px;
-}
-
-
-
-
-/* Show submenu on "hover", desktop: */
-@media (min-width: 768px) {
- .dropdown:hover .dropdown-menu {
- display: block;
- margin-top: 0;
- }
-}
-
-/* hide submenus and carets on mobile version, but keep the language submenu: */
-@media (max-width: 767.99999px) {
- .navbar-nav :not(.dropdown-language) .dropdown-menu {
- display:none;
- }
- .navbar-nav :not(.dropdown-language) .dropdown-toggle .caret {
- display:none;
- }
-}
-
-
-/* Anchor-Links for Headlines */
-.anchor {
- opacity:0;
- text-decoration:none;
-}
-*:hover > .anchor {
- opacity:1;
- color:#78c040;
-}
-*:hover > .anchor:hover {
- text-decoration:none;
- color:#68b030;
-}
-
-
-/* No JavaScript fallbacks */
-
-
-/* same for mobile - also for browsers with script enabled, so no ".noscript" here */
-#navbar-toggle-checkbox {
- display: none;
-}
-body.noscript #navbar-toggle-checkbox:checked ~ .collapse {
- display: block;
-}
-
-
-/* open LANGUAGE submenu in non-js mobile menu */
-
-@media (max-width: 767.99999px) {
- body.noscript .navbar-nav .dropdown-language .dropdown-menu {
- position: static;
- float: none;
- width: auto;
- margin-top: 0;
- background-color: transparent;
- border: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- display: block !important;
- }
-}
-
-
-
-
-/* code highlighting */
-
-.token.selector,
-.token.attr-name,
-.token.string,
-.token.char,
-.token.builtin,
-.token.property,
-.token.tag,
-.token.boolean,
-.token.number,
-.token.constant,
-.token.symbol,
-.token.deleted,
-.token.function {
- color: #c7254e; /* red */
-}
-
-.token.atrule,
-.token.attr-value,
-.token.keyword,
-.token.inserted {
- color: #7d4698; /* purple */
-}
-
-.token.comment,
-.token.prolog,
-.token.doctype,
-.token.cdata {
- color: #999; /* light gray */
-}
-
-.token.operator,
-.token.entity,
-.token.url,
-.language-css .token.string,
-.style .token.string {
- color: #000; /* black */
-}
-
-
-/* Onionoo-specific Styles */
-
-.onionoo a .fa.fa-chevron-right {
- font-size:70%;
-}
-.onionoo .required-true {
-}
-.onionoo .required-false {
- color: #aaa;
-}
-.onionoo .properties {
- margin-top: 10px;
- margin-bottom: 10px;
- border-left: 1px solid #ddd;
- border-right: 1px solid #ddd;
- border-bottom: 1px solid #ddd;
- padding:0;
-}
-.onionoo .request-response {
- float:right;
- font-size:60%;
-}
-.onionoo .properties li {
- padding: 15px;
- overflow:hidden;
- border-top:1px solid #ddd;
-}
-.onionoo .properties li:nth-child(odd) {
- background: #f8f8f8;
-}
-.onionoo h4, .onionoo .h4 { font-size: 16px; }
-
-/* method table */
-@media only screen and (max-width: 767.99999px) {
- .onionoo .responsive-table td:before {
- width: 25% !important;
- }
- .onionoo .responsive-table td {
- padding-left: 30% !important;
- }
-}
-.onionoo th.method { width:10%; }
-.onionoo th.url { width:40%; }
-.onionoo th.description { width:50%; }
-.onionoo span.red {
- color:#d9534f;
-}
-.onionoo span.blue {
- color:#337ab7;
-}
1
0

15 May '18
commit 4aa3d511b25fe99579d7810418433eef46e417da
Merge: 7ee67c47f 502d2c006
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue May 15 09:32:44 2018 -0400
Merge branch 'maint-0.3.1' into maint-0.3.2
changes/geoip-2018-05-01 | 4 +
src/config/geoip | 5455 ++++++++++++++++++++++++++++++----------------
src/config/geoip6 | 971 +++++++--
3 files changed, 4468 insertions(+), 1962 deletions(-)
1
0

[tor/release-0.3.2] Merge branch 'maint-0.3.2' into release-0.3.2
by nickm@torproject.org 15 May '18
by nickm@torproject.org 15 May '18
15 May '18
commit e8edd97c1c579b6a3bd310781f4f97dfaa9459d5
Merge: e935e2767 4aa3d511b
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue May 15 09:32:44 2018 -0400
Merge branch 'maint-0.3.2' into release-0.3.2
changes/geoip-2018-05-01 | 4 +
src/config/geoip | 5455 ++++++++++++++++++++++++++++++----------------
src/config/geoip6 | 971 +++++++--
3 files changed, 4468 insertions(+), 1962 deletions(-)
1
0

15 May '18
commit 502d2c00625501f312496d842aeb16a840d4d7b0
Merge: 2d61a8351 033e4723f
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue May 15 09:32:44 2018 -0400
Merge branch 'maint-0.2.9' into maint-0.3.1
changes/geoip-2018-05-01 | 4 +
src/config/geoip | 5455 ++++++++++++++++++++++++++++++----------------
src/config/geoip6 | 971 +++++++--
3 files changed, 4468 insertions(+), 1962 deletions(-)
1
0

15 May '18
commit 502d2c00625501f312496d842aeb16a840d4d7b0
Merge: 2d61a8351 033e4723f
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue May 15 09:32:44 2018 -0400
Merge branch 'maint-0.2.9' into maint-0.3.1
changes/geoip-2018-05-01 | 4 +
src/config/geoip | 5455 ++++++++++++++++++++++++++++++----------------
src/config/geoip6 | 971 +++++++--
3 files changed, 4468 insertions(+), 1962 deletions(-)
1
0

[tor/release-0.3.3] Update geoip and geoip6 to the May 1 2018 database.
by nickm@torproject.org 15 May '18
by nickm@torproject.org 15 May '18
15 May '18
commit 033e4723f3651062779ff64a619ec526950857f5
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Tue May 15 15:16:47 2018 +0200
Update geoip and geoip6 to the May 1 2018 database.
---
changes/geoip-2018-05-01 | 4 +
src/config/geoip | 5455 ++++++++++++++++++++++++++++++----------------
src/config/geoip6 | 971 +++++++--
3 files changed, 4468 insertions(+), 1962 deletions(-)
diff --git a/changes/geoip-2018-05-01 b/changes/geoip-2018-05-01
new file mode 100644
index 000000000..1528bb0c3
--- /dev/null
+++ b/changes/geoip-2018-05-01
@@ -0,0 +1,4 @@
+ o Minor features (geoip):
+ - Update geoip and geoip6 to the May 1 2018 Maxmind GeoLite2
+ Country database. Closes ticket 26104.
+
diff --git a/src/config/geoip b/src/config/geoip
index a1b43d529..9fbb8c4a0 100644
--- a/src/config/geoip
+++ b/src/config/geoip
@@ -1,4 +1,4 @@
-# Last updated based on April 3 2018 Maxmind GeoLite2 Country
+# Last updated based on May 1 2018 Maxmind GeoLite2 Country
# wget https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz
# gunzip GeoLite2-Country.mmdb.gz
# python mmdb-convert.py GeoLite2-Country.mmdb
@@ -322,9 +322,7 @@
85400576,85400583,ES
85401600,85403647,IT
85403648,85405695,FR
-85405696,85406207,RU
-85406208,85406719,DE
-85406720,85407743,RU
+85405696,85407743,RU
85407744,85409791,FI
85409792,85417983,IS
85417984,85422079,RU
@@ -444,7 +442,9 @@
86445312,86445319,NL
86445320,86445375,FR
86445376,86445407,ES
-86445408,86445551,FR
+86445408,86445527,FR
+86445528,86445531,CZ
+86445532,86445551,FR
86445552,86445555,ES
86445556,86445563,FR
86445564,86445567,ES
@@ -532,7 +532,9 @@
86450864,86450867,PT
86450868,86450875,FR
86450876,86450879,GB
-86450880,86451531,FR
+86450880,86451455,FR
+86451456,86451459,CZ
+86451460,86451531,FR
86451532,86451535,FI
86451536,86452059,FR
86452060,86452063,ES
@@ -657,7 +659,9 @@
86468000,86468003,PL
86468004,86468055,FR
86468056,86468056,DE
-86468057,86468103,FR
+86468057,86468083,FR
+86468084,86468087,DE
+86468088,86468103,FR
86468104,86468111,IT
86468112,86468199,FR
86468200,86468200,ES
@@ -911,8 +915,7 @@
87779328,87779839,UA
87779840,87781375,CZ
87781376,87783423,ES
-87783424,87785471,CZ
-87785472,87793663,RU
+87783424,87793663,RU
87793664,87818239,CZ
87818240,87883775,PL
87883776,87885823,IT
@@ -2009,7 +2012,9 @@
92740640,92740671,ES
92740672,92740915,FR
92740916,92740923,DE
-92740924,92741331,FR
+92740924,92741311,FR
+92741312,92741315,CZ
+92741316,92741331,FR
92741332,92741335,ES
92741336,92742419,FR
92742420,92742423,ES
@@ -2205,7 +2210,9 @@
92783544,92783547,ES
92783548,92783871,FR
92783872,92783887,PL
-92783888,92784239,FR
+92783888,92784099,FR
+92784100,92784103,CZ
+92784104,92784239,FR
92784240,92784243,DE
92784244,92784255,FR
92784256,92784263,NL
@@ -2463,7 +2470,8 @@
94184448,94186239,SE
94186240,94186495,IT
94186496,94186751,SE
-94186752,94187263,GB
+94186752,94187007,NL
+94187008,94187263,GB
94187264,94187775,SE
94187776,94188031,NO
94188032,94188287,SE
@@ -2697,8 +2705,10 @@
96252160,96252415,ES
96252416,96252671,FR
96252672,96252927,NL
-96252928,96255999,RU
-96256000,96258047,US
+96252928,96256511,RU
+96256512,96256767,FR
+96256768,96257023,DE
+96257024,96258047,US
96258048,96259327,RU
96259328,96259583,RO
96259584,96259839,US
@@ -2885,7 +2895,9 @@
96768604,96768607,DE
96768608,96769279,FR
96769280,96769295,ES
-96769296,96770159,FR
+96769296,96770075,FR
+96770076,96770079,PT
+96770080,96770159,FR
96770160,96770175,ES
96770176,96770651,FR
96770652,96770655,PL
@@ -2997,9 +3009,7 @@
96784032,96784039,ES
96784040,96784495,FR
96784496,96784511,FI
-96784512,96784719,FR
-96784720,96784723,NL
-96784724,96784807,FR
+96784512,96784807,FR
96784808,96784811,PL
96784812,96784827,FR
96784828,96784831,PL
@@ -3028,7 +3038,7 @@
96792288,96792319,FR
96792320,96792383,ES
96792384,96792447,NL
-96792448,96792511,FR
+96792448,96792511,CZ
96792512,96792575,IT
96792576,96792751,FR
96792752,96792767,DE
@@ -3233,7 +3243,9 @@
100548096,100548607,US
100548608,100548631,RO
100548632,100548639,US
-100548640,100548872,RO
+100548640,100548655,RO
+100548656,100548671,US
+100548672,100548872,RO
100548873,100548873,TR
100548874,100550143,RO
100550144,100550399,NL
@@ -3382,7 +3394,11 @@
136810504,136810504,DE
136810505,139954241,US
139954242,139954242,ES
-139954243,151521029,US
+139954243,142606335,US
+142606336,146800639,SG
+146800640,147849215,US
+147849216,148897791,SG
+148897792,151521029,US
151521030,151521030,FR
151521031,151587080,US
151587081,151587081,FR
@@ -3511,7 +3527,8 @@
225080832,225081343,JP
225081344,225081855,US
225081856,225082367,AU
-225082368,225084415,US
+225082368,225082879,GB
+225082880,225084415,US
225084416,225085439,FR
225085440,225085951,NL
225085952,225086463,FR
@@ -3536,10 +3553,20 @@
225099776,225100287,SG
225100288,225101823,US
225101824,225102847,AU
-225102848,225105407,US
+225102848,225103359,ZA
+225103360,225103871,US
+225103872,225104383,ZA
+225104384,225104895,US
+225104896,225105407,ZA
225105408,225105919,HK
225105920,225106943,IE
-225106944,225443839,US
+225106944,225107455,NL
+225107456,225107967,US
+225107968,225108479,KR
+225108480,225108991,FI
+225108992,225109503,IN
+225109504,225110015,MY
+225110016,225443839,US
225443840,225705983,JP
225705984,226230271,US
226230272,226361343,KR
@@ -3699,7 +3726,9 @@
279356250,279356250,LT
279356251,284354559,US
284354560,284356607,IN
-284356608,288151551,US
+284356608,288064511,US
+288064512,288065535,CL
+288065536,288151551,US
288151552,288161791,CA
288161792,288167423,US
288167424,288167935,CA
@@ -3899,7 +3928,9 @@
301814784,301815039,HK
301815040,301815295,US
301815296,301815551,HK
-301815552,301987839,US
+301815552,301822975,US
+301822976,301823231,TW
+301823232,301987839,US
301987840,301988863,GB
301988864,301989023,HK
301989024,301989031,MO
@@ -3913,7 +3944,11 @@
310509568,310575103,GB
310575104,310902783,US
310902784,310968319,SG
-310968320,313720831,US
+310968320,312016895,US
+312016896,312082431,DE
+312082432,313458687,US
+313458688,313524223,GB
+313524224,313720831,US
313720832,313786367,JP
313786368,313917439,US
313917440,313982975,JP
@@ -3922,8 +3957,8 @@
314179584,314703871,US
314703872,314966015,DE
314966016,315097087,US
-315097088,315162623,IE
-315162624,316932095,US
+315097088,315359231,IE
+315359232,316932095,US
316932096,316997631,BR
316997632,317128703,US
317128704,317194239,BR
@@ -3931,9 +3966,7 @@
322058772,322058772,CL
322058773,323243895,US
323243896,323243903,FR
-323243904,332132119,US
-332132120,332132127,IL
-332132128,337919999,US
+323243904,337919999,US
337920000,337928191,AU
337928192,337932287,US
337932288,337934335,AU
@@ -3990,8 +4023,7 @@
348032128,348032255,HK
348032256,348032511,JP
348032512,348032767,AU
-348032768,348033023,GB
-348033024,348033151,US
+348032768,348033151,GB
348033152,348033279,KR
348033280,348033407,BR
348033408,348033791,IN
@@ -4409,9 +4441,7 @@
390972928,390973951,NL
390973952,390975487,US
390975488,390976511,NL
-390976512,390980607,US
-390980608,390981631,NL
-390981632,390985727,US
+390976512,390985727,US
390985728,390987775,NL
390987776,390995967,US
390995968,391020543,NL
@@ -4442,7 +4472,9 @@
391937536,391937791,CA
391937792,391938047,IE
391938048,391946239,CA
-391946240,391960335,US
+391946240,391960023,US
+391960024,391960031,AE
+391960032,391960335,US
391960336,391960351,GB
391960352,392044351,US
392044352,392044359,CA
@@ -4497,10 +4529,9 @@
392617984,392626175,HK
392626176,392658943,US
392658944,392659199,JP
-392659200,392659455,AU
+392659200,392659455,US
392659456,392659583,JP
-392659584,392659711,AU
-392659712,392659807,US
+392659584,392659807,US
392659808,392659823,IE
392659824,392659871,SG
392659872,392659903,NL
@@ -4753,7 +4784,9 @@
393213952,394264575,US
394264576,394264831,CA
394270720,394271231,NL
+394272768,394273023,US
394280960,394281471,US
+394289152,394289407,US
394296320,394296831,NL
394297344,394362879,US
394362880,394363135,GB
@@ -4855,17 +4888,27 @@
397820160,397852671,CA
397852672,397852927,US
397852928,397869055,CA
-397869056,398065663,US
+397869056,397918207,US
+397918208,397918463,CA
+397918464,398065663,US
398065664,398065919,CA
+398082048,398082303,JP
398098432,398098687,US
+398114816,398115071,CA
398131200,398196735,US
398196736,398196991,KY
-398229504,398229759,US
-398262272,398327807,US
+398213120,398213375,US
+398229504,398311423,US
+398311424,398311679,LC
+398311680,398327807,US
398327808,398328063,PR
+398344192,398344447,US
398360576,398360831,CA
+398376960,398377215,US
398393344,398393599,US
+398409728,398409983,US
398426112,398426367,CA
+398442496,398442751,US
398458880,398500351,US
398500352,398500863,NL
398500864,398532607,US
@@ -5262,8 +5305,8 @@
400894784,400894815,US
400894816,400894903,CA
400894904,400894911,US
-400894912,400895231,CA
-400895232,400895295,US
+400894912,400894975,CA
+400894976,400895295,US
400895296,400895359,CA
400895360,400895407,US
400895408,400895455,CA
@@ -5589,11 +5632,13 @@
401388672,401388687,US
401388688,401389567,CA
401389568,401390079,US
-401390080,401390591,CA
-401390592,401390847,US
+401390080,401390335,CA
+401390336,401390847,US
401390848,401393151,CA
401393152,401393407,US
-401393408,401394495,CA
+401393408,401393663,CA
+401393664,401393919,US
+401393920,401394495,CA
401394496,401394527,CN
401394528,401394559,US
401394560,401395455,CA
@@ -5822,8 +5867,8 @@
402260528,402260543,US
402260544,402260575,CA
402260576,402260655,US
-402260656,402260767,CA
-402260768,402260831,US
+402260656,402260751,CA
+402260752,402260831,US
402260832,402260863,CA
402260864,402260895,US
402260896,402260911,CA
@@ -6280,7 +6325,9 @@
402532160,402532231,US
402532232,402532247,CA
402532248,402532255,US
-402532256,402532351,CA
+402532256,402532271,CA
+402532272,402532287,US
+402532288,402532351,CA
402532352,402532607,US
402532608,402532887,CA
402532888,402532895,US
@@ -6639,7 +6686,8 @@
455081984,455213055,AU
455213056,455245823,NP
455245824,455258111,JP
-455258112,455258623,SG
+455258112,455258367,TM
+455258368,455258623,SG
455258624,455258688,KH
455258689,455260671,SG
455260672,455260674,KH
@@ -7061,7 +7109,9 @@
520990720,520992767,RU
520994816,521011199,BG
521011200,521013247,FR
-521013248,521014015,RO
+521013248,521013503,RO
+521013504,521013759,PL
+521013760,521014015,RO
521014016,521014271,NL
521014272,521018367,RO
521018368,521018623,IT
@@ -7085,7 +7135,8 @@
521028864,521029119,RO
521029120,521029375,ES
521029376,521029631,US
-521029632,521030655,GB
+521029632,521030399,GB
+521030400,521030655,TR
521030656,521031679,FR
521031680,521035775,IR
521035776,521037567,RO
@@ -7094,7 +7145,9 @@
521039872,521043967,IR
521043968,521048063,IT
521048064,521052159,IR
-521052160,521053183,RO
+521052160,521052671,RO
+521052672,521052927,PL
+521052928,521053183,RO
521053184,521054207,SY
521054208,521056255,GR
521056256,521057279,LT
@@ -7790,7 +7843,9 @@
533692416,533725183,RU
533725184,533734393,SE
533734394,533734394,DK
-533734395,533807103,SE
+533734395,533765631,SE
+533765632,533765887,DK
+533765888,533807103,SE
533807104,533811199,LT
533811200,533815295,DE
533815296,533815296,TR
@@ -8137,7 +8192,9 @@
600342899,600342899,IN
600342900,600374233,US
600374234,600374234,IN
-600374235,603979775,US
+600374235,600376938,US
+600376939,600376939,AU
+600376940,603979775,US
603979776,603980799,CN
603980800,603981823,NP
603981824,604110847,CN
@@ -8222,14 +8279,17 @@
620777472,620781567,NL
620781568,620783615,GB
620783616,620785663,ES
-620785664,620786687,DE
+620785664,620785919,DE
+620785920,620786175,GB
+620786176,620786687,DE
620786688,620787199,IE
620787200,620787711,DE
620787712,620789503,RU
620789504,620789631,KZ
620789632,620789759,RU
620789760,620810239,HR
-620810240,620822527,LT
+620810240,620812287,SE
+620812288,620822527,LT
620822528,620845055,RU
620845056,620845191,GB
620845192,620845199,DE
@@ -8294,17 +8354,12 @@
621420544,621420799,HK
621420800,621421055,SG
621421056,621421567,US
-621421568,621421823,GB
-621421824,621422079,NL
-621422080,621422335,DE
-621422336,621422591,NL
+621421568,621422591,NL
621422592,621422847,HK
621422848,621423103,SG
621423104,621423615,US
621423616,621423871,GB
-621423872,621424127,NL
-621424128,621424383,DE
-621424384,621428735,NL
+621423872,621428735,NL
621428736,621429759,IR
621429760,621430271,DE
621430272,621430527,ES
@@ -8578,9 +8633,12 @@
624640824,624640827,GB
624640828,624640931,FR
624640932,624640935,ES
-624640936,624641187,FR
+624640936,624641183,FR
+624641184,624641187,CZ
624641188,624641191,ES
-624641192,624641375,FR
+624641192,624641295,FR
+624641296,624641299,CZ
+624641300,624641375,FR
624641376,624641407,LT
624641408,624641535,FR
624641536,624641551,IE
@@ -8641,7 +8699,8 @@
624645584,624645591,GB
624645592,624645663,FR
624645664,624645695,PT
-624645696,624646235,FR
+624645696,624646231,FR
+624646232,624646235,CZ
624646236,624646239,IT
624646240,624646255,DE
624646256,624646267,FR
@@ -8710,7 +8769,9 @@
624658536,624658539,ES
624658540,624658559,FR
624658560,624658591,LT
-624658592,624658863,FR
+624658592,624658803,FR
+624658804,624658807,CZ
+624658808,624658863,FR
624658864,624658879,ES
624658880,624659071,FR
624659072,624659135,ES
@@ -8785,7 +8846,9 @@
624664672,624664703,IE
624664704,624664767,FR
624664768,624664775,GB
-624664776,624665471,FR
+624664776,624665271,FR
+624665272,624665275,CZ
+624665276,624665471,FR
624665472,624665475,LT
624665476,624665587,FR
624665588,624665591,DE
@@ -8866,7 +8929,9 @@
624671292,624671295,PL
624671296,624671455,FR
624671456,624671471,ES
-624671472,624672547,FR
+624671472,624672095,FR
+624672096,624672127,CZ
+624672128,624672547,FR
624672548,624672551,ES
624672552,624672951,FR
624672952,624672959,ES
@@ -8950,7 +9015,9 @@
624679260,624679263,ES
624679264,624679327,FR
624679328,624679335,ES
-624679336,624679843,FR
+624679336,624679743,FR
+624679744,624679747,CZ
+624679748,624679843,FR
624679844,624679847,ES
624679848,624680063,FR
624680064,624680191,ES
@@ -8958,7 +9025,8 @@
624680456,624680463,ES
624680464,624680747,FR
624680748,624680751,NL
-624680752,624680783,FR
+624680752,624680767,FR
+624680768,624680783,CZ
624680784,624680799,GB
624680800,624680895,FR
624680896,624680927,ES
@@ -8968,7 +9036,9 @@
624681084,624681087,ES
624681088,624681095,FR
624681096,624681103,NL
-624681104,624681535,FR
+624681104,624681363,FR
+624681364,624681367,CZ
+624681368,624681535,FR
624681536,624681599,ES
624681600,624681807,FR
624681808,624681823,BE
@@ -9282,7 +9352,19 @@
628847360,628847615,FR
628847616,628848639,GB
628848640,628850687,DE
-628850688,628852723,NO
+628850688,628850943,NO
+628850944,628851199,SE
+628851200,628851231,NO
+628851232,628851263,SE
+628851264,628851285,NO
+628851286,628851286,SE
+628851287,628851295,NO
+628851296,628851327,SE
+628851328,628851455,NO
+628851456,628851486,SE
+628851487,628851519,NO
+628851520,628851551,SE
+628851552,628852723,NO
628852724,628852727,SE
628852728,628852735,NO
628852736,628867071,SE
@@ -9316,9 +9398,9 @@
629313536,629315583,ES
629315584,629317631,IT
629317632,629325823,FI
-629325824,629327359,RU
-629327360,629327615,US
-629327616,629327871,RU
+629325824,629326591,US
+629326592,629326847,RU
+629326848,629327871,US
629327872,629329919,IR
629329920,629331967,ES
629331968,629334015,IT
@@ -9466,7 +9548,9 @@
630982272,630982399,KR
630982400,630982655,RO
630982656,630988799,IR
-630988800,630990335,RO
+630988800,630989311,RO
+630989312,630989567,PL
+630989568,630990335,RO
630990336,630990847,JE
630990848,630992895,RO
630992896,630996991,IR
@@ -9476,9 +9560,7 @@
630998272,630998783,MD
630998784,630999039,RO
630999040,630999295,CN
-630999296,630999551,RO
-630999552,630999679,GB
-630999680,631000063,RO
+630999296,631000063,GB
631000064,631001087,ES
631001088,631005183,DE
631005184,631006207,IT
@@ -9553,7 +9635,9 @@
633059984,633059987,GB
633059988,633060359,FR
633060360,633060367,ES
-633060368,633061247,FR
+633060368,633060423,FR
+633060424,633060427,CZ
+633060428,633061247,FR
633061248,633061311,NL
633061312,633062463,FR
633062464,633062527,BE
@@ -9773,13 +9857,16 @@
635866112,635871487,RU
635871488,635871743,UA
635871744,635873279,RU
-635873280,635873791,LU
-635873792,635874303,SE
+635873280,635873535,LU
+635873536,635873791,US
+635873792,635874047,SE
+635874048,635874303,AR
635874304,635874815,SG
635874816,635875071,FR
635875072,635875327,US
-635875328,635875839,IT
-635875840,635876351,CH
+635875328,635875583,IT
+635875584,635876095,US
+635876096,635876351,CH
635876352,635876863,DK
635876864,635877119,MY
635877120,635877375,BN
@@ -9788,7 +9875,7 @@
635877888,635878143,ES
635878144,635878399,US
635878400,635878655,RU
-635878656,635878911,AM
+635878656,635878911,US
635878912,635879167,FI
635879168,635879423,AT
635879424,635894527,RU
@@ -9960,7 +10047,9 @@
641771904,641772031,US
641772032,641772543,CA
641772544,641773055,US
-641773056,641776639,CA
+641773056,641774641,CA
+641774642,641774642,US
+641774643,641776639,CA
641776640,641777663,US
641777664,641777919,CA
641777920,641778175,US
@@ -10280,7 +10369,9 @@
675447424,675447551,BR
675447552,675448575,US
675448576,675449087,GB
-675449088,675449471,US
+675449088,675449151,US
+675449152,675449215,BR
+675449216,675449471,US
675449472,675449599,IE
675449600,675449727,AT
675449728,675449855,FI
@@ -10429,12 +10520,15 @@
676463616,676464639,US
676464640,676465663,NL
676465664,676466687,AU
-676466688,676495359,NL
+676466688,676467711,US
+676467712,676495359,NL
676495360,676503551,KR
676503552,676511743,CA
676511744,676519935,AU
676519936,676524031,FR
-676524032,676528127,NL
+676524032,676525055,NL
+676525056,676526079,AU
+676526080,676528127,NL
676528128,676544511,US
676544512,676560895,HK
676560896,676659199,US
@@ -10522,7 +10616,9 @@
677023296,677023327,AU
677023328,677023391,US
677023392,677023423,AU
-677023424,677023935,US
+677023424,677023455,JP
+677023456,677023471,NL
+677023472,677023935,US
677023936,677023967,NL
677023968,677023999,BR
677024000,677024031,IE
@@ -10552,7 +10648,9 @@
677025088,677025151,US
677025152,677025279,IE
677025280,677025311,AU
-677025312,677027839,US
+677025312,677025407,US
+677025408,677025535,NL
+677025536,677027839,US
677027840,677036031,SG
677036032,677057535,US
677057536,677058559,IE
@@ -10640,8 +10738,7 @@
677382752,677382815,CA
677382816,677382831,NL
677382832,677382839,FI
-677382840,677383015,US
-677383016,677383191,BR
+677382840,677383191,BR
677383192,677383391,US
677383392,677383567,NL
677383568,677383583,MY
@@ -10687,10 +10784,11 @@
677386064,677386095,US
677386096,677386111,BR
677386112,677386127,CA
-677386128,677386175,US
+677386128,677386159,US
+677386160,677386175,BR
677386176,677386207,CA
677386208,677386239,AU
-677386240,677386359,US
+677386240,677386359,BR
677386360,677386367,MY
677386368,677386375,AU
677386376,677386399,AT
@@ -10850,10 +10948,11 @@
677742592,677744639,FR
677744640,677748735,JP
677748736,677774335,US
-677774336,677775359,BR
-677775360,677781503,US
-677781504,677782527,CL
-677782528,677838847,US
+677774336,677776383,BR
+677776384,677781503,US
+677781504,677783551,CL
+677783552,677784575,ZA
+677784576,677838847,US
677838848,677838863,NL
677838864,677838879,IE
677838880,677838895,FI
@@ -11166,8 +11265,8 @@
678102528,678102783,IE
678102784,678103039,FI
678103040,678103295,AT
-678103296,678103551,US
-678103552,678104063,GB
+678103296,678103807,FR
+678103808,678104063,GB
678104064,678117887,US
678117888,678118399,CA
678118400,678150143,US
@@ -11291,9 +11390,13 @@
678641664,678649855,AU
678649856,678658047,IE
678658048,678690815,JP
-678690816,678821887,US
+678690816,678756351,US
+678756352,678764543,AU
+678764544,678821887,US
678821888,678854655,NL
-678854656,679198719,US
+678854656,678920191,US
+678920192,678928383,NL
+678928384,679198719,US
679198720,679215103,AE
679215104,679280639,US
679280640,679297023,AE
@@ -11309,8 +11412,8 @@
679349376,679349503,HK
679349504,679349759,JP
679349760,679350015,AU
-679350016,679350271,GB
-679350272,679350399,US
+679350016,679350335,GB
+679350336,679350399,US
679350400,679350527,KR
679350528,679350655,BR
679350656,679351039,IN
@@ -11722,7 +11825,9 @@
700437504,700438527,MU
700438528,700439551,BW
700439552,700440575,GN
-700440576,700442623,MU
+700440576,700441835,MU
+700441836,700441839,KE
+700441840,700442623,MU
700442624,700444671,ZW
700444672,700446719,GH
700446720,700447743,SL
@@ -11790,8 +11895,7 @@
701390848,701391871,MU
701391872,701392127,KE
701392128,701392383,TZ
-701392384,701392639,ZA
-701392640,701399039,MU
+701392384,701399039,MU
701399040,701407231,EG
701407232,701423615,ZA
701431808,701439999,CI
@@ -11856,7 +11960,9 @@
702066944,702067199,NL
702067200,702067711,PL
702067712,702068735,NL
-702068736,702069759,ZA
+702068736,702068991,ZA
+702068992,702069247,RU
+702069248,702069759,ZA
702069760,702070271,US
702070272,702070783,RU
702070784,702074879,ZA
@@ -12292,7 +12398,9 @@
736389120,736390143,JP
736390144,736391167,LK
736391168,736392191,IN
-736392192,736394239,CN
+736392192,736392447,CN
+736392448,736392703,SC
+736392704,736394239,CN
736394240,736395007,SG
736395008,736395263,HK
736395264,736396287,MN
@@ -12819,8 +12927,7 @@
737753088,737757183,TH
737757184,737757439,JP
737757440,737757695,HK
-737757696,737757951,AU
-737757952,737758207,SG
+737757696,737758207,AU
737758208,737760255,HK
737760256,737761279,IN
737761280,737762303,HK
@@ -13121,9 +13228,11 @@
747175936,747241471,NL
747241472,747372543,US
747372544,747438079,SE
-747438080,747671807,US
+747438080,747634687,US
+747634688,747671807,BE
747671808,747672063,GB
-747672064,750649855,US
+747672064,747700223,BE
+747700224,750649855,US
750649856,750650111,AT
750650112,755105791,US
755105792,755179519,CA
@@ -13308,9 +13417,11 @@
757662976,757686271,US
757686272,757694463,CA
757694464,757696255,US
-757696256,757696511,JP
+757696256,757696511,AU
757696512,757697535,DE
-757697536,757711871,US
+757697536,757699327,US
+757699328,757699583,TW
+757699584,757711871,US
757711872,757712127,AU
757712128,757714175,US
757714176,757714431,JP
@@ -13412,7 +13523,8 @@
757790976,757791231,WS
757791232,757800959,US
757800960,757801983,HK
-757801984,757809151,US
+757801984,757803007,TW
+757803008,757809151,US
757809152,757809407,CA
757809408,757809663,RO
757809664,757809919,GB
@@ -13452,8 +13564,7 @@
758684160,758684671,US
758684672,758684927,BR
758684928,758685183,IN
-758685184,758685439,AU
-758685440,758685695,JP
+758685184,758685695,AU
758685696,758691839,US
758691840,758692863,DE
758692864,758700031,US
@@ -13493,9 +13604,7 @@
758749568,758749695,CA
758749696,758749951,US
758749952,758750207,CA
-758750208,758750463,US
-758750464,758750719,CA
-758750720,758750975,US
+758750208,758750975,US
758750976,758751039,CA
758751040,758751167,US
758751168,758751487,CA
@@ -13522,8 +13631,8 @@
758754048,758754303,CA
758754304,758754431,US
758754432,758754559,CA
-758754560,758754815,US
-758754816,758755327,CA
+758754560,758755071,US
+758755072,758755327,CA
758755328,758755839,US
758755840,758756351,CA
758756352,758756863,US
@@ -13588,7 +13697,9 @@
758766528,758766575,US
758766576,758766583,CA
758766584,758766847,US
-758766848,758769279,CA
+758766848,758767615,CA
+758767616,758767871,US
+758767872,758769279,CA
758769280,758769359,US
758769360,758769367,CA
758769368,758769375,US
@@ -13966,8 +14077,7 @@
759711616,759711647,US
759711648,759711655,CA
759711656,759711711,US
-759711712,759711743,CA
-759711744,759711775,CN
+759711712,759711775,CA
759711776,759711807,US
759711808,759711839,CA
759711840,759711855,US
@@ -14034,7 +14144,9 @@
759832960,759833087,BI
759833088,759833215,ER
759833216,759833343,LS
-759833344,759834623,US
+759833344,759833855,US
+759833856,759834111,AU
+759834112,759834623,US
759834624,759834879,GB
759834880,759835391,US
759835392,759835647,AU
@@ -14152,7 +14264,7 @@
762393600,762395647,CN
762395648,762396159,TH
762396160,762397695,IN
-762397696,762398719,HK
+762397696,762398719,CA
762398720,762399743,CN
762399744,762400767,IN
762400768,762401023,HK
@@ -14162,8 +14274,7 @@
762402816,762403839,IN
762403840,762404863,AU
762404864,762407935,IN
-762407936,762408959,CN
-762408960,762409983,HK
+762407936,762409983,HK
762409984,762411007,JP
762411008,762411519,HK
762411520,762411775,IN
@@ -14288,7 +14399,7 @@
762563584,762564607,AU
762564608,762565631,IN
762565632,762567679,CN
-762567680,762568703,IN
+762567680,762568703,MY
762568704,762569727,BD
762569728,762570751,CN
762570752,762571775,AU
@@ -14445,8 +14556,7 @@
762848768,762849279,BD
762849280,762850303,IN
762850304,762851327,HK
-762852352,762852863,HK
-762852864,762853375,MY
+762852352,762853375,MY
762853376,762855423,IN
762855424,762857471,KR
762857472,762858495,IN
@@ -15030,6 +15140,7 @@
770050048,770052095,AR
770052096,770053119,BR
770053120,770053375,AR
+770053376,770053631,CO
770053632,770054143,CL
770054144,770056447,BR
770056448,770056703,CO
@@ -15083,8 +15194,10 @@
770156544,770157567,MX
770157568,770160639,BR
770160640,770161663,CO
-770161664,770168831,BR
-770168832,770169855,AR
+770161664,770166271,BR
+770166272,770166783,BZ
+770166784,770168319,BR
+770168320,770169855,AR
770169856,770170879,MX
770170880,770171903,AR
770171904,770177023,BR
@@ -15101,6 +15214,7 @@
770202624,770203647,CL
770203648,770204671,AR
770204672,770205695,BR
+770205696,770206719,PE
770206720,770208767,BR
770208768,770209791,CR
770209792,770210815,CL
@@ -15112,27 +15226,69 @@
770221056,770222079,AR
770222080,770223103,BR
770223104,770224127,DO
+770224128,770225151,CL
770225152,770228223,BR
770228224,770229247,PE
770229248,770231295,BR
770231296,770232319,AR
-770232320,770239487,BR
-770240512,770243583,BR
+770232320,770243583,BR
770243584,770244607,MX
-770244608,770260991,BR
+770244608,770245631,BR
+770245632,770246655,CO
+770246656,770260991,BR
770260992,770262015,GT
-770264064,770265087,BR
-770266112,770268159,BR
+770262016,770263039,AR
+770263040,770264063,CO
+770264064,770268159,BR
770268160,770269183,EC
-770269184,770270207,BR
-770271232,770274303,BR
+770269184,770274303,BR
770274304,770275327,MX
770275328,770280447,BR
+770280448,770281471,AR
770281472,770287615,BR
-770289664,770293759,BR
-770301952,770318335,BR
-770320384,770321407,BR
+770287616,770288639,CO
+770288640,770304511,BR
+770305024,770305535,AR
+770305536,770316287,BR
+770317312,770318335,BR
+770318336,770319359,AR
+770319360,770325503,BR
770325504,770326527,VE
+770326528,770331647,BR
+770331648,770332671,PY
+770332672,770333695,BZ
+770333696,770338815,BR
+770338816,770339839,CW
+770339840,770341887,AR
+770341888,770350079,BR
+770350080,770351103,CL
+770351616,770352127,BR
+770353152,770354175,BR
+770354176,770355199,AR
+770355200,770356223,BR
+770356224,770357247,AR
+770357248,770367487,BR
+770367488,770368511,CL
+770368512,770369535,AR
+770369536,770370559,HN
+770370560,770378751,BR
+770378752,770379775,EC
+770379776,770384895,BR
+770384896,770385919,CL
+770385920,770386943,CO
+770386944,770388991,BR
+770390016,770393087,BR
+770394112,770398207,BR
+770398208,770399231,AR
+770399232,770400255,BR
+770400256,770401279,AR
+770401280,770406399,BR
+770406400,770407423,PY
+770407424,770419711,BR
+770419712,770420735,MX
+770420736,770433023,BR
+770433024,770433535,CO
+770447360,770448383,AR
770703360,771227647,EG
771227648,771229695,IN
771229696,771230719,CN
@@ -15163,7 +15319,7 @@
771308544,771309567,HK
771309568,771310591,KR
771310592,771315711,IN
-771315712,771315967,HK
+771315712,771315967,US
771315968,771316223,JP
771316224,771316479,KR
771316480,771316735,HK
@@ -15188,7 +15344,7 @@
771349504,771349759,ID
771349760,771350015,US
771350016,771350271,ID
-771350272,771350527,US
+771350272,771350527,SG
771350528,771355647,IN
771355648,771356671,HK
771356672,771361791,IN
@@ -15557,7 +15713,8 @@
773599232,773601279,GB
773601280,773603327,LV
773603328,773605375,UA
-773605376,773607423,IR
+773605376,773606143,IR
+773606144,773607423,TR
773607424,773609471,DE
773609472,773611519,RU
773611520,773613567,BY
@@ -15606,9 +15763,7 @@
773701632,773703679,RU
773703680,773705727,IT
773705728,773707775,RU
-773707776,773708543,NO
-773708544,773708799,BV
-773708800,773709823,NO
+773707776,773709823,NO
773709824,773711871,CZ
773711872,773713919,RU
773713920,773715967,NL
@@ -15959,9 +16114,7 @@
775557120,775557375,CH
775569408,775569663,US
775585792,775618559,SY
-775618560,775645951,SE
-775645952,775646207,NO
-775646208,775651327,SE
+775618560,775651327,SE
775651328,775684095,DE
775684096,775716863,PS
775716864,775749631,GB
@@ -15994,7 +16147,7 @@
778395648,778436607,DE
778436608,778461183,RO
778461184,778461439,TR
-778461440,778462207,RO
+778461440,778462207,PL
778462208,778462463,TR
778462464,778462719,US
778462720,778463743,RO
@@ -16039,7 +16192,9 @@
778567680,778633215,TR
778633216,778638335,FR
778638336,778638591,ES
-778638592,778639231,FR
+778638592,778638975,FR
+778638976,778639103,CZ
+778639104,778639231,FR
778639232,778639359,FI
778639360,778639615,ES
778639616,778640127,FR
@@ -16120,7 +16275,9 @@
778667348,778667351,GB
778667352,778667499,FR
778667500,778667503,GB
-778667504,778667999,FR
+778667504,778667931,FR
+778667932,778667935,CZ
+778667936,778667999,FR
778668000,778668003,GB
778668004,778668271,FR
778668272,778668279,ES
@@ -16147,7 +16304,9 @@
778669212,778669215,ES
778669216,778669451,FR
778669452,778669455,ES
-778669456,778669663,FR
+778669456,778669551,FR
+778669552,778669567,CZ
+778669568,778669663,FR
778669664,778669695,FI
778669696,778669823,FR
778669824,778669855,ES
@@ -16193,7 +16352,8 @@
778673752,778673759,DE
778673760,778673851,FR
778673852,778673855,NL
-778673856,778673883,FR
+778673856,778673879,FR
+778673880,778673883,CZ
778673884,778673887,ES
778673888,778674303,FR
778674304,778674367,DE
@@ -16242,11 +16402,15 @@
778677184,778677215,ES
778677216,778677255,FR
778677256,778677259,ES
-778677260,778677375,FR
+778677260,778677339,FR
+778677340,778677343,CZ
+778677344,778677375,FR
778677376,778677391,GB
778677392,778677399,FR
778677400,778677403,PT
-778677404,778677503,FR
+778677404,778677475,FR
+778677476,778677479,CZ
+778677480,778677503,FR
778677504,778677505,GB
778677506,778677506,ES
778677507,778677507,GB
@@ -16441,7 +16605,9 @@
778698644,778698647,ES
778698648,778698703,FR
778698704,778698707,ES
-778698708,778698751,FR
+778698708,778698715,FR
+778698716,778698719,CZ
+778698720,778698751,FR
778698752,778764287,TR
778764288,778822655,HU
778822656,778823679,UA
@@ -16487,7 +16653,9 @@
781479936,781480191,UA
781480192,781480447,RO
781480448,781480703,BE
-781480704,781484031,UA
+781480704,781481471,UA
+781481472,781481727,GB
+781481728,781484031,UA
781484032,781488127,RU
781488128,781496319,PL
781496320,781516799,RU
@@ -16600,9 +16768,7 @@
782663680,782671871,NL
782671872,782672655,LT
782672656,782672663,VG
-782672664,782672703,LT
-782672704,782672735,CA
-782672736,782673935,LT
+782672664,782673935,LT
782673936,782673943,EE
782673944,782673959,LT
782673960,782673967,IN
@@ -16610,9 +16776,7 @@
782674440,782674447,CA
782674448,782674959,LT
782674960,782674975,CR
-782674976,782675615,LT
-782675616,782675647,CA
-782675648,782675967,LT
+782674976,782675967,LT
782675968,782680063,NL
782680064,782696447,RU
782696448,782712831,DE
@@ -17134,7 +17298,8 @@
787739904,787740671,AU
787740672,787740927,BE
787740928,787741183,EE
-787741184,787741695,HK
+787741184,787741439,HK
+787741440,787741695,US
787741696,787741951,RU
787741952,787742207,NL
787742208,787742719,RU
@@ -17450,9 +17615,18 @@
825419776,825420799,TH
825420800,825421823,MY
825421824,825425919,NZ
-825425920,825458687,CN
-825458688,825459199,DE
-825459200,825753599,CN
+825425920,825434111,CA
+825434112,825438207,CN
+825438208,825439743,US
+825439744,825440255,CA
+825440256,825442303,CN
+825442304,825448447,US
+825448448,825454079,CA
+825454080,825458687,CN
+825458688,825470975,DE
+825470976,825484287,CN
+825484288,825491455,US
+825491456,825753599,CN
825753600,826277887,KR
826277888,828375039,CN
828375040,829423615,JP
@@ -17554,7 +17728,9 @@
838729728,838795263,KR
838795264,838860799,AU
838860800,838991871,US
-838991872,839008511,DE
+838991872,838994943,DE
+838994944,838995967,US
+838995968,839008511,DE
839008512,839008767,US
839008768,839013270,DE
839013271,839013271,US
@@ -17564,13 +17740,15 @@
839026688,839027711,US
839027712,839041023,DE
839041024,839042047,US
-839042048,839046271,DE
-839046272,839046303,US
-839046304,839081471,DE
+839042048,839046143,DE
+839046144,839047167,US
+839047168,839081471,DE
839081472,839081727,US
839081728,839116543,DE
839116544,839116799,US
-839116800,839122943,DE
+839116800,839119871,DE
+839119872,839120895,US
+839120896,839122943,DE
839122944,839340031,US
839340032,839341055,ES
839341056,839343103,DE
@@ -17677,7 +17855,55 @@
858128704,858128735,CZ
858128736,858128895,FR
858128896,858129023,BE
-858129024,858193919,FR
+858129024,858131343,FR
+858131344,858131359,ES
+858131360,858133759,FR
+858133760,858133887,ES
+858133888,858135423,FR
+858135424,858135551,IT
+858135552,858136351,FR
+858136352,858136383,GB
+858136384,858148863,FR
+858148864,858149887,GB
+858149888,858149951,FR
+858149952,858150015,GB
+858150016,858158111,FR
+858158112,858158207,DE
+858158208,858158271,FR
+858158272,858158399,DE
+858158400,858158527,FR
+858158528,858158655,DE
+858158656,858158783,FR
+858158784,858158847,DE
+858158848,858161151,FR
+858161152,858163199,PL
+858163200,858165247,FR
+858165248,858165311,PL
+858165312,858165375,FR
+858165376,858165439,PL
+858165440,858165823,FR
+858165824,858165855,PL
+858165856,858165887,FR
+858165888,858165951,PL
+858165952,858166207,FR
+858166208,858166271,PL
+858166272,858167295,FR
+858167296,858167359,PL
+858167360,858169855,FR
+858169856,858169983,ES
+858169984,858170195,FR
+858170196,858170207,DE
+858170208,858170751,FR
+858170752,858170879,IT
+858170880,858171023,FR
+858171024,858171039,GB
+858171040,858171359,FR
+858171360,858171391,NL
+858171392,858173055,FR
+858173056,858173071,BE
+858173072,858178239,FR
+858178240,858178271,GB
+858178272,858193919,FR
858193920,858259455,SA
858259456,859059509,GB
859059510,859059510,FR
@@ -17719,7 +17945,9 @@
865992704,866123775,FR
866123776,866189311,GB
866189312,866254847,FR
-866254848,866844671,GB
+866254848,866360831,GB
+866360832,866361343,DE
+866361344,866844671,GB
866844672,866910207,IE
866910208,867041279,GB
867041280,867172351,NO
@@ -17813,7 +18041,9 @@
872300032,872300063,ES
872300064,872300127,FR
872300128,872300159,NL
-872300160,872300543,FR
+872300160,872300515,FR
+872300516,872300519,DE
+872300520,872300543,FR
872300544,872300559,GB
872300560,872300639,FR
872300640,872300671,PT
@@ -17831,7 +18061,9 @@
872302784,872302847,GB
872302848,872303007,FR
872303008,872303039,IT
-872303040,872303103,FR
+872303040,872303055,FR
+872303056,872303071,CZ
+872303072,872303103,FR
872303104,872303359,GB
872303360,872303679,FR
872303680,872303743,IT
@@ -18023,7 +18255,9 @@
872345216,872345343,GB
872345344,872346095,FR
872346096,872346111,DE
-872346112,872346223,FR
+872346112,872346199,FR
+872346200,872346203,CZ
+872346204,872346223,FR
872346224,872346239,ES
872346240,872346319,FR
872346320,872346335,CZ
@@ -18358,7 +18592,9 @@
875479040,875485183,SE
875485184,875486207,US
875486208,875487231,SE
-875487232,875495423,US
+875487232,875491327,US
+875491328,875492351,IE
+875492352,875495423,US
875495424,875560959,FR
875560960,875823103,IE
875823104,876085247,US
@@ -18589,7 +18825,12 @@
878855680,878856191,SG
878856192,878856447,HK
878856448,878857087,JP
-878857088,878862335,US
+878857088,878857215,KR
+878857216,878857535,AU
+878857536,878857599,US
+878857600,878857727,JP
+878857728,878857855,HK
+878857856,878862335,US
878862336,878862975,HK
878862976,878863103,US
878863104,878863359,HK
@@ -18597,11 +18838,18 @@
879053824,879054335,FR
879054336,879070207,US
879070208,879070719,FR
-879070720,879296511,US
+879070720,879230975,US
+879230976,879231231,CA
+879231232,879231743,US
+879231744,879231999,CA
+879232000,879296511,US
879296512,879296767,NL
879296768,879297279,IE
879297280,879297535,NL
-879297536,879499263,US
+879297536,879297791,IE
+879297792,879345663,US
+879345664,879345919,IN
+879345920,879499263,US
879499264,879501311,NL
879501312,879502335,HK
879502336,879503359,BR
@@ -18612,7 +18860,9 @@
879505408,879505919,KR
879505920,879506431,GB
879506432,879506943,FR
-879506944,879549951,US
+879506944,879507455,US
+879507456,879509503,NL
+879509504,879549951,US
879549952,879550463,FR
879550464,879550975,GB
879550976,879551487,KR
@@ -18672,7 +18922,11 @@
879804864,879804991,IE
879804992,879805183,NL
879805184,879805247,IE
-879805248,879808511,US
+879805248,879805295,NL
+879805296,879805311,IE
+879805312,879805343,NL
+879805344,879805407,IE
+879805408,879808511,US
879808512,879808639,GB
879808640,879808767,NL
879808768,879808895,IE
@@ -18849,7 +19103,9 @@
881906240,881906303,FR
881906304,881906367,IE
881906368,881906495,DE
-881906496,881909823,US
+881906496,881906559,US
+881906560,881906623,GB
+881906624,881909823,US
881909824,881909887,AU
881909888,881909951,SG
881909952,881910079,US
@@ -19010,12 +19266,12 @@
888135936,888136447,AU
888136448,888136703,SG
888136704,888138751,US
-888138752,888139775,AE
+888138752,888139263,AE
+888139264,888139775,US
888139776,888140031,BR
888140032,888140287,FR
888140288,888140799,NL
-888140800,888141055,BR
-888141056,888274943,US
+888140800,888274943,US
888274944,888291327,CA
888291328,888348671,US
888348672,888356863,JP
@@ -19102,7 +19358,9 @@
908335872,908335999,ES
908336000,908336167,FR
908336168,908336183,ES
-908336184,908336255,FR
+908336184,908336215,FR
+908336216,908336219,ES
+908336220,908336255,FR
908336256,908336287,CZ
908336288,908336295,FR
908336296,908336303,ES
@@ -19627,7 +19885,9 @@
908446336,908446399,DE
908446400,908446463,FR
908446464,908446527,DE
-908446528,908446655,FR
+908446528,908446591,FR
+908446592,908446623,DE
+908446624,908446655,FR
908446656,908446719,DE
908446720,908447231,FR
908447232,908447295,DE
@@ -19635,7 +19895,9 @@
908447424,908447487,DE
908447488,908447679,FR
908447680,908447743,DE
-908447744,908448927,FR
+908447744,908447903,FR
+908447904,908447919,GB
+908447920,908448927,FR
908448928,908448935,IT
908448936,908448995,FR
908448996,908448999,IT
@@ -19695,7 +19957,9 @@
908479680,908479743,GB
908479744,908479999,FR
908480000,908480511,GB
-908480512,908491167,FR
+908480512,908488959,FR
+908488960,908489215,ES
+908489216,908491167,FR
908491168,908491199,CZ
908491200,908491391,FR
908491392,908491519,ES
@@ -19740,8 +20004,8 @@
908499200,908499263,FR
908499264,908499519,DE
908499520,908499583,FR
-908499584,908499647,DE
-908499648,908499967,FR
+908499584,908499711,DE
+908499712,908499967,FR
908499968,908500991,DE
908500992,908501407,FR
908501408,908501439,GB
@@ -19749,9 +20013,7 @@
908501792,908501823,CZ
908501824,908502399,FR
908502400,908502527,ES
-908502528,908504063,FR
-908504064,908504319,GB
-908504320,908504639,FR
+908502528,908504639,FR
908504640,908504703,GB
908504704,908509183,FR
908509184,908510207,PL
@@ -19769,11 +20031,17 @@
908512512,908512575,PL
908512576,908512639,FR
908512640,908512767,PL
-908512768,908514303,FR
+908512768,908512831,FR
+908512832,908512895,PL
+908512896,908513023,FR
+908513024,908513087,PL
+908513088,908513535,FR
+908513536,908513727,GB
+908513728,908514303,FR
908514304,908514367,GB
908514368,908514495,FR
-908514496,908514559,GB
-908514560,908514687,FR
+908514496,908514591,GB
+908514592,908514687,FR
908514688,908515327,GB
908515328,908515455,DE
908515456,908515711,FR
@@ -19824,7 +20092,8 @@
917401389,917635071,US
917635072,917700607,JP
917700608,917766143,SG
-917766144,918683647,US
+917766144,917897215,KR
+917897216,918683647,US
918683648,918814719,IE
918814720,919011327,US
919011328,919076863,JP
@@ -20674,7 +20943,13 @@
1040318464,1040383999,CH
1040384000,1040392191,SA
1040392192,1040392447,GB
-1040392448,1040400383,SA
+1040392448,1040397823,SA
+1040397824,1040398079,GB
+1040398080,1040398335,SA
+1040398336,1040398591,GB
+1040398592,1040399871,SA
+1040399872,1040400127,GB
+1040400128,1040400383,SA
1040400384,1040416767,GB
1040416768,1040424959,SE
1040424960,1040433151,PL
@@ -20742,7 +21017,9 @@
1041728656,1041728671,IT
1041728672,1041741567,FR
1041741568,1041741823,ES
-1041741824,1041746431,FR
+1041741824,1041742335,FR
+1041742336,1041742591,ES
+1041742592,1041746431,FR
1041746432,1041746687,DE
1041746688,1041748047,FR
1041748048,1041748063,DE
@@ -20752,7 +21029,9 @@
1041750352,1041750367,DE
1041750368,1041752319,FR
1041752320,1041752575,AT
-1041752576,1041760255,FR
+1041752576,1041758463,FR
+1041758464,1041758719,ES
+1041758720,1041760255,FR
1041760256,1041768447,DE
1041768448,1041776639,NO
1041776640,1041784831,CZ
@@ -21093,9 +21372,7 @@
1046323200,1046331391,ES
1046347776,1046413311,IT
1046413312,1046446079,SE
-1046446080,1046480895,DE
-1046480896,1046481919,GB
-1046481920,1046481927,DE
+1046446080,1046481927,DE
1046481928,1046482951,GB
1046482952,1046482952,DE
1046482953,1046483199,GB
@@ -21174,7 +21451,9 @@
1046498800,1046498807,DE
1046498808,1046498815,GB
1046498816,1046499327,DE
-1046499328,1046500735,GB
+1046499328,1046499679,GB
+1046499680,1046499695,DE
+1046499696,1046500735,GB
1046500736,1046500743,DE
1046500744,1046502106,GB
1046502107,1046502108,DE
@@ -21461,7 +21740,9 @@
1048205312,1048209407,RU
1048209408,1048211455,UA
1048211456,1048215551,PL
-1048215552,1048221695,RU
+1048215552,1048217599,RU
+1048217600,1048219647,TJ
+1048219648,1048221695,RU
1048221696,1048223743,UA
1048223744,1048225791,DK
1048225792,1048227839,CZ
@@ -21487,7 +21768,11 @@
1048603392,1048603647,LV
1048603648,1048604944,UA
1048604945,1048604945,LT
-1048604946,1048608767,UA
+1048604946,1048604991,UA
+1048604992,1048605007,LT
+1048605008,1048605119,UA
+1048605120,1048605123,LT
+1048605124,1048608767,UA
1048608768,1048616959,GB
1048616960,1048619007,US
1048619008,1048621055,GB
@@ -21514,6 +21799,7 @@
1048982888,1048982943,DE
1048985696,1048985711,DE
1048985728,1048985735,DE
+1048985792,1048985799,DE
1048987480,1048987487,DE
1048991960,1048991967,DE
1048992528,1048992535,DE
@@ -21701,7 +21987,7 @@
1052131328,1052133375,UA
1052133376,1052135423,RU
1052135424,1052137471,UA
-1052137472,1052139519,RU
+1052137472,1052140543,RU
1052141056,1052141567,DE
1052141568,1052143615,PL
1052143616,1052145663,BG
@@ -22773,7 +23059,9 @@
1056874944,1056874975,GB
1056874976,1056875007,IE
1056875008,1056964607,GB
-1056964608,1061227263,US
+1056964608,1059061759,US
+1059061760,1059323903,IE
+1059323904,1061227263,US
1061227264,1061227519,BO
1061227520,1061558271,US
1061558272,1061559295,PK
@@ -23024,7 +23312,9 @@
1071106560,1071106815,NL
1071106816,1071141557,US
1071141558,1071141558,HK
-1071141559,1071141873,US
+1071141559,1071141847,US
+1071141848,1071141851,HK
+1071141852,1071141873,US
1071141874,1071141874,HK
1071141875,1071144959,US
1071144960,1071153151,LB
@@ -23168,7 +23458,9 @@
1073118720,1073119231,DE
1073119232,1073373183,US
1073373184,1073381375,CA
-1073381376,1073454591,US
+1073381376,1073446399,US
+1073446400,1073446911,SG
+1073446912,1073454591,US
1073454592,1073454847,KY
1073454848,1074009727,US
1074009728,1074009855,IE
@@ -23198,7 +23490,55 @@
1074184192,1074188287,CA
1074188288,1074233343,US
1074233344,1074241535,CA
-1074241536,1074397439,US
+1074241536,1074392895,US
+1074392896,1074392911,CA
+1074392912,1074392927,MX
+1074392928,1074392935,PR
+1074392936,1074392943,VI
+1074392944,1074392951,UM
+1074392952,1074393023,US
+1074393024,1074393039,CA
+1074393040,1074393055,MX
+1074393056,1074393063,PR
+1074393064,1074393071,VI
+1074393072,1074393079,UM
+1074393080,1074394943,US
+1074394944,1074394959,CA
+1074394960,1074394975,MX
+1074394976,1074394983,PR
+1074394984,1074394991,VI
+1074394992,1074394999,UM
+1074395000,1074395071,US
+1074395072,1074395087,CA
+1074395088,1074395103,MX
+1074395104,1074395111,PR
+1074395112,1074395119,VI
+1074395120,1074395127,UM
+1074395128,1074395967,US
+1074395968,1074395983,CA
+1074395984,1074395999,MX
+1074396000,1074396007,PR
+1074396008,1074396015,VI
+1074396016,1074396023,UM
+1074396024,1074396095,US
+1074396096,1074396111,CA
+1074396112,1074396127,MX
+1074396128,1074396135,PR
+1074396136,1074396143,VI
+1074396144,1074396151,UM
+1074396152,1074396991,US
+1074396992,1074397007,CA
+1074397008,1074397023,MX
+1074397024,1074397031,PR
+1074397032,1074397039,VI
+1074397040,1074397047,UM
+1074397048,1074397119,US
+1074397120,1074397135,CA
+1074397136,1074397151,MX
+1074397152,1074397159,PR
+1074397160,1074397167,VI
+1074397168,1074397175,UM
+1074397176,1074397439,US
1074397440,1074398975,CA
1074398976,1074399231,US
1074399232,1074406655,CA
@@ -23508,7 +23848,17 @@
1077886976,1077903359,JP
1077903360,1077961347,US
1077961348,1077961350,MX
-1077961351,1077963775,US
+1077961351,1077961511,US
+1077961512,1077961519,IT
+1077961520,1077962871,US
+1077962872,1077962879,LT
+1077962880,1077963127,US
+1077963128,1077963135,LV
+1077963136,1077963383,US
+1077963384,1077963391,CA
+1077963392,1077963639,US
+1077963640,1077963647,PL
+1077963648,1077963775,US
1077963776,1077964031,JP
1077964032,1077967103,US
1077967104,1077967119,BD
@@ -23851,7 +24201,9 @@
1081573376,1081589759,US
1081589760,1081593855,BB
1081593856,1081597951,CA
-1081597952,1081634303,US
+1081597952,1081625775,US
+1081625776,1081625783,CA
+1081625784,1081634303,US
1081634304,1081637375,SG
1081637376,1081978623,US
1081978624,1081978631,CH
@@ -23869,7 +24221,11 @@
1082683392,1082687487,CA
1082687488,1082753023,US
1082753024,1082785791,CA
-1082785792,1082788655,AU
+1082785792,1082786591,AU
+1082786592,1082786607,HK
+1082786608,1082787161,AU
+1082787162,1082787162,SG
+1082787163,1082788655,AU
1082788656,1082788663,SG
1082788664,1082793983,AU
1082793984,1082945535,US
@@ -23958,9 +24314,7 @@
1087430192,1087430195,FR
1087430196,1087436799,US
1087436800,1087438847,FR
-1087438848,1087440895,US
-1087440896,1087442943,PR
-1087442944,1087466495,US
+1087438848,1087466495,US
1087466496,1087466688,GB
1087466689,1087466689,US
1087466690,1087466709,GB
@@ -24248,9 +24602,7 @@
1090497920,1091731455,US
1091731456,1091747839,CH
1091747840,1091751935,US
-1091751936,1091753215,CY
-1091753216,1091753471,US
-1091753472,1091756031,CY
+1091751936,1091756031,CY
1091756032,1091803135,US
1091803136,1091803391,CN
1091803392,1091807231,US
@@ -24337,15 +24689,29 @@
1094064832,1094064863,IE
1094064864,1094066175,US
1094066176,1094066303,IE
-1094066304,1094081023,US
+1094066304,1094074879,US
+1094074880,1094075167,BR
+1094075168,1094075171,US
+1094075172,1094075195,BR
+1094075196,1094075223,US
+1094075224,1094075235,BR
+1094075236,1094079743,US
+1094079744,1094079999,BR
+1094080000,1094081023,US
1094081024,1094081535,JP
1094081536,1094099551,US
1094099552,1094099567,IE
-1094099568,1094124543,US
+1094099568,1094100719,US
+1094100720,1094100735,GB
+1094100736,1094106239,US
+1094106240,1094106255,GB
+1094106256,1094124543,US
1094124544,1094124799,IE
1094124800,1094139039,US
1094139040,1094139051,IE
-1094139052,1094146047,US
+1094139052,1094139063,US
+1094139064,1094139067,CN
+1094139068,1094146047,US
1094146048,1094146079,KR
1094146080,1094146111,HK
1094146112,1094146143,SG
@@ -24574,11 +24940,9 @@
1107701760,1107705855,CA
1107705856,1107820543,US
1107820544,1107853311,ZA
-1107853312,1107895039,US
-1107895040,1107895807,GB
-1107895808,1107898367,US
-1107898368,1107899903,GB
-1107899904,1107907839,US
+1107853312,1107899391,US
+1107899392,1107899647,GB
+1107899648,1107907839,US
1107907840,1107908095,GB
1107908096,1107909375,US
1107909376,1107909631,GB
@@ -24874,7 +25238,9 @@
1113855488,1113983249,US
1113983250,1113983250,RU
1113983251,1113983251,KG
-1113983252,1113983364,US
+1113983252,1113983261,US
+1113983262,1113983262,LT
+1113983263,1113983364,US
1113983365,1113983365,LT
1113983366,1113984643,US
1113984644,1113984645,DE
@@ -24974,7 +25340,9 @@
1115132096,1115132159,HK
1115132160,1115132671,US
1115132672,1115132927,SG
-1115132928,1115133503,US
+1115132928,1115133183,US
+1115133184,1115133439,CN
+1115133440,1115133503,US
1115133504,1115133567,NL
1115133568,1115133951,US
1115133952,1115134079,SG
@@ -25538,7 +25906,9 @@
1137369856,1137370111,CA
1137370112,1137376355,US
1137376356,1137376356,CA
-1137376357,1137426431,US
+1137376357,1137385471,US
+1137385472,1137387519,BR
+1137387520,1137426431,US
1137426432,1137442815,PR
1137442816,1137491967,US
1137491968,1137508351,CA
@@ -25674,12 +26044,8 @@
1138499584,1138503679,CA
1138503680,1138507775,US
1138507776,1138508543,CA
-1138508544,1138508575,US
-1138508576,1138508591,IT
-1138508592,1138508799,US
-1138508800,1138509823,CA
-1138509824,1138510847,IN
-1138510848,1138515967,CA
+1138508544,1138508799,US
+1138508800,1138515967,CA
1138515968,1138528255,US
1138528256,1138528511,CA
1138528512,1138544895,US
@@ -25759,7 +26125,9 @@
1145099568,1145099697,SA
1145099698,1145099699,US
1145099700,1145099775,SA
-1145099776,1145168895,US
+1145099776,1145165823,US
+1145165824,1145166335,VG
+1145166336,1145168895,US
1145168896,1145171967,AU
1145171968,1145188351,US
1145188352,1145192447,CA
@@ -25935,9 +26303,11 @@
1157943296,1157947391,CA
1157947392,1158021119,US
1158021120,1158029311,CY
-1158029312,1158037503,US
+1158029312,1158037503,MT
1158037504,1158041599,JP
-1158041600,1158120959,US
+1158041600,1158045196,US
+1158045197,1158045197,JP
+1158045198,1158120959,US
1158120960,1158121215,GB
1158121216,1158148095,US
1158148096,1158152191,CA
@@ -26021,9 +26391,7 @@
1159525120,1159525375,US
1159525376,1159526399,CA
1159526400,1159526655,US
-1159526656,1159527167,CA
-1159527168,1159527423,US
-1159527424,1159528191,CA
+1159526656,1159528191,CA
1159528192,1159668479,US
1159668480,1159668735,CA
1159668736,1159685377,US
@@ -26209,9 +26577,7 @@
1161830853,1161830853,BZ
1161830854,1161833967,US
1161833968,1161833975,DE
-1161833976,1161835230,US
-1161835231,1161835231,PH
-1161835232,1161835948,US
+1161833976,1161835948,US
1161835949,1161835949,BZ
1161835950,1161837567,US
1161837568,1161837823,JP
@@ -26450,8 +26816,8 @@
1168954688,1168954751,CA
1168954752,1168955076,US
1168955077,1168955093,CA
-1168955094,1168955647,US
-1168955648,1168956671,CA
+1168955094,1168955391,US
+1168955392,1168956671,CA
1168956672,1168957183,US
1168957184,1168957311,IN
1168957312,1168958495,CA
@@ -26472,12 +26838,16 @@
1168973824,1168982015,CA
1168982016,1168998399,US
1168998400,1169002495,CA
-1169002496,1169002751,DE
-1169002752,1169031167,US
+1169002496,1169003007,DE
+1169003008,1169031167,US
1169031168,1169033215,CA
1169033216,1169034529,US
1169034530,1169034530,CA
-1169034531,1169041537,US
+1169034531,1169035263,US
+1169035264,1169035265,DE
+1169035266,1169035266,US
+1169035267,1169037311,DE
+1169037312,1169041537,US
1169041538,1169041538,CA
1169041539,1169043991,US
1169043992,1169043995,GB
@@ -26524,7 +26894,9 @@
1176068176,1176068191,CA
1176068192,1176068207,US
1176068208,1176502271,CA
-1176502272,1176616959,US
+1176502272,1176512175,US
+1176512176,1176512183,CA
+1176512184,1176616959,US
1176616960,1176627775,CA
1176627776,1176628223,US
1176628224,1176631551,CA
@@ -26557,7 +26929,8 @@
1176864256,1176864319,JP
1176864320,1176868095,US
1176868096,1176868351,AU
-1176868352,1176895487,US
+1176868352,1176868863,BR
+1176868864,1176895487,US
1176895488,1176897047,CA
1176897048,1176897055,US
1176897056,1176900735,CA
@@ -27467,7 +27840,13 @@
1280131072,1280139263,CA
1280139264,1280242175,US
1280242176,1280243199,CA
-1280243200,1291845631,US
+1280243200,1289724159,US
+1289724160,1289724415,GB
+1289724416,1289724671,DE
+1289724672,1289724927,IN
+1289724928,1289725183,JP
+1289725184,1289725439,BR
+1289725440,1291845631,US
1291845632,1292894207,DE
1292894208,1293156351,NO
1293156352,1293549567,DE
@@ -27856,18 +28235,7 @@
1297181952,1297182207,DE
1297182208,1297182463,NL
1297182464,1297182719,RO
-1297182720,1297184271,ES
-1297184272,1297184275,BR
-1297184276,1297184279,CO
-1297184280,1297184283,PE
-1297184284,1297184287,MX
-1297184288,1297184291,GB
-1297184292,1297184295,AU
-1297184296,1297184299,PA
-1297184300,1297184303,CL
-1297184304,1297184307,UY
-1297184308,1297184311,AR
-1297184312,1297184767,ES
+1297182720,1297184767,ES
1297184768,1297185279,BZ
1297185280,1297185791,RO
1297185792,1297185919,NL
@@ -28023,7 +28391,9 @@
1298137088,1298661375,GB
1298661376,1298677759,FR
1298677760,1298694143,IR
-1298694144,1298708879,US
+1298694144,1298705012,US
+1298705013,1298705013,SG
+1298705014,1298708879,US
1298708880,1298708880,SG
1298708881,1298710527,US
1298710528,1298726911,CZ
@@ -28076,7 +28446,9 @@
1299109530,1299109530,NO
1299109531,1299109569,SJ
1299109570,1299109570,NO
-1299109571,1299109631,SJ
+1299109571,1299109613,SJ
+1299109614,1299109614,NO
+1299109615,1299109631,SJ
1299109632,1299120127,NO
1299120128,1299136511,SI
1299136512,1299169279,HU
@@ -28562,6 +28934,7 @@
1311264768,1311266815,RU
1311266816,1311268863,FR
1311268864,1311270911,BE
+1311270912,1311271935,GE
1311271936,1311272447,KZ
1311272448,1311272703,NL
1311272704,1311272959,IE
@@ -28714,7 +29087,8 @@
1315954688,1315958783,DE
1315958784,1315962879,RU
1315962880,1317011455,FR
-1317011456,1317044223,BG
+1317011456,1317043967,BG
+1317043968,1317044223,US
1317044224,1317076991,CZ
1317076992,1317093887,BE
1317093888,1317094143,NL
@@ -28742,7 +29116,9 @@
1317568512,1317584895,CZ
1317584896,1317585919,RU
1317585920,1317586943,FR
-1317586944,1317593087,RU
+1317586944,1317587967,DE
+1317587968,1317588991,TR
+1317588992,1317593087,RU
1317593088,1317595135,GB
1317595136,1317597183,ES
1317597184,1317599231,RU
@@ -29046,7 +29422,9 @@
1333526784,1333527039,GB
1333527040,1333528575,BG
1333528576,1333528831,GB
-1333528832,1333551103,BG
+1333528832,1333546239,BG
+1333546240,1333546495,US
+1333546496,1333551103,BG
1333551104,1333559295,PL
1333559296,1333592063,UA
1333592064,1333624831,IE
@@ -29084,8 +29462,7 @@
1334231040,1334239231,RU
1334239232,1334242303,CH
1334242304,1334242559,IS
-1334242560,1334243327,CH
-1334243328,1334247423,IS
+1334242560,1334247423,CH
1334247424,1334255615,NO
1334255616,1334263807,IT
1334263808,1334271999,RU
@@ -29106,7 +29483,9 @@
1334379072,1334379135,PL
1334379136,1334379263,FR
1334379264,1334379519,PL
-1334379520,1334379871,FR
+1334379520,1334379583,FR
+1334379584,1334379591,PL
+1334379592,1334379871,FR
1334379872,1334379887,PT
1334379888,1334379971,FR
1334379972,1334379975,DE
@@ -29120,7 +29499,9 @@
1334381888,1334381919,IT
1334381920,1334381983,FR
1334381984,1334382015,FI
-1334382016,1334382975,FR
+1334382016,1334382903,FR
+1334382904,1334382911,PL
+1334382912,1334382975,FR
1334382976,1334383103,GB
1334383104,1334383615,FR
1334383616,1334383679,DE
@@ -29322,7 +29703,9 @@
1334779904,1334783999,UA
1334784000,1334784255,GB
1334784256,1334784511,RO
-1334784512,1334788095,GB
+1334784512,1334784767,GB
+1334784768,1334785023,TR
+1334785024,1334788095,GB
1334788096,1334792191,RU
1334792192,1334793320,GB
1334793321,1334793321,IR
@@ -29554,7 +29937,9 @@
1346396160,1346398335,RU
1346398336,1346398367,DE
1346398368,1346398687,RU
-1346398688,1346398719,DE
+1346398688,1346398709,DE
+1346398710,1346398710,RU
+1346398711,1346398719,DE
1346398720,1346400255,RU
1346400256,1346404351,IT
1346404352,1346407423,AT
@@ -30240,16 +30625,7 @@
1348317184,1348321279,RU
1348321280,1348325375,GB
1348325376,1348329471,TR
-1348329472,1348333599,RS
-1348333600,1348333607,XK
-1348333608,1348333631,RS
-1348333632,1348333807,XK
-1348333808,1348333823,RS
-1348333824,1348334079,XK
-1348334080,1348336191,RS
-1348336192,1348336383,XK
-1348336384,1348337471,RS
-1348337472,1348337663,XK
+1348329472,1348337663,RS
1348337664,1348341759,ES
1348341760,1348345855,PL
1348345856,1348349951,GB
@@ -30546,8 +30922,7 @@
1357375504,1357375551,GB
1357375560,1357375567,GB
1357375576,1357375583,FR
-1357375584,1357375591,GB
-1357375600,1357375615,GB
+1357375584,1357375615,GB
1357375648,1357375679,GB
1357377536,1357378647,FR
1357378656,1357378687,FR
@@ -30637,9 +31012,7 @@
1357984168,1357984175,IT
1357984176,1357984367,GB
1357984368,1357984375,IT
-1357984376,1357984511,GB
-1357984512,1357984519,IT
-1357984520,1357984527,GB
+1357984376,1357984527,GB
1357984528,1357984535,IT
1357984536,1357984839,GB
1357984840,1357984847,IT
@@ -31236,12 +31609,14 @@
1360977920,1360986111,CZ
1360986112,1360986269,GB
1360986270,1360986270,US
-1360986271,1360986299,GB
+1360986271,1360986287,GB
+1360986288,1360986291,US
+1360986292,1360986299,GB
1360986300,1360986300,US
1360986301,1360986356,GB
1360986357,1360986358,US
-1360986359,1360986367,GB
-1360986368,1360986399,US
+1360986359,1360986363,GB
+1360986364,1360986399,US
1360986400,1360986431,GB
1360986432,1360986447,US
1360986448,1360986631,GB
@@ -31309,7 +31684,9 @@
1362886656,1363017727,ES
1363017728,1363148799,CH
1363148800,1363410943,FR
-1363410944,1363673087,NL
+1363410944,1363574783,CN
+1363574784,1363582975,NL
+1363582976,1363673087,CN
1363673088,1363935231,IT
1363935232,1364197375,GB
1364197376,1364262911,FR
@@ -31526,8 +31903,8 @@
1369554944,1369559039,PL
1369559040,1369563135,RU
1369567232,1369571327,BG
-1369571328,1369585663,RU
-1369585664,1369591807,UA
+1369571328,1369587711,RU
+1369587712,1369591807,UA
1369591808,1369595903,SK
1369595904,1369604095,UA
1369604096,1369620479,MD
@@ -31598,7 +31975,7 @@
1370259456,1370292223,SE
1370292224,1370294271,NL
1370294272,1370295295,IL
-1370295296,1370296319,NL
+1370295296,1370296319,IE
1370296320,1370300415,GB
1370300416,1370301439,NL
1370301440,1370302463,IT
@@ -31948,7 +32325,8 @@
1383514112,1383522303,FI
1383522304,1383523839,BG
1383523840,1383524095,GB
-1383524096,1383524863,BG
+1383524096,1383524607,BG
+1383524608,1383524863,US
1383524864,1383525119,GB
1383525120,1383530495,BG
1383530496,1383538687,DE
@@ -32155,7 +32533,11 @@
1385676800,1385684991,RU
1385684992,1385824255,GB
1385824256,1385955327,PT
-1385955328,1386086399,NL
+1385955328,1385971711,CN
+1385971712,1385979903,NL
+1385979904,1385988095,CN
+1385988096,1385996287,NL
+1385996288,1386086399,CN
1386086400,1386217471,ES
1386217472,1386283007,PL
1386283008,1386348543,NL
@@ -32411,7 +32793,11 @@
1388807552,1388807615,DE
1388807616,1388807871,CH
1388807872,1388807935,DE
-1388807936,1388811775,CH
+1388807936,1388808287,CH
+1388808288,1388808295,US
+1388808296,1388809471,CH
+1388809472,1388809727,US
+1388809728,1388811775,CH
1388811776,1388812031,DE
1388812032,1388813247,CH
1388813248,1388813311,DE
@@ -32583,9 +32969,7 @@
1399259136,1399291903,IT
1399291904,1399324671,RO
1399324672,1399586815,GB
-1399586816,1399662079,NO
-1399662080,1399662335,BV
-1399662336,1399717887,NO
+1399586816,1399717887,NO
1399717888,1399848959,AE
1399848960,1400111103,FR
1400111104,1400274943,NL
@@ -32755,8 +33139,7 @@
1401935872,1401937919,FI
1401937920,1401939967,GB
1401939968,1401942015,UA
-1401942016,1401942047,CZ
-1401942048,1401942063,GB
+1401942016,1401942063,CZ
1401942064,1401942071,HU
1401942072,1401943295,GB
1401943296,1401943551,DE
@@ -32780,7 +33163,11 @@
1402142720,1402159103,ES
1402159104,1402175487,IT
1402175488,1402191871,IE
-1402191872,1402208255,IR
+1402191872,1402193919,IR
+1402193920,1402196991,SC
+1402196992,1402200063,IR
+1402200064,1402202111,SC
+1402202112,1402208255,IR
1402208256,1402224639,CZ
1402224640,1402241023,BG
1402241024,1402257407,GB
@@ -32922,7 +33309,9 @@
1403748352,1403764735,DE
1403781120,1403797503,RU
1403797504,1403813887,SE
-1403813888,1403830271,NL
+1403813888,1403827199,NL
+1403827200,1403828223,BE
+1403828224,1403830271,NL
1403830272,1403846655,CH
1403846656,1403863039,IS
1403863040,1403879423,FR
@@ -32971,9 +33360,9 @@
1404187536,1404187551,NL
1404187552,1404189183,SE
1404189184,1404189695,EE
-1404189696,1404194815,SE
-1404194816,1404198911,LT
-1404198912,1404200959,SE
+1404189696,1404196607,SE
+1404196608,1404196735,LT
+1404196736,1404200959,SE
1404200960,1404207103,HR
1404207104,1404222463,SE
1404222464,1404222975,LV
@@ -32999,14 +33388,12 @@
1404379136,1404383231,AT
1404383232,1404385279,HR
1404385280,1404386047,LT
-1404386048,1404386303,SE
-1404386304,1404420095,LT
+1404386048,1404387327,SE
+1404387328,1404420095,LT
1404420096,1404426502,HR
1404426503,1404426503,SE
1404426504,1404436479,HR
-1404436480,1404444671,SE
-1404444672,1404452863,LT
-1404452864,1404510207,SE
+1404436480,1404510207,SE
1404510208,1404518399,HR
1404518400,1404567551,SE
1404567552,1404600319,HR
@@ -33033,12 +33420,12 @@
1404862464,1404870655,HR
1404870656,1404872703,LT
1404872704,1404875775,SE
-1404875776,1404876799,LT
-1404876800,1404887039,SE
+1404875776,1404876287,LT
+1404876288,1404887039,SE
1404887040,1404911615,LT
1404911616,1404921855,NL
-1404921856,1404927999,LT
-1404928000,1404944383,SE
+1404921856,1404923903,LT
+1404923904,1404944383,SE
1404944384,1404960767,LT
1404960768,1404977151,SE
1404977152,1404993535,LT
@@ -33358,11 +33745,15 @@
1410221034,1410221034,AT
1410221035,1410221047,FR
1410221048,1410221055,AT
-1410221056,1410223367,FR
+1410221056,1410223103,FR
+1410223104,1410223359,IT
+1410223360,1410223367,FR
1410223368,1410223375,ES
1410223376,1410223391,FR
1410223392,1410223423,ES
-1410223424,1410225151,FR
+1410223424,1410223591,FR
+1410223592,1410223599,ES
+1410223600,1410225151,FR
1410225152,1410226175,DE
1410226176,1410231551,FR
1410231552,1410232319,US
@@ -33416,7 +33807,8 @@
1410555904,1410564095,GB
1410564096,1410567313,SE
1410567314,1410567314,CH
-1410567315,1410567320,SE
+1410567315,1410567315,BE
+1410567316,1410567320,SE
1410567321,1410567321,NO
1410567322,1410567322,FI
1410567323,1410567323,EE
@@ -33429,7 +33821,9 @@
1410568587,1410568587,NO
1410568588,1410568991,SE
1410568992,1410569007,NO
-1410569008,1410572287,SE
+1410569008,1410569484,SE
+1410569485,1410569485,NO
+1410569486,1410572287,SE
1410572288,1410588671,DE
1410588672,1410596863,GB
1410596864,1410605055,ES
@@ -33732,7 +34126,8 @@
1424642048,1424646143,DK
1424646144,1424647167,RO
1424647168,1424648191,IT
-1424648192,1424650239,UA
+1424648192,1424649215,MD
+1424649216,1424650239,UA
1424650240,1424654335,PL
1424654336,1424687103,NO
1424687104,1424711679,SA
@@ -33761,7 +34156,9 @@
1424962816,1424963071,RO
1424963072,1424963327,GB
1424963328,1424965631,RO
-1424965632,1424982015,FR
+1424965632,1424973823,FR
+1424973824,1424974847,CH
+1424974848,1424982015,FR
1424982016,1425014783,FI
1425014784,1425015295,LT
1425015296,1425015551,RU
@@ -34443,7 +34840,11 @@
1439375616,1439375871,KW
1439375872,1439376127,OM
1439376128,1439376383,SA
-1439376384,1439376639,US
+1439376384,1439376407,IT
+1439376408,1439376408,US
+1439376409,1439376421,IT
+1439376422,1439376422,US
+1439376423,1439376639,IT
1439376640,1439376895,NL
1439376896,1439377407,CN
1439377408,1439378431,IT
@@ -34924,7 +35325,9 @@
1449865216,1449865727,SE
1449865728,1449867263,RO
1449867264,1449867519,ES
-1449867520,1449869311,RO
+1449867520,1449868799,RO
+1449868800,1449869055,PL
+1449869056,1449869311,RO
1449869312,1449870335,MD
1449870336,1449871359,RO
1449871360,1449871615,GB
@@ -34940,7 +35343,9 @@
1449881088,1449883647,RO
1449883648,1449885695,BE
1449885696,1449886463,KZ
-1449886464,1449886719,RO
+1449886464,1449886536,RO
+1449886537,1449886537,KZ
+1449886538,1449886719,RO
1449886720,1449889791,KZ
1449889792,1449893887,IR
1449893888,1449895935,MD
@@ -34977,7 +35382,9 @@
1450065920,1450067135,DE
1450067136,1450067199,AT
1450067200,1450074111,DE
-1450074112,1450082303,RU
+1450074112,1450079711,RU
+1450079712,1450079712,GB
+1450079713,1450082303,RU
1450082304,1450090495,IT
1450090496,1450106879,RU
1450106880,1450115071,SK
@@ -35032,7 +35439,9 @@
1466040320,1466073087,EE
1466073088,1466086016,FR
1466086017,1466086017,ES
-1466086018,1466097919,FR
+1466086018,1466097759,FR
+1466097760,1466097791,CZ
+1466097792,1466097919,FR
1466097920,1466099711,ES
1466099712,1466101759,PL
1466101760,1466101951,FR
@@ -35113,23 +35522,17 @@
1467473920,1467482111,RU
1467482112,1467484927,BG
1467484928,1467485183,IL
-1467485184,1467502591,BG
-1467502592,1467503615,DE
-1467503616,1467525119,BG
+1467485184,1467507199,BG
+1467507200,1467507455,GB
+1467507456,1467525119,BG
1467525120,1467527167,DE
-1467527168,1467535359,BG
-1467535360,1467537407,DE
-1467537408,1467543551,BG
-1467543552,1467544575,DE
-1467544576,1467545599,BG
+1467527168,1467545599,BG
1467545600,1467546623,DE
1467546624,1467566079,BG
1467566080,1467567103,DE
1467567104,1467571199,BG
1467571200,1467572223,DE
-1467572224,1467582463,BG
-1467582464,1467584511,DE
-1467584512,1467593727,BG
+1467572224,1467593727,BG
1467593728,1467597823,DE
1467597824,1467613183,BG
1467613184,1467744255,DE
@@ -35255,8 +35658,7 @@
1475260416,1475262463,FR
1475262464,1475266559,DE
1475266560,1475268607,GB
-1475268608,1475269375,XK
-1475269376,1475270655,RS
+1475268608,1475270655,RS
1475270656,1475272703,GB
1475272704,1475274751,BE
1475274752,1475276799,RU
@@ -35420,31 +35822,7 @@
1475969024,1475977215,CZ
1475977216,1475985407,SE
1475985408,1476009983,RU
-1476009984,1476010047,RS
-1476010048,1476010111,XK
-1476010112,1476011327,RS
-1476011328,1476011775,XK
-1476011776,1476012095,RS
-1476012096,1476012176,XK
-1476012177,1476012177,RS
-1476012178,1476012221,XK
-1476012222,1476012222,RS
-1476012223,1476012238,XK
-1476012239,1476012239,RS
-1476012240,1476012250,XK
-1476012251,1476012251,RS
-1476012252,1476012255,XK
-1476012256,1476012256,RS
-1476012257,1476012278,XK
-1476012279,1476012279,RS
-1476012280,1476012287,XK
-1476012288,1476014079,RS
-1476014080,1476014127,XK
-1476014128,1476014135,RS
-1476014136,1476014591,XK
-1476014592,1476015871,RS
-1476015872,1476016127,XK
-1476016128,1476018175,RS
+1476009984,1476018175,RS
1476018176,1476026367,IT
1476026368,1476034559,BA
1476034560,1476042751,NL
@@ -35465,7 +35843,7 @@
1476149248,1476157439,NO
1476157440,1476159999,BH
1476160000,1476160511,IT
-1476160512,1476161535,BH
+1476160512,1476161535,PS
1476161536,1476163583,GB
1476163584,1476165119,DE
1476165120,1476165631,BH
@@ -35739,13 +36117,17 @@
1489694720,1489698815,GB
1489698816,1489731583,MT
1489731584,1489764351,BG
-1489764352,1489797119,RU
+1489764352,1489774591,RU
+1489774592,1489776639,DE
+1489776640,1489797119,RU
1489797120,1489829887,KZ
1489829888,1489855555,DE
1489855556,1489855559,US
1489855560,1489855807,DE
1489855808,1489855839,US
-1489855840,1489856527,DE
+1489855840,1489856415,DE
+1489856416,1489856419,US
+1489856420,1489856527,DE
1489856528,1489856543,US
1489856544,1489862655,DE
1489862656,1489928191,RU
@@ -36073,9 +36455,9 @@
1495351552,1495351807,MD
1495351808,1495352319,IQ
1495352320,1495352447,FR
-1495352448,1495352831,PL
+1495352448,1495352831,GB
1495352832,1495353087,FI
-1495353088,1495353343,PL
+1495353088,1495353343,GB
1495353344,1495360511,RO
1495360512,1495361535,IR
1495361536,1495362559,RO
@@ -36135,7 +36517,7 @@
1495425535,1495426047,GB
1495426048,1495426559,RO
1495426560,1495426815,GB
-1495426816,1495427071,RO
+1495426816,1495427071,PL
1495427072,1495427583,GB
1495427584,1495428095,RO
1495428096,1495428351,GB
@@ -36456,7 +36838,8 @@
1495767040,1495769343,ES
1495769344,1495769599,RO
1495769600,1495770623,NL
-1495770624,1495771135,RO
+1495770624,1495770879,RO
+1495770880,1495771135,ES
1495771136,1495772159,PL
1495772160,1495772671,US
1495772672,1495774207,RO
@@ -36476,7 +36859,8 @@
1495790080,1495790335,MD
1495790336,1495791359,RO
1495791360,1495791615,GB
-1495791616,1495793663,RO
+1495791616,1495793407,RO
+1495793408,1495793663,PL
1495793664,1495794687,DE
1495794688,1495795199,LT
1495795200,1495795327,FR
@@ -36498,7 +36882,7 @@
1495815168,1495816191,ES
1495816192,1495816703,RO
1495816704,1495817215,IR
-1495817216,1495817471,HK
+1495817216,1495817471,GB
1495817472,1495820799,RO
1495820800,1495821311,IR
1495821312,1495821823,DE
@@ -36566,7 +36950,8 @@
1495894528,1495896063,SY
1495896064,1495900159,RO
1495900160,1495902207,SE
-1495902208,1495906303,RO
+1495902208,1495903231,NL
+1495903232,1495906303,RO
1495906304,1495907327,IR
1495907328,1495907583,RO
1495907584,1495908351,GB
@@ -36673,7 +37058,7 @@
1496011776,1496012799,ES
1496012800,1496016895,IR
1496016896,1496018943,RO
-1496018944,1496019967,FR
+1496018944,1496019967,NL
1496019968,1496020735,CH
1496020736,1496020991,AU
1496020992,1496023039,DE
@@ -36710,7 +37095,9 @@
1496067072,1496068095,RO
1496068096,1496074239,ES
1496074240,1496075263,GR
-1496075264,1496079359,RO
+1496075264,1496076799,RO
+1496076800,1496077055,ES
+1496077056,1496079359,RO
1496079360,1496081407,GR
1496081408,1496082175,RO
1496082176,1496082431,GB
@@ -36771,7 +37158,8 @@
1496137728,1496138495,RO
1496138496,1496138751,BG
1496138752,1496139263,IR
-1496139264,1496141823,RO
+1496139264,1496139775,PL
+1496139776,1496141823,RO
1496141824,1496142335,IR
1496142336,1496142591,GB
1496142592,1496142847,RO
@@ -36811,8 +37199,10 @@
1496188928,1496189951,ES
1496189952,1496190975,RO
1496190976,1496193023,SE
-1496193024,1496196095,RO
-1496196096,1496196351,ES
+1496193024,1496195071,RO
+1496195072,1496195327,ES
+1496195328,1496195839,RO
+1496195840,1496196351,ES
1496196352,1496197119,RO
1496197120,1496197631,MD
1496197632,1496198143,RO
@@ -37307,7 +37697,9 @@
1506458246,1506458359,GB
1506458360,1506458367,CH
1506458368,1506459207,GB
-1506459208,1506459247,BE
+1506459208,1506459215,BE
+1506459216,1506459231,GB
+1506459232,1506459247,BE
1506459248,1506459295,GB
1506459296,1506459327,BE
1506459328,1506459763,GB
@@ -37789,7 +38181,8 @@
1518481408,1518493695,SE
1518493696,1518501887,LV
1518501888,1518503935,EE
-1518503936,1518510079,LT
+1518503936,1518505983,SE
+1518505984,1518510079,LT
1518510080,1518540543,SE
1518540544,1518540799,LT
1518540800,1518541479,SE
@@ -37817,25 +38210,30 @@
1518709553,1518709553,LT
1518709554,1518723071,LV
1518723072,1518731263,SE
-1518731264,1518780415,LT
+1518731264,1518755839,LT
+1518755840,1518759935,SE
+1518759936,1518780415,LT
1518780416,1518796799,HR
1518796800,1518862335,LT
1518862336,1518927871,SE
-1518927872,1518961663,LT
+1518927872,1518960639,LT
+1518960640,1518961663,SE
1518961664,1518962175,EE
1518962176,1518962687,LV
1518962688,1518966783,HR
1518966784,1518967807,SE
1518967808,1518977023,HR
1518977024,1518985215,LT
-1518985216,1518989311,SE
-1518989312,1519058943,LT
+1518985216,1518993407,SE
+1518993408,1519058943,LT
1519058944,1519083519,LV
1519083520,1519084879,SE
1519084880,1519084895,EE
1519084896,1519091711,SE
1519091712,1519124479,LV
-1519124480,1519198207,LT
+1519124480,1519194111,LT
+1519194112,1519196159,SE
+1519196160,1519198207,LT
1519198208,1519208703,SE
1519208704,1519209471,LV
1519209472,1519210495,SE
@@ -37927,7 +38325,9 @@
1532661760,1532665855,DE
1532665856,1532674047,PL
1532674048,1532675071,NL
-1532675072,1532682239,UA
+1532675072,1532681471,UA
+1532681472,1532681727,RU
+1532681728,1532682239,UA
1532682240,1532690431,LV
1532690432,1532755967,FR
1532755968,1532756223,GR
@@ -37940,9 +38340,7 @@
1532782848,1532784639,BG
1532784640,1532785151,NL
1532785152,1532785407,IR
-1532785408,1532785663,BG
-1532785664,1532786687,IT
-1532786688,1532786943,BG
+1532785408,1532786943,BG
1532786944,1532788735,IR
1532788736,1532788991,BG
1532788992,1532790783,IR
@@ -37950,7 +38348,8 @@
1532793088,1532794879,IR
1532794880,1532795903,US
1532795904,1532796927,IR
-1532796928,1532797951,BG
+1532796928,1532797439,BG
+1532797440,1532797951,IT
1532797952,1532798975,IR
1532798976,1532799999,BG
1532800000,1532801023,IR
@@ -38150,9 +38549,7 @@
1533886464,1533894655,RU
1533894656,1533896703,ES
1533896704,1533898751,IR
-1533898752,1533899775,PT
-1533899776,1533900031,GB
-1533900032,1533900799,PT
+1533898752,1533900799,GB
1533900800,1533902847,FR
1533902848,1533911039,RU
1533911040,1533913087,ES
@@ -38230,7 +38627,9 @@
1534717264,1534717267,ES
1534717268,1534717343,FR
1534717344,1534717359,GB
-1534717360,1534717739,FR
+1534717360,1534717583,FR
+1534717584,1534717587,CZ
+1534717588,1534717739,FR
1534717740,1534717743,GB
1534717744,1534717963,FR
1534717964,1534717967,PL
@@ -38381,9 +38780,7 @@
1535537344,1535537407,DE
1535537408,1535537535,FR
1535537536,1535537663,ES
-1535537664,1535537819,FR
-1535537820,1535537823,PL
-1535537824,1535537855,FR
+1535537664,1535537855,FR
1535537856,1535537919,IT
1535537920,1535538111,FR
1535538112,1535538175,FI
@@ -38678,10 +39075,7 @@
1536131072,1536143359,RU
1536143360,1536147455,GB
1536147456,1536151551,IT
-1536151552,1536152575,RS
-1536152576,1536152607,XK
-1536152608,1536155135,RS
-1536155136,1536155647,XK
+1536151552,1536155647,RS
1536155648,1536159743,IL
1536159744,1536163839,DE
1536163840,1536180223,SY
@@ -38705,22 +39099,10 @@
1536393216,1536409599,SA
1536409600,1536425983,HU
1536425984,1536442367,SK
-1536442368,1536445183,RS
-1536445184,1536448906,XK
-1536448907,1536448907,RS
-1536448908,1536450230,XK
-1536450231,1536450231,RS
-1536450232,1536450494,XK
-1536450495,1536450495,RS
-1536450496,1536450559,XK
-1536450560,1536453375,RS
-1536453376,1536453631,XK
-1536453632,1536453887,RS
-1536453888,1536453903,XK
-1536453904,1536456191,RS
-1536456192,1536456447,XK
-1536456448,1536458751,RS
-1536458752,1536475135,BG
+1536442368,1536458751,RS
+1536458752,1536459775,BG
+1536459776,1536460799,US
+1536460800,1536475135,BG
1536475136,1536476159,NL
1536476160,1536476671,GB
1536476672,1536479231,NL
@@ -38733,17 +39115,7 @@
1536524288,1536540671,BY
1536540672,1536557055,PL
1536557056,1536573439,FI
-1536573440,1536574463,RS
-1536574464,1536574719,XK
-1536574720,1536574975,RS
-1536574976,1536575615,XK
-1536575616,1536579071,RS
-1536579072,1536579327,XK
-1536579328,1536579583,RS
-1536579584,1536579839,XK
-1536579840,1536580351,RS
-1536580352,1536580607,XK
-1536580608,1536589823,RS
+1536573440,1536589823,RS
1536589824,1536614399,PL
1536614400,1536622591,DK
1536622592,1536626687,GB
@@ -38795,9 +39167,7 @@
1538990080,1538998271,CZ
1538998272,1539006463,AD
1539006464,1539014655,AL
-1539014656,1539019775,XK
-1539019776,1539020031,RS
-1539020032,1539022847,XK
+1539014656,1539022847,RS
1539022848,1539031039,LT
1539031040,1539039231,IT
1539039232,1539047423,PL
@@ -38878,9 +39248,12 @@
1539297280,1539301375,BG
1539301376,1539309567,RU
1539309568,1539310591,PL
+1539310592,1539311615,IQ
+1539311616,1539312639,GB
1539312640,1539313663,DE
1539313664,1539314687,GB
1539314688,1539315711,RU
+1539315712,1539316735,IT
1539316736,1539317759,SE
1539317760,1539318783,CZ
1539318784,1539319807,NL
@@ -38896,6 +39269,7 @@
1539330048,1539330303,RU
1539330304,1539330559,DE
1539330560,1539331071,RU
+1539331072,1539332095,NL
1539332096,1539333119,PL
1539333120,1539335167,RU
1539335168,1539336191,CH
@@ -38912,6 +39286,7 @@
1539348480,1539351551,UA
1539351552,1539352575,PL
1539352576,1539354623,RU
+1539354624,1539355647,LB
1539355648,1539357695,UA
1539357696,1539358719,RU
1539358720,1539359743,GB
@@ -38930,8 +39305,10 @@
1539373056,1539374079,PL
1539374080,1539375103,SE
1539375104,1539376127,NO
+1539376128,1539377151,RO
1539377152,1539378175,UA
1539378176,1539379199,PL
+1539379200,1539380223,MD
1539380224,1539381247,CH
1539381248,1539382271,RS
1539382272,1539383295,RO
@@ -38943,6 +39320,7 @@
1539387392,1539388415,IL
1539388416,1539389439,PL
1539389440,1539389951,FR
+1539390464,1539391487,GR
1539391488,1539392511,LV
1539392512,1539393535,UA
1539393536,1539393791,DE
@@ -38954,7 +39332,7 @@
1539397632,1539398143,RU
1539398144,1539398655,PL
1539398656,1539399679,ES
-1539399680,1539400703,PL
+1539399680,1539401727,PL
1539401728,1539402239,GB
1539402240,1539402751,FR
1539402752,1539403263,GB
@@ -38966,14 +39344,16 @@
1539410944,1539411967,RU
1539411968,1539412991,PL
1539412992,1539414015,RU
+1539414016,1539415039,ES
1539415040,1539416063,BG
1539416064,1539417087,PL
1539417088,1539418111,UA
1539418112,1539419135,RU
1539419136,1539420159,UA
-1539420160,1539421183,RU
+1539420160,1539422207,RU
1539422208,1539423231,PL
1539423232,1539424255,IE
+1539424256,1539425279,UA
1539425280,1539426303,PL
1539426304,1539427327,BG
1539427328,1539428351,UA
@@ -38982,6 +39362,7 @@
1539434496,1539435519,GB
1539435520,1539437567,RU
1539437568,1539438591,GB
+1539438592,1539439615,PL
1539439616,1539440639,UA
1539441152,1539441663,RU
1539441664,1539442175,IL
@@ -39004,6 +39385,7 @@
1539452416,1539452927,GB
1539452928,1539453439,CH
1539453440,1539453951,UA
+1539453952,1539454975,PT
1539454976,1539455487,UA
1539455488,1539455999,RU
1539456000,1539456511,FR
@@ -39058,6 +39440,7 @@
1539488256,1539488767,SE
1539488768,1539489279,PL
1539489280,1539489791,RU
+1539489792,1539490815,UA
1539490816,1539491327,CH
1539491328,1539491839,PL
1539491840,1539492351,RU
@@ -39114,6 +39497,7 @@
1539521024,1539521535,DK
1539521536,1539522047,RU
1539522048,1539522559,RO
+1539522560,1539523583,NL
1539523584,1539524095,UA
1539524096,1539524607,GB
1539524608,1539525119,FR
@@ -39198,8 +39582,10 @@
1539571712,1539572735,UA
1539572736,1539573759,RU
1539573760,1539575807,PL
+1539575808,1539576831,IT
1539579904,1539580927,RU
1539580928,1539581951,AM
+1539581952,1539582975,CZ
1539582976,1539583999,RO
1539584000,1539585023,PL
1539585024,1539586047,UA
@@ -39225,17 +39611,19 @@
1539611648,1539614719,UA
1539614720,1539615743,NL
1539615744,1539616767,DK
-1539616768,1539617791,UA
+1539616768,1539618815,UA
1539618816,1539619839,GB
1539619840,1539620863,RU
1539620864,1539622911,UA
+1539622912,1539623935,RO
1539623936,1539624959,DE
+1539624960,1539625983,ES
1539625984,1539627007,PL
1539629056,1539630079,BG
1539630080,1539631103,UA
-1539632128,1539633151,RU
+1539631104,1539633151,RU
1539633152,1539634175,SE
-1539634176,1539637247,RU
+1539634176,1539638271,RU
1539638272,1539639295,UA
1539639296,1539640319,RU
1539640320,1539641343,PL
@@ -39244,6 +39632,8 @@
1539643392,1539644415,UA
1539644416,1539645439,DE
1539645440,1539646463,GB
+1539646464,1539647487,RO
+1539647488,1539648511,TR
1539648512,1539649023,CY
1539649024,1539649535,LB
1539649536,1539650559,UA
@@ -39253,6 +39643,7 @@
1539652096,1539652607,UA
1539652608,1539653631,IL
1539653632,1539654655,RU
+1539654656,1539655679,UA
1539655680,1539656703,NL
1539656704,1539657727,RU
1539657728,1539658751,UA
@@ -39265,6 +39656,7 @@
1539664896,1539665919,BE
1539665920,1539666943,RU
1539666944,1539667967,CZ
+1539667968,1539668991,ES
1539668992,1539670015,RU
1539670016,1539672063,UA
1539672064,1539673087,FR
@@ -39276,13 +39668,17 @@
1539680256,1539681279,UA
1539681280,1539684351,RU
1539684352,1539685375,UA
-1539685376,1539690495,RU
+1539685376,1539687423,RU
+1539687424,1539688447,MD
+1539688448,1539689471,PL
+1539689472,1539690495,RU
1539690496,1539691519,FI
1539691520,1539692543,RU
1539692544,1539694591,UA
1539694592,1539695615,PL
1539695616,1539696639,GB
1539697664,1539698687,UA
+1539698688,1539699711,ES
1539699712,1539700735,RO
1539700736,1539701759,DK
1539701760,1539702783,UA
@@ -39434,7 +39830,7 @@
1539745792,1539746303,DK
1539747072,1539747327,CH
1539747328,1539747583,NL
-1539747584,1539747839,UA
+1539747584,1539747839,RU
1539747840,1539748095,NO
1539748096,1539748351,PL
1539748352,1539748607,NL
@@ -39731,8 +40127,10 @@
1539855104,1539855231,US
1539855232,1539855359,UA
1539855360,1539856383,RU
+1539856384,1539857407,GB
1539857408,1539858431,PL
1539858432,1539859455,RO
+1539859456,1539860479,DE
1539860480,1539861503,PL
1539861504,1539862527,DE
1539862528,1539863551,UA
@@ -39744,13 +40142,16 @@
1539868672,1539869695,RU
1539869696,1539870719,ES
1539870720,1539871743,IL
+1539871744,1539872767,GB
1539872768,1539873791,SE
1539873792,1539875839,UA
1539875840,1539876863,RU
1539876864,1539877887,ES
1539877888,1539878911,PL
+1539878912,1539879935,GB
1539879936,1539880959,UA
1539880960,1539881983,PL
+1539881984,1539883007,NL
1539883008,1539884031,RS
1539884032,1539885055,MT
1539885056,1539886079,UA
@@ -39763,7 +40164,9 @@
1539893248,1539894271,UA
1539894272,1539895295,PL
1539897344,1539898367,UA
+1539898368,1539899391,LT
1539899392,1539900415,RU
+1539900416,1539901439,GB
1539901440,1539902463,RU
1539902464,1539903487,LV
1539903488,1539904511,PL
@@ -39771,25 +40174,32 @@
1539905536,1539905791,RU
1539905792,1539906047,UA
1539906048,1539906559,RU
+1539906560,1539907583,DE
+1539907584,1539908607,CZ
1539908608,1539909631,UA
1539909632,1539910655,RU
1539910656,1539911679,PL
1539911680,1539913727,RU
1539913728,1539914751,CH
1539914752,1539915775,SE
+1539915776,1539916799,IT
1539916800,1539917823,UA
1539917824,1539918847,RU
1539918848,1539920895,RO
1539920896,1539921919,UA
1539921920,1539922943,PL
1539922944,1539923967,SE
+1539923968,1539924991,GE
1539924992,1539926015,DE
+1539926016,1539927039,GB
1539927040,1539928063,UA
1539928064,1539930111,RU
1539930112,1539931135,PL
+1539931136,1539932159,NL
1539932160,1539933183,DE
1539933184,1539934207,ES
1539934208,1539935231,RS
+1539935232,1539936255,GB
1539936256,1539937279,UA
1539937280,1539938303,CH
1539938304,1539939327,PL
@@ -39802,7 +40212,7 @@
1539946496,1539947519,RU
1539947520,1539948543,UA
1539948544,1539949567,RO
-1539950592,1539950847,GB
+1539949568,1539950847,GB
1539950848,1539951103,RU
1539951104,1539951615,UA
1539951616,1539953663,RU
@@ -39818,7 +40228,9 @@
1539964928,1539965951,UA
1539965952,1539966975,RU
1539966976,1539967999,UA
-1539968000,1539973119,RU
+1539968000,1539972095,RU
+1539972096,1539973119,GB
+1539973120,1539974143,BE
1539974144,1539975167,RU
1539975168,1539976191,DE
1539976192,1539977215,RU
@@ -39867,6 +40279,8 @@
1540024320,1540025343,RU
1540025344,1540026367,GB
1540026368,1540027391,UA
+1540027392,1540028415,RU
+1540028416,1540029439,SA
1540029440,1540031487,RU
1540031488,1540032511,UA
1540032512,1540033535,RU
@@ -39886,9 +40300,12 @@
1540046848,1540047871,RU
1540047872,1540048895,LV
1540048896,1540049919,GB
+1540049920,1540050943,NL
1540050944,1540052991,RU
1540052992,1540054015,UA
+1540054016,1540055039,FR
1540055424,1540055551,NO
+1540056064,1540057087,DE
1540057088,1540057343,PL
1540057344,1540057599,RU
1540057600,1540057855,US
@@ -39917,6 +40334,7 @@
1540085760,1540087807,PL
1540087808,1540088575,RU
1540088576,1540088831,KZ
+1540088832,1540089855,DE
1540089856,1540092927,RU
1540092928,1540094975,PL
1540094976,1540095999,RU
@@ -39942,6 +40360,7 @@
1540124672,1540125695,UA
1540125696,1540126719,FR
1540126720,1540127743,UA
+1540127744,1540128767,ES
1540128768,1540129791,RU
1540129792,1540130815,UA
1540130816,1540131839,RU
@@ -39964,9 +40383,12 @@
1540149248,1540150271,GB
1540150272,1540151295,UA
1540151296,1540152319,AT
+1540152320,1540153343,DE
+1540153344,1540154367,NL
1540154368,1540156415,RU
1540156416,1540157439,UZ
1540157440,1540159487,RU
+1540159488,1540160511,IT
1540160512,1540162559,RU
1540162560,1540163583,UA
1540163584,1540164607,RU
@@ -39990,6 +40412,7 @@
1540182016,1540183039,IT
1540183040,1540184063,RU
1540184064,1540185087,PL
+1540185088,1540186111,CZ
1540186112,1540187135,NL
1540187136,1540188159,US
1540190208,1540191231,PT
@@ -40006,8 +40429,10 @@
1540205568,1540206591,DE
1540206592,1540208639,RU
1540208640,1540209663,NO
+1540209664,1540210687,RU
1540210688,1540211455,NL
1540211456,1540211711,CZ
+1540211712,1540212735,AM
1540212736,1540213759,RU
1540213760,1540214783,UA
1540214784,1540215807,RU
@@ -40196,6 +40621,10 @@
1540334592,1540335103,RU
1540335104,1540336127,PL
1540336128,1540336639,RU
+1540336640,1540336895,DE
+1540336896,1540337151,SG
+1540337152,1540337407,JP
+1540337408,1540337663,US
1540337664,1540338175,FR
1540338688,1540339199,RU
1540339200,1540339711,UA
@@ -40658,13 +41087,16 @@
1540500480,1540501503,RU
1540501504,1540502527,PL
1540502528,1540503551,RU
+1540503552,1540504575,DK
1540504576,1540505599,SE
1540506624,1540507647,GB
1540507648,1540508671,RU
+1540508672,1540509695,MD
1540509696,1540510719,RO
1540510720,1540511743,RU
1540511744,1540512767,BG
1540512768,1540514815,RU
+1540514816,1540515839,GB
1540515840,1540516863,RU
1540516864,1540517887,UA
1540517888,1540518911,RU
@@ -40690,11 +41122,13 @@
1540543488,1540544511,DE
1540544512,1540545535,RU
1540545536,1540546559,AT
+1540546560,1540547583,DE
1540547584,1540548607,RU
1540548608,1540549631,IE
1540549632,1540552703,PL
1540552704,1540553727,UA
1540553728,1540554751,RU
+1540554752,1540555775,LT
1540555776,1540556799,UZ
1540556800,1540557823,DE
1540557824,1540558848,UA
@@ -40705,10 +41139,12 @@
1540566016,1540567039,RU
1540567040,1540568063,MD
1540568064,1540571135,RU
+1540571136,1540572159,FR
1540572160,1540573183,UA
1540573184,1540574207,NL
1540574208,1540576255,RU
1540576256,1540577279,PL
+1540577280,1540578303,UA
1540578304,1540579327,RU
1540579328,1540580351,IE
1540580352,1540581375,PL
@@ -40719,24 +41155,28 @@
1540586496,1540588543,RU
1540588544,1540589567,UA
1540590592,1540593663,RU
+1540593664,1540594687,GB
1540594688,1540595711,IT
+1540595712,1540596735,NL
1540596736,1540597759,FR
1540597760,1540598783,SE
1540598784,1540600831,UA
1540600832,1540602879,RU
1540602880,1540603903,BG
1540603904,1540604927,RU
+1540604928,1540605951,AT
1540605952,1540606975,MD
1540606976,1540607999,UA
1540608000,1540609023,RU
1540609024,1540610047,UA
1540610048,1540611071,RU
-1540611072,1540612095,PL
+1540611072,1540613119,PL
1540613120,1540614143,RU
1540614144,1540615167,BG
1540615168,1540616191,RU
1540616192,1540617215,AT
1540617216,1540618239,LT
+1540618240,1540619263,NL
1540619264,1540620287,PL
1540620288,1540620543,NL
1540620544,1540620799,LB
@@ -41163,18 +41603,20 @@
1540756480,1540757503,DK
1540757504,1540758527,PL
1540758528,1540759551,UA
-1540760576,1540761599,PL
+1540759552,1540761599,PL
1540761600,1540762623,EE
1540762624,1540763647,LU
1540763648,1540764671,UA
1540764672,1540765695,PL
1540765696,1540766719,RU
1540766720,1540767743,IT
+1540767744,1540768767,DE
1540768768,1540769791,RU
1540769792,1540770815,IT
1540770816,1540771839,RU
1540771840,1540773887,UA
1540773888,1540774911,SE
+1540774912,1540775935,DE
1540775936,1540776959,RU
1540776960,1540777983,IL
1540777984,1540779007,HR
@@ -41183,6 +41625,7 @@
1540781056,1540783103,RU
1540783104,1540787199,UA
1540787200,1540789247,RU
+1540789248,1540790271,NL
1540790272,1540791295,KW
1540791296,1540792319,CZ
1540792320,1540793343,UA
@@ -41201,6 +41644,7 @@
1540803584,1540804607,RU
1540804608,1540805631,UA
1540805632,1540806655,RU
+1540806656,1540807679,NL
1540807680,1540809727,RU
1540809728,1540810751,GB
1540810752,1540811775,UA
@@ -41218,7 +41662,8 @@
1540825088,1540826111,PL
1540826112,1540828159,RU
1540828160,1540829183,PL
-1540829184,1540833279,UA
+1540829184,1540830207,ES
+1540830208,1540833279,UA
1540833280,1540834303,ES
1540834304,1540835327,UA
1540835328,1540836351,DE
@@ -41653,14 +42098,19 @@
1541014528,1541015551,AM
1541015552,1541016575,RU
1541016576,1541018623,UA
+1541018624,1541019647,GB
1541019648,1541020671,RU
1541020672,1541022719,UA
+1541022720,1541023417,GB
1541023418,1541023418,UA
+1541023419,1541023743,GB
1541023744,1541024767,RU
1541024768,1541025791,UA
1541025792,1541026815,RU
1541026816,1541027839,LV
+1541027840,1541028863,GB
1541028864,1541029887,PL
+1541029888,1541030911,DE
1541030912,1541031935,PL
1541031936,1541032959,UA
1541032960,1541033983,PL
@@ -42580,6 +43030,7 @@
1541557504,1541557759,SI
1541558016,1541558271,HU
1541558272,1541559295,RU
+1541559296,1541560319,GB
1541560320,1541561343,DE
1541561344,1541562367,RU
1541562624,1541562879,UA
@@ -42825,7 +43276,7 @@
1541710848,1541711871,SK
1541711872,1541712127,FR
1541712128,1541712383,TR
-1541712384,1541712895,DE
+1541712384,1541713919,DE
1541713920,1541714175,NL
1541714176,1541716223,RU
1541716224,1541716479,PL
@@ -42899,6 +43350,7 @@
1541753088,1541753343,GB
1541753344,1541753855,RU
1541753856,1541754879,UA
+1541754880,1541755903,CH
1541755904,1541757439,PL
1541757952,1541758207,GB
1541758208,1541758463,HU
@@ -42917,6 +43369,7 @@
1541766144,1541767167,GB
1541767168,1541767679,UA
1541767680,1541768191,FR
+1541768192,1541769215,BG
1541769216,1541769471,FR
1541769472,1541770239,FI
1541770240,1541770495,CH
@@ -43043,7 +43496,7 @@
1541831680,1541832191,SA
1541832192,1541833983,SE
1541833984,1541834239,RU
-1541834496,1541834751,RU
+1541834496,1541835775,RU
1541835776,1541836287,CH
1541836288,1541836543,AT
1541836800,1541837055,CZ
@@ -43183,6 +43636,7 @@
1541913088,1541914623,RU
1541914624,1541915647,IL
1541915648,1541916671,RU
+1541916672,1541917695,AM
1541917696,1541917951,CH
1541917952,1541918207,PL
1541918208,1541918463,UA
@@ -43319,7 +43773,7 @@
1541998336,1541998591,AT
1541998592,1541999615,DE
1541999616,1542000127,AT
-1542000128,1542000383,NO
+1542000128,1542000383,SJ
1542000384,1542000639,GE
1542000640,1542000895,GB
1542000896,1542001151,UA
@@ -44050,7 +44504,7 @@
1542437376,1542437631,NL
1542437632,1542437887,CZ
1542437888,1542438399,SE
-1542438400,1542438655,UA
+1542438400,1542438655,SC
1542438656,1542438911,RU
1542438912,1542439167,KZ
1542439168,1542439423,SI
@@ -44227,6 +44681,7 @@
1542531840,1542532095,RU
1542532096,1542532351,DE
1542532352,1542533119,RU
+1542533120,1542534143,TR
1542534144,1542534399,DE
1542534400,1542534655,HR
1542534656,1542535167,DE
@@ -44493,15 +44948,17 @@
1546018304,1546018815,FR
1546018816,1546027007,UA
1546027008,1546028031,RU
-1546028032,1546028543,LU
+1546028032,1546028543,US
1546028544,1546029055,KR
1546029056,1546031103,RU
-1546031104,1546035199,LU
+1546031104,1546032639,LU
+1546032640,1546033151,BR
+1546033152,1546035199,LU
1546035200,1546035711,RU
1546035712,1546036223,LU
1546036224,1546037247,KR
-1546037248,1546037759,US
-1546037760,1546059775,RU
+1546037248,1546038271,US
+1546038272,1546059775,RU
1546059776,1546063871,SE
1546063872,1546067967,DE
1546067968,1546072063,SE
@@ -44979,8 +45436,7 @@
1558138880,1558139135,RU
1558139136,1558139391,NL
1558139392,1558139647,US
-1558139648,1558139903,LU
-1558139904,1558140159,DE
+1558139648,1558140159,LU
1558140160,1558140671,SG
1558140672,1558141183,LU
1558141184,1558141184,CY
@@ -45086,7 +45542,7 @@
1559663616,1559665663,RU
1559665664,1559666687,IR
1559666688,1559683071,RU
-1559683072,1559691263,IE
+1559683072,1559691263,GB
1559691264,1559756799,BG
1559756800,1559789567,AT
1559789568,1559822335,RU
@@ -45133,8 +45589,10 @@
1560215552,1560281087,RU
1560281088,1562378239,FR
1562378240,1564999679,IT
-1564999680,1565223935,UA
-1565223936,1565229055,BG
+1564999680,1565224191,UA
+1565224192,1565224959,BG
+1565224960,1565227007,UA
+1565227008,1565229055,BG
1565229056,1565368319,UA
1565368320,1565376511,RU
1565376512,1565523967,UA
@@ -45405,7 +45863,8 @@
1567693824,1567696383,RO
1567696384,1567696639,FR
1567696640,1567696895,ES
-1567696896,1567698175,RO
+1567696896,1567697919,RO
+1567697920,1567698175,PL
1567698176,1567698431,SE
1567698432,1567698687,IT
1567698688,1567698943,RO
@@ -45430,7 +45889,8 @@
1567717376,1567718399,GR
1567718400,1567719167,RO
1567719168,1567719423,GB
-1567719424,1567720191,RO
+1567719424,1567719935,RO
+1567719936,1567720191,PL
1567720192,1567720447,NO
1567720448,1567721471,RO
1567721472,1567723519,ES
@@ -45507,9 +45967,7 @@
1567820288,1567820543,TR
1567820544,1567820799,LT
1567820800,1567823871,RO
-1567823872,1567825559,LT
-1567825560,1567825567,CA
-1567825568,1567825919,LT
+1567823872,1567825919,LT
1567825920,1567826175,RO
1567826176,1567826431,DE
1567826432,1567827455,RO
@@ -45592,7 +46050,8 @@
1568059392,1568060415,MD
1568060416,1568062463,IR
1568062464,1568063487,MD
-1568063488,1568083967,RO
+1568063488,1568079871,RO
+1568079872,1568083967,NL
1568083968,1568084223,CN
1568084224,1568084991,ES
1568084992,1568086015,CN
@@ -45674,7 +46133,8 @@
1570609152,1570611199,PL
1570611200,1570619391,RU
1570619392,1570621439,BA
-1570621440,1570623231,RU
+1570621440,1570621951,DE
+1570621952,1570623231,RU
1570623232,1570623487,DE
1570623488,1570625535,RU
1570625536,1570627583,GB
@@ -45772,7 +46232,9 @@
1571456512,1571456767,CZ
1571456768,1571457023,UA
1571457024,1571457535,CZ
-1571457536,1571458559,RU
+1571457536,1571458185,RU
+1571458186,1571458186,UA
+1571458187,1571458559,RU
1571458560,1571458815,CZ
1571458816,1571459071,BY
1571459072,1571463167,UA
@@ -45995,8 +46457,7 @@
1572347904,1572351999,FR
1572352000,1572356095,DE
1572356096,1572360191,SK
-1572360192,1572362751,XK
-1572362752,1572364287,RS
+1572360192,1572364287,RS
1572364288,1572368383,NL
1572368384,1572372479,NO
1572372480,1572376575,DE
@@ -46241,7 +46702,9 @@
1578588160,1578590207,PL
1578590208,1578590283,FR
1578590284,1578590287,GB
-1578590288,1578590787,FR
+1578590288,1578590639,FR
+1578590640,1578590647,CZ
+1578590648,1578590787,FR
1578590788,1578590791,ES
1578590792,1578590815,FR
1578590816,1578590831,GB
@@ -46288,9 +46751,7 @@
1578592804,1578592807,PL
1578592808,1578593023,FR
1578593024,1578593279,DE
-1578593280,1578593319,FR
-1578593320,1578593323,PT
-1578593324,1578593375,FR
+1578593280,1578593375,FR
1578593376,1578593407,GB
1578593408,1578593439,FR
1578593440,1578593443,ES
@@ -46306,7 +46767,9 @@
1578594056,1578594059,ES
1578594060,1578594063,FR
1578594064,1578594079,PL
-1578594080,1578594271,FR
+1578594080,1578594087,FR
+1578594088,1578594095,CZ
+1578594096,1578594271,FR
1578594272,1578594303,BE
1578594304,1578594307,FR
1578594308,1578594311,FI
@@ -46437,8 +46900,7 @@
1578638336,1578638591,PL
1578638592,1578638847,RO
1578638848,1578639359,US
-1578639360,1578640383,ES
-1578640896,1578643455,ES
+1578639360,1578643455,ES
1578643456,1578645503,RO
1578645504,1578647551,AT
1578647552,1578649599,US
@@ -46960,15 +47422,9 @@
1587175424,1587177471,PL
1587177472,1587179519,RS
1587200000,1587216383,UA
-1587216384,1587289087,BG
-1587289088,1587290111,DE
-1587290112,1587322367,BG
+1587216384,1587322367,BG
1587322368,1587322623,RS
-1587322624,1587334143,BG
-1587334144,1587335167,DE
-1587335168,1587340287,BG
-1587340288,1587341311,DE
-1587341312,1587347455,BG
+1587322624,1587347455,BG
1587347456,1587412991,NL
1587412992,1587417087,RU
1587421184,1587425279,UA
@@ -47000,7 +47456,9 @@
1588617728,1588618239,BE
1588618240,1588619775,RO
1588619776,1588620287,SG
-1588620288,1588621311,RO
+1588620288,1588620543,RO
+1588620544,1588620799,PL
+1588620800,1588621311,RO
1588621312,1588625407,MD
1588625408,1588626175,RO
1588626176,1588626431,IT
@@ -47020,8 +47478,7 @@
1588642560,1588642815,NL
1588642816,1588643071,RO
1588643072,1588643327,NL
-1588643328,1588643583,BG
-1588643584,1588643839,DE
+1588643328,1588643839,DE
1588643840,1588645887,RO
1588645888,1588646399,GB
1588646400,1588649983,RO
@@ -47049,7 +47506,8 @@
1588674304,1588674559,NL
1588674560,1588674815,RO
1588674816,1588675071,GB
-1588675072,1588675583,RO
+1588675072,1588675327,RO
+1588675328,1588675583,PL
1588675584,1588676607,IT
1588676608,1588678655,IR
1588678656,1588680703,RO
@@ -47288,11 +47746,12 @@
1592459264,1592524799,TR
1592524800,1592557567,GB
1592557568,1592590335,BG
-1592590336,1592594431,FI
-1592594432,1592598527,DE
+1592590336,1592596479,FI
+1592596480,1592598527,DE
1592598528,1592600575,FI
-1592600576,1592601599,NL
-1592601600,1592606719,FI
+1592600576,1592602623,NL
+1592602624,1592604671,GB
+1592604672,1592606719,FI
1592606720,1592608767,SG
1592608768,1592610815,FI
1592610816,1592612863,DE
@@ -47320,11 +47779,16 @@
1593081856,1593098239,UA
1593098240,1593114623,CH
1593114624,1593131007,SE
-1593131008,1593132287,GB
+1593131008,1593131023,CH
+1593131024,1593131039,SE
+1593131040,1593131263,GB
+1593131264,1593132031,CH
+1593132032,1593132287,GB
1593132288,1593132543,AT
1593132544,1593133823,GB
1593133824,1593134591,AT
-1593134592,1593135359,GB
+1593134592,1593135103,SE
+1593135104,1593135359,GB
1593135360,1593135615,IE
1593135616,1593136639,GB
1593136640,1593139199,IE
@@ -47441,7 +47905,7 @@
1596859392,1596860415,CZ
1596860416,1596861439,RU
1596861440,1596861951,UA
-1596861952,1596862207,CZ
+1596861952,1596862207,BY
1596862208,1596866559,RU
1596866560,1596868607,UZ
1596868608,1596869631,RU
@@ -47528,7 +47992,7 @@
1596958464,1596958719,UA
1596958720,1596959231,CZ
1596959232,1596959743,RU
-1596959744,1596959999,CZ
+1596959744,1596959999,UA
1596960000,1596960255,RU
1596960256,1596960767,CZ
1596960768,1596961279,RU
@@ -48161,9 +48625,13 @@
1607657472,1607659519,IT
1607659520,1607661567,FR
1607661568,1607663615,IT
-1607663616,1607729151,NL
-1607729152,1607770111,SY
-1607770112,1607774207,EG
+1607663616,1607701433,NL
+1607701434,1607701434,RS
+1607701435,1607729151,NL
+1607729152,1607770112,SY
+1607770113,1607773183,EG
+1607773184,1607773184,SY
+1607773185,1607774207,EG
1607774208,1607786495,SY
1607786496,1607794687,EG
1607794688,1607860223,RU
@@ -48173,15 +48641,18 @@
1607929856,1607930879,SE
1607930880,1607933951,PL
1607933952,1607934975,DE
-1607934976,1607937023,UA
+1607934976,1607935999,RU
+1607936000,1607937023,UA
1607937024,1607938047,SE
1607938048,1607939071,UA
1607939072,1607940095,PL
1607940096,1607941119,RU
1607941120,1607942143,ES
-1607942144,1607944191,RU
+1607942144,1607943167,PL
+1607943168,1607944191,RU
1607944192,1607945215,FR
1607945216,1607946239,PL
+1607946240,1607947263,CZ
1607947264,1607948287,RU
1607948288,1607949311,GB
1607949312,1607950335,UA
@@ -48189,9 +48660,11 @@
1607952384,1607953407,UA
1607953408,1607956479,RU
1607956480,1607957503,ES
+1607957504,1607958527,RU
1607958528,1607959551,PS
1607959552,1607960575,EE
1607960576,1607961599,RU
+1607961600,1607962623,LT
1607962624,1607963647,UA
1607963648,1607965695,RU
1607965696,1607966719,UA
@@ -48354,9 +48827,16 @@
1654582016,1654582271,CN
1654582272,1654595583,US
1654595584,1654596095,CA
-1654596096,1654648831,US
+1654596096,1654596215,US
+1654596216,1654596223,IS
+1654596224,1654596983,US
+1654596984,1654596991,ES
+1654596992,1654648831,US
1654648832,1654652927,CA
-1654652928,1666731329,US
+1654652928,1666121727,US
+1666121728,1666187263,CA
+1666187264,1666318335,IE
+1666318336,1666731329,US
1666731330,1666731330,FR
1666731331,1673527295,US
1673527296,1673560063,CA
@@ -48551,13 +49031,22 @@
1721656832,1721761791,TN
1721761792,1722023935,MU
1722023936,1722032127,ZA
+1722035200,1722036223,NG
1722036224,1722040319,KE
1722040320,1722044415,ZA
1722048512,1722050559,LY
1722050560,1722052607,ZA
+1722052608,1722053119,TN
+1722053120,1722053631,EG
1722054656,1722054911,UG
+1722054912,1722055167,ZA
+1722055168,1722055423,EG
+1722055424,1722055679,GH
+1722055680,1722056703,GA
+1722056704,1722073087,SN
1722073088,1722081279,ZA
1722081280,1722085375,TG
+1722086400,1722087423,TD
1722089472,1722114047,ZA
1722114048,1722118143,ML
1722118144,1722119167,ZW
@@ -49355,8 +49844,7 @@
1728892928,1728893439,BN
1728893440,1728893695,SG
1728893696,1728893951,IN
-1728893952,1728894463,US
-1728894464,1728894975,SG
+1728893952,1728894975,US
1728894976,1728895999,HK
1728896000,1728897023,ID
1728898048,1728899071,BD
@@ -49387,7 +49875,7 @@
1728922101,1728922101,DE
1728922102,1728922623,AF
1728922624,1728923647,AU
-1728923648,1728924159,CN
+1728923648,1728924159,HK
1728924160,1728924671,MY
1728924672,1728925695,VN
1728925696,1728927743,AU
@@ -49660,7 +50148,7 @@
1729166848,1729167359,HK
1729167360,1729168383,IN
1729169408,1729170431,TW
-1729170432,1729170687,HK
+1729170432,1729170687,WS
1729170688,1729171199,CN
1729171200,1729171455,IN
1729171456,1729171967,AU
@@ -51043,8 +51531,7 @@
1730895872,1730898943,CN
1730898944,1730899967,MO
1730899968,1730900991,IN
-1730900992,1730901247,AU
-1730901248,1730901503,SG
+1730900992,1730901503,AU
1730901504,1730901759,DE
1730901760,1730902015,AU
1730902016,1730903039,KR
@@ -51495,8 +51982,7 @@
1731505152,1731507199,CN
1731507200,1731508223,IN
1731508224,1731509247,CN
-1731509248,1731510015,HK
-1731510016,1731510271,AU
+1731509248,1731510271,HK
1731510272,1731510527,MY
1731510528,1731510783,AU
1731510784,1731511295,IN
@@ -51508,7 +51994,7 @@
1731515648,1731515903,ID
1731515904,1731516159,HK
1731516160,1731516415,US
-1731516416,1731517439,HK
+1731516416,1731517439,CA
1731517440,1731519487,IN
1731519488,1731520511,MM
1731520512,1731523583,JP
@@ -51587,7 +52073,8 @@
1731607552,1731608575,CN
1731608576,1731609599,IN
1731609600,1731610623,AU
-1731610624,1731611647,KR
+1731610624,1731611391,KR
+1731611392,1731611647,JP
1731611648,1731612671,PK
1731613696,1731614719,PH
1731614720,1731615743,JP
@@ -51641,9 +52128,7 @@
1731666688,1731666943,KR
1731666944,1731667967,ID
1731667968,1731668991,IN
-1731668992,1731669786,AU
-1731669787,1731669787,GS
-1731669788,1731669927,AU
+1731668992,1731669927,AU
1731669928,1731669928,CC
1731669929,1731670015,AU
1731670016,1731671039,TL
@@ -51791,8 +52276,7 @@
1731828736,1731829759,SG
1731829760,1731830783,IN
1731830784,1731831039,SG
-1731831040,1731831551,AU
-1731831552,1731831807,SG
+1731831040,1731831807,AU
1731831808,1731832831,PK
1731832832,1731836927,IN
1731836928,1731837439,MY
@@ -52160,15 +52644,11 @@
1732424752,1732424755,CN
1732424756,1732424767,HK
1732424768,1732424831,CN
-1732424832,1732424839,HK
-1732424840,1732424847,CN
-1732424848,1732424855,HK
-1732424856,1732424879,CN
+1732424832,1732424863,HK
+1732424864,1732424879,CN
1732424880,1732424919,HK
1732424920,1732424927,CN
-1732424928,1732424935,HK
-1732424936,1732424943,CN
-1732424944,1732424991,HK
+1732424928,1732424991,HK
1732424992,1732425015,CN
1732425016,1732425727,HK
1732425728,1732426751,KH
@@ -52452,7 +52932,7 @@
1732771584,1732771839,ID
1732771840,1732772863,PK
1732772864,1732773119,SG
-1732773120,1732773375,MY
+1732773120,1732773375,US
1732773376,1732774911,IN
1732774912,1732786175,CN
1732786176,1732791295,IN
@@ -52850,7 +53330,8 @@
1733224448,1733225471,ID
1733225472,1733226751,IN
1733226752,1733227007,AU
-1733227008,1733227519,MY
+1733227008,1733227263,MY
+1733227264,1733227519,HK
1733227520,1733228543,IN
1733228544,1733230591,BD
1733230592,1733231615,IN
@@ -52866,7 +53347,7 @@
1733238784,1733239807,IN
1733239808,1733242879,CN
1733242880,1733243903,JP
-1733244928,1733249023,CN
+1733243904,1733249023,CN
1733249024,1733249279,AU
1733249280,1733249791,IN
1733249792,1733250047,AU
@@ -53007,7 +53488,9 @@
1733396736,1733396991,IN
1733396992,1733397247,ID
1733397248,1733397503,IN
-1733397504,1733399551,JP
+1733397504,1733398015,JP
+1733398016,1733398271,AE
+1733398272,1733399551,JP
1733399552,1733400575,CN
1733400576,1733402879,IN
1733402880,1733403135,AU
@@ -54176,7 +54659,9 @@
1734639616,1734641663,ID
1734641664,1734642175,PH
1734642176,1734642687,HK
-1734642688,1734644735,CN
+1734642688,1734643199,CN
+1734643200,1734643711,HK
+1734643712,1734644735,CN
1734644736,1734645247,AU
1734645248,1734645759,IN
1734645760,1734647807,HK
@@ -54309,7 +54794,7 @@
1734748672,1734749183,BD
1734749184,1734749439,HK
1734749440,1734749695,GI
-1734749696,1734749951,HK
+1734749696,1734749951,SG
1734749952,1734750207,GI
1734750208,1734750719,HK
1734750720,1734751487,NZ
@@ -54515,10 +55000,8 @@
1734940672,1734943743,ID
1734943744,1734946815,IN
1734946816,1734947071,GB
-1734947072,1734947377,US
-1734947378,1734947378,GB
-1734947379,1734947583,US
-1734947584,1734947839,GB
+1734947072,1734947327,US
+1734947328,1734947839,GB
1734947840,1734948863,ID
1734948864,1734950911,CN
1734950912,1734952959,ID
@@ -54552,9 +55035,7 @@
1734971392,1734973439,AU
1734973440,1734974463,IN
1734974464,1734976511,KR
-1734976512,1734976767,PK
-1734976768,1734977023,JP
-1734977024,1734977535,PK
+1734976512,1734977535,PK
1734977536,1734978559,AU
1734978560,1734979583,MM
1734979584,1734980607,IN
@@ -54727,7 +55208,7 @@
1735144448,1735145471,CN
1735145472,1735146495,IN
1735146496,1735147519,BD
-1735147520,1735148543,HK
+1735147520,1735148543,CN
1735148544,1735149567,AU
1735149568,1735153151,IN
1735153152,1735153407,AU
@@ -54876,7 +55357,7 @@
1735284736,1735285759,ID
1735285760,1735286783,CN
1735286784,1735287807,BD
-1735287808,1735288831,HK
+1735287808,1735288831,CN
1735288832,1735289855,IN
1735289856,1735290111,AU
1735290112,1735290879,MV
@@ -54992,9 +55473,156 @@
1735420672,1735420927,KH
1735420928,1735423999,CN
1735424000,1735424255,BD
+1735424256,1735424511,IN
1735424512,1735425023,ID
1735425024,1735426047,VN
1735426048,1735427071,BD
+1735427072,1735428095,VN
+1735428096,1735429119,ID
+1735429120,1735430143,CN
+1735430144,1735430655,ID
+1735430656,1735430911,IN
+1735430912,1735432191,BD
+1735432192,1735433215,PK
+1735433216,1735434239,BD
+1735434240,1735434751,IN
+1735434752,1735435263,ID
+1735435264,1735437311,BD
+1735437312,1735438335,CN
+1735438336,1735438591,AU
+1735438592,1735439359,AF
+1735439360,1735440383,JP
+1735440384,1735441407,CN
+1735441408,1735441663,AU
+1735441664,1735442175,ID
+1735442176,1735442431,LA
+1735442432,1735442943,ID
+1735442944,1735443455,MY
+1735443456,1735444479,ID
+1735444480,1735445503,AU
+1735445504,1735446527,BD
+1735446528,1735447551,HK
+1735447552,1735449599,IN
+1735449600,1735450111,TH
+1735450112,1735450623,ID
+1735450624,1735451647,IN
+1735451648,1735452159,ID
+1735452160,1735452671,IN
+1735452672,1735453183,ID
+1735453184,1735453439,IN
+1735453440,1735453695,SG
+1735453696,1735454719,BD
+1735454720,1735455743,KH
+1735455744,1735456767,ID
+1735456768,1735459071,IN
+1735459072,1735459327,AU
+1735459328,1735459583,IN
+1735459584,1735459839,ID
+1735459840,1735460863,CN
+1735460864,1735461887,MY
+1735461888,1735463935,BD
+1735463936,1735464959,HK
+1735464960,1735465471,TH
+1735465472,1735465727,ID
+1735465728,1735465983,IN
+1735465984,1735466239,ID
+1735466240,1735466495,IN
+1735466496,1735467007,ID
+1735467008,1735468031,IN
+1735468032,1735469055,HK
+1735469056,1735470079,NZ
+1735470080,1735471103,TH
+1735471104,1735473151,ID
+1735473152,1735474175,JP
+1735474176,1735475199,HK
+1735475200,1735477247,IN
+1735477248,1735479295,ID
+1735479296,1735480319,VN
+1735480320,1735481343,MM
+1735481344,1735482367,VN
+1735482368,1735483391,CN
+1735483392,1735484415,IN
+1735484416,1735485439,PK
+1735485440,1735486719,IN
+1735486720,1735486975,BD
+1735486976,1735488511,IN
+1735488512,1735493631,ID
+1735493632,1735495679,IN
+1735495680,1735496703,CN
+1735496704,1735497215,BD
+1735497216,1735497727,IN
+1735497728,1735498751,BD
+1735498752,1735499775,HK
+1735499776,1735500799,IN
+1735500800,1735501311,SG
+1735501824,1735502079,JP
+1735502080,1735502335,AU
+1735502336,1735502847,ID
+1735502848,1735503871,BD
+1735503872,1735504895,TH
+1735504896,1735505407,MY
+1735505408,1735505919,PH
+1735505920,1735506943,SG
+1735506944,1735507967,IN
+1735507968,1735511039,BD
+1735511040,1735512063,NZ
+1735512064,1735513087,BD
+1735513088,1735513343,AU
+1735513344,1735513599,IN
+1735513600,1735513855,ID
+1735513856,1735514111,KH
+1735514112,1735515135,IN
+1735515136,1735516159,CN
+1735516160,1735517183,BD
+1735517184,1735518207,IN
+1735518208,1735520255,CN
+1735520256,1735521279,TW
+1735521280,1735521791,AU
+1735521792,1735522047,JP
+1735522048,1735522303,IN
+1735522304,1735522815,ID
+1735522816,1735523327,AU
+1735523328,1735525375,IN
+1735525376,1735526399,CN
+1735526400,1735526655,PH
+1735526656,1735526911,AU
+1735526912,1735527423,BD
+1735527424,1735528447,AU
+1735528448,1735528703,IN
+1735528704,1735528959,AU
+1735528960,1735529215,ID
+1735529216,1735529471,IN
+1735529472,1735530495,BD
+1735530496,1735531519,NP
+1735531520,1735532543,CN
+1735532544,1735533055,IN
+1735533056,1735533311,AU
+1735533312,1735533567,ID
+1735533568,1735535615,BD
+1735535616,1735536639,HK
+1735536640,1735538175,ID
+1735538176,1735538431,BD
+1735538432,1735538687,AU
+1735538688,1735539711,IN
+1735539712,1735540223,BD
+1735540224,1735540479,KR
+1735540480,1735541759,IN
+1735541760,1735543807,CN
+1735543808,1735546879,ID
+1735546880,1735547903,KH
+1735547904,1735549951,BD
+1735549952,1735550975,CN
+1735550976,1735551999,VN
+1735552000,1735556095,ID
+1735556096,1735557119,KR
+1735557120,1735557631,AF
+1735557632,1735558143,AU
+1735558144,1735559167,CN
+1735559168,1735561471,ID
+1735561728,1735562239,LA
+1735562240,1735563263,CN
+1735563264,1735564287,IN
+1735564288,1735565311,CN
1740636160,1740644351,CN
1740644352,1740645375,IN
1740645376,1740647423,HK
@@ -55373,8 +56001,7 @@
1741128704,1741129727,JP
1741129728,1741130751,IN
1741131776,1741132799,IN
-1741132800,1741133567,MY
-1741133568,1741133823,TH
+1741132800,1741133823,MY
1741133824,1741134847,BD
1741134848,1741136895,IN
1741136896,1741137919,CN
@@ -55415,8 +56042,8 @@
1741186048,1741188607,IN
1741188608,1741188863,US
1741188864,1741189119,IN
-1741189120,1741189375,HK
-1741189376,1741189887,JP
+1741189120,1741189631,HK
+1741189632,1741189887,JP
1741189888,1741191167,HK
1741191168,1741192191,VN
1741192192,1741193215,HK
@@ -55455,7 +56082,8 @@
1741349376,1741349631,IN
1741349632,1741349887,ID
1741349888,1741350911,CN
-1741350912,1741351935,US
+1741350912,1741351423,AU
+1741351424,1741351935,US
1741351936,1741366271,CN
1741366272,1741367295,IN
1741367296,1741368319,US
@@ -56000,8 +56628,7 @@
1742002176,1742003199,AU
1742003200,1742004223,KR
1742004224,1742004479,NZ
-1742004480,1742004991,AU
-1742004992,1742005247,NZ
+1742004480,1742005247,AU
1742005248,1742006271,CN
1742006272,1742007039,ID
1742007040,1742007295,IN
@@ -56230,7 +56857,7 @@
1742339072,1742339327,HK
1742339328,1742339583,SG
1742339584,1742339839,AU
-1742339840,1742340095,HK
+1742339840,1742340095,US
1742340096,1742341119,CN
1742341120,1742342143,HK
1742342144,1742346239,CN
@@ -56265,7 +56892,7 @@
1742424064,1742425343,ID
1742425344,1742425599,US
1742425600,1742425855,CA
-1742425856,1742426111,SG
+1742425856,1742426111,US
1742426112,1742427135,HK
1742427136,1742432255,CN
1742432256,1742433279,HK
@@ -58341,7 +58968,13 @@
1747648512,1747681279,SG
1747681280,1747716671,US
1747716672,1747716683,NL
-1747716684,1747735679,US
+1747716684,1747734535,US
+1747734536,1747734539,SE
+1747734540,1747734543,US
+1747734544,1747734547,SE
+1747734548,1747734551,US
+1747734552,1747734555,SE
+1747734556,1747735679,US
1747735680,1747735743,SG
1747735744,1747736063,US
1747736064,1747736319,IE
@@ -58506,7 +59139,9 @@
1747914240,1747914495,AT
1747914496,1747915775,US
1747915776,1747916287,GB
-1747916288,1747926015,US
+1747916288,1747916799,US
+1747916800,1747917311,FR
+1747917312,1747926015,US
1747926016,1747926527,CA
1747926528,1747934207,US
1747934208,1747934719,JP
@@ -58555,8 +59190,8 @@
1749406720,1749413887,US
1749413888,1749422079,NL
1749422080,1749438463,US
-1749438464,1749442559,NL
-1749442560,1749449727,US
+1749438464,1749446655,NL
+1749446656,1749449727,US
1749449728,1749450239,NL
1749450240,1749465087,US
1749465088,1749465599,NL
@@ -58586,7 +59221,9 @@
1749647360,1749655551,NL
1749655552,1749659647,US
1749659648,1749663743,NL
-1749663744,1749686527,US
+1749663744,1749671935,US
+1749671936,1749676031,NL
+1749676032,1749686527,US
1749686528,1749686783,NL
1749686784,1749696511,US
1749696512,1749698047,NL
@@ -58622,9 +59259,7 @@
1749867776,1749868287,NL
1749868288,1749901311,US
1749901312,1749901567,NL
-1749901568,1749925887,US
-1749925888,1749926143,NL
-1749926144,1749931007,US
+1749901568,1749931007,US
1749931008,1749932031,NL
1749932032,1749934079,US
1749934080,1749942271,NL
@@ -58669,8 +59304,10 @@
1750351872,1750372351,US
1750372352,1750373375,NL
1750373376,1750374399,US
-1750374400,1750394367,NL
-1750394368,1750395903,US
+1750374400,1750374911,NL
+1750374912,1750376447,US
+1750376448,1750392831,NL
+1750392832,1750395903,US
1750395904,1750396927,NL
1750396928,1750405119,US
1750405120,1750415359,NL
@@ -58721,8 +59358,8 @@
1750946816,1750977535,US
1750977536,1750978559,NL
1750978560,1750986751,US
-1750986752,1750996991,NL
-1750996992,1750998527,US
+1750986752,1750995455,NL
+1750995456,1750998527,US
1750998528,1751007231,NL
1751007232,1751015423,US
1751015424,1751016703,NL
@@ -58760,9 +59397,7 @@
1751521280,1751523327,US
1751523328,1751531519,NL
1751531520,1751598847,US
-1751598848,1751621631,NL
-1751621632,1751625727,US
-1751625728,1751640319,NL
+1751598848,1751640319,NL
1751640320,1751641087,US
1751641088,1751641599,NL
1751641600,1751642111,US
@@ -58783,10 +59418,14 @@
1751875584,1751883775,NL
1751883776,1751884799,US
1751884800,1751885823,NL
-1751885824,1751896063,US
-1751896064,1751896831,NL
+1751885824,1751896575,US
+1751896576,1751896831,NL
1751896832,1751897087,US
-1751897088,1751928831,NL
+1751897088,1751899135,NL
+1751899136,1751900159,US
+1751900160,1751912447,NL
+1751912448,1751916543,US
+1751916544,1751928831,NL
1751928832,1751946239,US
1751946240,1751947263,NL
1751947264,1751949311,US
@@ -58816,8 +59455,8 @@
1752495104,1752495359,NL
1752495360,1752563711,US
1752563712,1752564223,NL
-1752564224,1752566783,US
-1752566784,1752568831,NL
+1752564224,1752568575,US
+1752568576,1752568831,NL
1752568832,1752570367,US
1752570368,1752570623,NL
1752570624,1752618495,US
@@ -58845,8 +59484,8 @@
1752798464,1752798719,US
1752798720,1752818687,NL
1752818688,1752834047,US
-1752834048,1752838143,NL
-1752838144,1752847359,US
+1752834048,1752836095,NL
+1752836096,1752847359,US
1752847360,1752847871,NL
1752847872,1752875007,US
1752875008,1752879103,NL
@@ -58857,32 +59496,38 @@
1752882688,1752883199,US
1752883200,1752891391,NL
1752891392,1752895487,US
-1752895488,1752903679,NL
-1752903680,1752911871,US
-1752911872,1752929279,NL
-1752929280,1752931327,US
-1752931328,1752932351,NL
-1752932352,1752940543,US
-1752940544,1752946175,NL
-1752946176,1752948735,US
-1752948736,1752952831,NL
-1752952832,1752971007,US
+1752895488,1752901631,NL
+1752901632,1752913919,US
+1752913920,1752929279,NL
+1752929280,1752944639,US
+1752944640,1752945151,NL
+1752945152,1752945663,US
+1752945664,1752946175,NL
+1752946176,1752971007,US
1752971008,1752971263,NL
-1752971264,1752982527,US
-1752982528,1753005055,NL
+1752971264,1752984063,US
+1752984064,1753005055,NL
1753005056,1753006079,US
1753006080,1753014271,NL
-1753014272,1753022975,US
-1753022976,1753026047,NL
+1753014272,1753023487,US
+1753023488,1753024511,NL
+1753024512,1753025535,US
+1753025536,1753026047,NL
1753026048,1753026559,US
-1753026560,1753042943,NL
+1753026560,1753030655,NL
+1753030656,1753034751,US
+1753034752,1753042943,NL
1753042944,1753046015,US
1753046016,1753046271,NL
1753046272,1753077247,US
1753077248,1753077503,NL
1753077504,1753097727,US
-1753097728,1753117183,NL
-1753117184,1753128959,US
+1753097728,1753098239,NL
+1753098240,1753099263,US
+1753099264,1753100287,NL
+1753100288,1753108479,US
+1753108480,1753116671,NL
+1753116672,1753128959,US
1753128960,1753133055,NL
1753133056,1753157631,US
1753157632,1753169919,NL
@@ -58991,9 +59636,13 @@
1753540096,1753540607,CH
1753540608,1753541631,US
1753541632,1753541887,DE
-1753541888,1753549823,US
+1753541888,1753542399,US
+1753542400,1753542655,TW
+1753542656,1753549823,US
1753549824,1753550079,IE
-1753550080,1753735167,US
+1753550080,1753550591,US
+1753550592,1753550847,TW
+1753550848,1753735167,US
1753735168,1753743359,IE
1753743360,1754136575,US
1754136576,1754169343,CA
@@ -59084,8 +59733,8 @@
1754269600,1754269615,CA
1754269616,1754269695,US
1754269696,1754269951,CA
-1754269952,1754270207,US
-1754270208,1754271039,CA
+1754269952,1754270463,US
+1754270464,1754271039,CA
1754271040,1754271071,CN
1754271072,1754271103,US
1754271104,1754271135,CA
@@ -59122,8 +59771,8 @@
1754273792,1754273871,US
1754273872,1754273887,CA
1754273888,1754274175,US
-1754274176,1754274559,CA
-1754274560,1754274815,US
+1754274176,1754274303,CA
+1754274304,1754274815,US
1754274816,1754274943,CA
1754274944,1754275023,US
1754275024,1754275039,CA
@@ -59136,13 +59785,17 @@
1754276224,1754276287,US
1754276288,1754276863,CA
1754276864,1754277119,US
-1754277120,1754279167,CA
+1754277120,1754277375,CA
+1754277376,1754277631,US
+1754277632,1754279167,CA
1754279168,1754279199,US
1754279200,1754279327,CA
1754279328,1754279359,US
1754279360,1754279679,CA
1754279680,1754279935,US
-1754279936,1754281223,CA
+1754279936,1754280447,CA
+1754280448,1754280703,US
+1754280704,1754281223,CA
1754281224,1754281231,NO
1754281232,1754281279,CA
1754281280,1754281343,US
@@ -59274,9 +59927,7 @@
1754305664,1754305759,US
1754305760,1754305767,CA
1754305768,1754305791,US
-1754305792,1754306047,CA
-1754306048,1754306559,US
-1754306560,1754306943,CA
+1754305792,1754306943,CA
1754306944,1754306959,US
1754306960,1754306975,CA
1754306976,1754307031,US
@@ -59797,7 +60448,9 @@
1754890240,1754892287,BB
1754892288,1754894335,CA
1754894336,1754899455,US
-1754899456,1754900479,CA
+1754899456,1754899967,CA
+1754899968,1754900223,US
+1754900224,1754900479,CA
1754900480,1754911743,US
1754911744,1754912767,CA
1754912768,1754920959,US
@@ -60026,8 +60679,12 @@
1757532160,1757533183,CA
1757533184,1757543295,US
1757543296,1757543327,AU
-1757543328,1757552639,US
-1757552640,1757560831,CA
+1757543328,1757545471,US
+1757545472,1757545727,CA
+1757545728,1757548543,US
+1757548544,1757549567,CA
+1757549568,1757551615,US
+1757551616,1757560831,CA
1757560832,1757596415,US
1757596416,1757596671,AU
1757596672,1757642751,US
@@ -60041,7 +60698,8 @@
1757957888,1757958143,US
1757958144,1757962239,CA
1757962240,1757966335,BB
-1757966336,1757996287,US
+1757966336,1757970431,JP
+1757970432,1757996287,US
1757996288,1757996543,GB
1757996544,1758002431,US
1758002432,1758002687,GB
@@ -60320,7 +60978,9 @@
1759715440,1759715839,US
1759715840,1759715903,CA
1759715904,1759715967,US
-1759715968,1759716159,CA
+1759715968,1759715983,CA
+1759715984,1759715999,US
+1759716000,1759716159,CA
1759716160,1759716223,US
1759716224,1759716255,CA
1759716256,1759716287,US
@@ -60397,13 +61057,17 @@
1759724160,1759724287,US
1759724288,1759725183,CA
1759725184,1759725247,US
-1759725248,1759725311,CA
-1759725312,1759725567,US
-1759725568,1759725711,CA
+1759725248,1759725375,CA
+1759725376,1759725407,US
+1759725408,1759725439,CA
+1759725440,1759725455,US
+1759725456,1759725471,CA
+1759725472,1759725503,US
+1759725504,1759725711,CA
1759725712,1759725727,US
-1759725728,1759725823,CA
-1759725824,1759726079,US
-1759726080,1759726975,CA
+1759725728,1759725951,CA
+1759725952,1759726015,US
+1759726016,1759726975,CA
1759726976,1759727087,US
1759727088,1759727095,CA
1759727096,1759727103,US
@@ -60479,9 +61143,7 @@
1759737408,1759737423,US
1759737424,1759737431,CA
1759737432,1759737535,US
-1759737536,1759737855,CA
-1759737856,1759738111,CN
-1759738112,1759738879,CA
+1759737536,1759738879,CA
1759738880,1759739039,US
1759739040,1759739055,CA
1759739056,1759739103,US
@@ -60539,7 +61201,7 @@
1759749120,1759749631,US
1759749632,1759749759,CA
1759749760,1759749791,US
-1759749792,1759749887,CN
+1759749792,1759749887,CA
1759749888,1759749919,US
1759749920,1759749935,CA
1759749936,1759749975,US
@@ -60577,7 +61239,7 @@
1759753152,1759753215,US
1759753216,1759754239,CA
1759754240,1759754495,US
-1759754496,1759754623,CN
+1759754496,1759754623,CA
1759754624,1759754719,US
1759754720,1759754735,CA
1759754736,1759754751,US
@@ -60596,9 +61258,7 @@
1759756160,1759756239,US
1759756240,1759756247,CA
1759756248,1759764479,US
-1759764480,1759768575,CA
-1759768576,1759768831,US
-1759768832,1759772671,CA
+1759764480,1759772671,CA
1759772672,1760034815,US
1760038912,1760047103,US
1760047104,1760051199,CA
@@ -60638,7 +61298,9 @@
1760473600,1760475135,US
1760475136,1760476159,GB
1760476160,1760477183,FR
-1760477184,1760657407,US
+1760477184,1760487423,US
+1760487424,1760487935,PR
+1760487936,1760657407,US
1760657408,1760673791,CA
1760673792,1760690175,US
1760690176,1760755711,CA
@@ -60660,9 +61322,10 @@
1760819200,1760819455,RO
1760819456,1760819711,AM
1760819712,1760819967,MA
-1760819968,1760820479,US
-1760820480,1760820735,CA
-1760820736,1760822271,US
+1760819968,1760820223,US
+1760820224,1760820479,DE
+1760820480,1760820991,CA
+1760820992,1760822271,US
1760823296,1760824319,PT
1760824320,1760837631,US
1760837632,1760839679,CA
@@ -60697,7 +61360,11 @@
1760910336,1760911359,GD
1760911360,1760915455,US
1760915456,1760917503,MQ
-1760917504,1760923647,US
+1760917504,1760918679,US
+1760918680,1760918687,NL
+1760918688,1760918703,US
+1760918704,1760918707,NL
+1760918708,1760923647,US
1760923648,1760924671,CA
1760924672,1760925695,US
1760925696,1760929791,CA
@@ -60774,7 +61441,9 @@
1761241344,1761241599,ID
1761241600,1761241633,US
1761241634,1761241634,HK
-1761241635,1761255423,US
+1761241635,1761242111,US
+1761242112,1761242367,AU
+1761242368,1761255423,US
1761255424,1761255679,IN
1761255680,1761255935,NZ
1761255936,1761256191,DK
@@ -60782,17 +61451,14 @@
1761256448,1761256703,LI
1761256704,1761256959,ME
1761256960,1761257215,RS
-1761257216,1761257471,GE
+1761257216,1761257471,US
1761257472,1761257727,MC
1761257728,1761257983,BA
-1761257984,1761258239,RS
+1761257984,1761258239,GB
1761258240,1761258495,SI
1761258496,1761258751,IT
1761258752,1761259007,LU
-1761259008,1761259031,PT
-1761259032,1761259032,US
-1761259033,1761259263,PT
-1761259264,1761259519,US
+1761259008,1761259519,US
1761259520,1761259775,KH
1761259776,1761260031,AZ
1761260032,1761260287,ET
@@ -60821,7 +61487,9 @@
1761302528,1761302783,CA
1761302784,1761304575,US
1761304576,1761308671,CA
-1761308672,1761328639,US
+1761308672,1761316863,US
+1761316864,1761320959,JP
+1761320960,1761328639,US
1761328640,1761328895,AU
1761328896,1761341183,US
1761341184,1761341439,HK
@@ -60920,8 +61588,7 @@
1763319808,1763327999,IN
1763328000,1763336191,NL
1763336192,1763344383,SE
-1763344384,1763344895,UG
-1763344896,1763352575,DE
+1763344384,1763352575,DE
1763352576,1763385343,MU
1763385344,1763393535,AE
1763393536,1763401727,GB
@@ -61288,7 +61955,9 @@
1805177408,1805177471,US
1805177472,1805177599,CA
1805177600,1805177855,US
-1805177856,1805181951,CA
+1805177856,1805179135,CA
+1805179136,1805179391,US
+1805179392,1805181951,CA
1805181952,1805182207,US
1805182208,1805182463,GB
1805182464,1805182719,CA
@@ -61672,7 +62341,9 @@
1822445568,1822451199,CA
1822451200,1822451455,US
1822451456,1822451711,BB
-1822451712,1822486527,US
+1822451712,1822457855,US
+1822457856,1822461951,JP
+1822461952,1822486527,US
1822486528,1822490623,CA
1822490624,1822498815,US
1822498816,1822502911,CA
@@ -62598,11 +63269,11 @@
1841926101,1841930239,NL
1841930240,1841938431,KG
1841938432,1841946623,RU
-1841946624,1841946658,PT
+1841946624,1841946658,US
1841946659,1841946659,UA
-1841946660,1841948671,PT
+1841946660,1841948671,US
1841948672,1841948927,UA
-1841948928,1841954815,PT
+1841948928,1841954815,US
1841954816,1841971199,RU
1841971200,1841979391,CZ
1841979392,1841982975,NL
@@ -63019,8 +63690,7 @@
1847732224,1847734271,CN
1847734272,1847735295,NZ
1847735296,1847736319,AU
-1847736320,1847738367,JP
-1847738368,1847754751,KR
+1847736320,1847754751,KR
1847754752,1847757823,TH
1847757824,1847758847,CN
1847758848,1847770111,TH
@@ -63309,9 +63979,7 @@
1876557824,1876688895,KR
1876688896,1876754431,AU
1876754432,1876756479,BD
-1876756480,1876760575,SG
-1876760576,1876760831,JP
-1876760832,1876760863,SG
+1876756480,1876760863,SG
1876760864,1876761199,JP
1876761200,1876761343,SG
1876761344,1876761599,JP
@@ -64270,8 +64938,8 @@
1960121344,1960122367,JP
1960122368,1960124415,ID
1960124416,1960125439,PK
-1960125440,1960126463,HK
-1960126464,1960128511,CN
+1960125440,1960127487,HK
+1960127488,1960128511,CN
1960128512,1960132607,ID
1960132608,1960181759,CN
1960181760,1960185855,TW
@@ -64604,7 +65272,9 @@
1992406229,1992406229,HK
1992406230,1992417279,CN
1992417280,1992417535,HK
-1992417536,1992818687,CN
+1992417536,1992420258,CN
+1992420259,1992420259,HK
+1992420260,1992818687,CN
1992818688,1992949759,SG
1992949760,1993342975,CN
1993342976,1993605119,AU
@@ -64703,11 +65373,16 @@
1998274304,1998274559,JP
1998274560,1998332415,CN
1998332416,1998332927,HK
-1998332928,1998350847,CN
-1998350848,1998351359,SG
-1998351360,1998361087,CN
-1998361088,1998361599,KR
-1998361600,1998454783,CN
+1998332928,1998348287,CN
+1998348288,1998354943,SG
+1998354944,1998360575,CN
+1998360576,1998365695,KR
+1998365696,1998380618,CN
+1998380619,1998380619,HK
+1998380620,1998383103,CN
+1998383104,1998385151,KR
+1998385152,1998389247,IN
+1998389248,1998454783,CN
1998454784,1998456831,AU
1998456832,1998458879,JP
1998458880,1998462975,TW
@@ -65462,7 +66137,8 @@
2070396928,2070405119,AU
2070405120,2070409215,JP
2070409216,2070413311,HK
-2070413312,2070677503,JP
+2070413312,2070675455,JP
+2070675456,2070677503,KR
2070677504,2070679551,ID
2070679552,2070683647,KR
2070683648,2070691839,IN
@@ -65577,8 +66253,8 @@
2080776192,2080777215,HK
2080777216,2080777471,GB
2080777472,2080777727,FR
-2080777728,2080777983,NL
-2080777984,2080778239,GB
+2080777728,2080777983,DE
+2080777984,2080778239,NL
2080778240,2080780287,US
2080780288,2080780799,ID
2080780800,2080781311,MY
@@ -65961,7 +66637,9 @@
2147560192,2147560447,RU
2147560448,2147560703,TH
2147560704,2147560959,TW
-2147560960,2147562239,US
+2147560960,2147561471,US
+2147561472,2147561983,JP
+2147561984,2147562239,US
2147562240,2147562495,RU
2147562496,2147563263,US
2147563264,2147563519,RU
@@ -66009,7 +66687,11 @@
2148459008,2148459519,TW
2148459520,2148459775,US
2148459776,2148460287,TW
-2148460288,2148532223,US
+2148460288,2148460543,RU
+2148460544,2148461055,ID
+2148461056,2148462079,US
+2148462080,2148462335,TW
+2148462336,2148532223,US
2148532224,2148597759,GB
2148597760,2148925439,US
2148925440,2148990975,JP
@@ -66346,7 +67028,8 @@
2176516096,2176581631,DE
2176581632,2176860159,US
2176860160,2176861183,CA
-2176861184,2176862975,US
+2176861184,2176862719,US
+2176862720,2176862975,DE
2176862976,2176863231,SG
2176863232,2176868607,US
2176868608,2176868863,IT
@@ -66594,7 +67277,9 @@
2193223424,2193223679,GB
2193223680,2193226495,BG
2193226496,2193226751,GB
-2193226752,2193227775,BG
+2193226752,2193227263,BG
+2193227264,2193227519,US
+2193227520,2193227775,BG
2193227776,2193293311,IT
2193293312,2193358847,US
2193358848,2193424383,FI
@@ -66633,7 +67318,9 @@
2194034560,2194034575,AU
2194034576,2194035311,US
2194035312,2194035327,AU
-2194035328,2194407423,US
+2194035328,2194037343,US
+2194037344,2194037359,IN
+2194037360,2194407423,US
2194407424,2194472959,BG
2194472960,2194538495,US
2194538496,2194604031,ES
@@ -67008,11 +67695,15 @@
2214068224,2214133759,JP
2214133760,2214264831,US
2214264832,2214330367,GB
-2214330368,2214399047,US
+2214330368,2214398975,US
+2214398976,2214398983,CN
+2214398984,2214399047,US
2214399048,2214399055,IE
-2214399056,2214399071,US
+2214399056,2214399071,CN
2214399072,2214399135,SG
-2214399136,2214399295,US
+2214399136,2214399215,US
+2214399216,2214399223,CN
+2214399224,2214399295,US
2214399296,2214399303,SG
2214399304,2214399331,US
2214399332,2214399339,HK
@@ -67291,9 +67982,12 @@
2230685856,2230685871,HK
2230685872,2230688255,US
2230688256,2230688767,SG
-2230688768,2230688943,US
-2230688944,2230688975,BR
-2230688976,2230689839,US
+2230688768,2230688991,BR
+2230688992,2230689039,US
+2230689040,2230689071,BR
+2230689072,2230689199,US
+2230689200,2230689247,BR
+2230689248,2230689839,US
2230689840,2230689863,SG
2230689864,2230689871,US
2230689872,2230689895,SG
@@ -67312,7 +68006,7 @@
2230690976,2230691007,SG
2230691008,2230691039,MY
2230691040,2230691071,AU
-2230691072,2230691199,US
+2230691072,2230691199,SG
2230691200,2230691231,AU
2230691232,2230693887,US
2230693888,2230693919,NL
@@ -67333,7 +68027,8 @@
2230710440,2230710511,AT
2230710512,2230710559,US
2230710560,2230710671,JP
-2230710672,2230710735,US
+2230710672,2230710719,BR
+2230710720,2230710735,US
2230710736,2230710751,BR
2230710752,2230710783,KR
2230710784,2230710799,US
@@ -67347,7 +68042,9 @@
2230711728,2230711903,US
2230711904,2230711935,IE
2230711936,2230711967,IN
-2230711968,2230712191,US
+2230711968,2230712007,US
+2230712008,2230712183,BR
+2230712184,2230712191,US
2230712192,2230712239,IE
2230712240,2230713135,US
2230713136,2230713311,AT
@@ -67362,14 +68059,14 @@
2230713920,2230713935,US
2230713936,2230713983,SG
2230713984,2230714047,KR
-2230714048,2230714079,US
+2230714048,2230714079,BR
2230714080,2230714119,MY
2230714120,2230714127,US
2230714128,2230714255,MY
2230714256,2230714287,BR
2230714288,2230714303,US
2230714304,2230714311,CL
-2230714312,2230714367,US
+2230714312,2230714367,BR
2230714368,2230779903,CA
2230779904,2230910975,MX
2230910976,2231042047,US
@@ -67650,8 +68347,7 @@
2258601176,2258601215,AU
2258601216,2258601343,TW
2258601344,2258601471,AU
-2258601472,2258601983,JP
-2258601984,2258602239,AU
+2258601472,2258602239,JP
2258602240,2258602495,HK
2258602496,2258602751,AU
2258602752,2258603071,HK
@@ -67745,7 +68441,9 @@
2259222528,2259288063,DE
2259288064,2259304447,US
2259304448,2259304959,NL
-2259304960,2259304991,US
+2259304960,2259304967,US
+2259304968,2259304975,NL
+2259304976,2259304991,US
2259304992,2259305407,NL
2259305408,2259305439,US
2259305440,2259306239,NL
@@ -67920,7 +68618,45 @@
2282233856,2282242047,GB
2282242048,2283151359,US
2283151360,2283159551,IN
-2283159552,2291142655,US
+2283159552,2283174399,US
+2283174400,2283174407,DE
+2283174408,2283174415,FR
+2283174416,2283174431,GB
+2283174432,2283174439,IT
+2283174440,2283174447,ES
+2283174448,2283174455,NL
+2283174456,2283174463,BE
+2283174464,2283174471,GR
+2283174472,2283174479,PT
+2283174480,2283174487,SE
+2283174488,2283174495,AT
+2283174496,2283174503,CH
+2283174504,2283174511,DK
+2283174512,2283174519,FI
+2283174520,2283174527,NO
+2283174528,2283174535,IE
+2283174536,2283174543,IS
+2283174544,2283174551,FO
+2283174552,2283174655,US
+2283174656,2283174663,DE
+2283174664,2283174671,FR
+2283174672,2283174687,GB
+2283174688,2283174695,IT
+2283174696,2283174703,ES
+2283174704,2283174711,NL
+2283174712,2283174719,BE
+2283174720,2283174727,GR
+2283174728,2283174735,PT
+2283174736,2283174743,SE
+2283174744,2283174751,AT
+2283174752,2283174759,CH
+2283174760,2283174767,DK
+2283174768,2283174775,FI
+2283174776,2283174783,NO
+2283174784,2283174791,IE
+2283174792,2283174799,IS
+2283174800,2283174807,FO
+2283174808,2291142655,US
2291142656,2291144191,CN
2291144192,2291144703,NL
2291144704,2291144959,ES
@@ -67968,7 +68704,11 @@
2295201792,2295267327,IE
2295267328,2296446975,US
2296446976,2296512511,SE
-2296512512,2296774655,US
+2296512512,2296676351,US
+2296676352,2296684543,KH
+2296684544,2296691199,US
+2296691200,2296691711,CA
+2296691712,2296774655,US
2296774656,2296840191,DE
2296840192,2296905727,NL
2296905728,2297036799,IN
@@ -67984,7 +68724,9 @@
2297661439,2297692159,DE
2297692160,2298258175,US
2298258176,2298258431,GB
-2298258432,2299461631,US
+2298258432,2298413055,US
+2298413056,2298478591,RO
+2298478592,2299461631,US
2299461632,2299527167,CA
2299527168,2299592703,US
2299592704,2299658239,NL
@@ -68014,8 +68756,7 @@
2302360576,2302363647,IN
2302363648,2302364671,AU
2302364672,2302365695,IN
-2302365696,2302366207,MY
-2302366208,2302366719,ID
+2302365696,2302366719,MY
2302366720,2302367743,IN
2302367744,2302368767,CN
2302368768,2302370815,IN
@@ -68171,7 +68912,9 @@
2303362560,2303362591,PT
2303362592,2303363871,FR
2303363872,2303363903,PL
-2303363904,2303365279,FR
+2303363904,2303364319,FR
+2303364320,2303364335,ES
+2303364336,2303365279,FR
2303365280,2303365295,GB
2303365296,2303365679,FR
2303365680,2303365695,NL
@@ -68495,7 +69238,14 @@
2319187968,2319319039,US
2319319040,2319384575,NO
2319384576,2319450111,FR
-2319450112,2319581183,US
+2319450112,2319451135,JP
+2319451136,2319451391,US
+2319451392,2319466495,JP
+2319466496,2319466751,US
+2319466752,2319467519,JP
+2319467520,2319467775,US
+2319467776,2319507455,JP
+2319507456,2319581183,US
2319581184,2319646719,IT
2319646720,2319728639,US
2319728640,2319741951,DE
@@ -69411,7 +70161,11 @@
2338324480,2338390015,SE
2338390016,2338455551,FI
2338455552,2338521087,NO
-2338521088,2338553855,SG
+2338521088,2338526199,SG
+2338526200,2338526203,CA
+2338526204,2338530375,SG
+2338530376,2338530383,CA
+2338530384,2338553855,SG
2338553856,2338586623,AU
2338586624,2338652159,FR
2338652160,2338717695,JP
@@ -69444,7 +70198,9 @@
2341135360,2341135615,SG
2341135616,2341135871,JP
2341135872,2341136127,CN
-2341136128,2341143362,US
+2341136128,2341136639,US
+2341136640,2341136655,DE
+2341136656,2341143362,US
2341143363,2341143363,DE
2341143364,2341147459,US
2341147460,2341147460,DE
@@ -69526,11 +70282,13 @@
2353987584,2354053119,AU
2354053120,2354118655,CA
2354184192,2354192383,US
-2354192384,2354193407,DE
-2354193408,2354197503,US
+2354192384,2354194431,DE
+2354194432,2354197503,US
2354197504,2354198527,FR
2354198528,2354199551,NL
-2354199552,2354249727,US
+2354199552,2354233343,US
+2354233344,2354237439,HK
+2354237440,2354249727,US
2354249728,2354315263,AU
2354315264,2354446335,US
2354446336,2354511871,FR
@@ -69638,7 +70396,11 @@
2365636608,2365638655,GB
2365638656,2365640703,FR
2365640704,2365644799,GB
-2365644800,2365652991,NO
+2365644800,2365646079,NO
+2365646080,2365646335,SJ
+2365646336,2365651455,NO
+2365651456,2365651711,SJ
+2365651712,2365652991,NO
2365652992,2366032895,DE
2366032896,2366033151,GB
2366033152,2366111743,DE
@@ -69716,7 +70478,8 @@
2372240640,2372240895,NL
2372240896,2372241151,DE
2372241152,2372241407,PK
-2372241408,2372243199,RU
+2372241408,2372241663,TJ
+2372241664,2372243199,RU
2372243200,2372243455,RO
2372243456,2372243711,DK
2372243712,2372243967,AM
@@ -69742,8 +70505,7 @@
2372507648,2372509695,IT
2372509696,2372510335,AE
2372510336,2372510336,ES
-2372510337,2372510975,AE
-2372510976,2372511231,GR
+2372510337,2372511231,AE
2372511232,2372511743,LU
2372511744,2372512815,OM
2372512816,2372512816,BA
@@ -69829,7 +70591,8 @@
2376728576,2376761343,GB
2376761344,2376777727,CZ
2376777728,2376781823,BA
-2376781824,2376782847,DZ
+2376781824,2376782591,FR
+2376782592,2376782847,DZ
2376782848,2376785919,FR
2376785920,2376794111,UA
2376794112,2376859647,CH
@@ -69867,10 +70630,13 @@
2378242816,2378248191,ES
2378248192,2378250751,US
2378250752,2378251263,ES
-2378251264,2378252543,US
-2378252544,2378254335,ES
+2378251264,2378252799,US
+2378252800,2378254335,ES
2378254336,2378254591,US
-2378254592,2378301439,ES
+2378254592,2378260479,ES
+2378260480,2378260991,GB
+2378260992,2378261503,US
+2378261504,2378301439,ES
2378301440,2378366975,FR
2378366976,2378432511,US
2378432512,2378498047,TR
@@ -69893,9 +70659,7 @@
2380420864,2380423167,IL
2380423168,2380427263,US
2380427264,2380428799,GB
-2380428800,2380430335,IL
-2380430336,2380430591,US
-2380430592,2380430847,IL
+2380428800,2380430847,IL
2380430848,2380431103,GB
2380431104,2380431615,IL
2380431616,2380431871,US
@@ -70069,7 +70833,9 @@
2392129536,2392457215,CA
2392457216,2392489983,SA
2392489984,2392514559,US
-2392514560,2394947583,CA
+2392514560,2394816511,CA
+2394816512,2394882047,US
+2394882048,2394947583,CA
2394947584,2395013119,US
2395013120,2395209727,CA
2395209728,2395340799,US
@@ -70766,13 +71532,25 @@
2427588160,2427588163,TW
2427588164,2427588175,GB
2427588176,2427588179,MN
-2427588180,2427588351,GB
+2427588180,2427588191,MO
+2427588192,2427588351,GB
2427588352,2427588352,SG
2427588353,2427588359,GB
2427588360,2427588365,SG
2427588366,2427588369,TH
2427588370,2427591679,GB
-2427591680,2427591935,US
+2427591680,2427591880,US
+2427591881,2427591881,CA
+2427591882,2427591883,US
+2427591884,2427591884,CO
+2427591885,2427591896,US
+2427591897,2427591897,CA
+2427591898,2427591898,MX
+2427591899,2427591899,CA
+2427591900,2427591912,US
+2427591913,2427591913,CL
+2427591914,2427591914,BR
+2427591915,2427591935,US
2427591936,2427591945,GB
2427591946,2427591946,AT
2427591947,2427591947,BE
@@ -70849,7 +71627,9 @@
2430168320,2430168591,US
2430168592,2430169855,CA
2430169856,2430170111,US
-2430170112,2430205951,CA
+2430170112,2430190847,CA
+2430190848,2430191103,US
+2430191104,2430205951,CA
2430271488,2430578687,US
2430578688,2430580735,CA
2430580736,2430918655,US
@@ -70876,11 +71656,12 @@
2433628160,2433630207,NL
2433630208,2433638399,GB
2433638400,2433646591,SE
-2433646592,2433647359,DE
+2433646592,2433647103,NL
+2433647104,2433647359,DE
2433647360,2433647615,US
2433647616,2433648127,DE
2433648128,2433648383,BR
-2433648384,2433648639,GB
+2433648384,2433648639,US
2433648640,2433650687,DE
2433650688,2433653759,US
2433653760,2433654015,NL
@@ -71027,7 +71808,11 @@
2448394240,2448394303,DE
2448394304,2448394463,FR
2448394464,2448394479,DE
-2448394480,2448394767,FR
+2448394480,2448394655,FR
+2448394656,2448394671,DE
+2448394672,2448394675,FR
+2448394676,2448394679,DE
+2448394680,2448394767,FR
2448394768,2448394771,DE
2448394772,2448394775,FR
2448394776,2448394783,DE
@@ -71037,7 +71822,9 @@
2448395048,2448395051,DE
2448395052,2448397311,FR
2448397312,2448398335,DE
-2448398336,2448401847,FR
+2448398336,2448401695,FR
+2448401696,2448401699,IT
+2448401700,2448401847,FR
2448401848,2448401855,GB
2448401856,2448401879,FR
2448401880,2448401887,ES
@@ -71054,7 +71841,9 @@
2448404184,2448404191,ES
2448404192,2448404415,FR
2448404416,2448404447,GB
-2448404448,2448404479,FR
+2448404448,2448404455,FR
+2448404456,2448404459,NL
+2448404460,2448404479,FR
2448404480,2448404511,GB
2448404512,2448405359,FR
2448405360,2448405367,ES
@@ -71147,7 +71936,7 @@
2448949248,2449014783,FR
2449014784,2449031167,IR
2449031168,2449039359,SY
-2449039360,2449041407,RO
+2449039360,2449041407,DE
2449041408,2449042431,NL
2449042432,2449042687,GB
2449042944,2449043199,RO
@@ -71386,9 +72175,7 @@
2457346048,2457348095,BY
2457348096,2457360383,RU
2457360384,2457360895,CZ
-2457360896,2457361151,RU
-2457361152,2457361407,CZ
-2457361408,2457362175,RU
+2457360896,2457362175,RU
2457362176,2457362431,UA
2457362432,2457362687,RU
2457362688,2457362943,UA
@@ -71452,7 +72239,9 @@
2458779648,2459631615,US
2459631616,2459697151,CL
2459697152,2459828223,US
-2459828224,2459846655,RU
+2459828224,2459833343,RU
+2459833344,2459834367,UZ
+2459834368,2459846655,RU
2459846656,2459847167,FR
2459847168,2459847679,UA
2459847680,2459848191,RU
@@ -71507,7 +72296,7 @@
2461650688,2461652479,RU
2461652480,2461652991,LU
2461652992,2461658111,RU
-2461658112,2461658623,LU
+2461658112,2461658623,AU
2461658624,2461659391,RU
2461659392,2461659647,UA
2461659648,2461662463,RU
@@ -71614,7 +72403,8 @@
2466013184,2466015231,DE
2466015232,2466016255,US
2466016256,2466017279,CA
-2466017280,2466049023,US
+2466017280,2466019327,BR
+2466019328,2466049023,US
2466049024,2466049535,GB
2466049536,2466053119,US
2466053120,2466054143,CA
@@ -71928,7 +72718,160 @@
2481455104,2481520639,SK
2481520640,2481848319,IL
2481848320,2482175999,US
-2482176000,2482241535,GB
+2482176000,2482176031,MY
+2482176032,2482176191,HK
+2482176192,2482176351,SG
+2482176352,2482176511,AU
+2482176512,2482176831,JP
+2482176832,2482176863,IN
+2482176864,2482176895,AU
+2482176896,2482176959,IN
+2482176960,2482176991,KR
+2482176992,2482177119,AU
+2482177120,2482177279,SG
+2482177280,2482177439,HK
+2482177440,2482177471,TH
+2482177472,2482177503,NZ
+2482177504,2482177535,AU
+2482177536,2482177567,NZ
+2482177568,2482177631,TW
+2482177632,2482177663,IN
+2482177664,2482177727,TW
+2482177728,2482177759,AU
+2482177760,2482177823,IN
+2482177824,2482177855,JP
+2482177856,2482177951,KR
+2482177952,2482178015,JP
+2482178016,2482178079,IN
+2482178080,2482178303,KR
+2482178304,2482178399,JP
+2482178400,2482178495,KR
+2482178496,2482178591,JP
+2482178592,2482178719,HK
+2482178720,2482178783,SG
+2482178784,2482178847,JP
+2482178848,2482178879,IN
+2482178880,2482178911,SG
+2482178912,2482178943,IN
+2482178944,2482179007,JP
+2482179008,2482179039,HK
+2482179040,2482179103,GB
+2482179104,2482179199,IN
+2482179200,2482179231,TH
+2482179232,2482179295,MY
+2482179296,2482179359,IN
+2482179360,2482179423,CN
+2482179424,2482179519,AU
+2482179520,2482179551,SG
+2482179552,2482179583,HK
+2482179584,2482179615,KR
+2482179616,2482179647,CN
+2482179648,2482179679,GU
+2482179680,2482179711,TW
+2482179712,2482179871,JP
+2482179872,2482179967,HK
+2482179968,2482192383,GB
+2482192384,2482192703,IE
+2482192704,2482193183,NL
+2482193184,2482193215,FI
+2482193216,2482193279,GB
+2482193280,2482193311,FI
+2482193312,2482193439,NL
+2482193440,2482193535,FI
+2482193536,2482193599,GB
+2482193600,2482193759,NL
+2482193760,2482193791,RO
+2482193792,2482193887,AT
+2482193888,2482193919,BE
+2482193920,2482193951,DK
+2482193952,2482194047,IT
+2482194048,2482194079,SE
+2482194080,2482194111,CH
+2482194112,2482194143,FR
+2482194144,2482194207,SE
+2482194208,2482194239,IT
+2482194240,2482194399,AT
+2482194400,2482194431,BG
+2482194432,2482194463,GR
+2482194464,2482194591,CH
+2482194592,2482194719,SE
+2482194720,2482194783,CZ
+2482194784,2482194815,GB
+2482194816,2482194847,PT
+2482194848,2482194911,ES
+2482194912,2482194943,HR
+2482194944,2482194975,CZ
+2482194976,2482195007,PT
+2482195008,2482195039,GB
+2482195040,2482195071,ES
+2482195072,2482195423,GB
+2482195424,2482195455,CZ
+2482195456,2482195487,ZA
+2482195488,2482195551,FI
+2482195552,2482195583,GB
+2482195584,2482195615,FR
+2482195616,2482195775,DE
+2482195776,2482195871,GB
+2482195872,2482195935,ES
+2482195936,2482196031,DE
+2482196032,2482196095,FR
+2482196096,2482196127,BE
+2482196128,2482196159,FI
+2482196160,2482196191,HU
+2482196192,2482196223,PL
+2482196224,2482196255,ZA
+2482196256,2482196287,FR
+2482196288,2482196351,ZA
+2482196352,2482196511,DE
+2482196512,2482196543,FR
+2482196544,2482196575,NL
+2482196576,2482196607,FR
+2482196608,2482196639,NL
+2482196640,2482196671,GB
+2482196672,2482196703,NL
+2482196704,2482196735,DK
+2482196736,2482196767,RU
+2482196768,2482196799,SE
+2482196800,2482196831,IT
+2482196832,2482196863,GR
+2482196864,2482196895,FR
+2482196896,2482196927,IE
+2482196928,2482196991,ZA
+2482196992,2482208799,GB
+2482208800,2482209535,US
+2482209536,2482209695,BR
+2482209696,2482210015,US
+2482210016,2482210175,BR
+2482210176,2482210239,US
+2482210240,2482210399,BR
+2482210400,2482211135,US
+2482211136,2482211263,BR
+2482211264,2482211327,US
+2482211328,2482211359,CL
+2482211360,2482211807,US
+2482211808,2482211999,BR
+2482212000,2482212383,US
+2482212384,2482212415,CA
+2482212416,2482212703,US
+2482212704,2482212735,CA
+2482212736,2482213087,US
+2482213088,2482213119,CA
+2482213120,2482213247,US
+2482213248,2482213311,BR
+2482213312,2482213343,US
+2482213344,2482213375,CA
+2482213376,2482213567,US
+2482213568,2482213599,CA
+2482213600,2482213631,CL
+2482213632,2482213695,BR
+2482213696,2482213919,US
+2482213920,2482213951,MX
+2482213952,2482214015,BR
+2482214016,2482214047,US
+2482214048,2482214079,CA
+2482214080,2482214303,US
+2482214304,2482214335,CA
+2482214336,2482241535,GB
2482241536,2482634751,US
2482634752,2482700287,FR
2482700288,2482765823,CZ
@@ -72163,7 +73106,9 @@
2500198400,2500199471,GB
2500199472,2500199475,IE
2500199476,2500200447,GB
-2500200448,2500200703,US
+2500200448,2500200631,US
+2500200632,2500200639,GB
+2500200640,2500200703,US
2500200704,2500200959,GB
2500200960,2500201535,US
2500201536,2500201543,GB
@@ -72286,7 +73231,9 @@
2500544768,2500545023,GR
2500545024,2500545703,US
2500545704,2500545711,SE
-2500545712,2500546559,US
+2500545712,2500545815,US
+2500545816,2500545823,SE
+2500545824,2500546559,US
2500546560,2500549271,GB
2500549272,2500549279,ES
2500549280,2500552703,GB
@@ -72313,7 +73260,9 @@
2500599936,2500599951,DK
2500599952,2500609023,US
2500609024,2500610047,ES
-2500610048,2500632575,US
+2500610048,2500624383,US
+2500624384,2500625407,IT
+2500625408,2500632575,US
2500632576,2500640767,GB
2500640768,2500646911,FR
2500646912,2500648959,ES
@@ -72325,7 +73274,9 @@
2500666464,2500666471,LU
2500666472,2500674623,US
2500674624,2500674687,DE
-2500674688,2500680447,US
+2500674688,2500675839,US
+2500675840,2500676095,DE
+2500676096,2500680447,US
2500680448,2500680703,SE
2500680704,2500681759,US
2500681760,2500681767,PL
@@ -72369,12 +73320,22 @@
2500756880,2500756887,IT
2500756888,2500759159,GB
2500759160,2500759167,NL
-2500759168,2500761599,GB
-2500761600,2500763647,FR
+2500759168,2500759463,GB
+2500759464,2500759467,NL
+2500759468,2500761599,GB
+2500761600,2500763199,FR
+2500763200,2500763207,DE
+2500763208,2500763647,FR
2500763648,2500771839,US
2500771840,2500773023,RU
2500773024,2500773031,GB
-2500773032,2500777983,RU
+2500773032,2500773223,RU
+2500773224,2500773231,GB
+2500773232,2500773295,RU
+2500773296,2500773303,GB
+2500773304,2500777111,RU
+2500777112,2500777119,CH
+2500777120,2500777983,RU
2500777984,2500777991,FR
2500777992,2500780031,RU
2500780032,2500780287,GB
@@ -72913,7 +73874,10 @@
2523657216,2523659263,ID
2523659264,2523660287,IN
2523660288,2523725823,US
-2523725824,2523791359,CN
+2523725824,2523734015,SG
+2523734016,2523746303,CN
+2523746304,2523748351,KR
+2523748352,2523791359,CN
2523791360,2524119039,US
2524119040,2524184575,CN
2524184576,2524315647,TW
@@ -73000,7 +73964,9 @@
2528575488,2528641023,KR
2528641024,2528706559,US
2528706560,2529034239,VE
-2529034240,2529099775,US
+2529034240,2529075199,US
+2529075200,2529083391,TH
+2529083392,2529099775,US
2529099776,2529165311,AU
2529165312,2529492991,US
2529492992,2529558527,KR
@@ -73173,7 +74139,8 @@
2538625584,2538625599,PT
2538625600,2538626543,FR
2538626544,2538626559,LT
-2538626560,2538626687,FR
+2538626560,2538626575,CZ
+2538626576,2538626687,FR
2538626688,2538626703,ES
2538626704,2538629727,FR
2538629728,2538629759,ES
@@ -73340,7 +74307,13 @@
2540035072,2540036095,CL
2540036096,2540037119,ZA
2540037120,2540038143,JP
-2540038144,2540240895,US
+2540038144,2540039167,NZ
+2540039168,2540040191,NO
+2540040192,2540041215,IT
+2540041216,2540042239,FI
+2540042240,2540043263,US
+2540043264,2540044287,BR
+2540044288,2540240895,US
2540240896,2540306431,FI
2540306432,2540322815,FR
2540322816,2540339199,DE
@@ -73388,8 +74361,7 @@
2547154944,2547187711,NZ
2547187712,2547318783,GB
2547318784,2547515391,US
-2547515392,2547515903,RU
-2547519488,2547523583,NL
+2547515392,2547516415,RU
2547523584,2547524607,DE
2547524608,2547525631,IR
2547525632,2547527679,DE
@@ -73605,7 +74577,9 @@
2561409024,2561671167,CL
2561671168,2562867199,US
2562867200,2562868223,DE
-2562868224,2563244031,US
+2562868224,2562956287,US
+2562956288,2562956799,ZA
+2562956800,2563244031,US
2563244032,2563637247,CO
2563637248,2563768319,CU
2563768320,2564947967,US
@@ -73947,7 +74921,9 @@
2584782336,2584789759,US
2584789760,2584790015,NL
2584790016,2584790783,US
-2584790784,2584791039,HK
+2584790784,2584790951,HK
+2584790952,2584790952,US
+2584790953,2584791039,HK
2584791040,2584791295,US
2584791296,2584791551,FR
2584791552,2584791807,DE
@@ -73955,7 +74931,9 @@
2584796160,2584796415,RU
2584796416,2584801023,US
2584801024,2584801279,GB
-2584801280,2585001983,US
+2584801280,2584887807,US
+2584887808,2584888063,JP
+2584888064,2585001983,US
2585001984,2585067519,CA
2585067520,2585330440,US
2585330441,2585330442,SI
@@ -73977,7 +74955,9 @@
2586510336,2586511359,ES
2586511360,2586517503,US
2586517504,2586525695,FR
-2586525696,2586544127,US
+2586525696,2586542847,US
+2586542848,2586542911,SE
+2586542912,2586544127,US
2586544128,2586546175,SE
2586546176,2586566655,US
2586566656,2586566687,FR
@@ -74094,8 +75074,8 @@
2587285504,2587285759,ES
2587285760,2587286015,US
2587286016,2587286271,ES
-2587286272,2587287295,US
-2587287296,2587287551,ES
+2587286272,2587287039,US
+2587287040,2587287551,ES
2587287552,2587361791,US
2587361792,2587362047,MD
2587362048,2587377663,US
@@ -74163,7 +75143,7 @@
2587700224,2587700735,GB
2587700736,2587709695,US
2587709696,2587709759,NL
-2587709760,2587709823,US
+2587709760,2587709823,CH
2587709824,2587709887,IT
2587709888,2587710975,US
2587710976,2587711231,NL
@@ -74176,7 +75156,9 @@
2587717632,2587721727,ES
2587721728,2587722751,US
2587722752,2587723007,GB
-2587723008,2587738111,US
+2587723008,2587723519,US
+2587723520,2587723775,GB
+2587723776,2587738111,US
2587738112,2587738623,RS
2587738624,2587740159,US
2587740160,2587742207,RS
@@ -74193,6 +75175,7 @@
2587952128,2587953151,NG
2587953152,2587954175,MU
2587954176,2587955199,ZA
+2587955200,2587957247,GH
2587957248,2587958271,LR
2587958272,2587959295,BJ
2587959296,2587961343,SN
@@ -75012,12 +75995,18 @@
2637451776,2637452031,US
2637452032,2637452543,IN
2637452544,2637452799,CA
-2637452800,2637453311,US
+2637452800,2637453055,US
+2637453056,2637453311,NZ
2637453312,2637453567,AR
2637453568,2637453823,CL
-2637453824,2637454079,US
+2637453824,2637454079,ZA
2637454080,2637454335,JP
-2637454336,2637627391,US
+2637454336,2637454591,GB
+2637454592,2637454847,US
+2637454848,2637455103,AU
+2637455104,2637457407,US
+2637457408,2637457663,JP
+2637457664,2637627391,US
2637627392,2637627551,IE
2637627552,2637627583,US
2637627584,2637628031,IE
@@ -75085,7 +76074,8 @@
2637686272,2637686463,IE
2637686464,2637686495,US
2637686496,2637686503,IE
-2637686504,2637686855,US
+2637686504,2637686511,NL
+2637686512,2637686855,US
2637686856,2637686975,IE
2637686976,2637687215,US
2637687216,2637687615,IE
@@ -75118,8 +76108,7 @@
2637746264,2637746279,NL
2637746280,2637746287,FI
2637746288,2637746295,FR
-2637746296,2637746303,NL
-2637746304,2637746311,US
+2637746296,2637746311,NL
2637746312,2637746319,FI
2637746320,2637746327,FR
2637746328,2637746687,US
@@ -75617,7 +76606,9 @@
2654646272,2654648319,FR
2654648320,2654650367,IR
2654650368,2654666751,BG
-2654666752,2654994431,US
+2654666752,2654732287,US
+2654732288,2654797823,NL
+2654797824,2654994431,US
2654994432,2655059967,LU
2655059968,2655125503,US
2655125504,2655191039,PL
@@ -75678,7 +76669,9 @@
2658009088,2658074623,IT
2658074624,2658140159,US
2658140160,2658205695,NO
-2658205696,2658398719,US
+2658205696,2658395135,US
+2658395136,2658395647,GB
+2658395648,2658398719,US
2658398720,2658399231,CA
2658399232,2658401279,US
2658401280,2658402303,NL
@@ -75774,7 +76767,9 @@
2662425224,2662425231,ES
2662425232,2662426847,US
2662426848,2662426879,ES
-2662426880,2662498303,US
+2662426880,2662434599,US
+2662434600,2662434607,CN
+2662434608,2662498303,US
2662498304,2662662143,GB
2662662144,2662670335,KG
2662670336,2662674431,AZ
@@ -75813,7 +76808,17 @@
2665873408,2665938943,GB
2665938944,2666004479,FR
2666004480,2666070015,CH
-2666070016,2666133880,SE
+2666070016,2666133247,SE
+2666133248,2666133255,DK
+2666133256,2666133263,FI
+2666133264,2666133271,NO
+2666133272,2666133279,PL
+2666133280,2666133311,SE
+2666133312,2666133319,DK
+2666133320,2666133327,FI
+2666133328,2666133335,NO
+2666133336,2666133343,PL
+2666133344,2666133880,SE
2666133881,2666133881,DK
2666133882,2666133882,SE
2666133883,2666133883,FI
@@ -75844,7 +76849,9 @@
2667528192,2667532287,FR
2667532288,2667534335,RU
2667534336,2667536383,PL
-2667536384,2667536575,AT
+2667536384,2667536447,AT
+2667536448,2667536463,FR
+2667536464,2667536575,AT
2667536576,2667536583,FR
2667536584,2667536615,AT
2667536616,2667536623,FR
@@ -75972,8 +76979,8 @@
2671874048,2671878143,IN
2671878144,2671886335,US
2671886336,2671890431,NL
-2671890432,2671891455,GB
-2671891456,2672099327,US
+2671890432,2671892479,GB
+2671892480,2672099327,US
2672099328,2672164863,DE
2672164864,2672295935,US
2672295936,2672296959,ES
@@ -76065,9 +77072,7 @@
2675301376,2675302143,NZ
2675302144,2675302399,MY
2675302400,2675310591,HK
-2675310592,2675574239,US
-2675574240,2675574271,IT
-2675574272,2675574895,US
+2675310592,2675574895,US
2675574896,2675574903,NL
2675574904,2675575951,US
2675575952,2675575953,SA
@@ -76105,7 +77110,9 @@
2675611228,2675611228,IT
2675611229,2675611295,US
2675611296,2675611359,IT
-2675611360,2675612715,US
+2675611360,2675611595,US
+2675611596,2675611599,IL
+2675611600,2675612715,US
2675612716,2675612719,IT
2675612720,2675612743,US
2675612744,2675612747,IT
@@ -76117,7 +77124,9 @@
2675613464,2675613471,IL
2675613472,2675613599,US
2675613600,2675613631,JP
-2675613632,2675614975,US
+2675613632,2675613843,US
+2675613844,2675613847,IL
+2675613848,2675614975,US
2675614976,2675614991,NL
2675614992,2675615743,US
2675615744,2675615871,IT
@@ -76465,12 +77474,14 @@
2685613056,2685614079,TW
2685615104,2685616127,NG
2685616128,2685617151,ID
+2685623296,2685624319,LT
2685624320,2685626367,LY
2685626368,2685627391,US
2685628416,2685636607,ZA
2685638656,2685639679,SL
2685640704,2685641727,US
2685642752,2685644799,BR
+2685645824,2685646847,UA
2685647872,2685648383,ZA
2685648384,2685648895,MZ
2685648896,2685649919,RW
@@ -76496,6 +77507,7 @@
2685685760,2685686783,AR
2685686784,2685688831,BR
2685688832,2685689855,CL
+2685692928,2685693951,NO
2685693952,2685694975,SL
2685706240,2685707263,BR
2685707264,2685708287,EC
@@ -76509,6 +77521,7 @@
2685722112,2685722623,ID
2685724160,2685724671,US
2685724672,2685726719,CA
+2685728512,2685728767,AR
2685729792,2685730815,ZA
2685730816,2685796351,JP
2685861888,2686320639,JP
@@ -76705,10 +77718,12 @@
2699959808,2699960063,JP
2699960320,2699960575,JP
2699960832,2699961343,HK
+2699961344,2699962367,DE
2699962368,2699962623,JP
2699962880,2699964415,US
2699964416,2699964927,ZA
2699965184,2699965439,JP
+2699965440,2699966463,FR
2699966464,2699966719,JP
2699966976,2699967487,HK
2699968000,2699968255,JP
@@ -76717,6 +77732,7 @@
2699972608,2699973631,NZ
2699973632,2699974655,HK
2699974656,2699976703,IN
+2699976704,2699977727,GB
2699977728,2699977983,JP
2699978240,2699978751,US
2699978752,2699980799,BR
@@ -76885,49 +77901,101 @@
2709225472,2709225727,ES
2709225728,2709225983,ZA
2709225984,2709226239,ES
-2709226240,2709242111,ZA
+2709226240,2709226495,ZA
+2709226496,2709226511,DE
+2709226512,2709228767,ZA
+2709228768,2709228783,DE
+2709228784,2709229695,ZA
+2709229696,2709229711,DE
+2709229712,2709230799,ZA
+2709230800,2709230815,DE
+2709230816,2709231103,ZA
+2709231104,2709231119,DE
+2709231120,2709232127,ZA
+2709232128,2709232383,DE
+2709232384,2709232639,ZA
+2709232640,2709232895,DE
+2709232896,2709233151,ZA
+2709233152,2709233407,DE
+2709233408,2709235199,ZA
+2709235200,2709235455,DE
+2709235456,2709235711,ZA
+2709235712,2709235967,DE
+2709235968,2709236223,ZA
+2709236224,2709236479,DE
+2709236480,2709238271,ZA
+2709238272,2709238527,DE
+2709238528,2709238783,ZA
+2709238784,2709239039,DE
+2709239040,2709240319,ZA
+2709240320,2709240575,DE
+2709240576,2709240831,ZA
+2709240832,2709241087,DE
+2709241088,2709241343,ZA
+2709241344,2709241599,DE
+2709241600,2709241855,ZA
+2709241856,2709242111,DE
2709242112,2709242367,US
-2709242368,2709242623,ZA
+2709242368,2709242623,DE
2709242624,2709242879,US
-2709242880,2709243135,ZA
+2709242880,2709243135,DE
2709243136,2709243391,US
-2709243392,2709243647,ZA
+2709243392,2709243647,DE
2709243648,2709243903,US
2709243904,2709244159,ZA
2709244160,2709244415,US
-2709244416,2709244671,ZA
+2709244416,2709244671,DE
2709244672,2709244927,US
2709244928,2709245183,ZA
2709245184,2709245439,US
-2709245440,2709245695,ZA
+2709245440,2709245695,DE
2709245696,2709245951,US
2709245952,2709246207,ZA
2709246208,2709246463,US
-2709246464,2709247231,ZA
+2709246464,2709246719,DE
+2709246720,2709247231,ZA
2709247232,2709247487,MY
-2709247488,2709247743,ZA
+2709247488,2709247743,DE
2709247744,2709247999,US
2709248000,2709248255,ZA
2709248256,2709248511,US
-2709248512,2709258239,ZA
+2709248512,2709249535,ZA
+2709249536,2709249791,DE
+2709249792,2709250047,ZA
+2709250048,2709250303,DE
+2709250304,2709251071,ZA
+2709251072,2709251327,DE
+2709251328,2709251583,ZA
+2709251584,2709251839,DE
+2709251840,2709252095,ZA
+2709252096,2709252351,DE
+2709252352,2709256703,ZA
+2709256704,2709256959,DE
+2709256960,2709257215,ZA
+2709257216,2709257471,DE
+2709257472,2709258239,ZA
2709258240,2709389311,US
2709389312,2709454847,SG
-2709454848,2709590015,US
-2709590528,2709591039,US
-2709592064,2709593087,US
-2709593344,2709593599,US
+2709454848,2709591551,US
+2709591808,2709593599,US
2709593600,2709593855,CA
-2709594112,2709600255,US
-2709601280,2709601535,CA
+2709593856,2709601279,US
+2709601280,2709601311,CA
+2709601312,2709601343,NL
+2709601344,2709601407,US
+2709601408,2709601535,CA
2709601536,2709606399,US
2709606400,2709618687,CA
2709618688,2709622783,US
2709624832,2709625855,US
-2709625856,2709626879,CA
+2709625856,2709630975,CA
+2709631488,2709631999,CA
2709632000,2709633535,US
2709633536,2709633791,CA
-2709634048,2709635071,US
-2709643264,2709716991,US
+2709633792,2709635071,US
+2709635072,2709643263,CA
+2709643264,2709648383,US
+2709649408,2709716991,US
2709716992,2709782527,CL
2709782528,2709848063,PE
2709848064,2710175743,US
@@ -76943,7 +78011,9 @@
2710831104,2710896639,BR
2710896640,2711093247,US
2711093248,2711158783,AU
-2711158784,2711486463,US
+2711158784,2711371791,US
+2711371792,2711371807,JP
+2711371808,2711486463,US
2711486464,2711551999,NL
2711552000,2712535039,US
2712535040,2712535551,CA
@@ -76981,11 +78051,15 @@
2714376224,2714376239,JP
2714376240,2714377439,US
2714377440,2714377471,SG
-2714377472,2714378463,US
+2714377472,2714378431,US
+2714378432,2714378433,NL
+2714378434,2714378463,US
2714378464,2714378495,HK
2714378496,2714379103,US
2714379104,2714379135,HK
-2714379136,2714380031,US
+2714379136,2714379151,US
+2714379152,2714379152,HK
+2714379153,2714380031,US
2714380032,2714380287,HK
2714380288,2714381311,US
2714381312,2714381567,HK
@@ -76997,7 +78071,9 @@
2714382537,2714382537,HK
2714382538,2714382551,US
2714382552,2714382552,HK
-2714382553,2714382580,US
+2714382553,2714382564,US
+2714382565,2714382565,HK
+2714382566,2714382580,US
2714382581,2714382581,HK
2714382582,2714384907,US
2714384908,2714384911,HK
@@ -77225,8 +78301,8 @@
2731729920,2731739647,US
2731739648,2731740159,CA
2731740160,2731761663,US
-2731761664,2731763711,CA
-2731763712,2731765759,US
+2731761664,2731763455,CA
+2731763456,2731765759,US
2731765760,2731767807,CA
2731767808,2731771903,US
2731771904,2731772927,KY
@@ -77659,7 +78735,9 @@
2737788928,2737789951,MY
2737789952,2737793023,AU
2737793024,2737794047,NZ
-2737794048,2737795071,AU
+2737794048,2737794048,AU
+2737794049,2737794303,NZ
+2737794304,2737795071,AU
2737795072,2737796095,NZ
2737796096,2737799167,AU
2737799168,2737800191,NZ
@@ -77987,7 +79065,9 @@
2760131264,2760131327,IT
2760131328,2760132159,FR
2760132160,2760132223,ES
-2760132224,2760132767,FR
+2760132224,2760132575,FR
+2760132576,2760132583,GB
+2760132584,2760132767,FR
2760132768,2760132783,DE
2760132784,2760132911,FR
2760132912,2760132927,PT
@@ -78157,7 +79237,9 @@
2760168320,2760168447,GB
2760168448,2760169183,FR
2760169184,2760169215,ES
-2760169216,2760169343,FR
+2760169216,2760169279,FR
+2760169280,2760169295,ES
+2760169296,2760169343,FR
2760169344,2760169471,IT
2760169472,2760169503,FI
2760169504,2760169679,FR
@@ -78175,7 +79257,9 @@
2760171440,2760171455,CZ
2760171456,2760174591,FR
2760174592,2760174623,GB
-2760174624,2760175007,FR
+2760174624,2760174655,FR
+2760174656,2760174671,IE
+2760174672,2760175007,FR
2760175008,2760175039,PL
2760175040,2760175295,FR
2760175296,2760175359,ES
@@ -78283,7 +79367,8 @@
2762168320,2762169343,CL
2762169344,2762176511,BR
2762176512,2762177535,AR
-2762177536,2762178559,HN
+2762177536,2762178047,HN
+2762178048,2762178559,US
2762178560,2762179583,AR
2762179584,2762180607,EC
2762180608,2762186751,BR
@@ -78368,7 +79453,9 @@
2773088064,2773090303,ZA
2773090304,2773221375,US
2773221376,2773286911,JP
-2773286912,2773745663,US
+2773286912,2773352447,US
+2773352448,2773417983,RO
+2773417984,2773745663,US
2773745664,2773778431,NZ
2773778432,2773794815,HK
2773794816,2773798911,IN
@@ -78439,7 +79526,9 @@
2780073472,2780073727,AU
2780073728,2780075007,ZA
2780075008,2780075519,US
-2780075520,2780082175,ZA
+2780075520,2780078356,ZA
+2780078357,2780078357,NZ
+2780078358,2780082175,ZA
2780082176,2780083455,CA
2780083456,2780083967,ZA
2780083968,2780084223,CA
@@ -78548,9 +79637,14 @@
2783006464,2783006719,US
2783006720,2783007743,GB
2783007744,2783008255,PL
-2783008256,2783008767,IT
-2783008768,2783009279,BE
-2783009280,2783010815,GB
+2783008256,2783008511,IT
+2783008512,2783008767,GB
+2783008768,2783008815,BE
+2783008816,2783008827,GB
+2783008828,2783008848,BE
+2783008849,2783008849,NL
+2783008850,2783009023,BE
+2783009024,2783010815,GB
2783010816,2783010889,US
2783010890,2783010890,HK
2783010891,2783010943,US
@@ -78738,7 +79832,9 @@
2808328192,2808332287,CA
2808332288,2808336383,GB
2808336384,2808340479,NL
-2808340480,2808545279,US
+2808340480,2808344575,US
+2808344576,2808348671,DE
+2808348672,2808545279,US
2808545280,2808610815,AU
2808610816,2808872959,US
2808872960,2808938495,UY
@@ -78856,7 +79952,9 @@
2816264704,2816264959,US
2816264960,2816264983,IE
2816264984,2816270335,US
-2816270336,2816271615,SG
+2816270336,2816270847,SG
+2816270848,2816271359,IN
+2816271360,2816271615,SG
2816271616,2816271871,JP
2816271872,2816272127,IN
2816272128,2816272383,AU
@@ -78895,7 +79993,8 @@
2818143232,2818144255,MX
2818144256,2818162687,BR
2818162688,2818164735,AR
-2818164736,2818165759,BZ
+2818164736,2818165247,US
+2818165248,2818165759,BZ
2818165760,2818168831,BR
2818168832,2818169855,AR
2818169856,2818178047,BR
@@ -79002,9 +80101,73 @@
2823553024,2823618559,ZA
2823618560,2823684095,PA
2823684096,2823749631,KR
-2823815168,2823888895,SC
-2823888896,2823897087,ZA
-2823897088,2823946239,SC
+2823815168,2823816191,SC
+2823816192,2823817215,US
+2823817216,2823820287,SC
+2823820288,2823821311,US
+2823821312,2823824383,SC
+2823824384,2823825407,US
+2823825408,2823828479,SC
+2823828480,2823829503,US
+2823829504,2823832575,SC
+2823832576,2823833599,US
+2823833600,2823836671,SC
+2823836672,2823837695,US
+2823837696,2823840767,SC
+2823840768,2823841791,US
+2823841792,2823844863,SC
+2823844864,2823845887,US
+2823845888,2823848959,SC
+2823848960,2823849983,US
+2823849984,2823853055,SC
+2823853056,2823854079,US
+2823854080,2823857151,SC
+2823857152,2823858175,US
+2823858176,2823861247,SC
+2823861248,2823862271,US
+2823862272,2823865343,SC
+2823865344,2823866367,US
+2823866368,2823869439,SC
+2823869440,2823870463,US
+2823870464,2823873535,SC
+2823873536,2823874559,US
+2823874560,2823877631,SC
+2823877632,2823878655,US
+2823878656,2823881727,SC
+2823881728,2823882751,US
+2823882752,2823885823,SC
+2823885824,2823886847,US
+2823886848,2823888895,SC
+2823888896,2823889919,ZA
+2823889920,2823890943,US
+2823890944,2823894015,ZA
+2823894016,2823895039,US
+2823895040,2823897087,ZA
+2823897088,2823898111,SC
+2823898112,2823899135,US
+2823899136,2823902207,SC
+2823902208,2823903231,US
+2823903232,2823906303,SC
+2823906304,2823907327,US
+2823907328,2823910399,SC
+2823910400,2823911423,US
+2823911424,2823914495,SC
+2823914496,2823915519,US
+2823915520,2823918591,SC
+2823918592,2823919615,US
+2823919616,2823922687,SC
+2823922688,2823923711,US
+2823923712,2823926783,SC
+2823926784,2823927807,US
+2823927808,2823930879,SC
+2823930880,2823931903,US
+2823931904,2823934975,SC
+2823934976,2823935999,US
+2823936000,2823939071,SC
+2823939072,2823940095,US
+2823940096,2823943167,SC
+2823943168,2823944191,US
+2823944192,2823946239,SC
2823946240,2824011775,US
2824011776,2824077311,AR
2824077312,2824278015,US
@@ -79536,9 +80699,7 @@
2838300672,2838300927,US
2838300928,2838301119,NL
2838301120,2838301183,US
-2838301184,2838301191,NL
-2838301192,2838301199,US
-2838301200,2838301695,NL
+2838301184,2838301695,NL
2838301696,2838301951,US
2838301952,2838304319,NL
2838304320,2838304383,US
@@ -79566,25 +80727,23 @@
2838308192,2838308223,US
2838308224,2838308255,NL
2838308256,2838308271,US
-2838308272,2838309279,NL
-2838309280,2838309295,US
-2838309296,2838309375,NL
-2838309376,2838309407,US
-2838309408,2838315007,NL
+2838308272,2838311311,NL
+2838311312,2838311319,US
+2838311320,2838315007,NL
2838315008,2838331391,US
2838331392,2838331535,NL
2838331536,2838331551,US
2838331552,2838331567,NL
2838331568,2838331583,US
-2838331584,2838331663,NL
-2838331664,2838331679,US
-2838331680,2838331711,NL
+2838331584,2838331711,NL
2838331712,2838331727,US
2838331728,2838331775,NL
2838331776,2838331791,US
2838331792,2838332047,NL
2838332048,2838332051,US
-2838332052,2838332479,NL
+2838332052,2838332353,NL
+2838332354,2838332354,US
+2838332355,2838332479,NL
2838332480,2838332495,US
2838332496,2838333651,NL
2838333652,2838333654,US
@@ -79609,7 +80768,9 @@
2838337440,2838337759,NL
2838337760,2838337761,IN
2838337762,2838337763,US
-2838337764,2838337903,NL
+2838337764,2838337767,NL
+2838337768,2838337769,US
+2838337770,2838337903,NL
2838337904,2838337919,US
2838337920,2838337967,NL
2838337968,2838337983,US
@@ -79617,20 +80778,26 @@
2838338080,2838338127,US
2838338128,2838338271,NL
2838338272,2838338303,JP
-2838338304,2838338535,NL
-2838338536,2838338543,US
-2838338544,2838338567,NL
+2838338304,2838338567,NL
2838338568,2838338575,US
2838338576,2838338703,NL
2838338704,2838338719,IN
-2838338720,2838338771,NL
+2838338720,2838338735,NL
+2838338736,2838338751,US
+2838338752,2838338771,NL
2838338772,2838338773,IN
2838338774,2838338783,US
2838338784,2838338815,NL
2838338816,2838338823,US
-2838338824,2838339247,NL
+2838338824,2838338903,NL
+2838338904,2838338911,US
+2838338912,2838339247,NL
2838339248,2838339263,US
-2838339264,2838339743,NL
+2838339264,2838339439,NL
+2838339440,2838339455,US
+2838339456,2838339711,NL
+2838339712,2838339727,US
+2838339728,2838339743,NL
2838339744,2838339759,US
2838339760,2838339855,NL
2838339856,2838339871,US
@@ -79670,13 +80837,13 @@
2838345216,2838345231,US
2838345232,2838345239,NL
2838345240,2838345247,US
-2838345248,2838345359,NL
-2838345360,2838345375,US
-2838345376,2838345743,NL
+2838345248,2838345743,NL
2838345744,2838345751,US
2838345752,2838345759,NL
2838345760,2838345775,US
-2838345776,2838346559,NL
+2838345776,2838345903,NL
+2838345904,2838345919,US
+2838345920,2838346559,NL
2838346560,2838346591,US
2838346592,2838346687,NL
2838346688,2838346719,US
@@ -79694,9 +80861,7 @@
2838397248,2838397279,JP
2838397280,2838397311,NL
2838397312,2838397343,US
-2838397344,2838397855,NL
-2838397856,2838397871,US
-2838397872,2838398223,NL
+2838397344,2838398223,NL
2838398224,2838398239,US
2838398240,2838398575,NL
2838398576,2838398591,US
@@ -79742,7 +80907,9 @@
2838411328,2838411359,US
2838411360,2838411615,NL
2838411616,2838411623,US
-2838411624,2838414207,NL
+2838411624,2838412287,NL
+2838412288,2838412543,US
+2838412544,2838414207,NL
2838414208,2838414271,US
2838414272,2838414783,NL
2838414784,2838414927,US
@@ -79798,8 +80965,8 @@
2838482306,2838482307,US
2838482308,2838482383,NL
2838482384,2838482399,US
-2838482400,2838482547,NL
-2838482548,2838482551,US
+2838482400,2838482543,NL
+2838482544,2838482551,US
2838482552,2838482695,NL
2838482696,2838482703,US
2838482704,2838482863,NL
@@ -79837,29 +81004,29 @@
2838485376,2838485391,US
2838485392,2838485439,NL
2838485440,2838485447,US
-2838485448,2838485695,NL
+2838485448,2838485631,NL
+2838485632,2838485647,AU
+2838485648,2838485695,NL
2838485696,2838485727,US
2838485728,2838486463,NL
2838486464,2838486495,US
-2838486496,2838486543,NL
-2838486544,2838486559,US
-2838486560,2838486567,NL
+2838486496,2838486567,NL
2838486568,2838486575,US
2838486576,2838487327,NL
2838487328,2838487343,US
2838487344,2838487743,NL
2838487744,2838487807,US
-2838487808,2838487839,NL
-2838487840,2838487855,US
-2838487856,2838488239,NL
+2838487808,2838488127,NL
+2838488128,2838488135,US
+2838488136,2838488239,NL
2838488240,2838488255,US
2838488256,2838488663,NL
2838488664,2838488671,US
-2838488672,2838488911,NL
-2838488912,2838488927,US
-2838488928,2838488943,NL
+2838488672,2838488943,NL
2838488944,2838488959,US
-2838488960,2838489999,NL
+2838488960,2838489431,NL
+2838489432,2838489439,US
+2838489440,2838489999,NL
2838490000,2838490007,US
2838490008,2838491679,NL
2838491680,2838491687,US
@@ -79876,8 +81043,8 @@
2838492968,2838493551,NL
2838493552,2838493567,US
2838493568,2838493711,NL
-2838493712,2838493743,US
-2838493744,2838494063,NL
+2838493712,2838493727,US
+2838493728,2838494063,NL
2838494064,2838494079,US
2838494080,2838494347,NL
2838494348,2838494351,US
@@ -79889,13 +81056,9 @@
2838496624,2838496639,US
2838496640,2838496671,NL
2838496672,2838496703,US
-2838496704,2838511839,NL
-2838511840,2838511847,US
-2838511848,2838511871,NL
+2838496704,2838511871,NL
2838511872,2838511887,US
-2838511888,2838511895,NL
-2838511896,2838511903,US
-2838511904,2838511935,NL
+2838511888,2838511935,NL
2838511936,2838511951,JP
2838511952,2838511983,NL
2838511984,2838511999,JP
@@ -79923,11 +81086,7 @@
2838512880,2838512895,US
2838512896,2838513199,NL
2838513200,2838513215,US
-2838513216,2838513295,NL
-2838513296,2838513311,US
-2838513312,2838513343,NL
-2838513344,2838513347,US
-2838513348,2838513487,NL
+2838513216,2838513487,NL
2838513488,2838513503,US
2838513504,2838513583,NL
2838513584,2838513599,US
@@ -79941,8 +81100,7 @@
2838514250,2838514251,US
2838514252,2838514287,NL
2838514288,2838514303,US
-2838514304,2838514383,NL
-2838514384,2838514399,US
+2838514304,2838514399,NL
2838514400,2838514431,JP
2838514432,2838514511,NL
2838514512,2838514527,US
@@ -79983,8 +81141,8 @@
2838523424,2838523599,NL
2838523600,2838523603,US
2838523604,2838523615,NL
-2838523616,2838523663,US
-2838523664,2838523679,NL
+2838523616,2838523647,US
+2838523648,2838523679,NL
2838523680,2838523711,JP
2838523712,2838523967,NL
2838523968,2838524031,JP
@@ -79992,25 +81150,17 @@
2838524192,2838524223,AF
2838524224,2838524391,NL
2838524392,2838524399,US
-2838524400,2838524431,NL
-2838524432,2838524447,US
-2838524448,2838524631,NL
+2838524400,2838524631,NL
2838524632,2838524671,US
2838524672,2838524735,NL
2838524736,2838524799,US
2838524800,2838525999,NL
2838526000,2838526015,US
-2838526016,2838526151,NL
-2838526152,2838526159,US
-2838526160,2838526471,NL
-2838526472,2838526479,US
-2838526480,2838526639,NL
+2838526016,2838526639,NL
2838526640,2838526655,US
2838526656,2838526695,NL
2838526696,2838526703,US
-2838526704,2838526879,NL
-2838526880,2838526911,US
-2838526912,2838526943,NL
+2838526704,2838526943,NL
2838526944,2838526959,US
2838526960,2838526983,NL
2838526984,2838526991,US
@@ -80042,7 +81192,9 @@
2838529296,2838529303,US
2838529304,2838529319,NL
2838529320,2838529327,US
-2838529328,2838529495,NL
+2838529328,2838529375,NL
+2838529376,2838529407,US
+2838529408,2838529495,NL
2838529496,2838529503,US
2838529504,2838530095,NL
2838530096,2838530111,US
@@ -80054,7 +81206,11 @@
2838530528,2838530559,US
2838530560,2838531367,NL
2838531368,2838531375,US
-2838531376,2838536223,NL
+2838531376,2838531487,NL
+2838531488,2838531519,US
+2838531520,2838531975,NL
+2838531976,2838531979,US
+2838531980,2838536223,NL
2838536224,2838536239,US
2838536240,2838537139,NL
2838537140,2838537143,US
@@ -80074,7 +81230,9 @@
2838539632,2838539647,US
2838539648,2838539951,NL
2838539952,2838539967,US
-2838539968,2838540287,NL
+2838539968,2838539983,NL
+2838539984,2838539999,US
+2838540000,2838540287,NL
2838540288,2838540295,US
2838540296,2838540367,NL
2838540368,2838540383,US
@@ -80082,9 +81240,7 @@
2838540552,2838540575,US
2838540576,2838540687,NL
2838540688,2838540703,US
-2838540704,2838541631,NL
-2838541632,2838541647,US
-2838541648,2838541807,NL
+2838540704,2838541807,NL
2838541808,2838541823,US
2838541824,2838542047,NL
2838542048,2838542063,US
@@ -80112,9 +81268,7 @@
2838545280,2838545295,US
2838545296,2838545599,NL
2838545600,2838545663,US
-2838545664,2838545775,NL
-2838545776,2838545791,US
-2838545792,2838546815,NL
+2838545664,2838546815,NL
2838546816,2838546817,US
2838546818,2838546819,NL
2838546820,2838546823,US
@@ -80146,12 +81300,14 @@
2838550856,2838550863,US
2838550864,2838551383,NL
2838551384,2838551387,US
-2838551388,2838551807,NL
+2838551388,2838551579,NL
+2838551580,2838551583,US
+2838551584,2838551807,NL
2838551808,2838551815,US
2838551816,2838551863,NL
2838551864,2838551871,US
-2838551872,2838551887,NL
-2838551888,2838551935,US
+2838551872,2838551903,NL
+2838551904,2838551935,US
2838551936,2838552111,NL
2838552112,2838552127,BR
2838552128,2838552223,NL
@@ -80167,28 +81323,26 @@
2838554288,2838554431,NL
2838554432,2838554463,US
2838554464,2838554575,NL
-2838554576,2838554583,US
-2838554584,2838554767,NL
+2838554576,2838554579,US
+2838554580,2838554767,NL
2838554768,2838554783,US
2838554784,2838554799,NL
2838554800,2838554815,JP
2838554816,2838555135,NL
2838555136,2838555143,US
-2838555144,2838555287,NL
-2838555288,2838555295,US
-2838555296,2838556671,NL
+2838555144,2838556671,NL
2838556672,2838556687,US
2838556688,2838556831,NL
2838556832,2838556863,US
2838556864,2838557215,NL
2838557216,2838557247,US
-2838557248,2838557839,NL
+2838557248,2838557455,NL
+2838557456,2838557463,US
+2838557464,2838557839,NL
2838557840,2838557855,US
-2838557856,2838559007,NL
-2838559008,2838559023,US
-2838559024,2838559615,NL
-2838559616,2838559631,US
-2838559632,2838559775,NL
+2838557856,2838559023,NL
+2838559024,2838559031,US
+2838559032,2838559775,NL
2838559776,2838559807,US
2838559808,2838560655,NL
2838560656,2838560671,US
@@ -80202,7 +81356,9 @@
2838627632,2838627647,CN
2838627648,2838628319,US
2838628320,2838628351,DE
-2838628352,2838631367,US
+2838628352,2838628436,US
+2838628437,2838628437,DE
+2838628438,2838631367,US
2838631368,2838631375,SA
2838631376,2838631423,US
2838631424,2838631431,CN
@@ -80297,7 +81453,9 @@
2838704512,2838704527,IE
2838704528,2838708223,US
2838708224,2838724607,NO
-2838724608,2838757375,US
+2838724608,2838725007,US
+2838725008,2838725023,JP
+2838725024,2838757375,US
2838757376,2838822911,CH
2838822912,2838840095,US
2838840096,2838840127,HK
@@ -80319,7 +81477,9 @@
2838870112,2838870127,CA
2838870128,2838871185,US
2838871186,2838871187,JP
-2838871188,2838871295,US
+2838871188,2838871197,US
+2838871198,2838871199,JP
+2838871200,2838871295,US
2838871296,2838871311,CA
2838871312,2838871327,US
2838871328,2838871343,CA
@@ -80389,9 +81549,7 @@
2838987992,2838987999,CA
2838988000,2838988639,US
2838988640,2838988671,CA
-2838988672,2838988687,US
-2838988688,2838988703,CA
-2838988704,2838989671,US
+2838988672,2838989671,US
2838989672,2838989679,CA
2838989680,2838990719,US
2838990720,2838990751,CA
@@ -80425,9 +81583,7 @@
2839035904,2839052287,KR
2839052288,2839055063,US
2839055064,2839055065,NL
-2839055066,2839056783,US
-2839056784,2839056799,JP
-2839056800,2839057455,US
+2839055066,2839057455,US
2839057456,2839057471,NL
2839057472,2839085055,US
2839085056,2839117823,MX
@@ -80442,11 +81598,7 @@
2839315472,2839315487,JP
2839315488,2839322415,US
2839322416,2839322431,JP
-2839322432,2839323951,US
-2839323952,2839323967,NL
-2839323968,2839324287,US
-2839324288,2839324303,AU
-2839324304,2839325599,US
+2839322432,2839325599,US
2839325600,2839325631,JP
2839325632,2839328383,US
2839328384,2839328399,JP
@@ -80454,17 +81606,21 @@
2839349696,2839349711,NL
2839349712,2839351855,US
2839351856,2839351871,AF
-2839351872,2839363903,US
-2839363904,2839363911,AU
-2839363912,2839365791,US
-2839365792,2839365807,JP
-2839365808,2839371871,US
+2839351872,2839355407,US
+2839355408,2839355423,AU
+2839355424,2839356047,US
+2839356048,2839356063,JP
+2839356064,2839358015,US
+2839358016,2839358023,CA
+2839358024,2839370895,US
+2839370896,2839370911,AU
+2839370912,2839371871,US
2839371872,2839371903,JP
-2839371904,2839431487,US
-2839431488,2839431503,NL
-2839431504,2839434159,US
+2839371904,2839434159,US
2839434160,2839434175,CN
-2839434176,2840015359,US
+2839434176,2839435439,US
+2839435440,2839435455,AU
+2839435456,2840015359,US
2840015360,2840015615,GB
2840015616,2843803647,US
2843803648,2843869183,ZA
@@ -80489,7 +81645,9 @@
2848212992,2848215039,GB
2848215040,2848244735,US
2848244736,2848245759,GB
-2848245760,2848522239,US
+2848245760,2848284671,US
+2848284672,2848285695,RU
+2848285696,2848522239,US
2848587776,2848653311,ZA
2848653312,2848980991,US
2848980992,2850029567,KR
@@ -80644,7 +81802,9 @@
2854295552,2854297599,SG
2854297600,2854299647,DE
2854299648,2854354943,SG
-2854354944,2854617087,US
+2854354944,2854603519,US
+2854603520,2854604543,NL
+2854604544,2854617087,US
2854617088,2854682623,MY
2854748160,2855288831,US
2855288832,2855305215,GB
@@ -81519,7 +82679,8 @@
2890256384,2890257407,US
2890257408,2890259455,CA
2890259456,2890260479,LU
-2890260480,2890956799,US
+2890260480,2890261503,FR
+2890261504,2890956799,US
2890956800,2890989567,AE
2890989568,2891017215,US
2891017216,2891017471,JP
@@ -81535,7 +82696,11 @@
2891058944,2891059199,FR
2891059200,2891120639,US
2891120640,2891120895,CA
-2891120896,2891134975,US
+2891120896,2891130897,US
+2891130898,2891130907,CA
+2891130908,2891130943,US
+2891130944,2891130951,CA
+2891130952,2891134975,US
2891134976,2891135999,CA
2891136000,2891138047,US
2891138048,2891141119,CA
@@ -81589,9 +82754,7 @@
2891807232,2891807487,GB
2891807488,2891807743,US
2891807744,2891808767,CA
-2891808768,2891824127,US
-2891824128,2891824639,AR
-2891824640,2891841535,US
+2891808768,2891841535,US
2891841536,2891841791,SE
2891841792,2891842303,US
2891842304,2891842559,GB
@@ -81768,7 +82931,9 @@
2892424192,2892425215,CA
2892425216,2892443647,US
2892443648,2892447743,CA
-2892447744,2892464127,US
+2892447744,2892453887,US
+2892453888,2892455935,SE
+2892455936,2892464127,US
2892464128,2892496895,CA
2892496896,2892505087,US
2892505088,2892513279,SG
@@ -81777,7 +82942,9 @@
2892537856,2892546047,SG
2892546048,2892560817,US
2892560818,2892560818,DE
-2892560819,2892611583,US
+2892560819,2892561013,US
+2892561014,2892561014,DE
+2892561015,2892611583,US
2892611584,2892627967,JP
2892627968,2892906495,US
2892906496,2892910591,CA
@@ -81888,7 +83055,8 @@
2893012480,2893015039,US
2893015040,2893015295,CA
2893015296,2893015551,BS
-2893015552,2893016575,US
+2893015552,2893015807,HK
+2893015808,2893016575,US
2893016576,2893016831,SE
2893016832,2893017343,CA
2893017344,2893017599,SG
@@ -82066,7 +83234,7 @@
2905464832,2905473023,US
2905473024,2905481215,CA
2905481216,2905494783,US
-2905494784,2905495039,DE
+2905494784,2905495039,CH
2905495040,2905510911,US
2905510912,2905511935,CA
2905511936,2905512959,US
@@ -82298,7 +83466,9 @@
2917828480,2917828607,NL
2917828608,2917842175,US
2917842176,2917842431,CA
-2917842432,2918014975,US
+2917842432,2917851207,US
+2917851208,2917851215,CA
+2917851216,2918014975,US
2918014976,2918023167,CA
2918023168,2918043647,US
2918043648,2918047743,CA
@@ -82364,7 +83534,11 @@
2918498536,2918498539,JP
2918498540,2918502911,US
2918502912,2918503167,SG
-2918503168,2918527231,US
+2918503168,2918514943,US
+2918514944,2918515079,CA
+2918515080,2918515199,US
+2918515200,2918515327,CA
+2918515328,2918527231,US
2918527232,2918527487,FR
2918527488,2918536719,US
2918536720,2918536727,CA
@@ -82426,7 +83600,8 @@
2919205028,2919205031,NL
2919205032,2919206655,US
2919206656,2919206911,SG
-2919206912,2919211007,CA
+2919206912,2919208959,JE
+2919208960,2919211007,CA
2919211008,2919235583,US
2919235584,2919759871,CA
2919759872,2921512703,US
@@ -82833,7 +84008,9 @@
2954822928,2954822931,DE
2954822932,2954823259,FR
2954823260,2954823263,GB
-2954823264,2954823687,FR
+2954823264,2954823327,FR
+2954823328,2954823331,GB
+2954823332,2954823687,FR
2954823688,2954823695,NL
2954823696,2954823887,FR
2954823888,2954823891,ES
@@ -82860,7 +84037,9 @@
2954824992,2954825007,ES
2954825008,2954825063,FR
2954825064,2954825067,ES
-2954825068,2954825183,FR
+2954825068,2954825087,FR
+2954825088,2954825095,CZ
+2954825096,2954825183,FR
2954825184,2954825191,ES
2954825192,2954825247,FR
2954825248,2954825263,GB
@@ -82938,7 +84117,9 @@
2954830524,2954830527,DE
2954830528,2954831247,FR
2954831248,2954831251,ES
-2954831252,2954831807,FR
+2954831252,2954831787,FR
+2954831788,2954831791,CZ
+2954831792,2954831807,FR
2954831808,2954831823,ES
2954831824,2954832003,FR
2954832004,2954832007,BE
@@ -83100,7 +84281,9 @@
2954842248,2954842251,ES
2954842252,2954842375,FR
2954842376,2954842383,ES
-2954842384,2954842471,FR
+2954842384,2954842451,FR
+2954842452,2954842455,CZ
+2954842456,2954842471,FR
2954842472,2954842479,GB
2954842480,2954843043,FR
2954843044,2954843047,GB
@@ -83117,7 +84300,9 @@
2954844224,2954844239,DE
2954844240,2954844263,FR
2954844264,2954844267,IE
-2954844268,2954844943,FR
+2954844268,2954844603,FR
+2954844604,2954844607,CZ
+2954844608,2954844943,FR
2954844944,2954844947,GB
2954844948,2954844999,FR
2954845000,2954845003,ES
@@ -83125,7 +84310,8 @@
2954845056,2954845059,PT
2954845060,2954845087,FR
2954845088,2954845091,FI
-2954845092,2954845283,FR
+2954845092,2954845279,FR
+2954845280,2954845283,CZ
2954845284,2954845287,GB
2954845288,2954845291,PL
2954845292,2954845363,FR
@@ -83144,7 +84330,9 @@
2954854608,2954854615,ES
2954854616,2954854751,FR
2954854752,2954854783,PT
-2954854784,2954855051,FR
+2954854784,2954855011,FR
+2954855012,2954855015,CZ
+2954855016,2954855051,FR
2954855052,2954855055,ES
2954855056,2954855059,FR
2954855060,2954855063,ES
@@ -83212,7 +84400,9 @@
2954859960,2954859963,ES
2954859964,2954860459,FR
2954860460,2954860463,GB
-2954860464,2954861651,FR
+2954860464,2954861195,FR
+2954861196,2954861199,CZ
+2954861200,2954861651,FR
2954861652,2954861655,GB
2954861656,2954861763,FR
2954861764,2954861767,GB
@@ -83321,7 +84511,9 @@
2954876872,2954876875,ES
2954876876,2954876887,FR
2954876888,2954876891,ES
-2954876892,2954877103,FR
+2954876892,2954877007,FR
+2954877008,2954877023,CZ
+2954877024,2954877103,FR
2954877104,2954877107,PL
2954877108,2954877163,FR
2954877164,2954877167,ES
@@ -83419,7 +84611,7 @@
2956472320,2956474367,RU
2956474368,2956476415,GB
2956476416,2956492799,ES
-2956492800,2956496895,CH
+2956492800,2956496895,IT
2956496896,2956500991,IR
2956500992,2956503039,NL
2956503040,2956504063,CY
@@ -83565,7 +84757,7 @@
2957203116,2957203119,NO
2957203120,2957203123,US
2957203124,2957203127,MT
-2957203128,2957203131,XK
+2957203128,2957203131,RS
2957203132,2957203196,GB
2957203200,2957203455,GB
2957203456,2957205503,FR
@@ -83641,6 +84833,7 @@
2959179776,2959181823,RU
2959181824,2959183871,PL
2959183872,2959185919,RO
+2959185920,2959186943,UA
2959186944,2959187455,CY
2959187456,2959187711,AT
2959187712,2959187967,FR
@@ -84029,7 +85222,9 @@
2961065216,2961065471,AU
2961065472,2961065727,SE
2961065728,2961066239,HK
-2961066240,2961067519,DE
+2961066240,2961066495,DE
+2961066496,2961066751,BG
+2961066752,2961067519,DE
2961067520,2961067775,GB
2961067776,2961068543,DE
2961068544,2961068799,NL
@@ -84050,7 +85245,9 @@
2961096704,2961097471,GB
2961097472,2961102847,RO
2961102848,2961103871,DE
-2961103872,2961104895,RO
+2961103872,2961104383,RO
+2961104384,2961104639,PL
+2961104640,2961104895,RO
2961104896,2961106943,GB
2961106944,2961107967,NL
2961107968,2961108991,RO
@@ -84233,7 +85430,8 @@
2987548672,2987552767,RU
2987552768,2987556863,GB
2987556864,2987560959,NL
-2987560960,2987565055,DE
+2987560960,2987560967,CH
+2987560968,2987565055,DE
2987565056,2987569151,AT
2987569152,2987573247,FR
2987573248,2987577343,TR
@@ -84403,18 +85601,24 @@
2988442848,2988442863,IT
2988442864,2988442999,FR
2988443000,2988443007,GB
-2988443008,2988443103,FR
+2988443008,2988443023,FR
+2988443024,2988443027,CZ
+2988443028,2988443103,FR
2988443104,2988443119,GB
2988443120,2988443263,FR
2988443264,2988443295,ES
-2988443296,2988443543,FR
+2988443296,2988443439,FR
+2988443440,2988443443,CZ
+2988443444,2988443543,FR
2988443544,2988443547,ES
2988443548,2988443671,FR
2988443672,2988443675,ES
2988443676,2988443687,FR
2988443688,2988443695,ES
2988443696,2988443703,PT
-2988443704,2988443895,FR
+2988443704,2988443719,FR
+2988443720,2988443727,CZ
+2988443728,2988443895,FR
2988443896,2988443903,BE
2988443904,2988444115,FR
2988444116,2988444119,IT
@@ -84498,7 +85702,9 @@
2988459716,2988459719,FI
2988459720,2988459967,FR
2988459968,2988459999,ES
-2988460000,2988460143,FR
+2988460000,2988460131,FR
+2988460132,2988460135,CZ
+2988460136,2988460143,FR
2988460144,2988460147,GB
2988460148,2988460151,FR
2988460152,2988460159,ES
@@ -84561,7 +85767,9 @@
2988465216,2988465219,ES
2988465220,2988465407,FR
2988465408,2988465423,CH
-2988465424,2988465551,FR
+2988465424,2988465543,FR
+2988465544,2988465547,CZ
+2988465548,2988465551,FR
2988465552,2988465563,ES
2988465564,2988465575,FR
2988465576,2988465583,ES
@@ -84647,7 +85855,7 @@
2988482808,2988482863,FR
2988482864,2988482871,ES
2988482872,2988482875,PT
-2988482876,2988482879,FR
+2988482876,2988482879,CZ
2988482880,2988482883,PL
2988482884,2988483027,FR
2988483028,2988483031,ES
@@ -84833,7 +86041,9 @@
2988502032,2988502035,IE
2988502036,2988502051,FR
2988502052,2988502055,PL
-2988502056,2988502263,FR
+2988502056,2988502099,FR
+2988502100,2988502103,CZ
+2988502104,2988502263,FR
2988502264,2988502267,ES
2988502268,2988502479,FR
2988502480,2988502483,ES
@@ -84941,7 +86151,9 @@
2988510080,2988510087,ES
2988510088,2988510095,FR
2988510096,2988510099,ES
-2988510100,2988510175,FR
+2988510100,2988510111,FR
+2988510112,2988510143,CZ
+2988510144,2988510175,FR
2988510176,2988510191,DE
2988510192,2988510311,FR
2988510312,2988510319,GB
@@ -85130,7 +86342,9 @@
2988539936,2988539967,GB
2988539968,2988539971,FR
2988539972,2988539975,ES
-2988539976,2988540207,FR
+2988539976,2988540003,FR
+2988540004,2988540007,CZ
+2988540008,2988540207,FR
2988540208,2988540211,GB
2988540212,2988540271,FR
2988540272,2988540275,ES
@@ -85164,7 +86378,9 @@
2988542272,2988542335,ES
2988542336,2988542339,FR
2988542340,2988542340,PT
-2988542341,2988542519,FR
+2988542341,2988542367,FR
+2988542368,2988542399,CZ
+2988542400,2988542519,FR
2988542520,2988542523,GB
2988542524,2988543127,FR
2988543128,2988543135,ES
@@ -85239,7 +86455,9 @@
2988547584,2988547599,ES
2988547600,2988547619,FR
2988547620,2988547623,PT
-2988547624,2988547751,FR
+2988547624,2988547691,FR
+2988547692,2988547695,CZ
+2988547696,2988547751,FR
2988547752,2988547759,ES
2988547760,2988547775,FR
2988547776,2988547807,ES
@@ -85295,7 +86513,9 @@
2988551568,2988551583,IE
2988551584,2988551671,FR
2988551672,2988551675,DE
-2988551676,2988551903,FR
+2988551676,2988551743,FR
+2988551744,2988551759,CZ
+2988551760,2988551903,FR
2988551904,2988551911,GB
2988551912,2988552591,FR
2988552592,2988552595,FI
@@ -85350,12 +86570,14 @@
2988555552,2988555559,PT
2988555560,2988556139,FR
2988556140,2988556143,DE
-2988556144,2988556203,FR
+2988556144,2988556199,FR
+2988556200,2988556203,CZ
2988556204,2988556207,FI
2988556208,2988556211,DE
2988556212,2988556223,FR
2988556224,2988556227,ES
-2988556228,2988556255,FR
+2988556228,2988556251,FR
+2988556252,2988556255,CZ
2988556256,2988556259,ES
2988556260,2988556263,FR
2988556264,2988556271,GB
@@ -85552,7 +86774,58 @@
2993684480,2993946623,AT
2993946624,2994208767,BE
2994208768,2994733055,BY
-2994733056,2994798591,GR
+2994733056,2994733311,NL
+2994733312,2994734591,GR
+2994734592,2994734847,NL
+2994734848,2994735615,GR
+2994735616,2994736127,NL
+2994736128,2994737407,GR
+2994737408,2994737663,NL
+2994737664,2994738175,GR
+2994738176,2994738431,NL
+2994738432,2994738943,GR
+2994738944,2994739199,NL
+2994739200,2994739711,GR
+2994739712,2994739967,NL
+2994739968,2994742271,GR
+2994742272,2994742527,NL
+2994742528,2994743295,GR
+2994743296,2994744319,NL
+2994744320,2994745087,GR
+2994745088,2994745343,NL
+2994745344,2994745855,GR
+2994745856,2994746111,NL
+2994746112,2994746367,GR
+2994746368,2994746879,NL
+2994746880,2994747391,GR
+2994747392,2994747903,NL
+2994747904,2994749439,GR
+2994749440,2994750207,NL
+2994750208,2994750463,GR
+2994750464,2994750719,NL
+2994750720,2994750975,GR
+2994750976,2994751743,NL
+2994751744,2994751999,GR
+2994752000,2994752255,NL
+2994752256,2994752511,GR
+2994752512,2994753535,NL
+2994753536,2994754047,GR
+2994754048,2994754559,NL
+2994754560,2994754815,GR
+2994754816,2994755839,NL
+2994755840,2994756351,GR
+2994756352,2994756607,NL
+2994756608,2994756863,GR
+2994756864,2994757375,NL
+2994757376,2994758143,GR
+2994758144,2994758399,NL
+2994758400,2994759167,GR
+2994759168,2994759423,NL
+2994759424,2994759679,GR
+2994759680,2994760191,NL
+2994760192,2994760447,GR
+2994760448,2994761471,NL
+2994761472,2994798591,GR
2994798592,2994929663,RU
2994929664,2994995199,IR
2994995200,2994997247,NL
@@ -85892,9 +87165,7 @@
3000537088,3000539135,CZ
3000539136,3000543231,RU
3000543232,3000544255,UA
-3000544256,3000544511,RU
-3000544512,3000544767,UA
-3000544768,3000547327,RU
+3000544256,3000547327,RU
3000547328,3000549375,UA
3000549376,3000551423,SE
3000551424,3000553471,PL
@@ -86297,8 +87568,8 @@
3005897216,3005897471,PA
3005897472,3005897727,CO
3005897728,3005897983,PA
-3005897984,3005899519,CO
-3005899520,3005900031,PA
+3005897984,3005899775,CO
+3005899776,3005900031,PA
3005900032,3005900543,CO
3005900544,3005900799,PA
3005900800,3005901055,CO
@@ -86330,7 +87601,9 @@
3005960192,3005965311,PE
3005965312,3005966335,AR
3005966336,3005968383,CO
-3005968384,3005972479,AR
+3005968384,3005969151,AR
+3005969152,3005969167,US
+3005969168,3005972479,AR
3005972480,3005988863,CH
3005988864,3006005247,DO
3006005248,3006267391,VE
@@ -86649,8 +87922,8 @@
3007184384,3007184895,BR
3007184896,3007250431,AR
3007250432,3007283711,CR
-3007283712,3007284223,PA
-3007284224,3007284735,CR
+3007283712,3007284479,PA
+3007284480,3007284735,CR
3007284736,3007285247,PA
3007285248,3007285503,CR
3007285504,3007285759,PA
@@ -87322,7 +88595,7 @@
3049754624,3049762815,AR
3049762816,3049766911,HN
3049766912,3049775103,ES
-3049775104,3049783295,PA
+3049775104,3049783295,GY
3049783296,3050045439,CL
3050045440,3050307583,CO
3050307584,3050373119,VE
@@ -87521,13 +88794,17 @@
3050789968,3050789968,US
3050789969,3050790015,BR
3050790016,3050790143,US
-3050790144,3050790271,BR
+3050790144,3050790151,BR
+3050790152,3050790159,US
+3050790160,3050790271,BR
3050790272,3050790399,US
3050790400,3050790463,BR
3050790464,3050790464,US
3050790465,3050790527,BR
3050790528,3050790655,US
-3050790656,3050790783,BR
+3050790656,3050790755,BR
+3050790756,3050790759,US
+3050790760,3050790783,BR
3050790784,3050800383,US
3050800384,3050800399,AL
3050800400,3050800415,AD
@@ -87663,9 +88940,7 @@
3051394304,3051395071,US
3051395072,3051395327,NL
3051395328,3051396095,PA
-3051396096,3051396351,US
-3051396352,3051396607,PA
-3051396608,3051396863,US
+3051396096,3051396863,US
3051396864,3051397119,PA
3051397120,3051398143,CO
3051398144,3051399167,AR
@@ -88004,9 +89279,7 @@
3088869376,3088870143,NL
3088870144,3088871423,US
3088871424,3088871935,NL
-3088871936,3088882687,US
-3088882688,3088883199,NL
-3088883200,3088902143,US
+3088871936,3088902143,US
3088902144,3088902655,NL
3088902656,3088913663,US
3088913664,3088913919,NL
@@ -88144,7 +89417,11 @@
3097143824,3097143831,BD
3097143832,3097493503,US
3097493504,3097772031,CA
-3097772032,3098095615,US
+3097772032,3097821567,US
+3097821568,3097821631,CA
+3097821632,3097823487,US
+3097823488,3097823743,CA
+3097823744,3098095615,US
3098095616,3098099711,CA
3098099712,3098099967,US
3098099968,3098100735,SE
@@ -88193,7 +89470,9 @@
3098431488,3098435071,US
3098435072,3098435327,NL
3098435328,3098435583,CA
-3098435584,3098441215,US
+3098435584,3098436607,US
+3098436608,3098437631,BR
+3098437632,3098441215,US
3098441216,3098441727,FR
3098441728,3098476543,US
3098476544,3098492927,CA
@@ -88222,6 +89501,7 @@
3103855360,3103855615,RU
3103855616,3103855871,ES
3103855872,3103856127,AT
+3103856128,3103856383,ES
3103856384,3103856639,RU
3103856640,3103856895,HU
3103856896,3103857151,CZ
@@ -88247,7 +89527,7 @@
3103862016,3103862271,MD
3103862272,3103862527,IT
3103862528,3103862783,FR
-3103862784,3103863039,DE
+3103862784,3103863039,TR
3103863040,3103863295,RU
3103863296,3103863807,UA
3103863808,3103864063,NL
@@ -88308,6 +89588,7 @@
3103879168,3103879423,NL
3103879424,3103879679,LT
3103879680,3103880191,IT
+3103880192,3103880447,PT
3103916032,3103917055,CH
3103917056,3103918079,IT
3103918080,3103919103,DE
@@ -88888,9 +90169,7 @@
3104495616,3104496639,JO
3104496640,3104497663,DK
3104497664,3104498687,CH
-3104498688,3104499271,NL
-3104499272,3104499279,US
-3104499280,3104500735,NL
+3104498688,3104500735,NL
3104500736,3104501759,CZ
3104501760,3104502783,LY
3104502784,3104503807,DE
@@ -90191,7 +91470,9 @@
3105788928,3105789951,SA
3105789952,3105790975,SE
3105790976,3105791999,DE
-3105792000,3105793023,CZ
+3105792000,3105792511,CZ
+3105792512,3105792767,ES
+3105792768,3105793023,CZ
3105793024,3105794047,NL
3105794048,3105795071,ES
3105795072,3105796095,LU
@@ -90220,8 +91501,8 @@
3105818624,3105819647,NL
3105819648,3105820671,GB
3105820672,3105820927,NL
-3105820928,3105821183,DE
-3105821184,3105821695,GB
+3105820928,3105821439,DE
+3105821440,3105821695,GB
3105821696,3105822719,ES
3105822720,3105823743,PL
3105823744,3105824767,AT
@@ -90494,7 +91775,8 @@
3106072576,3106073599,GB
3106073600,3106074623,PL
3106074624,3106076671,RU
-3106076672,3106078463,GB
+3106076672,3106077695,IT
+3106077696,3106078463,GB
3106078464,3106078719,JP
3106078720,3106080767,RU
3106080768,3106081791,UA
@@ -91324,7 +92606,8 @@
3106857984,3106859007,FR
3106859008,3106860031,NL
3106860032,3106861055,UA
-3106861056,3106863103,PL
+3106861056,3106862079,PT
+3106862080,3106863103,PL
3106863104,3106864127,UA
3106864128,3106865151,IE
3106865152,3106866175,NL
@@ -91748,7 +93031,9 @@
3107277824,3107278847,UA
3107278848,3107279871,FR
3107279872,3107280895,FI
-3107280896,3107281919,NL
+3107280896,3107281151,NL
+3107281152,3107281407,IS
+3107281408,3107281919,NL
3107281920,3107282943,GB
3107282944,3107283967,PL
3107283968,3107284991,AL
@@ -92259,7 +93544,9 @@
3107755008,3107756031,FR
3107756032,3107757055,RU
3107757056,3107758079,NL
-3107758080,3107759103,NO
+3107758080,3107758591,NO
+3107758592,3107758847,SE
+3107758848,3107759103,NO
3107759104,3107760127,FR
3107760128,3107761151,IL
3107761152,3107762175,NO
@@ -92365,7 +93652,7 @@
3107869696,3107870719,GB
3107870720,3107871743,DE
3107871744,3107872767,PL
-3107872768,3107873791,LV
+3107872768,3107873791,GB
3107873792,3107874815,RU
3107874816,3107875839,CH
3107875840,3107876863,CZ
@@ -93343,9 +94630,7 @@
3108873984,3108874111,SG
3108874112,3108874239,ID
3108874240,3108875263,ES
-3108875264,3108875439,GB
-3108875440,3108875447,IT
-3108875448,3108876287,GB
+3108875264,3108876287,GB
3108876288,3108877311,ES
3108877312,3108878335,FR
3108878336,3108879359,ES
@@ -94160,11 +95445,7 @@
3109673126,3109673126,GB
3109673127,3109673131,US
3109673132,3109673132,GB
-3109673133,3109673186,US
-3109673187,3109673187,GB
-3109673188,3109673191,US
-3109673192,3109673192,GB
-3109673193,3109673215,US
+3109673133,3109673215,US
3109673216,3109673463,GB
3109673464,3109673467,NO
3109673468,3109673727,GB
@@ -94535,8 +95816,7 @@
3109999616,3110001663,UA
3110001664,3110002687,FR
3110002688,3110003711,RU
-3110003712,3110003967,BE
-3110003968,3110004735,NL
+3110003712,3110004735,NL
3110004736,3110005759,GB
3110005760,3110006783,NL
3110006784,3110007807,NO
@@ -94931,7 +96211,7 @@
3110345728,3110346751,FR
3110346752,3110347775,IT
3110347776,3110348799,NL
-3110348800,3110349823,US
+3110348800,3110349823,BN
3110349824,3110350847,IR
3110350848,3110351871,DE
3110351872,3110352895,RU
@@ -95186,9 +96466,7 @@
3110593536,3110594303,GB
3110594304,3110594559,SE
3110594560,3110595583,DE
-3110595584,3110596607,NL
-3110596608,3110597119,SE
-3110597120,3110597631,NL
+3110595584,3110597631,NL
3110597632,3110599679,IR
3110599680,3110600191,RU
3110600192,3110600703,UA
@@ -95258,7 +96536,8 @@
3110664192,3110665215,RU
3110665216,3110666239,LB
3110666240,3110667263,LU
-3110667264,3110668287,RO
+3110667264,3110668031,RO
+3110668032,3110668287,US
3110668288,3110669311,PL
3110669312,3110671359,ES
3110671360,3110672383,AT
@@ -95392,8 +96671,7 @@
3110799360,3110800383,GB
3110800384,3110801407,DK
3110801408,3110802431,ES
-3110802432,3110803455,DE
-3110803456,3110804479,NL
+3110802432,3110804479,DE
3110804480,3110806527,IR
3110806528,3110809599,NL
3110809600,3110810623,LB
@@ -95939,7 +97217,7 @@
3111370752,3111371007,DE
3111371008,3111371263,US
3111371264,3111371519,GB
-3111371520,3111371775,DE
+3111371520,3111371775,US
3111371776,3111373823,GB
3111373824,3111374847,GR
3111374848,3111375871,TR
@@ -96382,7 +97660,8 @@
3111823360,3111824383,NL
3111824384,3111825407,PL
3111825408,3111825919,GB
-3111825920,3111826431,RU
+3111825920,3111826175,LT
+3111826176,3111826431,RU
3111826432,3111827455,DE
3111827456,3111828479,ES
3111828480,3111829503,DK
@@ -96955,7 +98234,9 @@
3112349696,3112350719,HU
3112350720,3112351743,PL
3112351744,3112351999,DE
-3112352000,3112352767,RO
+3112352000,3112352255,RO
+3112352256,3112352511,SG
+3112352512,3112352767,RO
3112352768,3112353791,DK
3112353792,3112354815,DE
3112354816,3112355839,GB
@@ -97240,7 +98521,8 @@
3112663040,3112664063,PL
3112664064,3112665087,FR
3112665088,3112666111,GB
-3112666112,3112667135,CZ
+3112666112,3112666623,FR
+3112666624,3112667135,CZ
3112667136,3112668159,DE
3112668160,3112669183,UA
3112669184,3112670207,CZ
@@ -97421,7 +98703,7 @@
3112845312,3112846335,SE
3112846336,3112847359,CZ
3112847360,3112848383,NO
-3112848384,3112849407,UA
+3112848384,3112849407,RU
3112849408,3112850431,NL
3112850432,3112851455,TR
3112851456,3112852479,RU
@@ -97435,7 +98717,7 @@
3112859648,3112860671,IQ
3112860672,3112861695,AT
3112861696,3112862719,RU
-3112862720,3112863743,GB
+3112862720,3112863743,PS
3112863744,3112865791,DE
3112865792,3112866815,DK
3112866816,3112867839,FR
@@ -97547,9 +98829,7 @@
3112972288,3112973311,US
3112973312,3112973567,SE
3112973568,3112973823,DE
-3112973824,3112973916,UA
-3112973917,3112973917,BV
-3112973918,3112974079,UA
+3112973824,3112974079,UA
3112974080,3112974083,HU
3112974084,3112974087,AT
3112974088,3112974335,HU
@@ -97662,7 +98942,7 @@
3113075456,3113075711,GB
3113075712,3113076735,RS
3113076736,3113077759,DE
-3113077760,3113078015,GB
+3113077760,3113078015,AT
3113078016,3113078271,NL
3113078272,3113078783,GB
3113078784,3113079807,BE
@@ -97685,7 +98965,7 @@
3113097472,3113097727,GB
3113097728,3113098239,DE
3113098240,3113099263,IE
-3113099264,3113100287,NL
+3113099264,3113100287,US
3113100288,3113102335,LB
3113102336,3113103359,ES
3113103360,3113104383,SK
@@ -97701,7 +98981,7 @@
3113113600,3113114623,IT
3113114624,3113115647,IR
3113115648,3113116671,RU
-3113116672,3113117695,NL
+3113116672,3113117695,ES
3113117696,3113118719,KW
3113118720,3113120767,DE
3113120768,3113121791,GB
@@ -97963,7 +99243,7 @@
3113358336,3113359359,CZ
3113359360,3113360383,FR
3113360384,3113361407,BG
-3113361408,3113362431,US
+3113361408,3113362431,RO
3113362432,3113363455,DE
3113363456,3113364479,FR
3113364480,3113365503,GB
@@ -98000,8 +99280,7 @@
3113398272,3113399295,GE
3113399296,3113401343,IE
3113401344,3113402367,NL
-3113402368,3113403391,GB
-3113403392,3113404415,DE
+3113402368,3113404415,DE
3113404416,3113405439,NO
3113405440,3113406463,DE
3113406464,3113407487,DK
@@ -98389,8 +99668,7 @@
3113718784,3113719807,SY
3113719808,3113720831,DE
3113720832,3113721855,BG
-3113721856,3113722623,US
-3113722624,3113722879,GB
+3113721856,3113722879,US
3113722880,3113723903,CH
3113723904,3113725951,CZ
3113725952,3113726975,ES
@@ -98546,9 +99824,10 @@
3113878528,3113879551,US
3113879552,3113880575,ES
3113880576,3113881599,NL
-3113881600,3113881855,RO
+3113881600,3113881855,NO
3113881856,3113882111,GB
-3113882112,3113882623,RO
+3113882112,3113882367,RO
+3113882368,3113882623,DK
3113882624,3113883647,RU
3113883648,3113884671,ES
3113884672,3113885695,DE
@@ -98683,7 +99962,8 @@
3114015744,3114016767,TR
3114016768,3114017791,PL
3114017792,3114018815,CZ
-3114018816,3114019839,UA
+3114018816,3114019071,PL
+3114019072,3114019839,UA
3114019840,3114020863,IR
3114020864,3114021887,GB
3114021888,3114022911,UA
@@ -98724,8 +100004,8 @@
3114060800,3114061823,DE
3114061824,3114062847,NL
3114062848,3114063871,LB
-3114063872,3114064383,AT
-3114064384,3114064895,ES
+3114063872,3114064127,AT
+3114064128,3114064895,ES
3114064896,3114065919,CH
3114065920,3114066943,DE
3114066944,3114067967,CH
@@ -98753,8 +100033,7 @@
3114091520,3114092543,BE
3114092544,3114093567,CH
3114093568,3114094591,UA
-3114094592,3114095359,PL
-3114095360,3114095615,DE
+3114094592,3114095615,PL
3114095616,3114096639,DK
3114096640,3114097663,NO
3114097664,3114098687,ES
@@ -98882,7 +100161,9 @@
3114199040,3114201087,IT
3114201088,3114203135,GB
3114203136,3114203391,RO
-3114203392,3114204159,NL
+3114203392,3114203647,NL
+3114203648,3114203903,GB
+3114203904,3114204159,NL
3114204160,3114205183,ES
3114205184,3114206207,IT
3114206208,3114207231,NL
@@ -99314,7 +100595,9 @@
3114600448,3114603519,DE
3114603520,3114604543,TR
3114604544,3114605567,BG
-3114605568,3114606591,IR
+3114605568,3114606079,IR
+3114606080,3114606335,GB
+3114606336,3114606591,IR
3114606592,3114607615,FR
3114607616,3114608639,SK
3114608640,3114609663,IR
@@ -99886,8 +101169,7 @@
3115176960,3115177983,IT
3115177984,3115179007,NL
3115179008,3115180031,SE
-3115180032,3115180287,US
-3115180288,3115180543,DE
+3115180032,3115180543,US
3115180544,3115180799,CY
3115180800,3115181055,MT
3115181056,3115182079,DE
@@ -99940,7 +101222,7 @@
3115228160,3115228415,PT
3115228416,3115228671,AT
3115228672,3115228927,GB
-3115228928,3115229183,ES
+3115228928,3115229183,IL
3115229184,3115230207,EE
3115230208,3115231231,RU
3115231232,3115232255,CZ
@@ -100131,7 +101413,8 @@
3115414528,3115415551,DE
3115415552,3115416575,DK
3115416576,3115417599,MD
-3115417856,3115418367,DE
+3115417856,3115418111,DE
+3115418112,3115418367,US
3115418368,3115418623,HK
3115418624,3115419647,IS
3115419648,3115420671,NL
@@ -100255,7 +101538,7 @@
3115541504,3115542527,GB
3115542528,3115543551,ES
3115543552,3115544575,IS
-3115544576,3115545599,NL
+3115544576,3115545599,DK
3115545600,3115546623,FI
3115546624,3115547647,GB
3115547648,3115548671,RU
@@ -100512,8 +101795,7 @@
3115798528,3115799551,MD
3115799552,3115800063,DE
3115800064,3115800319,GB
-3115800320,3115800575,US
-3115800576,3115801599,DE
+3115800320,3115801599,DE
3115801600,3115802623,LB
3115802624,3115802879,NL
3115802880,3115803135,RO
@@ -100717,7 +101999,7 @@
3115994368,3115994623,GB
3115994624,3115994879,SE
3115994880,3115995135,DK
-3115995136,3115996159,AL
+3115995136,3115996159,RS
3115996160,3115997183,GR
3115997184,3115998207,FR
3115998208,3115999231,IT
@@ -100822,7 +102104,10 @@
3116099584,3116100607,US
3116100608,3116101631,CZ
3116101632,3116102655,DE
-3116102656,3116103679,FR
+3116102656,3116102911,FR
+3116102912,3116103167,DE
+3116103168,3116103423,SG
+3116103424,3116103679,US
3116103680,3116104703,HU
3116104704,3116105727,SE
3116105728,3116107007,DE
@@ -100966,8 +102251,7 @@
3116246016,3116247039,BG
3116247040,3116248063,RU
3116248064,3116249087,GB
-3116249088,3116249343,AT
-3116249344,3116249599,DE
+3116249088,3116249599,AT
3116249600,3116249855,CH
3116249856,3116250111,AT
3116250112,3116251135,DE
@@ -101102,8 +102386,7 @@
3116382976,3116383231,DE
3116383232,3116384255,RU
3116384256,3116385279,DE
-3116385280,3116386047,US
-3116386048,3116386303,GB
+3116385280,3116386303,GB
3116386304,3116387327,ES
3116387328,3116388351,DE
3116388352,3116389375,GB
@@ -101182,7 +102465,8 @@
3116461056,3116462079,FR
3116462080,3116464127,PL
3116464128,3116465151,DK
-3116465152,3116466175,SE
+3116465152,3116465407,BV
+3116465408,3116466175,SE
3116466176,3116467199,CZ
3116467200,3116468223,AZ
3116468224,3116470271,RU
@@ -101207,7 +102491,8 @@
3116489728,3116490751,HU
3116490752,3116491775,CH
3116491776,3116492799,DE
-3116492800,3116493823,AF
+3116492800,3116493055,IR
+3116493056,3116493823,AF
3116493824,3116494847,DK
3116494848,3116495871,NL
3116495872,3116496895,CH
@@ -101425,8 +102710,7 @@
3116699648,3116700671,NL
3116700672,3116701695,SY
3116701696,3116702719,NL
-3116702720,3116703231,US
-3116703232,3116703487,NL
+3116702720,3116703487,US
3116703488,3116703743,GB
3116703744,3116704767,RU
3116704768,3116705791,BE
@@ -101487,8 +102771,7 @@
3116764160,3116765183,GB
3116765184,3116766207,PL
3116766208,3116767231,FR
-3116767232,3116767743,US
-3116767744,3116767999,NL
+3116767232,3116767999,US
3116768000,3116769279,GB
3116769280,3116770303,LT
3116770304,3116772351,RU
@@ -101541,7 +102824,7 @@
3116819456,3116820479,GB
3116820480,3116822527,AT
3116822528,3116822783,FR
-3116822784,3116823039,US
+3116822784,3116823039,IN
3116823040,3116823295,AU
3116823296,3116823551,GB
3116823552,3116824575,US
@@ -101677,8 +102960,10 @@
3116958720,3116959743,ES
3116959744,3116960767,NL
3116960768,3116961791,CZ
-3116961792,3116962559,NL
-3116962560,3116962815,US
+3116961792,3116962047,FR
+3116962048,3116962303,NL
+3116962304,3116962559,US
+3116962560,3116962815,NL
3116962816,3116963839,DE
3116963840,3116964863,GE
3116964864,3116965887,RU
@@ -101762,14 +103047,16 @@
3117046784,3117047807,IR
3117047808,3117048831,NL
3117048832,3117049855,UA
-3117049856,3117052927,NL
+3117049856,3117050879,NL
+3117050880,3117051903,ES
+3117051904,3117052927,NL
3117052928,3117053951,ES
3117053952,3117054975,IT
3117054976,3117055999,PL
3117056000,3117057023,IT
3117057024,3117058047,CH
3117058048,3117059071,RS
-3117059072,3117060095,SA
+3117059072,3117060095,GB
3117060096,3117060159,SE
3117060160,3117060607,PT
3117060608,3117061119,SE
@@ -101860,7 +103147,9 @@
3117149184,3117150207,RU
3117150208,3117151231,NL
3117151232,3117152255,UA
-3117152256,3117153279,RO
+3117152256,3117152767,GB
+3117152768,3117153023,US
+3117153024,3117153279,GB
3117153280,3117154303,PL
3117154304,3117154559,RU
3117154560,3117154815,FI
@@ -101911,9 +103200,7 @@
3117201408,3117202431,NL
3117202432,3117203455,FR
3117203456,3117204479,PL
-3117204480,3117204991,NL
-3117204992,3117205247,US
-3117205248,3117205503,NL
+3117204480,3117205503,NL
3117205504,3117206527,ES
3117206528,3117208575,FR
3117208576,3117209599,GB
@@ -101929,7 +103216,8 @@
3117219840,3117220863,FI
3117220864,3117221887,ES
3117221888,3117222911,IT
-3117222912,3117223935,US
+3117222912,3117223423,US
+3117223424,3117223935,DE
3117223936,3117224959,TR
3117224960,3117225983,NO
3117225984,3117227007,SA
@@ -102165,7 +103453,8 @@
3117457408,3117458431,DE
3117458432,3117459455,PL
3117459456,3117459711,US
-3117459712,3117460479,GB
+3117459712,3117460223,GB
+3117460224,3117460479,HK
3117460480,3117461503,IR
3117461504,3117462527,UZ
3117462528,3117463551,IR
@@ -102392,7 +103681,8 @@
3117689856,3117690879,DE
3117690880,3117691903,IR
3117691904,3117693951,DE
-3117693952,3117694975,AU
+3117693952,3117693952,IR
+3117693953,3117694975,AU
3117694976,3117695999,PL
3117696000,3117697023,GB
3117697024,3117698047,FR
@@ -102547,7 +103837,9 @@
3117848576,3117849599,CH
3117849600,3117850623,FI
3117850624,3117851647,RU
-3117851648,3117852671,RS
+3117851648,3117851903,RS
+3117851904,3117852159,MY
+3117852160,3117852671,RS
3117852672,3117853695,ES
3117853696,3117853951,HU
3117853952,3117854335,CZ
@@ -102621,8 +103913,8 @@
3117925376,3117926399,SE
3117926400,3117927423,AT
3117927424,3117928447,DE
-3117928448,3117929727,GB
-3117929728,3117930239,DE
+3117928448,3117929471,GB
+3117929472,3117930239,DE
3117930240,3117930495,TW
3117930496,3117931519,AT
3117931520,3117933567,US
@@ -102788,9 +104080,7 @@
3118098432,3118099455,IT
3118099456,3118100479,RU
3118100480,3118101503,IE
-3118101504,3118102271,CH
-3118102272,3118102287,DE
-3118102288,3118102527,CH
+3118101504,3118102527,CH
3118102528,3118103551,GB
3118103552,3118104575,US
3118104576,3118107647,DE
@@ -102822,7 +104112,7 @@
3118135296,3118136319,FR
3118136320,3118137343,ES
3118137344,3118138367,IT
-3118138368,3118139391,RU
+3118138368,3118139391,GB
3118139392,3118140415,ES
3118140416,3118141439,FR
3118141440,3118142463,CZ
@@ -102961,7 +104251,13 @@
3118284800,3118285823,DE
3118285824,3118285855,AU
3118285856,3118285857,MY
-3118285858,3118285875,AU
+3118285858,3118285859,AU
+3118285860,3118285861,PH
+3118285862,3118285865,AU
+3118285866,3118285867,KR
+3118285868,3118285869,TW
+3118285870,3118285871,IN
+3118285872,3118285875,AU
3118285876,3118285877,NZ
3118285878,3118286079,AU
3118286080,3118286111,SG
@@ -102978,7 +104274,19 @@
3118286132,3118286133,SG
3118286134,3118286135,AU
3118286136,3118286335,SG
-3118286336,3118286847,AU
+3118286336,3118286367,JP
+3118286368,3118286369,MY
+3118286370,3118286371,ID
+3118286372,3118286373,PH
+3118286374,3118286375,VN
+3118286376,3118286377,TH
+3118286378,3118286379,KR
+3118286380,3118286381,TW
+3118286382,3118286383,IN
+3118286384,3118286385,BD
+3118286386,3118286387,NP
+3118286388,3118286389,NZ
+3118286390,3118286847,AU
3118286848,3118287871,IT
3118287872,3118288895,IR
3118288896,3118289919,PL
@@ -103078,7 +104386,7 @@
3118390272,3118391295,MD
3118391296,3118394367,NL
3118394368,3118395391,RU
-3118395392,3118396415,DE
+3118395392,3118396415,US
3118396416,3118397439,ES
3118397440,3118398463,IT
3118398464,3118399487,GE
@@ -103125,8 +104433,8 @@
3118441216,3118441471,EE
3118441472,3118441727,RU
3118441728,3118441983,GB
-3118441984,3118442239,RU
-3118442240,3118443519,MD
+3118441984,3118442495,RU
+3118442496,3118443519,MD
3118443520,3118444543,GB
3118444544,3118445567,UA
3118445568,3118446591,FR
@@ -103216,8 +104524,7 @@
3118534144,3118534655,US
3118534656,3118535679,RO
3118535680,3118536703,ES
-3118536704,3118537471,RU
-3118537472,3118537727,MD
+3118536704,3118537727,RU
3118537728,3118538751,MK
3118538752,3118539775,RU
3118539776,3118540799,TR
@@ -103368,7 +104675,8 @@
3118676992,3118678015,GB
3118678016,3118679039,IR
3118679040,3118679295,FI
-3118679296,3118680063,GB
+3118679296,3118679551,NL
+3118679552,3118680063,GB
3118680064,3118681087,MD
3118681088,3118682111,SE
3118682112,3118682943,NL
@@ -103391,7 +104699,8 @@
3118694400,3118695423,ES
3118695424,3118696447,DE
3118696448,3118696703,RO
-3118696704,3118697471,IR
+3118696704,3118696959,IR
+3118696960,3118697471,TR
3118697472,3118698495,SY
3118698496,3118699519,ES
3118699520,3118700543,CH
@@ -103404,7 +104713,7 @@
3118708736,3118709759,ES
3118709760,3118711807,PL
3118711808,3118712831,GB
-3118712832,3118713855,NL
+3118712832,3118713855,DE
3118713856,3118714879,ES
3118714880,3118715903,IE
3118715904,3118717951,ES
@@ -103523,7 +104832,8 @@
3118837760,3118838783,FR
3118838784,3118839807,ES
3118839808,3118840831,RU
-3118840832,3118841855,CZ
+3118840832,3118841343,CZ
+3118841344,3118841855,NL
3118841856,3118842879,RU
3118842880,3118843903,ES
3118843904,3118844927,HR
@@ -103543,7 +104853,7 @@
3118858240,3118859263,ES
3118859264,3118860287,BG
3118860288,3118861311,FR
-3118861312,3118862335,DE
+3118861312,3118862335,PT
3118862336,3118863359,RO
3118863360,3118864383,CH
3118864384,3118865407,SE
@@ -103575,7 +104885,7 @@
3118890752,3118891007,DE
3118891008,3118892031,NO
3118892032,3118893055,AT
-3118893056,3118894079,DE
+3118893056,3118894079,US
3118894080,3118895103,RU
3118895104,3118896127,ES
3118896128,3118898175,GB
@@ -103721,7 +105031,8 @@
3119043584,3119044607,NL
3119044608,3119046655,DE
3119046656,3119047679,GB
-3119047680,3119049727,RU
+3119047680,3119048703,RU
+3119048704,3119049727,GB
3119049728,3119050751,IT
3119050752,3119051775,GR
3119051776,3119054847,NL
@@ -103783,7 +105094,7 @@
3119113216,3119114239,RO
3119114240,3119115263,ES
3119115264,3119116287,RU
-3119116288,3119117311,DE
+3119116288,3119117311,US
3119117312,3119118335,TR
3119118336,3119119359,IT
3119119360,3119120383,DK
@@ -103802,7 +105113,7 @@
3119131648,3119132671,DE
3119132672,3119133695,FR
3119133696,3119137791,UA
-3119137792,3119138815,DE
+3119137792,3119138815,US
3119138816,3119139071,FR
3119139072,3119139327,PL
3119139328,3119139839,GB
@@ -103870,7 +105181,8 @@
3119203840,3119204351,PL
3119204352,3119206399,RU
3119207424,3119208447,FR
-3119208448,3119210495,RU
+3119208448,3119209471,GB
+3119209472,3119210495,RU
3119210496,3119211519,GB
3119211520,3119212543,ES
3119212544,3119213567,FR
@@ -103927,7 +105239,9 @@
3119267840,3119269887,RU
3119269888,3119270911,MD
3119270912,3119271935,NL
-3119271936,3119272959,DE
+3119271936,3119272191,DE
+3119272192,3119272447,GB
+3119272448,3119272959,DE
3119272960,3119273983,RO
3119273984,3119275007,IR
3119275008,3119277055,PL
@@ -103995,7 +105309,7 @@
3119337472,3119338495,TR
3119338496,3119339519,IR
3119339520,3119341567,GB
-3119341568,3119342079,NL
+3119341568,3119342079,DE
3119342080,3119342591,GB
3119342592,3119343615,RU
3119343616,3119344639,UA
@@ -104080,7 +105394,8 @@
3119434752,3119435775,PL
3119435776,3119436799,RU
3119436800,3119437823,GB
-3119437824,3119438847,DE
+3119437824,3119438079,ES
+3119438080,3119438847,DE
3119438848,3119439871,MD
3119439872,3119440895,GB
3119440896,3119442943,ES
@@ -104088,7 +105403,7 @@
3119443968,3119444991,DE
3119444992,3119446015,RS
3119446016,3119447039,IT
-3119447040,3119448063,RU
+3119447040,3119448063,FR
3119448064,3119449087,IR
3119449088,3119450111,ES
3119450112,3119451135,AL
@@ -104121,7 +105436,8 @@
3119476736,3119477759,GB
3119477760,3119479807,RU
3119479808,3119480831,BG
-3119480832,3119483903,RU
+3119480832,3119482879,RU
+3119482880,3119483903,TR
3119483904,3119484927,ES
3119484928,3119485951,KZ
3119485952,3119486975,GB
@@ -104157,7 +105473,8 @@
3119521792,3119522815,UA
3119522816,3119523839,FR
3119523840,3119524863,IS
-3119524864,3119526911,RU
+3119524864,3119525887,LT
+3119525888,3119526911,RO
3119526912,3119527935,DE
3119527936,3119528959,IR
3119528960,3119529983,AT
@@ -104166,9 +105483,9 @@
3119532032,3119533055,DE
3119533056,3119534079,AT
3119534080,3119535103,ES
-3119535104,3119536127,RU
+3119535104,3119536127,TR
3119536128,3119537151,ES
-3119537152,3119538175,RU
+3119537152,3119538175,GB
3119538176,3119539199,PL
3119539200,3119540223,RU
3119540224,3119541247,EE
@@ -104209,8 +105526,9 @@
3119575040,3119577087,DE
3119577088,3119578111,PT
3119578112,3119579135,RO
-3119579136,3119580159,RU
-3119580160,3119581183,IL
+3119579136,3119580159,GB
+3119580160,3119580927,IL
+3119580928,3119581183,NL
3119581184,3119582207,RU
3119582208,3119583231,DK
3119583232,3119584255,IT
@@ -104224,7 +105542,8 @@
3119591424,3119592447,GB
3119592448,3119593471,NL
3119593472,3119596543,IT
-3119596544,3119598591,RU
+3119596544,3119597567,GB
+3119597568,3119598591,RU
3119598592,3119600639,NL
3119600640,3119601663,CH
3119601664,3119602687,RO
@@ -104332,8 +105651,8 @@
3119707136,3119708159,NL
3119708160,3119709183,ES
3119709184,3119710207,PL
-3119710208,3119711231,RU
-3119711232,3119712255,PL
+3119710208,3119711231,GB
+3119711232,3119712255,RU
3119712256,3119714303,DE
3119714304,3119715327,FR
3119715328,3119716351,DE
@@ -104341,7 +105660,8 @@
3119717376,3119718399,PL
3119718400,3119719423,NL
3119719424,3119720447,IT
-3119720448,3119721471,GB
+3119720448,3119720703,GB
+3119720704,3119721471,JP
3119721472,3119722495,DE
3119722496,3119723519,IR
3119723520,3119724543,PL
@@ -104371,7 +105691,13 @@
3119748096,3119749119,IT
3119749120,3119749887,US
3119749888,3119750143,ES
-3119750144,3119751167,RU
+3119750144,3119750588,RU
+3119750589,3119750589,UA
+3119750590,3119750696,RU
+3119750697,3119750697,US
+3119750698,3119750821,RU
+3119750822,3119750822,UA
+3119750823,3119751167,RU
3119751168,3119752191,CH
3119752192,3119753215,ES
3119753216,3119755263,CZ
@@ -104400,8 +105726,8 @@
3119777792,3119778815,GB
3119778816,3119779839,FK
3119779840,3119780863,FR
-3119780864,3119781887,RU
-3119781888,3119783935,NL
+3119780864,3119782143,RU
+3119782144,3119783935,NL
3119783936,3119784959,IT
3119784960,3119785983,NL
3119785984,3119789055,RU
@@ -104452,8 +105778,7 @@
3119830272,3119830527,FR
3119830528,3119830783,PL
3119830784,3119831039,US
-3119831040,3119831295,UA
-3119831296,3119832063,NL
+3119831040,3119832063,NL
3119832064,3119833087,MD
3119833088,3119834111,GB
3119834112,3119836159,ES
@@ -104462,7 +105787,7 @@
3119838208,3119839231,FI
3119839232,3119840255,LT
3119840256,3119841279,CH
-3119841280,3119842303,PL
+3119841280,3119842303,RU
3119842304,3119843327,MD
3119843328,3119844351,DK
3119844352,3119845375,HR
@@ -104521,7 +105846,9 @@
3119900672,3119901695,GB
3119901696,3119902719,MD
3119902720,3119903743,GB
-3119903744,3119904767,RO
+3119903744,3119903999,RO
+3119904000,3119904255,EE
+3119904256,3119904767,RO
3119904768,3119905791,FR
3119905792,3119907839,DE
3119907840,3119908863,IR
@@ -104560,7 +105887,9 @@
3119942656,3119943679,AT
3119943680,3119944703,CH
3119944704,3119945727,CZ
-3119945728,3119946751,NL
+3119945728,3119946239,NL
+3119946240,3119946495,RU
+3119946496,3119946751,NL
3119946752,3119947775,DK
3119947776,3119948799,KZ
3119948800,3119949823,GR
@@ -104573,8 +105902,8 @@
3119955968,3119956991,RU
3119956992,3119958015,ES
3119958016,3119959039,CH
-3119959040,3119960319,PL
-3119960320,3119960831,CZ
+3119959040,3119960063,PL
+3119960064,3119960831,CZ
3119960832,3119961087,FR
3119961088,3119962111,DE
3119962112,3119963135,RU
@@ -104629,7 +105958,7 @@
3120016384,3120017407,UA
3120017408,3120018431,IQ
3120018432,3120019455,CN
-3120019456,3120020479,RO
+3120019456,3120020479,RU
3120020480,3120021503,IE
3120021504,3120022527,RU
3120022528,3120023551,CH
@@ -104685,8 +106014,7 @@
3120073728,3120074751,DE
3120074752,3120075775,FR
3120075776,3120076799,DE
-3120076800,3120077055,NL
-3120077056,3120077823,SE
+3120076800,3120077823,SE
3120077824,3120078847,LU
3120078848,3120079871,NL
3120079872,3120080895,CH
@@ -104757,12 +106085,8 @@
3120153600,3120154623,US
3120154624,3120155647,GB
3120155648,3120157695,ES
-3120157696,3120159487,GB
-3120159488,3120159743,DE
-3120159744,3120159999,NL
-3120160000,3120160511,DE
-3120160512,3120160767,GB
-3120160768,3120161791,DE
+3120157696,3120159743,GB
+3120159744,3120161791,DE
3120161792,3120162815,PL
3120162816,3120163839,ES
3120163840,3120164863,RO
@@ -104832,14 +106156,15 @@
3120234496,3120235519,UA
3120235520,3120236543,DE
3120236544,3120237567,GB
-3120237568,3120238079,RU
-3120238080,3120238591,GB
-3120238592,3120240127,RU
+3120237568,3120237823,MD
+3120237824,3120238079,RU
+3120238080,3120239615,GB
+3120239616,3120240127,RU
3120240128,3120240639,US
-3120240640,3120241663,RU
+3120240640,3120241663,GB
3120241664,3120242687,RO
3120242688,3120243711,TR
-3120243712,3120244735,RU
+3120243712,3120244735,NL
3120244736,3120245759,TR
3120245760,3120246783,PL
3120246784,3120247807,FI
@@ -104875,7 +106200,7 @@
3120277504,3120278527,NL
3120278528,3120279551,UA
3120279552,3120280575,DE
-3120280576,3120281087,RU
+3120280576,3120281087,AE
3120281088,3120281599,US
3120281600,3120282623,CH
3120282624,3120283647,ES
@@ -104887,7 +106212,7 @@
3120291840,3120292863,GB
3120292864,3120293887,ES
3120293888,3120294143,TR
-3120294144,3120294911,DE
+3120294144,3120294911,GB
3120294912,3120295935,NL
3120295936,3120296959,RU
3120296960,3120297983,GB
@@ -104936,14 +106261,17 @@
3120344064,3120345087,ES
3120345088,3120346111,DE
3120346112,3120347135,PL
-3120347136,3120347647,RU
+3120347136,3120347391,RU
+3120347392,3120347647,DE
3120347648,3120348159,FR
3120348160,3120349183,MK
-3120349184,3120350207,RU
+3120349184,3120350207,GB
3120350208,3120351231,CZ
-3120351232,3120352255,RU
+3120351232,3120352255,GB
3120352256,3120353279,LT
-3120353280,3120357375,RU
+3120353280,3120354303,GB
+3120354304,3120356351,RU
+3120356352,3120357375,GB
3120357376,3120358399,ES
3120358400,3120359423,RU
3120359424,3120360447,DE
@@ -104952,7 +106280,9 @@
3120362496,3120363519,NL
3120363520,3120364543,RU
3120364544,3120365567,JE
-3120365568,3120368639,RU
+3120365568,3120366591,GB
+3120366592,3120367615,RU
+3120367616,3120368639,GB
3120368640,3120369663,DE
3120369664,3120370687,AT
3120370688,3120374783,RU
@@ -104960,6 +106290,183 @@
3120375808,3120376831,RU
3120376832,3120377855,UA
3120377856,3120378879,NL
+3120378880,3120379903,GB
+3120379904,3120380927,ES
+3120380928,3120381951,LV
+3120381952,3120382975,PL
+3120382976,3120383999,EE
+3120384000,3120385023,UA
+3120385024,3120386047,IQ
+3120386048,3120387071,IT
+3120387072,3120388095,DK
+3120388096,3120389119,GB
+3120389120,3120390143,FR
+3120390144,3120390399,NL
+3120390400,3120390655,NO
+3120390656,3120390911,GB
+3120390912,3120391167,ES
+3120391168,3120393215,RU
+3120393216,3120394239,LB
+3120394240,3120395263,JO
+3120395264,3120396287,SA
+3120396288,3120396799,TR
+3120396800,3120397055,HK
+3120397056,3120397311,SE
+3120397312,3120399359,GB
+3120399360,3120400383,FR
+3120400384,3120401407,RU
+3120401408,3120402431,GB
+3120402432,3120403455,ES
+3120403456,3120404479,RU
+3120404480,3120405503,UA
+3120405504,3120406527,BG
+3120406528,3120407551,UA
+3120407552,3120408575,PL
+3120408576,3120409599,FR
+3120409600,3120410623,DE
+3120410624,3120411647,GB
+3120411648,3120413695,RU
+3120413696,3120414719,HR
+3120414720,3120415743,CH
+3120415744,3120416767,GB
+3120416768,3120417791,IT
+3120417792,3120418815,CH
+3120418816,3120419839,NL
+3120419840,3120420863,PL
+3120420864,3120421887,UA
+3120421888,3120422911,BE
+3120422912,3120423935,ES
+3120423936,3120425983,PL
+3120425984,3120427007,IT
+3120427008,3120428031,PL
+3120428032,3120429055,GB
+3120429056,3120429311,US
+3120429312,3120430079,GB
+3120430080,3120431103,RO
+3120431104,3120432127,DE
+3120432128,3120433151,PL
+3120433152,3120434175,FR
+3120434176,3120435199,UA
+3120435200,3120436223,LT
+3120436224,3120437247,LU
+3120437248,3120438271,ES
+3120438272,3120439295,DK
+3120439296,3120440319,LB
+3120440320,3120441343,DE
+3120441344,3120442367,NL
+3120442368,3120443391,LT
+3120443392,3120444415,NL
+3120444416,3120445439,CH
+3120445440,3120446463,GB
+3120446464,3120447487,DE
+3120447488,3120448511,RO
+3120448512,3120449535,NL
+3120449536,3120450559,FR
+3120450560,3120451583,CH
+3120451584,3120452607,SE
+3120452608,3120453631,IQ
+3120453632,3120454655,GB
+3120454656,3120455679,TR
+3120455680,3120456703,DE
+3120456704,3120457727,FR
+3120457728,3120458751,UA
+3120458752,3120459775,SY
+3120459776,3120460799,DE
+3120460800,3120461823,AL
+3120461824,3120462847,LT
+3120462848,3120463871,DE
+3120463872,3120464895,DK
+3120464896,3120465919,SE
+3120465920,3120466943,UA
+3120466944,3120467967,AT
+3120467968,3120468991,FR
+3120468992,3120470015,GB
+3120470016,3120471039,DE
+3120471040,3120473087,ES
+3120473088,3120474111,FR
+3120474112,3120475135,IT
+3120475136,3120476159,NL
+3120476160,3120477183,HR
+3120477184,3120478207,SY
+3120478208,3120479231,PL
+3120479232,3120480255,RU
+3120480256,3120484351,UA
+3120484352,3120485375,FR
+3120485376,3120486399,RU
+3120486400,3120487423,CY
+3120487424,3120488447,PL
+3120488448,3120489471,CH
+3120489472,3120490495,IT
+3120490496,3120491519,AT
+3120491520,3120492543,IT
+3120492544,3120493567,GB
+3120493568,3120494591,DE
+3120494592,3120495615,SK
+3120495616,3120496639,HR
+3120496640,3120497663,NL
+3120497664,3120498687,UA
+3120498688,3120499711,DE
+3120499712,3120500735,PL
+3120500736,3120501759,BE
+3120501760,3120502783,ES
+3120502784,3120503807,NL
+3120503808,3120504831,RU
+3120504832,3120505855,FI
+3120505856,3120506879,MD
+3120506880,3120507903,PL
+3120507904,3120508927,IQ
+3120508928,3120509951,UA
+3120509952,3120510975,NL
+3120510976,3120511999,BG
+3120512000,3120513023,IT
+3120513024,3120514047,DE
+3120514048,3120515071,IR
+3120515072,3120516095,ES
+3120516096,3120517119,BY
+3120517120,3120518143,DE
+3120518144,3120519167,FR
+3120519168,3120520191,IR
+3120520192,3120521215,TR
+3120521216,3120522239,UA
+3120522240,3120523263,DE
+3120523264,3120524287,ES
+3120524288,3120525311,GB
+3120525312,3120526335,DE
+3120526336,3120527359,CZ
+3120527360,3120528383,NL
+3120528384,3120529407,ES
+3120529408,3120530431,DE
+3120530432,3120531455,RU
+3120531456,3120532479,LB
+3120532480,3120533503,DK
+3120533504,3120534527,RO
+3120534528,3120535551,ES
+3120535552,3120536063,GB
+3120536064,3120536575,TR
+3120536576,3120537599,DK
+3120537600,3120538623,GB
+3120538624,3120540671,UA
+3120540672,3120541695,TR
+3120541696,3120542719,RU
+3120542720,3120543743,GB
+3120543744,3120544767,IT
+3120544768,3120545791,DE
+3120545792,3120546815,LT
+3120546816,3120547839,UA
+3120547840,3120548863,ES
+3120548864,3120549887,OM
+3120549888,3120550911,IR
+3120550912,3120551935,BG
+3120551936,3120552959,FR
+3120552960,3120553983,LB
+3120553984,3120555007,PL
+3120555008,3120556031,ME
+3120556032,3120557055,GB
+3120557056,3120558079,UA
+3120558080,3120559103,CZ
+3120559104,3120560127,FI
+3120560128,3120561151,DE
+3120561152,3120562175,PL
3120562176,3120594943,CO
3120594944,3120599039,AR
3120601088,3120602111,AR
@@ -105064,9 +106571,7 @@
3125673984,3125805055,CL
3125805056,3126329343,CO
3126329344,3126853631,VE
-3126853632,3126863999,AR
-3126864000,3126864127,US
-3126864128,3126870015,AR
+3126853632,3126870015,AR
3126870016,3126873343,VE
3126873344,3126873599,PA
3126873600,3126874111,VE
@@ -105796,7 +107301,9 @@
3164946352,3164946367,GB
3164946368,3164946479,FR
3164946480,3164946483,ES
-3164946484,3164946527,FR
+3164946484,3164946507,FR
+3164946508,3164946511,CZ
+3164946512,3164946527,FR
3164946528,3164946559,FI
3164946560,3164946815,FR
3164946816,3164946879,DE
@@ -105808,7 +107315,8 @@
3164947044,3164947047,GB
3164947048,3164947591,FR
3164947592,3164947599,ES
-3164947600,3164948743,FR
+3164947600,3164948739,FR
+3164948740,3164948743,CZ
3164948744,3164948747,GB
3164948748,3164948863,FR
3164948864,3164948927,GB
@@ -105839,7 +107347,9 @@
3164952528,3164953007,FR
3164953008,3164953023,LT
3164953024,3164953087,IE
-3164953088,3164953583,FR
+3164953088,3164953255,FR
+3164953256,3164953263,CZ
+3164953264,3164953583,FR
3164953584,3164953599,ES
3164953600,3164954463,FR
3164954464,3164954471,IT
@@ -105928,7 +107438,9 @@
3164970720,3164970751,PL
3164970752,3164971011,FR
3164971012,3164971015,IE
-3164971016,3164971579,FR
+3164971016,3164971511,FR
+3164971512,3164971519,CZ
+3164971520,3164971579,FR
3164971580,3164971583,ES
3164971584,3164971615,FR
3164971616,3164971619,ES
@@ -106033,7 +107545,7 @@
3165444864,3165445119,NL
3165445120,3165445375,AT
3165445376,3165445631,CA
-3165445632,3165445887,US
+3165445632,3165445887,NL
3165445888,3165446143,NO
3165446144,3165447167,DE
3165447168,3165447423,CA
@@ -106171,7 +107683,7 @@
3167951616,3167952895,RO
3167952896,3167985663,IR
3167985664,3167985919,US
-3167985920,3167986431,RO
+3167985920,3167986431,GB
3167986432,3167986687,UA
3167986688,3167987711,RO
3167987712,3167987967,NL
@@ -106200,7 +107712,8 @@
3168018432,3168018687,TR
3168018688,3168018943,ES
3168018944,3168019455,GB
-3168019456,3168020479,RO
+3168019456,3168020223,RO
+3168020224,3168020479,PL
3168020480,3168022527,MD
3168022528,3168035839,IR
3168035840,3168036863,RO
@@ -106215,7 +107728,7 @@
3168041216,3168041471,RO
3168041472,3168041983,GB
3168041984,3168044799,RO
-3168044800,3168045055,US
+3168044800,3168045055,GB
3168045056,3168047103,RO
3168047104,3168049151,IR
3168049152,3168049407,RO
@@ -106226,7 +107739,9 @@
3168051200,3168059391,IR
3168059392,3168061439,RO
3168061440,3168073727,IR
-3168073728,3168075007,RO
+3168073728,3168074495,RO
+3168074496,3168074751,CY
+3168074752,3168075007,RO
3168075008,3168075263,ES
3168075264,3168075519,GB
3168075520,3168076799,RO
@@ -106247,7 +107762,7 @@
3168100352,3168108543,IR
3168108544,3168110591,RO
3168110592,3168110847,IT
-3168110848,3168111359,RO
+3168110848,3168111359,GB
3168111360,3168111615,IT
3168111616,3168112639,FR
3168112640,3168116735,IR
@@ -106296,7 +107811,7 @@
3168155648,3168156415,RO
3168156416,3168156671,ES
3168156672,3168157695,MD
-3168157696,3168161791,UA
+3168157696,3168161791,AU
3168161792,3168162303,RO
3168162304,3168162815,IT
3168162816,3168163839,IR
@@ -106363,7 +107878,7 @@
3168230656,3168230911,RO
3168230912,3168231167,IT
3168231168,3168231423,RO
-3168231424,3168232447,PL
+3168231424,3168232447,ES
3168232448,3168233471,SY
3168233472,3168235519,ES
3168235520,3168237567,RO
@@ -106626,7 +108141,9 @@
3187942656,3187942663,HN
3187942664,3187942975,GT
3187942976,3187942991,HN
-3187942992,3187943391,GT
+3187942992,3187943119,GT
+3187943120,3187943127,HN
+3187943128,3187943391,GT
3187943392,3187943399,HN
3187943400,3187943551,GT
3187943552,3187943687,HN
@@ -106736,9 +108253,7 @@
3188490240,3188498431,CO
3188498432,3188523007,AR
3188523008,3188539391,CO
-3188539392,3188542207,CL
-3188542208,3188542463,US
-3188542464,3188543487,CL
+3188539392,3188543487,CL
3188543488,3188545535,PA
3188545536,3188547583,AR
3188547584,3188551679,CO
@@ -106784,7 +108299,8 @@
3191093248,3191095295,AR
3191095296,3191099391,EC
3191099392,3191103487,AR
-3191103488,3191107583,VE
+3191103488,3191107327,VE
+3191107328,3191107583,CR
3191107584,3191108271,PE
3191108272,3191108287,MX
3191108288,3191108959,PE
@@ -106898,9 +108414,7 @@
3193700352,3193724927,HN
3193724928,3193729023,AR
3193729024,3193733119,CU
-3193733120,3193739519,AR
-3193739520,3193739775,US
-3193739776,3193740543,AR
+3193733120,3193740543,AR
3193740544,3193740799,US
3193740800,3193765887,AR
3193765888,3193774079,TT
@@ -106956,7 +108470,9 @@
3194130944,3194131455,BR
3194131456,3194132991,AR
3194132992,3194133247,CL
-3194133248,3194135551,AR
+3194133248,3194134527,AR
+3194134528,3194135039,CL
+3194135040,3194135551,AR
3194135552,3194136063,BR
3194136064,3194136319,AR
3194136320,3194136447,CO
@@ -107312,9 +108828,7 @@
3200565248,3200569343,HT
3200569344,3200573439,CL
3200573440,3200577535,AR
-3200577536,3200578559,BR
-3200578560,3200579071,EC
-3200579072,3200579583,BR
+3200577536,3200579583,BR
3200579584,3200581631,AR
3200581632,3200614399,BZ
3200614400,3200647167,AR
@@ -107405,8 +108919,8 @@
3203547136,3203549183,PA
3203549184,3203556863,CO
3203556864,3203557119,DO
-3203557120,3203562239,CO
-3203562240,3203562495,SV
+3203557120,3203561983,CO
+3203561984,3203562495,SV
3203562496,3203565055,CO
3203565056,3203566079,CR
3203566080,3203566591,CO
@@ -107490,8 +109004,7 @@
3210746384,3210746495,BR
3210746496,3210746879,US
3210746880,3210746895,CH
-3210746896,3210746943,CL
-3210746944,3210747135,BR
+3210746896,3210747135,BR
3210747136,3210748159,US
3210748160,3210748175,JP
3210748176,3210748191,BR
@@ -107544,9 +109057,7 @@
3210771200,3210771215,TH
3210771216,3210771263,CL
3210771264,3210771455,BR
-3210771456,3210772479,US
-3210772480,3210772735,CL
-3210772736,3210773247,US
+3210771456,3210773247,US
3210773248,3210773503,MY
3210773504,3210773519,PL
3210773520,3210773759,BR
@@ -107877,9 +109388,7 @@
3211166416,3211166431,UY
3211166432,3211166559,US
3211166560,3211166567,UY
-3211166568,3211171511,US
-3211171512,3211171519,ES
-3211171520,3211172271,US
+3211166568,3211172271,US
3211172272,3211172279,NL
3211172280,3211172607,US
3211172608,3211172623,NL
@@ -107957,7 +109466,8 @@
3219784704,3219787775,BR
3219787776,3219791871,HK
3219791872,3219800063,US
-3219800064,3219800591,BR
+3219800064,3219800575,BR
+3219800576,3219800591,US
3219800592,3219800607,IE
3219800608,3219802148,BR
3219802149,3219802149,US
@@ -108129,7 +109639,7 @@
3222040320,3222040575,AO
3222040576,3222041599,BR
3222041856,3222042111,MA
-3222042624,3222044927,US
+3222042368,3222044927,US
3222044928,3222045183,CA
3222045184,3222055935,US
3222056192,3222056447,US
@@ -108148,7 +109658,9 @@
3222072320,3222075135,US
3222075136,3222075391,NL
3222075392,3222208511,US
-3222208512,3222274047,AE
+3222208512,3222208991,AE
+3222208992,3222209023,US
+3222209024,3222274047,AE
3222274048,3222274559,US
3222274560,3222274815,AU
3222274816,3222275071,US
@@ -108447,7 +109959,8 @@
3223634944,3223635455,GB
3223635456,3223637247,SE
3223637248,3223637503,GB
-3223637504,3223638271,SE
+3223637504,3223638015,SE
+3223638016,3223638271,NL
3223638272,3223638527,GB
3223638528,3223640831,SE
3223640832,3223641087,GB
@@ -108677,9 +110190,10 @@
3224776448,3224776703,GB
3224776704,3224777983,DE
3224777984,3224778239,US
+3224778752,3224779775,ES
3224779776,3224785151,DE
3224785152,3224791039,US
-3224791040,3224791295,DE
+3224791040,3224791295,NL
3224791296,3224791807,AU
3224791808,3224793343,US
3224793344,3224793599,DE
@@ -109057,7 +110571,8 @@
3225882880,3225883391,DE
3225883392,3225884927,SE
3225884928,3225885183,NL
-3225885184,3225885695,AT
+3225885184,3225885439,IT
+3225885440,3225885695,AT
3225885696,3225886719,SE
3225886720,3225886975,NO
3225886976,3225887231,SE
@@ -109157,7 +110672,9 @@
3226156800,3226157567,CA
3226157568,3226157823,US
3226157824,3226167807,CA
-3226167808,3226168063,US
+3226167808,3226167923,US
+3226167924,3226167927,DE
+3226167928,3226168063,US
3226168064,3226175231,CA
3226175232,3226175743,US
3226176000,3226177535,CA
@@ -110280,7 +111797,9 @@
3228533760,3228534015,CA
3228534016,3228538127,US
3228538128,3228538135,GB
-3228538136,3228539903,US
+3228538136,3228539799,US
+3228539800,3228539807,AE
+3228539808,3228539903,US
3228539904,3228540927,BR
3228540928,3228558591,US
3228558592,3228559103,BR
@@ -110323,7 +111842,9 @@
3228714765,3228714765,CA
3228714766,3228830719,IL
3228830720,3228833791,PS
-3228833792,3229024255,IL
+3228833792,3228965375,IL
+3228965376,3228965631,US
+3228965632,3229024255,IL
3229024256,3229089791,US
3229089792,3229090047,CA
3229090048,3229092095,US
@@ -110517,6 +112038,7 @@
3229844992,3229845247,BL
3229845248,3229845503,US
3229845504,3229846527,GB
+3229846784,3229847039,US
3229847296,3229870335,US
3229870592,3229870847,CA
3229870848,3229874943,US
@@ -110814,7 +112336,9 @@
3230384384,3230387455,CA
3230387456,3230387711,US
3230387712,3230400255,CA
-3230400256,3230402559,US
+3230400256,3230400767,US
+3230400768,3230401023,BR
+3230401024,3230402559,US
3230402560,3230404607,BR
3230404608,3230405631,AR
3230405632,3230406655,CL
@@ -110885,7 +112409,8 @@
3230695424,3230728191,CN
3230777344,3230784511,BR
3230784512,3230785535,MX
-3230785536,3230823679,US
+3230785536,3230786559,PL
+3230786560,3230823679,US
3230823680,3230823935,DK
3230823936,3230824191,US
3230824192,3230824447,FR
@@ -111090,7 +112615,7 @@
3231077632,3231078655,US
3231078656,3231078911,GB
3231078912,3231079423,CA
-3231079424,3231079679,NL
+3231079424,3231079679,GB
3231079680,3231079935,US
3231079936,3231080191,NL
3231080192,3231082495,US
@@ -111353,7 +112878,9 @@
3231506944,3231507199,US
3231507200,3231507455,BE
3231507456,3231510015,US
-3231510016,3231510271,CA
+3231510016,3231510264,CA
+3231510265,3231510265,US
+3231510266,3231510271,CA
3231510272,3231510527,GB
3231510528,3231512575,US
3231512576,3231512831,LU
@@ -111603,7 +113130,8 @@
3231888384,3231889407,RU
3231889408,3231890431,RO
3231890432,3231892479,RU
-3231893504,3231894527,UA
+3231892480,3231894527,UA
+3231894528,3231895551,CH
3231895552,3231896575,UA
3231896576,3231897599,RU
3231897600,3231898623,IE
@@ -111670,7 +113198,7 @@
3232101120,3232103167,SE
3232103168,3232103423,FR
3232103424,3232104447,SE
-3232104448,3232106495,DE
+3232104448,3232107519,DE
3232107520,3232108543,RU
3232108544,3232112639,DE
3232116736,3232129023,DE
@@ -111696,9 +113224,11 @@
3232156069,3232156069,GI
3232156070,3232156159,DE
3232156160,3232156671,PL
+3232156672,3232157695,FR
3232157696,3232159743,DE
-3232159744,3232160767,PL
+3232159744,3232161791,PL
3232163840,3232165887,RU
+3232167936,3232168959,GB
3232169216,3232169727,DE
3232169728,3232169983,PL
3232169984,3232170240,IT
@@ -113075,9 +114605,7 @@
3237040896,3237041151,CA
3237041152,3237041183,US
3237041184,3237041199,CA
-3237041200,3237041407,US
-3237041408,3237041663,CA
-3237041664,3237041823,US
+3237041200,3237041823,US
3237041824,3237041935,CA
3237041936,3237041983,US
3237041984,3237042047,CA
@@ -113505,8 +115033,7 @@
3237868288,3237868543,DK
3237868544,3237868799,GB
3237868800,3237869311,US
-3237869312,3237869439,KR
-3237869440,3237869567,JP
+3237869312,3237869567,KR
3237869568,3237869823,AU
3237869824,3237869951,PH
3237869952,3237870079,VN
@@ -113657,7 +115184,9 @@
3238504448,3238510591,DE
3238518784,3238526975,DE
3238526976,3238527231,RU
+3238528000,3238529023,BG
3238529024,3238530047,CH
+3238530048,3238531071,KZ
3238531072,3238535167,CH
3238535168,3238536191,SE
3238536192,3238537215,DK
@@ -113672,20 +115201,28 @@
3238545920,3238546431,RU
3238546432,3238546943,CH
3238546944,3238547455,UA
+3238547456,3238548479,PL
3238548992,3238549503,CZ
3238549504,3238555647,CH
+3238557696,3238558719,ES
3238559232,3238559487,SE
3238559744,3238562303,CH
3238562560,3238562815,IR
3238562816,3238573567,CH
3238573568,3238574079,PL
+3238574080,3238575103,DE
3238575104,3238578431,CH
3238578432,3238578687,UA
3238578944,3238579199,RU
3238579200,3238579455,CH
+3238580224,3238581247,RU
3238581504,3238581759,DE
3238581760,3238582015,CH
-3238583808,3238588415,CH
+3238582272,3238583295,ES
+3238583808,3238584319,CH
+3238584320,3238585343,FR
+3238585344,3238588415,CH
+3238588416,3238589439,GB
3238589696,3238589951,CH
3238589952,3238590207,LT
3238590464,3238590719,CH
@@ -113715,6 +115252,7 @@
3238624256,3238625279,HU
3238625280,3238630399,LU
3238630400,3238631423,GR
+3238631424,3238632447,RO
3238632960,3238633215,UA
3238633216,3238653951,DK
3238653952,3238655999,RU
@@ -113813,13 +115351,14 @@
3239116800,3239117055,PT
3239117056,3239117311,SI
3239117312,3239117567,DE
+3239117824,3239118847,BG
3239118848,3239119871,DE
3239119872,3239120127,GB
3239120128,3239120383,CZ
3239120384,3239120639,PL
3239120896,3239121663,DE
3239121664,3239121919,FR
-3239121920,3239123967,DE
+3239121920,3239124991,DE
3239127296,3239127551,PL
3239127552,3239127807,IL
3239127808,3239128063,RU
@@ -113831,6 +115370,7 @@
3239130112,3239130367,RU
3239130368,3239130623,JO
3239130624,3239130879,PL
+3239131136,3239132159,NL
3239132160,3239133183,DE
3239133440,3239133695,GB
3239133696,3239133951,ES
@@ -113846,6 +115386,7 @@
3239136512,3239136767,DE
3239136768,3239137023,MD
3239137024,3239137279,LI
+3239137280,3239138303,IT
3239138304,3239138559,PL
3239138560,3239138815,CH
3239141376,3239145471,US
@@ -113859,9 +115400,11 @@
3239161344,3239161599,PL
3239161600,3239161855,HU
3239162368,3239162623,DE
+3239162880,3239163903,ES
3239163904,3239164159,PL
3239164160,3239164671,DE
3239164672,3239164927,GB
+3239164928,3239165951,SY
3239165952,3239166207,FR
3239166464,3239166719,CH
3239166720,3239166975,RO
@@ -113898,7 +115441,7 @@
3239176192,3239180287,DE
3239180288,3239181311,CZ
3239181312,3239181567,AT
-3239181824,3239182079,DE
+3239181824,3239182079,GB
3239182336,3239198719,DE
3239198720,3239206911,US
3239206912,3239264255,DE
@@ -113923,12 +115466,14 @@
3239277568,3239278591,RU
3239279104,3239280127,PL
3239280128,3239280639,RU
+3239280640,3239281663,DE
3239281664,3239282687,RU
3239282688,3239283711,FI
3239283712,3239284735,PL
3239284736,3239285247,IR
3239285248,3239285503,SE
3239285504,3239285759,BG
+3239285760,3239286783,ES
3239286784,3239287807,UA
3239287808,3239288831,GB
3239288832,3239289855,DE
@@ -113949,13 +115494,18 @@
3239306240,3239307263,UA
3239307264,3239308287,EG
3239308288,3239309311,DE
-3239309312,3239313407,UA
+3239309312,3239311359,UA
+3239311360,3239312383,PL
+3239312384,3239313407,UA
3239313408,3239445759,DE
3239445760,3239446015,PL
3239446016,3239446271,RU
3239446272,3239446527,FR
3239446528,3239447551,DE
+3239447552,3239448575,RU
3239448576,3239449599,DE
+3239449600,3239450623,RU
+3239450624,3239451647,DE
3239451648,3239451903,PL
3239451904,3239452159,DE
3239452160,3239452415,CY
@@ -113975,6 +115525,7 @@
3239468288,3239468543,RO
3239468544,3239468799,NO
3239468800,3239469055,RO
+3239469056,3239470079,UA
3239470080,3239470591,DE
3239470592,3239470847,CH
3239470848,3239471103,BG
@@ -113982,6 +115533,7 @@
3239472128,3239474943,DE
3239474944,3239475199,ES
3239475200,3239477247,DE
+3239479296,3239480319,IT
3239480320,3239480575,UA
3239480832,3239481087,CH
3239481088,3239481343,FR
@@ -114005,7 +115557,9 @@
3239508992,3239509247,PL
3239509248,3239509503,DE
3239509504,3239509759,CH
-3239509760,3239514111,DE
+3239509760,3239511039,DE
+3239511040,3239512063,RO
+3239512064,3239514111,DE
3239518208,3239522303,DE
3239522304,3239522559,PL
3239522560,3239522815,SI
@@ -114032,6 +115586,7 @@
3239541248,3239541503,UA
3239541504,3239541759,FR
3239541760,3239542015,GB
+3239542784,3239543807,MD
3239543808,3239544831,DE
3239544832,3239545087,GB
3239545088,3239545343,SI
@@ -114040,6 +115595,7 @@
3239546112,3239546367,GB
3239546368,3239546623,RU
3239546624,3239546879,NL
+3239546880,3239547903,RU
3239547904,3239549951,DE
3239549952,3239550207,TR
3239550208,3239550463,UA
@@ -114049,6 +115605,7 @@
3239554048,3239554303,SE
3239554560,3239554815,PL
3239554816,3239555071,UA
+3239555072,3239556095,DE
3239556096,3239556351,SA
3239556352,3239556607,UA
3239556608,3239556863,HR
@@ -114066,6 +115623,7 @@
3239575040,3239575295,DE
3239575296,3239575551,DK
3239575552,3239577599,DE
+3239577600,3239578623,RU
3239578624,3239578879,DE
3239579136,3239579391,PL
3239579392,3239581695,DE
@@ -114087,9 +115645,13 @@
3239625728,3239626751,RU
3239626752,3239628799,PL
3239628800,3239629823,DE
+3239629824,3239630847,UA
3239630848,3239631871,DE
3239631872,3239632895,UA
-3239632896,3239636991,DE
+3239632896,3239633919,DE
+3239633920,3239634943,RU
+3239634944,3239635967,LT
+3239635968,3239636991,DE
3239636992,3239638015,BG
3239638016,3239639039,PL
3239639040,3239639551,SI
@@ -114129,11 +115691,13 @@
3239691520,3239691775,FR
3239691822,3239691822,GB
3239692032,3239692287,AT
-3239692288,3239696383,DE
+3239692288,3239697407,DE
3239697408,3239697663,HR
3239697664,3239697919,RU
3239697920,3239698175,PL
-3239698432,3239706623,DE
+3239698432,3239704575,DE
+3239704576,3239705599,PL
+3239705600,3239706623,DE
3239706880,3239707135,NL
3239707392,3239707647,UA
3239707648,3239707903,GB
@@ -114171,6 +115735,7 @@
3239740928,3239741183,UA
3239741184,3239741439,RU
3239741440,3239744511,DE
+3239744512,3239745535,ES
3239747584,3239759871,DE
3239760128,3239760383,UA
3239761408,3239761663,RU
@@ -114189,6 +115754,7 @@
3239773952,3239774207,SA
3239774464,3239774719,ES
3239774976,3239775231,PT
+3239775232,3239776255,RO
3239776256,3239778303,DE
3239782400,3239782655,AT
3239782656,3239782911,RU
@@ -114232,6 +115798,7 @@
3239828992,3239829503,RU
3239830016,3239830527,CH
3239831040,3239831551,RU
+3239831552,3239832575,LB
3239832576,3239834623,RU
3239834624,3239835135,AT
3239836160,3239836671,DK
@@ -114246,6 +115813,7 @@
3239840768,3239841023,AT
3239841024,3239841279,DE
3239841536,3239846911,DE
+3239846912,3239847935,GB
3239847936,3239848447,DE
3239848448,3239848703,CH
3239848960,3239849215,RU
@@ -114299,7 +115867,8 @@
3239889920,3239890175,AT
3239890176,3239890431,FR
3239890432,3239890687,NL
-3239890688,3239895039,DE
+3239890688,3239894015,DE
+3239894016,3239895039,NL
3239895040,3239895295,DK
3239895296,3239895551,TR
3239895552,3239895807,PL
@@ -114318,13 +115887,19 @@
3239901696,3239901951,BG
3239901952,3239902207,DE
3239902720,3239902975,EE
-3239903232,3239907327,DE
+3239903232,3239906303,DE
+3239906304,3239906559,RO
+3239906560,3239906815,RU
+3239906816,3239907327,RO
3239907328,3239907583,UA
3239908096,3239908351,RU
3239908864,3239910399,DE
+3239910400,3239911423,UA
+3239911424,3239912447,RU
3239912960,3239913215,DE
3239913216,3239913471,LT
3239914240,3239914495,DE
+3239914496,3239915519,ES
3239915520,3239915775,PL
3239915776,3239916031,HU
3239916032,3239916287,SA
@@ -114336,6 +115911,7 @@
3239919616,3239938815,DE
3239938816,3239939071,NL
3239939072,3239948543,DE
+3239949312,3239950335,RU
3239950848,3239951103,DE
3239951104,3239951359,RO
3239951360,3239951615,DE
@@ -114363,7 +115939,7 @@
3239975936,3239976191,RO
3239976192,3239976447,DE
3239976448,3239976959,NL
-3239977984,3239978751,DE
+3239976960,3239978751,DE
3239978752,3239979007,RU
3239979264,3239979519,GB
3239979520,3239979775,DE
@@ -114372,7 +115948,9 @@
3239996416,3239996671,GB
3239996928,3239997183,BE
3239997184,3239997439,GB
-3239997440,3240004863,DE
+3239997440,3239998463,DE
+3239998464,3239999487,RU
+3239999488,3240004863,DE
3240004864,3240005119,FR
3240005120,3240005375,SE
3240005376,3240005631,NL
@@ -114396,7 +115974,8 @@
3240034560,3240035327,DE
3240036096,3240037375,DE
3240037888,3240038143,AT
-3240038912,3240039423,DE
+3240038912,3240040447,DE
+3240048640,3240049663,UA
3240049664,3240050687,DE
3240054784,3240058879,DE
3240067072,3240083455,DE
@@ -114404,6 +115983,7 @@
3240085504,3240087551,KZ
3240087552,3240091647,IM
3240091648,3240097791,DE
+3240097792,3240098815,IT
3240098816,3240099327,CH
3240099840,3240101887,GB
3240102144,3240102399,GB
@@ -114429,14 +116009,18 @@
3240116224,3240116479,DE
3240116480,3240116735,DK
3240116736,3240117247,GB
-3240117261,3240117261,UA
+3240117248,3240118271,UA
3240118272,3240120319,ES
3240120320,3240120831,IR
3240120832,3240121343,GB
+3240121344,3240122367,RU
3240122368,3240123391,GB
+3240123392,3240125439,RU
3240125440,3240125695,RO
3240125696,3240125951,GB
-3240126208,3240132607,GB
+3240126208,3240128511,GB
+3240128512,3240129535,ME
+3240129536,3240132607,GB
3240163328,3240165375,GB
3240165376,3240165887,PL
3240165888,3240166399,ES
@@ -114455,7 +116039,7 @@
3240173568,3240174079,RO
3240174080,3240174591,PL
3240174592,3240175103,FR
-3240175104,3240175615,RU
+3240175104,3240175615,UA
3240176128,3240176639,PL
3240176640,3240177151,UA
3240177152,3240177663,FR
@@ -114559,6 +116143,7 @@
3240247296,3240248319,RS
3240248320,3240249343,DE
3240249344,3240250367,UA
+3240250368,3240251391,GB
3240251392,3240252415,IE
3240252416,3240253439,LT
3240253440,3240254463,BE
@@ -114623,10 +116208,13 @@
3240285184,3240286207,PL
3240286208,3240287231,UA
3240287232,3240288255,PL
-3240288256,3240296447,GB
+3240288256,3240289279,RU
+3240289280,3240296447,GB
3240296448,3240296703,RO
+3240297472,3240298495,IT
3240298496,3240300543,GB
3240302848,3240303103,UA
+3240303616,3240304639,GB
3240304640,3240305663,RU
3240305664,3240305919,PL
3240306176,3240306687,RU
@@ -114652,7 +116240,10 @@
3240324864,3240325119,SI
3240325120,3240328191,GB
3240328192,3240328447,SG
-3240328448,3240361983,GB
+3240328448,3240334335,GB
+3240334336,3240335359,NL
+3240335360,3240336383,BG
+3240336384,3240361983,GB
3240361984,3240362239,TR
3240362240,3240362495,DE
3240362496,3240362751,GB
@@ -114674,7 +116265,8 @@
3240374016,3240374271,GB
3240378368,3240386559,GB
3240394752,3240403455,GB
-3240406272,3240406527,DE
+3240403968,3240404991,NL
+3240404992,3240407039,DE
3240407040,3240407295,IL
3240407296,3240407551,NL
3240407552,3240407807,NO
@@ -114693,7 +116285,9 @@
3240423424,3240435711,GB
3240436480,3240436735,GB
3240436736,3240437759,DE
-3240443904,3240460287,GB
+3240443904,3240455167,GB
+3240455168,3240456191,NL
+3240456192,3240460287,GB
3240460288,3240461055,IL
3240461056,3240461567,DE
3240461824,3240462079,RU
@@ -114720,6 +116314,7 @@
3240468224,3240468479,CH
3240468480,3240476671,GB
3240484864,3240486911,GB
+3240486912,3240487935,NL
3240487936,3240488191,CH
3240488192,3240488447,GB
3240488448,3240488703,BG
@@ -114732,7 +116327,11 @@
3240505344,3240505599,PL
3240505600,3240505855,GB
3240506368,3240506623,GB
-3240507392,3240575487,GB
+3240507392,3240558591,GB
+3240558592,3240559615,FR
+3240559616,3240561663,GB
+3240561664,3240562687,HU
+3240562688,3240575487,GB
3240575488,3240575743,RO
3240575744,3240575999,GB
3240576000,3240576255,DE
@@ -114758,13 +116357,16 @@
3240593408,3240593663,GB
3240594176,3240594431,DK
3240594432,3240594943,GB
-3240595456,3240607743,GB
+3240595456,3240601599,GB
+3240601600,3240602623,RU
+3240602624,3240607743,GB
3240609792,3240611839,DE
3240611840,3240613887,GB
3240615936,3240620031,GB
+3240620032,3240621055,LT
3240621824,3240622079,GB
3240622080,3240622591,RU
-3240622848,3240623103,GB
+3240622848,3240624127,GB
3240624128,3240689663,EE
3240689664,3240690175,GB
3240690176,3240690687,TR
@@ -114786,6 +116388,7 @@
3240701184,3240701439,LV
3240701440,3240701695,ES
3240701952,3240702975,UA
+3240702976,3240703999,CH
3240704000,3240705023,GR
3240705024,3240706047,UA
3240706048,3240707071,BG
@@ -114866,7 +116469,10 @@
3240751104,3240752127,ES
3240752128,3240754175,RO
3240754176,3240755199,DE
-3240755200,3240787967,IT
+3240755200,3240756223,IT
+3240756224,3240757247,ES
+3240757248,3240787967,IT
+3240787968,3240788991,CZ
3240788992,3240790015,IT
3240790528,3240791551,IT
3240791552,3240791807,RU
@@ -114894,6 +116500,7 @@
3240811776,3240812031,DE
3240812032,3240812287,HU
3240812288,3240812543,KW
+3240812544,3240813567,GB
3240813568,3240814591,PL
3240814592,3240816639,IT
3240818688,3240820735,NL
@@ -114902,14 +116509,18 @@
3240820832,3240820863,GB
3240820864,3240820991,PL
3240820992,3240822783,IT
+3240822784,3240823807,RU
3240823808,3240824319,PL
3240824576,3240825855,IT
+3240825856,3240826879,PL
3240826880,3240827135,IT
3240827136,3240827391,FR
3240827392,3240827647,BG
3240827648,3240827903,CH
3240828160,3240828415,DE
-3240828928,3240837119,IT
+3240828928,3240830975,IT
+3240830976,3240831999,RU
+3240832000,3240837119,IT
3240839424,3240839679,IT
3240840192,3240840447,IT
3240840448,3240840703,PL
@@ -114954,9 +116565,7 @@
3240882176,3240883199,PL
3240883200,3240884223,IL
3240884224,3240886271,UA
-3240886272,3240954495,SE
-3240954496,3240954623,DE
-3240954624,3240955647,SE
+3240886272,3240955647,SE
3240955648,3240955903,GB
3240955904,3241017343,SE
3241017600,3241017855,AT
@@ -115200,7 +116809,9 @@
3242596256,3242596287,LT
3242596288,3242596415,FR
3242596416,3242596479,PT
-3242596480,3242597087,FR
+3242596480,3242596575,FR
+3242596576,3242596607,GB
+3242596608,3242597087,FR
3242597088,3242597119,CZ
3242597120,3242597343,FR
3242597344,3242597375,NL
@@ -115278,7 +116889,9 @@
3242620352,3242620359,ES
3242620360,3242620367,FR
3242620368,3242620383,PL
-3242620384,3242622031,FR
+3242620384,3242621959,FR
+3242621960,3242621967,PL
+3242621968,3242622031,FR
3242622032,3242622047,PL
3242622048,3242622207,FR
3242622208,3242622463,PL
@@ -115420,7 +117033,8 @@
3244144640,3244146687,UA
3244146688,3244146943,GB
3244146944,3244147711,RU
-3244147712,3244148287,GB
+3244147712,3244148223,GB
+3244148224,3244148287,DE
3244148288,3244148351,FR
3244148352,3244149759,GB
3244149760,3244150783,PL
@@ -115627,7 +117241,9 @@
3244872704,3244872959,IR
3244872960,3244873215,UA
3244873216,3244873471,SE
-3244873472,3244873727,IE
+3244873472,3244873537,IE
+3244873538,3244873538,US
+3244873539,3244873727,IE
3244873728,3244873983,DE
3244873984,3244874239,SE
3244874240,3244874495,ES
@@ -118167,9 +119783,7 @@
3253223680,3253223935,UA
3253223936,3253230591,RU
3253230592,3253230847,BY
-3253230848,3253247999,RU
-3253248000,3253248255,DE
-3253248256,3253270527,RU
+3253230848,3253270527,RU
3253270528,3253271551,BY
3253271552,3253288703,RU
3253288704,3253288959,AR
@@ -118473,8 +120087,12 @@
3253752676,3253752691,GB
3253752692,3253754139,DE
3253754140,3253754143,GB
-3253754144,3253755903,DE
-3253755904,3253759999,GB
+3253754144,3253754191,DE
+3253754192,3253754207,FR
+3253754208,3253755551,DE
+3253755552,3253755559,IT
+3253755560,3253755895,DE
+3253755896,3253759999,GB
3253760000,3253760511,DE
3253760512,3253760767,FR
3253760768,3253761407,DE
@@ -118542,7 +120160,9 @@
3253776779,3253776779,GB
3253776780,3253776809,DE
3253776810,3253776810,CH
-3253776811,3253777791,DE
+3253776811,3253777025,DE
+3253777026,3253777026,GB
+3253777027,3253777791,DE
3253777792,3253777855,FR
3253777856,3253777887,GB
3253777888,3253778231,DE
@@ -118558,7 +120178,9 @@
3253778944,3253779135,GB
3253779136,3253779167,NL
3253779168,3253779199,GB
-3253779200,3253781415,DE
+3253779200,3253780559,DE
+3253780560,3253780563,SE
+3253780564,3253781415,DE
3253781416,3253781423,GB
3253781424,3253781615,DE
3253781616,3253781631,FR
@@ -118590,7 +120212,9 @@
3253791473,3253791473,GB
3253791474,3253791929,DE
3253791930,3253791930,GB
-3253791931,3253792823,DE
+3253791931,3253792153,DE
+3253792154,3253792154,GB
+3253792155,3253792823,DE
3253792824,3253792831,GB
3253792832,3253792859,DE
3253792860,3253792863,GB
@@ -118606,7 +120230,9 @@
3253793262,3253793262,GB
3253793263,3253793271,DE
3253793272,3253793275,GB
-3253793276,3253795371,DE
+3253793276,3253793359,DE
+3253793360,3253793375,DK
+3253793376,3253795371,DE
3253795372,3253795375,GB
3253795376,3253796863,DE
3253796864,3253862399,SE
@@ -119206,7 +120832,7 @@
3255362048,3255362559,FI
3255362560,3255364607,RU
3255364608,3255365119,NL
-3255365120,3255365631,SK
+3255365120,3255365631,CZ
3255365632,3255366143,UA
3255366144,3255367167,DK
3255367168,3255367679,RU
@@ -119412,7 +121038,7 @@
3255744000,3255751167,SE
3255751168,3255751423,DK
3255751424,3255752959,SE
-3255752960,3255753215,LI
+3255752960,3255753215,RO
3255753216,3255762431,SE
3255762432,3255762943,BE
3255762944,3255771135,DE
@@ -124095,7 +125721,7 @@
3269285336,3269285343,FR
3269285344,3269285631,GB
3269285632,3269285887,DE
-3269286400,3269286471,DE
+3269286400,3269286479,DE
3269288688,3269288695,DE
3269288704,3269288959,DE
3269290560,3269290575,DE
@@ -124484,7 +126110,7 @@
3271753728,3271770111,FR
3271770112,3271786495,AT
3271786496,3271788543,UA
-3271789568,3271790591,RU
+3271788544,3271790591,RU
3271790592,3271791615,LV
3271791616,3271792639,UA
3271792640,3271793663,PL
@@ -125042,9 +126668,8 @@
3273318400,3273326591,GB
3273326984,3273326987,DE
3273326992,3273327047,DE
-3273327104,3273327231,DE
-3273327264,3273327295,DE
-3273327336,3273327351,DE
+3273327104,3273327295,DE
+3273327336,3273327359,DE
3273327392,3273327407,IE
3273327488,3273327495,GB
3273327520,3273327551,IE
@@ -125158,6 +126783,7 @@
3273368064,3273368575,DE
3273369344,3273369855,DE
3273369872,3273369919,FR
+3273369976,3273369983,FR
3273370624,3273371135,DE
3273371712,3273371743,DE
3273371760,3273371775,DE
@@ -125964,6 +127590,7 @@
3275456416,3275458303,GB
3275458304,3275458559,FK
3275458560,3275459071,IE
+3275459600,3275459615,IE
3275459840,3275460095,IE
3275460096,3275460223,GB
3275460224,3275460239,IE
@@ -126309,7 +127936,9 @@
3276031480,3276031999,FR
3276032000,3276032311,GB
3276032312,3276032319,FR
-3276032320,3276036543,GB
+3276032320,3276032511,GB
+3276032512,3276032767,ES
+3276032768,3276036543,GB
3276036544,3276036607,FR
3276036608,3276038143,GB
3276038144,3276039167,FR
@@ -127215,7 +128844,9 @@
3277372416,3277372927,IR
3277373440,3277373951,RU
3277373952,3277374463,FR
-3277374464,3277375999,RU
+3277374464,3277374719,RU
+3277374720,3277374975,KZ
+3277374976,3277375999,RU
3277376000,3277376511,NL
3277377536,3277378047,RU
3277378560,3277379071,HR
@@ -127361,7 +128992,8 @@
3277732208,3277732223,GB
3277732224,3277732227,CH
3277732228,3277732231,GB
-3277732232,3277733407,CH
+3277732232,3277733375,CH
+3277733376,3277733407,GB
3277733408,3277733411,DE
3277733412,3277733887,CH
3277733888,3277742079,DE
@@ -127471,7 +129103,9 @@
3278045184,3278061567,GB
3278061568,3278065663,NL
3278065664,3278110719,GB
-3278110720,3278118343,SE
+3278110720,3278116671,SE
+3278116672,3278116679,ES
+3278116680,3278118343,SE
3278118344,3278118351,ES
3278118352,3278176255,SE
3278176256,3278241791,FR
@@ -130459,15 +132093,11 @@
3283288064,3283419135,DE
3283419136,3283451903,IR
3283451904,3283460095,NO
-3283460096,3283460287,GB
-3283460288,3283460351,CZ
-3283460352,3283460607,GB
-3283460608,3283460863,US
-3283460864,3283461631,GB
+3283460096,3283460607,CZ
+3283460608,3283461119,US
+3283461120,3283461631,GB
3283461632,3283461887,SE
-3283461888,3283461951,GB
-3283461952,3283462015,ES
-3283462016,3283462143,GB
+3283461888,3283462143,ES
3283462144,3283462655,US
3283462656,3283462911,DE
3283462912,3283463167,GB
@@ -130848,7 +132478,7 @@
3284135936,3284136447,CH
3284136448,3284136959,RU
3284136960,3284137471,FR
-3284137472,3284137983,UA
+3284137472,3284137983,RU
3284137984,3284138495,PL
3284138496,3284139007,RU
3284139008,3284172799,AT
@@ -130867,9 +132497,7 @@
3284205568,3284257535,NL
3284257536,3284257791,GB
3284257792,3284271103,NL
-3284271104,3284399155,GB
-3284399156,3284399159,BG
-3284399160,3284402175,GB
+3284271104,3284402175,GB
3284402176,3284467711,SE
3284467712,3284533247,FI
3284533248,3284598783,SE
@@ -131140,7 +132768,9 @@
3285637120,3285638143,DE
3285638144,3285639167,UA
3285639168,3285641215,FR
-3285641216,3285642239,RU
+3285641216,3285641471,RU
+3285641472,3285641727,CH
+3285641728,3285642239,RU
3285642240,3285643263,UA
3285643264,3285645311,FR
3285645312,3285647359,BG
@@ -131236,13 +132866,15 @@
3285928304,3285928311,GB
3285929216,3285929231,DE
3285929234,3285929239,BG
+3285929240,3285929243,DE
3285930752,3285931007,GB
3285931528,3285931559,DE
3285931560,3285931567,HU
3285931568,3285931599,DE
+3285931608,3285931615,DE
3285935872,3285936127,GB
3285936136,3285936147,FR
-3285936152,3285936227,FR
+3285936152,3285936231,FR
3285939136,3285939175,GB
3285939184,3285939191,GB
3285939744,3285939759,GB
@@ -131269,7 +132901,7 @@
3285964800,3285964935,DE
3285964944,3285964991,DE
3285964992,3285965007,HU
-3285965056,3285966079,DE
+3285965024,3285966143,DE
3285968896,3285970943,GB
3285972992,3286013695,FR
3286013696,3286013951,RE
@@ -132284,8 +133916,7 @@
3289411584,3289412607,NL
3289412608,3289413631,US
3289413632,3289414655,GB
-3289414656,3289421823,US
-3289421824,3289422847,SC
+3289414656,3289422847,US
3289422848,3289423871,NL
3289423872,3289430015,US
3289430016,3289431039,GB
@@ -132298,7 +133929,7 @@
3289439488,3289439743,GB
3289439744,3289439999,US
3289440000,3289440255,CA
-3289440256,3289440511,ZA
+3289440256,3289440511,IT
3289440512,3289441023,US
3289441024,3289441279,IE
3289441280,3289441535,US
@@ -132308,7 +133939,7 @@
3289442304,3289445375,US
3289445376,3289445631,DE
3289445632,3289445887,US
-3289445888,3289446143,ZA
+3289445888,3289446143,IT
3289446144,3289446399,US
3289446400,3289446655,ID
3289446656,3289446911,US
@@ -132412,7 +134043,7 @@
3289641728,3289641983,DE
3289641984,3289642239,AU
3289642240,3289642495,US
-3289642496,3289643007,SC
+3289642496,3289643007,IT
3289643008,3289643263,ID
3289643264,3289643519,SG
3289643520,3289644031,FR
@@ -132670,14 +134301,58 @@
3291447296,3291463679,CI
3291463680,3291480063,ZA
3291480064,3291545599,SC
-3291545600,3291546367,MU
+3291545600,3291545855,CI
+3291545856,3291546111,GM
+3291546112,3291546367,NA
3291546368,3291546623,BI
3291546624,3291546879,SZ
-3291546880,3291550207,MU
+3291546880,3291547135,TZ
+3291547136,3291547391,AO
+3291547392,3291547647,RW
+3291547648,3291547903,BJ
+3291547904,3291548159,MU
+3291548160,3291548415,DJ
+3291548416,3291548671,SC
+3291548672,3291548927,TZ
+3291548928,3291549183,MG
+3291549184,3291549439,GH
+3291549440,3291549695,UG
+3291549696,3291549951,LR
+3291549952,3291550207,GA
3291550208,3291550463,MR
-3291550464,3291553279,MU
+3291550464,3291550719,BF
+3291550720,3291550975,TZ
+3291550976,3291551231,MU
+3291551232,3291551487,KE
+3291551488,3291551743,MU
+3291551744,3291551999,BW
+3291552000,3291552255,MU
+3291552256,3291552511,NG
+3291552512,3291552767,MU
+3291552768,3291553023,NG
+3291553024,3291553279,MU
3291553280,3291553535,NG
-3291553536,3291611135,MU
+3291553536,3291553791,MU
+3291553792,3291554047,NG
+3291554048,3291554303,MU
+3291554304,3291554559,MZ
+3291554560,3291554815,MU
+3291554816,3291555071,CD
+3291555072,3291555327,MU
+3291555328,3291555583,CM
+3291555584,3291555839,MU
+3291555840,3291556095,GN
+3291556096,3291556351,MU
+3291556352,3291556607,SN
+3291556608,3291556863,MU
+3291556864,3291557119,TG
+3291557120,3291557375,MU
+3291557376,3291557631,ZW
+3291557632,3291557887,MU
+3291557888,3291558143,ML
+3291558144,3291558399,MU
+3291558400,3291558655,TZ
+3291558656,3291611135,MU
3291611136,3291611647,ZA
3291611648,3291611903,MU
3291611904,3291612159,ZA
@@ -132748,8 +134423,8 @@
3291813632,3291813887,US
3291813888,3291814143,GB
3291814144,3291814399,US
-3291814400,3291814400,NL
-3291814401,3291815423,US
+3291814400,3291814655,NL
+3291814656,3291815423,US
3291815424,3291815679,GB
3291815680,3291817471,US
3291817472,3291817983,NL
@@ -132873,18 +134548,18 @@
3292028672,3292029951,US
3292029952,3292030719,SC
3292030720,3292031487,US
-3292031488,3292033023,SC
-3292033024,3292033279,US
-3292033280,3292034303,SC
+3292031488,3292031999,SC
+3292032000,3292032255,US
+3292032256,3292033023,SC
+3292033024,3292033535,US
+3292033536,3292034303,SC
3292034304,3292034559,US
3292034560,3292035583,SC
3292035584,3292035839,US
3292035840,3292036095,SC
3292036096,3292036607,US
3292036608,3292036863,SC
-3292036864,3292037375,US
-3292037376,3292037631,SC
-3292037632,3292038143,US
+3292036864,3292038143,US
3292038144,3292038399,SC
3292038400,3292038655,US
3292038656,3292038911,SC
@@ -132920,15 +134595,11 @@
3292056320,3292056831,SC
3292056832,3292057343,US
3292057344,3292057855,SC
-3292057856,3292058879,US
-3292058880,3292059135,SC
-3292059136,3292059391,US
+3292057856,3292059391,US
3292059392,3292059647,SC
3292059648,3292060927,US
3292060928,3292061183,SC
-3292061184,3292061439,US
-3292061440,3292061695,SC
-3292061696,3292062719,US
+3292061184,3292062719,US
3292062720,3292063231,SC
3292063232,3292063487,US
3292063488,3292063743,SC
@@ -132941,7 +134612,8 @@
3292066816,3292067327,US
3292067328,3292068607,SC
3292068608,3292069119,US
-3292069120,3292069887,SC
+3292069120,3292069631,SC
+3292069632,3292069887,AU
3292069888,3292070143,SE
3292070144,3292070399,DK
3292070400,3292070655,US
@@ -132971,9 +134643,7 @@
3292079360,3292079615,SC
3292079616,3292080127,US
3292080128,3292080383,SC
-3292080384,3292081151,US
-3292081152,3292081407,SC
-3292081408,3292081663,US
+3292080384,3292081663,US
3292081664,3292081919,SC
3292081920,3292082431,US
3292082432,3292082687,SC
@@ -132983,9 +134653,7 @@
3292085248,3292085503,SC
3292085504,3292085759,US
3292085760,3292086015,SC
-3292086016,3292087295,US
-3292087296,3292087551,SC
-3292087552,3292088063,US
+3292086016,3292088063,US
3292088064,3292088319,SC
3292088320,3292088575,US
3292088576,3292088831,SC
@@ -133026,11 +134694,11 @@
3292104192,3292104447,US
3292104448,3292104703,SC
3292104704,3292104959,US
-3292104960,3292105471,SC
-3292105472,3292105983,US
+3292104960,3292105215,SC
+3292105216,3292105983,US
3292105984,3292106239,SC
-3292106240,3292106495,US
-3292106496,3292107263,SC
+3292106240,3292106751,US
+3292106752,3292107263,SC
3292107264,3292107519,US
3292107520,3292109311,SC
3292109312,3292109567,US
@@ -133039,9 +134707,7 @@
3292110080,3292110847,SC
3292110848,3292111615,US
3292111616,3292111871,SC
-3292111872,3292112127,US
-3292112128,3292112383,SC
-3292112384,3292112895,US
+3292111872,3292112895,US
3292112896,3292113151,SC
3292113152,3292113407,US
3292113408,3292113663,SC
@@ -133118,8 +134784,8 @@
3292146688,3292146943,US
3292146944,3292147455,SC
3292147456,3292147967,US
-3292147968,3292148735,SC
-3292148736,3292148991,US
+3292147968,3292148479,SC
+3292148480,3292148991,US
3292148992,3292149247,SC
3292149248,3292149503,US
3292149504,3292149759,SC
@@ -133132,14 +134798,16 @@
3292153856,3292154111,US
3292154112,3292154623,SC
3292154624,3292157439,US
-3292157440,3292158463,SC
+3292157440,3292157695,SC
+3292157696,3292157951,US
+3292157952,3292158463,SC
3292158464,3292158719,US
3292158720,3292158975,SC
3292158976,3292159999,US
3292160000,3292160511,SC
3292160512,3292161535,US
-3292161536,3292162047,SC
-3292162048,3292162559,US
+3292161536,3292162303,SC
+3292162304,3292162559,US
3292162560,3292163071,SC
3292163072,3292163327,US
3292163328,3292163583,SC
@@ -133168,9 +134836,7 @@
3292176640,3292177151,US
3292177152,3292177407,SC
3292177408,3292178175,US
-3292178176,3292179199,SC
-3292179200,3292179455,US
-3292179456,3292179967,SC
+3292178176,3292179967,SC
3292179968,3292180479,US
3292180480,3292180735,SC
3292180736,3292180991,US
@@ -133197,7 +134863,9 @@
3292190976,3292191487,SC
3292191488,3292192255,US
3292192256,3292192511,SC
-3292192512,3292193791,US
+3292192512,3292192767,US
+3292192768,3292193023,SC
+3292193024,3292193791,US
3292193792,3292194047,SC
3292194048,3292194815,US
3292194816,3292195071,SC
@@ -133232,9 +134900,7 @@
3292206336,3292206847,SC
3292206848,3292209151,US
3292209152,3292209407,SC
-3292209408,3292209663,US
-3292209664,3292209919,SC
-3292209920,3292210175,US
+3292209408,3292210175,US
3292210176,3292210687,SC
3292210688,3292211455,US
3292211456,3292211711,SC
@@ -133250,7 +134916,9 @@
3292216320,3292217343,SC
3292217344,3292217855,US
3292217856,3292218111,SC
-3292218112,3292218879,US
+3292218112,3292218367,US
+3292218368,3292218623,SC
+3292218624,3292218879,US
3292218880,3292219135,SC
3292219136,3292219391,US
3292219392,3292219903,SC
@@ -133346,11 +135014,32 @@
3292265728,3292265983,SC
3292265984,3292266239,DE
3292266240,3292266495,SC
-3292266496,3292268543,MU
+3292266496,3292266751,TZ
+3292266752,3292267007,MU
+3292267008,3292267263,KE
+3292267264,3292267519,MU
+3292267520,3292267775,BW
+3292267776,3292268031,MU
+3292268032,3292268287,CM
+3292268288,3292268543,MU
3292268544,3292269055,ZA
-3292269056,3292275711,MU
+3292269056,3292274687,MU
+3292274688,3292274943,ZA
+3292274944,3292275711,MU
3292275712,3292275967,KE
-3292275968,3292332031,MU
+3292275968,3292276223,MU
+3292276224,3292276479,GN
+3292276480,3292276735,MU
+3292276736,3292276991,SN
+3292276992,3292277247,MU
+3292277248,3292277503,TG
+3292277504,3292277759,MU
+3292277760,3292278015,ZW
+3292278016,3292278271,MU
+3292278272,3292278527,ML
+3292278528,3292278783,MU
+3292278784,3292279039,TZ
+3292279040,3292332031,MU
3292332032,3292334079,NG
3292334080,3292336127,TZ
3292336128,3292340223,ZA
@@ -133367,7 +135056,8 @@
3292389376,3292391423,ZA
3292391424,3292393471,MA
3292393472,3292397567,ZA
-3292397568,3292463103,US
+3292397568,3292430335,PK
+3292430336,3292463103,US
3292463104,3292528639,ZA
3292528640,3294625791,MA
3294625792,3295674367,KE
@@ -133448,18 +135138,13 @@
3301256192,3301257215,PR
3301257216,3301262335,US
3301262336,3301263359,SC
-3301263360,3301267455,US
-3301267456,3301268479,SC
-3301268480,3301272575,US
+3301263360,3301272575,US
3301272576,3301275647,SC
3301275648,3301276671,PR
3301276672,3301277695,SC
-3301277696,3301278719,US
-3301278720,3301279743,SC
+3301277696,3301279743,US
3301279744,3301280767,PR
-3301280768,3301282815,US
-3301282816,3301283839,SC
-3301283840,3301284863,US
+3301280768,3301284863,US
3301284864,3301286911,SC
3301286912,3301287935,NL
3301287936,3301288959,CH
@@ -133494,7 +135179,9 @@
3301315072,3301315327,ES
3301315328,3301315583,SC
3301315584,3301315839,NL
-3301315840,3301317375,SC
+3301315840,3301316095,SC
+3301316096,3301316351,US
+3301316352,3301317375,SC
3301317376,3301317631,PR
3301317632,3301317887,SC
3301317888,3301318143,US
@@ -133508,7 +135195,9 @@
3301321216,3301321471,US
3301321472,3301322751,SC
3301322752,3301323007,CA
-3301323008,3301324287,SC
+3301323008,3301323263,SC
+3301323264,3301323519,US
+3301323520,3301324287,SC
3301324288,3301324543,US
3301324544,3301325567,SC
3301325568,3301325823,US
@@ -133523,8 +135212,8 @@
3301332480,3301332735,ES
3301332736,3301332991,SC
3301332992,3301333247,NL
-3301333248,3301333759,SC
-3301333760,3301334015,US
+3301333248,3301333503,SC
+3301333504,3301334015,US
3301334016,3301334527,SC
3301334528,3301334783,US
3301334784,3301335039,PR
@@ -133579,14 +135268,19 @@
3301362432,3301362687,LV
3301362688,3301362943,SC
3301362944,3301363199,AT
-3301363200,3301364479,SC
+3301363200,3301363711,SC
+3301363712,3301363967,HU
+3301363968,3301364479,SC
3301364480,3301364735,NO
3301364736,3301364991,SC
3301364992,3301365247,PT
3301365248,3301365503,ES
-3301365504,3301367551,SC
+3301365504,3301365759,SC
+3301365760,3301366015,NL
+3301366016,3301367551,SC
3301367552,3301367807,PR
-3301367808,3301368575,SC
+3301367808,3301368319,SC
+3301368320,3301368575,US
3301368576,3301368831,PR
3301368832,3301371391,SC
3301371392,3301372159,US
@@ -133598,7 +135292,8 @@
3301374464,3301374719,US
3301374720,3301375231,SC
3301375232,3301376511,US
-3301376512,3301379071,SC
+3301376512,3301378815,SC
+3301378816,3301379071,PR
3301379072,3301379327,US
3301379328,3301379583,SC
3301379584,3301379839,US
@@ -133618,7 +135313,7 @@
3301386496,3301387007,SC
3301387008,3301387263,ES
3301387264,3301387519,PT
-3301387520,3301387775,US
+3301387520,3301387775,PL
3301387776,3301388287,SC
3301388288,3301388543,LU
3301388544,3301389055,US
@@ -133626,7 +135321,7 @@
3301389568,3301390079,US
3301390080,3301390335,SC
3301390336,3301391359,US
-3301391360,3301391615,SC
+3301391360,3301391615,IN
3301391616,3301391871,RU
3301391872,3301392895,US
3301392896,3301393151,SC
@@ -133707,18 +135402,17 @@
3301425664,3301425919,SC
3301425920,3301426431,US
3301426432,3301427199,SC
-3301427200,3301427711,US
-3301427712,3301427967,SC
+3301427200,3301427967,US
3301427968,3301428223,PR
3301428224,3301428479,US
3301428480,3301428735,SC
3301428736,3301429503,US
3301429504,3301430015,SC
3301430016,3301430271,US
-3301430272,3301430527,SC
-3301430528,3301431295,US
-3301431296,3301431807,SC
-3301431808,3301432319,US
+3301430272,3301430783,SC
+3301430784,3301431295,US
+3301431296,3301432063,SC
+3301432064,3301432319,US
3301432320,3301432575,SC
3301432576,3301432831,US
3301432832,3301433087,PR
@@ -133966,7 +135660,8 @@
3304077824,3304078079,FR
3304078080,3304078335,SC
3304078336,3304078591,IN
-3304078592,3304079103,SC
+3304078592,3304078847,SC
+3304078848,3304079103,SG
3304079104,3304079359,BR
3304079360,3304080895,SC
3304080896,3304081407,US
@@ -134005,7 +135700,9 @@
3304094976,3304095231,RU
3304095232,3304096255,SC
3304096256,3304096511,US
-3304096512,3304098047,SC
+3304096512,3304097023,SC
+3304097024,3304097279,US
+3304097280,3304098047,SC
3304098048,3304098303,US
3304098304,3304098815,SC
3304098816,3304099071,US
@@ -134016,9 +135713,7 @@
3304100096,3304100607,SC
3304100608,3304101119,US
3304101120,3304102143,SC
-3304102144,3304102399,US
-3304102400,3304102655,SC
-3304102656,3304103167,US
+3304102144,3304103167,US
3304103168,3304103679,SC
3304103680,3304103935,US
3304103936,3304104959,SC
@@ -134115,12 +135810,17 @@
3304213248,3304213503,LV
3304213504,3304213759,SC
3304213760,3304214015,AT
-3304214016,3304216831,SC
+3304214016,3304214783,SC
+3304214784,3304215039,LU
+3304215040,3304216063,SC
+3304216064,3304216319,ES
+3304216320,3304216575,CH
+3304216576,3304216831,NL
3304216832,3304217087,GB
3304217088,3304218367,SC
3304218368,3304218623,PR
-3304218624,3304218879,US
-3304218880,3304222207,SC
+3304218624,3304219135,US
+3304219136,3304222207,SC
3304222208,3304222463,US
3304222464,3304223231,SC
3304223232,3304223487,US
@@ -134193,7 +135893,9 @@
3304255488,3304255999,SC
3304256000,3304256255,US
3304256256,3304256511,CA
-3304256512,3304257535,SC
+3304256512,3304257023,SC
+3304257024,3304257279,PR
+3304257280,3304257535,SC
3304257536,3304257791,US
3304257792,3304325375,SC
3304325376,3304325631,US
@@ -134209,7 +135911,9 @@
3304329216,3304329471,PL
3304329472,3304331007,SC
3304331008,3304331263,US
-3304331264,3304332543,SC
+3304331264,3304331775,SC
+3304331776,3304332031,US
+3304332032,3304332543,SC
3304332544,3304332799,US
3304332800,3304333055,SC
3304333056,3304333311,PR
@@ -134252,8 +135956,8 @@
3304349440,3304349695,PR
3304349696,3304350975,SC
3304350976,3304351487,US
-3304351488,3304352511,SC
-3304352512,3304352767,US
+3304351488,3304352255,SC
+3304352256,3304352767,US
3304352768,3304353023,SC
3304353024,3304353791,US
3304353792,3304355327,SC
@@ -134288,7 +135992,7 @@
3304368896,3304369151,US
3304369152,3304370687,SC
3304370688,3304370943,US
-3304370944,3304371199,SC
+3304370944,3304371199,CA
3304371200,3304371455,US
3304371456,3304371967,SC
3304371968,3304372223,US
@@ -134863,9 +136567,7 @@
3322084864,3322084927,CN
3322084928,3322085119,US
3322085120,3322085375,CN
-3322085376,3322167551,US
-3322167552,3322167807,GB
-3322167808,3322202111,US
+3322085376,3322202111,US
3322202112,3322203135,GB
3322203136,3322250975,US
3322250976,3322251007,IL
@@ -134894,13 +136596,9 @@
3322678792,3322678799,SA
3322678800,3322683391,US
3322683392,3322691583,AR
-3322691584,3322691607,US
-3322691608,3322691615,RO
-3322691616,3322691775,US
+3322691584,3322691775,US
3322691776,3322691791,CA
-3322691792,3322692103,US
-3322692104,3322692111,RO
-3322692112,3322692223,US
+3322691792,3322692223,US
3322692224,3322692351,CA
3322692352,3322692695,US
3322692696,3322692703,FR
@@ -134929,7 +136627,9 @@
3322697216,3322697223,RO
3322697224,3322697255,US
3322697256,3322697263,IN
-3322697264,3322697415,US
+3322697264,3322697335,US
+3322697336,3322697343,BD
+3322697344,3322697415,US
3322697416,3322697423,RO
3322697424,3322697431,US
3322697432,3322697439,CA
@@ -134953,10 +136653,18 @@
3322706576,3322706591,CA
3322706592,3322706651,US
3322706652,3322706655,CA
-3322706656,3322707743,US
+3322706656,3322707167,US
+3322707168,3322707183,IN
+3322707184,3322707295,US
+3322707296,3322707327,EE
+3322707328,3322707663,US
+3322707664,3322707671,IN
+3322707672,3322707743,US
3322707744,3322707751,CA
3322707752,3322748927,US
-3322748928,3322757119,JP
+3322748928,3322755006,JP
+3322755007,3322755007,US
+3322755008,3322757119,JP
3322757120,3322765415,US
3322765416,3322765431,IN
3322765432,3322765543,US
@@ -135228,7 +136936,7 @@
3323241520,3323241527,TR
3323241528,3323241567,CA
3323241568,3323241575,US
-3323241576,3323241583,CA
+3323241576,3323241583,PA
3323241584,3323241591,CN
3323241592,3323241607,CA
3323241608,3323241623,US
@@ -135281,7 +136989,7 @@
3323243232,3323243239,CA
3323243240,3323243255,US
3323243256,3323243263,CA
-3323243264,3323243391,CN
+3323243264,3323243391,US
3323243392,3323243455,CA
3323243456,3323243487,GB
3323243488,3323243519,CA
@@ -135336,11 +137044,12 @@
3323245552,3323245559,GB
3323245560,3323245567,CN
3323245568,3323245655,US
-3323245656,3323245663,CA
+3323245656,3323245663,TH
3323245664,3323245855,US
3323245856,3323245951,CA
3323245952,3323245959,US
-3323245960,3323245983,CA
+3323245960,3323245967,TH
+3323245968,3323245983,CA
3323245984,3323246015,US
3323246016,3323246079,CA
3323246080,3323246207,US
@@ -135424,9 +137133,15 @@
3323503008,3323503015,CA
3323503016,3323503951,US
3323503952,3323503967,CA
-3323503968,3323504671,US
+3323503968,3323504407,US
+3323504408,3323504415,CA
+3323504416,3323504535,US
+3323504536,3323504543,CA
+3323504544,3323504671,US
3323504672,3323504679,CA
-3323504680,3323505287,US
+3323504680,3323505039,US
+3323505040,3323505047,CA
+3323505048,3323505287,US
3323505288,3323505295,BR
3323505296,3323505311,US
3323505312,3323505343,BR
@@ -135458,7 +137173,9 @@
3323508544,3323508575,CA
3323508576,3323508639,US
3323508640,3323508647,GB
-3323508648,3323509447,US
+3323508648,3323508999,US
+3323509000,3323509007,CA
+3323509008,3323509447,US
3323509448,3323509455,CA
3323509456,3323509583,US
3323509584,3323509591,CA
@@ -135521,8 +137238,8 @@
3323681440,3323681455,AE
3323681456,3323681479,CA
3323681480,3323681487,GB
-3323681488,3323681519,CA
-3323681520,3323681527,SI
+3323681488,3323681523,CA
+3323681524,3323681527,BR
3323681528,3323681535,CA
3323681536,3323681567,IN
3323681568,3323681583,US
@@ -135531,19 +137248,21 @@
3323681600,3323681631,CA
3323681632,3323681663,NO
3323681664,3323681695,IN
-3323681696,3323681727,CA
-3323681728,3323681735,MY
-3323681736,3323681747,CA
+3323681696,3323681711,CA
+3323681712,3323681727,FR
+3323681728,3323681735,CA
+3323681736,3323681739,ES
+3323681740,3323681747,CA
3323681748,3323681751,VE
3323681752,3323682559,CA
3323682560,3323682591,US
-3323682592,3323682655,CA
+3323682592,3323682647,CA
+3323682648,3323682651,BR
+3323682652,3323682655,CA
3323682656,3323682687,IE
3323682688,3323682751,CA
3323682752,3323682767,US
-3323682768,3323682771,CA
-3323682772,3323682775,US
-3323682776,3323682787,CA
+3323682768,3323682787,CA
3323682788,3323682791,AF
3323682792,3323682831,CA
3323682832,3323682839,IN
@@ -135567,9 +137286,10 @@
3323683216,3323683223,VN
3323683224,3323683295,CA
3323683296,3323683299,CL
-3323683300,3323683359,CA
-3323683360,3323683367,MY
-3323683368,3323683399,CA
+3323683300,3323683303,BR
+3323683304,3323683359,CA
+3323683360,3323683371,IN
+3323683372,3323683399,CA
3323683400,3323683403,BR
3323683404,3323683427,CA
3323683428,3323683431,IT
@@ -135579,7 +137299,9 @@
3323683456,3323683471,CA
3323683472,3323683479,MX
3323683480,3323683487,BR
-3323683488,3323683519,CA
+3323683488,3323683503,US
+3323683504,3323683515,CA
+3323683516,3323683519,MX
3323683520,3323683523,IN
3323683524,3323683527,DE
3323683528,3323683535,CA
@@ -135606,7 +137328,7 @@
3323684228,3323684239,CA
3323684240,3323684243,GB
3323684244,3323684271,CA
-3323684272,3323684279,FR
+3323684272,3323684279,LK
3323684280,3323684287,ES
3323684288,3323684291,IN
3323684292,3323684387,CA
@@ -135626,7 +137348,8 @@
3323684540,3323684559,US
3323684560,3323684615,CA
3323684616,3323684619,US
-3323684620,3323684735,CA
+3323684620,3323684703,CA
+3323684704,3323684735,BR
3323684736,3323684739,IN
3323684740,3323684783,CA
3323684784,3323684799,CO
@@ -135662,10 +137385,7 @@
3323685328,3323685343,BR
3323685344,3323685347,BZ
3323685348,3323685351,IN
-3323685352,3323685359,US
-3323685360,3323685391,CA
-3323685392,3323685399,MX
-3323685400,3323685407,CA
+3323685352,3323685407,CA
3323685408,3323685411,MX
3323685412,3323685415,CA
3323685416,3323685419,AR
@@ -135696,7 +137416,11 @@
3323685952,3323686047,CA
3323686048,3323686051,US
3323686052,3323686055,AR
-3323686056,3323686135,CA
+3323686056,3323686071,CA
+3323686072,3323686079,BR
+3323686080,3323686111,CA
+3323686112,3323686127,US
+3323686128,3323686135,CA
3323686136,3323686143,MX
3323686144,3323686159,NO
3323686160,3323686163,US
@@ -135717,23 +137441,20 @@
3323686440,3323686447,BR
3323686448,3323686591,CA
3323686592,3323686595,FR
-3323686596,3323686599,CA
+3323686596,3323686599,DK
3323686600,3323686607,BR
3323686608,3323686623,CA
3323686624,3323686631,NL
3323686632,3323686639,BR
3323686640,3323686655,US
3323686656,3323686659,PE
-3323686660,3323686663,US
-3323686664,3323686667,CA
+3323686660,3323686667,CA
3323686668,3323686671,FR
3323686672,3323686683,CA
3323686684,3323686687,IN
3323686688,3323686731,CA
3323686732,3323686735,US
-3323686736,3323686783,CA
-3323686784,3323686791,BR
-3323686792,3323686807,CA
+3323686736,3323686807,CA
3323686808,3323686811,CR
3323686812,3323686815,BR
3323686816,3323686823,CA
@@ -135745,15 +137466,16 @@
3323686888,3323686895,MX
3323686896,3323686911,CA
3323686912,3323686943,BR
-3323686944,3323686975,IN
-3323686976,3323687015,CA
+3323686944,3323686979,IN
+3323686980,3323687015,CA
3323687016,3323687019,PL
3323687020,3323687031,CA
3323687032,3323687039,US
3323687040,3323687073,CA
3323687074,3323687074,US
3323687075,3323687079,CA
-3323687080,3323687103,US
+3323687080,3323687087,US
+3323687088,3323687103,CA
3323687104,3323687111,BR
3323687112,3323687115,PT
3323687116,3323687167,CA
@@ -135774,7 +137496,7 @@
3323687572,3323687575,CA
3323687576,3323687583,ES
3323687584,3323687711,CA
-3323687712,3323687715,US
+3323687712,3323687715,PL
3323687716,3323687719,CA
3323687720,3323687727,US
3323687728,3323687731,CA
@@ -135792,8 +137514,7 @@
3323687864,3323687871,MX
3323687872,3323687887,PK
3323687888,3323687891,BR
-3323687892,3323687895,CA
-3323687896,3323687903,IN
+3323687892,3323687903,CA
3323687904,3323687911,BR
3323687912,3323687915,CA
3323687916,3323687919,US
@@ -135817,7 +137538,9 @@
3323688288,3323688303,PA
3323688304,3323688319,CA
3323688320,3323688335,US
-3323688336,3323688391,CA
+3323688336,3323688343,CA
+3323688344,3323688351,AE
+3323688352,3323688391,CA
3323688392,3323688395,ID
3323688396,3323688415,CA
3323688416,3323688447,DE
@@ -135832,15 +137555,13 @@
3323688536,3323688543,CA
3323688544,3323688551,VE
3323688552,3323688563,CA
-3323688564,3323688567,CL
+3323688564,3323688567,BD
3323688568,3323688571,VE
3323688572,3323688603,CA
3323688604,3323688607,FR
3323688608,3323688655,CA
3323688656,3323688659,IN
-3323688660,3323688663,CA
-3323688664,3323688671,CH
-3323688672,3323688675,CA
+3323688660,3323688675,CA
3323688676,3323688679,US
3323688680,3323688839,CA
3323688840,3323688843,US
@@ -135855,13 +137576,12 @@
3323689056,3323689059,FR
3323689060,3323689071,CA
3323689072,3323689079,ID
-3323689080,3323689167,CA
-3323689168,3323689183,US
+3323689080,3323689175,CA
+3323689176,3323689183,US
3323689184,3323689191,PE
3323689192,3323689247,CA
3323689248,3323689251,IN
-3323689252,3323689255,US
-3323689256,3323689279,CA
+3323689252,3323689279,CA
3323689280,3323689295,US
3323689296,3323689347,CA
3323689348,3323689351,VE
@@ -135869,8 +137589,7 @@
3323689360,3323689367,US
3323689368,3323689383,CA
3323689384,3323689391,BR
-3323689392,3323689399,CA
-3323689400,3323689403,MX
+3323689392,3323689403,CA
3323689404,3323689407,BR
3323689408,3323689427,CA
3323689428,3323689431,EC
@@ -135886,7 +137605,8 @@
3323689536,3323689543,CO
3323689544,3323689559,CA
3323689560,3323689583,US
-3323689584,3323689599,CA
+3323689584,3323689595,CA
+3323689596,3323689599,BR
3323689600,3323689663,US
3323689664,3323689711,CA
3323689712,3323689715,BR
@@ -135906,15 +137626,20 @@
3323690048,3323690063,BR
3323690064,3323690095,CA
3323690096,3323690111,PK
-3323690112,3323690143,CO
-3323690144,3323690199,CA
+3323690112,3323690127,US
+3323690128,3323690131,FR
+3323690132,3323690155,CA
+3323690156,3323690159,BE
+3323690160,3323690199,CA
3323690200,3323690207,US
3323690208,3323690223,CA
3323690224,3323690235,US
3323690236,3323690351,CA
3323690352,3323690359,AE
3323690360,3323690363,US
-3323690364,3323690463,CA
+3323690364,3323690403,CA
+3323690404,3323690407,DM
+3323690408,3323690463,CA
3323690464,3323690495,PE
3323690496,3323740159,US
3323740160,3323748351,GB
@@ -136016,8 +137741,8 @@
3324601344,3324604671,US
3324604672,3324604927,GB
3324604928,3324614143,US
-3324614144,3324614175,LU
-3324614176,3324614655,US
+3324614144,3324614399,LU
+3324614400,3324614655,US
3324614656,3324615679,LU
3324615680,3324624895,US
3324633088,3324634111,PE
@@ -136514,9 +138239,7 @@
3324939456,3324939519,IL
3324939520,3324939735,US
3324939736,3324939739,CA
-3324939740,3324942855,US
-3324942856,3324942863,RO
-3324942864,3324943215,US
+3324939740,3324943215,US
3324943216,3324943231,GB
3324943232,3324945407,US
3324945408,3324945663,CA
@@ -136578,7 +138301,9 @@
3324964544,3324964607,EE
3324964608,3324964939,US
3324964940,3324964943,GB
-3324964944,3324964963,US
+3324964944,3324964951,US
+3324964952,3324964959,PH
+3324964960,3324964963,US
3324964964,3324964967,GB
3324964968,3324967871,US
3324967872,3324967935,EE
@@ -136593,7 +138318,9 @@
3325100288,3325100543,US
3325101056,3325117311,US
3325117312,3325117319,AF
-3325117320,3325119887,US
+3325117320,3325119743,US
+3325119744,3325119759,CA
+3325119760,3325119887,US
3325119888,3325119903,MX
3325119904,3325120076,US
3325120077,3325120081,MX
@@ -136838,8 +138565,7 @@
3325192560,3325192567,GB
3325192568,3325192591,CA
3325192592,3325192599,US
-3325192600,3325192607,BR
-3325192608,3325192615,CA
+3325192600,3325192615,CA
3325192616,3325192623,MX
3325192624,3325192639,CA
3325192640,3325192647,HK
@@ -136934,7 +138660,9 @@
3325193648,3325193655,MX
3325193656,3325193663,CA
3325193664,3325193671,SA
-3325193672,3325193703,CA
+3325193672,3325193687,CA
+3325193688,3325193695,GB
+3325193696,3325193703,CA
3325193704,3325193711,CN
3325193712,3325193727,CA
3325193728,3325193735,BY
@@ -137144,11 +138872,18 @@
3325195992,3325195999,BR
3325196000,3325196023,CA
3325196024,3325196031,RU
-3325196032,3325196135,CA
+3325196032,3325196047,CA
+3325196048,3325196055,BR
+3325196056,3325196135,CA
3325196136,3325196143,IN
3325196144,3325196159,IL
3325196160,3325196167,PK
-3325196168,3325196287,CA
+3325196168,3325196175,CA
+3325196176,3325196183,GB
+3325196184,3325196191,ID
+3325196192,3325196223,CA
+3325196224,3325196231,IN
+3325196232,3325196287,CA
3325196288,3325196295,US
3325196296,3325196303,CA
3325196304,3325196311,IN
@@ -137257,9 +138992,7 @@
3325197312,3325197319,GR
3325197320,3325198343,CA
3325198344,3325198347,BR
-3325198348,3325198367,CA
-3325198368,3325198375,MY
-3325198376,3325198415,CA
+3325198348,3325198415,CA
3325198416,3325198419,VE
3325198420,3325198423,US
3325198424,3325198535,CA
@@ -137267,8 +139000,7 @@
3325198544,3325198559,CA
3325198560,3325198575,PA
3325198576,3325198579,CA
-3325198580,3325198583,BR
-3325198584,3325198587,CA
+3325198580,3325198587,BR
3325198588,3325198591,US
3325198592,3325198619,CA
3325198620,3325198623,AR
@@ -137299,8 +139031,8 @@
3325198864,3325198895,CA
3325198896,3325198911,BE
3325198912,3325198943,NP
-3325198944,3325198967,CA
-3325198968,3325198975,US
+3325198944,3325198963,CA
+3325198964,3325198975,US
3325198976,3325199039,CA
3325199040,3325199043,US
3325199044,3325199055,CA
@@ -137315,12 +139047,13 @@
3325199152,3325199291,CA
3325199292,3325199295,US
3325199296,3325199303,BR
-3325199304,3325199343,CA
-3325199344,3325199351,CH
+3325199304,3325199351,CA
3325199352,3325199359,US
3325199360,3325199391,CA
3325199392,3325199399,US
-3325199400,3325199491,CA
+3325199400,3325199415,CA
+3325199416,3325199423,US
+3325199424,3325199491,CA
3325199492,3325199495,BR
3325199496,3325199559,CA
3325199560,3325199567,US
@@ -137350,8 +139083,7 @@
3325200096,3325200111,BE
3325200112,3325200127,CA
3325200128,3325200191,BD
-3325200192,3325200207,ZA
-3325200208,3325200239,CA
+3325200192,3325200239,CA
3325200240,3325200255,US
3325200256,3325200259,PE
3325200260,3325200279,CA
@@ -137402,7 +139134,9 @@
3325201016,3325201039,CA
3325201040,3325201047,BR
3325201048,3325201055,US
-3325201056,3325201071,CA
+3325201056,3325201059,CA
+3325201060,3325201063,ZA
+3325201064,3325201071,CA
3325201072,3325201075,US
3325201076,3325201087,CA
3325201088,3325201111,US
@@ -137424,8 +139158,8 @@
3325201560,3325201563,IN
3325201564,3325201591,CA
3325201592,3325201599,PT
-3325201600,3325201603,CA
-3325201604,3325201615,US
+3325201600,3325201607,CA
+3325201608,3325201615,US
3325201616,3325201627,CA
3325201628,3325201631,US
3325201632,3325201647,CA
@@ -137453,9 +139187,15 @@
3325202040,3325202079,US
3325202080,3325202115,CA
3325202116,3325202119,US
-3325202120,3325202211,CA
+3325202120,3325202199,CA
+3325202200,3325202203,US
+3325202204,3325202211,CA
3325202212,3325202215,IN
-3325202216,3325202271,CA
+3325202216,3325202219,CA
+3325202220,3325202223,GB
+3325202224,3325202239,CA
+3325202240,3325202255,US
+3325202256,3325202271,CA
3325202272,3325202275,GB
3325202276,3325202279,US
3325202280,3325202367,CA
@@ -137488,7 +139228,7 @@
3325206720,3325206799,CA
3325206800,3325206815,US
3325206816,3325206819,CA
-3325206820,3325206823,GB
+3325206820,3325206823,BR
3325206824,3325206831,CA
3325206832,3325206839,US
3325206840,3325206847,FR
@@ -137496,18 +139236,17 @@
3325206864,3325206879,CA
3325206880,3325206911,BA
3325206912,3325206915,BR
-3325206916,3325206919,US
-3325206920,3325206935,CA
-3325206936,3325206943,HR
-3325206944,3325207023,CA
+3325206916,3325207023,CA
3325207024,3325207039,US
-3325207040,3325207043,CA
-3325207044,3325207051,BR
+3325207040,3325207047,CA
+3325207048,3325207051,BR
3325207052,3325207055,US
3325207056,3325207059,GB
3325207060,3325207071,CA
3325207072,3325207103,MX
-3325207104,3325207131,CA
+3325207104,3325207119,CA
+3325207120,3325207123,FR
+3325207124,3325207131,CA
3325207132,3325207135,US
3325207136,3325207167,BD
3325207168,3325207263,CA
@@ -137527,7 +139266,9 @@
3325207592,3325207599,EC
3325207600,3325207699,CA
3325207700,3325207703,LU
-3325207704,3325207775,CA
+3325207704,3325207735,CA
+3325207736,3325207739,CL
+3325207740,3325207775,CA
3325207776,3325207783,US
3325207784,3325207791,CA
3325207792,3325207795,GB
@@ -137543,14 +139284,19 @@
3325208188,3325208191,IN
3325208192,3325208255,CA
3325208256,3325208327,US
-3325208328,3325208363,CA
+3325208328,3325208343,CA
+3325208344,3325208347,GB
+3325208348,3325208359,CA
+3325208360,3325208363,FR
3325208364,3325208367,PA
3325208368,3325208375,US
3325208376,3325208383,BR
3325208384,3325208391,US
3325208392,3325208403,CA
3325208404,3325208415,US
-3325208416,3325208487,CA
+3325208416,3325208479,CA
+3325208480,3325208483,MX
+3325208484,3325208487,CA
3325208488,3325208491,AE
3325208492,3325208495,US
3325208496,3325208499,IN
@@ -137558,7 +139304,9 @@
3325208544,3325208547,US
3325208548,3325208639,CA
3325208640,3325208643,EG
-3325208644,3325208747,CA
+3325208644,3325208647,CA
+3325208648,3325208651,HR
+3325208652,3325208747,CA
3325208748,3325208751,CZ
3325208752,3325208767,CA
3325208768,3325208783,US
@@ -137577,7 +139325,8 @@
3325209092,3325209095,AR
3325209096,3325209099,CA
3325209100,3325209103,DM
-3325209104,3325209151,CA
+3325209104,3325209135,CA
+3325209136,3325209151,RO
3325209152,3325209155,US
3325209156,3325209163,BZ
3325209164,3325209167,GB
@@ -137649,7 +139398,8 @@
3325210068,3325210071,IE
3325210072,3325210311,CA
3325210312,3325210315,BR
-3325210316,3325210351,CA
+3325210316,3325210319,DM
+3325210320,3325210351,CA
3325210352,3325210367,HK
3325210368,3325210383,CA
3325210384,3325210387,IN
@@ -137661,18 +139411,15 @@
3325210448,3325210451,FR
3325210452,3325210455,ES
3325210456,3325210511,CA
-3325210512,3325210519,IN
+3325210512,3325210519,MX
3325210520,3325210527,FR
3325210528,3325210575,CA
3325210576,3325210579,BR
-3325210580,3325210631,CA
-3325210632,3325210635,US
+3325210580,3325210635,CA
3325210636,3325210639,FR
3325210640,3325210643,BR
3325210644,3325210647,US
-3325210648,3325210651,CA
-3325210652,3325210655,TR
-3325210656,3325210663,CA
+3325210648,3325210663,CA
3325210664,3325210687,BR
3325210688,3325210703,CA
3325210704,3325210707,US
@@ -137695,7 +139442,7 @@
3325210852,3325210863,CA
3325210864,3325210879,US
3325210880,3325210951,CA
-3325210952,3325210955,BR
+3325210952,3325210955,IN
3325210956,3325210959,VN
3325210960,3325210975,IN
3325210976,3325211071,CA
@@ -137706,15 +139453,9 @@
3325211104,3325211115,CA
3325211116,3325211119,BR
3325211120,3325211127,US
-3325211128,3325211151,CA
-3325211152,3325211155,IN
-3325211156,3325211235,CA
+3325211128,3325211235,CA
3325211236,3325211239,FR
-3325211240,3325211295,CA
-3325211296,3325211299,US
-3325211300,3325211411,CA
-3325211412,3325211415,IN
-3325211416,3325211419,CA
+3325211240,3325211419,CA
3325211420,3325211423,US
3325211424,3325211647,CA
3325211648,3325211807,US
@@ -137739,8 +139480,7 @@
3325212120,3325212127,US
3325212128,3325212143,CA
3325212144,3325212151,US
-3325212152,3325212155,MX
-3325212156,3325212167,CA
+3325212152,3325212167,CA
3325212168,3325212171,BZ
3325212172,3325212175,IN
3325212176,3325212191,CA
@@ -137749,16 +139489,14 @@
3325212216,3325212223,HR
3325212224,3325212295,CA
3325212296,3325212303,IN
-3325212304,3325212407,CA
-3325212408,3325212411,PE
-3325212412,3325212495,CA
-3325212496,3325212503,FR
-3325212504,3325212511,HU
+3325212304,3325212495,CA
+3325212496,3325212511,FR
3325212512,3325212515,CY
-3325212516,3325212551,CA
+3325212516,3325212519,CA
+3325212520,3325212527,PK
+3325212528,3325212551,CA
3325212552,3325212575,BR
-3325212576,3325212579,US
-3325212580,3325212583,CA
+3325212576,3325212583,CA
3325212584,3325212587,HN
3325212588,3325212591,BR
3325212592,3325212611,CA
@@ -137768,11 +139506,11 @@
3325212656,3325212719,CA
3325212720,3325212727,ID
3325212728,3325212731,RO
-3325212732,3325212771,CA
-3325212772,3325212775,US
-3325212776,3325212927,CA
+3325212732,3325212927,CA
3325212928,3325212943,LK
-3325212944,3325213023,CA
+3325212944,3325212963,CA
+3325212964,3325212967,GB
+3325212968,3325213023,CA
3325213024,3325213055,SE
3325213056,3325213071,US
3325213072,3325213087,NZ
@@ -137795,7 +139533,8 @@
3325213544,3325213551,CA
3325213552,3325213555,ES
3325213556,3325213559,BD
-3325213560,3325213575,CA
+3325213560,3325213567,IN
+3325213568,3325213575,CA
3325213576,3325213591,IN
3325213592,3325213607,CA
3325213608,3325213615,US
@@ -137822,9 +139561,7 @@
3325214152,3325214155,US
3325214156,3325214163,CA
3325214164,3325214167,BR
-3325214168,3325214171,CA
-3325214172,3325214175,ID
-3325214176,3325214187,CA
+3325214168,3325214187,CA
3325214188,3325214191,US
3325214192,3325214255,CA
3325214256,3325214259,SA
@@ -137871,7 +139608,7 @@
3325215212,3325215223,CA
3325215224,3325215231,US
3325215232,3325215263,CA
-3325215264,3325215279,BE
+3325215264,3325215279,RU
3325215280,3325215299,US
3325215300,3325215303,IN
3325215304,3325215319,CA
@@ -137886,7 +139623,8 @@
3325215476,3325215479,PE
3325215480,3325215495,CA
3325215496,3325215503,BR
-3325215504,3325215611,CA
+3325215504,3325215607,CA
+3325215608,3325215611,IN
3325215612,3325215615,BR
3325215616,3325215667,CA
3325215668,3325215675,BR
@@ -137896,7 +139634,7 @@
3325215732,3325215735,BR
3325215736,3325215743,CA
3325215744,3325215751,IN
-3325215752,3325215759,CA
+3325215752,3325215759,NL
3325215760,3325215767,BR
3325215768,3325215807,CA
3325215808,3325215839,US
@@ -137905,9 +139643,9 @@
3325215872,3325215903,US
3325215904,3325215911,DE
3325215912,3325215915,IN
-3325215916,3325215927,GB
-3325215928,3325215931,CA
-3325215932,3325215935,BR
+3325215916,3325215919,GB
+3325215920,3325215931,CA
+3325215932,3325215935,US
3325215936,3325215951,CA
3325215952,3325215967,BE
3325215968,3325215983,CA
@@ -137936,7 +139674,8 @@
3325216248,3325216251,BR
3325216252,3325216319,CA
3325216320,3325216327,US
-3325216328,3325216359,CA
+3325216328,3325216355,CA
+3325216356,3325216359,US
3325216360,3325216363,GB
3325216364,3325216367,CA
3325216368,3325216383,US
@@ -137973,18 +139712,18 @@
3325217308,3325217311,HK
3325217312,3325217403,CA
3325217404,3325217407,FR
-3325217408,3325217471,CA
-3325217472,3325217503,IE
+3325217408,3325217503,CA
3325217504,3325217519,US
-3325217520,3325217651,CA
+3325217520,3325217527,CA
+3325217528,3325217531,BR
+3325217532,3325217651,CA
3325217652,3325217655,AE
3325217656,3325217663,CA
3325217664,3325217667,CO
3325217668,3325217695,CA
3325217696,3325217699,US
3325217700,3325217703,BR
-3325217704,3325217707,US
-3325217708,3325217711,CA
+3325217704,3325217711,CA
3325217712,3325217715,US
3325217716,3325217823,CA
3325217824,3325217831,BR
@@ -137995,12 +139734,13 @@
3325217888,3325217939,CA
3325217940,3325217943,US
3325217944,3325217951,CO
-3325217952,3325217971,CA
-3325217972,3325217975,US
-3325217976,3325217983,CA
+3325217952,3325217967,CA
+3325217968,3325217975,US
+3325217976,3325217979,MX
+3325217980,3325217983,CA
3325217984,3325217987,US
3325217988,3325218015,CA
-3325218016,3325218031,US
+3325218016,3325218031,IN
3325218032,3325218039,CA
3325218040,3325218047,US
3325218048,3325218131,CA
@@ -138063,8 +139803,7 @@
3325219484,3325219487,US
3325219488,3325219503,CA
3325219504,3325219511,VG
-3325219512,3325219531,CA
-3325219532,3325219535,BR
+3325219512,3325219535,CA
3325219536,3325219551,PK
3325219552,3325219583,CA
3325219584,3325219599,US
@@ -138085,7 +139824,8 @@
3325219816,3325219839,CA
3325219840,3325219871,TN
3325219872,3325219875,BR
-3325219876,3325219903,CA
+3325219876,3325219887,CA
+3325219888,3325219903,MX
3325219904,3325219931,US
3325219932,3325219935,CA
3325219936,3325219951,US
@@ -138096,10 +139836,11 @@
3325220032,3325220039,BR
3325220040,3325220043,US
3325220044,3325220047,BR
-3325220048,3325220051,AU
-3325220052,3325220055,CA
+3325220048,3325220055,CA
3325220056,3325220063,GB
-3325220064,3325220107,CA
+3325220064,3325220079,CA
+3325220080,3325220095,PA
+3325220096,3325220107,CA
3325220108,3325220111,PE
3325220112,3325220295,CA
3325220296,3325220303,FR
@@ -138107,26 +139848,29 @@
3325220384,3325220399,NL
3325220400,3325220411,CA
3325220412,3325220415,BZ
-3325220416,3325220511,CA
+3325220416,3325220463,CA
+3325220464,3325220479,US
+3325220480,3325220511,CA
3325220512,3325220519,BR
3325220520,3325220543,CA
3325220544,3325220559,US
3325220560,3325220579,CA
3325220580,3325220583,BZ
3325220584,3325220587,US
-3325220588,3325220607,CA
+3325220588,3325220591,CA
+3325220592,3325220595,BE
+3325220596,3325220607,CA
3325220608,3325220623,US
3325220624,3325220635,CA
3325220636,3325220636,US
-3325220637,3325220651,CA
+3325220637,3325220647,CA
+3325220648,3325220651,MX
3325220652,3325220655,BR
3325220656,3325220667,CA
3325220668,3325220671,BR
3325220672,3325220703,CA
3325220704,3325220719,US
-3325220720,3325220723,CA
-3325220724,3325220727,VE
-3325220728,3325220831,CA
+3325220720,3325220831,CA
3325220832,3325220879,US
3325220880,3325220895,CA
3325220896,3325220927,FR
@@ -138140,7 +139884,8 @@
3325221120,3325221183,CA
3325221184,3325221199,US
3325221200,3325221215,BR
-3325221216,3325221263,CA
+3325221216,3325221247,US
+3325221248,3325221263,CA
3325221264,3325221279,TW
3325221280,3325221439,CA
3325221440,3325221443,PE
@@ -138164,11 +139909,10 @@
3325221732,3325221739,CA
3325221740,3325221751,BR
3325221752,3325221755,IN
-3325221756,3325221759,US
-3325221760,3325221779,CA
+3325221756,3325221779,CA
3325221780,3325221783,US
-3325221784,3325221787,CA
-3325221788,3325221791,VN
+3325221784,3325221787,IE
+3325221788,3325221791,US
3325221792,3325221795,CA
3325221796,3325221799,US
3325221800,3325221807,BR
@@ -138185,7 +139929,8 @@
3325222016,3325222143,US
3325222144,3325222179,CA
3325222180,3325222183,US
-3325222184,3325222203,CA
+3325222184,3325222187,BD
+3325222188,3325222203,CA
3325222204,3325222207,BY
3325222208,3325222391,CA
3325222392,3325222395,BD
@@ -138195,7 +139940,9 @@
3325222568,3325222571,US
3325222572,3325222575,LK
3325222576,3325222607,CA
-3325222608,3325222623,US
+3325222608,3325222611,US
+3325222612,3325222615,CA
+3325222616,3325222623,US
3325222624,3325222627,DE
3325222628,3325222643,CA
3325222644,3325222647,VN
@@ -138243,10 +139990,11 @@
3325223248,3325223263,BR
3325223264,3325223279,CA
3325223280,3325223283,FR
-3325223284,3325223335,CA
+3325223284,3325223323,CA
+3325223324,3325223327,DM
+3325223328,3325223335,CA
3325223336,3325223343,US
-3325223344,3325223347,CA
-3325223348,3325223351,IN
+3325223344,3325223351,CA
3325223352,3325223355,MX
3325223356,3325223375,CA
3325223376,3325223391,US
@@ -138284,8 +140032,8 @@
3325223920,3325223935,BR
3325223936,3325223967,CA
3325223968,3325223991,US
-3325223992,3325224035,CA
-3325224036,3325224039,US
+3325223992,3325224031,CA
+3325224032,3325224039,US
3325224040,3325224043,CO
3325224044,3325224047,CA
3325224048,3325224055,GB
@@ -138295,9 +140043,7 @@
3325224072,3325224079,HR
3325224080,3325224087,CA
3325224088,3325224091,BZ
-3325224092,3325224455,CA
-3325224456,3325224463,FR
-3325224464,3325224479,CA
+3325224092,3325224479,CA
3325224480,3325224511,US
3325224512,3325224551,CA
3325224552,3325224559,BR
@@ -138308,7 +140054,8 @@
3325224676,3325224683,CA
3325224684,3325224687,VE
3325224688,3325224695,US
-3325224696,3325224703,BR
+3325224696,3325224699,DM
+3325224700,3325224703,BR
3325224704,3325224719,US
3325224720,3325224735,CA
3325224736,3325224767,LK
@@ -138327,7 +140074,7 @@
3325224876,3325224879,CA
3325224880,3325224895,US
3325224896,3325224919,CA
-3325224920,3325224927,DJ
+3325224920,3325224927,US
3325224928,3325224943,CA
3325224944,3325224947,DE
3325224948,3325224951,CA
@@ -138366,7 +140113,8 @@
3325225632,3325225647,US
3325225648,3325225671,CA
3325225672,3325225675,US
-3325225676,3325225735,CA
+3325225676,3325225731,CA
+3325225732,3325225735,GB
3325225736,3325225743,US
3325225744,3325225775,CA
3325225776,3325225783,US
@@ -138421,10 +140169,8 @@
3325226448,3325226451,LT
3325226452,3325226455,CA
3325226456,3325226463,US
-3325226464,3325226592,CA
-3325226593,3325226593,US
-3325226594,3325226751,CA
-3325226752,3325227007,US
+3325226464,3325226495,CA
+3325226496,3325227007,US
3325227008,3325227039,CA
3325227040,3325227071,BR
3325227072,3325227087,US
@@ -138438,22 +140184,24 @@
3325227228,3325227279,CA
3325227280,3325227295,BR
3325227296,3325227331,CA
-3325227332,3325227335,US
-3325227336,3325227383,CA
+3325227332,3325227335,MX
+3325227336,3325227371,CA
+3325227372,3325227375,DM
+3325227376,3325227383,CA
3325227384,3325227387,MA
3325227388,3325227391,CA
3325227392,3325227395,PK
3325227396,3325227399,CA
3325227400,3325227403,LK
-3325227404,3325227455,CA
-3325227456,3325227471,US
-3325227472,3325227483,CA
+3325227404,3325227439,CA
+3325227440,3325227443,CH
+3325227444,3325227483,CA
3325227484,3325227487,IT
3325227488,3325227503,RO
3325227504,3325227519,CA
3325227520,3325227527,VG
-3325227528,3325227539,CA
-3325227540,3325227543,CZ
+3325227528,3325227531,PE
+3325227532,3325227543,CA
3325227544,3325227551,BD
3325227552,3325227555,BR
3325227556,3325227567,CA
@@ -138469,7 +140217,8 @@
3325227632,3325227639,BR
3325227640,3325227791,CA
3325227792,3325227799,US
-3325227800,3325227871,CA
+3325227800,3325227803,BR
+3325227804,3325227871,CA
3325227872,3325227875,BR
3325227876,3325227879,US
3325227880,3325228063,CA
@@ -138490,9 +140239,7 @@
3325228688,3325228691,BR
3325228692,3325228735,CA
3325228736,3325228739,FR
-3325228740,3325228783,CA
-3325228784,3325228787,US
-3325228788,3325228807,CA
+3325228740,3325228807,CA
3325228808,3325228815,PL
3325228816,3325228823,CA
3325228824,3325228831,BR
@@ -138503,15 +140250,15 @@
3325228932,3325228935,LU
3325228936,3325228991,CA
3325228992,3325229007,BR
-3325229008,3325229063,CA
+3325229008,3325229055,CA
+3325229056,3325229063,US
3325229064,3325229071,JO
3325229072,3325229079,IN
3325229080,3325229083,CA
3325229084,3325229087,US
3325229088,3325229175,CA
3325229176,3325229183,IN
-3325229184,3325229247,US
-3325229248,3325229255,CA
+3325229184,3325229255,CA
3325229256,3325229263,BR
3325229264,3325229279,CA
3325229280,3325229295,US
@@ -138520,20 +140267,20 @@
3325229328,3325229331,US
3325229332,3325229351,CA
3325229352,3325229359,BR
-3325229360,3325229363,US
+3325229360,3325229363,CA
3325229364,3325229367,BD
-3325229368,3325229411,CA
+3325229368,3325229371,CA
+3325229372,3325229375,IN
+3325229376,3325229411,CA
3325229412,3325229415,RU
3325229416,3325229459,CA
-3325229460,3325229471,BR
-3325229472,3325229487,US
+3325229460,3325229463,BR
+3325229464,3325229487,US
3325229488,3325229499,CA
-3325229500,3325229503,US
+3325229500,3325229503,IN
3325229504,3325229511,CA
3325229512,3325229515,IN
-3325229516,3325229519,CA
-3325229520,3325229527,US
-3325229528,3325229535,CA
+3325229516,3325229535,CA
3325229536,3325229551,FR
3325229552,3325229555,US
3325229556,3325229559,PL
@@ -138541,12 +140288,12 @@
3325229592,3325229599,US
3325229600,3325229615,CA
3325229616,3325229619,MX
-3325229620,3325229627,CA
-3325229628,3325229631,US
-3325229632,3325229647,CA
+3325229620,3325229647,CA
3325229648,3325229663,FR
3325229664,3325229695,MX
-3325229696,3325229747,CA
+3325229696,3325229735,CA
+3325229736,3325229739,DM
+3325229740,3325229747,CA
3325229748,3325229755,CY
3325229756,3325229795,CA
3325229796,3325229799,PA
@@ -138556,7 +140303,9 @@
3325229832,3325229835,US
3325229836,3325229855,CA
3325229856,3325229887,US
-3325229888,3325229955,CA
+3325229888,3325229919,CA
+3325229920,3325229935,FR
+3325229936,3325229955,CA
3325229956,3325229959,US
3325229960,3325229975,CA
3325229976,3325229979,IN
@@ -138576,7 +140325,9 @@
3325230136,3325230143,FR
3325230144,3325230167,CA
3325230168,3325230171,PK
-3325230172,3325230319,CA
+3325230172,3325230207,CA
+3325230208,3325230211,NL
+3325230212,3325230319,CA
3325230320,3325230323,US
3325230324,3325230447,CA
3325230448,3325230455,US
@@ -138592,8 +140343,7 @@
3325230780,3325230783,BR
3325230784,3325230815,CA
3325230816,3325230847,GB
-3325230848,3325230983,CA
-3325230984,3325230991,US
+3325230848,3325230991,CA
3325230992,3325231007,FR
3325231008,3325231039,JO
3325231040,3325231095,CA
@@ -138762,7 +140512,9 @@
3325924736,3325924743,GB
3325924744,3325925683,US
3325925684,3325925687,NZ
-3325925688,3325926639,US
+3325925688,3325925791,US
+3325925792,3325925793,MX
+3325925794,3325926639,US
3325926640,3325926643,GB
3325926644,3325926707,US
3325926708,3325926711,MX
@@ -138774,7 +140526,9 @@
3325927016,3325927017,ZA
3325927018,3325948415,US
3325948416,3325948447,AT
-3325948448,3325951087,US
+3325948448,3325949187,US
+3325949188,3325949191,MX
+3325949192,3325951087,US
3325951088,3325951091,GB
3325951092,3325951163,US
3325951164,3325951167,SE
@@ -139092,7 +140846,11 @@
3328557028,3328557031,CA
3328557032,3328557043,US
3328557044,3328557047,ES
-3328557048,3328617983,US
+3328557048,3328584543,US
+3328584544,3328584559,SG
+3328584560,3328584575,US
+3328584576,3328584591,GB
+3328584592,3328617983,US
3328617984,3328618239,CA
3328618240,3328629503,US
3328629504,3328629759,GB
@@ -139506,7 +141264,9 @@
3333396674,3333396674,DE
3333396675,3333427967,US
3333427968,3333428223,GB
-3333428224,3333444095,US
+3333428224,3333435647,US
+3333435648,3333435903,CN
+3333435904,3333444095,US
3333444096,3333444607,GB
3333444608,3333444863,SG
3333444864,3333471999,US
@@ -139751,7 +141511,9 @@
3337107712,3337107967,GB
3337107968,3337198367,US
3337198368,3337198399,CA
-3337198400,3337198703,US
+3337198400,3337198503,US
+3337198504,3337198511,CA
+3337198512,3337198703,US
3337198704,3337198707,CA
3337198708,3337201727,US
3337201728,3337201735,CA
@@ -139824,13 +141586,18 @@
3337961496,3337961519,US
3337961520,3337961527,RO
3337961528,3337961535,US
-3337961536,3337961983,CA
+3337961536,3337961679,CA
+3337961680,3337961687,TH
+3337961688,3337961815,CA
+3337961816,3337961823,TH
+3337961824,3337961983,CA
3337961984,3337961999,US
3337962000,3337962007,CA
3337962008,3337962015,US
3337962016,3337962047,CA
3337962048,3337962111,US
-3337962112,3337962143,CA
+3337962112,3337962119,TH
+3337962120,3337962143,CA
3337962144,3337962151,US
3337962152,3337962167,CA
3337962168,3337962175,US
@@ -139838,7 +141605,7 @@
3337962216,3337962223,US
3337962224,3337962239,CA
3337962240,3337962327,US
-3337962328,3337962335,CA
+3337962328,3337962335,TH
3337962336,3337962495,US
3337962496,3337962511,CA
3337962512,3337962519,US
@@ -139866,7 +141633,9 @@
3337963320,3337963327,US
3337963328,3337963335,CA
3337963336,3337963343,US
-3337963344,3337963375,CA
+3337963344,3337963359,CA
+3337963360,3337963367,US
+3337963368,3337963375,CA
3337963376,3337963383,US
3337963384,3337963391,CA
3337963392,3337963399,US
@@ -139882,10 +141651,11 @@
3337963648,3337963743,US
3337963744,3337963759,CA
3337963760,3337963767,US
-3337963768,3337963783,CA
+3337963768,3337963775,CA
+3337963776,3337963783,TH
3337963784,3337963791,US
3337963792,3337963799,AZ
-3337963800,3337963807,US
+3337963800,3337963807,TH
3337963808,3337963839,CA
3337963840,3337963855,US
3337963856,3337963863,CA
@@ -140194,8 +141964,7 @@
3339753472,3339754495,CA
3339754496,3339760639,US
3339760640,3339761663,CA
-3339761664,3339763711,US
-3339764736,3339766047,US
+3339761664,3339766047,US
3339766048,3339766055,DE
3339766056,3339766071,US
3339766072,3339766079,CA
@@ -140573,8 +142342,8 @@
3341536768,3341546239,US
3341546240,3341547007,CA
3341547008,3341547519,CH
-3341547520,3341549311,CA
-3341549312,3341631999,US
+3341547520,3341549567,CA
+3341549568,3341631999,US
3341632000,3341632767,CA
3341632768,3341634815,US
3341634816,3341635071,CA
@@ -140658,10 +142427,9 @@
3342488576,3342488639,US
3342488640,3342488703,GB
3342488704,3342488831,SC
-3342488832,3342489087,US
-3342489088,3342489151,SC
+3342488832,3342489151,US
3342489152,3342489183,AR
-3342489184,3342489215,SC
+3342489184,3342489215,US
3342489216,3342489279,GB
3342489280,3342489301,US
3342489302,3342489311,AR
@@ -141016,21 +142784,18 @@
3345321984,3345327103,US
3345327104,3345328127,CA
3345328128,3345332287,US
-3345332288,3345332291,GB
-3345332292,3345332295,GH
+3345332288,3345332295,GB
3345332296,3345332303,PK
3345332304,3345332311,US
3345332312,3345332319,ID
3345332320,3345332327,PT
-3345332328,3345332339,US
-3345332340,3345332343,GH
+3345332328,3345332343,US
3345332344,3345332347,ID
3345332348,3345332351,CY
3345332352,3345332359,PK
3345332360,3345332375,US
3345332376,3345332383,CA
-3345332384,3345332403,US
-3345332404,3345332407,GH
+3345332384,3345332407,US
3345332408,3345332411,ID
3345332412,3345332423,US
3345332424,3345332431,MY
@@ -141053,9 +142818,7 @@
3345332608,3345332655,US
3345332656,3345332659,CY
3345332660,3345332663,VN
-3345332664,3345332667,US
-3345332668,3345332671,ID
-3345332672,3345332751,US
+3345332664,3345332751,US
3345332752,3345332767,GB
3345332768,3345332799,US
3345332800,3345332815,GB
@@ -141063,8 +142826,7 @@
3345332992,3345333055,VN
3345333056,3345333183,US
3345333184,3345333215,IN
-3345333216,3345333219,BR
-3345333220,3345333223,GH
+3345333216,3345333223,US
3345333224,3345333227,MX
3345333228,3345333231,CY
3345333232,3345333247,US
@@ -141655,7 +143417,9 @@
3351074303,3351074303,BR
3351074304,3351074367,US
3351074368,3351074369,AE
-3351074370,3351074373,US
+3351074370,3351074370,US
+3351074371,3351074371,AU
+3351074372,3351074373,US
3351074374,3351074374,AR
3351074375,3351074375,BR
3351074376,3351074376,DE
@@ -141763,8 +143527,7 @@
3351194112,3351194367,GB
3351194368,3351196159,US
3351196160,3351196671,VG
-3351196672,3351197695,US
-3351197696,3351197711,PT
+3351196672,3351197711,US
3351197712,3351197715,BR
3351197716,3351197719,MX
3351197720,3351197735,US
@@ -141786,16 +143549,13 @@
3351197860,3351197863,CY
3351197864,3351197867,US
3351197868,3351197871,CY
-3351197872,3351197883,US
-3351197884,3351197887,GH
+3351197872,3351197887,US
3351197888,3351197891,MX
3351197892,3351197899,BR
3351197900,3351197903,CY
3351197904,3351198023,US
-3351198024,3351198027,BR
-3351198028,3351198031,GH
-3351198032,3351198059,US
-3351198060,3351198063,GH
+3351198024,3351198031,BR
+3351198032,3351198063,US
3351198064,3351198079,IN
3351198080,3351198091,US
3351198092,3351198095,GT
@@ -141807,28 +143567,23 @@
3351198148,3351198151,CN
3351198152,3351198155,BR
3351198156,3351198159,EG
-3351198160,3351198171,US
-3351198172,3351198175,GH
-3351198176,3351198183,US
-3351198184,3351198187,GH
-3351198188,3351198215,US
+3351198160,3351198215,US
3351198216,3351198219,VN
3351198220,3351198231,US
3351198232,3351198235,CA
3351198236,3351198239,US
3351198240,3351198247,TR
3351198248,3351198251,ID
-3351198252,3351198255,GH
+3351198252,3351198255,US
3351198256,3351198259,VN
3351198260,3351198263,DE
3351198264,3351198335,US
3351198336,3351198351,CA
-3351198352,3351198355,GT
-3351198356,3351198359,US
+3351198352,3351198359,US
3351198360,3351198363,GB
-3351198364,3351198371,US
-3351198372,3351198383,CA
-3351198384,3351198387,GH
+3351198364,3351198375,US
+3351198376,3351198383,CA
+3351198384,3351198387,US
3351198388,3351198391,VN
3351198392,3351198399,TR
3351198400,3351198403,VN
@@ -142186,7 +143941,9 @@
3353335340,3353335341,US
3353335342,3353335347,NL
3353335348,3353335353,US
-3353335354,3353335359,NL
+3353335354,3353335355,NL
+3353335356,3353335357,US
+3353335358,3353335359,NL
3353335360,3353335361,US
3353335362,3353335363,NL
3353335364,3353335378,US
@@ -142285,9 +144042,7 @@
3353731776,3353731823,IL
3353731824,3353731999,US
3353732000,3353732031,CN
-3353732032,3353732159,US
-3353732160,3353732191,CA
-3353732192,3353732351,US
+3353732032,3353732351,US
3353732352,3353732863,DE
3353732864,3353736191,US
3353736192,3353737215,PR
@@ -142393,8 +144148,7 @@
3354507288,3354507291,CY
3354507292,3354507295,MX
3354507296,3354507299,BR
-3354507300,3354507303,PK
-3354507304,3354507307,US
+3354507300,3354507307,US
3354507308,3354507315,BR
3354507316,3354507319,US
3354507320,3354507323,PK
@@ -142406,8 +144160,7 @@
3354507360,3354507363,US
3354507364,3354507367,CY
3354507368,3354507375,GB
-3354507376,3354507387,US
-3354507388,3354507391,VN
+3354507376,3354507391,US
3354507392,3354507399,CA
3354507400,3354507403,EG
3354507404,3354507431,US
@@ -142444,8 +144197,7 @@
3354507660,3354507667,CY
3354507668,3354507671,BR
3354507672,3354507679,IN
-3354507680,3354507683,US
-3354507684,3354507687,PT
+3354507680,3354507687,US
3354507688,3354507691,CA
3354507692,3354507695,VN
3354507696,3354507703,US
@@ -142481,15 +144233,12 @@
3354507920,3354507931,US
3354507932,3354507943,CY
3354507944,3354507959,US
-3354507960,3354507963,BR
-3354507964,3354507967,GH
+3354507960,3354507967,BR
3354507968,3354507983,MX
3354507984,3354507991,AE
3354507992,3354508015,US
3354508016,3354508031,MX
-3354508032,3354508043,US
-3354508044,3354508047,DK
-3354508048,3354508051,US
+3354508032,3354508051,US
3354508052,3354508055,VN
3354508056,3354508059,US
3354508060,3354508063,BR
@@ -142513,8 +144262,7 @@
3354508140,3354508143,CY
3354508144,3354508147,MY
3354508148,3354508151,BB
-3354508152,3354508159,US
-3354508160,3354508163,GH
+3354508152,3354508163,US
3354508164,3354508167,CY
3354508168,3354508191,US
3354508192,3354508195,IN
@@ -142562,8 +144310,7 @@
3354508520,3354508527,CA
3354508528,3354508535,AE
3354508536,3354508543,BB
-3354508544,3354508567,US
-3354508568,3354508571,GH
+3354508544,3354508571,US
3354508572,3354508575,CN
3354508576,3354508579,BR
3354508580,3354508583,US
@@ -142603,7 +144350,7 @@
3354509256,3354509263,US
3354509264,3354509279,BR
3354509280,3354509283,AU
-3354509284,3354509287,GH
+3354509284,3354509287,US
3354509288,3354509291,CY
3354509292,3354509295,IN
3354509296,3354509299,CA
@@ -142685,7 +144432,19 @@
3355017216,3355052287,US
3355052288,3355052543,AU
3355052544,3355053055,CA
-3355053056,3355249151,US
+3355053056,3355082751,US
+3355082752,3355083263,PS
+3355083264,3355083519,US
+3355083520,3355083775,PS
+3355083776,3355084031,US
+3355084032,3355084799,PS
+3355084800,3355084800,US
+3355084801,3355086846,PS
+3355086847,3355086848,US
+3355086849,3355088894,PS
+3355088895,3355088896,US
+3355088897,3355090942,PS
+3355090943,3355249151,US
3355249152,3355249663,CA
3355249664,3355260927,US
3355260928,3355262719,CA
@@ -142725,15 +144484,11 @@
3355412808,3355412815,IN
3355412816,3355412823,EG
3355412824,3355412831,IN
-3355412832,3355412991,US
-3355412992,3355413023,IN
-3355413024,3355413055,US
+3355412832,3355413055,US
3355413056,3355413087,IN
3355413088,3355417735,US
3355417736,3355417743,NP
-3355417744,3355417799,US
-3355417800,3355417803,CN
-3355417804,3355417991,US
+3355417744,3355417991,US
3355417992,3355417999,IN
3355418000,3355418015,BE
3355418016,3355418023,AE
@@ -142743,9 +144498,7 @@
3355418080,3355418111,CN
3355418112,3355418367,US
3355418368,3355418371,BR
-3355418372,3355418379,US
-3355418380,3355418383,GH
-3355418384,3355418395,US
+3355418372,3355418395,US
3355418396,3355418399,GT
3355418400,3355418431,BE
3355418432,3355418455,GB
@@ -143061,8 +144814,7 @@
3356102656,3356105727,CL
3356105728,3356106751,SV
3356106752,3356107263,HN
-3356107264,3356107295,BR
-3356107296,3356107775,US
+3356107264,3356107775,US
3356107776,3356110335,HN
3356110336,3356110847,US
3356110848,3356113919,BR
@@ -143216,8 +144968,8 @@
3356329984,3356332031,GF
3356332032,3356334079,CU
3356334080,3356336127,BO
-3356336128,3356336895,SV
-3356336896,3356337919,HN
+3356336128,3356336639,SV
+3356336640,3356337919,HN
3356337920,3356340479,SV
3356340480,3356340735,HN
3356340736,3356341759,SV
@@ -143260,8 +145012,8 @@
3356420352,3356420735,CL
3356420736,3356422143,CO
3356422144,3356425471,CL
-3356425472,3356425599,CO
-3356425600,3356426239,CL
+3356425472,3356425727,CO
+3356425728,3356426239,CL
3356426240,3356427263,BR
3356427264,3356491775,US
3356491776,3356493823,PE
@@ -143412,7 +145164,9 @@
3357476864,3357477375,EC
3357477376,3357477887,AR
3357477888,3357478911,CO
-3357478912,3357479079,AR
+3357478912,3357478991,AR
+3357478992,3357479007,CO
+3357479008,3357479079,AR
3357479080,3357479095,CO
3357479096,3357480031,AR
3357480032,3357480039,CO
@@ -143848,7 +145602,9 @@
3362529280,3362537471,PA
3362537472,3362545663,AR
3362545664,3362549759,PE
-3362549760,3362552431,AR
+3362549760,3362552127,AR
+3362552128,3362552143,VE
+3362552144,3362552431,AR
3362552432,3362552447,MX
3362552448,3362552575,AR
3362552576,3362552591,MX
@@ -143976,9 +145732,7 @@
3367763968,3367804927,MX
3367804928,3367840767,BR
3367840768,3367841279,US
-3367841280,3367841407,HN
-3367841408,3367841423,CA
-3367841424,3367841791,HN
+3367841280,3367841791,HN
3367841792,3368052991,BR
3368052992,3368053247,PE
3368053248,3368053503,CO
@@ -144103,9 +145857,7 @@
3381960704,3381962751,BR
3381962752,3381962991,HN
3381962992,3381962999,FR
-3381963000,3381963559,HN
-3381963560,3381963567,FR
-3381963568,3381963775,HN
+3381963000,3381963775,HN
3381963776,3381968895,BR
3381968896,3381972991,MX
3381972992,3381974015,BR
@@ -144233,9 +145985,7 @@
3386548224,3386556415,CR
3386556416,3386562047,PA
3386562048,3386562303,PE
-3386562304,3386571263,PA
-3386571264,3386571519,BZ
-3386571520,3386572799,PA
+3386562304,3386572799,PA
3386572800,3386589183,EC
3386589184,3386601471,AR
3386601472,3386605567,CO
@@ -146082,8 +147832,7 @@
3394179072,3394181119,BD
3394181120,3394183167,KH
3394183168,3394191359,NP
-3394191360,3394207743,SG
-3394207744,3394215935,JP
+3394191360,3394215935,JP
3394215936,3394220031,AU
3394220032,3394232319,SG
3394232320,3394234367,CN
@@ -146613,7 +148362,7 @@
3397584896,3397586943,JP
3397586944,3397588991,CN
3397588992,3397591039,KR
-3397593088,3397595135,HK
+3397591040,3397595135,HK
3397595136,3397599231,CN
3397599232,3397603327,HK
3397603328,3397605375,KH
@@ -146764,7 +148513,7 @@
3398481920,3398483967,LA
3398483968,3398484991,US
3398484992,3398485247,AQ
-3398485248,3398485503,CN
+3398485248,3398485503,DZ
3398485504,3398485759,US
3398485760,3398486015,CN
3398486016,3398487039,BD
@@ -147311,7 +149060,8 @@
3405786368,3405787135,CN
3405787136,3405793279,AU
3405793280,3405793535,US
-3405793536,3405795583,AU
+3405793536,3405793663,GB
+3405793664,3405795583,AU
3405795584,3405796351,CN
3405796352,3405797887,AU
3405797888,3405798399,CN
@@ -147497,9 +149247,7 @@
3406208768,3406209023,CN
3406209024,3406225407,AU
3406225408,3406229503,CN
-3406229504,3406231039,AU
-3406231040,3406231295,NZ
-3406231296,3406231551,AU
+3406229504,3406231551,AU
3406231552,3406232063,CN
3406232064,3406266623,AU
3406266624,3406266879,CN
@@ -148110,7 +149858,8 @@
3407310848,3407311103,CN
3407311104,3407314687,AU
3407314688,3407314943,HK
-3407314944,3407315455,AU
+3407314944,3407315199,CA
+3407315200,3407315455,AU
3407315456,3407315711,CN
3407315712,3407318015,AU
3407318016,3407318527,CN
@@ -149351,11 +151100,7 @@
3412602880,3412606975,NC
3412606976,3412615167,PH
3412615168,3412631551,JP
-3412631552,3412636159,SG
-3412636160,3412636671,JP
-3412636672,3412638207,SG
-3412638208,3412638719,JP
-3412638720,3412639743,SG
+3412631552,3412639743,SG
3412639744,3412656127,JP
3412656128,3412672511,HK
3412672512,3412680703,JP
@@ -149896,9 +151641,7 @@
3415749888,3415750143,SG
3415750144,3415750399,JP
3415750400,3415751423,SG
-3415751424,3415751679,JP
-3415751680,3415751935,TH
-3415751936,3415752191,JP
+3415751424,3415752191,JP
3415752192,3415752703,SG
3415752704,3415760895,CN
3415760896,3415769087,NZ
@@ -150228,8 +151971,8 @@
3418208256,3418210303,LK
3418210304,3418218495,CN
3418218496,3418220543,BD
-3418220544,3418221567,HK
-3418221568,3418223615,CN
+3418220544,3418222591,HK
+3418222592,3418223615,CN
3418223616,3418226687,IN
3418226688,3418227711,BD
3418227712,3418228735,KR
@@ -150469,9 +152212,7 @@
3419906048,3419914239,PK
3419914240,3419922431,KR
3419922432,3419924479,JP
-3419924480,3419925503,HK
-3419925504,3419925759,JP
-3419925760,3419930623,HK
+3419924480,3419930623,HK
3419930624,3419971583,JP
3419971584,3419979775,KR
3419979776,3419996159,JP
@@ -151322,7 +153063,9 @@
3437301760,3437305855,US
3437305856,3437307391,CA
3437307392,3437307903,US
-3437307904,3437310975,CA
+3437307904,3437308415,CA
+3437308416,3437308927,BR
+3437308928,3437310975,CA
3437310976,3437311487,US
3437311488,3437331711,CA
3437331712,3437331967,US
@@ -151510,9 +153253,7 @@
3448987648,3448989695,IN
3448989696,3448990719,HK
3448990720,3448991743,IN
-3448991744,3449001245,US
-3449001246,3449001246,MC
-3449001247,3449098751,US
+3448991744,3449098751,US
3449098752,3449099263,DE
3449099264,3449100287,US
3449100288,3449100799,HK
@@ -152217,7 +153958,9 @@
3455647232,3455647487,HK
3455647488,3455647743,IT
3455647744,3455713279,US
-3455713280,3455778815,CA
+3455713280,3455735039,CA
+3455735040,3455735167,US
+3455735168,3455778815,CA
3455778816,3455848927,US
3455848928,3455848959,TW
3455848960,3455871999,US
@@ -152439,7 +154182,9 @@
3459731456,3459735551,CA
3459735552,3459745535,US
3459745536,3459745791,IT
-3459745792,3459848959,US
+3459745792,3459847807,US
+3459847808,3459847871,JP
+3459847872,3459848959,US
3459848960,3459849215,FR
3459849216,3459873311,US
3459873312,3459873327,MX
@@ -153114,9 +154859,18 @@
3468368896,3468443647,US
3468443648,3468460031,CA
3468460032,3468468223,BM
-3468468224,3468545791,US
-3468545792,3468546047,SG
-3468546048,3468597759,US
+3468468224,3468492799,US
+3468492800,3468496895,NL
+3468496896,3468500991,GB
+3468500992,3468505087,SG
+3468505088,3468509183,DE
+3468509184,3468513279,US
+3468513280,3468517375,SG
+3468517376,3468521471,US
+3468521472,3468525567,GB
+3468525568,3468529663,IN
+3468529664,3468533759,SG
+3468533760,3468597759,US
3468597760,3468598391,SG
3468598392,3468598399,NL
3468598400,3468599039,SG
@@ -153158,8 +154912,12 @@
3468685824,3468687087,US
3468687088,3468687263,NL
3468687264,3468687455,US
-3468687456,3468687631,IE
-3468687632,3468687983,NL
+3468687456,3468687599,IE
+3468687600,3468687615,US
+3468687616,3468687631,IE
+3468687632,3468687951,NL
+3468687952,3468687967,US
+3468687968,3468687983,NL
3468687984,3468688159,IE
3468688160,3468688255,US
3468688256,3468688271,IE
@@ -153169,7 +154927,8 @@
3468688368,3468688399,IE
3468688400,3468688431,NL
3468688432,3468688463,IE
-3468688464,3468688495,NL
+3468688464,3468688479,NL
+3468688480,3468688495,US
3468688496,3468688527,IE
3468688528,3468688559,NL
3468688560,3468688591,IE
@@ -153399,10 +155158,15 @@
3475901952,3475906711,US
3475906712,3475906715,IE
3475906716,3475907735,US
-3475907736,3475907743,HK
-3475907744,3475908151,US
+3475907736,3475907739,SG
+3475907740,3475907743,HK
+3475907744,3475907791,US
+3475907792,3475907795,IN
+3475907796,3475908151,US
3475908152,3475908159,CA
-3475908160,3475909139,US
+3475908160,3475908223,US
+3475908224,3475908227,GU
+3475908228,3475909139,US
3475909140,3475909143,IE
3475909144,3475909359,US
3475909360,3475909367,IE
@@ -153462,7 +155226,11 @@
3475930624,3475930879,HK
3475930880,3475931135,US
3475931136,3475939327,HK
-3475939328,3475948031,US
+3475939328,3475939427,US
+3475939428,3475939431,NL
+3475939432,3475939679,US
+3475939680,3475939687,GB
+3475939688,3475948031,US
3475948032,3475948287,IE
3475948288,3475952511,US
3475952512,3475952639,SG
@@ -153471,9 +155239,15 @@
3475953024,3475953663,US
3475953664,3475953919,IE
3475953920,3475954175,SG
-3475954176,3475954631,US
-3475954632,3475954635,SG
-3475954636,3475955711,US
+3475954176,3475954547,US
+3475954548,3475954551,PT
+3475954552,3475954607,US
+3475954608,3475954611,SE
+3475954612,3475954631,US
+3475954632,3475954639,SG
+3475954640,3475954647,US
+3475954648,3475954651,CA
+3475954652,3475955711,US
3475955712,3475959807,SG
3475959808,3475996671,US
3475996672,3476029439,CA
@@ -153492,7 +155266,9 @@
3477231104,3477231359,NL
3477231360,3477235711,US
3477235712,3477236223,GB
-3477236224,3477384735,US
+3477236224,3477384711,US
+3477384712,3477384719,CN
+3477384720,3477384735,US
3477384736,3477384743,IE
3477384744,3477384783,US
3477384784,3477384799,IE
@@ -153795,9 +155571,8 @@
3482595328,3482599423,CA
3482599424,3482603519,SG
3482603520,3482605567,AU
-3482605568,3482611711,JP
-3482611712,3482613759,US
-3482613760,3482615807,SG
+3482605568,3482612735,JP
+3482612736,3482615807,SG
3482615808,3482632191,CA
3482632192,3482758499,US
3482758500,3482758527,VE
@@ -153811,9 +155586,7 @@
3483025408,3483041791,DE
3483041792,3483254783,US
3483254784,3483271167,AU
-3483271168,3483296004,US
-3483296005,3483296005,BE
-3483296006,3483336959,US
+3483271168,3483336959,US
3483336960,3483337215,CA
3483337216,3483337983,US
3483337984,3483338239,CA
@@ -154316,7 +156089,9 @@
3488989184,3488996351,CA
3488996352,3488997375,US
3488997376,3489005567,CA
-3489005568,3489058047,US
+3489005568,3489057023,US
+3489057024,3489057535,VI
+3489057536,3489058047,US
3489058048,3489058063,GB
3489058064,3489136639,US
3489136640,3489153535,MX
@@ -154923,7 +156698,9 @@
3497820160,3497852927,CA
3497852928,3498254591,US
3498254592,3498254847,JM
-3498254848,3498287103,US
+3498254848,3498285311,US
+3498285312,3498285567,AU
+3498285568,3498287103,US
3498287104,3498295295,JM
3498295296,3498509055,US
3498509056,3498509311,PR
@@ -155700,14 +157477,28 @@
3512679424,3512679679,HK
3512679680,3512680191,US
3512680192,3512680447,SG
-3512680448,3512688895,US
-3512688896,3512689407,CA
-3512689408,3512689663,US
-3512689664,3512690175,CA
-3512690176,3512690431,US
-3512690432,3512690687,CA
-3512690688,3512695295,US
-3512695296,3512696319,CA
+3512680448,3512689279,US
+3512689280,3512689407,CA
+3512689408,3512689791,US
+3512689792,3512689919,CA
+3512689920,3512690047,US
+3512690048,3512690111,CA
+3512690112,3512690591,US
+3512690592,3512690623,IN
+3512690624,3512690631,US
+3512690632,3512690687,CA
+3512690688,3512695359,US
+3512695360,3512695423,CA
+3512695424,3512695487,US
+3512695488,3512695519,CA
+3512695520,3512695551,US
+3512695552,3512695615,CA
+3512695616,3512695839,US
+3512695840,3512695871,GB
+3512695872,3512695967,US
+3512695968,3512695999,CA
+3512696000,3512696063,US
+3512696064,3512696319,CA
3512696320,3512696575,US
3512696576,3512696831,CA
3512696832,3512844287,US
@@ -155848,9 +157639,7 @@
3517021696,3517038591,US
3517038592,3517054975,CA
3517054976,3517087743,US
-3517087744,3517089663,NL
-3517089664,3517089695,US
-3517089696,3517095935,NL
+3517087744,3517095935,NL
3517095936,3517100031,CA
3517100032,3517112319,US
3517112320,3517120511,CA
@@ -156036,16 +157825,9 @@
3518075648,3518075903,AU
3518075904,3518076671,US
3518076672,3518076927,PA
-3518076928,3518374719,US
-3518374720,3518374783,IN
-3518374784,3518380223,US
-3518380224,3518380287,DE
-3518380288,3518381055,US
+3518076928,3518381055,US
3518381056,3518381311,IN
-3518381312,3518381439,US
-3518381440,3518381567,IN
-3518381568,3518381631,DE
-3518381632,3518392575,US
+3518381312,3518392575,US
3518392576,3518392831,NL
3518392832,3518393087,US
3518393088,3518393343,SG
@@ -156445,7 +158227,8 @@
3524289536,3524290559,IN
3524290560,3524291327,CN
3524291328,3524291583,TW
-3524291584,3524294655,IN
+3524291584,3524293631,IN
+3524293632,3524294655,KR
3524294656,3524295679,SG
3524295680,3524296703,MY
3524296704,3524313087,CN
@@ -156636,7 +158419,8 @@
3526956800,3526957311,US
3526957312,3526957823,TW
3526957824,3526958335,HK
-3526958336,3526958847,SG
+3526958336,3526958592,SG
+3526958593,3526958847,JP
3526958848,3526959359,VN
3526959360,3526964735,JP
3526964736,3526965503,AU
@@ -156867,8 +158651,8 @@
3557089280,3557105663,DE
3557105664,3557107711,BG
3557107712,3557109759,IQ
-3557109760,3557113599,BG
-3557113600,3557113855,IQ
+3557109760,3557113343,BG
+3557113344,3557113855,IQ
3557113856,3557130239,RU
3557130240,3557138431,BG
3557138432,3557146623,RU
@@ -156964,7 +158748,11 @@
3557556224,3557564415,RU
3557564416,3557572607,DE
3557572608,3557580799,RU
-3557580800,3557588991,DE
+3557580800,3557584287,DE
+3557584288,3557584319,GB
+3557584320,3557585695,DE
+3557585696,3557585711,CH
+3557585712,3557588991,DE
3557588992,3557597183,TR
3557597184,3557605375,SA
3557605376,3557613567,LT
@@ -157125,8 +158913,9 @@
3558424576,3558440959,IL
3558440960,3558449151,SE
3558449152,3558457343,IT
-3558457344,3558457407,BE
-3558457408,3558457599,GB
+3558457344,3558457407,NL
+3558457408,3558457471,GB
+3558457472,3558457599,NL
3558457600,3558457727,FR
3558457728,3558465535,NL
3558465536,3558473727,GB
@@ -157150,7 +158939,9 @@
3558588416,3558596607,CZ
3558596608,3558597343,EE
3558597344,3558597351,PL
-3558597352,3558604799,EE
+3558597352,3558598415,EE
+3558598416,3558598423,RU
+3558598424,3558604799,EE
3558604800,3558612991,GB
3558612992,3558621183,DE
3558621184,3558629375,MD
@@ -157245,7 +159036,9 @@
3559164000,3559164031,NL
3559164032,3559164151,GB
3559164152,3559164159,IT
-3559164160,3559178239,GB
+3559164160,3559167227,GB
+3559167228,3559167228,DE
+3559167229,3559178239,GB
3559178240,3559186431,LB
3559186432,3559194623,RU
3559194624,3559197551,SE
@@ -159946,7 +161739,9 @@
3564889634,3564889634,NL
3564889635,3564891119,GB
3564891120,3564891135,NL
-3564891136,3564895231,GB
+3564891136,3564891647,GB
+3564891648,3564892159,IT
+3564892160,3564895231,GB
3564895232,3564895743,NL
3564895744,3564895959,GB
3564895960,3564895967,DE
@@ -160305,7 +162100,9 @@
3567629312,3567630335,GB
3567630336,3567634431,LU
3567634432,3567636479,GB
-3567636480,3567646719,LU
+3567636480,3567640575,LU
+3567640576,3567644671,US
+3567644672,3567646719,LU
3567646720,3567648767,GB
3567648768,3567665151,BE
3567665152,3567673343,ES
@@ -160968,7 +162765,9 @@
3575672928,3575672959,PL
3575672960,3575673087,FR
3575673088,3575673343,GB
-3575673344,3575674831,FR
+3575673344,3575673923,FR
+3575673924,3575673927,GB
+3575673928,3575674831,FR
3575674832,3575674847,LT
3575674848,3575675215,FR
3575675216,3575675231,PL
@@ -161229,9 +163028,7 @@
3576264352,3576264359,FR
3576264360,3576264375,GB
3576264376,3576264383,FR
-3576264384,3576264679,GB
-3576264680,3576264687,FR
-3576264688,3576264703,GB
+3576264384,3576264703,GB
3576264704,3576265215,FR
3576265216,3576265359,GB
3576265360,3576265367,FR
@@ -161336,7 +163133,9 @@
3579197312,3579197439,US
3579197440,3579209727,GB
3579209728,3579210751,DE
-3579210752,3579216033,GB
+3579210752,3579215927,GB
+3579215928,3579215935,DE
+3579215936,3579216033,GB
3579216034,3579216034,DE
3579216035,3579244831,GB
3579244832,3579244879,AT
@@ -161489,9 +163288,7 @@
3580135424,3580136191,EE
3580136192,3580136447,SE
3580136448,3580141567,HR
-3580141568,3580142591,LV
-3580142592,3580143615,SE
-3580143616,3580145663,LV
+3580141568,3580145663,LV
3580145664,3580149759,SE
3580149760,3580162047,EE
3580162048,3580164095,SE
@@ -161499,15 +163296,15 @@
3580166144,3580198911,SE
3580198912,3580199935,LV
3580199936,3580200447,EE
-3580200448,3580203007,LT
-3580203008,3580203647,SE
+3580200448,3580201983,LT
+3580201984,3580203647,SE
3580203648,3580203775,AT
3580203776,3580204031,SE
3580204032,3580204544,LT
3580204545,3580204799,SE
3580204800,3580204800,LT
-3580204801,3580206079,SE
-3580206080,3580213247,HR
+3580204801,3580205055,SE
+3580205056,3580213247,HR
3580213248,3580215295,LV
3580215296,3580219391,SE
3580219392,3580221951,LV
@@ -161518,8 +163315,8 @@
3580232192,3580232447,SE
3580232448,3580233215,LT
3580233216,3580233727,SE
-3580233728,3580236799,LT
-3580236800,3580237823,SE
+3580233728,3580235775,LT
+3580235776,3580237823,SE
3580237824,3580239871,LV
3580239872,3580243967,SE
3580243968,3580244991,EE
@@ -161542,9 +163339,11 @@
3580338176,3580338687,SE
3580338688,3580339199,HR
3580339200,3580340223,EE
-3580340224,3580344319,LT
-3580344320,3580346367,SE
-3580346368,3580362751,LT
+3580340224,3580342271,LT
+3580342272,3580346367,SE
+3580346368,3580354559,LT
+3580354560,3580356607,SE
+3580356608,3580362751,LT
3580362752,3580624895,GB
3580626944,3580628991,PL
3580628992,3580631039,RU
@@ -161652,9 +163451,10 @@
3582116096,3582116351,EE
3582116352,3582116863,SE
3582116864,3582117887,EE
-3582117888,3582120959,LT
+3582117888,3582119935,SE
+3582119936,3582120959,LT
3582120960,3582121983,EE
-3582121984,3582124031,LT
+3582121984,3582124031,SE
3582124032,3582132223,FI
3582132224,3582140415,RU
3582140416,3582148607,GE
@@ -161714,6 +163514,7 @@
3582533632,3582541823,IT
3582541824,3582550015,IL
3582550016,3582558207,RS
+3582558976,3582559103,MC
3582559744,3582559815,BE
3582559824,3582559999,CH
3582561280,3582565887,BE
@@ -162164,18 +163965,16 @@
3585634560,3585634687,IL
3585634688,3585634815,NL
3585634816,3585635071,IT
-3585635072,3585635199,NL
-3585635200,3585635327,IL
+3585635072,3585635327,NL
3585635328,3585635583,AE
-3585635584,3585635711,NL
-3585635712,3585635839,IL
+3585635584,3585635839,NL
3585635840,3585635903,CZ
3585635904,3585635967,NO
3585635968,3585636031,HU
3585636032,3585636095,SK
3585636096,3585637375,IL
-3585637376,3585637503,NL
-3585637504,3585638399,IL
+3585637376,3585637631,NL
+3585637632,3585638399,IL
3585638400,3585646591,RU
3585646592,3585654783,SA
3585654784,3585662975,NO
@@ -162295,8 +164094,8 @@
3586258944,3586259455,BE
3586259456,3586260991,NL
3586260992,3586261031,GB
-3586261032,3586261039,LU
-3586261040,3586271807,GB
+3586261032,3586261047,LU
+3586261048,3586271807,GB
3586271808,3586271823,IT
3586271824,3586272799,GB
3586272800,3586272807,IT
@@ -162310,9 +164109,7 @@
3586342912,3586359295,ES
3586359296,3586375679,PL
3586375680,3586392063,CZ
-3586392064,3586405375,NL
-3586405376,3586406399,RU
-3586406400,3586408447,NL
+3586392064,3586408447,NL
3586408448,3586424831,BA
3586424832,3586441215,CH
3586441216,3586457599,DE
@@ -162328,16 +164125,14 @@
3586546688,3586546943,NL
3586546944,3586555903,DE
3586555904,3586572287,IT
-3586572288,3586585215,RS
-3586585216,3586585223,XK
-3586585224,3586586255,RS
-3586586256,3586586263,XK
-3586586264,3586588671,RS
+3586572288,3586588671,RS
3586588672,3586596863,IT
3586596864,3586605055,GB
3586605056,3586621439,SE
3586621440,3586625535,NL
-3586625536,3586628118,IE
+3586625536,3586625711,IE
+3586625712,3586625719,GB
+3586625720,3586628118,IE
3586628119,3586628119,GB
3586628120,3586628127,IE
3586628128,3586628159,AT
@@ -162347,7 +164142,11 @@
3586628256,3586628287,IE
3586628288,3586628319,FI
3586628320,3586628351,AT
-3586628352,3586634047,IE
+3586628352,3586628607,IE
+3586628608,3586629631,GB
+3586629632,3586631935,IE
+3586631936,3586632191,CN
+3586632192,3586634047,IE
3586634048,3586634079,NL
3586634080,3586634239,IE
3586634240,3586634495,NL
@@ -162397,7 +164196,8 @@
3586682416,3586682423,DE
3586682424,3586682495,RO
3586682496,3586682879,FR
-3586682880,3586686975,US
+3586682880,3586684927,RO
+3586684928,3586686975,US
3586686976,3586703359,SE
3586703360,3586719743,CH
3586719744,3586752511,ES
@@ -162521,11 +164321,11 @@
3587415040,3587415807,NL
3587415808,3587424255,BE
3587424256,3587440639,DE
-3587440640,3587442303,SE
-3587442304,3587442687,NO
-3587442688,3587443711,SE
+3587440640,3587443711,SE
3587443712,3587444735,NO
-3587444736,3587448831,FI
+3587444736,3587445025,FI
+3587445026,3587445026,DK
+3587445027,3587448831,FI
3587448832,3587449087,SE
3587449088,3587449169,DK
3587449170,3587449170,SE
@@ -162772,6 +164572,7 @@
3589825810,3589826047,DE
3589826718,3589826718,AT
3589827584,3589827647,DE
+3589827696,3589827711,IE
3589828736,3589828863,NL
3589828992,3589829119,ES
3589829504,3589829631,DE
@@ -163069,7 +164870,10 @@
3626852352,3626860543,CA
3626860544,3626893311,US
3626893312,3626905599,CA
-3626905600,3626926079,US
+3626905600,3626924543,US
+3626924544,3626925055,AU
+3626925056,3626925567,GB
+3626925568,3626926079,US
3626926080,3626934271,CA
3626934272,3627044863,US
3627044864,3627048959,CA
@@ -163626,7 +165430,9 @@
3633821696,3633821951,CA
3633821952,3633823743,US
3633823744,3633827839,HK
-3633827840,3633872895,US
+3633827840,3633865471,US
+3633865472,3633865727,GB
+3633865728,3633872895,US
3633872896,3633874431,CA
3633874432,3633874687,US
3633874688,3633876991,CA
@@ -163853,7 +165659,9 @@
3637706752,3637739519,CA
3637739520,3637821439,US
3637821440,3637829631,CA
-3637829632,3638165503,US
+3637829632,3637870591,US
+3637870592,3637886975,GB
+3637886976,3638165503,US
3638165504,3638181887,CA
3638181888,3638222273,US
3638222274,3638222274,JP
@@ -164416,8 +166224,8 @@
3642015744,3642019839,CH
3642019840,3642023935,SY
3642023936,3642028031,EG
-3642028032,3642028287,GB
-3642028288,3642028543,NG
+3642028032,3642028288,GB
+3642028289,3642028543,NG
3642028544,3642028544,GB
3642028545,3642028799,NG
3642028800,3642028800,GB
@@ -164428,9 +166236,7 @@
3642029057,3642029119,NG
3642029120,3642029183,GB
3642029184,3642029311,NG
-3642029312,3642030591,GB
-3642030592,3642030847,GN
-3642030848,3642031616,GB
+3642029312,3642031616,GB
3642031617,3642031743,SL
3642031744,3642032127,GB
3642032128,3642036223,PS
@@ -164525,14 +166331,7 @@
3642355712,3642359807,SE
3642359808,3642367999,RU
3642368000,3642376191,CH
-3642376192,3642376447,XK
-3642376448,3642377983,RS
-3642377984,3642378047,XK
-3642378048,3642379007,RS
-3642379008,3642379263,XK
-3642379264,3642379775,RS
-3642379776,3642380063,XK
-3642380064,3642380287,RS
+3642376192,3642380287,RS
3642380288,3642384383,IT
3642384384,3642392575,NL
3642392576,3642394623,AT
@@ -165005,9 +166804,7 @@
3645763698,3645763698,DE
3645763699,3645763699,BE
3645763700,3645763700,NL
-3645763701,3645763701,DE
-3645763702,3645763702,IT
-3645763703,3645763705,DE
+3645763701,3645763705,DE
3645763706,3645763706,GB
3645763707,3645763707,NL
3645763708,3645763708,GR
@@ -165675,8 +167472,7 @@
3645765492,3645765495,DE
3645765496,3645765499,GB
3645765500,3645765503,NL
-3645765504,3645765507,DE
-3645765508,3645765511,IT
+3645765504,3645765511,DE
3645765512,3645765515,GB
3645765516,3645765523,DE
3645765524,3645765527,IT
@@ -166381,8 +168177,8 @@
3652005888,3652009983,GB
3652009984,3652014079,RU
3652014080,3652018175,SA
-3652018176,3652021239,IE
-3652021240,3652021247,AT
+3652018176,3652020991,IE
+3652020992,3652021247,AT
3652021248,3652022015,IE
3652022016,3652022271,DE
3652022272,3652026367,ES
@@ -166526,7 +168322,9 @@
3652608192,3652608223,PT
3652608224,3652608255,FR
3652608256,3652608511,GB
-3652608512,3652608639,FR
+3652608512,3652608575,FR
+3652608576,3652608607,GB
+3652608608,3652608639,FR
3652608640,3652608767,GB
3652608768,3652609023,FR
3652609024,3652609279,GB
@@ -166570,7 +168368,9 @@
3652620672,3652620735,PT
3652620736,3652620799,FR
3652620800,3652620831,PT
-3652620832,3652621247,FR
+3652620832,3652620943,FR
+3652620944,3652620959,CZ
+3652620960,3652621247,FR
3652621248,3652621311,DE
3652621312,3652621375,FR
3652621376,3652621439,ES
@@ -166794,9 +168594,7 @@
3654610432,3654610943,FR
3654610944,3654610951,SE
3654610952,3654610959,DE
-3654610960,3654612231,SE
-3654612232,3654612239,AT
-3654612240,3654612271,SE
+3654610960,3654612271,SE
3654612272,3654612287,AT
3654612288,3654614047,SE
3654614048,3654614063,GB
@@ -166977,6 +168775,7 @@
3701380096,3701381119,KH
3701381120,3701390335,IN
3701390336,3701391359,AU
+3701392384,3701393407,MD
3701393408,3701394431,MY
3701394432,3701395455,BD
3701395456,3701396479,MY
@@ -167033,7 +168832,7 @@
3707207680,3707208703,BD
3707208704,3707209727,NZ
3707209728,3707211775,CN
-3707211776,3707215871,NP
+3707211776,3707215871,NC
3707215872,3707217919,BD
3707217920,3707219967,ID
3707219968,3707222015,AU
diff --git a/src/config/geoip6 b/src/config/geoip6
index 2db7d323c..dee9728bf 100644
--- a/src/config/geoip6
+++ b/src/config/geoip6
@@ -1,4 +1,4 @@
-# Last updated based on April 3 2018 Maxmind GeoLite2 Country
+# Last updated based on May 1 2018 Maxmind GeoLite2 Country
# wget https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz
# gunzip GeoLite2-Country.mmdb.gz
# python mmdb-convert.py GeoLite2-Country.mmdb
@@ -113,7 +113,9 @@
2001:470:b:c40::,2001:470:b:c40:ffff:ffff:ffff:ffff,US
2001:470:b:c41::,2001:470:b:cff:ffff:ffff:ffff:ffff,CN
2001:470:b:d00::,2001:470:b:ffff:ffff:ffff:ffff:ffff,US
-2001:470:c::,2001:470:d:11b:ffff:ffff:ffff:ffff,CN
+2001:470:c::,2001:470:c:5ce::1,CN
+2001:470:c:5ce::2,2001:470:c:5ce::2,US
+2001:470:c:5ce::3,2001:470:d:11b:ffff:ffff:ffff:ffff,CN
2001:470:d:11c::,2001:470:d:11c:ffff:ffff:ffff:ffff,NZ
2001:470:d:11d::,2001:470:f:ffff:ffff:ffff:ffff:ffff,CN
2001:470:10::,2001:470:18:7ff:ffff:ffff:ffff:ffff,US
@@ -182,7 +184,9 @@
2001:470:71:e00::,2001:470:71:fff:ffff:ffff:ffff:ffff,UA
2001:470:71:1000::,2001:470:18aa:ffff:ffff:ffff:ffff:ffff,US
2001:470:18ab::,2001:470:18ab:ffff:ffff:ffff:ffff:ffff,GB
-2001:470:18ac::,2001:470:1b2d:ffff:ffff:ffff:ffff:ffff,US
+2001:470:18ac::,2001:470:19e8:ffff:ffff:ffff:ffff:ffff,US
+2001:470:19e9::,2001:470:19e9:ffff:ffff:ffff:ffff:ffff,GB
+2001:470:19ea::,2001:470:1b2d:ffff:ffff:ffff:ffff:ffff,US
2001:470:1b2e::,2001:470:1b2e:ffff:ffff:ffff:ffff:ffff,GB
2001:470:1b2f::,2001:470:1f05:ff:ffff:ffff:ffff:ffff,US
2001:470:1f05:100::,2001:470:1f05:1ff:ffff:ffff:ffff:ffff,CN
@@ -273,7 +277,9 @@
2001:470:7288::,2001:470:72ff:ffff:ffff:ffff:ffff:ffff,RU
2001:470:7300::,2001:470:7421:ffff:ffff:ffff:ffff:ffff,US
2001:470:7422::,2001:470:7422:ffff:ffff:ffff:ffff:ffff,DE
-2001:470:7423::,2001:470:75e5:ffff:ffff:ffff:ffff:ffff,US
+2001:470:7423::,2001:470:74fd:ffff:ffff:ffff:ffff:ffff,US
+2001:470:74fe::,2001:470:74fe:ffff:ffff:ffff:ffff:ffff,AT
+2001:470:74ff::,2001:470:75e5:ffff:ffff:ffff:ffff:ffff,US
2001:470:75e6::,2001:470:75e6:ffff:ffff:ffff:ffff:ffff,RU
2001:470:75e7::,2001:470:7859:ffff:ffff:ffff:ffff:ffff,US
2001:470:785a::,2001:470:785a:ffff:ffff:ffff:ffff:ffff,AT
@@ -328,7 +334,9 @@
2001:470:f0c0::,2001:470:f13f:ffff:ffff:ffff:ffff:ffff,US
2001:470:f140::,2001:470:f17f:ffff:ffff:ffff:ffff:ffff,CN
2001:470:f180::,2001:470:f1ff:ffff:ffff:ffff:ffff:ffff,US
-2001:470:f200::,2001:470:f27f:ffff:ffff:ffff:ffff:ffff,CN
+2001:470:f200::,2001:470:f24b:98::,CN
+2001:470:f24b:98::1,2001:470:f24b:98::1,US
+2001:470:f24b:98::2,2001:470:f27f:ffff:ffff:ffff:ffff:ffff,CN
2001:470:f280::,2001:470:f7ff:ffff:ffff:ffff:ffff:ffff,US
2001:470:f800::,2001:470:f8ff:ffff:ffff:ffff:ffff:ffff,CN
2001:470:f900::,2001:470:fc7f:ffff:ffff:ffff:ffff:ffff,US
@@ -578,9 +586,7 @@
2001:648::,2001:64f:ffff:ffff:ffff:ffff:ffff:ffff,GR
2001:650::,2001:65f:ffff:ffff:ffff:ffff:ffff:ffff,DE
2001:660::,2001:667:ffff:ffff:ffff:ffff:ffff:ffff,FR
-2001:668::,2001:668:1f:31:1446:79b9:fd9d:ab3,DE
-2001:668:1f:31:1446:79b9:fd9d:ab4,2001:668:1f:31:1446:79b9:fd9d:ab4,US
-2001:668:1f:31:1446:79b9:fd9d:ab5,2001:668:1f:31:f83f:a32d:c0f:9a16,DE
+2001:668::,2001:668:1f:31:f83f:a32d:c0f:9a16,DE
2001:668:1f:31:f83f:a32d:c0f:9a17,2001:668:1f:31:f83f:a32d:c0f:9a17,US
2001:668:1f:31:f83f:a32d:c0f:9a18,2001:668:1f:3d:ffff:ffff:ffff:ffff,DE
2001:668:1f:3e::,2001:668:1f:3e:ffff:ffff:ffff:ffff,GB
@@ -694,7 +700,6 @@
2001:678:200::,2001:678:200:ffff:ffff:ffff:ffff:ffff,PL
2001:678:204::,2001:678:204:ffff:ffff:ffff:ffff:ffff,CH
2001:678:208::,2001:678:208:ffff:ffff:ffff:ffff:ffff,UA
-2001:678:20c::,2001:678:20c:ffff:ffff:ffff:ffff:ffff,RU
2001:678:210::,2001:678:210:ffff:ffff:ffff:ffff:ffff,LU
2001:678:214::,2001:678:214:ffff:ffff:ffff:ffff:ffff,HU
2001:678:218::,2001:678:218:ffff:ffff:ffff:ffff:ffff,RO
@@ -894,13 +899,33 @@
2001:678:62c::,2001:678:62c:ffff:ffff:ffff:ffff:ffff,RU
2001:678:630::,2001:678:630:ffff:ffff:ffff:ffff:ffff,RU
2001:678:634::,2001:678:634:ffff:ffff:ffff:ffff:ffff,GB
+2001:678:638::,2001:678:638:ffff:ffff:ffff:ffff:ffff,DE
+2001:678:63c::,2001:678:63c:ffff:ffff:ffff:ffff:ffff,PL
+2001:678:640::,2001:678:640:ffff:ffff:ffff:ffff:ffff,SE
+2001:678:644::,2001:678:644:ffff:ffff:ffff:ffff:ffff,SE
+2001:678:648::,2001:678:649:ffff:ffff:ffff:ffff:ffff,SE
+2001:678:650::,2001:678:650:ffff:ffff:ffff:ffff:ffff,TJ
+2001:678:654::,2001:678:654:ffff:ffff:ffff:ffff:ffff,DE
+2001:678:658::,2001:678:658:ffff:ffff:ffff:ffff:ffff,DE
+2001:678:65c::,2001:678:65c:ffff:ffff:ffff:ffff:ffff,UA
+2001:678:660::,2001:678:660:ffff:ffff:ffff:ffff:ffff,DE
+2001:678:664::,2001:678:664:ffff:ffff:ffff:ffff:ffff,PL
+2001:678:668::,2001:678:668:ffff:ffff:ffff:ffff:ffff,NL
+2001:678:66c::,2001:678:66c:ffff:ffff:ffff:ffff:ffff,DE
+2001:678:670::,2001:678:670:ffff:ffff:ffff:ffff:ffff,RU
+2001:678:674::,2001:678:674:ffff:ffff:ffff:ffff:ffff,RU
+2001:678:678::,2001:678:678:ffff:ffff:ffff:ffff:ffff,CH
+2001:678:67c::,2001:678:67c:ffff:ffff:ffff:ffff:ffff,DK
+2001:678:680::,2001:678:680:ffff:ffff:ffff:ffff:ffff,SE
+2001:678:684::,2001:678:684:ffff:ffff:ffff:ffff:ffff,DE
+2001:678:688::,2001:678:688:ffff:ffff:ffff:ffff:ffff,NL
+2001:678:68c::,2001:678:68c:ffff:ffff:ffff:ffff:ffff,RU
2001:67c::,2001:67c:63:ffff:ffff:ffff:ffff:ffff,SI
2001:67c:64::,2001:67c:64:ffff:ffff:ffff:ffff:ffff,FR
2001:67c:65::,2001:67c:7f:ffff:ffff:ffff:ffff:ffff,SI
2001:67c:80::,2001:67c:80:ffff:ffff:ffff:ffff:ffff,GB
2001:67c:84::,2001:67c:84:ffff:ffff:ffff:ffff:ffff,CZ
2001:67c:88::,2001:67c:88:ffff:ffff:ffff:ffff:ffff,NL
-2001:67c:8c::,2001:67c:8c:ffff:ffff:ffff:ffff:ffff,RU
2001:67c:90::,2001:67c:90:ffff:ffff:ffff:ffff:ffff,GB
2001:67c:94::,2001:67c:94:ffff:ffff:ffff:ffff:ffff,CH
2001:67c:98::,2001:67c:98:ffff:ffff:ffff:ffff:ffff,CH
@@ -1128,7 +1153,6 @@
2001:67c:580::,2001:67c:580:ffff:ffff:ffff:ffff:ffff,GB
2001:67c:584::,2001:67c:584:ffff:ffff:ffff:ffff:ffff,PL
2001:67c:588::,2001:67c:588:ffff:ffff:ffff:ffff:ffff,RO
-2001:67c:58c::,2001:67c:58c:ffff:ffff:ffff:ffff:ffff,SE
2001:67c:590::,2001:67c:590:ffff:ffff:ffff:ffff:ffff,RU
2001:67c:594::,2001:67c:594:ffff:ffff:ffff:ffff:ffff,DE
2001:67c:598::,2001:67c:598:ffff:ffff:ffff:ffff:ffff,NO
@@ -1175,7 +1199,6 @@
2001:67c:640::,2001:67c:640:ffff:ffff:ffff:ffff:ffff,RO
2001:67c:644::,2001:67c:644:ffff:ffff:ffff:ffff:ffff,SE
2001:67c:648::,2001:67c:648:ffff:ffff:ffff:ffff:ffff,NL
-2001:67c:64c::,2001:67c:64c:ffff:ffff:ffff:ffff:ffff,RO
2001:67c:650::,2001:67c:650:ffff:ffff:ffff:ffff:ffff,CZ
2001:67c:654::,2001:67c:654:ffff:ffff:ffff:ffff:ffff,SE
2001:67c:658::,2001:67c:658:ffff:ffff:ffff:ffff:ffff,CZ
@@ -1231,7 +1254,6 @@
2001:67c:75c::,2001:67c:75c:ffff:ffff:ffff:ffff:ffff,DE
2001:67c:760::,2001:67c:760:ffff:ffff:ffff:ffff:ffff,LV
2001:67c:764::,2001:67c:764:ffff:ffff:ffff:ffff:ffff,DE
-2001:67c:768::,2001:67c:768:ffff:ffff:ffff:ffff:ffff,PL
2001:67c:76c::,2001:67c:76c:ffff:ffff:ffff:ffff:ffff,DE
2001:67c:770::,2001:67c:770:ffff:ffff:ffff:ffff:ffff,DE
2001:67c:774::,2001:67c:774:ffff:ffff:ffff:ffff:ffff,NO
@@ -1498,7 +1520,6 @@
2001:67c:179c::,2001:67c:179c:ffff:ffff:ffff:ffff:ffff,SI
2001:67c:17a0::,2001:67c:17a0:ffff:ffff:ffff:ffff:ffff,FI
2001:67c:17a4::,2001:67c:17a4:ffff:ffff:ffff:ffff:ffff,CH
-2001:67c:17a8::,2001:67c:17a8:ffff:ffff:ffff:ffff:ffff,SE
2001:67c:17ac::,2001:67c:17ac:ffff:ffff:ffff:ffff:ffff,SE
2001:67c:17b0::,2001:67c:17b0:ffff:ffff:ffff:ffff:ffff,CH
2001:67c:17b4::,2001:67c:17b4:ffff:ffff:ffff:ffff:ffff,CZ
@@ -1600,6 +1621,7 @@
2001:67c:1954::,2001:67c:1954:ffff:ffff:ffff:ffff:ffff,GB
2001:67c:1958::,2001:67c:1958:ffff:ffff:ffff:ffff:ffff,DK
2001:67c:195c::,2001:67c:195c:ffff:ffff:ffff:ffff:ffff,ES
+2001:67c:1964::,2001:67c:1964:ffff:ffff:ffff:ffff:ffff,NO
2001:67c:1968::,2001:67c:1968:ffff:ffff:ffff:ffff:ffff,DE
2001:67c:196c::,2001:67c:196c:ffff:ffff:ffff:ffff:ffff,DE
2001:67c:1970::,2001:67c:1970:ffff:ffff:ffff:ffff:ffff,RU
@@ -2444,6 +2466,8 @@
2001:7f8:c3::,2001:7f8:c3:ffff:ffff:ffff:ffff:ffff,IE
2001:7f8:c4::,2001:7f8:c4:ffff:ffff:ffff:ffff:ffff,LT
2001:7f8:c5::,2001:7f8:c5:ffff:ffff:ffff:ffff:ffff,IT
+2001:7f8:c6::,2001:7f8:c6:ffff:ffff:ffff:ffff:ffff,ES
+2001:7f8:c7::,2001:7f8:c7:ffff:ffff:ffff:ffff:ffff,PT
2001:7f9:4::,2001:7f9:4:ffff:ffff:ffff:ffff:ffff,AL
2001:7f9:8::,2001:7f9:8:ffff:ffff:ffff:ffff:ffff,AM
2001:7f9:c::,2001:7f9:c:ffff:ffff:ffff:ffff:ffff,PL
@@ -2461,7 +2485,7 @@
2001:7fa:f::,2001:7fa:f:ffff:ffff:ffff:ffff:ffff,ID
2001:7fa:10::,2001:7fa:10:ffff:ffff:ffff:ffff:ffff,CN
2001:7fa:11::,2001:7fa:11:ffff:ffff:ffff:ffff:ffff,AU
-2001:7fc:2::,2001:7fc:2:ffff:ffff:ffff:ffff:ffff,NL
+2001:7fc:4::,2001:7fc:7:ffff:ffff:ffff:ffff:ffff,RU
2001:7fe::,2001:7fe:ffff:ffff:ffff:ffff:ffff:ffff,SE
2001:808::,2001:80f:ffff:ffff:ffff:ffff:ffff:ffff,PL
2001:810::,2001:810:ffff:ffff:ffff:ffff:ffff:ffff,FR
@@ -3782,7 +3806,6 @@
2001:df3:8f00::,2001:df3:8f00:ffff:ffff:ffff:ffff:ffff,ID
2001:df3:9100::,2001:df3:9100:ffff:ffff:ffff:ffff:ffff,HK
2001:df3:9200::,2001:df3:9200:ffff:ffff:ffff:ffff:ffff,VN
-2001:df3:9300::,2001:df3:9300:ffff:ffff:ffff:ffff:ffff,ID
2001:df3:9400::,2001:df3:9400:ffff:ffff:ffff:ffff:ffff,AU
2001:df3:9500::,2001:df3:9500:ffff:ffff:ffff:ffff:ffff,HK
2001:df3:9600::,2001:df3:9600:ffff:ffff:ffff:ffff:ffff,ID
@@ -4003,7 +4026,7 @@
2001:df4:7400::,2001:df4:7400:ffff:ffff:ffff:ffff:ffff,IN
2001:df4:7500::,2001:df4:7500:ffff:ffff:ffff:ffff:ffff,MM
2001:df4:7600::,2001:df4:7600:ffff:ffff:ffff:ffff:ffff,SG
-2001:df4:7700::,2001:df4:7700:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:7700::,2001:df4:7703:ffff:ffff:ffff:ffff:ffff,IN
2001:df4:7900::,2001:df4:7900:ffff:ffff:ffff:ffff:ffff,PK
2001:df4:7a00::,2001:df4:7a00:ffff:ffff:ffff:ffff:ffff,HK
2001:df4:7b00::,2001:df4:7b00:ffff:ffff:ffff:ffff:ffff,IN
@@ -4052,43 +4075,83 @@
2001:df4:a800::,2001:df4:a800:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:a900::,2001:df4:a900:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:aa00::,2001:df4:aa00:ffff:ffff:ffff:ffff:ffff,PK
+2001:df4:ab00::,2001:df4:ab00:ffff:ffff:ffff:ffff:ffff,IN
2001:df4:ac00::,2001:df4:ac00:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:ad00::,2001:df4:ad00:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:ae00::,2001:df4:ae00:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:af00::,2001:df4:af00:ffff:ffff:ffff:ffff:ffff,IN
2001:df4:b000::,2001:df4:b000:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:b100::,2001:df4:b100:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:b200::,2001:df4:b200:ffff:ffff:ffff:ffff:ffff,ID
+2001:df4:b300::,2001:df4:b300:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:b400::,2001:df4:b400:ffff:ffff:ffff:ffff:ffff,JP
+2001:df4:b500::,2001:df4:b500:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:b600::,2001:df4:b600:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:b700::,2001:df4:b700:ffff:ffff:ffff:ffff:ffff,MY
+2001:df4:b900::,2001:df4:b900:ffff:ffff:ffff:ffff:ffff,LA
2001:df4:ba00::,2001:df4:ba01:ffff:ffff:ffff:ffff:ffff,PH
+2001:df4:bb00::,2001:df4:bb00:ffff:ffff:ffff:ffff:ffff,TH
2001:df4:bc00::,2001:df4:bc00:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:bd00::,2001:df4:bd00:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:be00::,2001:df4:be00:ffff:ffff:ffff:ffff:ffff,SG
+2001:df4:bf00::,2001:df4:bf00:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:c000::,2001:df4:c000:ffff:ffff:ffff:ffff:ffff,ID
+2001:df4:c100::,2001:df4:c100:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:c200::,2001:df4:c200:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:c300::,2001:df4:c300:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:c400::,2001:df4:c400:ffff:ffff:ffff:ffff:ffff,VN
+2001:df4:c500::,2001:df4:c500:ffff:ffff:ffff:ffff:ffff,AU
2001:df4:c600::,2001:df4:c600:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:c700::,2001:df4:c700:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:c800::,2001:df4:c800:ffff:ffff:ffff:ffff:ffff,SG
+2001:df4:c900::,2001:df4:c900:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:ca00::,2001:df4:ca00:ffff:ffff:ffff:ffff:ffff,NP
+2001:df4:cb00::,2001:df4:cb00:ffff:ffff:ffff:ffff:ffff,IN
2001:df4:cc00::,2001:df4:cc00:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:cd00::,2001:df4:cd00:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:ce00::,2001:df4:ce00:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:cf00::,2001:df4:cf00:ffff:ffff:ffff:ffff:ffff,CN
2001:df4:d000::,2001:df4:d000:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:d100::,2001:df4:d100:ffff:ffff:ffff:ffff:ffff,IN
2001:df4:d200::,2001:df4:d200:ffff:ffff:ffff:ffff:ffff,VN
+2001:df4:d300::,2001:df4:d300:ffff:ffff:ffff:ffff:ffff,VN
2001:df4:d400::,2001:df4:d400:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:d500::,2001:df4:d500:ffff:ffff:ffff:ffff:ffff,VN
2001:df4:d600::,2001:df4:d600:ffff:ffff:ffff:ffff:ffff,VN
+2001:df4:d700::,2001:df4:d700:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:d800::,2001:df4:d800:ffff:ffff:ffff:ffff:ffff,VN
+2001:df4:d900::,2001:df4:d900:ffff:ffff:ffff:ffff:ffff,IN
2001:df4:da00::,2001:df4:da00:ffff:ffff:ffff:ffff:ffff,VN
+2001:df4:db00::,2001:df4:db00:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:dd00::,2001:df4:dd00:ffff:ffff:ffff:ffff:ffff,SG
2001:df4:de00::,2001:df4:de00:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:df00::,2001:df4:df00:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:e000::,2001:df4:e000:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:e100::,2001:df4:e100:ffff:ffff:ffff:ffff:ffff,AU
2001:df4:e200::,2001:df4:e200:ffff:ffff:ffff:ffff:ffff,SG
+2001:df4:e300::,2001:df4:e300:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:e400::,2001:df4:e400:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:e500::,2001:df4:e500:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:e600::,2001:df4:e600:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:e700::,2001:df4:e700:ffff:ffff:ffff:ffff:ffff,PH
2001:df4:e800::,2001:df4:e800:ffff:ffff:ffff:ffff:ffff,MN
+2001:df4:e900::,2001:df4:e900:ffff:ffff:ffff:ffff:ffff,PH
2001:df4:ea00::,2001:df4:ea00:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:eb00::,2001:df4:eb00:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:ec00::,2001:df4:ec00:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:ed00::,2001:df4:ed00:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:ee00::,2001:df4:ee00:ffff:ffff:ffff:ffff:ffff,HK
+2001:df4:ef00::,2001:df4:ef00:ffff:ffff:ffff:ffff:ffff,BD
2001:df4:f000::,2001:df4:f000:ffff:ffff:ffff:ffff:ffff,IN
+2001:df4:f100::,2001:df4:f100:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:f200::,2001:df4:f200:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:f300::,2001:df4:f300:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:f400::,2001:df4:f400:ffff:ffff:ffff:ffff:ffff,BD
+2001:df4:f500::,2001:df4:f500:ffff:ffff:ffff:ffff:ffff,AU
2001:df4:f600::,2001:df4:f600:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:f700::,2001:df4:f700:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:f800::,2001:df4:f800:ffff:ffff:ffff:ffff:ffff,AU
+2001:df4:f900::,2001:df4:f900:ffff:ffff:ffff:ffff:ffff,ID
2001:df4:fa00::,2001:df4:fa00:ffff:ffff:ffff:ffff:ffff,AU
2001:df4:fc00::,2001:df4:fc00:ffff:ffff:ffff:ffff:ffff,NZ
2001:df4:fe00::,2001:df4:fe00:ffff:ffff:ffff:ffff:ffff,AU
@@ -4216,6 +4279,7 @@
2001:df6:600::,2001:df6:600:ffff:ffff:ffff:ffff:ffff,AU
2001:df6:800::,2001:df6:80f:ffff:ffff:ffff:ffff:ffff,HK
2001:df6:a00::,2001:df6:a00:ffff:ffff:ffff:ffff:ffff,ID
+2001:df6:c00::,2001:df6:c00:ffff:ffff:ffff:ffff:ffff,TH
2001:df6:e00::,2001:df6:e00:ffff:ffff:ffff:ffff:ffff,HK
2001:df6:1000::,2001:df6:1000:ffff:ffff:ffff:ffff:ffff,PH
2001:df6:1200::,2001:df6:1200:ffff:ffff:ffff:ffff:ffff,AU
@@ -4407,7 +4471,6 @@
2001:df7:a800::,2001:df7:a800:ffff:ffff:ffff:ffff:ffff,JP
2001:df7:aa00::,2001:df7:aa00:ffff:ffff:ffff:ffff:ffff,ID
2001:df7:ac00::,2001:df7:ac00:ffff:ffff:ffff:ffff:ffff,AU
-2001:df7:ae00::,2001:df7:ae00:ffff:ffff:ffff:ffff:ffff,NZ
2001:df7:b000::,2001:df7:b000:ffff:ffff:ffff:ffff:ffff,IN
2001:df7:b200::,2001:df7:b200:ffff:ffff:ffff:ffff:ffff,PG
2001:df7:b400::,2001:df7:b400:ffff:ffff:ffff:ffff:ffff,ID
@@ -4449,7 +4512,7 @@
2001:df7:fc00::,2001:df7:fc00:ffff:ffff:ffff:ffff:ffff,SG
2001:df7:fe00::,2001:df7:fe00:ffff:ffff:ffff:ffff:ffff,ID
2001:df8::,2001:df8:ffff:ffff:ffff:ffff:ffff:ffff,CA
-2001:df9::,2001:df9:ffff:ffff:ffff:ffff:ffff:ffff,NP
+2001:df9::,2001:df9:ffff:ffff:ffff:ffff:ffff:ffff,NC
2001:dfa::,2001:dfa:ffff:ffff:ffff:ffff:ffff:ffff,JP
2001:e00::,2001:e01:ffff:ffff:ffff:ffff:ffff:ffff,ID
2001:e08::,2001:e08:ffff:ffff:ffff:ffff:ffff:ffff,CN
@@ -4830,7 +4893,7 @@
2001:1be0::,2001:1be0:ffff:ffff:ffff:ffff:ffff:ffff,GB
2001:1be8::,2001:1be8:ffff:ffff:ffff:ffff:ffff:ffff,NL
2001:1bf0::,2001:1bf7:ffff:ffff:ffff:ffff:ffff:ffff,EE
-2001:1bf8::,2001:1bf8:ffff:ffff:ffff:ffff:ffff:ffff,LV
+2001:1bf8::,2001:1bff:ffff:ffff:ffff:ffff:ffff:ffff,LV
2001:1c00::,2001:1dff:ffff:ffff:ffff:ffff:ffff:ffff,NL
2001:2002::,2001:2002:ffff:ffff:ffff:ffff:ffff:ffff,SE
2001:2003::,2001:2003:ffff:ffff:ffff:ffff:ffff:ffff,FI
@@ -4854,8 +4917,6 @@
2001:2012:1405::,2001:2012:1406:7fff:ffff:ffff:ffff:ffff,DK
2001:2012:1407::,2001:2012:143f:ffff:ffff:ffff:ffff:ffff,DK
2001:2030::1c:6129:fc61:4a70:fc91,2001:2030::1c:6129:fc61:4a70:fc91,US
-2001:2030::1c:ad84:9057:1eab:e2e2,2001:2030::1c:ad84:9057:1eab:e2e2,US
-2001:2030::1d:8878:c57:eeed:2145,2001:2030::1d:8878:c57:eeed:2145,US
2001:2030::1d:b985:4aff:c872:815a,2001:2030::1d:b985:4aff:c872:815a,US
2001:2030::3e:344c:f8ec:e9b9:2c27,2001:2030::3e:344c:f8ec:e9b9:2c27,US
2001:2030::3f:4144:aaf7:902:29fa,2001:2030::3f:4144:aaf7:902:29fa,US
@@ -5073,6 +5134,7 @@
2001:43f8:7c0::,2001:43f8:7c0:ffff:ffff:ffff:ffff:ffff,AO
2001:43f8:7d0::,2001:43f8:7d0:ffff:ffff:ffff:ffff:ffff,NG
2001:43f8:7e0::,2001:43f8:7e0:ffff:ffff:ffff:ffff:ffff,ZA
+2001:43f8:7f0::,2001:43f8:7f0:ffff:ffff:ffff:ffff:ffff,SD
2001:43f8:800::,2001:43f8:83f:ffff:ffff:ffff:ffff:ffff,GH
2001:43f8:900::,2001:43f8:900:ffff:ffff:ffff:ffff:ffff,ZA
2001:43f8:920::,2001:43f8:920:ffff:ffff:ffff:ffff:ffff,ZA
@@ -5470,7 +5532,9 @@
2001:4980::,2001:4980:ffff:ffff:ffff:ffff:ffff:ffff,US
2001:4988::,2001:4988:ffff:ffff:ffff:ffff:ffff:ffff,US
2001:4990::,2001:4990:ffff:ffff:ffff:ffff:ffff:ffff,US
-2001:4998::,2001:4998:ffff:ffff:ffff:ffff:ffff:ffff,US
+2001:4998::,2001:4998:ef6c:ffff:ffff:ffff:ffff:ffff,US
+2001:4998:ef6d::,2001:4998:ef6d:ffff:ffff:ffff:ffff:ffff,CA
+2001:4998:ef6e::,2001:4998:ffff:ffff:ffff:ffff:ffff:ffff,US
2001:49a0::,2001:49a0:ffff:ffff:ffff:ffff:ffff:ffff,US
2001:49a8::,2001:49a8:ffff:ffff:ffff:ffff:ffff:ffff,US
2001:49b0::,2001:49b0:ffff:ffff:ffff:ffff:ffff:ffff,US
@@ -5726,7 +5790,6 @@
2400:3e40::,2400:3e40:ffff:ffff:ffff:ffff:ffff:ffff,AU
2400:3e80::,2400:3e80:ffff:ffff:ffff:ffff:ffff:ffff,JP
2400:3ec0::,2400:3ec0:ffff:ffff:ffff:ffff:ffff:ffff,HK
-2400:3f00::,2400:3f00:ffff:ffff:ffff:ffff:ffff:ffff,SG
2400:3f40::,2400:3f40:ffff:ffff:ffff:ffff:ffff:ffff,CN
2400:3f80::,2400:3f80:ffff:ffff:ffff:ffff:ffff:ffff,JP
2400:3fc0::,2400:3fc0:ffff:ffff:ffff:ffff:ffff:ffff,CN
@@ -6077,7 +6140,6 @@
2400:9980::,2400:9980:ffff:ffff:ffff:ffff:ffff:ffff,IN
2400:99c0::,2400:99c0:ffff:ffff:ffff:ffff:ffff:ffff,AU
2400:9a00::,2400:9a00:ffff:ffff:ffff:ffff:ffff:ffff,CN
-2400:9a40::,2400:9a40:ffff:ffff:ffff:ffff:ffff:ffff,CN
2400:9a80::,2400:9a80:ffff:ffff:ffff:ffff:ffff:ffff,AU
2400:9ac0::,2400:9ac0:ffff:ffff:ffff:ffff:ffff:ffff,PK
2400:9b40::,2400:9b40:ffff:ffff:ffff:ffff:ffff:ffff,VN
@@ -6141,7 +6203,6 @@
2400:abc0::,2400:abc0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2400:ac00::,2400:ac00:ffff:ffff:ffff:ffff:ffff:ffff,JP
2400:ac40::,2400:ac40:ffff:ffff:ffff:ffff:ffff:ffff,MM
-2400:ac80::,2400:ac80:ffff:ffff:ffff:ffff:ffff:ffff,SG
2400:acc0::,2400:acc0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2400:ad00::,2400:ad00:ffff:ffff:ffff:ffff:ffff:ffff,AU
2400:ad40::,2400:ad40:ffff:ffff:ffff:ffff:ffff:ffff,BD
@@ -6629,7 +6690,6 @@
2401:740::,2401:740:ffff:ffff:ffff:ffff:ffff:ffff,PH
2401:780::,2401:780:ffff:ffff:ffff:ffff:ffff:ffff,CN
2401:7c0::,2401:7c0:ffff:ffff:ffff:ffff:ffff:ffff,CN
-2401:800::,2401:800:ffff:ffff:ffff:ffff:ffff:ffff,CN
2401:840::,2401:840:ffff:ffff:ffff:ffff:ffff:ffff,HK
2401:880::,2401:880:ffff:ffff:ffff:ffff:ffff:ffff,MY
2401:8c0::,2401:8c0:ffff:ffff:ffff:ffff:ffff:ffff,AU
@@ -6717,7 +6777,7 @@
2401:1e40::,2401:1e40:ffff:ffff:ffff:ffff:ffff:ffff,BD
2401:1e80::,2401:1e80:ffff:ffff:ffff:ffff:ffff:ffff,AU
2401:1ec0::,2401:1ec0:ffff:ffff:ffff:ffff:ffff:ffff,CN
-2401:1f00::,2401:1f01:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2401:1f00::,2401:1f00:ffff:ffff:ffff:ffff:ffff:ffff,AU
2401:1f40::,2401:1f40:ffff:ffff:ffff:ffff:ffff:ffff,CN
2401:1f80::,2401:1f80:ffff:ffff:ffff:ffff:ffff:ffff,SG
2401:1fc0::,2401:1fc0:ffff:ffff:ffff:ffff:ffff:ffff,ID
@@ -7548,9 +7608,19 @@
2401:fa00:37::,2401:fa00:7f:ffff:ffff:ffff:ffff:ffff,MY
2401:fa00:80::,2401:fa00:f7:ffff:ffff:ffff:ffff:ffff,IN
2401:fa00:f8::,2401:fa00:f8:ffff:ffff:ffff:ffff:ffff,PH
-2401:fa00:f9::,2401:fa00:fe:ffff:ffff:ffff:ffff:ffff,IN
+2401:fa00:f9::,2401:fa00:fb:ffff:ffff:ffff:ffff:ffff,IN
+2401:fa00:fc::,2401:fa00:fd:ffff:ffff:ffff:ffff:ffff,TW
+2401:fa00:fe::,2401:fa00:fe:ffff:ffff:ffff:ffff:ffff,IN
2401:fa00:ff::,2401:fa00:ff:ffff:ffff:ffff:ffff:ffff,AU
-2401:fa00:100::,2401:fa00:ffff:ffff:ffff:ffff:ffff:ffff,IN
+2401:fa00:100::,2401:fa00:400:dbff:ffff:ffff:ffff:ffff,IN
+2401:fa00:400:dc00::,2401:fa00:400:ddff:ffff:ffff:ffff:ffff,TW
+2401:fa00:400:de00::,2401:fa00:400:e1ff:ffff:ffff:ffff:ffff,IN
+2401:fa00:400:e200::,2401:fa00:400:e3ff:ffff:ffff:ffff:ffff,TW
+2401:fa00:400:e400::,2401:fa00:480:8fff:ffff:ffff:ffff:ffff,IN
+2401:fa00:480:9000::,2401:fa00:480:91ff:ffff:ffff:ffff:ffff,TW
+2401:fa00:480:9200::,2401:fa00:480:93ff:ffff:ffff:ffff:ffff,IN
+2401:fa00:480:9400::,2401:fa00:480:95ff:ffff:ffff:ffff:ffff,TW
+2401:fa00:480:9600::,2401:fa00:ffff:ffff:ffff:ffff:ffff:ffff,IN
2401:fa40::,2401:fa40:ffff:ffff:ffff:ffff:ffff:ffff,IN
2401:fa80::,2401:fa80:ffff:ffff:ffff:ffff:ffff:ffff,CN
2401:fac0::,2401:fac0:ffff:ffff:ffff:ffff:ffff:ffff,CN
@@ -8155,7 +8225,6 @@
2402:98c0::,2402:98c0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:9900::,2402:9900:ffff:ffff:ffff:ffff:ffff:ffff,AU
2402:9940::,2402:9940:ffff:ffff:ffff:ffff:ffff:ffff,CN
-2402:9980::,2402:9980:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:99c0::,2402:99c0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:9a00::,2402:9a00:ffff:ffff:ffff:ffff:ffff:ffff,MY
2402:9a40::,2402:9a40:ffff:ffff:ffff:ffff:ffff:ffff,NP
@@ -8226,78 +8295,156 @@
2402:a900::,2402:a900:ffff:ffff:ffff:ffff:ffff:ffff,SG
2402:a940::,2402:a940:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:a980::,2402:a980:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:a9c0::,2402:a9c0:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:aa40::,2402:aa40:ffff:ffff:ffff:ffff:ffff:ffff,ID
2402:aa80::,2402:aa80:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:aac0::,2402:aac0:ffff:ffff:ffff:ffff:ffff:ffff,AU
2402:ab00::,2402:ab00:ffff:ffff:ffff:ffff:ffff:ffff,ID
+2402:ab40::,2402:ab40:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:ab80::,2402:ab80:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:abc0::,2402:abc0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:ac00::,2402:ac00:ffff:ffff:ffff:ffff:ffff:ffff,ID
+2402:ac40::,2402:ac40:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:ac80::,2402:ac80:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:acc0::,2402:acc0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:ad00::,2402:ad00:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:ad40::,2402:ad40:ffff:ffff:ffff:ffff:ffff:ffff,IN
2402:ad80::,2402:ad80:ffff:ffff:ffff:ffff:ffff:ffff,PK
+2402:adc0::,2402:adc0:ffff:ffff:ffff:ffff:ffff:ffff,IN
2402:ae00::,2402:ae00:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:ae40::,2402:ae40:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:ae80::,2402:ae80:ffff:ffff:ffff:ffff:ffff:ffff,WS
+2402:aec0::,2402:aec0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:af00::,2402:af00:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:af40::,2402:af40:ffff:ffff:ffff:ffff:ffff:ffff,JP
2402:af80::,2402:af80:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:afc0::,2402:afc0:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:b040::,2402:b040:ffff:ffff:ffff:ffff:ffff:ffff,IN
2402:b080::,2402:b080:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:b0c0::,2402:b0c0:ffff:ffff:ffff:ffff:ffff:ffff,PK
2402:b100::,2402:b100:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:b140::,2402:b140:ffff:ffff:ffff:ffff:ffff:ffff,AU
2402:b180::,2402:b180:ffff:ffff:ffff:ffff:ffff:ffff,SG
+2402:b1c0::,2402:b1c0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:b200::,2402:b200:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:b240::,2402:b240:ffff:ffff:ffff:ffff:ffff:ffff,ID
2402:b280::,2402:b280:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:b2c0::,2402:b2c0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:b300::,2402:b300:ffff:ffff:ffff:ffff:ffff:ffff,JP
+2402:b340::,2402:b340:ffff:ffff:ffff:ffff:ffff:ffff,KH
2402:b380::,2402:b380:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:b3c0::,2402:b3c0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:b400::,2402:b400:ffff:ffff:ffff:ffff:ffff:ffff,MY
+2402:b440::,2402:b440:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:b480::,2402:b480:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:b4c0::,2402:b4c0:ffff:ffff:ffff:ffff:ffff:ffff,MY
2402:b500::,2402:b500:ffff:ffff:ffff:ffff:ffff:ffff,BD
+2402:b540::,2402:b540:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:b580::,2402:b580:ffff:ffff:ffff:ffff:ffff:ffff,IN
+2402:b5c0::,2402:b5c0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:b600::,2402:b600:ffff:ffff:ffff:ffff:ffff:ffff,TW
+2402:b640::,2402:b640:ffff:ffff:ffff:ffff:ffff:ffff,HK
+2402:b6c0::,2402:b6c0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:b700::,2402:b700:ffff:ffff:ffff:ffff:ffff:ffff,JP
+2402:b740::,2402:b740:ffff:ffff:ffff:ffff:ffff:ffff,TH
2402:b780::,2402:b780:ffff:ffff:ffff:ffff:ffff:ffff,HK
+2402:b7c0::,2402:b7c0:ffff:ffff:ffff:ffff:ffff:ffff,JP
2402:b800::,2402:b801:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:b840::,2402:b840:ffff:ffff:ffff:ffff:ffff:ffff,HK
2402:b880::,2402:b880:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:b8c0::,2402:b8c0:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:b940::,2402:b940:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:b980::,2402:b980:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:b9c0::,2402:b9c0:ffff:ffff:ffff:ffff:ffff:ffff,JP
2402:ba00::,2402:ba00:ffff:ffff:ffff:ffff:ffff:ffff,PH
+2402:ba40::,2402:ba40:ffff:ffff:ffff:ffff:ffff:ffff,PK
2402:ba80::,2402:ba80:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:bac0::,2402:bac0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:bb00::,2402:bb00:ffff:ffff:ffff:ffff:ffff:ffff,JP
+2402:bb40::,2402:bb40:ffff:ffff:ffff:ffff:ffff:ffff,ID
2402:bb80::,2402:bb80:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:bbc0::,2402:bbc0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:bc00::,2402:bc07:ffff:ffff:ffff:ffff:ffff:ffff,JP
+2402:bc40::,2402:bc40:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:bc80::,2402:bc80:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:bcc0::,2402:bcc0:ffff:ffff:ffff:ffff:ffff:ffff,KR
2402:bd00::,2402:bd00:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:bd40::,2402:bd40:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:bd80::,2402:bd81:ffff:ffff:ffff:ffff:ffff:ffff,IN
2402:bd82::,2402:bd83:ffff:ffff:ffff:ffff:ffff:ffff,NZ
+2402:bdc0::,2402:bdc0:ffff:ffff:ffff:ffff:ffff:ffff,HK
2402:be00::,2402:be00:ffff:ffff:ffff:ffff:ffff:ffff,KR
+2402:be40::,2402:be40:ffff:ffff:ffff:ffff:ffff:ffff,IN
2402:be80::,2402:be80:ffff:ffff:ffff:ffff:ffff:ffff,ID
+2402:bec0::,2402:bec0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:bf00::,2402:bf00:ffff:ffff:ffff:ffff:ffff:ffff,MY
+2402:bf40::,2402:bf40:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:bf80::,2402:bf80:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:bfc0::,2402:bfc0:ffff:ffff:ffff:ffff:ffff:ffff,IN
2402:c000::,2402:c000:ffff:ffff:ffff:ffff:ffff:ffff,BD
+2402:c040::,2402:c040:ffff:ffff:ffff:ffff:ffff:ffff,SG
2402:c080::,2402:c081:ffff:ffff:ffff:ffff:ffff:ffff,JP
+2402:c0c0::,2402:c0c0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:c100::,2402:c100:ffff:ffff:ffff:ffff:ffff:ffff,KH
+2402:c140::,2402:c140:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:c180::,2402:c180:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:c1c0::,2402:c1c0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:c200::,2402:c200:ffff:ffff:ffff:ffff:ffff:ffff,JP
+2402:c240::,2402:c240:ffff:ffff:ffff:ffff:ffff:ffff,NZ
2402:c280::,2402:c280:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:c2c0::,2402:c2c0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:c300::,2402:c300:ffff:ffff:ffff:ffff:ffff:ffff,ID
+2402:c340::,2402:c340:ffff:ffff:ffff:ffff:ffff:ffff,TW
2402:c380::,2402:c380:ffff:ffff:ffff:ffff:ffff:ffff,TH
+2402:c3c0::,2402:c3c0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:c400::,2402:c400:ffff:ffff:ffff:ffff:ffff:ffff,JP
+2402:c440::,2402:c440:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:c480::,2402:c480:ffff:ffff:ffff:ffff:ffff:ffff,HK
+2402:c4c0::,2402:c4c0:ffff:ffff:ffff:ffff:ffff:ffff,IN
2402:c500::,2402:c500:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:c540::,2402:c540:ffff:ffff:ffff:ffff:ffff:ffff,TW
2402:c580::,2402:c580:ffff:ffff:ffff:ffff:ffff:ffff,US
+2402:c5c0::,2402:c5c0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:c600::,2402:c600:ffff:ffff:ffff:ffff:ffff:ffff,JP
+2402:c640::,2402:c640:ffff:ffff:ffff:ffff:ffff:ffff,AU
2402:c680::,2402:c680:ffff:ffff:ffff:ffff:ffff:ffff,HK
+2402:c6c0::,2402:c6c0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:c700::,2402:c700:ffff:ffff:ffff:ffff:ffff:ffff,VN
+2402:c740::,2402:c740:ffff:ffff:ffff:ffff:ffff:ffff,ID
2402:c780::,2402:c780:ffff:ffff:ffff:ffff:ffff:ffff,MY
+2402:c7c0::,2402:c7c0:ffff:ffff:ffff:ffff:ffff:ffff,AU
2402:c800::,2402:c800:ffff:ffff:ffff:ffff:ffff:ffff,JP
+2402:c840::,2402:c840:ffff:ffff:ffff:ffff:ffff:ffff,JP
2402:c880::,2402:c880:ffff:ffff:ffff:ffff:ffff:ffff,HK
+2402:c8c0::,2402:c8c0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:c900::,2402:c900:ffff:ffff:ffff:ffff:ffff:ffff,MN
+2402:c940::,2402:c940:ffff:ffff:ffff:ffff:ffff:ffff,HK
2402:c980::,2402:c980:ffff:ffff:ffff:ffff:ffff:ffff,TH
+2402:c9c0::,2402:c9c0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:ca00::,2402:ca00:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:ca40::,2402:ca40:ffff:ffff:ffff:ffff:ffff:ffff,BD
+2402:cac0::,2402:cac0:ffff:ffff:ffff:ffff:ffff:ffff,HK
2402:cb00::,2402:cb01:ffff:ffff:ffff:ffff:ffff:ffff,LK
+2402:cb40::,2402:cb40:ffff:ffff:ffff:ffff:ffff:ffff,AU
+2402:cbc0::,2402:cbc0:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:cc00::,2402:cc00:ffff:ffff:ffff:ffff:ffff:ffff,NZ
+2402:cc40::,2402:cc40:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:cc80::,2402:cc80:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:ccc0::,2402:ccc0:ffff:ffff:ffff:ffff:ffff:ffff,IN
2402:cd00::,2402:cd00:ffff:ffff:ffff:ffff:ffff:ffff,IN
+2402:cd40::,2402:cd40:ffff:ffff:ffff:ffff:ffff:ffff,KH
2402:cd80::,2402:cd80:ffff:ffff:ffff:ffff:ffff:ffff,ID
+2402:cdc0::,2402:cdc0:ffff:ffff:ffff:ffff:ffff:ffff,BD
2402:ce00::,2402:ce01:ffff:ffff:ffff:ffff:ffff:ffff,SG
+2402:ce40::,2402:ce40:ffff:ffff:ffff:ffff:ffff:ffff,US
2402:ce80::,2402:ce80:ffff:ffff:ffff:ffff:ffff:ffff,IN
+2402:cec0::,2402:cec0:ffff:ffff:ffff:ffff:ffff:ffff,TH
2402:cf00::,2402:cf00:ffff:ffff:ffff:ffff:ffff:ffff,CN
+2402:cf40::,2402:cf40:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:cf80::,2402:cf80:ffff:ffff:ffff:ffff:ffff:ffff,SG
+2402:cfc0::,2402:cfc0:ffff:ffff:ffff:ffff:ffff:ffff,IN
2402:d000::,2402:d000:ffff:ffff:ffff:ffff:ffff:ffff,LK
+2402:d040::,2402:d040:ffff:ffff:ffff:ffff:ffff:ffff,CN
2402:d080::,2402:d080:ffff:ffff:ffff:ffff:ffff:ffff,TL
2402:d100::,2402:d100:ffff:ffff:ffff:ffff:ffff:ffff,AU
2402:d180::,2402:d180:ffff:ffff:ffff:ffff:ffff:ffff,AU
@@ -8467,7 +8614,6 @@
2403:2300::,2403:2300:ffff:ffff:ffff:ffff:ffff:ffff,TH
2403:2380::,2403:2380:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:2400::,2403:2400:ffff:ffff:ffff:ffff:ffff:ffff,HK
-2403:2480::,2403:2480:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:2500::,2403:2500:ffff:ffff:ffff:ffff:ffff:ffff,IN
2403:2580::,2403:2580:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:2600::,2403:2600:ffff:ffff:ffff:ffff:ffff:ffff,ID
@@ -8500,8 +8646,10 @@
2403:2c80::,2403:2c80::ffff:ffff:ffff:ffff:ffff,CN
2403:2c80:1::,2403:2c80:1:ffff:ffff:ffff:ffff:ffff,JP
2403:2c80:2::,2403:2c80:2:ffff:ffff:ffff:ffff:ffff,SG
-2403:2c80:3::,2403:2c80:7f:ffff:ffff:ffff:ffff:ffff,CN
-2403:2c80:80::,2403:2c80:ffff:ffff:ffff:ffff:ffff:ffff,HK
+2403:2c80:3::,2403:2c80:3:ffff:ffff:ffff:ffff:ffff,CN
+2403:2c80:4::,2403:2c80:7:ffff:ffff:ffff:ffff:ffff,HK
+2403:2c80:8::,2403:2c80:7f:ffff:ffff:ffff:ffff:ffff,CN
+2403:2c80:80::,2403:2c81:ffff:ffff:ffff:ffff:ffff:ffff,HK
2403:2d00::,2403:2d00:ffff:ffff:ffff:ffff:ffff:ffff,JP
2403:2d80::,2403:2d80:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:2e00::,2403:2e00:ffff:ffff:ffff:ffff:ffff:ffff,ID
@@ -8578,7 +8726,6 @@
2403:5300::,2403:5300:ffff:ffff:ffff:ffff:ffff:ffff,IN
2403:5380::,2403:5380:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:5400::,2403:5400:ffff:ffff:ffff:ffff:ffff:ffff,TH
-2403:5480::,2403:5480:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:5500::,2403:5500:ffff:ffff:ffff:ffff:ffff:ffff,HK
2403:5580::,2403:5580:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:5600::,2403:5600:ffff:ffff:ffff:ffff:ffff:ffff,HK
@@ -8896,12 +9043,10 @@
2403:f680::,2403:f680:ffff:ffff:ffff:ffff:ffff:ffff,IN
2403:f700::,2403:f700:ffff:ffff:ffff:ffff:ffff:ffff,NZ
2403:f780::,2403:f780:ffff:ffff:ffff:ffff:ffff:ffff,BD
-2403:f800::,2403:f800:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:f880::,2403:f880:ffff:ffff:ffff:ffff:ffff:ffff,JP
2403:f900::,2403:f900:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:f980::,2403:f980:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:fa00::,2403:fa00:ffff:ffff:ffff:ffff:ffff:ffff,HK
-2403:fa80::,2403:fa80:ffff:ffff:ffff:ffff:ffff:ffff,SG
2403:fb00::,2403:fb00:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:fb80::,2403:fb80:ffff:ffff:ffff:ffff:ffff:ffff,CN
2403:fc00::,2403:fc00:ffff:ffff:ffff:ffff:ffff:ffff,AU
@@ -10006,7 +10151,11 @@
2406:1e80::,2406:1e80:ffff:ffff:ffff:ffff:ffff:ffff,CN
2406:1f00::,2406:1f00:ffff:ffff:ffff:ffff:ffff:ffff,AU
2406:1f80::,2406:1f80:ffff:ffff:ffff:ffff:ffff:ffff,CN
-2406:2000::,2406:2000:ffff:ffff:ffff:ffff:ffff:ffff,TW
+2406:2000::,2406:2000:ef69:ffff:ffff:ffff:ffff:ffff,TW
+2406:2000:ef6a::,2406:2000:ef6a:ffff:ffff:ffff:ffff:ffff,JP
+2406:2000:ef6b::,2406:2000:efb2:ffff:ffff:ffff:ffff:ffff,TW
+2406:2000:efb3::,2406:2000:efb3:ffff:ffff:ffff:ffff:ffff,SG
+2406:2000:efb4::,2406:2000:ffff:ffff:ffff:ffff:ffff:ffff,TW
2406:2080::,2406:2080:ffff:ffff:ffff:ffff:ffff:ffff,CN
2406:2100::,2406:2100:ffff:ffff:ffff:ffff:ffff:ffff,IN
2406:2180::,2406:2180:ffff:ffff:ffff:ffff:ffff:ffff,IN
@@ -11159,6 +11308,7 @@
2600:a000::,2600:a00f:ffff:ffff:ffff:ffff:ffff:ffff,US
2600:a400::,2600:a40f:ffff:ffff:ffff:ffff:ffff:ffff,US
2600:b000::,2600:b00f:ffff:ffff:ffff:ffff:ffff:ffff,US
+2600:b400::,2600:b40f:ffff:ffff:ffff:ffff:ffff:ffff,US
2600:e000::,2600:e00f:ffff:ffff:ffff:ffff:ffff:ffff,CA
2601::,2601:1c0:ca80:4fff:ffff:ffff:ffff:ffff,US
2601:1c0:ca80:5000::,2601:1c0:ca80:57ff:ffff:ffff:ffff:ffff,CN
@@ -11177,6 +11327,14 @@
2602:233::,2602:233:ffff:ffff:ffff:ffff:ffff:ffff,US
2602:240::,2602:25f:ffff:ffff:ffff:ffff:ffff:ffff,US
2602:300::,2602:3ff:ffff:ffff:ffff:ffff:ffff:ffff,US
+2602:fe6d::,2602:fe6d:fff:ffff:ffff:ffff:ffff:ffff,US
+2602:fe6e::,2602:fe6e:fff:ffff:ffff:ffff:ffff:ffff,US
+2602:fe6f::,2602:fe6f:fff:ffff:ffff:ffff:ffff:ffff,US
+2602:fe70::,2602:fe70:fff:ffff:ffff:ffff:ffff:ffff,US
+2602:fe71::,2602:fe71:fff:ffff:ffff:ffff:ffff:ffff,US
+2602:fe72::,2602:fe72:fff:ffff:ffff:ffff:ffff:ffff,US
+2602:fe73::,2602:fe73:fff:ffff:ffff:ffff:ffff:ffff,US
+2602:fe74::,2602:fe74:fff:ffff:ffff:ffff:ffff:ffff,CA
2602:fe75::,2602:fe75:fff:ffff:ffff:ffff:ffff:ffff,US
2602:fe76::,2602:fe76:fff:ffff:ffff:ffff:ffff:ffff,US
2602:fe77::,2602:fe77:fff:ffff:ffff:ffff:ffff:ffff,CA
@@ -11482,7 +11640,7 @@
2602:ffbe::,2602:ffbe:fff:ffff:ffff:ffff:ffff:ffff,CA
2602:ffbf::,2602:ffbf:fff:ffff:ffff:ffff:ffff:ffff,US
2602:ffc0::,2602:ffc0:fff:ffff:ffff:ffff:ffff:ffff,US
-2602:ffc1::,2602:ffc1:fff:ffff:ffff:ffff:ffff:ffff,CA
+2602:ffc1::,2602:ffc1:ffff:ffff:ffff:ffff:ffff:ffff,CA
2602:ffc2::,2602:ffc2:fff:ffff:ffff:ffff:ffff:ffff,US
2602:ffc3::,2602:ffc3:fff:ffff:ffff:ffff:ffff:ffff,US
2602:ffc4::,2602:ffc4:fff:ffff:ffff:ffff:ffff:ffff,US
@@ -11537,7 +11695,15 @@
2602:fffc::,2602:fffc:ffff:ffff:ffff:ffff:ffff:ffff,US
2602:fffd::,2602:fffd:fff:ffff:ffff:ffff:ffff:ffff,CA
2602:ffff::,2602:ffff:fff:ffff:ffff:ffff:ffff:ffff,US
-2603::,2603:100f:ffff:ffff:ffff:ffff:ffff:ffff,US
+2603::,2603:1006::ffff:ffff:ffff:ffff:ffff,US
+2603:1006:1::,2603:1006:1:7ff:ffff:ffff:ffff:ffff,ZA
+2603:1006:1:800::,2603:1006:1:ffff:ffff:ffff:ffff:ffff,US
+2603:1006:2::,2603:1006:2:7ff:ffff:ffff:ffff:ffff,ZA
+2603:1006:2:800::,2603:1006:ffff:ffff:ffff:ffff:ffff:ffff,US
+2603:1007::,2603:1007::ffff:ffff:ffff:ffff:ffff,ZA
+2603:1007:1::,2603:1007:ff:ffff:ffff:ffff:ffff:ffff,US
+2603:1007:100::,2603:1007:101:ffff:ffff:ffff:ffff:ffff,ZA
+2603:1007:102::,2603:100f:ffff:ffff:ffff:ffff:ffff:ffff,US
2603:1010::,2603:1010:2ff:ffff:ffff:ffff:ffff:ffff,AU
2603:1010:300::,2603:1010:3ff:ffff:ffff:ffff:ffff:ffff,US
2603:1010:400::,2603:1010:4ff:ffff:ffff:ffff:ffff:ffff,AU
@@ -11648,9 +11814,10 @@
2603:1029:400::,2603:1029:4ff:ffff:ffff:ffff:ffff:ffff,IE
2603:1029:500::,2603:1029:5ff:ffff:ffff:ffff:ffff:ffff,US
2603:1029:600::,2603:1029:605:ffff:ffff:ffff:ffff:ffff,NL
-2603:1029:606::,2603:1029:7ff:ffff:ffff:ffff:ffff:ffff,US
-2603:1029:800::,2603:1029:801:ffff:ffff:ffff:ffff:ffff,GB
-2603:1029:802::,2603:1029:aff:ffff:ffff:ffff:ffff:ffff,US
+2603:1029:606::,2603:1029:606:ffff:ffff:ffff:ffff:ffff,SE
+2603:1029:607::,2603:1029:7ff:ffff:ffff:ffff:ffff:ffff,US
+2603:1029:800::,2603:1029:802:ffff:ffff:ffff:ffff:ffff,GB
+2603:1029:803::,2603:1029:aff:ffff:ffff:ffff:ffff:ffff,US
2603:1029:b00::,2603:1029:cff:ffff:ffff:ffff:ffff:ffff,GB
2603:1029:d00::,2603:1030:207:ffff:ffff:ffff:ffff:ffff,US
2603:1030:208::,2603:1030:20b:ffff:ffff:ffff:ffff:ffff,CA
@@ -11775,11 +11942,12 @@
2603:1047:300::,2603:1047:4ff:ffff:ffff:ffff:ffff:ffff,JP
2603:1047:500::,2603:1047:5ff:ffff:ffff:ffff:ffff:ffff,KR
2603:1047:600::,2603:1047:7ff:ffff:ffff:ffff:ffff:ffff,IN
-2603:1047:800::,2603:1048:ffff:ffff:ffff:ffff:ffff:ffff,US
-2603:1049::,2603:1049:2:ffff:ffff:ffff:ffff:ffff,SG
-2603:1049:3::,2603:1049:1ff:ffff:ffff:ffff:ffff:ffff,US
-2603:1049:200::,2603:1049:201:ffff:ffff:ffff:ffff:ffff,HK
-2603:1049:202::,2603:1049:2ff:ffff:ffff:ffff:ffff:ffff,US
+2603:1047:800::,2603:1047:8ff:ffff:ffff:ffff:ffff:ffff,MY
+2603:1047:900::,2603:1048:ffff:ffff:ffff:ffff:ffff:ffff,US
+2603:1049::,2603:1049:3:ffff:ffff:ffff:ffff:ffff,SG
+2603:1049:4::,2603:1049:1ff:ffff:ffff:ffff:ffff:ffff,US
+2603:1049:200::,2603:1049:202:ffff:ffff:ffff:ffff:ffff,HK
+2603:1049:203::,2603:1049:2ff:ffff:ffff:ffff:ffff:ffff,US
2603:1049:300::,2603:1049:300:ffff:ffff:ffff:ffff:ffff,KR
2603:1049:301::,2603:1049:3ff:ffff:ffff:ffff:ffff:ffff,US
2603:1049:400::,2603:1049:4ff:ffff:ffff:ffff:ffff:ffff,JP
@@ -11799,13 +11967,21 @@
2603:1050:210::,2603:1050:21f:ffff:ffff:ffff:ffff:ffff,CL
2603:1050:220::,2603:1050:2ff:ffff:ffff:ffff:ffff:ffff,US
2603:1050:300::,2603:1050:3ff:ffff:ffff:ffff:ffff:ffff,CL
-2603:1050:400::,2603:1056:1ff:ffff:ffff:ffff:ffff:ffff,US
+2603:1050:400::,2603:1055:ffff:ffff:ffff:ffff:ffff:ffff,US
+2603:1056::,2603:1056:2:3f:ffff:ffff:ffff:ffff,BR
+2603:1056:2:40::,2603:1056:1f:ffff:ffff:ffff:ffff:ffff,US
+2603:1056:20::,2603:1056:20:ffff:ffff:ffff:ffff:ffff,BR
+2603:1056:21::,2603:1056:27:ffff:ffff:ffff:ffff:ffff,US
+2603:1056:28::,2603:1056:28:ffff:ffff:ffff:ffff:ffff,BR
+2603:1056:29::,2603:1056:1ff:ffff:ffff:ffff:ffff:ffff,US
2603:1056:200::,2603:1056:2ff:ffff:ffff:ffff:ffff:ffff,BR
2603:1056:300::,2603:1056:3ff:ffff:ffff:ffff:ffff:ffff,US
2603:1056:400::,2603:1056:4ff:ffff:ffff:ffff:ffff:ffff,BR
2603:1056:500::,2603:1056:5ff:ffff:ffff:ffff:ffff:ffff,US
2603:1056:600::,2603:1056:6ff:ffff:ffff:ffff:ffff:ffff,CL
-2603:1056:700::,2603:1056:c01:ffff:ffff:ffff:ffff:ffff,US
+2603:1056:700::,2603:1056:c00:ffff:ffff:ffff:ffff:ffff,US
+2603:1056:c01::,2603:1056:c01:fff:ffff:ffff:ffff:ffff,BR
+2603:1056:c01:1000::,2603:1056:c01:ffff:ffff:ffff:ffff:ffff,US
2603:1056:c02::,2603:1056:c03:ffff:ffff:ffff:ffff:ffff,BR
2603:1056:c04::,2603:1056:c04:ffff:ffff:ffff:ffff:ffff,CL
2603:1056:c05::,2603:1057:ff:ffff:ffff:ffff:ffff:ffff,US
@@ -12293,7 +12469,7 @@
2604:7540::,2604:7540:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:7580::,2604:7580:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:75c0::,2604:75c0:ffff:ffff:ffff:ffff:ffff:ffff,CA
-2604:7600::,2604:7600:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:7600::,2604:760f:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:7640::,2604:7640:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:7680::,2604:7680:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:76c0::,2604:76c0:ffff:ffff:ffff:ffff:ffff:ffff,US
@@ -12566,32 +12742,182 @@
2604:bb00::,2604:bb00:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:bb40::,2604:bb40:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:bb80::,2604:bb80:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:bbc0::,2604:bbc0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:bc00::,2604:bc00:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:bc40::,2604:bc40:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:bc80::,2604:bc80:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:bcc0::,2604:bcc0:ffff:ffff:ffff:ffff:ffff:ffff,LC
2604:bd00::,2604:bd00:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:bd40::,2604:bd40:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:bdc0::,2604:bdc0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:be00::,2604:be00:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:be40::,2604:be40:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:be80::,2604:be80:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:bec0::,2604:bec0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:bf00::,2604:bf00:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:bf40::,2604:bf40:ffff:ffff:ffff:ffff:ffff:ffff,CA
2604:bf80::,2604:bf80:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:bfc0::,2604:bfc0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c000::,2604:c000:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c040::,2604:c040:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c080::,2604:c080:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c0c0::,2604:c0c0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c100::,2604:c100:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c140::,2604:c140:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c180::,2604:c180:ffff:ffff:ffff:ffff:ffff:ffff,VI
+2604:c1c0::,2604:c1c0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c200::,2604:c200:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c240::,2604:c240:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c2c0::,2604:c2c0:ffff:ffff:ffff:ffff:ffff:ffff,CA
2604:c300::,2604:c300:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c340::,2604:c340:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c380::,2604:c380:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c3c0::,2604:c3c0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c400::,2604:c400:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c440::,2604:c440:ffff:ffff:ffff:ffff:ffff:ffff,CA
+2604:c4c0::,2604:c4c0:ffff:ffff:ffff:ffff:ffff:ffff,CA
2604:c500::,2604:c500:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c540::,2604:c540:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c580::,2604:c580:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c5c0::,2604:c5c0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c600::,2604:c600:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c640::,2604:c640:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c680::,2604:c680:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c6c0::,2604:c6c0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c700::,2604:c700:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c740::,2604:c740:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c780::,2604:c780:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c7c0::,2604:c7c0:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c800::,2604:c800:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:c840::,2604:c840:ffff:ffff:ffff:ffff:ffff:ffff,CA
2604:c880::,2604:c880:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c900::,2604:c900:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:c980::,2604:c980:ffff:ffff:ffff:ffff:ffff:ffff,US
-2604:ca00::,2604:ca00:ffff:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00::,2604:ca00:100:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:101::,2604:ca00:101:ffff:ffff:ffff:ffff:ffff,CA
+2604:ca00:102::,2604:ca00:102:ffff:ffff:ffff:ffff:ffff,MX
+2604:ca00:103::,2604:ca00:103:ffff:ffff:ffff:ffff:ffff,PR
+2604:ca00:104::,2604:ca00:104:ffff:ffff:ffff:ffff:ffff,VI
+2604:ca00:105::,2604:ca00:105:ffff:ffff:ffff:ffff:ffff,UM
+2604:ca00:106::,2604:ca00:110:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:111::,2604:ca00:111:ffff:ffff:ffff:ffff:ffff,CA
+2604:ca00:112::,2604:ca00:112:ffff:ffff:ffff:ffff:ffff,MX
+2604:ca00:113::,2604:ca00:113:ffff:ffff:ffff:ffff:ffff,PR
+2604:ca00:114::,2604:ca00:114:ffff:ffff:ffff:ffff:ffff,VI
+2604:ca00:115::,2604:ca00:115:ffff:ffff:ffff:ffff:ffff,UM
+2604:ca00:116::,2604:ca00:120:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:121::,2604:ca00:121:ffff:ffff:ffff:ffff:ffff,CA
+2604:ca00:122::,2604:ca00:122:ffff:ffff:ffff:ffff:ffff,MX
+2604:ca00:123::,2604:ca00:123:ffff:ffff:ffff:ffff:ffff,PR
+2604:ca00:124::,2604:ca00:124:ffff:ffff:ffff:ffff:ffff,VI
+2604:ca00:125::,2604:ca00:125:ffff:ffff:ffff:ffff:ffff,UM
+2604:ca00:126::,2604:ca00:130:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:131::,2604:ca00:131:ffff:ffff:ffff:ffff:ffff,CA
+2604:ca00:132::,2604:ca00:132:ffff:ffff:ffff:ffff:ffff,MX
+2604:ca00:133::,2604:ca00:133:ffff:ffff:ffff:ffff:ffff,PR
+2604:ca00:134::,2604:ca00:134:ffff:ffff:ffff:ffff:ffff,VI
+2604:ca00:135::,2604:ca00:135:ffff:ffff:ffff:ffff:ffff,UM
+2604:ca00:136::,2604:ca00:140:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:141::,2604:ca00:141:ffff:ffff:ffff:ffff:ffff,CA
+2604:ca00:142::,2604:ca00:142:ffff:ffff:ffff:ffff:ffff,MX
+2604:ca00:143::,2604:ca00:143:ffff:ffff:ffff:ffff:ffff,PR
+2604:ca00:144::,2604:ca00:144:ffff:ffff:ffff:ffff:ffff,VI
+2604:ca00:145::,2604:ca00:145:ffff:ffff:ffff:ffff:ffff,UM
+2604:ca00:146::,2604:ca00:150:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:151::,2604:ca00:151:ffff:ffff:ffff:ffff:ffff,CA
+2604:ca00:152::,2604:ca00:152:ffff:ffff:ffff:ffff:ffff,MX
+2604:ca00:153::,2604:ca00:153:ffff:ffff:ffff:ffff:ffff,PR
+2604:ca00:154::,2604:ca00:154:ffff:ffff:ffff:ffff:ffff,VI
+2604:ca00:155::,2604:ca00:155:ffff:ffff:ffff:ffff:ffff,UM
+2604:ca00:156::,2604:ca00:160:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:161::,2604:ca00:161:ffff:ffff:ffff:ffff:ffff,CA
+2604:ca00:162::,2604:ca00:162:ffff:ffff:ffff:ffff:ffff,MX
+2604:ca00:163::,2604:ca00:163:ffff:ffff:ffff:ffff:ffff,PR
+2604:ca00:164::,2604:ca00:164:ffff:ffff:ffff:ffff:ffff,VI
+2604:ca00:165::,2604:ca00:165:ffff:ffff:ffff:ffff:ffff,UM
+2604:ca00:166::,2604:ca00:170:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:171::,2604:ca00:171:ffff:ffff:ffff:ffff:ffff,CA
+2604:ca00:172::,2604:ca00:172:ffff:ffff:ffff:ffff:ffff,MX
+2604:ca00:173::,2604:ca00:173:ffff:ffff:ffff:ffff:ffff,PR
+2604:ca00:174::,2604:ca00:174:ffff:ffff:ffff:ffff:ffff,VI
+2604:ca00:175::,2604:ca00:175:ffff:ffff:ffff:ffff:ffff,UM
+2604:ca00:176::,2604:ca00:17f:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:180::,2604:ca00:180:7fff:ffff:ffff:ffff:ffff,DE
+2604:ca00:180:8000::,2604:ca00:180:ffff:ffff:ffff:ffff:ffff,FR
+2604:ca00:181::,2604:ca00:181:7fff:ffff:ffff:ffff:ffff,GB
+2604:ca00:181:8000::,2604:ca00:181:ffff:ffff:ffff:ffff:ffff,IT
+2604:ca00:182::,2604:ca00:182:7fff:ffff:ffff:ffff:ffff,ES
+2604:ca00:182:8000::,2604:ca00:182:ffff:ffff:ffff:ffff:ffff,NL
+2604:ca00:183::,2604:ca00:183:7fff:ffff:ffff:ffff:ffff,BE
+2604:ca00:183:8000::,2604:ca00:183:ffff:ffff:ffff:ffff:ffff,GR
+2604:ca00:184::,2604:ca00:184:7fff:ffff:ffff:ffff:ffff,PT
+2604:ca00:184:8000::,2604:ca00:184:ffff:ffff:ffff:ffff:ffff,SE
+2604:ca00:185::,2604:ca00:185:7fff:ffff:ffff:ffff:ffff,AT
+2604:ca00:185:8000::,2604:ca00:185:ffff:ffff:ffff:ffff:ffff,CH
+2604:ca00:186::,2604:ca00:186:7fff:ffff:ffff:ffff:ffff,DK
+2604:ca00:186:8000::,2604:ca00:186:ffff:ffff:ffff:ffff:ffff,FI
+2604:ca00:187::,2604:ca00:187:7fff:ffff:ffff:ffff:ffff,NO
+2604:ca00:187:8000::,2604:ca00:187:ffff:ffff:ffff:ffff:ffff,IE
+2604:ca00:188::,2604:ca00:188:7fff:ffff:ffff:ffff:ffff,IS
+2604:ca00:188:8000::,2604:ca00:188:ffff:ffff:ffff:ffff:ffff,FO
+2604:ca00:189::,2604:ca00:18f:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:190::,2604:ca00:190:7fff:ffff:ffff:ffff:ffff,DE
+2604:ca00:190:8000::,2604:ca00:190:ffff:ffff:ffff:ffff:ffff,FR
+2604:ca00:191::,2604:ca00:191:7fff:ffff:ffff:ffff:ffff,GB
+2604:ca00:191:8000::,2604:ca00:191:ffff:ffff:ffff:ffff:ffff,IT
+2604:ca00:192::,2604:ca00:192:7fff:ffff:ffff:ffff:ffff,ES
+2604:ca00:192:8000::,2604:ca00:192:ffff:ffff:ffff:ffff:ffff,NL
+2604:ca00:193::,2604:ca00:193:7fff:ffff:ffff:ffff:ffff,BE
+2604:ca00:193:8000::,2604:ca00:193:ffff:ffff:ffff:ffff:ffff,GR
+2604:ca00:194::,2604:ca00:194:7fff:ffff:ffff:ffff:ffff,PT
+2604:ca00:194:8000::,2604:ca00:194:ffff:ffff:ffff:ffff:ffff,SE
+2604:ca00:195::,2604:ca00:195:7fff:ffff:ffff:ffff:ffff,AT
+2604:ca00:195:8000::,2604:ca00:195:ffff:ffff:ffff:ffff:ffff,CH
+2604:ca00:196::,2604:ca00:196:7fff:ffff:ffff:ffff:ffff,DK
+2604:ca00:196:8000::,2604:ca00:196:ffff:ffff:ffff:ffff:ffff,FI
+2604:ca00:197::,2604:ca00:197:7fff:ffff:ffff:ffff:ffff,NO
+2604:ca00:197:8000::,2604:ca00:197:ffff:ffff:ffff:ffff:ffff,IE
+2604:ca00:198::,2604:ca00:198:7fff:ffff:ffff:ffff:ffff,IS
+2604:ca00:198:8000::,2604:ca00:198:ffff:ffff:ffff:ffff:ffff,FO
+2604:ca00:199::,2604:ca00:19f:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:1a0::,2604:ca00:1a0:7fff:ffff:ffff:ffff:ffff,AT
+2604:ca00:1a0:8000::,2604:ca00:1a0:ffff:ffff:ffff:ffff:ffff,BE
+2604:ca00:1a1::,2604:ca00:1a1:7fff:ffff:ffff:ffff:ffff,CH
+2604:ca00:1a1:8000::,2604:ca00:1a1:ffff:ffff:ffff:ffff:ffff,DE
+2604:ca00:1a2::,2604:ca00:1a2:7fff:ffff:ffff:ffff:ffff,DK
+2604:ca00:1a2:8000::,2604:ca00:1a2:ffff:ffff:ffff:ffff:ffff,ES
+2604:ca00:1a3::,2604:ca00:1a3:7fff:ffff:ffff:ffff:ffff,FI
+2604:ca00:1a3:8000::,2604:ca00:1a3:ffff:ffff:ffff:ffff:ffff,FO
+2604:ca00:1a4::,2604:ca00:1a4:7fff:ffff:ffff:ffff:ffff,FR
+2604:ca00:1a4:8000::,2604:ca00:1a4:ffff:ffff:ffff:ffff:ffff,GB
+2604:ca00:1a5::,2604:ca00:1a5:7fff:ffff:ffff:ffff:ffff,GR
+2604:ca00:1a5:8000::,2604:ca00:1a5:ffff:ffff:ffff:ffff:ffff,IE
+2604:ca00:1a6::,2604:ca00:1a6:7fff:ffff:ffff:ffff:ffff,IS
+2604:ca00:1a6:8000::,2604:ca00:1a6:ffff:ffff:ffff:ffff:ffff,IT
+2604:ca00:1a7::,2604:ca00:1a7:7fff:ffff:ffff:ffff:ffff,NL
+2604:ca00:1a7:8000::,2604:ca00:1a7:ffff:ffff:ffff:ffff:ffff,NO
+2604:ca00:1a8::,2604:ca00:1a8:7fff:ffff:ffff:ffff:ffff,PT
+2604:ca00:1a8:8000::,2604:ca00:1a8:ffff:ffff:ffff:ffff:ffff,SE
+2604:ca00:1a9::,2604:ca00:1af:ffff:ffff:ffff:ffff:ffff,US
+2604:ca00:1b0::,2604:ca00:1b0:7fff:ffff:ffff:ffff:ffff,AT
+2604:ca00:1b0:8000::,2604:ca00:1b0:ffff:ffff:ffff:ffff:ffff,BE
+2604:ca00:1b1::,2604:ca00:1b1:7fff:ffff:ffff:ffff:ffff,CH
+2604:ca00:1b1:8000::,2604:ca00:1b1:ffff:ffff:ffff:ffff:ffff,DE
+2604:ca00:1b2::,2604:ca00:1b2:7fff:ffff:ffff:ffff:ffff,DK
+2604:ca00:1b2:8000::,2604:ca00:1b2:ffff:ffff:ffff:ffff:ffff,ES
+2604:ca00:1b3::,2604:ca00:1b3:7fff:ffff:ffff:ffff:ffff,FI
+2604:ca00:1b3:8000::,2604:ca00:1b3:ffff:ffff:ffff:ffff:ffff,FO
+2604:ca00:1b4::,2604:ca00:1b4:7fff:ffff:ffff:ffff:ffff,FR
+2604:ca00:1b4:8000::,2604:ca00:1b4:ffff:ffff:ffff:ffff:ffff,GB
+2604:ca00:1b5::,2604:ca00:1b5:7fff:ffff:ffff:ffff:ffff,GR
+2604:ca00:1b5:8000::,2604:ca00:1b5:ffff:ffff:ffff:ffff:ffff,IE
+2604:ca00:1b6::,2604:ca00:1b6:7fff:ffff:ffff:ffff:ffff,IS
+2604:ca00:1b6:8000::,2604:ca00:1b6:ffff:ffff:ffff:ffff:ffff,IT
+2604:ca00:1b7::,2604:ca00:1b7:7fff:ffff:ffff:ffff:ffff,NL
+2604:ca00:1b7:8000::,2604:ca00:1b7:ffff:ffff:ffff:ffff:ffff,NO
+2604:ca00:1b8::,2604:ca00:1b8:7fff:ffff:ffff:ffff:ffff,PT
+2604:ca00:1b8:8000::,2604:ca00:1b8:ffff:ffff:ffff:ffff:ffff,SE
+2604:ca00:1b9::,2604:ca00:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:ca80::,2604:ca80:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:cb00::,2604:cb00:ffff:ffff:ffff:ffff:ffff:ffff,US
2604:cb80::,2604:cb80:ffff:ffff:ffff:ffff:ffff:ffff,US
@@ -12841,7 +13167,6 @@
2605:5080::,2605:5080:ffff:ffff:ffff:ffff:ffff:ffff,CA
2605:5100::,2605:5100:ffff:ffff:ffff:ffff:ffff:ffff,US
2605:5180::,2605:5180:ffff:ffff:ffff:ffff:ffff:ffff,US
-2605:5200::,2605:5200:ffff:ffff:ffff:ffff:ffff:ffff,US
2605:5280::,2605:5280:ffff:ffff:ffff:ffff:ffff:ffff,US
2605:5300::,2605:5300:ffff:ffff:ffff:ffff:ffff:ffff,US
2605:5380::,2605:5380:ffff:ffff:ffff:ffff:ffff:ffff,US
@@ -13286,7 +13611,9 @@
2606:2800:5080::,2606:2800:5080:ffff:ffff:ffff:ffff:ffff,IT
2606:2800:5081::,2606:2800:508f:ffff:ffff:ffff:ffff:ffff,US
2606:2800:5090::,2606:2800:5090:ffff:ffff:ffff:ffff:ffff,PL
-2606:2800:5091::,2606:2800:5fff:ffff:ffff:ffff:ffff:ffff,US
+2606:2800:5091::,2606:2800:510f:ffff:ffff:ffff:ffff:ffff,US
+2606:2800:5110::,2606:2800:5110:ffff:ffff:ffff:ffff:ffff,ZA
+2606:2800:5111::,2606:2800:5fff:ffff:ffff:ffff:ffff:ffff,US
2606:2800:6000::,2606:2800:6001:ffff:ffff:ffff:ffff:ffff,SG
2606:2800:6002::,2606:2800:600f:ffff:ffff:ffff:ffff:ffff,US
2606:2800:6010::,2606:2800:6011:ffff:ffff:ffff:ffff:ffff,HK
@@ -13493,6 +13820,7 @@
2606:8100::,2606:8100:ffff:ffff:ffff:ffff:ffff:ffff,US
2606:8180::,2606:8180:ffff:ffff:ffff:ffff:ffff:ffff,US
2606:8200::,2606:8200:ffff:ffff:ffff:ffff:ffff:ffff,US
+2606:8280::,2606:8280:fff:ffff:ffff:ffff:ffff:ffff,US
2606:8300::,2606:830f:ffff:ffff:ffff:ffff:ffff:ffff,CA
2606:8380::,2606:8380:ffff:ffff:ffff:ffff:ffff:ffff,US
2606:8400::,2606:8400:ffff:ffff:ffff:ffff:ffff:ffff,US
@@ -13845,7 +14173,8 @@
2607:3480::,2607:3480:ffff:ffff:ffff:ffff:ffff:ffff,US
2607:3500::,2607:3500:ffff:ffff:ffff:ffff:ffff:ffff,US
2607:3580::,2607:3580:ffff:ffff:ffff:ffff:ffff:ffff,US
-2607:3600::,2607:3600:ffff:ffff:ffff:ffff:ffff:ffff,US
+2607:3600:beef::16:3e29:bd56,2607:3600:beef::16:3e29:bd56,US
+2607:3600:beef::16:3e79:bb1f,2607:3600:beef::16:3e79:bb1f,US
2607:3680::,2607:3680:ffff:ffff:ffff:ffff:ffff:ffff,US
2607:3700::,2607:3700:ffff:ffff:ffff:ffff:ffff:ffff,US
2607:3780::,2607:3780:ffff:ffff:ffff:ffff:ffff:ffff,US
@@ -14146,7 +14475,6 @@
2607:ce00::,2607:ce00:ffff:ffff:ffff:ffff:ffff:ffff,US
2607:ce80::,2607:ce80:ffff:ffff:ffff:ffff:ffff:ffff,CA
2607:cf00::,2607:cf03:ffff:ffff:ffff:ffff:ffff:ffff,US
-2607:cf80::,2607:cf80:ffff:ffff:ffff:ffff:ffff:ffff,US
2607:d000::,2607:d000:ffff:ffff:ffff:ffff:ffff:ffff,US
2607:d080::,2607:d080:ffff:ffff:ffff:ffff:ffff:ffff,US
2607:d100::,2607:d100:ffff:ffff:ffff:ffff:ffff:ffff,US
@@ -14234,7 +14562,13 @@
2607:f0c0::,2607:f0c0:ffff:ffff:ffff:ffff:ffff:ffff,US
2607:f0c8::,2607:f0c8:ffff:ffff:ffff:ffff:ffff:ffff,CA
2607:f0d0::,2607:f0d0:1bff:ffff:ffff:ffff:ffff:ffff,US
-2607:f0d0:1c00::,2607:f0d0:1c7f:ffff:ffff:ffff:ffff:ffff,MX
+2607:f0d0:1c00::,2607:f0d0:1c00:20::8:0,MX
+2607:f0d0:1c00:20::8:1,2607:f0d0:1c00:20::8:1,US
+2607:f0d0:1c00:20::8:2,2607:f0d0:1c00:20::a:0,MX
+2607:f0d0:1c00:20::a:1,2607:f0d0:1c00:20::a:1,US
+2607:f0d0:1c00:20::a:2,2607:f0d0:1c00:20::b:0,MX
+2607:f0d0:1c00:20::b:1,2607:f0d0:1c00:20::b:1,US
+2607:f0d0:1c00:20::b:2,2607:f0d0:1c7f:ffff:ffff:ffff:ffff:ffff,MX
2607:f0d0:1c80::,2607:f0d0:3601:3a:ffff:ffff:ffff:ffff,US
2607:f0d0:3601:3b::,2607:f0d0:3601:3b:ffff:ffff:ffff:ffff,CA
2607:f0d0:3601:3c::,2607:f0d1:ffff:ffff:ffff:ffff:ffff:ffff,US
@@ -15052,8 +15386,7 @@
2620:0:2e10::,2620::2e10:ffff:ffff:ffff:ffff:ffff,US
2620:0:2e30::,2620::2e30:ffff:ffff:ffff:ffff:ffff,US
2620:0:2e40::,2620::2e40:ffff:ffff:ffff:ffff:ffff,US
-2620:0:2e50::,2620::2e60:ffff:ffff:ffff:ffff:ffff,US
-2620:0:2e70::,2620::2f7f:ffff:ffff:ffff:ffff:ffff,US
+2620:0:2e50::,2620::2f7f:ffff:ffff:ffff:ffff:ffff,US
2620:0:5000::,2620::5000:ffff:ffff:ffff:ffff:ffff,US
2620:0:5010::,2620::5010:ffff:ffff:ffff:ffff:ffff,US
2620:0:5030::,2620::5030:ffff:ffff:ffff:ffff:ffff,US
@@ -15169,7 +15502,6 @@
2620:e:e000::,2620:e:e000:ffff:ffff:ffff:ffff:ffff,US
2620:f::,2620:f:f:ffff:ffff:ffff:ffff:ffff,US
2620:f:2000::,2620:f:2000:ffff:ffff:ffff:ffff:ffff,US
-2620:f:4000::,2620:f:4000:ffff:ffff:ffff:ffff:ffff,US
2620:f:6000::,2620:f:6000:ffff:ffff:ffff:ffff:ffff,US
2620:f:8000::,2620:f:8000:ffff:ffff:ffff:ffff:ffff,AE
2620:f:a000::,2620:f:a000:ffff:ffff:ffff:ffff:ffff,US
@@ -15459,7 +15791,7 @@
2620:38:a000::,2620:38:a000:ffff:ffff:ffff:ffff:ffff,US
2620:38:c000::,2620:38:c000:ffff:ffff:ffff:ffff:ffff,US
2620:38:e000::,2620:38:e000:ffff:ffff:ffff:ffff:ffff,US
-2620:39::,2620:39::ffff:ffff:ffff:ffff:ffff,US
+2620:39::,2620:39:f:ffff:ffff:ffff:ffff:ffff,US
2620:39:2000::,2620:39:2000:ffff:ffff:ffff:ffff:ffff,US
2620:39:4000::,2620:39:4000:ffff:ffff:ffff:ffff:ffff,US
2620:39:6000::,2620:39:6000:ffff:ffff:ffff:ffff:ffff,US
@@ -15550,16 +15882,26 @@
2620:45:c000::,2620:45:c000:ffff:ffff:ffff:ffff:ffff,US
2620:45:e000::,2620:45:e000:ffff:ffff:ffff:ffff:ffff,US
2620:46::,2620:46::ffff:ffff:ffff:ffff:ffff,US
+2620:46:2000::,2620:46:2000:ffff:ffff:ffff:ffff:ffff,US
2620:46:4000::,2620:46:4000:ffff:ffff:ffff:ffff:ffff,CA
+2620:46:6000::,2620:46:6000:ffff:ffff:ffff:ffff:ffff,CA
2620:46:8000::,2620:46:807f:ffff:ffff:ffff:ffff:ffff,US
+2620:46:a000::,2620:46:a000:ffff:ffff:ffff:ffff:ffff,US
2620:46:c000::,2620:46:c00f:ffff:ffff:ffff:ffff:ffff,US
2620:47::,2620:47::ffff:ffff:ffff:ffff:ffff,US
+2620:47:2000::,2620:47:2000:ffff:ffff:ffff:ffff:ffff,US
2620:47:4000::,2620:47:4000:ffff:ffff:ffff:ffff:ffff,US
+2620:47:6000::,2620:47:6000:ffff:ffff:ffff:ffff:ffff,US
2620:47:8000::,2620:47:8000:ffff:ffff:ffff:ffff:ffff,US
+2620:47:a000::,2620:47:a000:ffff:ffff:ffff:ffff:ffff,US
2620:47:c000::,2620:47:c000:ffff:ffff:ffff:ffff:ffff,US
+2620:47:e000::,2620:47:e000:ffff:ffff:ffff:ffff:ffff,US
2620:48::,2620:48::ffff:ffff:ffff:ffff:ffff,US
+2620:48:2000::,2620:48:2000:ffff:ffff:ffff:ffff:ffff,US
2620:48:4000::,2620:48:4000:ffff:ffff:ffff:ffff:ffff,US
+2620:48:6000::,2620:48:6000:ffff:ffff:ffff:ffff:ffff,US
2620:48:8000::,2620:48:8000:ffff:ffff:ffff:ffff:ffff,US
+2620:48:a000::,2620:48:a000:ffff:ffff:ffff:ffff:ffff,VG
2620:48:c000::,2620:48:c00f:ffff:ffff:ffff:ffff:ffff,US
2620:49::,2620:49:f:ffff:ffff:ffff:ffff:ffff,CA
2620:49:40c0::,2620:49:40c0:ffff:ffff:ffff:ffff:ffff,US
@@ -16403,7 +16745,6 @@
2620:108:4000::,2620:108:40ff:ffff:ffff:ffff:ffff:ffff,US
2620:108:5000::,2620:108:500f:ffff:ffff:ffff:ffff:ffff,US
2620:108:6000::,2620:108:700f:ffff:ffff:ffff:ffff:ffff,US
-2620:108:8000::,2620:108:800f:ffff:ffff:ffff:ffff:ffff,US
2620:108:9000::,2620:108:900f:ffff:ffff:ffff:ffff:ffff,US
2620:108:a000::,2620:108:a00f:ffff:ffff:ffff:ffff:ffff,US
2620:108:b000::,2620:108:b00f:ffff:ffff:ffff:ffff:ffff,US
@@ -17139,6 +17480,17 @@
2620:137:2000::,2620:137:200f:ffff:ffff:ffff:ffff:ffff,US
2620:137:3000::,2620:137:30ff:ffff:ffff:ffff:ffff:ffff,US
2620:137:4000::,2620:137:40ff:ffff:ffff:ffff:ffff:ffff,US
+2620:137:5000::,2620:137:50ff:ffff:ffff:ffff:ffff:ffff,US
+2620:137:6000::,2620:137:600f:ffff:ffff:ffff:ffff:ffff,US
+2620:137:7000::,2620:137:70ff:ffff:ffff:ffff:ffff:ffff,US
+2620:137:8000::,2620:137:800f:ffff:ffff:ffff:ffff:ffff,US
+2620:137:9000::,2620:137:900f:ffff:ffff:ffff:ffff:ffff,CA
+2620:137:a000::,2620:137:a00f:ffff:ffff:ffff:ffff:ffff,CA
+2620:137:b000::,2620:137:b0ff:ffff:ffff:ffff:ffff:ffff,US
+2620:137:c000::,2620:137:c00f:ffff:ffff:ffff:ffff:ffff,US
+2620:137:d000::,2620:137:d0ff:ffff:ffff:ffff:ffff:ffff,US
+2620:137:e000::,2620:137:e00f:ffff:ffff:ffff:ffff:ffff,US
+2620:137:f000::,2620:137:f0ff:ffff:ffff:ffff:ffff:ffff,US
2620:140::,2620:140:3ff:ffff:ffff:ffff:ffff:ffff,US
2620:141::,2620:141:fff:ffff:ffff:ffff:ffff:ffff,US
2620:143::,2620:143:7ff:ffff:ffff:ffff:ffff:ffff,US
@@ -17619,6 +17971,7 @@
2801:11:4000::,2801:11:4000:ffff:ffff:ffff:ffff:ffff,CO
2801:11:5000::,2801:11:5000:ffff:ffff:ffff:ffff:ffff,CO
2801:11:6000::,2801:11:6000:ffff:ffff:ffff:ffff:ffff,AR
+2801:11:7000::,2801:11:7000:ffff:ffff:ffff:ffff:ffff,AR
2801:11:8000::,2801:11:8000:ffff:ffff:ffff:ffff:ffff,CO
2801:11:9000::,2801:11:9000:ffff:ffff:ffff:ffff:ffff,CO
2801:11:a000::,2801:11:a000:ffff:ffff:ffff:ffff:ffff,VE
@@ -17675,6 +18028,7 @@
2801:15:4000::,2801:15:4000:ffff:ffff:ffff:ffff:ffff,CO
2801:15:5000::,2801:15:5000:ffff:ffff:ffff:ffff:ffff,CO
2801:15:6000::,2801:15:6000:ffff:ffff:ffff:ffff:ffff,SV
+2801:15:7000::,2801:15:7000:ffff:ffff:ffff:ffff:ffff,CO
2801:15:8000::,2801:15:800f:ffff:ffff:ffff:ffff:ffff,CR
2801:15:9000::,2801:15:9000:ffff:ffff:ffff:ffff:ffff,AR
2801:15:a000::,2801:15:a000:ffff:ffff:ffff:ffff:ffff,DO
@@ -17690,6 +18044,7 @@
2801:16:4000::,2801:16:4000:ffff:ffff:ffff:ffff:ffff,AR
2801:16:5000::,2801:16:5000:ffff:ffff:ffff:ffff:ffff,CO
2801:16:6000::,2801:16:6000:ffff:ffff:ffff:ffff:ffff,AR
+2801:16:7000::,2801:16:7000:ffff:ffff:ffff:ffff:ffff,AR
2801:16:8000::,2801:16:8000:ffff:ffff:ffff:ffff:ffff,CO
2801:16:9000::,2801:16:9000:ffff:ffff:ffff:ffff:ffff,BO
2801:16:a000::,2801:16:a000:ffff:ffff:ffff:ffff:ffff,CR
@@ -17730,6 +18085,7 @@
2801:19:4000::,2801:19:4000:ffff:ffff:ffff:ffff:ffff,PY
2801:19:5000::,2801:19:5000:ffff:ffff:ffff:ffff:ffff,CO
2801:19:6000::,2801:19:6000:ffff:ffff:ffff:ffff:ffff,CW
+2801:19:7000::,2801:19:7000:ffff:ffff:ffff:ffff:ffff,AR
2801:19:8000::,2801:19:8000:ffff:ffff:ffff:ffff:ffff,EC
2801:19:9000::,2801:19:9000:ffff:ffff:ffff:ffff:ffff,AR
2801:19:a000::,2801:19:a000:ffff:ffff:ffff:ffff:ffff,BO
@@ -17784,6 +18140,7 @@
2801:1d:4000::,2801:1d:4000:ffff:ffff:ffff:ffff:ffff,TT
2801:1d:5000::,2801:1d:5000:ffff:ffff:ffff:ffff:ffff,AR
2801:1d:6000::,2801:1d:6000:ffff:ffff:ffff:ffff:ffff,NI
+2801:1d:7000::,2801:1d:7000:ffff:ffff:ffff:ffff:ffff,CL
2801:1d:8000::,2801:1d:8000:ffff:ffff:ffff:ffff:ffff,AR
2801:1d:9000::,2801:1d:9000:ffff:ffff:ffff:ffff:ffff,CO
2801:1d:a000::,2801:1d:a00f:ffff:ffff:ffff:ffff:ffff,CR
@@ -17798,6 +18155,7 @@
2801:1e:4000::,2801:1e:4007:ffff:ffff:ffff:ffff:ffff,AR
2801:1e:5000::,2801:1e:5000:ffff:ffff:ffff:ffff:ffff,EC
2801:1e:6000::,2801:1e:6000:ffff:ffff:ffff:ffff:ffff,CO
+2801:1e:7000::,2801:1e:7000:ffff:ffff:ffff:ffff:ffff,AR
2801:1e:8000::,2801:1e:8000:ffff:ffff:ffff:ffff:ffff,CR
2801:1e:9000::,2801:1e:9000:ffff:ffff:ffff:ffff:ffff,SV
2801:1e:a000::,2801:1e:a000:ffff:ffff:ffff:ffff:ffff,AR
@@ -18195,6 +18553,11 @@
2801:80:2370::,2801:80:2370:ffff:ffff:ffff:ffff:ffff,BR
2801:80:2380::,2801:80:2380:ffff:ffff:ffff:ffff:ffff,BR
2801:80:2390::,2801:80:2390:ffff:ffff:ffff:ffff:ffff,BR
+2801:80:23a0::,2801:80:23a0:ffff:ffff:ffff:ffff:ffff,BR
+2801:80:23b0::,2801:80:23b0:ffff:ffff:ffff:ffff:ffff,BR
+2801:80:23c0::,2801:80:23c0:ffff:ffff:ffff:ffff:ffff,BR
+2801:80:23d0::,2801:80:23d0:ffff:ffff:ffff:ffff:ffff,BR
+2801:80:2800::,2801:80:28ff:ffff:ffff:ffff:ffff:ffff,BR
2801:82::,2801:82:ffff:ffff:ffff:ffff:ffff:ffff,BR
2801:84::,2801:84:ffff:ffff:ffff:ffff:ffff:ffff,BR
2801:86::,2801:86:ffff:ffff:ffff:ffff:ffff:ffff,BR
@@ -18253,6 +18616,7 @@
2801:124::,2801:124:f:ffff:ffff:ffff:ffff:ffff,CO
2801:128::,2801:128:fff:ffff:ffff:ffff:ffff:ffff,UY
2801:130::,2801:130:fff:ffff:ffff:ffff:ffff:ffff,CO
+2801:134::,2801:134:f:ffff:ffff:ffff:ffff:ffff,CO
2801:138::,2801:138:ff:ffff:ffff:ffff:ffff:ffff,PA
2801:140::,2801:140:ffff:ffff:ffff:ffff:ffff:ffff,AR
2801:144::,2801:144:3f:ffff:ffff:ffff:ffff:ffff,CO
@@ -18264,6 +18628,7 @@
2801:164::,2801:164:ff:ffff:ffff:ffff:ffff:ffff,CO
2801:168::,2801:168:ff:ffff:ffff:ffff:ffff:ffff,AR
2801:170::,2801:170:fff:ffff:ffff:ffff:ffff:ffff,CO
+2801:174::,2801:174:f:ffff:ffff:ffff:ffff:ffff,CO
2801:178::,2801:178:1fff:ffff:ffff:ffff:ffff:ffff,CO
2801:180::,2801:180:f:ffff:ffff:ffff:ffff:ffff,PA
2801:184::,2801:184:f:ffff:ffff:ffff:ffff:ffff,DO
@@ -18275,6 +18640,7 @@
2801:1a4::,2801:1a4:f:ffff:ffff:ffff:ffff:ffff,AR
2801:1a8::,2801:1a8:ff:ffff:ffff:ffff:ffff:ffff,AR
2801:1b0::,2801:1b0:ff:ffff:ffff:ffff:ffff:ffff,CO
+2801:1b4::,2801:1b4:f:ffff:ffff:ffff:ffff:ffff,CO
2801:1b8::,2801:1b8:f:ffff:ffff:ffff:ffff:ffff,UY
2801:1c0::,2801:1c0:1ff:ffff:ffff:ffff:ffff:ffff,AR
2801:1c4::,2801:1c4:f:ffff:ffff:ffff:ffff:ffff,CO
@@ -18302,8 +18668,9 @@
2803:40::,2803:40:ffff:ffff:ffff:ffff:ffff:ffff,PE
2803:80::,2803:80::ffff:ffff:ffff:ffff,BR
2803:80:0:1::,2803:80:fff:ffff:ffff:ffff:ffff:ffff,CL
-2803:80:1000::,2803:80:1fff:ffff:ffff:ffff:ffff:ffff,BR
-2803:80:2000::,2803:80:ffff:ffff:ffff:ffff:ffff:ffff,CL
+2803:80:1000::,2803:80:7fff:ffff:ffff:ffff:ffff:ffff,BR
+2803:80:8000::,2803:80:ffff:ffff:ffff:ffff:ffff:ffff,CL
+2803:a0::,2803:a0:ffff:ffff:ffff:ffff:ffff:ffff,PY
2803:b4::,2803:b4:ffff:ffff:ffff:ffff:ffff:ffff,BZ
2803:c0::,2803:c0:ffff:ffff:ffff:ffff:ffff:ffff,PY
2803:100::,2803:100:ffff:ffff:ffff:ffff:ffff:ffff,HN
@@ -18378,6 +18745,7 @@
2803:f00::,2803:f00:48a:ffff:ffff:ffff:ffff:ffff,PE
2803:f00:48b::,2803:f00:48e:ffff:ffff:ffff:ffff:ffff,CO
2803:f00:48f::,2803:f00:ffff:ffff:ffff:ffff:ffff:ffff,PE
+2803:f20::,2803:f20:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:f40::,2803:f40:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:f80::,2803:f80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:fc0::,2803:fc0:ffff:ffff:ffff:ffff:ffff:ffff,EC
@@ -18452,6 +18820,7 @@
2803:1e80::,2803:1e80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:1ec0::,2803:1ec0:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:1f00::,2803:1f00:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:1f20::,2803:1f20:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:1f40::,2803:1f40:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:1f80::,2803:1f80:ffff:ffff:ffff:ffff:ffff:ffff,VE
2803:1fc0::,2803:1fc0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -18459,6 +18828,7 @@
2803:2020::,2803:2020:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:2040::,2803:2040:ffff:ffff:ffff:ffff:ffff:ffff,CR
2803:2080::,2803:2080:ffff:ffff:ffff:ffff:ffff:ffff,HN
+2803:20a0::,2803:20a0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:20c0::,2803:20c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:2120::,2803:2120:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:2140::,2803:2140:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -18529,6 +18899,7 @@
2803:2e80::,2803:2e80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:2ec0::,2803:2ec0:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:2f00::,2803:2f00:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:2f20::,2803:2f20:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:2f40::,2803:2f40:ffff:ffff:ffff:ffff:ffff:ffff,UY
2803:2f80::,2803:2f80:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:2fc0::,2803:2fc0:ffff:ffff:ffff:ffff:ffff:ffff,HN
@@ -18607,6 +18978,7 @@
2803:3e80::,2803:3e80:ffff:ffff:ffff:ffff:ffff:ffff,CO
2803:3ec0::,2803:3ec0:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:3f00::,2803:3f00:ffff:ffff:ffff:ffff:ffff:ffff,HN
+2803:3f20::,2803:3f20:ffff:ffff:ffff:ffff:ffff:ffff,PY
2803:3f40::,2803:3f40:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:3f80::,2803:3f80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:3fc0::,2803:3fc0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -18614,6 +18986,7 @@
2803:4020::,2803:4020:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:4040::,2803:4040:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:4080::,2803:4080:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:40a0::,2803:40a0:ffff:ffff:ffff:ffff:ffff:ffff,PE
2803:40c0::,2803:40c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:4100::,2803:4100:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:4120::,2803:4120:ffff:ffff:ffff:ffff:ffff:ffff,CL
@@ -18684,6 +19057,7 @@
2803:4e80::,2803:4e80:ffff:ffff:ffff:ffff:ffff:ffff,CR
2803:4ec0::,2803:4ec0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:4f00::,2803:4f00:ffff:ffff:ffff:ffff:ffff:ffff,VE
+2803:4f20::,2803:4f20:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:4f40::,2803:4f40:ffff:ffff:ffff:ffff:ffff:ffff,PE
2803:4f80::,2803:4f80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:4fc0::,2803:4fc0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -18761,6 +19135,7 @@
2803:5e40::,2803:5e40:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:5e80::,2803:5e80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:5ec0::,2803:5ec0:ffff:ffff:ffff:ffff:ffff:ffff,HN
+2803:5f20::,2803:5f20:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:5f40::,2803:5f40:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:5f80::,2803:5f80:ffff:ffff:ffff:ffff:ffff:ffff,EC
2803:5fc0::,2803:5fc0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -18839,6 +19214,7 @@
2803:6e80::,2803:6e80:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:6ec0::,2803:6ec0:ffff:ffff:ffff:ffff:ffff:ffff,EC
2803:6f00::,2803:6f00:ffff:ffff:ffff:ffff:ffff:ffff,CL
+2803:6f20::,2803:6f20:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:6f40::,2803:6f40:ffff:ffff:ffff:ffff:ffff:ffff,VE
2803:6f80::,2803:6f80:ffff:ffff:ffff:ffff:ffff:ffff,CO
2803:6fc0::,2803:6fc0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -18878,6 +19254,7 @@
2803:7680::,2803:7680:ffff:ffff:ffff:ffff:ffff:ffff,BO
2803:76c0::,2803:76c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:7700::,2803:7700:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:7720::,2803:7720:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:7740::,2803:7740:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:7780::,2803:7780:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:77c0::,2803:77c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -18917,6 +19294,7 @@
2803:7e80::,2803:7e80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:7ec0::,2803:7ec0:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:7f00::,2803:7f00:ffff:ffff:ffff:ffff:ffff:ffff,CO
+2803:7f20::,2803:7f20:ffff:ffff:ffff:ffff:ffff:ffff,BZ
2803:7f40::,2803:7f40:ffff:ffff:ffff:ffff:ffff:ffff,PY
2803:7f80::,2803:7f80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:7fc0::,2803:7fc0:ffff:ffff:ffff:ffff:ffff:ffff,HN
@@ -18924,6 +19302,7 @@
2803:8020::,2803:8020:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:8040::,2803:8040:ffff:ffff:ffff:ffff:ffff:ffff,CR
2803:8080::,2803:8080:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:80a0::,2803:80a0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:80c0::,2803:80c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:8100::,2803:8100:ffff:ffff:ffff:ffff:ffff:ffff,VE
2803:8120::,2803:8120:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -18995,6 +19374,7 @@
2803:8e80::,2803:8e80:ffff:ffff:ffff:ffff:ffff:ffff,PY
2803:8ec0::,2803:8ec0:ffff:ffff:ffff:ffff:ffff:ffff,BO
2803:8f00::,2803:8f00:ffff:ffff:ffff:ffff:ffff:ffff,PA
+2803:8f20::,2803:8f20:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:8f40::,2803:8f40:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:8f80::,2803:8f80:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:8fc0::,2803:8fc0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -19042,7 +19422,6 @@
2803:9840::,2803:9840:ffff:ffff:ffff:ffff:ffff:ffff,NI
2803:9880::,2803:9880:ffff:ffff:ffff:ffff:ffff:ffff,BZ
2803:98c0::,2803:98c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
-2803:9900::,2803:9900:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:9920::,2803:9920:ffff:ffff:ffff:ffff:ffff:ffff,CR
2803:9940::,2803:9940:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:9980::,2803:9980:ffff:ffff:ffff:ffff:ffff:ffff,CO
@@ -19073,6 +19452,7 @@
2803:9e80::,2803:9e80:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:9ec0::,2803:9ec0:ffff:ffff:ffff:ffff:ffff:ffff,CR
2803:9f00::,2803:9f00:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:9f20::,2803:9f20:ffff:ffff:ffff:ffff:ffff:ffff,CW
2803:9f40::,2803:9f40:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:9f80::,2803:9f80:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:9fc0::,2803:9fc0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -19149,6 +19529,7 @@
2803:ae80::,2803:ae80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:aec0::,2803:aec0:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:af00::,2803:af00:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:af20::,2803:af20:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:af40::,2803:af40:ffff:ffff:ffff:ffff:ffff:ffff,EC
2803:af80::,2803:af80:ffff:ffff:ffff:ffff:ffff:ffff,PY
2803:afc0::,2803:afc0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -19186,6 +19567,7 @@
2803:b680::,2803:b680:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:b6c0::,2803:b6c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:b700::,2803:b700:ffff:ffff:ffff:ffff:ffff:ffff,HN
+2803:b720::,2803:b720:ffff:ffff:ffff:ffff:ffff:ffff,BZ
2803:b740::,2803:b740:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:b780::,2803:b780:ffff:ffff:ffff:ffff:ffff:ffff,NI
2803:b7c0::,2803:b7c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -19224,6 +19606,7 @@
2803:be80::,2803:be80:ffff:ffff:ffff:ffff:ffff:ffff,CO
2803:bec0::,2803:bec0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:bf00::,2803:bf00:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:bf20::,2803:bf20:ffff:ffff:ffff:ffff:ffff:ffff,EC
2803:bf40::,2803:bf40:ffff:ffff:ffff:ffff:ffff:ffff,GT
2803:bf80::,2803:bf80:ffff:ffff:ffff:ffff:ffff:ffff,PA
2803:bfc0::,2803:bfc0:ffff:ffff:ffff:ffff:ffff:ffff,EC
@@ -19231,6 +19614,7 @@
2803:c020::,2803:c020:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:c040::,2803:c040:ffff:ffff:ffff:ffff:ffff:ffff,VE
2803:c080::,2803:c080:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:c0a0::,2803:c0a0:ffff:ffff:ffff:ffff:ffff:ffff,CO
2803:c0c0::,2803:c0c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:c100::,2803:c100:ffff:ffff:ffff:ffff:ffff:ffff,PY
2803:c120::,2803:c120:ffff:ffff:ffff:ffff:ffff:ffff,CL
@@ -19303,6 +19687,7 @@
2803:ce80::,2803:ce80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:cec0::,2803:cec0:ffff:ffff:ffff:ffff:ffff:ffff,HN
2803:cf00::,2803:cf00:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:cf20::,2803:cf20:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:cf40::,2803:cf40:ffff:ffff:ffff:ffff:ffff:ffff,PE
2803:cf80::,2803:cf80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:cfc0::,2803:cfc0:ffff:ffff:ffff:ffff:ffff:ffff,UY
@@ -19383,6 +19768,7 @@
2803:de80::,2803:de80:ffff:ffff:ffff:ffff:ffff:ffff,CO
2803:dec0::,2803:dec0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:df00::,2803:df00:ffff:ffff:ffff:ffff:ffff:ffff,SV
+2803:df20::,2803:df20:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:df40::,2803:df40:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:df80::,2803:df80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:dfc0::,2803:dfc0:ffff:ffff:ffff:ffff:ffff:ffff,CL
@@ -19461,6 +19847,7 @@
2803:ee80::,2803:ee80:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:eec0::,2803:eec0:ffff:ffff:ffff:ffff:ffff:ffff,PE
2803:ef00::,2803:ef00:ffff:ffff:ffff:ffff:ffff:ffff,PA
+2803:ef20::,2803:ef20:ffff:ffff:ffff:ffff:ffff:ffff,CO
2803:ef40::,2803:ef40:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:ef80::,2803:ef80:ffff:ffff:ffff:ffff:ffff:ffff,CL
2803:efc0::,2803:efc0:ffff:ffff:ffff:ffff:ffff:ffff,EC
@@ -19500,6 +19887,7 @@
2803:f680::,2803:f680:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:f6c0::,2803:f6c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:f700::,2803:f700:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:f720::,2803:f720:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:f740::,2803:f740:ffff:ffff:ffff:ffff:ffff:ffff,AR
2803:f780::,2803:f780:ffff:ffff:ffff:ffff:ffff:ffff,DO
2803:f7c0::,2803:f7c0:ffff:ffff:ffff:ffff:ffff:ffff,AR
@@ -19537,6 +19925,7 @@
2803:fe40::,2803:fe40:ffff:ffff:ffff:ffff:ffff:ffff,CR
2803:fe80::,2803:fe80:ffff:ffff:ffff:ffff:ffff:ffff,PE
2803:fec0::,2803:fec0:ffff:ffff:ffff:ffff:ffff:ffff,AR
+2803:ff20::,2803:ff20:ffff:ffff:ffff:ffff:ffff:ffff,CO
2803:ff40::,2803:ff40:ffff:ffff:ffff:ffff:ffff:ffff,SR
2803:ff80::,2803:ff80:ffff:ffff:ffff:ffff:ffff:ffff,CO
2803:ffc0::,2803:ffc0:ffff:ffff:ffff:ffff:ffff:ffff,CL
@@ -23465,7 +23854,6 @@
2804:3fdc::,2804:3fdc:ffff:ffff:ffff:ffff:ffff:ffff,BR
2804:3fe0::,2804:3fe0:ffff:ffff:ffff:ffff:ffff:ffff,BR
2804:3fe4::,2804:3fe4:ffff:ffff:ffff:ffff:ffff:ffff,BR
-2804:3fe8::,2804:3fe8:ffff:ffff:ffff:ffff:ffff:ffff,BR
2804:3fec::,2804:3fec:ffff:ffff:ffff:ffff:ffff:ffff,BR
2804:3ff0::,2804:3ff0:ffff:ffff:ffff:ffff:ffff:ffff,BR
2804:3ff4::,2804:3ff4:ffff:ffff:ffff:ffff:ffff:ffff,BR
@@ -24236,6 +24624,108 @@
2804:4be8::,2804:4be8:ffff:ffff:ffff:ffff:ffff:ffff,BR
2804:4bec::,2804:4bec:ffff:ffff:ffff:ffff:ffff:ffff,BR
2804:4bf0::,2804:4bf0:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4bf4::,2804:4bf4:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4bf8::,2804:4bf8:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4bfc::,2804:4bfc:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c00::,2804:4c00:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c04::,2804:4c04:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c08::,2804:4c08:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c0c::,2804:4c0c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c10::,2804:4c10:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c14::,2804:4c14:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c18::,2804:4c18:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c1c::,2804:4c1c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c20::,2804:4c20:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c24::,2804:4c24:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c28::,2804:4c28:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c2c::,2804:4c2c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c30::,2804:4c30:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c34::,2804:4c34:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c38::,2804:4c38:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c3c::,2804:4c3c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c40::,2804:4c40:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c44::,2804:4c44:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c48::,2804:4c48:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c4c::,2804:4c4c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c50::,2804:4c50:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c54::,2804:4c54:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c58::,2804:4c58:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c5c::,2804:4c5c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c60::,2804:4c60:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c64::,2804:4c64:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c68::,2804:4c68:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c6c::,2804:4c6c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c70::,2804:4c70:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c74::,2804:4c74:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c78::,2804:4c78:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c7c::,2804:4c7c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c80::,2804:4c80:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c84::,2804:4c84:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c88::,2804:4c88:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c8c::,2804:4c8c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c90::,2804:4c90:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c94::,2804:4c94:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c98::,2804:4c98:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4c9c::,2804:4c9c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4ca0::,2804:4ca0:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4ca4::,2804:4ca4:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4ca8::,2804:4ca8:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cac::,2804:4cac:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cb0::,2804:4cb0:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cb4::,2804:4cb4:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cb8::,2804:4cb8:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cbc::,2804:4cbc:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cc0::,2804:4cc0:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cc4::,2804:4cc4:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cc8::,2804:4cc8:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4ccc::,2804:4ccc:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cd0::,2804:4cd0:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cd4::,2804:4cd4:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cd8::,2804:4cd8:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cdc::,2804:4cdc:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4ce0::,2804:4ce0:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4ce4::,2804:4ce4:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4ce8::,2804:4ce8:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cec::,2804:4cec:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cf0::,2804:4cf0:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cf4::,2804:4cf4:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cf8::,2804:4cf8:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4cfc::,2804:4cfc:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d00::,2804:4d00:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d04::,2804:4d04:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d08::,2804:4d08:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d0c::,2804:4d0c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d10::,2804:4d10:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d14::,2804:4d14:ffff:ffff:ffff:ffff:ffff:ffff,US
+2804:4d18::,2804:4d18:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d1c::,2804:4d1c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d20::,2804:4d20:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d24::,2804:4d24:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d28::,2804:4d28:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d2c::,2804:4d2c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d30::,2804:4d30:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d34::,2804:4d34:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d38::,2804:4d38:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d3c::,2804:4d3c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d40::,2804:4d40:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d44::,2804:4d44:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d48::,2804:4d48:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d4c::,2804:4d4c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d50::,2804:4d50:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d54::,2804:4d54:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d58::,2804:4d58:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d5c::,2804:4d5c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d60::,2804:4d60:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d64::,2804:4d64:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d68::,2804:4d68:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d6c::,2804:4d6c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d70::,2804:4d70:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d74::,2804:4d74:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d78::,2804:4d78:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d7c::,2804:4d7c:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d80::,2804:4d80:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d84::,2804:4d84:ffff:ffff:ffff:ffff:ffff:ffff,BR
+2804:4d88::,2804:4d88:ffff:ffff:ffff:ffff:ffff:ffff,BR
2806::,2806:f:ffff:ffff:ffff:ffff:ffff:ffff,MX
2806:200::,2806:216::ffff:ffff:ffff:ffff:ffff,MX
2806:217::,2806:220:ffff:ffff:ffff:ffff:ffff:ffff,MX
@@ -24253,7 +24743,7 @@
2806:2e0::,2806:2ee:ffff:ffff:ffff:ffff:ffff:ffff,MX
2806:2f0::,2806:2f0:ffff:ffff:ffff:ffff:ffff:ffff,MX
2806:2f4::,2806:2f4:ffff:ffff:ffff:ffff:ffff:ffff,MX
-2806:2f6::,2806:2fd:ffff:ffff:ffff:ffff:ffff:ffff,MX
+2806:2f6::,2806:2fe:ffff:ffff:ffff:ffff:ffff:ffff,MX
2806:300::,2806:300:ffff:ffff:ffff:ffff:ffff:ffff,MX
2806:310::,2806:310:ffff:ffff:ffff:ffff:ffff:ffff,MX
2806:320::,2806:320:ffff:ffff:ffff:ffff:ffff:ffff,MX
@@ -24430,7 +24920,7 @@
2a00:1190::,2a00:1190:ffff:ffff:ffff:ffff:ffff:ffff,FI
2a00:1198::,2a00:1198:ffff:ffff:ffff:ffff:ffff:ffff,IR
2a00:11a8::,2a00:11a8:ffff:ffff:ffff:ffff:ffff:ffff,OM
-2a00:11b0::,2a00:11b0:ffff:ffff:ffff:ffff:ffff:ffff,CZ
+2a00:11b0::,2a00:11b7:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a00:11b8::,2a00:11b8:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a00:11c0::,2a00:11c0:3:ffff:ffff:ffff:ffff:ffff,FR
2a00:11c0:4::,2a00:11c0:5:ffff:ffff:ffff:ffff:ffff,CH
@@ -24466,7 +24956,10 @@
2a00:1268::,2a00:1268:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a00:1278::,2a00:1278:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a00:1280::,2a00:1280:ffff:ffff:ffff:ffff:ffff:ffff,NL
-2a00:1288::,2a00:1288:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a00:1288::,2a00:1288:ef6a:ffff:ffff:ffff:ffff:ffff,GB
+2a00:1288:ef6b::,2a00:1288:ef6b:ffff:ffff:ffff:ffff:ffff,DE
+2a00:1288:ef6c::,2a00:1288:ef6c:ffff:ffff:ffff:ffff:ffff,FR
+2a00:1288:ef6d::,2a00:1288:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a00:1290::,2a00:1290:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a00:1298::,2a00:1298:ffff:ffff:ffff:ffff:ffff:ffff,SK
2a00:12a0::,2a00:12a0:ffff:ffff:ffff:ffff:ffff:ffff,RU
@@ -24622,7 +25115,7 @@
2a00:1778::,2a00:1778:ffff:ffff:ffff:ffff:ffff:ffff,FI
2a00:1780::,2a00:1780:ffff:ffff:ffff:ffff:ffff:ffff,LV
2a00:1788::,2a00:1788:ffff:ffff:ffff:ffff:ffff:ffff,FR
-2a00:1790::,2a00:1790:ffff:ffff:ffff:ffff:ffff:ffff,CZ
+2a00:1790::,2a00:1797:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a00:1798::,2a00:1798:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a00:17a0::,2a00:17a0:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a00:17a8::,2a00:17a8:ffff:ffff:ffff:ffff:ffff:ffff,NO
@@ -25066,7 +25559,7 @@
2a00:5540:386::,2a00:5540:387:ffff:ffff:ffff:ffff:ffff,SI
2a00:5540:388::,2a00:5540:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a00:5560::,2a00:5560:ffff:ffff:ffff:ffff:ffff:ffff,DE
-2a00:5580::,2a00:5580:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a00:5580::,2a00:5587:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a00:55a0::,2a00:55a0:e9ff:ffff:ffff:ffff:ffff:ffff,IL
2a00:55a0:ea00::,2a00:55a0:eaff:ffff:ffff:ffff:ffff:ffff,GB
2a00:55a0:eb00::,2a00:55a0:efff:ffff:ffff:ffff:ffff:ffff,IL
@@ -25378,7 +25871,11 @@
2a00:79e1:a80::,2a00:79e1:abb:ffff:ffff:ffff:ffff:ffff,IN
2a00:79e1:abc::,2a00:79e1:abc:ff:ffff:ffff:ffff:ffff,GB
2a00:79e1:abc:100::,2a00:79e1:abc:1ff:ffff:ffff:ffff:ffff,US
-2a00:79e1:abc:200::,2a00:79e1:aff:ffff:ffff:ffff:ffff:ffff,IN
+2a00:79e1:abc:200::,2a00:79e1:abc:6eff:ffff:ffff:ffff:ffff,IN
+2a00:79e1:abc:6f00::,2a00:79e1:abc:6fff:ffff:ffff:ffff:ffff,TW
+2a00:79e1:abc:7000::,2a00:79e1:abc:90ff:ffff:ffff:ffff:ffff,IN
+2a00:79e1:abc:9100::,2a00:79e1:abc:91ff:ffff:ffff:ffff:ffff,TW
+2a00:79e1:abc:9200::,2a00:79e1:aff:ffff:ffff:ffff:ffff:ffff,IN
2a00:79e1:b00::,2a00:79e1:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a00:7a00::,2a00:7a00:ffff:ffff:ffff:ffff:ffff:ffff,NO
2a00:7a20::,2a00:7a20:ffff:ffff:ffff:ffff:ffff:ffff,FI
@@ -25588,7 +26085,7 @@
2a00:9500::,2a00:9500:ffff:ffff:ffff:ffff:ffff:ffff,RS
2a00:9520::,2a00:9520:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a00:9540::,2a00:9540:ffff:ffff:ffff:ffff:ffff:ffff,DK
-2a00:9560::,2a00:9560:ffff:ffff:ffff:ffff:ffff:ffff,FI
+2a00:9560::,2a00:9567:ffff:ffff:ffff:ffff:ffff:ffff,FI
2a00:9580::,2a00:9580:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a00:95a0::,2a00:95a0:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a00:95c0::,2a00:95c0:ffff:ffff:ffff:ffff:ffff:ffff,US
@@ -25826,7 +26323,7 @@
2a00:b340::,2a00:b340:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a00:b360::,2a00:b360:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a00:b380::,2a00:b380:ffff:ffff:ffff:ffff:ffff:ffff,IT
-2a00:b3a0::,2a00:b3a0:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a00:b3a0::,2a00:b3a7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a00:b3c0::,2a00:b3c0:ffff:ffff:ffff:ffff:ffff:ffff,IS
2a00:b400::,2a00:b407:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a00:b420::,2a00:b420:ffff:ffff:ffff:ffff:ffff:ffff,CH
@@ -26019,7 +26516,7 @@
2a00:cbe0::,2a00:cbe0:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a00:cc00::,2a00:cc00:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a00:cc20::,2a00:cc20:ffff:ffff:ffff:ffff:ffff:ffff,NL
-2a00:cc40::,2a00:cc40:ffff:ffff:ffff:ffff:ffff:ffff,AM
+2a00:cc40::,2a00:cc47:ffff:ffff:ffff:ffff:ffff:ffff,AM
2a00:cc60::,2a00:cc60:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a00:cc80::,2a00:cc80:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a00:cca0::,2a00:cca0:ffff:ffff:ffff:ffff:ffff:ffff,NL
@@ -26456,7 +26953,13 @@
2a01:110:9000::,2a01:110:907f:ffff:ffff:ffff:ffff:ffff,EE
2a01:110:9080::,2a01:110:9fff:ffff:ffff:ffff:ffff:ffff,GB
2a01:110:a000::,2a01:110:a07f:ffff:ffff:ffff:ffff:ffff,IE
-2a01:110:a080::,2a01:111:2000:3:ffff:ffff:ffff:ffff,GB
+2a01:110:a080::,2a01:110:dfff:ffff:ffff:ffff:ffff:ffff,GB
+2a01:110:e000::,2a01:110:e000:ffff:ffff:ffff:ffff:ffff,SI
+2a01:110:e001::,2a01:110:e007:ffff:ffff:ffff:ffff:ffff,GB
+2a01:110:e008::,2a01:110:e008:ffff:ffff:ffff:ffff:ffff,EG
+2a01:110:e009::,2a01:110:e00f:ffff:ffff:ffff:ffff:ffff,GB
+2a01:110:e010::,2a01:110:e010:ffff:ffff:ffff:ffff:ffff,ZA
+2a01:110:e011::,2a01:111:2000:3:ffff:ffff:ffff:ffff,GB
2a01:111:2000:4::,2a01:111:2000:4:ffff:ffff:ffff:ffff,US
2a01:111:2000:5::,2a01:111:2000:ffff:ffff:ffff:ffff:ffff,GB
2a01:111:2001::,2a01:111:2001:ffff:ffff:ffff:ffff:ffff,US
@@ -26465,20 +26968,22 @@
2a01:111:2007::,2a01:111:2007:ffff:ffff:ffff:ffff:ffff,AU
2a01:111:2008::,2a01:111:2008:ffff:ffff:ffff:ffff:ffff,US
2a01:111:2009::,2a01:111:2009:ffff:ffff:ffff:ffff:ffff,GB
-2a01:111:200a::,2a01:111:200c:ffff:ffff:ffff:ffff:ffff,US
-2a01:111:200d::,2a01:111:200d:ffff:ffff:ffff:ffff:ffff,GB
-2a01:111:200e::,2a01:111:2010:ffff:ffff:ffff:ffff:ffff,US
+2a01:111:200a::,2a01:111:2010:ffff:ffff:ffff:ffff:ffff,US
2a01:111:2011::,2a01:111:2011:ffff:ffff:ffff:ffff:ffff,GB
2a01:111:2012::,2a01:111:2013:ffff:ffff:ffff:ffff:ffff,US
-2a01:111:2014::,2a01:111:2016:ffff:ffff:ffff:ffff:ffff,GB
+2a01:111:2014::,2a01:111:2015:ffff:ffff:ffff:ffff:ffff,GB
+2a01:111:2016::,2a01:111:2016::ffff:ffff:ffff:ffff,US
+2a01:111:2016:1::,2a01:111:2016:ffff:ffff:ffff:ffff:ffff,GB
2a01:111:2017::,2a01:111:2017:ffff:ffff:ffff:ffff:ffff,BR
2a01:111:2018::,2a01:111:2019:ffff:ffff:ffff:ffff:ffff,US
2a01:111:201a::,2a01:111:201a:ffff:ffff:ffff:ffff:ffff,SG
2a01:111:201b::,2a01:111:201c:ffff:ffff:ffff:ffff:ffff,US
2a01:111:201d::,2a01:111:201d:ffff:ffff:ffff:ffff:ffff,HK
-2a01:111:201e::,2a01:111:201f:ffff:ffff:ffff:ffff:ffff,GB
+2a01:111:201e::,2a01:111:201f:ffff:ffff:ffff:ffff:ffff,US
2a01:111:2020::,2a01:111:2020:ffff:ffff:ffff:ffff:ffff,NL
-2a01:111:2021::,2a01:111:2025:ffff:ffff:ffff:ffff:ffff,GB
+2a01:111:2021::,2a01:111:2022:ffff:ffff:ffff:ffff:ffff,GB
+2a01:111:2023::,2a01:111:2023::ffff:ffff:ffff:ffff,SE
+2a01:111:2023:1::,2a01:111:2025:ffff:ffff:ffff:ffff:ffff,GB
2a01:111:2026::,2a01:111:2026:ffff:ffff:ffff:ffff:ffff,IE
2a01:111:2027::,2a01:111:2027:ffff:ffff:ffff:ffff:ffff,NL
2a01:111:2028::,2a01:111:2028:ffff:ffff:ffff:ffff:ffff,GB
@@ -26493,9 +26998,10 @@
2a01:111:2034::,2a01:111:2034:ffff:ffff:ffff:ffff:ffff,AU
2a01:111:2035::,2a01:111:2035:ffff:ffff:ffff:ffff:ffff,SG
2a01:111:2036::,2a01:111:2036:ffff:ffff:ffff:ffff:ffff,JP
-2a01:111:2037::,2a01:111:2038:ffff:ffff:ffff:ffff:ffff,GB
+2a01:111:2037::,2a01:111:2037:ffff:ffff:ffff:ffff:ffff,NL
+2a01:111:2038::,2a01:111:2038:ffff:ffff:ffff:ffff:ffff,US
2a01:111:2039::,2a01:111:2039:ffff:ffff:ffff:ffff:ffff,AU
-2a01:111:203a::,2a01:111:203a:ffff:ffff:ffff:ffff:ffff,GB
+2a01:111:203a::,2a01:111:203a:ffff:ffff:ffff:ffff:ffff,BR
2a01:111:203b::,2a01:111:203b:ffff:ffff:ffff:ffff:ffff,AT
2a01:111:203c::,2a01:111:203c:ffff:ffff:ffff:ffff:ffff,US
2a01:111:203d::,2a01:111:203d:ffff:ffff:ffff:ffff:ffff,NL
@@ -26512,8 +27018,7 @@
2a01:111:2081::,2a01:111:f00f:ffff:ffff:ffff:ffff:ffff,GB
2a01:111:f010::,2a01:111:f013:ffff:ffff:ffff:ffff:ffff,US
2a01:111:f014::,2a01:111:f0ff:ffff:ffff:ffff:ffff:ffff,GB
-2a01:111:f100::,2a01:111:f100:4fff:ffff:ffff:ffff:ffff,US
-2a01:111:f100:5000::,2a01:111:f100:5fff:ffff:ffff:ffff:ffff,GB
+2a01:111:f100::,2a01:111:f100:5fff:ffff:ffff:ffff:ffff,US
2a01:111:f100:6000::,2a01:111:f100:6fff:ffff:ffff:ffff:ffff,HK
2a01:111:f100:7000::,2a01:111:f100:7fff:ffff:ffff:ffff:ffff,SG
2a01:111:f100:8000::,2a01:111:f100:9fff:ffff:ffff:ffff:ffff,NL
@@ -26535,7 +27040,9 @@
2a01:111:f103:1000::,2a01:111:f103:1fff:ffff:ffff:ffff:ffff,SG
2a01:111:f103:2000::,2a01:111:f20a:ffff:ffff:ffff:ffff:ffff,GB
2a01:111:f20b::,2a01:111:f20b:ffff:ffff:ffff:ffff:ffff,IE
-2a01:111:f20c::,2a01:111:f306:178f:ffff:ffff:ffff:ffff,GB
+2a01:111:f20c::,2a01:111:f20f:ffff:ffff:ffff:ffff:ffff,GB
+2a01:111:f210::,2a01:111:f210:ffff:ffff:ffff:ffff:ffff,US
+2a01:111:f211::,2a01:111:f306:178f:ffff:ffff:ffff:ffff,GB
2a01:111:f306:1790::,2a01:111:f306:1791:ffff:ffff:ffff:ffff,US
2a01:111:f306:1792::,2a01:111:f30b:178f:ffff:ffff:ffff:ffff,GB
2a01:111:f30b:1790::,2a01:111:f30b:1790:ffff:ffff:ffff:ffff,US
@@ -26587,8 +27094,8 @@
2a01:111:f400:31e1::,2a01:111:f400:33ff:ffff:ffff:ffff:ffff,GB
2a01:111:f400:3400::,2a01:111:f400:3432:ffff:ffff:ffff:ffff,US
2a01:111:f400:3433::,2a01:111:f400:3bff:ffff:ffff:ffff:ffff,GB
-2a01:111:f400:3c00::,2a01:111:f400:43ff:ffff:ffff:ffff:ffff,US
-2a01:111:f400:4400::,2a01:111:f400:4bff:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:3c00::,2a01:111:f400:47ff:ffff:ffff:ffff:ffff,US
+2a01:111:f400:4800::,2a01:111:f400:4bff:ffff:ffff:ffff:ffff,GB
2a01:111:f400:4c00::,2a01:111:f400:4fff:ffff:ffff:ffff:ffff,US
2a01:111:f400:5000::,2a01:111:f400:5013:ffff:ffff:ffff:ffff,GB
2a01:111:f400:5014::,2a01:111:f400:502a:ffff:ffff:ffff:ffff,US
@@ -26668,9 +27175,9 @@
2a01:111:f400:6030::,2a01:111:f400:6031:ffff:ffff:ffff:ffff,SG
2a01:111:f400:6032::,2a01:111:f400:6033:ffff:ffff:ffff:ffff,MY
2a01:111:f400:6034::,2a01:111:f400:6035:ffff:ffff:ffff:ffff,HK
-2a01:111:f400:6036::,2a01:111:f400:6037:ffff:ffff:ffff:ffff,GB
-2a01:111:f400:6038::,2a01:111:f400:6039:ffff:ffff:ffff:ffff,BR
-2a01:111:f400:603a::,2a01:111:f400:6043:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:6036::,2a01:111:f400:6039:ffff:ffff:ffff:ffff,BR
+2a01:111:f400:603a::,2a01:111:f400:603d:ffff:ffff:ffff:ffff,US
+2a01:111:f400:603e::,2a01:111:f400:6043:ffff:ffff:ffff:ffff,GB
2a01:111:f400:6044::,2a01:111:f400:6045:ffff:ffff:ffff:ffff,US
2a01:111:f400:6046::,2a01:111:f400:6047:ffff:ffff:ffff:ffff,IN
2a01:111:f400:6048::,2a01:111:f400:6049:ffff:ffff:ffff:ffff,GB
@@ -26710,7 +27217,8 @@
2a01:111:f400:6096::,2a01:111:f400:6096:ffff:ffff:ffff:ffff,GB
2a01:111:f400:6097::,2a01:111:f400:6098:ffff:ffff:ffff:ffff,US
2a01:111:f400:6099::,2a01:111:f400:6099:ffff:ffff:ffff:ffff,CL
-2a01:111:f400:609a::,2a01:111:f400:60a6:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:609a::,2a01:111:f400:60a5:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:60a6::,2a01:111:f400:60a6:ffff:ffff:ffff:ffff,BR
2a01:111:f400:60a7::,2a01:111:f400:60a8:ffff:ffff:ffff:ffff,CA
2a01:111:f400:60a9::,2a01:111:f400:60a9:ffff:ffff:ffff:ffff,GB
2a01:111:f400:60aa::,2a01:111:f400:60ab:ffff:ffff:ffff:ffff,DE
@@ -26739,7 +27247,13 @@
2a01:111:f400:70b7::,2a01:111:f400:70d1:ffff:ffff:ffff:ffff,HK
2a01:111:f400:70d2::,2a01:111:f400:70e6:ffff:ffff:ffff:ffff,GB
2a01:111:f400:70e7::,2a01:111:f400:7116:ffff:ffff:ffff:ffff,IE
-2a01:111:f400:7117::,2a01:111:f400:7c0f:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:7117::,2a01:111:f400:73ff:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:7400::,2a01:111:f400:742d:ffff:ffff:ffff:ffff,US
+2a01:111:f400:742e::,2a01:111:f400:7431:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:7432::,2a01:111:f400:7432:ffff:ffff:ffff:ffff,US
+2a01:111:f400:7433::,2a01:111:f400:74ff:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:7500::,2a01:111:f400:77ff:ffff:ffff:ffff:ffff,US
+2a01:111:f400:7800::,2a01:111:f400:7c0f:ffff:ffff:ffff:ffff,GB
2a01:111:f400:7c10::,2a01:111:f400:7c17:ffff:ffff:ffff:ffff,US
2a01:111:f400:7c18::,2a01:111:f400:7c18:ffff:ffff:ffff:ffff,HK
2a01:111:f400:7c19::,2a01:111:f400:7e01:ffff:ffff:ffff:ffff,GB
@@ -26969,7 +27483,7 @@
2a01:111:f400:f512::,2a01:111:f400:f531:ffff:ffff:ffff:ffff,US
2a01:111:f400:f532::,2a01:111:f400:f53f:ffff:ffff:ffff:ffff,IE
2a01:111:f400:f540::,2a01:111:f400:f543:ffff:ffff:ffff:ffff,US
-2a01:111:f400:f544::,2a01:111:f400:f547:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:f544::,2a01:111:f400:f547:ffff:ffff:ffff:ffff,BR
2a01:111:f400:f548::,2a01:111:f400:f54e:ffff:ffff:ffff:ffff,HK
2a01:111:f400:f54f::,2a01:111:f400:f554:ffff:ffff:ffff:ffff,JP
2a01:111:f400:f555::,2a01:111:f400:f556:ffff:ffff:ffff:ffff,SG
@@ -27035,7 +27549,9 @@
2a01:111:f400:ffcc::,2a01:111:f400:ffcc:ffff:ffff:ffff:ffff,FI
2a01:111:f400:ffcd::,2a01:111:f400:ffd1:ffff:ffff:ffff:ffff,GB
2a01:111:f400:ffd2::,2a01:111:f400:ffd2:ffff:ffff:ffff:ffff,FR
-2a01:111:f400:ffd3::,2a01:111:f400:ffe7:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:ffd3::,2a01:111:f400:ffe4:ffff:ffff:ffff:ffff,GB
+2a01:111:f400:ffe5::,2a01:111:f400:ffe5:ffff:ffff:ffff:ffff,US
+2a01:111:f400:ffe6::,2a01:111:f400:ffe7:ffff:ffff:ffff:ffff,GB
2a01:111:f400:ffe8::,2a01:111:f400:ffe9:ffff:ffff:ffff:ffff,US
2a01:111:f400:ffea::,2a01:111:f400:ffff:ffff:ffff:ffff:ffff,GB
2a01:111:f401::,2a01:111:f401::ffff:ffff:ffff:ffff,US
@@ -27096,7 +27612,8 @@
2a01:111:f402:c000::,2a01:111:f402:c3ff:ffff:ffff:ffff:ffff,FR
2a01:111:f402:c400::,2a01:111:f402:cbff:ffff:ffff:ffff:ffff,US
2a01:111:f402:cc00::,2a01:111:f402:cfff:ffff:ffff:ffff:ffff,IN
-2a01:111:f402:d000::,2a01:111:f404:c05:ffff:ffff:ffff:ffff,GB
+2a01:111:f402:d000::,2a01:111:f402:d3ff:ffff:ffff:ffff:ffff,IE
+2a01:111:f402:d400::,2a01:111:f404:c05:ffff:ffff:ffff:ffff,GB
2a01:111:f404:c06::,2a01:111:f404:c0a:ffff:ffff:ffff:ffff,US
2a01:111:f404:c0b::,2a01:111:f404:33ff:ffff:ffff:ffff:ffff,GB
2a01:111:f404:3400::,2a01:111:f404:37ff:ffff:ffff:ffff:ffff,US
@@ -27199,7 +27716,7 @@
2a01:2b0:2000:114::,2a01:2b7:ffff:ffff:ffff:ffff:ffff:ffff,SE
2a01:2b8::,2a01:2b8:ffff:ffff:ffff:ffff:ffff:ffff,GR
2a01:2c0::,2a01:2c7:ffff:ffff:ffff:ffff:ffff:ffff,GB
-2a01:2c8::,2a01:2c8:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a01:2c8::,2a01:2cf:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a01:2d0::,2a01:2d0:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a01:2d8::,2a01:2df:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a01:2e0::,2a01:2ef:ffff:ffff:ffff:ffff:ffff:ffff,PL
@@ -28639,7 +29156,7 @@
2a02:458::,2a02:458:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a02:460::,2a02:460:ffff:ffff:ffff:ffff:ffff:ffff,DK
2a02:468::,2a02:46f:ffff:ffff:ffff:ffff:ffff:ffff,FR
-2a02:470::,2a02:470:ffff:ffff:ffff:ffff:ffff:ffff,SE
+2a02:470::,2a02:477:ffff:ffff:ffff:ffff:ffff:ffff,SE
2a02:478::,2a02:478:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a02:480::,2a02:480:ffff:ffff:ffff:ffff:ffff:ffff,TR
2a02:488::,2a02:488:ffff:ffff:ffff:ffff:ffff:ffff,FR
@@ -28830,7 +29347,7 @@
2a02:aa0::,2a02:aa6:ffff:ffff:ffff:ffff:ffff:ffff,SE
2a02:aa7::,2a02:aa7:ffff:ffff:ffff:ffff:ffff:ffff,DK
2a02:aa8::,2a02:aaf:ffff:ffff:ffff:ffff:ffff:ffff,ES
-2a02:ab0::,2a02:ab0:ffff:ffff:ffff:ffff:ffff:ffff,CH
+2a02:ab0::,2a02:ab7:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a02:ab8::,2a02:abf:ffff:ffff:ffff:ffff:ffff:ffff,AT
2a02:ac0::,2a02:ac0:ffff:ffff:ffff:ffff:ffff:ffff,SE
2a02:ac8::,2a02:ac8:ffff:ffff:ffff:ffff:ffff:ffff,HR
@@ -29001,7 +29518,7 @@
2a02:1205:c6a3:8000::,2a02:1205:c6a3:ffff:ffff:ffff:ffff:ffff,FR
2a02:1205:c6a4::,2a02:121f:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a02:1300::,2a02:1300:ffff:ffff:ffff:ffff:ffff:ffff,IS
-2a02:1308::,2a02:1308:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a02:1308::,2a02:130f:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a02:1310::,2a02:1310:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a02:1318::,2a02:1318:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a02:1320::,2a02:1320:ffff:ffff:ffff:ffff:ffff:ffff,PL
@@ -29866,7 +30383,9 @@
2a02:6ea0:c900::,2a02:6ea0:c9ff:ffff:ffff:ffff:ffff:ffff,FR
2a02:6ea0:ca00::,2a02:6ea0:cc00::,GB
2a02:6ea0:cc00::1,2a02:6ea0:cc00::1,US
-2a02:6ea0:cc00::2,2a02:6ea0:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a02:6ea0:cc00::2,2a02:6ea0:ce00::,GB
+2a02:6ea0:ce00::1,2a02:6ea0:ce00::1,PL
+2a02:6ea0:ce00::2,2a02:6ea0:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a02:6ec0::,2a02:6ec7:ffff:ffff:ffff:ffff:ffff:ffff,IR
2a02:6f00::,2a02:6f00:ffff:ffff:ffff:ffff:ffff:ffff,LU
2a02:6f20::,2a02:6f20:ffff:ffff:ffff:ffff:ffff:ffff,DE
@@ -30087,7 +30606,7 @@
2a02:c6c0::,2a02:c6c7:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a02:c700::,2a02:c707:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a02:c740::,2a02:c747:ffff:ffff:ffff:ffff:ffff:ffff,DE
-2a02:c780::,2a02:c787:ffff:ffff:ffff:ffff:ffff:ffff,LV
+2a02:c780::,2a02:c787:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a02:c7c0::,2a02:c7c7:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a02:c800::,2a02:c807:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a02:c840::,2a02:c847:ffff:ffff:ffff:ffff:ffff:ffff,GB
@@ -30514,7 +31033,6 @@
2a03:1800::,2a03:1800:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a03:1820::,2a03:1820:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a03:1840::,2a03:1840:ffff:ffff:ffff:ffff:ffff:ffff,CZ
-2a03:1860::,2a03:1860:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a03:1880::,2a03:1880:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a03:18a0::,2a03:18a0:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a03:18e0::,2a03:18e0:ffff:ffff:ffff:ffff:ffff:ffff,FR
@@ -30538,7 +31056,6 @@
2a03:1b20::,2a03:1b20:2:ffff:ffff:ffff:ffff:ffff,SE
2a03:1b20:3::,2a03:1b20:3:ffff:ffff:ffff:ffff:ffff,NL
2a03:1b20:4::,2a03:1b20:ffff:ffff:ffff:ffff:ffff:ffff,SE
-2a03:1b40::,2a03:1b40:ffff:ffff:ffff:ffff:ffff:ffff,RS
2a03:1b60::,2a03:1b60:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a03:1b80::,2a03:1b87:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a03:1bc0::,2a03:1bc0:ffff:ffff:ffff:ffff:ffff:ffff,FR
@@ -31788,7 +32305,7 @@
2a03:af20::,2a03:af20:ffff:ffff:ffff:ffff:ffff:ffff,BE
2a03:af40::,2a03:af40:ffff:ffff:ffff:ffff:ffff:ffff,MK
2a03:af60::,2a03:af60:ffff:ffff:ffff:ffff:ffff:ffff,RU
-2a03:af80::,2a03:af80:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a03:af80::,2a03:af87:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a03:afa0::,2a03:afa0:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a03:afc0::,2a03:afc0:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a03:afe0::,2a03:afe7:ffff:ffff:ffff:ffff:ffff:ffff,NL
@@ -32953,7 +33470,6 @@
2a03:d200::,2a03:d200:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a03:d240::,2a03:d240:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a03:d280::,2a03:d280:ffff:ffff:ffff:ffff:ffff:ffff,FR
-2a03:d2c0::,2a03:d2c0:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a03:d300::,2a03:d300:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a03:d340::,2a03:d340:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a03:d380::,2a03:d380:ffff:ffff:ffff:ffff:ffff:ffff,CH
@@ -32981,6 +33497,7 @@
2a03:d900::,2a03:d900:ffff:ffff:ffff:ffff:ffff:ffff,SE
2a03:d940::,2a03:d940:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a03:d980::,2a03:d980:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a03:d9c0::,2a03:d9c7:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a03:da00::,2a03:da00:ffff:ffff:ffff:ffff:ffff:ffff,HU
2a03:da40::,2a03:da40:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a03:da80::,2a03:da80:ffff:ffff:ffff:ffff:ffff:ffff,AT
@@ -33193,7 +33710,7 @@
2a04:d00::,2a04:d07:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a04:d40::,2a04:d47:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a04:d80::,2a04:d87:ffff:ffff:ffff:ffff:ffff:ffff,RU
-2a04:dc0::,2a04:dc7:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a04:dc0::,2a04:dc7:ffff:ffff:ffff:ffff:ffff:ffff,US
2a04:e00::,2a04:e07:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a04:e40::,2a04:e47:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a04:e80::,2a04:e87:ffff:ffff:ffff:ffff:ffff:ffff,ES
@@ -34282,7 +34799,6 @@
2a05:1d80::,2a05:1d87:ffff:ffff:ffff:ffff:ffff:ffff,TR
2a05:1dc0::,2a05:1dc7:ffff:ffff:ffff:ffff:ffff:ffff,IE
2a05:1e00::,2a05:1e07:ffff:ffff:ffff:ffff:ffff:ffff,CH
-2a05:1e40::,2a05:1e47:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a05:1e80::,2a05:1e87:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a05:1ec0::,2a05:1ec7:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a05:1f00::,2a05:1f07:ffff:ffff:ffff:ffff:ffff:ffff,GB
@@ -34512,7 +35028,6 @@
2a05:5880::,2a05:5887:ffff:ffff:ffff:ffff:ffff:ffff,NO
2a05:58c0::,2a05:58c7:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a05:5900::,2a05:5907:ffff:ffff:ffff:ffff:ffff:ffff,DE
-2a05:5940::,2a05:5947:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a05:5980::,2a05:5987:ffff:ffff:ffff:ffff:ffff:ffff,IR
2a05:59c0::,2a05:59c7:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a05:5a40::,2a05:5a47:ffff:ffff:ffff:ffff:ffff:ffff,DE
@@ -34740,7 +35255,6 @@
2a05:9500::,2a05:9507:ffff:ffff:ffff:ffff:ffff:ffff,TR
2a05:9540::,2a05:9547:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a05:9580::,2a05:9587:ffff:ffff:ffff:ffff:ffff:ffff,HU
-2a05:95c0::,2a05:95c7:ffff:ffff:ffff:ffff:ffff:ffff,TR
2a05:9600::,2a05:9607:ffff:ffff:ffff:ffff:ffff:ffff,IE
2a05:9680::,2a05:9687:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a05:96c0::,2a05:96c7:ffff:ffff:ffff:ffff:ffff:ffff,NL
@@ -34980,7 +35494,9 @@
2a05:d050:2000::,2a05:d050:20ff:ffff:ffff:ffff:ffff:ffff,FR
2a05:d050:2100::,2a05:d050:3fff:ffff:ffff:ffff:ffff:ffff,IE
2a05:d050:4000::,2a05:d050:40ff:ffff:ffff:ffff:ffff:ffff,DE
-2a05:d050:4100::,2a05:d050:bfff:ffff:ffff:ffff:ffff:ffff,IE
+2a05:d050:4100::,2a05:d050:5fff:ffff:ffff:ffff:ffff:ffff,IE
+2a05:d050:6000::,2a05:d050:60ff:ffff:ffff:ffff:ffff:ffff,SE
+2a05:d050:6100::,2a05:d050:bfff:ffff:ffff:ffff:ffff:ffff,IE
2a05:d050:c000::,2a05:d050:c0ff:ffff:ffff:ffff:ffff:ffff,GB
2a05:d050:c100::,2a05:d078:1fff:ffff:ffff:ffff:ffff:ffff,IE
2a05:d078:2000::,2a05:d078:20ff:ffff:ffff:ffff:ffff:ffff,FR
@@ -35100,7 +35616,7 @@
2a05:dfc7:bef0::,2a05:dfc7:dfc6:ffff:ffff:ffff:ffff:ffff,GB
2a05:dfc7:dfc7::,2a05:dfc7:dfc7:ffff:ffff:ffff:ffff:ffff,UA
2a05:dfc7:dfc8::,2a05:dfc7:dfc8:1d4::b4ec,US
-2a05:dfc7:dfc8:1d4::b4ed,2a05:dfc7:dfc8:1d4::b4ed,TF
+2a05:dfc7:dfc8:1d4::b4ed,2a05:dfc7:dfc8:1d4::b4ed,UA
2a05:dfc7:dfc8:1d4::b4ee,2a05:dfc7:dfc8:ffff:ffff:ffff:ffff:ffff,US
2a05:dfc7:dfc9::,2a05:dfc7:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a05:e000::,2a05:e007:ffff:ffff:ffff:ffff:ffff:ffff,DK
@@ -35144,7 +35660,7 @@
2a05:ea00::,2a05:ea07:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a05:ea40::,2a05:ea47:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a05:ea80::,2a05:ea87:ffff:ffff:ffff:ffff:ffff:ffff,GB
-2a05:eb20::,2a05:eb23:ffff:ffff:ffff:ffff:ffff:ffff,BE
+2a05:eb20::,2a05:eb27:ffff:ffff:ffff:ffff:ffff:ffff,BE
2a05:eb40::,2a05:eb47:ffff:ffff:ffff:ffff:ffff:ffff,NO
2a05:eb80::,2a05:eb87:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a05:ebc0::,2a05:ebc7:ffff:ffff:ffff:ffff:ffff:ffff,CZ
@@ -35270,7 +35786,6 @@
2a06:b40::,2a06:b47:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a06:b80::,2a06:b87:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a06:c00::,2a06:c07:ffff:ffff:ffff:ffff:ffff:ffff,CH
-2a06:c40::,2a06:c47:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a06:c80::,2a06:c87:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a06:cc0::,2a06:cc7:ffff:ffff:ffff:ffff:ffff:ffff,SK
2a06:d00::,2a06:d07:ffff:ffff:ffff:ffff:ffff:ffff,IT
@@ -35744,7 +36259,9 @@
2a06:8187:fd04::,2a06:8187:fd98:ffff:ffff:ffff:ffff:ffff,FR
2a06:8187:fd99::,2a06:8187:fd99:ffff:ffff:ffff:ffff:ffff,LI
2a06:8187:fd9a::,2a06:8187:fdff:ffff:ffff:ffff:ffff:ffff,FR
-2a06:8187:fe00::,2a06:8187:fe16:ffff:ffff:ffff:ffff:ffff,GB
+2a06:8187:fe00::,2a06:8187:fe13:ffff:ffff:ffff:ffff:ffff,GB
+2a06:8187:fe14::,2a06:8187:fe14:ffff:ffff:ffff:ffff:ffff,CH
+2a06:8187:fe15::,2a06:8187:fe16:ffff:ffff:ffff:ffff:ffff,GB
2a06:8187:fe17::,2a06:8187:fe17:ffff:ffff:ffff:ffff:ffff,CA
2a06:8187:fe18::,2a06:8187:fe24:ffff:ffff:ffff:ffff:ffff,GB
2a06:8187:fe25::,2a06:8187:fe25:ffff:ffff:ffff:ffff:ffff,HR
@@ -35908,7 +36425,6 @@
2a06:a880::,2a06:a887:ffff:ffff:ffff:ffff:ffff:ffff,RO
2a06:a8c0::,2a06:a8c7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a06:a940::,2a06:a947:ffff:ffff:ffff:ffff:ffff:ffff,TR
-2a06:a980::,2a06:a987:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a06:a9c0::,2a06:a9c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a06:aa40::,2a06:aa47:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a06:aa80::,2a06:aa87:ffff:ffff:ffff:ffff:ffff:ffff,RU
@@ -36166,7 +36682,9 @@
2a06:e881:2100::,2a06:e881:210f:ffff:ffff:ffff:ffff:ffff,DE
2a06:e881:2110::,2a06:e881:36ff:ffff:ffff:ffff:ffff:ffff,CH
2a06:e881:3700::,2a06:e881:370f:ffff:ffff:ffff:ffff:ffff,DE
-2a06:e881:3710::,2a06:e881:4000:ffff:ffff:ffff:ffff:ffff,CH
+2a06:e881:3710::,2a06:e881:37ff:ffff:ffff:ffff:ffff:ffff,CH
+2a06:e881:3800::,2a06:e881:3800:ffff:ffff:ffff:ffff:ffff,CN
+2a06:e881:3801::,2a06:e881:4000:ffff:ffff:ffff:ffff:ffff,CH
2a06:e881:4001::,2a06:e881:4001:ffff:ffff:ffff:ffff:ffff,GB
2a06:e881:4002::,2a06:e887:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a06:e8c0::,2a06:e8c7:ffff:ffff:ffff:ffff:ffff:ffff,LV
@@ -36313,7 +36831,6 @@
2a07:d40::,2a07:d47:ffff:ffff:ffff:ffff:ffff:ffff,BE
2a07:d80::,2a07:d87:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a07:dc0::,2a07:dc7:ffff:ffff:ffff:ffff:ffff:ffff,RU
-2a07:e00::,2a07:e07:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a07:e40::,2a07:e47:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a07:e80::,2a07:e87:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a07:ec0::,2a07:ec7:ffff:ffff:ffff:ffff:ffff:ffff,DK
@@ -36384,7 +36901,9 @@
2a07:1c44:1801::,2a07:1c44:1802:ffff:ffff:ffff:ffff:ffff,US
2a07:1c44:1803::,2a07:1c44:35ff:ffff:ffff:ffff:ffff:ffff,AT
2a07:1c44:3600::,2a07:1c44:36ff:ffff:ffff:ffff:ffff:ffff,GB
-2a07:1c44:3700::,2a07:1c44:3fff:ffff:ffff:ffff:ffff:ffff,AT
+2a07:1c44:3700::,2a07:1c44:397f:ffff:ffff:ffff:ffff:ffff,AT
+2a07:1c44:3980::,2a07:1c44:39ff:ffff:ffff:ffff:ffff:ffff,US
+2a07:1c44:3a00::,2a07:1c44:3fff:ffff:ffff:ffff:ffff:ffff,AT
2a07:1c44:4000::,2a07:1c44:40ff:ffff:ffff:ffff:ffff:ffff,US
2a07:1c44:4100::,2a07:1c44:42ff:ffff:ffff:ffff:ffff:ffff,AT
2a07:1c44:4300::,2a07:1c44:430f:ffff:ffff:ffff:ffff:ffff,HR
@@ -36403,7 +36922,6 @@
2a07:1e40::,2a07:1e47:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a07:1e80::,2a07:1e87:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a07:1ec0::,2a07:1ec7:ffff:ffff:ffff:ffff:ffff:ffff,IT
-2a07:1f00::,2a07:1f07:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a07:1f40::,2a07:1f47:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a07:1f80::,2a07:1f87:ffff:ffff:ffff:ffff:ffff:ffff,US
2a07:1fc0::,2a07:1fc7:ffff:ffff:ffff:ffff:ffff:ffff,FR
@@ -36458,7 +36976,7 @@
2a07:2d00::,2a07:2d07:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a07:2d40::,2a07:2d47:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a07:2d80::,2a07:2d87:ffff:ffff:ffff:ffff:ffff:ffff,FR
-2a07:2dc0::,2a07:2dc7:ffff:ffff:ffff:ffff:ffff:ffff,FI
+2a07:2dc0::,2a07:2dc7:ffff:ffff:ffff:ffff:ffff:ffff,AT
2a07:2e00::,2a07:2e07:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a07:2e40::,2a07:2e47:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a07:2e80::,2a07:2e87:ffff:ffff:ffff:ffff:ffff:ffff,IT
@@ -36483,7 +37001,7 @@
2a07:3340::,2a07:3347:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a07:3380::,2a07:3387:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a07:33c0::,2a07:33c7:ffff:ffff:ffff:ffff:ffff:ffff,DE
-2a07:3400::,2a07:3407:ffff:ffff:ffff:ffff:ffff:ffff,UA
+2a07:3400::,2a07:3407:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a07:3440::,2a07:3447:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a07:3480::,2a07:3487:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a07:3500::,2a07:3507:ffff:ffff:ffff:ffff:ffff:ffff,NL
@@ -36956,7 +37474,9 @@
2a07:a904:1000::,2a07:a904:10cc:ffff:ffff:ffff:ffff:ffff,NL
2a07:a904:10cd::,2a07:a904:10cd:ffff:ffff:ffff:ffff:ffff,DE
2a07:a904:10ce::,2a07:a904:10ff:ffff:ffff:ffff:ffff:ffff,NL
-2a07:a904:1100::,2a07:a905:ffef:ffff:ffff:ffff:ffff:ffff,GB
+2a07:a904:1100::,2a07:a905:ffeb:ffff:ffff:ffff:ffff:ffff,GB
+2a07:a905:ffec::,2a07:a905:ffec:ffff:ffff:ffff:ffff:ffff,CZ
+2a07:a905:ffed::,2a07:a905:ffef:ffff:ffff:ffff:ffff:ffff,GB
2a07:a905:fff0::,2a07:a905:fff0:ffff:ffff:ffff:ffff:ffff,US
2a07:a905:fff1::,2a07:a907:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a07:a940::,2a07:a947:ffff:ffff:ffff:ffff:ffff:ffff,RU
@@ -37152,7 +37672,7 @@
2a0a:b00::,2a0a:b07:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0a:b40::,2a0a:b47:ffff:ffff:ffff:ffff:ffff:ffff,DK
2a0a:b80::,2a0a:b87:ffff:ffff:ffff:ffff:ffff:ffff,IS
-2a0a:bc0::,2a0a:bc0:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0a:bc0::,2a0a:bc7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0a:c00::,2a0a:c07:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0a:c40::,2a0a:c47:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0a:c80::,2a0a:c87:ffff:ffff:ffff:ffff:ffff:ffff,IR
@@ -37246,6 +37766,7 @@
2a0a:2240::,2a0a:2247:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0a:2280::,2a0a:2287:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a0a:22c0::,2a0a:22c7:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0a:2300::,2a0a:2303:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0a:2340::,2a0a:2347:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0a:2380::,2a0a:2380:ffff:ffff:ffff:ffff:ffff:ffff,LV
2a0a:23c0::,2a0a:23c7:ffff:ffff:ffff:ffff:ffff:ffff,GB
@@ -37596,7 +38117,6 @@
2a0a:78c0::,2a0a:78c7:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0a:7900::,2a0a:7907:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0a:7940::,2a0a:7940:ffff:ffff:ffff:ffff:ffff:ffff,TR
-2a0a:7980::,2a0a:7987:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0a:79c0::,2a0a:79c7:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a0a:7a00::,2a0a:7a03:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0a:7a04::,2a0a:7a04::ffff:ffff:ffff:ffff:ffff,BR
@@ -38333,9 +38853,7 @@
2a0b:2a00::,2a0b:2a07:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0b:2a40::,2a0b:2a47:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0b:2a80::,2a0b:2a84:ffff:ffff:ffff:ffff:ffff:ffff,RU
-2a0b:2a85::,2a0b:2a85:ffff:ffff:ffff:ffff:ffff:ffff,US
-2a0b:2a86::,2a0b:2a86:ffff:ffff:ffff:ffff:ffff:ffff,RU
-2a0b:2a87::,2a0b:2a87:ffff:ffff:ffff:ffff:ffff:ffff,US
+2a0b:2a85::,2a0b:2a87:ffff:ffff:ffff:ffff:ffff:ffff,US
2a0b:2ac0::,2a0b:2ac7:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a0b:2b00::,2a0b:2b07:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0b:2b40::,2a0b:2b47:ffff:ffff:ffff:ffff:ffff:ffff,DE
@@ -38513,6 +39031,7 @@
2a0b:5400::,2a0b:5400:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a0b:5440::,2a0b:5447:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0b:5480::,2a0b:5487:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0b:54c0::,2a0b:54c7:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0b:5500::,2a0b:5507:ffff:ffff:ffff:ffff:ffff:ffff,AT
2a0b:5540::,2a0b:5547:ffff:ffff:ffff:ffff:ffff:ffff,TR
2a0b:5580::,2a0b:5587:ffff:ffff:ffff:ffff:ffff:ffff,IT
@@ -38766,7 +39285,6 @@
2a0b:93c0::,2a0b:93c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0b:9400::,2a0b:9407:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0b:9440::,2a0b:9447:ffff:ffff:ffff:ffff:ffff:ffff,NL
-2a0b:9480::,2a0b:9480:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0b:94c0::,2a0b:94c0:ffff:ffff:ffff:ffff:ffff:ffff,PT
2a0b:9500::,2a0b:9507:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a0b:9540::,2a0b:9547:ffff:ffff:ffff:ffff:ffff:ffff,UZ
@@ -38831,6 +39349,7 @@
2a0b:a340::,2a0b:a347:ffff:ffff:ffff:ffff:ffff:ffff,LV
2a0b:a380::,2a0b:a380:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0b:a3c0::,2a0b:a3c7:ffff:ffff:ffff:ffff:ffff:ffff,AM
+2a0b:a400::,2a0b:a407:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0b:a440::,2a0b:a447:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0b:a480::,2a0b:a480:ffff:ffff:ffff:ffff:ffff:ffff,LB
2a0b:a4c0::,2a0b:a4c7:ffff:ffff:ffff:ffff:ffff:ffff,RS
@@ -38991,7 +39510,6 @@
2a0b:cb80::,2a0b:cb80:ffff:ffff:ffff:ffff:ffff:ffff,BE
2a0b:cbc0::,2a0b:cbc7:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0b:cc00::,2a0b:cc00:ffff:ffff:ffff:ffff:ffff:ffff,BG
-2a0b:cc40::,2a0b:cc47:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0b:cc80::,2a0b:cc87:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0b:ccc0::,2a0b:ccc7:ffff:ffff:ffff:ffff:ffff:ffff,DK
2a0b:cd00::,2a0b:cd07:ffff:ffff:ffff:ffff:ffff:ffff,GB
@@ -39147,7 +39665,6 @@
2a0b:f280::,2a0b:f287:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0b:f2c0::,2a0b:f2c7:ffff:ffff:ffff:ffff:ffff:ffff,US
2a0b:f300::,2a0b:f307:ffff:ffff:ffff:ffff:ffff:ffff,GB
-2a0b:f340::,2a0b:f340:ffff:ffff:ffff:ffff:ffff:ffff,IQ
2a0b:f380::,2a0b:f387:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0b:f3c0::,2a0b:f3c7:ffff:ffff:ffff:ffff:ffff:ffff,LV
2a0b:f400::,2a0b:f400:ffff:ffff:ffff:ffff:ffff:ffff,DE
@@ -39386,7 +39903,10 @@
2a0c:2e80::,2a0c:2e87:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0c:2ec0::,2a0c:2ec7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:2f00::,2a0c:2f07:ffff:ffff:ffff:ffff:ffff:ffff,GB
-2a0c:2f40::,2a0c:2f47:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:2f40::,2a0c:2f43:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:2f44::,2a0c:2f44:ffff:ffff:ffff:ffff:ffff:ffff,US
+2a0c:2f45::,2a0c:2f46:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:2f47::,2a0c:2f47:ffff:ffff:ffff:ffff:ffff:ffff,US
2a0c:2f80::,2a0c:2f87:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a0c:2fc0::,2a0c:2fc7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3000::,2a0c:3000:ffff:ffff:ffff:ffff:ffff:ffff,DE
@@ -39402,186 +39922,365 @@
2a0c:3280::,2a0c:3287:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:32c0::,2a0c:32c7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:3300::,2a0c:3307:ffff:ffff:ffff:ffff:ffff:ffff,LB
+2a0c:3340::,2a0c:3347:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3380::,2a0c:3387:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:33c0::,2a0c:33c7:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0c:3400::,2a0c:3407:ffff:ffff:ffff:ffff:ffff:ffff,UA
+2a0c:3440::,2a0c:3447:ffff:ffff:ffff:ffff:ffff:ffff,IQ
2a0c:3480::,2a0c:3487:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:34c0::,2a0c:34c7:ffff:ffff:ffff:ffff:ffff:ffff,LV
2a0c:3500::,2a0c:3507:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:3540::,2a0c:3547:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:3580::,2a0c:3587:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:35c0::,2a0c:35c7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:3600::,2a0c:3600:ffff:ffff:ffff:ffff:ffff:ffff,MD
+2a0c:3640::,2a0c:3647:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a0c:3680::,2a0c:3687:ffff:ffff:ffff:ffff:ffff:ffff,IR
+2a0c:36c0::,2a0c:36c7:ffff:ffff:ffff:ffff:ffff:ffff,EE
2a0c:3700::,2a0c:3700:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0c:3740::,2a0c:3747:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3780::,2a0c:3787:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:37c0::,2a0c:37c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3800::,2a0c:3800:ffff:ffff:ffff:ffff:ffff:ffff,CH
+2a0c:3840::,2a0c:3847:ffff:ffff:ffff:ffff:ffff:ffff,LB
2a0c:3880::,2a0c:3887:ffff:ffff:ffff:ffff:ffff:ffff,IR
+2a0c:38c0::,2a0c:38c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3900::,2a0c:3907:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:3940::,2a0c:3947:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3980::,2a0c:3987:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:39c0::,2a0c:39c7:ffff:ffff:ffff:ffff:ffff:ffff,JO
2a0c:3a00::,2a0c:3a07:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:3a40::,2a0c:3a47:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3a80::,2a0c:3a87:ffff:ffff:ffff:ffff:ffff:ffff,UA
+2a0c:3ac0::,2a0c:3ac7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:3b00::,2a0c:3b07:ffff:ffff:ffff:ffff:ffff:ffff,MD
+2a0c:3b40::,2a0c:3b47:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:3b80::,2a0c:3b80:4c48:ffff:ffff:ffff:ffff:ffff,CH
2a0c:3b80:4c49::,2a0c:3b80:4c49:ffff:ffff:ffff:ffff:ffff,LI
2a0c:3b80:4c4a::,2a0c:3b87:ffff:ffff:ffff:ffff:ffff:ffff,CH
+2a0c:3bc0::,2a0c:3bc7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3c00::,2a0c:3c07:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:3c40::,2a0c:3c40:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:3c80::,2a0c:3c87:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:3cc0::,2a0c:3cc0:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0c:3d00::,2a0c:3d07:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:3d40::,2a0c:3d40:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3d80::,2a0c:3d87:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:3dc0::,2a0c:3dc7:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:3e00::,2a0c:3e07:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0c:3e40::,2a0c:3e47:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:3e80::,2a0c:3e87:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0c:3ec0::,2a0c:3ec7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:3f00::,2a0c:3f07:ffff:ffff:ffff:ffff:ffff:ffff,IT
+2a0c:3f40::,2a0c:3f40:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:3f80::,2a0c:3f87:ffff:ffff:ffff:ffff:ffff:ffff,MD
+2a0c:3fc0::,2a0c:3fc7:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0c:4000::,2a0c:4000:ffff:ffff:ffff:ffff:ffff:ffff,IR
+2a0c:4040::,2a0c:4047:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a0c:4080::,2a0c:4087:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:40c0::,2a0c:40c7:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a0c:4100::,2a0c:4107:ffff:ffff:ffff:ffff:ffff:ffff,CH
+2a0c:4140::,2a0c:4140:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0c:4180::,2a0c:4187:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:41c0::,2a0c:41c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:4200::,2a0c:4207:ffff:ffff:ffff:ffff:ffff:ffff,DK
+2a0c:4240::,2a0c:4247:ffff:ffff:ffff:ffff:ffff:ffff,IE
2a0c:4280::,2a0c:4287:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:42c0::,2a0c:42c7:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a0c:4300::,2a0c:4300:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:4340::,2a0c:4347:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:4380::,2a0c:4387:ffff:ffff:ffff:ffff:ffff:ffff,US
+2a0c:43c0::,2a0c:43c7:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:4400::,2a0c:4400:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:4440::,2a0c:4447:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:4480::,2a0c:4487:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:44c0::,2a0c:44c7:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:4500::,2a0c:4507:ffff:ffff:ffff:ffff:ffff:ffff,CY
+2a0c:4540::,2a0c:4547:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:4580::,2a0c:4587:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:45c0::,2a0c:45c7:ffff:ffff:ffff:ffff:ffff:ffff,LU
2a0c:4600::,2a0c:4607:ffff:ffff:ffff:ffff:ffff:ffff,DK
+2a0c:4640::,2a0c:4647:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0c:4680::,2a0c:4687:ffff:ffff:ffff:ffff:ffff:ffff,UA
+2a0c:46c0::,2a0c:46c7:ffff:ffff:ffff:ffff:ffff:ffff,DK
2a0c:4700::,2a0c:4707:ffff:ffff:ffff:ffff:ffff:ffff,UA
+2a0c:4740::,2a0c:4747:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:4780::,2a0c:4787:ffff:ffff:ffff:ffff:ffff:ffff,IL
+2a0c:47c0::,2a0c:47c7:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a0c:4800::,2a0c:4807:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:4840::,2a0c:4847:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:4880::,2a0c:4887:ffff:ffff:ffff:ffff:ffff:ffff,UA
+2a0c:48c0::,2a0c:48c7:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a0c:4900::,2a0c:4907:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0c:4940::,2a0c:4947:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0c:4980::,2a0c:4987:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:49c0::,2a0c:49c7:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:4a00::,2a0c:4a07:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:4a40::,2a0c:4a47:ffff:ffff:ffff:ffff:ffff:ffff,TR
2a0c:4a80::,2a0c:4a87:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:4ac0::,2a0c:4ac7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:4b00::,2a0c:4b07:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:4b40::,2a0c:4b47:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0c:4b80::,2a0c:4b87:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:4bc0::,2a0c:4bc7:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:4c00::,2a0c:4c07:ffff:ffff:ffff:ffff:ffff:ffff,IT
+2a0c:4c40::,2a0c:4c47:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:4c80::,2a0c:4c87:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:4cc0::,2a0c:4cc0:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0c:4d00::,2a0c:4d07:ffff:ffff:ffff:ffff:ffff:ffff,SC
+2a0c:4d40::,2a0c:4d47:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:4d80::,2a0c:4d87:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:4dc0::,2a0c:4dc7:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:4e00::,2a0c:4e00:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:4e40::,2a0c:4e47:ffff:ffff:ffff:ffff:ffff:ffff,AT
2a0c:4e80::,2a0c:4e87:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:4ec0::,2a0c:4ec7:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:4f00::,2a0c:4f07:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:4f40::,2a0c:4f47:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:4f80::,2a0c:4f87:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:4fc0::,2a0c:4fc7:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0c:5000::,2a0c:5003:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:5040::,2a0c:5047:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0c:5080::,2a0c:5087:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:50c0::,2a0c:50c7:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a0c:5100::,2a0c:5107:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:5140::,2a0c:5140:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:5180::,2a0c:5187:ffff:ffff:ffff:ffff:ffff:ffff,QA
+2a0c:51c0::,2a0c:51c7:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:5200::,2a0c:5207:ffff:ffff:ffff:ffff:ffff:ffff,TR
+2a0c:5240::,2a0c:5247:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:5280::,2a0c:5287:ffff:ffff:ffff:ffff:ffff:ffff,IT
+2a0c:52c0::,2a0c:52c7:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:5300::,2a0c:5307:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:5340::,2a0c:5347:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0c:5380::,2a0c:5387:ffff:ffff:ffff:ffff:ffff:ffff,BE
+2a0c:53c0::,2a0c:53c7:ffff:ffff:ffff:ffff:ffff:ffff,AT
2a0c:5400::,2a0c:5407:ffff:ffff:ffff:ffff:ffff:ffff,CH
+2a0c:5440::,2a0c:5447:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:5480::,2a0c:5487:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0c:54c0::,2a0c:54c0:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:5500::,2a0c:5500:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:5540::,2a0c:5540:ffff:ffff:ffff:ffff:ffff:ffff,HR
2a0c:5580::,2a0c:5587:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:55c0::,2a0c:55c7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:5600::,2a0c:5607:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:5640::,2a0c:5647:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:5680::,2a0c:5687:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:56c0::,2a0c:56c7:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:5700::,2a0c:5707:ffff:ffff:ffff:ffff:ffff:ffff,SE
+2a0c:5740::,2a0c:5747:ffff:ffff:ffff:ffff:ffff:ffff,FI
2a0c:5780::,2a0c:5787:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:57c0::,2a0c:57c7:ffff:ffff:ffff:ffff:ffff:ffff,MD
2a0c:5800::,2a0c:5807:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:5840::,2a0c:5847:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:5880::,2a0c:5887:ffff:ffff:ffff:ffff:ffff:ffff,BG
+2a0c:58c0::,2a0c:58c7:ffff:ffff:ffff:ffff:ffff:ffff,IQ
2a0c:5900::,2a0c:5907:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:5940::,2a0c:5947:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:5980::,2a0c:5987:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:59c0::,2a0c:59c7:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:5a00::,2a0c:5a07:ffff:ffff:ffff:ffff:ffff:ffff,NO
+2a0c:5a40::,2a0c:5a47:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a0c:5a80::,2a0c:5a87:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:5ac0::,2a0c:5ac7:ffff:ffff:ffff:ffff:ffff:ffff,SE
2a0c:5b00::,2a0c:5b07:ffff:ffff:ffff:ffff:ffff:ffff,CH
+2a0c:5b40::,2a0c:5b47:ffff:ffff:ffff:ffff:ffff:ffff,SE
2a0c:5b80::,2a0c:5b87:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:5bc0::,2a0c:5bc7:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:5c00::,2a0c:5c07:ffff:ffff:ffff:ffff:ffff:ffff,IT
+2a0c:5c40::,2a0c:5c47:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a0c:5c80::,2a0c:5c87:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:5cc0::,2a0c:5cc7:ffff:ffff:ffff:ffff:ffff:ffff,CY
2a0c:5d00::,2a0c:5d07:ffff:ffff:ffff:ffff:ffff:ffff,TR
+2a0c:5d40::,2a0c:5d47:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:5d80::,2a0c:5d87:ffff:ffff:ffff:ffff:ffff:ffff,UZ
+2a0c:5dc0::,2a0c:5dc7:ffff:ffff:ffff:ffff:ffff:ffff,TR
2a0c:5e00::,2a0c:5e00:ffff:ffff:ffff:ffff:ffff:ffff,GR
+2a0c:5e40::,2a0c:5e47:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:5e80::,2a0c:5e87:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:5ec0::,2a0c:5ec7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:5f00::,2a0c:5f00:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:5f40::,2a0c:5f47:ffff:ffff:ffff:ffff:ffff:ffff,TR
2a0c:5f80::,2a0c:5f87:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:5fc0::,2a0c:5fc7:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a0c:6000::,2a0c:6007:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:6040::,2a0c:6047:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0c:6080::,2a0c:6087:ffff:ffff:ffff:ffff:ffff:ffff,UA
+2a0c:60c0::,2a0c:60c7:ffff:ffff:ffff:ffff:ffff:ffff,ME
2a0c:6100::,2a0c:6107:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:6140::,2a0c:6147:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:6180::,2a0c:6187:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:61c0::,2a0c:61c0:ffff:ffff:ffff:ffff:ffff:ffff,FI
2a0c:6200::,2a0c:6207:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:6240::,2a0c:6247:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:6280::,2a0c:6287:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:62c0::,2a0c:62c0:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:6300::,2a0c:6307:ffff:ffff:ffff:ffff:ffff:ffff,RS
+2a0c:6340::,2a0c:6347:ffff:ffff:ffff:ffff:ffff:ffff,GE
2a0c:6380::,2a0c:6387:ffff:ffff:ffff:ffff:ffff:ffff,CZ
+2a0c:63c0::,2a0c:63c0:ffff:ffff:ffff:ffff:ffff:ffff,DK
2a0c:6400::,2a0c:6400:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:6440::,2a0c:6447:ffff:ffff:ffff:ffff:ffff:ffff,IR
2a0c:6480::,2a0c:6487:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0c:64c0::,2a0c:64c7:ffff:ffff:ffff:ffff:ffff:ffff,IQ
2a0c:6500::,2a0c:6507:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:6540::,2a0c:6540:ffff:ffff:ffff:ffff:ffff:ffff,DK
2a0c:6580::,2a0c:6587:ffff:ffff:ffff:ffff:ffff:ffff,UA
+2a0c:65c0::,2a0c:65c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:6600::,2a0c:6607:ffff:ffff:ffff:ffff:ffff:ffff,US
+2a0c:6640::,2a0c:6647:ffff:ffff:ffff:ffff:ffff:ffff,OM
2a0c:6680::,2a0c:6687:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:66c0::,2a0c:66c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a0c:6700::,2a0c:6707:ffff:ffff:ffff:ffff:ffff:ffff,IR
+2a0c:6740::,2a0c:6747:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:6780::,2a0c:6787:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:67c0::,2a0c:67c7:ffff:ffff:ffff:ffff:ffff:ffff,PT
2a0c:6800::,2a0c:6800:ffff:ffff:ffff:ffff:ffff:ffff,HU
+2a0c:6840::,2a0c:6847:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a0c:6880::,2a0c:6880:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:68c0::,2a0c:68c7:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:6900::,2a0c:6907:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:6940::,2a0c:6947:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0c:6980::,2a0c:6987:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:69c0::,2a0c:69c0:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:6a00::,2a0c:6a07:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:6a40::,2a0c:6a47:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:6a80::,2a0c:6a87:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:6ac0::,2a0c:6ac7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:6b00::,2a0c:6b07:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:6b40::,2a0c:6b47:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:6b80::,2a0c:6b87:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:6bc0::,2a0c:6bc7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:6c00::,2a0c:6c00:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:6c40::,2a0c:6c47:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:6c80::,2a0c:6c87:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:6cc0::,2a0c:6cc7:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:6d00::,2a0c:6d00:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:6d40::,2a0c:6d47:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:6d80::,2a0c:6d87:ffff:ffff:ffff:ffff:ffff:ffff,UA
+2a0c:6dc0::,2a0c:6dc7:ffff:ffff:ffff:ffff:ffff:ffff,AM
2a0c:6e00::,2a0c:6e07:ffff:ffff:ffff:ffff:ffff:ffff,TR
+2a0c:6e40::,2a0c:6e47:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a0c:6e80::,2a0c:6e87:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:6ec0::,2a0c:6ec0:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:6f00::,2a0c:6f07:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:6f40::,2a0c:6f47:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0c:6f80::,2a0c:6f87:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:6fc0::,2a0c:6fc0:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:7000::,2a0c:7007:ffff:ffff:ffff:ffff:ffff:ffff,IS
+2a0c:7040::,2a0c:7047:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a0c:7080::,2a0c:7087:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:70c0::,2a0c:70c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:7100::,2a0c:7107:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:7140::,2a0c:7147:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0c:7180::,2a0c:7187:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:71c0::,2a0c:71c7:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:7200::,2a0c:7207:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:7240::,2a0c:7247:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:7280::,2a0c:7287:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:72c0::,2a0c:72c7:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:7300::,2a0c:7300:ffff:ffff:ffff:ffff:ffff:ffff,CY
+2a0c:7340::,2a0c:7340:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a0c:7380::,2a0c:7387:ffff:ffff:ffff:ffff:ffff:ffff,AT
+2a0c:73c0::,2a0c:73c7:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:7400::,2a0c:7407:ffff:ffff:ffff:ffff:ffff:ffff,BE
+2a0c:7440::,2a0c:7447:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:7480::,2a0c:7487:ffff:ffff:ffff:ffff:ffff:ffff,RO
+2a0c:74c0::,2a0c:74c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:7500::,2a0c:7507:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:7540::,2a0c:7547:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:7580::,2a0c:7587:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:75c0::,2a0c:75c7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:7600::,2a0c:7607:ffff:ffff:ffff:ffff:ffff:ffff,NO
+2a0c:7640::,2a0c:7647:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:7680::,2a0c:7680:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:76c0::,2a0c:76c0:ffff:ffff:ffff:ffff:ffff:ffff,CH
2a0c:7700::,2a0c:7700:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:7740::,2a0c:7747:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a0c:7780::,2a0c:7787:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:77c0::,2a0c:77c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:7800::,2a0c:7807:ffff:ffff:ffff:ffff:ffff:ffff,AT
+2a0c:7840::,2a0c:7847:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a0c:7880::,2a0c:7887:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:78c0::,2a0c:78c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:7900::,2a0c:7907:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:7940::,2a0c:7947:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:7980::,2a0c:7987:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:79c0::,2a0c:79c7:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:7a00::,2a0c:7a07:ffff:ffff:ffff:ffff:ffff:ffff,ES
+2a0c:7a40::,2a0c:7a47:ffff:ffff:ffff:ffff:ffff:ffff,NO
2a0c:7a80::,2a0c:7a87:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0c:7ac0::,2a0c:7ac7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:7b00::,2a0c:7b07:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:7b40::,2a0c:7b47:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:7b80::,2a0c:7b87:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:7bc0::,2a0c:7bc7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:7c00::,2a0c:7c07:ffff:ffff:ffff:ffff:ffff:ffff,US
+2a0c:7c40::,2a0c:7c47:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:7c80::,2a0c:7c87:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:7cc0::,2a0c:7cc7:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a0c:7d00::,2a0c:7d07:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:7d40::,2a0c:7d40:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a0c:7d80::,2a0c:7d87:ffff:ffff:ffff:ffff:ffff:ffff,EE
+2a0c:7dc0::,2a0c:7dc7:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a0c:7e00::,2a0c:7e07:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0c:7e40::,2a0c:7e47:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:7e80::,2a0c:7e87:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:7ec0::,2a0c:7ec7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:7f00::,2a0c:7f07:ffff:ffff:ffff:ffff:ffff:ffff,IR
+2a0c:7f40::,2a0c:7f47:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:7f80::,2a0c:7f87:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:7fc0::,2a0c:7fc7:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:8000::,2a0c:8007:ffff:ffff:ffff:ffff:ffff:ffff,IT
+2a0c:8040::,2a0c:8047:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8080::,2a0c:8080:ffff:ffff:ffff:ffff:ffff:ffff,CZ
+2a0c:80c0::,2a0c:80c7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:8100::,2a0c:8107:ffff:ffff:ffff:ffff:ffff:ffff,IT
+2a0c:8140::,2a0c:8147:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8180::,2a0c:8187:ffff:ffff:ffff:ffff:ffff:ffff,BG
+2a0c:81c0::,2a0c:81c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8200::,2a0c:8207:ffff:ffff:ffff:ffff:ffff:ffff,NO
+2a0c:8240::,2a0c:8247:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8280::,2a0c:8287:ffff:ffff:ffff:ffff:ffff:ffff,CY
+2a0c:82c0::,2a0c:82c7:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:8300::,2a0c:8307:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:8340::,2a0c:8347:ffff:ffff:ffff:ffff:ffff:ffff,LT
2a0c:8380::,2a0c:8387:ffff:ffff:ffff:ffff:ffff:ffff,BG
+2a0c:83c0::,2a0c:83c7:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:8400::,2a0c:8407:ffff:ffff:ffff:ffff:ffff:ffff,FR
+2a0c:8440::,2a0c:8447:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:8480::,2a0c:8487:ffff:ffff:ffff:ffff:ffff:ffff,BG
+2a0c:84c0::,2a0c:84c7:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0c:8500::,2a0c:8507:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:8540::,2a0c:8547:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:8580::,2a0c:8587:ffff:ffff:ffff:ffff:ffff:ffff,RU
+2a0c:85c0::,2a0c:85c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8600::,2a0c:8607:ffff:ffff:ffff:ffff:ffff:ffff,US
+2a0c:8640::,2a0c:8647:ffff:ffff:ffff:ffff:ffff:ffff,IT
2a0c:8680::,2a0c:8687:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0c:86c0::,2a0c:86c7:ffff:ffff:ffff:ffff:ffff:ffff,UA
2a0c:8700::,2a0c:8707:ffff:ffff:ffff:ffff:ffff:ffff,EE
+2a0c:8740::,2a0c:8747:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8780::,2a0c:8787:ffff:ffff:ffff:ffff:ffff:ffff,BG
+2a0c:87c0::,2a0c:87c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8800::,2a0c:8807:ffff:ffff:ffff:ffff:ffff:ffff,GB
+2a0c:8840::,2a0c:8847:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8880::,2a0c:8887:ffff:ffff:ffff:ffff:ffff:ffff,BG
+2a0c:88c0::,2a0c:88c7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8900::,2a0c:8900:ffff:ffff:ffff:ffff:ffff:ffff,TR
+2a0c:8940::,2a0c:8947:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:8980::,2a0c:8987:ffff:ffff:ffff:ffff:ffff:ffff,NO
+2a0c:89c0::,2a0c:89c7:ffff:ffff:ffff:ffff:ffff:ffff,BG
2a0c:8a00::,2a0c:8a07:ffff:ffff:ffff:ffff:ffff:ffff,CH
+2a0c:8a40::,2a0c:8a47:ffff:ffff:ffff:ffff:ffff:ffff,GB
2a0c:8a80::,2a0c:8a87:ffff:ffff:ffff:ffff:ffff:ffff,IT
+2a0c:8ac0::,2a0c:8ac0:ffff:ffff:ffff:ffff:ffff:ffff,HU
2a0c:8b00::,2a0c:8b00:ffff:ffff:ffff:ffff:ffff:ffff,IT
+2a0c:8b40::,2a0c:8b47:ffff:ffff:ffff:ffff:ffff:ffff,CZ
2a0c:8b80::,2a0c:8b87:ffff:ffff:ffff:ffff:ffff:ffff,PL
+2a0c:8bc0::,2a0c:8bc7:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8c00::,2a0c:8c07:ffff:ffff:ffff:ffff:ffff:ffff,BG
+2a0c:8c40::,2a0c:8c47:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:8c80::,2a0c:8c80:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0c:8d00::,2a0c:8d07:ffff:ffff:ffff:ffff:ffff:ffff,LV
2a0c:8d80::,2a0c:8d87:ffff:ffff:ffff:ffff:ffff:ffff,RU
@@ -39739,6 +40438,7 @@
2a0c:d880::,2a0c:d880:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0c:d900::,2a0c:d907:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:da00::,2a0c:da07:ffff:ffff:ffff:ffff:ffff:ffff,DE
+2a0c:da80::,2a0c:da87:ffff:ffff:ffff:ffff:ffff:ffff,RU
2a0c:db00::,2a0c:db07:ffff:ffff:ffff:ffff:ffff:ffff,PL
2a0c:db80::,2a0c:db87:ffff:ffff:ffff:ffff:ffff:ffff,FR
2a0c:dc00::,2a0c:dc00:ffff:ffff:ffff:ffff:ffff:ffff,IE
@@ -39888,7 +40588,9 @@
2a0d:2280::,2a0d:2287:ffff:ffff:ffff:ffff:ffff:ffff,SE
2a0d:2300::,2a0d:2307:ffff:ffff:ffff:ffff:ffff:ffff,HU
2a0d:2380::,2a0d:2380:ffff:ffff:ffff:ffff:ffff:ffff,UA
-2a0d:2400::,2a0d:2407:ffff:ffff:ffff:ffff:ffff:ffff,NL
+2a0d:2400::,2a0d:2406:ff:ffff:ffff:ffff:ffff:ffff,NL
+2a0d:2406:100::,2a0d:2406:1ff:ffff:ffff:ffff:ffff:ffff,DE
+2a0d:2406:200::,2a0d:2407:ffff:ffff:ffff:ffff:ffff:ffff,NL
2a0d:2480::,2a0d:2487:ffff:ffff:ffff:ffff:ffff:ffff,DE
2a0d:2500::,2a0d:2507:ffff:ffff:ffff:ffff:ffff:ffff,ES
2a0d:2580::,2a0d:2587:ffff:ffff:ffff:ffff:ffff:ffff,NL
@@ -40361,6 +41063,7 @@
2c0f:eea0::,2c0f:eea0:ffff:ffff:ffff:ffff:ffff:ffff,GH
2c0f:eea8::,2c0f:eea8:ffff:ffff:ffff:ffff:ffff:ffff,ZA
2c0f:eeb0::,2c0f:eeb0:ffff:ffff:ffff:ffff:ffff:ffff,SL
+2c0f:eeb8::,2c0f:eeb8:ffff:ffff:ffff:ffff:ffff:ffff,GH
2c0f:f000::,2c0f:f000:ffff:ffff:ffff:ffff:ffff:ffff,DZ
2c0f:f008::,2c0f:f008:ffff:ffff:ffff:ffff:ffff:ffff,KE
2c0f:f010::,2c0f:f010:ffff:ffff:ffff:ffff:ffff:ffff,ZA
1
0

15 May '18
commit 4aa3d511b25fe99579d7810418433eef46e417da
Merge: 7ee67c47f 502d2c006
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue May 15 09:32:44 2018 -0400
Merge branch 'maint-0.3.1' into maint-0.3.2
changes/geoip-2018-05-01 | 4 +
src/config/geoip | 5455 ++++++++++++++++++++++++++++++----------------
src/config/geoip6 | 971 +++++++--
3 files changed, 4468 insertions(+), 1962 deletions(-)
1
0

15 May '18
commit 6acbd4c112d984c8a3fcfa1a387093131b740ca7
Merge: b343ba906 4aa3d511b
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Tue May 15 09:32:44 2018 -0400
Merge branch 'maint-0.3.2' into maint-0.3.3
changes/geoip-2018-05-01 | 4 +
src/config/geoip | 5455 ++++++++++++++++++++++++++++++----------------
src/config/geoip6 | 971 +++++++--
3 files changed, 4468 insertions(+), 1962 deletions(-)
1
0